
:root {
  --pink: #EC6B8E; --pink-deep: #C94D72; --pink-soft: #FADBE4; --pink-tint: #FFF1F4;
  --cream: #FDF8F3; --cream-deep: #F6EBDD; --ivory: #FBF6EF;
  --charcoal: #2C2C2A; --charcoal-soft: #5C5C58;
  --gold: #D4A574; --gold-soft: #EDD9BE;
  --radius: 16px; --radius-lg: 22px; --radius-sm: 10px; --radius-xl: 30px;
  --font-serif: 'Fraunces', Georgia, serif;
  --shadow-sm: 0 2px 6px rgba(44,44,42,0.05), 0 1px 2px rgba(44,44,42,0.04);
  --shadow-md: 0 10px 30px -12px rgba(201,77,114,0.18), 0 4px 12px -6px rgba(44,44,42,0.06);
  --shadow-lg: 0 24px 60px -20px rgba(201,77,114,0.25), 0 8px 20px -8px rgba(44,44,42,0.08);
  --max: 1200px;
}
/* Skip link (accessibility) */
.skip-link {
  position: absolute; top: -999px; left: 16px; z-index: 9999;
  background: var(--charcoal); color: #fff; padding: 10px 18px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm); font-weight: 600; font-size: 0.9rem;
  text-decoration: none; transition: top 0.1s;
}
.skip-link:focus { top: 0; outline: 3px solid var(--pink); outline-offset: 2px; }

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  color: var(--charcoal); background: var(--cream); line-height: 1.6;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
h1, h2, h3, h4 { font-family: 'Fraunces', Georgia, serif; font-weight: 600; line-height: 1.1; letter-spacing: -0.01em; color: var(--charcoal); }
h1 { font-size: clamp(2.4rem, 6vw, 4.6rem); font-weight: 600; letter-spacing: -0.025em; }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); font-weight: 600; letter-spacing: -0.02em; }
h3 { font-size: 1.35rem; font-weight: 600; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
section { padding: 96px 0; position: relative; }

.eyebrow {
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--pink); margin-bottom: 16px;
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before { content: ''; width: 22px; height: 2px; background: var(--pink); border-radius: 2px; }

.section-head { text-align: center; max-width: 680px; margin: 0 auto 64px; }
.section-head p { color: var(--charcoal-soft); font-size: 1.1rem; margin-top: 14px; }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 26px; border-radius: 999px; font-weight: 600; font-size: 0.98rem;
  transition: all 0.25s cubic-bezier(.4,.2,.2,1); white-space: nowrap; cursor: pointer;
}
.btn-primary { background: var(--pink); color: #fff; box-shadow: 0 6px 18px -6px rgba(236,107,142,0.55), inset 0 -2px 0 rgba(0,0,0,0.06); }
.btn-primary:hover { background: var(--pink-deep); transform: translateY(-2px) scale(1.02); box-shadow: 0 12px 24px -8px rgba(236,107,142,0.6); }
.btn-outline { background: transparent; color: var(--charcoal); border: 2px solid var(--charcoal); }
.btn-outline:hover { background: var(--charcoal); color: #fff; transform: translateY(-2px); }
.btn-light { background: #fff; color: var(--pink-deep); }
.btn-light:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 10px 24px -8px rgba(0,0,0,0.2); }
.btn-ghost { background: var(--cream); color: var(--charcoal); border: 1.5px solid var(--cream-deep); }
.btn-ghost:hover { background: #fff; border-color: var(--pink-soft); color: var(--pink-deep); }

/* NAV */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 16px 0;
  transition: all 0.3s ease; background: rgba(253, 248, 243, 0.85);
  backdrop-filter: saturate(1.4) blur(12px); -webkit-backdrop-filter: saturate(1.4) blur(12px);
}
.nav.scrolled { box-shadow: 0 2px 20px -10px rgba(44,44,42,0.15); padding: 10px 0; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo { display: inline-flex; align-items: center; gap: 10px; font-family: 'Fraunces', serif; font-weight: 700; font-size: 1.3rem; color: var(--charcoal); letter-spacing: -0.01em; }
.logo-mark { width: 38px; height: 38px; background: var(--pink); border-radius: 12px; display: grid; place-items: center; box-shadow: 0 4px 12px -4px rgba(236,107,142,0.5); transition: transform 0.3s ease; }
.logo:hover .logo-mark { transform: rotate(-8deg) scale(1.06); }
.logo-mark svg { width: 22px; height: 22px; color: #fff; }
.logo .amp { color: var(--pink); font-style: italic; font-weight: 500; margin: 0 2px; }
.nav-links { display: flex; gap: 4px; list-style: none; }
.nav-links a { padding: 10px 16px; border-radius: 999px; font-weight: 500; font-size: 0.95rem; color: var(--charcoal-soft); transition: all 0.2s; }
.nav-links a:hover { color: var(--pink); background: var(--pink-tint); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.hamburger { display: none; width: 44px; height: 44px; border-radius: 12px; background: var(--pink-tint); align-items: center; justify-content: center; flex-direction: column; gap: 5px; }
.hamburger span { width: 20px; height: 2px; background: var(--charcoal); border-radius: 2px; transition: all 0.3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu { display: none; position: fixed; top: 70px; left: 16px; right: 16px; background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 20px; z-index: 99; flex-direction: column; gap: 6px; }
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 14px 16px; border-radius: 12px; font-weight: 500; }
.mobile-menu a:hover { background: var(--pink-tint); color: var(--pink); }
.mobile-menu .btn { margin-top: 8px; }

/* HERO */
.hero { padding: 140px 0 80px; min-height: 85vh; position: relative; overflow: hidden; }
.hero-trust-row { display: block; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 2; }
.hero h1 { margin-bottom: 24px; }
.hero h1 .ital { font-style: italic; font-weight: 500; color: var(--pink); }
.hero-sub { font-size: 1.18rem; color: var(--charcoal-soft); margin-bottom: 36px; max-width: 540px; line-height: 1.55; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-image-wrap { position: relative; aspect-ratio: 4/5; border-radius: 28px; overflow: hidden; box-shadow: var(--shadow-lg); transform: rotate(2deg); }
.hero-image-wrap::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, rgba(44,44,42,0.15)); z-index: 1; }
.hero-image-wrap img { width: 100%; height: 100%; object-fit: cover; }
.blob { position: absolute; border-radius: 50%; filter: blur(1px); z-index: 0; pointer-events: none; }
.blob-1 { width: 180px; height: 180px; background: var(--pink-soft); top: 10%; right: 38%; opacity: 0.8; animation: float 8s ease-in-out infinite; }
.blob-2 { width: 90px; height: 90px; background: var(--gold-soft); top: 60%; right: 4%; animation: float 6s ease-in-out infinite 1s; }
.blob-3 { width: 60px; height: 60px; background: var(--pink); opacity: 0.4; bottom: 15%; left: 45%; animation: float 7s ease-in-out infinite 0.5s; }
.squiggle { position: absolute; z-index: 0; pointer-events: none; opacity: 0.5; }
.squiggle-1 { top: 20%; left: 42%; color: var(--pink); }
.squiggle-2 { bottom: 18%; right: 8%; color: var(--gold); }
@keyframes float { 0%,100% { transform: translateY(0) translateX(0); } 50% { transform: translateY(-20px) translateX(10px); } }
.hero-tag { position: absolute; background: #fff; padding: 14px 18px; border-radius: 16px; box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 12px; font-weight: 600; font-size: 0.9rem; z-index: 3; }
.hero-tag.t1 { top: 8%; left: -30px; transform: rotate(-4deg); }
.hero-tag.t1 .emoji { font-size: 1.5rem; }
.hero-tag.t2 { bottom: 10%; right: -20px; transform: rotate(3deg); background: var(--charcoal); color: #fff; }
.hero-tag.t2 .stars { color: var(--gold); letter-spacing: 2px; }
.hero-meta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 24px; font-size: 0.88rem; color: var(--charcoal-soft); }
.hero-meta-dot { width: 4px; height: 4px; background: var(--pink); border-radius: 50%; }
.trust-bar { margin-top: 60px; padding: 20px 28px; background: #fff; border-radius: var(--radius); border: 1px solid var(--cream-deep); display: flex; align-items: center; justify-content: space-around; gap: 24px; flex-wrap: wrap; font-size: 0.92rem; color: var(--charcoal-soft); font-weight: 500; }
.trust-bar .item { display: inline-flex; align-items: center; gap: 8px; }
.trust-bar .stars { color: var(--gold); letter-spacing: 1px; }
.trust-bar .dot { width: 4px; height: 4px; background: var(--pink); border-radius: 50%; }

/* SERVICES */
.services-notice { max-width: 820px; margin: 0 auto 32px; padding: 16px 20px; background: var(--pink-tint); border: 1px solid var(--pink-soft); border-radius: var(--radius); display: flex; align-items: flex-start; gap: 12px; color: var(--charcoal); font-size: 0.94rem; line-height: 1.5; }
.services-notice svg { color: var(--pink); flex-shrink: 0; margin-top: 2px; }
.services-notice strong { color: var(--pink-deep); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card { background: #fff; border-radius: var(--radius-lg); padding: 32px 28px; border: 1px solid var(--cream-deep); transition: all 0.3s cubic-bezier(.4,.2,.2,1); position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; inset: 0; background: var(--pink-tint); opacity: 0; transition: opacity 0.3s; z-index: 0; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--pink-soft); }
.service-card:hover::before { opacity: 1; }
.service-icon { width: 54px; height: 54px; border-radius: 14px; background: var(--pink-tint); display: grid; place-items: center; margin-bottom: 20px; transition: transform 0.35s cubic-bezier(.4,.2,.2,1); position: relative; z-index: 1; }
.service-icon svg { width: 26px; height: 26px; color: var(--pink); }
.service-card h3 { margin-bottom: 8px; position: relative; z-index: 1; }
.service-card p { color: var(--charcoal-soft); font-size: 0.95rem; margin-bottom: 20px; position: relative; z-index: 1; }
.service-price { font-family: 'Fraunces', serif; font-size: 1.05rem; font-weight: 600; color: var(--pink); display: inline-flex; align-items: center; gap: 6px; position: relative; z-index: 1; }
.service-price .from { font-family: 'Plus Jakarta Sans'; font-size: 0.8rem; color: var(--charcoal-soft); font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; }
.service-card .mobile-tag { position: absolute; top: 18px; right: 18px; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 4px 10px; border-radius: 999px; background: var(--gold-soft); color: #7a5a2c; z-index: 2; }
.service-card .paused-tag { position: absolute; top: 18px; right: 18px; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 4px 10px; border-radius: 999px; background: var(--charcoal); color: #fff; z-index: 2; }
.service-card-paused { opacity: 0.65; }
.service-card-paused:hover { opacity: 1; }
.service-card-paused .service-price { color: var(--charcoal-soft); }
@keyframes wiggle { 0%,100% { transform: rotate(0); } 25% { transform: rotate(-6deg) scale(1.08); } 75% { transform: rotate(6deg) scale(1.08); } }
.service-card:hover .service-icon { animation: wiggle 0.5s ease; }

/* MOBILE BAND */
.mobile-band { background: var(--pink); color: #fff; padding: 72px 0; position: relative; overflow: hidden; }
.mobile-band::before, .mobile-band::after { content: ''; position: absolute; border-radius: 50%; background: rgba(255,255,255,0.08); }
.mobile-band::before { width: 300px; height: 300px; top: -100px; right: -60px; }
.mobile-band::after { width: 180px; height: 180px; bottom: -80px; left: 8%; }
.mobile-band-inner { display: grid; grid-template-columns: auto 1fr auto; gap: 40px; align-items: center; position: relative; z-index: 2; }
.mobile-band-icon { width: 84px; height: 84px; background: #fff; border-radius: 20px; display: grid; place-items: center; box-shadow: 0 10px 30px -10px rgba(0,0,0,0.25); flex-shrink: 0; }
.mobile-band-icon svg { width: 44px; height: 44px; color: var(--pink); }
.mobile-band h2 { color: #fff; margin-bottom: 8px; }
.mobile-band .sub { opacity: 0.92; font-size: 1.05rem; max-width: 620px; }
.mobile-band .fineprint { font-size: 0.85rem; opacity: 0.8; margin-top: 8px; font-style: italic; }

/* PRICING */
.pricing { background: var(--cream); }
.pricing-tabs { display: flex; justify-content: center; gap: 8px; margin-bottom: 40px; padding: 8px; background: #fff; border-radius: 999px; box-shadow: var(--shadow-sm); border: 1px solid var(--cream-deep); width: fit-content; margin-left: auto; margin-right: auto; flex-wrap: wrap; }
.pricing-tab { padding: 12px 22px; border-radius: 999px; font-weight: 600; font-size: 0.95rem; color: var(--charcoal-soft); transition: all 0.2s; display: inline-flex; align-items: center; gap: 8px; }
.pricing-tab:hover { color: var(--charcoal); }
.pricing-tab.active { background: var(--pink); color: #fff; box-shadow: 0 4px 12px -4px rgba(236,107,142,0.5); }
.pricing-tab .weight { font-size: 0.75rem; font-weight: 500; opacity: 0.7; }
.pricing-breeds { text-align: center; margin-bottom: 24px; color: var(--charcoal-soft); font-size: 0.92rem; max-width: 780px; margin-left: auto; margin-right: auto; }
.pricing-breeds strong { color: var(--charcoal); font-weight: 600; }
.pricing-table { max-width: 820px; margin: 0 auto; background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); padding: 12px; border: 1px solid var(--cream-deep); }
.pricing-row { display: grid; grid-template-columns: auto 1fr auto auto; gap: 16px; align-items: center; padding: 18px 20px; border-bottom: 1px dashed var(--cream-deep); }
.pricing-row:last-child { border-bottom: none; }
.pricing-row .icon { width: 38px; height: 38px; border-radius: 10px; background: var(--pink-tint); display: grid; place-items: center; flex-shrink: 0; }
.pricing-row .icon svg { width: 20px; height: 20px; color: var(--pink); }
.pricing-row h4 { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 600; font-size: 1rem; margin-bottom: 2px; }
.pricing-row .desc { font-size: 0.85rem; color: var(--charcoal-soft); }
.pricing-row .mobile-pill { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; padding: 3px 8px; border-radius: 999px; text-transform: uppercase; white-space: nowrap; }
.pricing-row .mobile-pill.yes { background: var(--gold-soft); color: #7a5a2c; }
.pricing-row .mobile-pill.no { background: var(--cream-deep); color: var(--charcoal-soft); }
.pricing-row .price { font-family: 'Fraunces', serif; font-size: 1.15rem; font-weight: 600; color: var(--charcoal); white-space: nowrap; min-width: 90px; text-align: right; }
.pricing-note { text-align: center; margin-top: 24px; font-size: 0.88rem; color: var(--charcoal-soft); font-style: italic; max-width: 820px; margin-left: auto; margin-right: auto; line-height: 1.7; }

/* GALLERY */
.gallery { background: var(--cream); }
.ba-wrap { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-bottom: 48px; }
.ba-slider { position: relative; aspect-ratio: 4/3; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); user-select: none; cursor: ew-resize; }
.ba-slider img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.ba-slider .after-wrap { position: absolute; inset: 0; overflow: hidden; width: 50%; }
.ba-slider .after-wrap img { width: 200%; max-width: none; }
.ba-handle { position: absolute; top: 0; bottom: 0; left: 50%; width: 3px; background: #fff; transform: translateX(-50%); box-shadow: 0 0 12px rgba(0,0,0,0.25); }
.ba-handle::after { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 44px; height: 44px; border-radius: 50%; background: var(--pink); box-shadow: 0 4px 14px rgba(0,0,0,0.3); background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='15 18 9 12 15 6'/><polyline points='9 6 15 12 9 18' transform='translate(-2 0)'/></svg>"); background-repeat: no-repeat; background-position: center; background-size: 22px; }
.ba-label { position: absolute; top: 16px; padding: 6px 14px; border-radius: 999px; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; pointer-events: none; }
.ba-label.before { left: 16px; background: rgba(44,44,42,0.75); color: #fff; backdrop-filter: blur(8px); }
.ba-label.after { right: 16px; background: var(--pink); color: #fff; }
.masonry { columns: 4; column-gap: 16px; }
.masonry .tile { break-inside: avoid; margin-bottom: 16px; border-radius: var(--radius); overflow: hidden; position: relative; transition: transform 0.35s ease; box-shadow: var(--shadow-sm); }
.masonry .tile:hover { transform: translateY(-4px) rotate(-0.6deg); box-shadow: var(--shadow-md); }
.masonry .tile img { width: 100%; display: block; transition: transform 0.5s ease; }
.masonry .tile:hover img { transform: scale(1.04); }

/* ABOUT */
.about-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 72px; align-items: center; }
.about-photo { position: relative; aspect-ratio: 4/5; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); transform: rotate(-2deg); }
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-photo::after { content: ''; position: absolute; inset: 0; border: 3px dashed var(--pink-soft); border-radius: var(--radius-lg); transform: rotate(2deg) translate(12px, 12px); pointer-events: none; }
.about-text h2 { margin-bottom: 20px; }
.about-text p { color: var(--charcoal-soft); font-size: 1.05rem; margin-bottom: 16px; line-height: 1.7; }
.about-sig { font-family: 'Fraunces', serif; font-style: italic; color: var(--pink); font-size: 1.4rem; margin-top: 8px; margin-bottom: 32px; }
.credentials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; padding: 24px; background: var(--pink-tint); border-radius: var(--radius); }
.credentials .stat { text-align: center; }
.credentials .num { font-family: 'Fraunces', serif; font-size: 1.9rem; font-weight: 700; color: var(--pink-deep); line-height: 1; }
.credentials .lbl { font-size: 0.82rem; color: var(--charcoal-soft); margin-top: 4px; font-weight: 500; }

/* TESTIMONIALS */
.testimonials { background: var(--pink-tint); position: relative; overflow: hidden; }
.testimonials::before, .testimonials::after { content: ''; position: absolute; background: var(--pink-soft); border-radius: 50%; opacity: 0.5; }
.testimonials::before { width: 220px; height: 220px; top: 10%; left: -80px; }
.testimonials::after { width: 160px; height: 160px; bottom: 10%; right: -60px; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; position: relative; z-index: 2; }
.testimonial { background: #fff; padding: 32px 28px; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); position: relative; transition: transform 0.3s ease; }
.testimonial:hover { transform: translateY(-4px); }
.testimonial:nth-child(2) { transform: translateY(16px); }
.testimonial:nth-child(2):hover { transform: translateY(12px); }
.testimonial .stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; margin-bottom: 14px; }
.testimonial blockquote { font-family: 'Fraunces', serif; font-size: 1.1rem; font-weight: 500; line-height: 1.5; color: var(--charcoal); margin-bottom: 20px; font-style: italic; }
.testimonial blockquote::before { content: '"'; color: var(--pink); font-size: 1.4em; line-height: 0; vertical-align: -0.3em; margin-right: 2px; }
.testimonial blockquote::after { content: '"'; color: var(--pink); font-size: 1.4em; line-height: 0; vertical-align: -0.3em; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--pink); color: #fff; display: grid; place-items: center; font-weight: 700; font-family: 'Fraunces', serif; }
.reviewer-info .name { font-weight: 600; font-size: 0.95rem; }
.reviewer-info .hood { font-size: 0.82rem; color: var(--charcoal-soft); }

/* FAQ */
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: #fff; border-radius: var(--radius); border: 1px solid var(--cream-deep); overflow: hidden; transition: all 0.25s ease; }
.faq-item[open] { border-color: var(--pink-soft); box-shadow: var(--shadow-md); }
.faq-item summary { padding: 22px 24px; cursor: pointer; font-weight: 600; font-size: 1.02rem; display: flex; align-items: center; justify-content: space-between; gap: 16px; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: ''; width: 28px; height: 28px; border-radius: 8px; background: var(--pink-tint); background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23EC6B8E' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>"); background-repeat: no-repeat; background-position: center; background-size: 16px; flex-shrink: 0; transition: transform 0.25s; }
.faq-item[open] summary::after { transform: rotate(180deg); background-color: var(--pink); background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>"); }
.faq-item .answer { padding: 0 24px 24px; color: var(--charcoal-soft); line-height: 1.7; }

/* CONTACT */
.contact { background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: start; }
.contact-cta {
  background: linear-gradient(135deg, #fff 0%, var(--pink-tint) 100%);
  padding: 44px 40px; border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
  border: 1px solid var(--pink-soft); text-align: left;
}
.contact-cta h3 { font-size: 1.7rem; margin-bottom: 10px; }
.contact-cta p { color: var(--charcoal-soft); margin-bottom: 24px; font-size: 1rem; line-height: 1.6; }
.contact-cta .big-book {
  font-size: 1.1rem; padding: 18px 32px; width: 100%; margin-bottom: 14px;
}
.contact-cta .alt-ways { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.contact-cta .alt-way { display: flex; align-items: center; gap: 10px; padding: 12px 14px; background: #fff; border-radius: 12px; font-size: 0.88rem; font-weight: 500; border: 1px solid var(--cream-deep); transition: all 0.2s; }
.contact-cta .alt-way:hover { border-color: var(--pink); transform: translateY(-2px); }
.contact-cta .alt-way svg { width: 18px; height: 18px; color: var(--pink); flex-shrink: 0; }

.info-card { background: var(--charcoal); color: #fff; padding: 36px; border-radius: var(--radius-lg); position: sticky; top: 100px; }
.info-card h3 { color: #fff; font-family: 'Fraunces', serif; font-size: 1.5rem; margin-bottom: 24px; }
.info-row { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.info-row:last-child { border-bottom: none; }
.info-icon { width: 36px; height: 36px; border-radius: 10px; background: var(--pink); display: grid; place-items: center; flex-shrink: 0; }
.info-icon svg { width: 18px; height: 18px; color: #fff; }
.info-row .lbl { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.6); margin-bottom: 4px; }
.info-row .val { font-size: 0.98rem; line-height: 1.4; }
.map-embed { margin-top: 20px; border-radius: var(--radius); overflow: hidden; aspect-ratio: 16/10; background: var(--charcoal-soft); position: relative; }
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }
.social-row { display: flex; gap: 10px; margin-top: 24px; }
.social-row a { width: 40px; height: 40px; border-radius: 12px; background: rgba(255,255,255,0.08); display: grid; place-items: center; transition: all 0.2s; }
.social-row a:hover { background: var(--pink); transform: translateY(-2px); }
.social-row svg { width: 18px; height: 18px; color: #fff; }

/* FOOTER */
footer { background: var(--pink-deep); color: #fff; padding: 72px 0 32px; position: relative; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
footer .logo { color: #fff; }
footer .logo-mark { background: #fff; }
footer .logo-mark svg { color: var(--pink-deep); }
footer .logo .amp { color: var(--gold-soft); }
.footer-tag { margin-top: 14px; opacity: 0.85; font-size: 0.95rem; max-width: 300px; line-height: 1.6; }
.footer-col h4 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.15em; color: rgba(255,255,255,0.7); margin-bottom: 16px; font-weight: 700; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { opacity: 0.85; font-size: 0.95rem; transition: opacity 0.2s, transform 0.2s; display: inline-block; }
.footer-col a:hover { opacity: 1; transform: translateX(3px); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.15); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; gap: 16px; font-size: 0.88rem; opacity: 0.85; flex-wrap: wrap; }
.footer-bottom .heart { color: var(--gold-soft); }

/* REVEAL */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.8s cubic-bezier(.4,.2,.2,1), transform 0.8s cubic-bezier(.4,.2,.2,1); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ============ BOOKING MODAL ============ */
.modal-backdrop {
  position: fixed; inset: 0; background: rgba(44, 44, 42, 0.55);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  z-index: 200; display: none; align-items: center; justify-content: center;
  padding: 20px; animation: fadeIn 0.25s ease;
}
.modal-backdrop.open { display: flex; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

.booking-modal {
  background: var(--cream); border-radius: 24px; width: 100%; max-width: 640px;
  max-height: 92vh; display: flex; flex-direction: column;
  overflow: hidden; box-shadow: 0 30px 80px -20px rgba(44,44,42,0.4);
  animation: slideUp 0.35s cubic-bezier(.2,.8,.3,1);
}

.bm-header {
  padding: 22px 28px; background: #fff; border-bottom: 1px solid var(--cream-deep);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.bm-header-left { display: flex; align-items: center; gap: 12px; }
.bm-header-mark { width: 34px; height: 34px; background: var(--pink); border-radius: 10px; display: grid; place-items: center; }
.bm-header-mark svg { width: 20px; height: 20px; color: #fff; }
.bm-header-title { font-family: 'Fraunces', serif; font-weight: 600; font-size: 1.15rem; }
.bm-header-sub { font-size: 0.78rem; color: var(--charcoal-soft); }
.bm-close {
  width: 38px; height: 38px; border-radius: 10px; background: var(--cream);
  display: grid; place-items: center; transition: all 0.2s;
}
.bm-close:hover { background: var(--pink-tint); }
.bm-close svg { width: 18px; height: 18px; }

.bm-progress {
  height: 4px; background: var(--cream-deep); position: relative; overflow: hidden;
}
.bm-progress-fill {
  height: 100%; background: var(--pink); border-radius: 0 4px 4px 0;
  transition: width 0.4s cubic-bezier(.4,.2,.2,1);
}

.bm-body {
  padding: 32px 28px; overflow-y: auto; flex: 1;
}
.bm-step-label {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--pink); margin-bottom: 10px;
}
.bm-question {
  font-family: 'Fraunces', serif; font-size: 1.5rem; font-weight: 600;
  line-height: 1.2; margin-bottom: 6px; color: var(--charcoal);
}
.bm-help { color: var(--charcoal-soft); font-size: 0.95rem; margin-bottom: 24px; line-height: 1.5; }

.bm-options { display: grid; gap: 10px; }
.bm-option {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 18px; background: #fff; border: 2px solid var(--cream-deep);
  border-radius: 14px; cursor: pointer; text-align: left; width: 100%;
  transition: all 0.2s; font: inherit; color: inherit;
}
.bm-option:hover { border-color: var(--pink-soft); background: var(--pink-tint); transform: translateX(2px); }
.bm-option.selected { border-color: var(--pink); background: var(--pink-tint); box-shadow: 0 4px 12px -6px rgba(236,107,142,0.4); }
.bm-option.selected .bm-opt-check { background: var(--pink); border-color: var(--pink); }
.bm-option.selected .bm-opt-check::after { opacity: 1; }
.bm-opt-icon {
  width: 44px; height: 44px; border-radius: 12px; background: var(--cream);
  display: grid; place-items: center; flex-shrink: 0; transition: all 0.2s;
}
.bm-option.selected .bm-opt-icon { background: #fff; }
.bm-opt-icon svg { width: 22px; height: 22px; color: var(--pink); }
.bm-opt-icon .emoji { font-size: 1.4rem; }
.bm-opt-main { flex: 1; min-width: 0; }
.bm-opt-title { font-weight: 600; font-size: 1rem; margin-bottom: 2px; }
.bm-opt-sub { font-size: 0.85rem; color: var(--charcoal-soft); line-height: 1.4; }
.bm-opt-check {
  width: 22px; height: 22px; border-radius: 50%; border: 2px solid var(--cream-deep);
  flex-shrink: 0; position: relative; transition: all 0.2s;
}
.bm-opt-check::after {
  content: ''; position: absolute; top: 55%; left: 50%;
  width: 10px; height: 5px; border: 2px solid #fff; border-top: 0; border-right: 0;
  transform: translate(-50%, -50%) rotate(-45deg); opacity: 0; transition: opacity 0.15s;
}

.bm-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.bm-grid-2 .bm-option { flex-direction: column; align-items: flex-start; padding: 18px; }
.bm-grid-2 .bm-opt-icon { margin-bottom: 4px; }
.bm-grid-2 .bm-opt-check { display: none; }

.bm-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.bm-field label { font-size: 0.82rem; font-weight: 600; color: var(--charcoal); }
.bm-field input, .bm-field select, .bm-field textarea {
  padding: 13px 14px; border-radius: 12px; border: 2px solid var(--cream-deep);
  font-family: inherit; font-size: 0.95rem; background: #fff; color: var(--charcoal);
  transition: all 0.2s; width: 100%;
}
.bm-field input:focus, .bm-field select:focus, .bm-field textarea:focus {
  outline: none; border-color: var(--pink); box-shadow: 0 0 0 4px var(--pink-tint);
}
.bm-field textarea { resize: vertical; min-height: 90px; font-family: inherit; }
.bm-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* quote card */
.bm-quote {
  background: #fff; border: 2px solid var(--pink-soft); border-radius: 16px;
  padding: 20px; margin-top: 8px;
}
.bm-quote-label { font-size: 0.74rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--pink); margin-bottom: 6px; }
.bm-quote-amount { font-family: 'Fraunces', serif; font-size: 2rem; font-weight: 700; color: var(--charcoal); line-height: 1; }
.bm-quote-note { font-size: 0.82rem; color: var(--charcoal-soft); margin-top: 6px; font-style: italic; }
.bm-summary {
  background: var(--pink-tint); border-radius: 14px; padding: 18px 20px; margin-top: 16px;
  display: grid; gap: 10px;
}
.bm-summary-row { display: flex; justify-content: space-between; gap: 16px; font-size: 0.92rem; align-items: flex-start; }
.bm-summary-row .lbl { color: var(--charcoal-soft); font-weight: 500; }
.bm-summary-row .val { color: var(--charcoal); font-weight: 600; text-align: right; }

.bm-footer {
  padding: 18px 28px; background: #fff; border-top: 1px solid var(--cream-deep);
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.bm-step-count { font-size: 0.85rem; color: var(--charcoal-soft); font-weight: 500; }
.bm-nav { display: flex; gap: 10px; }
.bm-btn {
  padding: 11px 22px; border-radius: 999px; font-weight: 600; font-size: 0.92rem;
  transition: all 0.2s; display: inline-flex; align-items: center; gap: 6px;
}
.bm-btn-back { background: var(--cream); color: var(--charcoal); }
.bm-btn-back:hover { background: var(--cream-deep); }
.bm-btn-next { background: var(--pink); color: #fff; }
.bm-btn-next:hover:not(:disabled) { background: var(--pink-deep); transform: translateX(2px); }
.bm-btn-next:disabled { opacity: 0.4; cursor: not-allowed; }

.bm-success {
  text-align: center; padding: 40px 28px;
}
.bm-success-icon {
  width: 80px; height: 80px; border-radius: 50%; background: var(--pink-tint);
  display: grid; place-items: center; margin: 0 auto 20px;
  animation: popIn 0.5s cubic-bezier(.2,1.4,.4,1);
}
.bm-success-icon svg { width: 40px; height: 40px; color: var(--pink); }
@keyframes popIn { 0% { transform: scale(0); } 100% { transform: scale(1); } }
.bm-success h2 { font-size: 1.8rem; margin-bottom: 10px; }
.bm-success p { color: var(--charcoal-soft); max-width: 400px; margin: 0 auto 20px; line-height: 1.6; }

body.modal-open { overflow: hidden; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .services-grid, .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .masonry { columns: 3; }
  .hero-grid { gap: 40px; }
  .about-grid { gap: 40px; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-grid .footer-col:last-child { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
  section { padding: 72px 0; }
  .hero { padding: 120px 0 60px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-image-wrap { max-width: 420px; margin: 0 auto; transform: rotate(2deg); }
  .hero-tag.t1 { left: 10px; }
  .hero-tag.t2 { right: 10px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-cta .btn { display: none; }
  .services-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial:nth-child(2) { transform: none; }
  .testimonial:nth-child(2):hover { transform: translateY(-4px); }
  .masonry { columns: 2; }
  .ba-wrap { grid-template-columns: 1fr; }
  .mobile-band-inner { grid-template-columns: 1fr; text-align: center; }
  .mobile-band-icon { margin: 0 auto; }
  .about-grid { grid-template-columns: 1fr; }
  .about-photo { max-width: 360px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .info-card { position: static; }
  .form-row, .bm-row, .contact-cta .alt-ways, .bm-grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid .footer-col:first-child { grid-column: 1 / -1; }
  .footer-grid .footer-col:last-child { grid-column: 1 / -1; }
  .pricing-tabs { width: 100%; justify-content: flex-start; overflow-x: auto; }
  .pricing-row { grid-template-columns: auto 1fr auto; }
  .pricing-row .mobile-pill { grid-column: 2; grid-row: 2; justify-self: start; }
  .pricing-row .price { grid-row: 1 / 3; }
  .trust-bar { font-size: 0.85rem; gap: 12px; }
  .trust-bar .dot { display: none; }
  .credentials { grid-template-columns: 1fr; }
  .credentials .stat { display: flex; align-items: center; justify-content: center; gap: 14px; }
  .credentials .num { font-size: 1.5rem; }
  .bm-body { padding: 24px 20px; }
  .bm-header, .bm-footer { padding: 16px 20px; }
  .bm-question { font-size: 1.25rem; }
}
@media (max-width: 480px) {
  .masonry { columns: 1; }
  h1 { font-size: 2.2rem; }
}

/* Promo ribbon */
.promo-ribbon {
  position: fixed; top: 0; left: 0; right: 0; z-index: 101;
  background: var(--charcoal); color: #fff;
  text-align: center; padding: 8px 16px; font-size: 0.85rem; font-weight: 500;
  letter-spacing: 0.01em;
}
.promo-ribbon strong { color: var(--pink-soft); font-weight: 700; }
.promo-ribbon .sep { display: inline-block; width: 5px; height: 5px; background: var(--pink); border-radius: 50%; margin: 0 12px; vertical-align: middle; }
body.has-ribbon .nav { top: 36px; }
body.has-ribbon { padding-top: 36px; }
@media (max-width: 640px) { .promo-ribbon { font-size: 0.78rem; padding: 7px 12px; } .promo-ribbon .sep { margin: 0 8px; } }


/* Loyalty section */

.loyalty { background: var(--cream); padding: 80px 0; }
.loyalty-card { display: grid; grid-template-columns: 1.2fr 0.9fr; gap: 48px; align-items: center; background: linear-gradient(135deg, var(--pink-tint) 0%, var(--cream-deep) 100%); border-radius: var(--radius-lg); padding: 56px; box-shadow: var(--shadow-md); position: relative; overflow: hidden; }
.loyalty-card::before { content: ''; position: absolute; top: -40px; right: -40px; width: 200px; height: 200px; background: var(--pink-soft); border-radius: 50%; opacity: 0.4; }
.loyalty-text { position: relative; z-index: 1; }
.loyalty-text h2 { margin: 12px 0 16px; }
.loyalty-text p { color: var(--charcoal-soft); margin-bottom: 28px; line-height: 1.7; max-width: 480px; }
.loyalty-perks { display: flex; flex-direction: column; gap: 14px; }
.perk { display: flex; gap: 14px; align-items: flex-start; padding: 14px 16px; background: rgba(255,255,255,0.6); border-radius: 12px; backdrop-filter: blur(4px); }
.perk-icon { font-size: 1.6rem; line-height: 1; flex-shrink: 0; }
.perk-title { font-weight: 700; color: var(--charcoal); font-size: 0.98rem; }
.perk-sub { font-size: 0.84rem; color: var(--charcoal-soft); margin-top: 2px; }
.loyalty-tracker { background: #fff; border-radius: var(--radius); padding: 32px 28px; box-shadow: var(--shadow-md); position: relative; z-index: 1; transform: rotate(2deg); }
.tracker-label { font-family: 'Fraunces', serif; font-size: 1.05rem; font-weight: 600; color: var(--pink-deep); margin-bottom: 18px; text-align: center; }
.tracker-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; margin-bottom: 16px; }
.paw { aspect-ratio: 1; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; background: var(--cream-deep); border-radius: 50%; opacity: 0.35; border: 2px dashed transparent; }
.paw.filled { background: var(--pink-soft); opacity: 1; border-color: var(--pink); }
.paw.reward { background: var(--gold-soft); opacity: 1; border: 2px dashed var(--gold); font-size: 1.5rem; }
.tracker-foot { text-align: center; font-size: 0.85rem; color: var(--charcoal-soft); font-style: italic; }
@media (max-width: 860px) { .loyalty-card { grid-template-columns: 1fr; padding: 36px 28px; gap: 32px; } .loyalty-tracker { transform: rotate(0deg); max-width: 360px; margin: 0 auto; } }


/* ===== Multi-page additions ===== */
.breadcrumbs { background: var(--cream); border-bottom: 1px solid var(--cream-deep); padding: 14px 0; font-size: 14px; }
.breadcrumbs .container { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; color: var(--charcoal-soft); }
.breadcrumbs a { color: var(--charcoal-soft); text-decoration: none; transition: color 0.2s; }
.breadcrumbs a:hover { color: var(--pink-deep); }
.breadcrumbs [aria-current="page"] { color: var(--charcoal); font-weight: 600; }
.bc-sep { color: var(--cream-deep); margin: 0 4px; }

.page-hero { padding: 56px 0 48px; background: linear-gradient(180deg, var(--cream) 0%, var(--ivory) 100%); border-bottom: 1px solid var(--cream-deep); }
.page-hero h1 { font-family: var(--font-serif); font-size: clamp(36px, 5vw, 56px); font-weight: 700; line-height: 1.05; color: var(--charcoal); margin: 14px 0 18px; max-width: 880px; }
.page-hero p { font-size: 18px; line-height: 1.65; color: var(--charcoal-soft); max-width: 720px; margin-bottom: 24px; }
.page-hero .eyebrow { display: inline-block; }
.page-hero .hero-ctas { margin-top: 8px; }

.page-content { padding: 64px 0 96px; }
.content-narrow { max-width: 820px; }
.content-section { margin-bottom: 52px; }
.content-section h2 { font-family: var(--font-serif); font-size: clamp(26px, 3vw, 34px); font-weight: 700; color: var(--charcoal); margin-bottom: 16px; line-height: 1.15; }
.content-section p { font-size: 17px; line-height: 1.7; color: var(--charcoal-soft); margin-bottom: 14px; }
.content-section ul { font-size: 17px; line-height: 1.8; color: var(--charcoal-soft); padding-left: 22px; margin-bottom: 14px; }
.content-section li { margin-bottom: 4px; }
.content-section a { color: var(--pink-deep); font-weight: 600; }
.content-section a:hover { text-decoration: underline; }
.content-section.cta-section { background: var(--pink-tint); border-radius: var(--radius-lg); padding: 36px; text-align: center; border: 1px solid var(--pink-soft); }
.content-section.cta-section h2 { margin-bottom: 8px; }
.content-section.cta-section p { margin: 0 auto 20px; }

.price-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); margin-top: 16px; }
.price-table th, .price-table td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--cream-deep); font-size: 16px; }
.price-table th { background: var(--cream); font-weight: 700; color: var(--charcoal); font-size: 14px; text-transform: uppercase; letter-spacing: 0.05em; }
.price-table tr:last-child td { border-bottom: 0; }
.price-table td:nth-child(2) { font-weight: 700; color: var(--pink-deep); }

.quick-links { padding: 80px 0 64px; background: var(--ivory); }
.ql-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 32px; }
.ql-card { display: block; background: #fff; padding: 28px 26px; border-radius: var(--radius-lg); border: 1px solid var(--cream-deep); text-decoration: none; color: inherit; transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s; }
.ql-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--pink-soft); }
.ql-icon { font-size: 30px; display: block; margin-bottom: 10px; }
.ql-card h3 { font-family: var(--font-serif); font-size: 22px; font-weight: 700; margin-bottom: 6px; color: var(--charcoal); }
.ql-card p { font-size: 14.5px; color: var(--charcoal-soft); line-height: 1.5; }

.cta-band { padding: 64px 0; background: var(--pink-tint); }
.cta-band-inner { background: #fff; border-radius: var(--radius-xl); padding: 44px 48px; box-shadow: var(--shadow-lg); display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 28px; border: 1px solid var(--pink-soft); }
.cta-band-inner h2 { font-family: var(--font-serif); font-size: clamp(26px, 3vw, 36px); font-weight: 700; color: var(--charcoal); margin-bottom: 6px; line-height: 1.15; }
.cta-band-inner p { color: var(--charcoal-soft); font-size: 16px; }

.btn-link { background: none; border: none; color: var(--pink-deep); font-weight: 600; cursor: pointer; padding: 0; font: inherit; text-decoration: underline; }
.btn-link:hover { color: var(--pink); }

@media (max-width: 720px) {
  .cta-band-inner { padding: 32px 24px; flex-direction: column; align-items: flex-start; }
  .page-hero { padding: 40px 0 32px; }
  .page-content { padding: 40px 0 64px; }
  .content-section.cta-section { padding: 28px 20px; }
}


/* ===== Class aliases for new partials (brand/footer naming) ===== */
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: 'Fraunces', serif; font-weight: 700; font-size: 1.3rem; color: var(--charcoal); letter-spacing: -0.01em; text-decoration: none; }
.brand-mark { width: 38px; height: 38px; background: var(--pink); border-radius: 12px; display: grid; place-items: center; box-shadow: 0 4px 12px -4px rgba(236,107,142,0.5); transition: transform 0.3s ease; flex-shrink: 0; }
.brand:hover .brand-mark { transform: rotate(-8deg) scale(1.06); }
.brand-mark svg { width: 22px; height: 22px; color: #fff; }
.brand-name { white-space: nowrap; }
.brand .amp { color: var(--pink); font-style: italic; font-weight: 500; margin: 0 2px; }
footer .brand { color: #fff; }
footer .brand-mark { background: #fff; }
footer .brand-mark svg { color: var(--pink-deep); }
footer .brand .amp { color: var(--gold-soft); }

/* nav-cta button (the "Book Now" pill in nav) */
.nav-cta { background: var(--pink); color: #fff; border: none; padding: 10px 20px; border-radius: 999px; font-weight: 600; font-size: 0.92rem; cursor: pointer; box-shadow: 0 4px 12px -4px rgba(236,107,142,0.5); transition: all 0.2s ease; font-family: inherit; }
.nav-cta:hover { background: var(--pink-deep); transform: translateY(-1px); box-shadow: 0 6px 16px -4px rgba(236,107,142,0.6); }

/* nav-links container needs to be a flex row, not just a list flex */
nav.nav .nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }

/* Hamburger menu mobile open state — using .nav-links.open instead of .mobile-menu */
@media (max-width: 860px) {
  nav.nav .nav-links { display: none; position: absolute; top: 100%; left: 16px; right: 16px; background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 16px; flex-direction: column; align-items: stretch; gap: 4px; margin-top: 8px; }
  nav.nav .nav-links.open { display: flex; }
  nav.nav .nav-links a { padding: 12px 14px; border-radius: 10px; }
  nav.nav .nav-cta { width: 100%; margin-top: 6px; }
  .hamburger { display: flex !important; }
}
@media (min-width: 861px) {
  .hamburger { display: none !important; }
}

/* Add aria-current=page styling for nav links */
nav.nav .nav-links a[aria-current="page"] { color: var(--pink-deep); background: var(--pink-tint); }

/* Top spacing for interior pages — fixed nav (~70px) sits below ribbon (36px), so reserve room.
   The first element AFTER the nav (breadcrumbs OR page-hero) gets the offset. */
.breadcrumbs { margin-top: 70px; }
/* If a page-hero is the immediate first content (no breadcrumbs), give it the spacer */
.nav + .page-hero { padding-top: 110px; }
/* If breadcrumbs precede the page-hero, breadcrumbs already pushed us down */
.breadcrumbs + .page-hero { padding-top: 56px; }


/* =========================================================
   BOOKING MODAL — HTML class aliases
   (HTML uses .bm-overlay / .bm-window / .bm-progress-bar /
    .bm-back / .bm-next; CSS previously used different names)
   ========================================================= */
.bm-overlay {
  position: fixed; inset: 0; background: rgba(44,44,42,0.55);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  z-index: 200; display: none; align-items: center; justify-content: center;
  padding: 20px;
}
.bm-overlay.open { display: flex; animation: fadeIn 0.25s ease; }

.bm-window {
  background: var(--cream); border-radius: 24px; width: 100%; max-width: 640px;
  max-height: 92vh; display: flex; flex-direction: column;
  overflow: hidden; box-shadow: 0 30px 80px -20px rgba(44,44,42,0.4);
  animation: slideUp 0.35s cubic-bezier(.2,.8,.3,1);
}

.bm-progress-wrap {
  display: flex; align-items: center; gap: 12px;
  padding: 0 28px 12px; background: #fff;
}
.bm-progress { flex: 1; height: 4px; background: var(--cream-deep); border-radius: 4px; overflow: hidden; }
.bm-progress-bar {
  height: 100%; background: var(--pink); border-radius: 0 4px 4px 0; width: 0;
  transition: width 0.4s cubic-bezier(.4,.2,.2,1);
}
.bm-step-count { font-size: 0.78rem; color: var(--charcoal-soft); font-weight: 600; white-space: nowrap; }

.bm-header-text h2 { font-family: 'Fraunces', serif; font-weight: 600; font-size: 1.15rem; margin: 0; }
.bm-header-text p { font-size: 0.78rem; color: var(--charcoal-soft); margin: 2px 0 0; }

.bm-back, .bm-next {
  padding: 11px 22px; border-radius: 999px; font-weight: 600; font-size: 0.92rem;
  transition: all 0.2s; display: inline-flex; align-items: center; gap: 6px;
  font-family: inherit; cursor: pointer; border: none;
}
.bm-back { background: var(--cream); color: var(--charcoal); }
.bm-back:hover { background: var(--cream-deep); }
.bm-next { background: var(--pink); color: #fff; }
.bm-next:hover:not(:disabled) { background: var(--pink-deep); transform: translateX(2px); }
.bm-next:disabled { opacity: 0.4; cursor: not-allowed; }


/* =========================================================
   VISUAL CALENDAR (booking wizard step 7)
   ========================================================= */
.bm-cal {
  background: #fff; border: 2px solid var(--cream-deep); border-radius: 16px;
  padding: 16px; margin-bottom: 20px;
}
.bm-cal-nav {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 12px;
}
.bm-cal-month { font-family: 'Fraunces', serif; font-weight: 600; font-size: 1rem; color: var(--charcoal); }
.bm-cal-arr {
  width: 32px; height: 32px; border-radius: 8px; background: var(--cream);
  display: grid; place-items: center; font-size: 1.3rem; line-height: 1;
  border: none; cursor: pointer; font-family: inherit; color: var(--charcoal);
  transition: all 0.15s;
}
.bm-cal-arr:hover:not(:disabled) { background: var(--pink-tint); color: var(--pink); }
.bm-cal-arr:disabled { opacity: 0.3; cursor: not-allowed; }

.bm-cal-grid {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px;
}
.cal-th {
  text-align: center; font-size: 0.72rem; font-weight: 700; color: var(--charcoal-soft);
  text-transform: uppercase; letter-spacing: 0.05em; padding: 4px 0 8px;
}
.cal-day {
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  font-size: 0.88rem; font-weight: 500; border-radius: 8px; border: none;
  cursor: pointer; font-family: inherit; transition: all 0.15s; position: relative;
}
.cal-day.cal-open { background: var(--cream); color: var(--charcoal); }
.cal-day.cal-open:hover { background: var(--pink-tint); color: var(--pink); border: 1.5px solid var(--pink-soft); }
.cal-day.cal-sel { background: var(--pink) !important; color: #fff !important; font-weight: 700; box-shadow: 0 4px 10px -4px rgba(236,107,142,0.6); }
.cal-day.cal-full { background: var(--cream-deep); color: var(--charcoal-soft); cursor: not-allowed; text-decoration: line-through; opacity: 0.7; }
.cal-day.cal-closed { background: transparent; color: var(--cream-deep); cursor: not-allowed; opacity: 0.5; }
.cal-day.cal-past { background: transparent; color: var(--cream-deep); cursor: not-allowed; opacity: 0.4; }
.cal-empty { aspect-ratio: 1; }

.bm-cal-legend { display: flex; gap: 14px; justify-content: center; margin-top: 12px; flex-wrap: wrap; }
.cal-leg { display: inline-flex; align-items: center; gap: 5px; font-size: 0.75rem; color: var(--charcoal-soft); }
.cal-leg::before { content: ''; width: 10px; height: 10px; border-radius: 3px; flex-shrink: 0; }
.cal-leg-open::before { background: var(--cream); border: 1.5px solid var(--cream-deep); }
.cal-leg-full::before { background: var(--cream-deep); }
.cal-leg-closed::before { background: var(--cream-deep); opacity: 0.4; }

.bm-time-header {
  font-size: 0.82rem; font-weight: 700; color: var(--charcoal); margin-bottom: 10px;
  padding: 8px 12px; background: var(--pink-tint); border-radius: 8px; border-left: 3px solid var(--pink);
}
.bm-cal-prompt {
  text-align: center; color: var(--charcoal-soft); font-size: 0.92rem;
  padding: 16px; background: var(--cream); border-radius: 10px;
  border: 1.5px dashed var(--cream-deep); margin-top: 4px;
}
.bm-slots-loading { opacity: 0.6; }
.bm-slots-none { color: var(--charcoal-soft); }
.bm-slots-grid {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 4px;
}
.bm-slot {
  padding: 10px 18px; border-radius: 10px; border: 2px solid var(--cream-deep);
  background: var(--cream); color: var(--charcoal); font-size: 0.95rem;
  font-weight: 600; cursor: pointer; transition: all 0.15s; white-space: nowrap;
}
.bm-slot:hover { border-color: var(--pink); background: var(--pink-tint); }
.bm-slot.selected { border-color: var(--pink); background: var(--pink); color: #fff; }


/* =========================================================
   PHOTO UPLOAD (booking wizard step 5)
   ========================================================= */
.bm-photo-upload { margin-bottom: 4px; }
.bm-photo-label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--charcoal); margin-bottom: 8px; }
.bm-photo-drop {
  border: 2px dashed var(--cream-deep); border-radius: 14px;
  padding: 24px 16px; text-align: center; cursor: pointer;
  background: var(--cream); transition: all 0.2s; position: relative;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  min-height: 100px; justify-content: center;
}
.bm-photo-drop:hover { border-color: var(--pink-soft); background: var(--pink-tint); }
.bm-photo-icon { font-size: 2rem; line-height: 1; }
.bm-photo-text { font-size: 0.9rem; font-weight: 600; color: var(--charcoal); }
.bm-photo-sub { font-size: 0.78rem; color: var(--charcoal-soft); }
.bm-photo-preview { max-height: 160px; max-width: 100%; border-radius: 10px; object-fit: cover; }
.bm-photo-clear {
  margin-top: 8px; font-size: 0.78rem; color: var(--charcoal-soft); background: none; border: none;
  cursor: pointer; text-decoration: underline; font-family: inherit; padding: 0;
}
.bm-photo-clear:hover { color: var(--pink-deep); }


/* =========================================================
   CONTACT PREFERENCE TABS (booking wizard step 8)
   ========================================================= */
.bm-pref-row {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  margin-bottom: 18px; padding: 12px 14px; background: var(--cream);
  border-radius: 12px; border: 1.5px solid var(--cream-deep);
}
.bm-pref-label { font-size: 0.82rem; font-weight: 600; color: var(--charcoal); white-space: nowrap; }
.bm-pref-tabs { display: flex; gap: 6px; flex-wrap: wrap; }
.bm-pref-tab {
  padding: 7px 16px; border-radius: 999px; font-size: 0.84rem; font-weight: 600;
  border: 1.5px solid var(--cream-deep); background: #fff; color: var(--charcoal-soft);
  cursor: pointer; font-family: inherit; transition: all 0.18s;
}
.bm-pref-tab:hover { border-color: var(--pink-soft); color: var(--charcoal); }
.bm-pref-tab.active { background: var(--pink); border-color: var(--pink); color: #fff; }


/* =========================================================
   DEPOSIT STEP (booking wizard step 9)
   ========================================================= */
.bm-deposit-card {
  background: var(--cream); border-radius: 14px; padding: 18px 16px; margin-top: 14px;
  border: 1.5px solid var(--cream-deep);
}
.bm-deposit-demo-note {
  font-size: 0.82rem; color: var(--charcoal-soft); margin-bottom: 14px; padding: 10px 12px;
  background: var(--pink-tint); border-radius: 8px; border-left: 3px solid var(--pink); line-height: 1.5;
}
.bm-deposit-secure { font-size: 0.78rem; color: var(--charcoal-soft); text-align: center; margin-top: 8px; }


/* =========================================================
   STICKY MOBILE CTA
   ========================================================= */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 150;
  padding: 12px 20px 16px; background: #fff;
  box-shadow: 0 -4px 20px -8px rgba(44,44,42,0.18);
  border-top: 1px solid var(--cream-deep);
  transform: translateY(100%); transition: transform 0.3s cubic-bezier(.4,.2,.2,1);
  display: none;
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta-btn { width: 100%; padding: 15px; font-size: 1rem; }
@media (max-width: 768px) { .sticky-cta { display: block; } }


/* =========================================================
   EXIT-INTENT POPUP
   ========================================================= */
.exit-popup {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(44,44,42,0.55); backdrop-filter: blur(6px);
  display: none; align-items: center; justify-content: center; padding: 20px;
}
.exit-popup.visible { display: flex; animation: fadeIn 0.25s ease; }
.exit-popup-inner {
  background: var(--cream); border-radius: 24px; padding: 40px 36px;
  max-width: 460px; width: 100%; text-align: center; position: relative;
  box-shadow: 0 30px 80px -20px rgba(44,44,42,0.4);
  animation: slideUp 0.3s cubic-bezier(.2,.8,.3,1);
}
.exit-popup-close {
  position: absolute; top: 16px; right: 16px; width: 36px; height: 36px;
  border-radius: 10px; background: var(--cream-deep); font-size: 1.3rem; line-height: 1;
  display: grid; place-items: center; cursor: pointer; border: none; font-family: inherit;
  color: var(--charcoal-soft); transition: all 0.2s;
}
.exit-popup-close:hover { background: var(--pink-soft); color: var(--pink-deep); }
.exit-popup-paw { font-size: 3rem; margin-bottom: 12px; }
.exit-popup-inner h3 { font-family: 'Fraunces', serif; font-size: 1.5rem; margin-bottom: 10px; color: var(--charcoal); line-height: 1.2; }
.exit-popup-inner p { color: var(--charcoal-soft); font-size: 0.98rem; margin-bottom: 24px; line-height: 1.5; }
.exit-popup-cta { width: 100%; margin-bottom: 12px; }
.exit-popup-dismiss {
  background: none; border: none; font-size: 0.82rem; color: var(--charcoal-soft);
  cursor: pointer; font-family: inherit; text-decoration: underline; padding: 0;
}
.exit-popup-dismiss:hover { color: var(--charcoal); }
@media (max-width: 480px) { .exit-popup-inner { padding: 32px 24px; } }


/* =========================================================
   (WhatsApp button removed — replaced by chatbot widget)


/* =========================================================
   HOMEPAGE — REVIEWS PLACEHOLDER SECTION
   ========================================================= */
.reviews-section { background: var(--ivory); padding: 80px 0; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.review-card {
  background: #fff; border-radius: var(--radius-lg); padding: 28px 24px;
  border: 1px solid var(--cream-deep); box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s;
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.review-card-stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; margin-bottom: 12px; }
.review-card-text { font-family: 'Fraunces', serif; font-style: italic; font-size: 1rem; font-weight: 500; color: var(--charcoal); line-height: 1.55; margin-bottom: 16px; }
.review-card-author { display: flex; align-items: center; gap: 10px; }
.review-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--pink); color: #fff; display: grid; place-items: center; font-family: 'Fraunces', serif; font-weight: 700; font-size: 1rem; flex-shrink: 0; }
.review-author-name { font-weight: 600; font-size: 0.92rem; }
.review-author-loc { font-size: 0.8rem; color: var(--charcoal-soft); }
.reviews-embed-placeholder {
  margin-top: 32px; padding: 20px; background: #fff; border-radius: var(--radius);
  border: 2px dashed var(--cream-deep); text-align: center;
  font-size: 0.88rem; color: var(--charcoal-soft);
}
@media (max-width: 860px) { .reviews-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .reviews-grid { grid-template-columns: 1fr; } }


/* =========================================================
   HOMEPAGE — VIDEO PLACEHOLDER + CERT BADGES
   ========================================================= */
.video-section { background: var(--cream); padding: 80px 0; }
.video-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.video-placeholder {
  aspect-ratio: 16/9; background: var(--charcoal); border-radius: var(--radius-lg);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; color: rgba(255,255,255,0.7); position: relative; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.video-placeholder::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, var(--pink-deep), var(--charcoal)); opacity: 0.9; }
.video-play-icon {
  width: 72px; height: 72px; border-radius: 50%; background: rgba(255,255,255,0.15);
  display: grid; place-items: center; position: relative; z-index: 1;
  border: 2px solid rgba(255,255,255,0.3); transition: all 0.2s; cursor: pointer;
}
.video-play-icon:hover { background: rgba(255,255,255,0.25); transform: scale(1.08); }
.video-play-icon svg { width: 28px; height: 28px; color: #fff; }
.video-placeholder-text { position: relative; z-index: 1; font-size: 0.9rem; font-weight: 500; opacity: 0.8; }
.video-content h2 { margin-bottom: 16px; }
.video-content p { color: var(--charcoal-soft); font-size: 1.05rem; line-height: 1.7; margin-bottom: 20px; }

.cert-badges { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.cert-badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 10px 16px;
  background: #fff; border: 1.5px solid var(--cream-deep); border-radius: var(--radius);
  font-size: 0.84rem; font-weight: 600; color: var(--charcoal);
  box-shadow: var(--shadow-sm);
}
.cert-badge-icon { font-size: 1.2rem; }
.cert-badge-placeholder {
  border-style: dashed; color: var(--charcoal-soft); opacity: 0.7;
}

@media (max-width: 860px) {
  .video-layout { grid-template-columns: 1fr; gap: 32px; }
}

/* ── Chatbot widget ─────────────────────────────────────── */
.chat-widget { position: fixed; bottom: 24px; right: 20px; z-index: 1200; display: flex; flex-direction: column; align-items: flex-end; gap: 12px; }

.chat-fab { width: 56px; height: 56px; border-radius: 50%; background: var(--pink); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(236,107,142,0.45); transition: transform 0.2s, box-shadow 0.2s; position: relative; }
.chat-fab:hover { transform: scale(1.07); box-shadow: 0 6px 28px rgba(236,107,142,0.55); }
.chat-fab-icon { width: 22px; height: 22px; stroke: #fff; position: absolute; transition: opacity 0.2s, transform 0.2s; }
.chat-fab-close { opacity: 0; transform: rotate(90deg); }
.chat-fab[aria-expanded="true"] .chat-fab-open { opacity: 0; transform: rotate(-90deg); }
.chat-fab[aria-expanded="true"] .chat-fab-close { opacity: 1; transform: rotate(0); }
.chat-fab-badge { position: absolute; top: -4px; right: -4px; background: var(--charcoal); color: #fff; font-size: 11px; font-weight: 700; width: 18px; height: 18px; border-radius: 50%; display: none; align-items: center; justify-content: center; border: 2px solid #fff; }

.chat-panel { position: absolute; bottom: 68px; right: 0; width: 340px; max-height: 520px; background: #fff; border-radius: 20px; box-shadow: 0 12px 48px rgba(44,44,42,0.18); display: flex; flex-direction: column; overflow: hidden; transform: scale(0.9) translateY(10px); transform-origin: bottom right; opacity: 0; pointer-events: none; transition: opacity 0.22s, transform 0.22s; }
.chat-panel.open { opacity: 1; transform: scale(1) translateY(0); pointer-events: all; }

.chat-header { background: var(--pink); padding: 14px 16px; display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.chat-header-avatar { width: 36px; height: 36px; background: rgba(255,255,255,0.25); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.chat-header-text { flex: 1; display: flex; flex-direction: column; }
.chat-header-text strong { color: #fff; font-size: 0.95rem; }
.chat-header-text span { color: rgba(255,255,255,0.8); font-size: 0.78rem; margin-top: 1px; }
.chat-header-close { background: none; border: none; color: rgba(255,255,255,0.8); font-size: 22px; line-height: 1; cursor: pointer; padding: 0 2px; }
.chat-header-close:hover { color: #fff; }

.chat-messages { flex: 1; overflow-y: auto; padding: 16px 14px 8px; display: flex; flex-direction: column; gap: 8px; scroll-behavior: smooth; }
.chat-messages::-webkit-scrollbar { width: 4px; }
.chat-messages::-webkit-scrollbar-thumb { background: var(--cream-deep); border-radius: 4px; }

.chat-msg { display: flex; }
.chat-msg-bot { justify-content: flex-start; }
.chat-msg-user { justify-content: flex-end; }
.chat-bubble { max-width: 82%; padding: 10px 13px; border-radius: 16px; font-size: 0.87rem; line-height: 1.55; }
.chat-msg-bot .chat-bubble { background: var(--cream); color: var(--charcoal); border-bottom-left-radius: 4px; }
.chat-msg-user .chat-bubble { background: var(--pink); color: #fff; border-bottom-right-radius: 4px; }

.chat-chips { display: flex; flex-wrap: wrap; gap: 6px; padding: 0 2px 4px; }
.chat-chip { background: #fff; border: 1.5px solid var(--pink-soft); color: var(--pink-deep); font-size: 0.78rem; font-weight: 600; padding: 5px 11px; border-radius: 20px; cursor: pointer; transition: background 0.15s, border-color 0.15s; font-family: inherit; white-space: nowrap; }
.chat-chip:hover { background: var(--pink-tint); border-color: var(--pink); }

.chat-input-row { display: flex; align-items: center; gap: 8px; padding: 10px 12px; border-top: 1px solid var(--cream-deep); flex-shrink: 0; background: #fff; }
.chat-input { flex: 1; border: 1.5px solid var(--cream-deep); border-radius: 24px; padding: 8px 14px; font-size: 0.88rem; font-family: inherit; color: var(--charcoal); outline: none; transition: border-color 0.15s; }
.chat-input:focus { border-color: var(--pink); }
.chat-send { width: 36px; height: 36px; background: var(--pink); border: none; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background 0.15s; }
.chat-send:hover { background: var(--pink-deep); }
.chat-send svg { width: 15px; height: 15px; stroke: #fff; }

@media (max-width: 400px) {
  .chat-panel { width: calc(100vw - 24px); right: 0; }
}
