/* =========================================
   BOSSA WAX STUDIO — Stylesheet
   ========================================= */

:root {
  --clay:       #B86B52;
  --clay-h:     #A05847;
  --sand:       #B7A59A;
  --blush:      #E8D8D0;
  --blush-d:    #DCC8BC;
  --cream:      #FAF7F5;
  --cream-d:    #F3EDEA;
  --espresso:   #2A1A14;
  --espresso-l: #3D2218;
  --smoke:      #8A7B75;
  --serif:      'Cormorant Garamond', Georgia, serif;
  --sans:       'Jost', sans-serif;
  --nav-h:      68px;
  --max:        1200px;
  --ease:       0.25s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--cream); color: var(--espresso); line-height: 1.7; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }

/* ── Typography ── */
h1 { font-family: var(--serif); font-size: clamp(40px, 5.5vw, 80px); font-weight: 300; line-height: 1.05; letter-spacing: -.01em; }
h2 { font-family: var(--serif); font-size: clamp(30px, 3.5vw, 52px); font-weight: 300; line-height: 1.1; }
h3 { font-family: var(--serif); font-size: clamp(20px, 2vw, 28px); font-weight: 400; line-height: 1.2; }
p  { font-weight: 300; color: var(--smoke); line-height: 1.75; max-width: 620px; }

.eyebrow {
  display: block;
  font-size: 10px; font-weight: 600; letter-spacing: .3em; text-transform: uppercase;
  color: var(--clay); margin-bottom: 14px;
}

/* ── Layout ── */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 56px; }
section { padding: 96px 0; }
section.alt { background: var(--cream-d); }
section.dark-bg { background: var(--espresso); }

/* ── Nav ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; height: var(--nav-h);
  background: var(--espresso); z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 56px; border-bottom: 1px solid rgba(255,255,255,.05);
}
.nav-brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--serif); font-size: 14px; letter-spacing: .2em; text-transform: uppercase; color: var(--cream);
}
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 11px; font-weight: 500; letter-spacing: .15em; text-transform: uppercase; color: var(--sand); transition: color var(--ease); }
.nav-links a:hover,
.nav-links a[aria-current="page"] { color: var(--cream); }
.nav-links .nav-cta { background: var(--clay); color: var(--cream); padding: 9px 22px; border-radius: 2px; transition: background var(--ease); }
.nav-links .nav-cta:hover { background: var(--clay-h); }
.nav-toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 38px; height: 38px; background: none; border: none; cursor: pointer; padding: 0; }
.nav-toggle span { display: block; width: 20px; height: 1.5px; background: var(--cream); transition: transform var(--ease), opacity var(--ease); }
.nav.open .nav-toggle span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav.open .nav-toggle span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 38px; font-family: var(--sans); font-size: 11px; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase; border: none; border-radius: 2px; cursor: pointer; transition: all var(--ease);
}
.btn-primary   { background: var(--clay); color: var(--cream); }
.btn-primary:hover { background: var(--clay-h); color: var(--cream); }
.btn-secondary { background: transparent; color: var(--cream); border: 1.5px solid rgba(255,255,255,.4); }
.btn-secondary:hover { border-color: var(--cream); }
.btn-outline   { background: transparent; color: var(--espresso); border: 1.5px solid var(--espresso); }
.btn-outline:hover { background: var(--espresso); color: var(--cream); }
.btn-ghost     { background: transparent; color: var(--clay); border: 1.5px solid var(--clay); }
.btn-ghost:hover { background: var(--clay); color: var(--cream); }
.btn-wa        { background: var(--clay); color: var(--cream); }
.btn-wa:hover  { background: var(--clay-h); color: var(--cream); }
.btn-dark      { background: var(--espresso); color: var(--cream); }
.btn-dark:hover { background: var(--espresso-l); color: var(--cream); }
.btn-sm        { padding: 10px 22px; font-size: 10px; }

/* ── Hero ── */
.hero {
  min-height: 100vh; background: var(--espresso); overflow: hidden;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: calc(var(--nav-h) + 72px) 56px 80px; position: relative;
}
.hero::before {
  content:''; position: absolute; width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(184,107,82,.15) 0%, transparent 65%);
  top: -180px; right: -180px; pointer-events: none;
}
.hero::after {
  content:''; position: absolute; width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(183,165,154,.10) 0%, transparent 65%);
  bottom: -100px; left: -100px; pointer-events: none;
}
.hero-inner   { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; }
.hero-logo    { margin-bottom: 40px; }
.hero h1      { color: var(--cream); letter-spacing: .02em; margin-bottom: 12px; }
.hero-tagline { font-family: var(--serif); font-style: italic; font-size: clamp(18px, 2vw, 24px); color: var(--sand); letter-spacing: .04em; margin-bottom: 8px; max-width: none; }
.hero-sub     { font-size: 11px; letter-spacing: .25em; text-transform: uppercase; color: var(--smoke); max-width: none; margin-bottom: 48px; }
.hero-ctas    { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.hero-scroll  {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%); z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 9px; letter-spacing: .25em; text-transform: uppercase; color: var(--smoke);
}
.hero-scroll::after {
  content:''; display: block; width: 1px; height: 36px;
  background: linear-gradient(to bottom, var(--smoke), transparent);
  animation: scrollpulse 2s ease-in-out infinite;
}
@keyframes scrollpulse { 0%,100% { opacity: .7; } 50% { opacity: .2; } }

/* ── Trust Bar ── */
.trust-bar { background: var(--cream-d); padding: 44px 0; border-bottom: 1px solid var(--blush-d); }
.trust-bar .wrap { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; }
.trust-item { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 10px; padding: 0 16px; border-right: 1px solid var(--blush-d); }
.trust-item:last-child { border-right: none; }
.trust-icon  { width: 32px; height: 32px; color: var(--clay); }
.trust-label { font-size: 13px; font-weight: 600; color: var(--espresso); max-width: none; margin: 0; }
.trust-sub   { font-size: 11px; color: var(--smoke); max-width: none; margin: 0; line-height: 1.4; }

/* ── Services Preview Cards ── */
.service-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 3px; margin-top: 60px; }
.s-card { background: var(--cream-d); padding: 44px 40px; transition: background var(--ease); }
.s-card:hover { background: var(--blush); }
.s-card .num { font-family: var(--serif); font-size: 60px; font-weight: 300; color: var(--blush-d); line-height: 1; margin-bottom: 14px; transition: color var(--ease); }
.s-card:hover .num { color: var(--clay); }
.s-card h3 { font-size: 22px; margin-bottom: 10px; color: var(--espresso); }
.s-card p  { font-size: 14px; margin-bottom: 18px; }
.s-price   { font-size: 13px; font-weight: 500; letter-spacing: .08em; color: var(--clay); }

/* ── About Split ── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.split.flip { direction: rtl; }
.split.flip > * { direction: ltr; }
.split-photo { border-radius: 2px; overflow: hidden; position: relative; }
.split-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.split-text h2 { margin-bottom: 22px; }
.split-text p  { margin-bottom: 18px; }
.split-text p:last-of-type { margin-bottom: 32px; }

/* ── Pillars ── */
.pillars { display: grid; grid-template-columns: repeat(3,1fr); gap: 48px; margin-top: 60px; }
.pillar-icon { width: 38px; height: 38px; color: var(--clay); margin-bottom: 18px; }
.pillar h3 { font-size: 22px; color: var(--espresso); margin-bottom: 10px; }
.pillar p  { font-size: 14px; }

/* ── Testimonials ── */
.reviews { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; margin-top: 60px; }
.review-card { background: var(--cream); border: 1px solid var(--blush-d); padding: 36px 32px; border-radius: 2px; }
.stars { display: flex; gap: 3px; margin-bottom: 18px; }
.stars svg { width: 13px; height: 13px; fill: var(--clay); }
.review-card blockquote { font-family: var(--serif); font-style: italic; font-size: 18px; font-weight: 300; line-height: 1.55; color: var(--espresso); margin-bottom: 20px; }
.review-author { font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--smoke); }

/* ── Steps ── */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; margin-top: 60px; position: relative; }
.step { padding: 0 36px; text-align: center; }
.step:first-child { padding-left: 0; }
.step:last-child  { padding-right: 0; }
.step-num {
  width: 62px; height: 62px; background: var(--espresso); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 22px;
  font-family: var(--serif); font-size: 22px; font-weight: 300; color: var(--cream);
}
.step h3 { font-size: 20px; color: var(--espresso); margin-bottom: 10px; }
.step p  { font-size: 14px; max-width: none; text-align: center; }

/* ── Gallery Grid ── */
.gallery-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 4px; margin-top: 60px; }
.gallery-item { aspect-ratio: 4/3; overflow: hidden; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-item:hover img { transform: scale(1.04); }

/* ── CTA Banner ── */
.cta-banner { background: var(--clay); padding: 96px 0; text-align: center; position: relative; overflow: hidden; }
.cta-banner::before { content:''; position: absolute; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,.07) 0%, transparent 60%); top: -220px; right: -80px; pointer-events: none; }
.cta-banner .eyebrow { color: rgba(255,255,255,.55); }
.cta-banner h2 { color: var(--cream); margin-bottom: 14px; }
.cta-banner > .wrap > p { color: rgba(255,255,255,.7); margin: 0 auto 44px; }
.cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── Footer ── */
footer { background: var(--espresso); }
.footer-grid { max-width: var(--max); margin: 0 auto; padding: 72px 56px 48px; display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 56px; }
.footer-brand-name { font-family: var(--serif); font-size: 18px; letter-spacing: .2em; text-transform: uppercase; color: var(--cream); display: block; margin-bottom: 14px; }
.footer-brand > p { font-size: 13px; color: var(--smoke); max-width: 240px; margin-bottom: 24px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 34px; height: 34px; border: 1px solid rgba(255,255,255,.12); border-radius: 2px; display: flex; align-items: center; justify-content: center; color: var(--smoke); transition: all var(--ease); }
.footer-social a:hover { border-color: var(--clay); color: var(--clay); }
.footer-col h4 { font-size: 10px; font-weight: 600; letter-spacing: .25em; text-transform: uppercase; color: var(--cream); margin-bottom: 22px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { font-size: 13px; color: var(--smoke); transition: color var(--ease); }
.footer-col ul a:hover { color: var(--cream); }
.footer-col address { font-size: 13px; color: var(--smoke); line-height: 1.9; }
.footer-col address a { color: var(--clay); }
.footer-col address a:hover { color: var(--sand); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); max-width: var(--max); margin: 0 auto; padding: 22px 56px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 12px; color: var(--smoke); max-width: none; margin: 0; }
.foot-legal { display: flex; gap: 20px; }
.foot-legal a { font-size: 12px; color: var(--smoke); transition: color var(--ease); }
.foot-legal a:hover { color: var(--cream); }

/* ── WhatsApp Float ── */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; width: 54px; height: 54px;
  background: var(--clay); border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 18px rgba(0,0,0,.25); z-index: 900; transition: transform var(--ease), box-shadow var(--ease);
}
.wa-float:hover { transform: scale(1.08); box-shadow: 0 6px 24px rgba(0,0,0,.3); background: var(--clay-h); }
.wa-float svg { width: 27px; height: 27px; fill: white; }

/* ── Cookie Banner ── */
.cookie-bar { position: fixed; bottom: 0; left: 0; right: 0; background: var(--espresso); border-top: 1px solid rgba(255,255,255,.08); padding: 20px 56px; display: flex; align-items: center; justify-content: space-between; gap: 24px; z-index: 9999; flex-wrap: wrap; }
.cookie-bar.hidden { display: none; }
.cookie-bar p { font-size: 13px; color: var(--sand); max-width: 640px; margin: 0; }
.cookie-bar p a { color: var(--clay); text-decoration: underline; text-underline-offset: 3px; }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }

/* ── Page Hero (interior pages) ── */
.page-hero { background: var(--espresso); padding: calc(var(--nav-h) + 72px) 0 72px; position: relative; overflow: hidden; }
.page-hero::before { content:''; position: absolute; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(184,107,82,.12) 0%, transparent 65%); top: -100px; right: -120px; pointer-events: none; }
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero h1 { color: var(--cream); margin-bottom: 16px; }
.page-hero p  { color: var(--sand); font-size: 16px; max-width: 540px; }

/* ── Services Page ── */
.svc-section { padding: 72px 0; border-bottom: 1px solid var(--blush-d); }
.svc-section:last-child { border-bottom: none; }
.svc-section h2 { margin-bottom: 40px; }
.svc-row { display: grid; grid-template-columns: 1fr auto; align-items: baseline; padding: 22px 0; border-bottom: 1px solid var(--blush-d); gap: 24px; }
.svc-row:last-child { border-bottom: none; }
.svc-name { font-family: var(--serif); font-size: 20px; font-weight: 400; color: var(--espresso); margin-bottom: 4px; }
.svc-meta { font-size: 12px; color: var(--smoke); letter-spacing: .06em; }
.svc-cost { font-family: var(--serif); font-size: 26px; font-weight: 300; color: var(--clay); white-space: nowrap; }

/* ── FAQ Accordion ── */
.faq-group { margin-bottom: 48px; }
.faq-cat { font-size: 10px; font-weight: 600; letter-spacing: .28em; text-transform: uppercase; color: var(--clay); margin-bottom: 20px; padding-bottom: 14px; border-bottom: 1px solid var(--blush-d); }
details.faq { border-bottom: 1px solid var(--blush-d); }
details.faq summary { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; cursor: pointer; font-family: var(--serif); font-size: 20px; font-weight: 400; color: var(--espresso); list-style: none; gap: 24px; }
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after { content: '+'; font-family: var(--sans); font-size: 22px; font-weight: 300; color: var(--clay); flex-shrink: 0; transition: transform var(--ease); }
details.faq[open] summary::after { transform: rotate(45deg); }
details.faq .faq-ans { padding: 0 0 24px; }
details.faq .faq-ans p { font-size: 15px; color: var(--smoke); max-width: none; }

/* ── About Page ── */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; padding: 80px 0; }
.about-split.r { direction: rtl; }
.about-split.r > * { direction: ltr; }
.about-photo-wrap { border-radius: 2px; overflow: hidden; }
.about-photo-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.credentials { margin-top: 28px; display: flex; flex-direction: column; gap: 10px; }
.cred { display: flex; align-items: flex-start; gap: 12px; font-size: 13px; color: var(--smoke); }
.cred::before { content: '—'; color: var(--clay); flex-shrink: 0; margin-top: 1px; }
.philosophy { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; margin-top: 60px; }
.philo-card { background: var(--cream-d); padding: 40px 36px; }
.philo-card h3 { font-size: 22px; color: var(--espresso); margin-bottom: 10px; }
.philo-card p  { font-size: 14px; }

/* ── Booking Page ── */
.book-options { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 56px; }
.book-options--single { grid-template-columns: minmax(0,560px); justify-content: center; }
.book-card { padding: 44px; border-radius: 2px; border: 1px solid var(--blush-d); background: var(--cream-d); }
.book-card.featured { background: var(--espresso); border-color: transparent; }
.book-card .badge { display: inline-block; background: var(--clay); color: var(--cream); font-size: 9px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; padding: 4px 12px; border-radius: 1px; margin-bottom: 16px; }
.book-card h3 { font-size: 26px; color: var(--espresso); margin-bottom: 12px; }
.book-card.featured h3 { color: var(--cream); }
.book-card p { margin-bottom: 28px; }
.book-card.featured p { color: var(--sand); }
.prep-list { margin-top: 56px; }
.prep-list h2 { margin-bottom: 32px; }
.prep-row { padding: 20px 0; border-bottom: 1px solid var(--blush-d); display: flex; gap: 16px; align-items: flex-start; }
.prep-row:last-child { border-bottom: none; }
.prep-num { font-family: var(--serif); font-size: 28px; font-weight: 300; color: var(--clay); line-height: 1; flex-shrink: 0; width: 32px; }
.prep-text h3 { font-size: 17px; font-weight: 500; font-family: var(--sans); color: var(--espresso); margin-bottom: 4px; letter-spacing: .02em; }
.prep-text p { font-size: 14px; max-width: none; margin: 0; }

/* ── Contact Page ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 72px; padding: 72px 0; align-items: start; }
.contact-item { display: flex; gap: 16px; padding: 22px 0; border-bottom: 1px solid var(--blush-d); align-items: flex-start; }
.contact-item-icon { width: 18px; height: 18px; color: var(--clay); flex-shrink: 0; margin-top: 3px; }
.contact-item strong { display: block; font-size: 10px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--espresso); margin-bottom: 4px; }
.contact-item p { font-size: 14px; margin: 0; max-width: none; }
.contact-item a { color: var(--clay); }
.map-box { border-radius: 2px; overflow: hidden; height: 420px; background: var(--blush); display: flex; align-items: center; justify-content: center; position: relative; }
.map-box iframe { width: 100%; height: 100%; border: none; }

/* ── Legal Pages ── */
.legal-body { max-width: 760px; padding: 72px 0; }
.legal-meta { padding: 20px 28px; background: var(--cream-d); border-left: 3px solid var(--clay); border-radius: 0 2px 2px 0; margin-bottom: 48px; }
.legal-meta p { font-size: 13px; margin: 0; }
.legal-body h2 { font-size: clamp(22px, 2.5vw, 34px); margin-top: 48px; margin-bottom: 16px; }
.legal-body h2:first-of-type { margin-top: 0; }
.legal-body h3 { font-size: 18px; margin-top: 28px; margin-bottom: 10px; color: var(--espresso); }
.legal-body p  { font-size: 15px; margin-bottom: 14px; max-width: none; }
.legal-body ul { list-style: disc; padding-left: 22px; margin-bottom: 16px; }
.legal-body ul li { font-size: 15px; color: var(--smoke); margin-bottom: 7px; line-height: 1.7; }

/* ── Utilities ── */
.tc  { text-align: center; }
.tc p { margin-left: auto; margin-right: auto; }
.mt1 { margin-top: 20px; }
.mt2 { margin-top: 40px; }
.mt3 { margin-top: 64px; }
.divider { height: 1px; background: var(--blush-d); margin: 0; }

/* =========================================
   RESPONSIVE
   ========================================= */

@media (max-width: 1024px) {
  .wrap { padding: 0 40px; }
  .nav  { padding: 0 40px; }
  .service-cards { grid-template-columns: 1fr 1fr; }
  .pillars { grid-template-columns: 1fr 1fr; }
  .reviews  { grid-template-columns: 1fr; max-width: 520px; }
  .split    { grid-template-columns: 1fr; gap: 48px; }
  .split.flip { direction: ltr; }
  .split-photo { aspect-ratio: 4/3; }
  .about-split { grid-template-columns: 1fr; gap: 48px; }
  .about-split.r { direction: ltr; }
  .about-photo-wrap { aspect-ratio: 4/3; }
  .book-options { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid  { grid-template-columns: 1fr 1fr; gap: 48px; }
  .trust-bar .wrap { grid-template-columns: repeat(2,1fr); }
  .trust-item:nth-child(2) { border-right: none; }
  .trust-item { border-bottom: 1px solid var(--blush-d); padding-bottom: 20px; }
  .trust-item:nth-last-child(-n+2) { border-bottom: none; }
  .philosophy { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 32px; }
  .step { padding: 0; text-align: left; display: flex; gap: 20px; align-items: flex-start; }
  .step-num { margin: 0; flex-shrink: 0; }
  .step p { text-align: left; }
}

@media (max-width: 768px) {
  body { overflow-x: hidden; }
  .wrap { padding: 0 22px; }
  .nav  { padding: 0 22px; }
  section { padding: 64px 0; }

  .nav-toggle { display: flex; }
  .nav-links  {
    display: none; position: absolute; top: var(--nav-h); left: 0; right: 0;
    background: var(--espresso); flex-direction: column; padding: 16px 22px;
    gap: 0; border-top: 1px solid rgba(255,255,255,.07);
  }
  .nav-links.open { display: flex; }
  .nav-links li { border-bottom: 1px solid rgba(255,255,255,.05); }
  .nav-links a { display: block; padding: 14px 0; }
  .nav-links .nav-cta { background: none; padding: 14px 0; border-radius: 0; color: var(--clay); }

  .hero { padding: calc(var(--nav-h) + 40px) 22px 64px; min-height: 100svh; }
  .hero-ctas { flex-direction: column; width: 100%; max-width: 300px; }
  .hero-ctas .btn { justify-content: center; width: 100%; }

  .page-hero { padding: calc(var(--nav-h) + 48px) 0 52px; }

  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item { aspect-ratio: 1/1; }

  .service-cards { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr; }
  .reviews { max-width: 100%; }

  .cta-banner { padding: 64px 0; }
  .cta-row { flex-direction: column; align-items: center; }
  .cta-row .btn { width: 100%; max-width: 320px; justify-content: center; }

  .cookie-bar { flex-direction: column; align-items: flex-start; padding: 20px 22px; }

  .footer-grid  { grid-template-columns: 1fr; gap: 36px; padding: 48px 22px 36px; }
  .footer-bottom { flex-direction: column; padding: 20px 22px; text-align: center; }
  .foot-legal { flex-wrap: wrap; justify-content: center; }

  .wa-float { bottom: 20px; right: 20px; }

  .book-card { padding: 32px 24px; }
  .book-card .btn { width: 100%; justify-content: center; }
  .contact-grid { padding: 40px 0; }
  .map-box { height: 260px; }
  .legal-body { padding: 48px 0; }
  .about-split { padding: 40px 0; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item { aspect-ratio: 16/9; }
  .trust-bar .wrap { grid-template-columns: 1fr; }
  .trust-item { border-right: none; border-bottom: 1px solid var(--blush-d); padding: 0 0 20px; }
  .trust-item:nth-child(2) { border-bottom: 1px solid var(--blush-d); }
  .trust-item:nth-last-child(-n+2) { border-bottom: 1px solid var(--blush-d); }
  .trust-item:last-child { border-bottom: none; padding-bottom: 0; }
  .footer-grid { grid-template-columns: 1fr; }
}
