:root{
  --pink-50:#fff7fb;
  --pink-100:#fde7f3;
  --pink-200:#f9cfe4;
  --pink-400:#ee6fab;
  --pink-500:#e74c97;
  --pink-700:#b72c6f;
  --text:#4a2340;
  --lime-400:#b8e20d;
  --lime-500:#9dca00;
  --white:#ffffff;
  --shadow:0 18px 40px rgba(231,76,151,.14);
  --radius:24px;
  --max:1120px;
}

*{box-sizing:border-box}

html{scroll-behavior:smooth}

body{
  margin:0;
  font-family:Inter,Arial,Helvetica,sans-serif;
  color:var(--text);
  background:linear-gradient(180deg,var(--pink-50),#fff);
  line-height:1.6;
}

a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}

.container{
  width:min(var(--max),calc(100% - 2rem));
  margin-inline:auto
}

.site-header{
  position:sticky;
  top:0;
  z-index:0;
  background:rgba(255,247,251,.88);
  backdrop-filter:blur(14px);
  border-bottom:1px solid var(--pink-200);
}

.site-logo {
  cursor: pointer;
  transition: transform 0.2s ease;
}

.site-logo:hover {
  transform: scale(1.05);
}

.nav-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
  padding:.75rem 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:.9rem;
  font-weight:900;
}

.brand-logo{
  display:flex;
  align-items:center;
  flex-shrink:0;
}

.brand-logo img{
  height:120px;
  width:auto;
  display:block;
}

.brand-badge{
  width:52px;
  height:52px;
  border-radius:18px;
  background:#fff;
  display:grid;
  place-items:center;
  box-shadow:var(--shadow);
  border:1px solid var(--pink-200);
  font-size:1.4rem;
}

.brand-title{
  font-size:1.25rem;
  line-height:1;
}

.brand-sub{
  font-size:.76rem;
  text-transform:uppercase;
  letter-spacing:.18em;
  color:var(--pink-700);
  margin-top:.15rem
}

.nav{
  display:flex;
  align-items:center;
  gap:1.25rem;
  flex-wrap:wrap;
}

.nav a{
  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:.55rem 1rem;
  font-weight:700;
  z-index:1;
  transition:color .2s ease, transform .2s ease;
}

.nav a::before{
  content:"";
  position:absolute;
  inset:-25px -30px;
  background:url("images/bubbles-bg.png") center/contain no-repeat;
  opacity:0;
  filter:blur(1px);   /* 👈 subtle softness */
  transform:scale(.92);
  transition:opacity .25s ease, transform .25s ease;
  z-index:-1;
  pointer-events:none;
}

.nav a:hover::before,
.nav a.active::before{
  opacity:.9;         /* 👈 not full blast */
  filter:blur(0px);
  transform:scale(1);
}

.nav a:hover,
.nav a.active{
  color:var(--pink-700);
}

.nav a:hover{
  color:var(--pink-700);
  transform:translateY(-1px);
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:.9rem 1.25rem;
  border-radius:999px;
  font-weight:800;
  transition:.2s transform,.2s background,.2s color,.2s border-color;
  border:1px solid transparent;
  cursor:pointer;
}

.btn:hover{
  transform:translateY(-1px);
}

.btn-primary{
  background:var(--pink-500);
  color:#fff;
  box-shadow:var(--shadow);
}

.btn-secondary{
  background:#fff;
  border-color:var(--pink-200);
}

.btn-accent{
  background:var(--lime-400);
}

.hero{
  padding:4.5rem 0 2.5rem;
  background:
    radial-gradient(circle at top right, rgba(255,255,255,.9), transparent 30%),
    radial-gradient(circle at 15% 90%, rgba(255,214,235,.9), transparent 24%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 2.4rem;
  align-items: center;
}

.eyebrow{
  display:inline-block;
  padding:.4rem .8rem;
  border-radius:999px;
  background:#fff;
  border:1px solid var(--pink-200);
  font-weight:800;
  color:var(--pink-700);
  font-size:.92rem;
}

h1,h2,h3{
  line-height:1.1;
  margin:0;
}

h1{
  font-size:clamp(2.3rem,5vw,4.3rem);
  margin-top:1rem;
}

h2{
  font-size:clamp(1.9rem,3vw,3rem);
}

p.lead{
  font-size:1.1rem;
  max-width:60ch;
  color:#633652;
}

.hero-card,.card{
  background:#fff;
  border:1px solid var(--pink-200);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}

.hero-card {
  width: 100%;
  max-width: 560px;
  padding: 14px;
}

.logo-placeholder{
  min-height:360px;
  border-radius:20px;
  background:linear-gradient(135deg,#ffd8ea,#fff 55%,#f2fbcb);
  border:2px dashed var(--pink-200);
  display:grid;
  place-items:center;
  text-align:center;
  padding:2rem;
}

.logo-placeholder h3{
  font-size:2rem;
  color:var(--pink-700);
}

.section{
  padding:4.5rem 0;
}

.grid-3{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1.25rem;
}

.grid-2{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:1.25rem;
}

.card{
  padding:1.4rem;
}

.icon{
  width:52px;
  height:52px;
  border-radius:16px;
  background:var(--pink-100);
  display:grid;
  place-items:center;
  font-size:1.35rem;
  margin-bottom:.9rem;
}

.section-top{
  max-width:760px;
  margin-bottom:1.5rem;
}

.muted{
  color:#7b4c67;
}

.area-list{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:.85rem;
  margin-top:1rem;
}

.area-pill{
  background:#fff;
  border:1px solid var(--pink-200);
  border-radius:18px;
  padding:.9rem 1rem;
  font-weight:700;
}

.contact-grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:1.4rem;
}

.info-stack{
  display:grid;
  gap:1rem;
}

.info-box,.form-card{
  background:#fff;
  border:1px solid var(--pink-200);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}

.info-box{
  padding:1.2rem;
}

.label{
  font-size:.74rem;
  text-transform:uppercase;
  letter-spacing:.18em;
  color:var(--pink-700);
  font-weight:900;
}


.value{
  font-size:1.08rem;
  font-weight:800;
  margin-top:.35rem;
}

.form-card{
  padding:1.4rem;
}

.form-group{
  margin-bottom:1rem;
}

label{
  display:block;
  font-size:.93rem;
  font-weight:800;
  margin-bottom:.35rem;
}

input,textarea{
  width:100%;
  padding:.9rem 1rem;
  border-radius:16px;
  border:1px solid var(--pink-200);
  background:var(--pink-50);
  font:inherit;
  color:inherit;
}

textarea{
  min-height:140px;
  resize:vertical;
}

.page-hero{
  padding:3.6rem 0 2rem;
}

.page-hero .card{
  background:linear-gradient(135deg,#fff,#fff7fb);
}

.list{
  padding-left:1.15rem;
}

.list li{
  margin:.45rem 0;
}

.call-text{
  text-align:center;
  font-family:'Fredoka One', cursive;
  font-size:1.1rem;
  margin:8px 0 10px;
}

.site-footer{
  margin-top:2rem;
  border-top:1px solid var(--pink-200);
  background:var(--pink-50);
}

.footer-wrap{
  display:flex;
  justify-content:space-between;
  gap:1rem;
  flex-wrap:wrap;
  padding:1.3rem 0;
  color:#7b4c67;
  font-size:.95rem;
}

.notice{
  background:#fff8d7;
  border:1px solid #f0e1a0;
  color:#6b5a00;
  border-radius:18px;
  padding:1rem 1.1rem;
  margin-top:1rem;
  font-weight:600;
}

@media (max-width:900px){
  .hero-grid,
  .grid-3,
  .grid-2,
  .contact-grid{
    grid-template-columns:1fr;
  }

  .nav{
    display:none;
  }

  .brand-logo img{
    height:54px;
  }
}

.pricing-header {
  text-align: center;
  margin-bottom: 1rem;
}

.pricing-header img {
  max-width: 320px; /* adjust this as needed */
  width: 100%;
  height: auto;
}

.pricing-header img {
  max-width: 320px;
  width: 100%;
  height: auto;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0px); }
}

.pricing-sub{
  margin-top:1.8rem;
  font-size:1.3rem;
  font-weight:800;
}

.pricing-table{
  width:100%;
  border-collapse:collapse;
  margin-top:.5rem;
}

.pricing-table td{
  padding:.6rem 0;
  border-bottom:1px solid #ead7e3;
  color:#5d3950;
}

.pricing-table td:last-child{
  text-align:right;
  font-weight:700;
}

.pricing-highlight{
  font-size:1.6rem;
  font-weight:900;
  margin-top:.5rem;
}

.pricing-highlight span{
  font-size:.9rem;
  color:#7b4c67;
}

.map-card{
  padding-bottom:1.4rem;
}

.map-embed{
  width:100%;
  height:420px;
  overflow:hidden;
  border-radius:20px;
  border:1px solid var(--pink-200);
  box-shadow:var(--shadow);
  background:#fff;
}

.served-areas{
  display:flex;
  flex-wrap:wrap;
  gap:.85rem;
  margin-top:1rem;
}

.served-areas span{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:.7rem 1rem;
  border-radius:999px;
  background:var(--pink-50);
  border:1px solid var(--pink-200);
  font-weight:700;
  color:#5d3950;
}

.cta-card{
  text-align:left;
}

.form-bottom {
  display: flex;
  gap: 1.2rem;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 1.2rem;
  flex-wrap: wrap;
}

.form-bottom .btn {
  flex-shrink: 0;
}

.file-upload {
  flex: 1;
  min-width: 220px;
}

.highlight-box {
  background: linear-gradient(135deg, #fff, #ffeaf3);
  border: 1px solid #f3b6cf;
}

.highlight-box h3 {
  margin-bottom: .6rem;
  font-size: 1.2rem;
}

.photo-box img {
  width: 100%;
  border-radius: 14px;
  margin-bottom: .5rem;
}

.photo-caption {
  font-size: .9rem;
  color: #7b4c67;
}

.slideshow {
  position: relative;
  width: 100%;
  height: 500px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--pink-200);
  box-shadow: var(--shadow);
  background: #fff;
}

.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.slide.active {
  opacity: 1;
}

/* =========================================================
   Booking flow styles
   ========================================================= */

:root{
  --pink:#FF5FA0;
  --pink-light:#FFD6EA;
  --pink-pale:#FFF0F7;
  --lime:#A8E63D;
  --lime-dark:#7DC415;
  --lime-pale:#F2FBE0;
  --blue:#5BAADC;
  --blue-pale:#EEF5FF;
  --dark:#2D2340;
  --purple:#7B5EA7;
  --cream:#FFFDF8;
  --grey:#888;
}

body{
  position:relative;
  min-height:100vh;
  overflow-x:hidden;
  margin:0;
  font-family:'Nunito',sans-serif;
  color:var(--dark);
  background:var(--cream);
  line-height:1.6;
  display:flex;
  flex-direction:column;
  align-items:center;
}

body::before{
  content:'';
  position:fixed;
  inset:0;
  background-image:
    radial-gradient(circle, rgba(255,95,160,0.06) 1.5px, transparent 1.5px),
    radial-gradient(circle, rgba(168,230,61,0.06) 1.5px, transparent 1.5px);
  background-size:30px 30px, 60px 60px;
  background-position:0 0, 15px 15px;
  pointer-events:none;
  z-index:0;
}

body::after{
  content:"";
  position:fixed;
  inset:0;
  background:url("images/bubbles-bg.png") center center / cover no-repeat;
  pointer-events:none;
  z-index:0;
  opacity:.95;
}

body > header,
body > main,
body > footer,
body > .section,
body > .social-links{
  position:relative;
  z-index:1;
}

.site-header{
  width:100%;
  background:#FFD6EA;
  text-align:center;
  padding:16px 20px;
  position:relative;
}

.site-header::before,
.site-header::after{
  display:none;
}

.site-logo{
  width:420px;
  max-width:95%;
  height:auto;
  display:block;
  margin:0 auto;
}

.brand-tag{
  font-size:1rem;
  font-weight:800;
  color:var(--pink);
  letter-spacing:3px;
  text-transform:uppercase;
  margin-top:-12px;
}

main{
  position:relative;
  z-index:1;
  width:100%;
  max-width:620px;
  padding:32px 20px 60px;
}

.step{
  display:none;
  animation:fadeUp .4s ease both;
}

.step.active{
  display:block;
}

@keyframes fadeUp{
  from{opacity:0;transform:translateY(20px);}
  to{opacity:1;transform:translateY(0);}
}

@keyframes float{
  0%{transform:translateY(0);}
  50%{transform:translateY(-6px);}
  100%{transform:translateY(0);}
}

.bubble{
  background:#fff;
  border-radius:20px 20px 20px 4px;
  padding:20px 24px;
  margin-bottom:20px;
  box-shadow:0 4px 20px rgba(45,35,64,0.08);
  border:2px solid var(--pink-light);
  position:relative;
}

.bubble::before{display:none;}

.bubble p{
  font-size:1.05rem;
  font-weight:700;
  color:var(--dark);
  line-height:1.55;
}

.bubble p .dog-name{
  color:var(--pink);
  font-weight:900;
}

.bubble .sub{
  font-size:.8rem;
  font-weight:600;
  color:var(--grey);
  margin-top:6px;
}

.input-wrap{margin-bottom:12px;}

input[type="text"],
input[type="tel"],
input[type="email"],
select{
  width:100%;
  padding:16px 18px;
  border:2.5px solid var(--pink-light);
  border-radius:14px;
  font-family:'Nunito',sans-serif;
  font-size:1rem;
  font-weight:700;
  color:var(--dark);
  background:#fff;
  outline:none;
  transition:border-color .2s, box-shadow .2s;
  appearance:none;
}

input[type="text"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus,
select:focus{
  border-color:var(--pink);
  box-shadow:0 0 0 4px rgba(255,95,160,0.12);
}

select{
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23FF5FA0' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat:no-repeat;
  background-position:right 16px center;
  padding-right:44px;
  cursor:pointer;
}

.options{
  display:flex;
  flex-direction:column;
  gap:10px;
  margin-bottom:12px;
}

.option-card{
  background:#fff;
  border:2.5px solid var(--pink-light);
  border-radius:14px;
  padding:16px 20px;
  cursor:pointer;
  transition:all .18s;
  display:flex;
  align-items:center;
  gap:14px;
  font-weight:700;
  color:var(--dark);
  font-size:.95rem;
}

.option-card:hover{
  border-color:var(--pink);
  background:var(--pink-pale);
  transform:translateX(4px);
}

.option-card.selected{
  border-color:var(--pink);
  background:var(--pink-pale);
}

.option-card .opt-icon{
  font-size:1.5rem;
  flex-shrink:0;
}

.option-card .opt-label{flex:1;}
.option-card .opt-label > div:first-child{color:var(--pink);}
.size-name{color:var(--pink)!important;font-weight:700;}

.option-card .opt-desc{
  font-size:.8rem;
  font-weight:800;
  color:#444;
  margin-top:2px;
}

.option-card .opt-price{
  font-family:'Fredoka One',cursive;
  font-size:1.2rem;
  color:var(--pink);
  flex-shrink:0;
}

.option-card.lime-card:hover,
.option-card.lime-card.selected{
  border-color:var(--lime-dark);
  background:var(--lime-pale);
}

.option-card.lime-card .opt-price{color:var(--lime-dark);}

.photo-upload{
  border:2.5px dashed var(--pink-light);
  border-radius:14px;
  padding:32px 20px;
  text-align:center;
  cursor:pointer;
  transition:all .2s;
  background:#fff;
  margin-bottom:12px;
  position:relative;
}

.photo-upload:hover{
  border-color:var(--pink);
  background:var(--pink-pale);
}

.photo-upload input{display:none;}
.photo-upload .upload-icon{font-size:2.5rem;margin-bottom:8px;}
.photo-upload .upload-text{font-weight:800;font-size:.95rem;color:var(--pink);}
.photo-upload .upload-sub{font-size:.78rem;color:var(--grey);font-weight:600;margin-top:4px;}

#photo-preview{
  width:100%;
  height: 300px;
  max-height:400px;   /* bigger */
  object-fit:contain; /* 👈 THIS is key */
  border-radius:10px;
  display:none;
  margin-top:12px;
}

.btn-next{
  width:100%;
  padding:16px;
  background:linear-gradient(135deg, var(--pink) 0%, #FF8CC3 100%);
  color:#fff;
  font-family:'Fredoka One',cursive;
  font-size:1.15rem;
  letter-spacing:.5px;
  border:none;
  border-radius:14px;
  cursor:pointer;
  transition:transform .15s, box-shadow .15s;
  box-shadow:0 4px 16px rgba(255,95,160,0.4);
  margin-top:4px;
}

.btn-next:hover{
  transform:translateY(-2px);
  box-shadow:0 6px 24px rgba(255,95,160,0.55);
}

.btn-next:active{transform:translateY(0);}

.btn-back{
  background:none;
  border:none;
  color:var(--grey);
  font-size:.85rem;
  font-weight:700;
  cursor:pointer;
  padding:6px 0;
  margin-bottom:4px;
  display:block;
  opacity:.7;
  letter-spacing:.3px;
}

.btn-back:hover{opacity:1;color:var(--pink);}

.btn-skip{
  width:100%;
  padding:12px;
  background:transparent;
  color:var(--grey);
  font-family:'Nunito',sans-serif;
  font-size:.85rem;
  font-weight:700;
  border:none;
  cursor:pointer;
  margin-top:6px;
  text-decoration:underline;
}

.progress-bar{
  width:100%;
  height:6px;
  background:var(--pink-light);
  border-radius:99px;
  margin-bottom:24px;
  overflow:hidden;
}

.progress-fill{
  width:12%;
  height:100%;
  background:linear-gradient(90deg, var(--pink), var(--lime));
  border-radius:99px;
  transition:width .4s ease;
}

.summary-card{
  background:#fff;
  border-radius:20px;
  border:2px solid var(--pink-light);
  padding:24px;
  box-shadow:0 4px 20px rgba(45,35,64,0.08);
  margin-bottom:16px;
}

.summary-card h3{
  font-family:'Fredoka One',cursive;
  font-size:1.2rem;
  color:var(--pink);
  margin-bottom:14px;
}

.summary-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:8px 0;
  border-bottom:1px dashed var(--pink-light);
  font-size:.92rem;
}

.summary-row:last-child{border-bottom:none;}
.summary-row .value{font-weight:800;color:var(--pink);}
.summary-row.total .label{font-size:1rem;}
.summary-row.total .value{font-family:'Fredoka One',cursive;font-size:1.4rem;color:var(--lime-dark);}

.summary-row .label{
  font-weight:700;
  color:var(--dark);
}

.summary-row .label.green-label{
  color:var(--lime-dark);
}

.price-note{
  font-size:.75rem;
  color:var(--grey);
  font-weight:600;
  text-align: left;
  line-height:1.5;
}

.summary-row.total{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:20px;
  padding:10px 0 0px;
}

.price-block{
  display:flex;
  flex-direction:column;
  align-items:flex-start;  /* same left edge for both */
  width:190px;
  margin-left:auto;        /* keeps the whole block on the right side */
}

.price-block .value{
  font-family:'Fredoka One',cursive;
  font-size:1.4rem;
  line-height:1;
  color:var(--lime-dark);
  margin:0;
}

.price-block .price-note{
  font-size:.7rem;
  color:var(--grey);
  line-height:1.25;
  text-align:left;
  margin-top:10px;
}

.reaction{
  background:var(--lime-pale);
  border:2px solid var(--lime);
  border-radius:16px;
  padding:14px 18px;
  margin-bottom:16px;
  font-weight:700;
  font-size:.95rem;
  color:var(--dark);
  display:none;
  animation:fadeUp .3s ease both;
}

.reaction.show{display:block;}

footer{
  text-align:center;
  padding:20px;
  font-size:.78rem;
  font-weight:700;
  color:var(--grey);
}

.booking-intro{
  text-align:center;
  font-size:1rem;
  font-weight:700;
  color:var(--dark);
  margin:0 0 12px;
}

.booking-brand-wordmark{font-size:1.35rem;}
.text-lime-dark{color:var(--lime-dark);}
.text-pink{color:var(--pink);}
.mt-8{margin-top:8px;}
.mt-10{margin-top:10px;}
.mt-12{margin-top:12px;}
.mt-16{margin-top:16px;}

.waitlist-card,
.contact-help-card{
  padding:16px 18px;
  border-radius:14px;
  font-weight:700;
  font-size:.9rem;
  color:var(--dark);
}

.waitlist-card{
  display:none;
  background:var(--pink-pale);
  border:2px solid var(--pink-light);
  margin-bottom:12px;
  line-height:1.6;
}

.waitlist-thanks{
  display:none;
  background:var(--lime-pale);
  border:2px solid var(--lime);
}

.waitlist-email{width:100%;margin-bottom:8px;}
.btn-waitlist{margin-top:4px;background:linear-gradient(135deg, var(--purple), #9B7BC4);}
.service-note{color:var(--lime-dark)!important;font-size:.95rem!important;font-weight:800!important;}
.contact-error{display:none;color:var(--pink);font-weight:700;font-size:.85rem;text-align:center;margin-top:8px;}
.booking-form{margin-top:12px;}
.booking-form-card{padding:18px;}
.booking-submit-btn{margin-top:12px;}
.honeypot-field{display:none;}

.social-links{
  position:relative;
  z-index:1;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:14px;
  margin:4px 0 6px;
}

.icon-wrapper{
  animation:float 3s ease-in-out infinite;
  display:flex;
  align-items:center;
  justify-content:center;
}

.icon-wrapper:nth-child(1){animation-delay:0s;}
.icon-wrapper:nth-child(2){animation-delay:.5s;}

.social-icon{
  width:100px;
  height:100px;
  object-fit:contain;
  display:block;
  filter:drop-shadow(0 8px 18px rgba(231,76,151,.18));
  transition:transform .2s ease, opacity .25s ease;
  cursor:pointer;
}

.social-icon.facebook{width:70px;height:70px;}
.social-icon:hover{transform:scale(1.1);opacity:.8;}

.success-card{max-width:700px;margin:4rem auto;text-align:center;}
.success-title{margin-top:1rem;}
.success-lead{margin:1rem auto 0;}
.success-actions{margin-top:1.5rem;}

@media (max-width:900px){
  body::after{background-size:cover;opacity:.95;}
}

.moego-embed-wrap{
  width:100%;
  height:700px;
  margin-top:16px;
  border-radius:20px;
  overflow:hidden;
  border:2px solid var(--pink-light);
  background:#fff;
  box-shadow:0 4px 20px rgba(45,35,64,0.08);
}

.moego-embed-wrap iframe{
  width:100%;
  height:100%;
  display:block;
  border:0;
}

.moego-embed-wrap{
  max-width:720px;
  margin:0 auto;
}

.booking-highlight{
  font-weight:700;
  margin-top:10px;
  letter-spacing: 0.2px;
  font-size:0.95rem;
}

.booking-highlight span.green{
  color:#7ed321; /* your lime green */
}

.booking-highlight span.pink{
  color:#e74c97; /* your brand pink */
}

.site-credit{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px; /* space between logo + text */
  font-size: 0.72rem;
  color: #8d8d8d;
  margin-top: 2px;
}

.credit-logo{
  width: 14px;
  height: 14px;
  object-fit: contain;
  opacity: 0.8;
}
.site-credit .virelune{
  color:#bfa06a; /* soft gold */
  font-weight:500;
  font-style: italic;
}

@media (max-width: 768px){
  .moego-embed-wrap{
    height:650px;
  }
}


.lead-capture-card{
  background:#fff;
  border:2px solid var(--pink-light);
  border-radius:20px;
  padding:20px;
  box-shadow:0 4px 20px rgba(45,35,64,0.08);
  margin-top:16px;
}

.lead-capture-card h3{
  font-family:'Fredoka One',cursive;
  font-size:1.05rem;
  color:var(--pink);
  margin-bottom:10px;
}

.lead-note{
  font-size:.84rem;
  font-weight:700;
  color:var(--grey);
  margin:0 0 14px;
}

.lead-grid{
  display:grid;
  gap:10px;
}

.lead-email-wrap{
  margin-bottom:0;
}

.lead-success{
  display:none;
  background:var(--lime-pale);
  border:2px solid var(--lime);
  border-radius:14px;
  padding:12px 14px;
  font-size:.85rem;
  font-weight:800;
  color:var(--dark);
  margin-top:12px;
}

.lead-submit-btn{
  margin-top:12px;
}

.lead-submit-btn.is-complete{
  background:linear-gradient(135deg, var(--lime-dark) 0%, var(--lime) 100%);
  box-shadow:0 6px 24px rgba(125,196,21,0.3);
}

#lead-error{
  display:none;
  text-align:left;
  margin-top:4px;
}

.moego-embed-wrap.is-hidden{
  display:none;
}
