:root {
  --ink: #18211f;
  --muted: #66716d;
  --line: #e4ded7;
  --paper: #fffdfa;
  --soft: #f7f1ec;
  --blue: #dcebf3;
  --blue-deep: #1f5d7a;
  --teal: #0c6f67;
  --teal-dark: #104d48;
  --sage: #dfe9e3;
  --rose: #d7b7ab;
  --rose-dark: #9a6c60;
  --gold: #b9854f;
  --shadow: 0 24px 70px rgba(55, 42, 35, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
section { scroll-margin-top: 86px; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(120deg, rgba(220, 235, 243, .72), transparent 38rem),
    linear-gradient(250deg, rgba(215, 183, 171, .25), transparent 32rem),
    linear-gradient(180deg, #fffdfa 0%, #f6faf9 48%, #faf7f4 100%);
  line-height: 1.5;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px clamp(16px, 4vw, 52px);
  background: rgba(255, 253, 250, .88);
  border-bottom: 1px solid rgba(231, 224, 220, .9);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 34px rgba(24, 33, 31, .06);
  width: 100%;
}
.brand { display: flex; align-items: center; gap: 10px; min-width: 0; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: white;
  font-weight: 800;
}
.brand strong, .brand small { display: block; }
.brand small { color: var(--muted); font-size: 12px; margin-top: -2px; }
.desktop-nav { display: flex; gap: clamp(10px, 3vw, 28px); color: var(--muted); font-size: 14px; font-weight: 650; }
.desktop-nav a { position: relative; padding: 8px 0; }
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .18s ease;
}
.desktop-nav a:hover::after { transform: scaleX(1); }
.menu-toggle {
  display: none;
  flex: 0 0 42px;
  margin-left: auto;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  padding: 10px;
  cursor: pointer;
  position: relative;
  z-index: 90;
}
.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
  border-radius: 99px;
  transition: transform .18s ease, opacity .18s ease;
}
.menu-open .menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
.menu-open .menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  padding: 76px 14px 18px;
  background: rgba(7, 28, 26, .58);
  backdrop-filter: blur(12px);
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: transform .18s ease, opacity .18s ease;
  overflow: auto;
}
.menu-open .mobile-menu {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-panel {
  display: grid;
  gap: 12px;
  max-width: 520px;
  margin: auto;
  padding: 14px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255,253,250,.98), rgba(246,251,250,.98));
  box-shadow: 0 28px 90px rgba(2,18,17,.32);
}
.mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--teal-dark);
  font-weight: 850;
}
.menu-close {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(12,111,103,.16);
  border-radius: 8px;
  background: white;
  color: var(--ink);
  font-size: 26px;
  line-height: 1;
}
.mobile-menu-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.mobile-menu-links a {
  min-height: 84px;
  padding: 12px;
  border: 1px solid rgba(12,111,103,.14);
  border-radius: 8px;
  background: white;
}
.mobile-menu-links strong,
.mobile-menu-links span {
  display: block;
}
.mobile-menu-links strong {
  color: var(--teal-dark);
  font-size: 16px;
}
.mobile-menu-links span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.25;
}
.mobile-menu-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 4px; }

.hero {
  min-height: calc(100svh - 64px);
  display: grid;
  align-items: end;
  position: relative;
  overflow: hidden;
  background: #eaf2f1;
  border-bottom: 1px solid rgba(231, 224, 220, .8);
}
.hero-media { position: absolute; inset: 0; }
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 39, 36, .04) 0%, rgba(8, 39, 36, .08) 34%, rgba(8, 39, 36, .42) 62%, rgba(8, 39, 36, .72) 100%),
    linear-gradient(180deg, rgba(10, 58, 54, .10) 0%, rgba(255,255,255,0) 42%, rgba(5, 38, 35, .70) 100%);
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 25% 22%;
  filter: saturate(1.08) contrast(1.04);
}
.hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 52%;
  background: linear-gradient(0deg, rgba(5, 38, 35, .62), rgba(255, 253, 250, 0));
  z-index: 1;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 32px));
  margin: 0 clamp(20px, 6vw, 86px) clamp(42px, 8vh, 92px) auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: white;
  box-shadow: none;
  backdrop-filter: none;
  text-shadow: 0 12px 38px rgba(0,0,0,.36);
}
.hero-content::before { display: none; }
.hero-content .eyebrow { color: #f0d19a; }
.hero-content h1 { color: white; text-shadow: 0 10px 36px rgba(0,0,0,.24); }
.hero-content .lead { color: rgba(255,255,255,.9); }
.eyebrow {
  margin: 0 0 10px;
  color: var(--rose-dark);
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 13px;
  font-weight: 800;
}
h1, h2, h3, p { overflow-wrap: anywhere; }
h1 {
  margin: 0;
  font-size: clamp(48px, 10vw, 96px);
  line-height: .92;
  letter-spacing: 0;
  max-width: 8ch;
}
h2 { margin: 0; font-size: clamp(30px, 6vw, 54px); line-height: 1; letter-spacing: 0; }
h3 { margin: 0 0 8px; font-size: 18px; }
.lead {
  max-width: 520px;
  margin: 18px 0 0;
  color: #313338;
  font-size: clamp(18px, 3.8vw, 24px);
  font-weight: 500;
}
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}
.hero-proof span {
  min-height: 0;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  background: rgba(5, 38, 35, .42);
  color: rgba(255,255,255,.82);
  font-size: 13px;
  font-weight: 700;
  backdrop-filter: blur(14px);
}
.hero-proof strong {
  display: inline;
  color: white;
  font-size: 13px;
  line-height: 1.15;
}
.hero-actions, .contact-strip { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.hero-badges span {
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.13);
  border: 1px solid rgba(255,255,255,.24);
  color: white;
  font-size: 13px;
  font-weight: 800;
}
.hero-badges,
.contact-strip {
  display: none;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 8px;
  border: 1px solid var(--line);
  font-weight: 800;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn.primary {
  color: #12312d;
  background: linear-gradient(135deg, #f4d59d, #d8a45e);
  border-color: transparent;
  box-shadow: 0 14px 32px rgba(216, 164, 94, .28);
}
.btn.primary:hover { background: #efc67e; }
.btn.secondary { background: rgba(255, 255, 255, .96); color: var(--ink); }
.btn.secondary:hover { border-color: var(--rose); }
.btn.full { width: 100%; min-height: 54px; font-size: 16px; }
.contact-strip a {
  padding: 10px 12px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 8px;
  color: white;
  font-weight: 700;
}

.intro-band {
  background: linear-gradient(135deg, #073d38, #0d746b 48%, #cfaa87);
  padding: 26px clamp(16px, 4vw, 52px);
  color: white;
}
.intro-band div {
  max-width: 1100px;
  margin: auto;
  display: grid;
  gap: 6px;
}
.intro-band span { font-size: 13px; font-weight: 800; text-transform: uppercase; }
.intro-band strong { font-size: clamp(18px, 3vw, 28px); line-height: 1.25; overflow-wrap: anywhere; }

.section, .booking-section, .chat-section, .info-section, .faq-section, .reviews-section, .guide-section, .warning-section, .nutrition-section, .wellness-section, .resources-section {
  padding: clamp(42px, 7vw, 76px) clamp(16px, 4vw, 52px);
}
.section-title { max-width: 1040px; margin: 0 auto 28px; }
.section-title > p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
}
.service-grid {
  max-width: 1040px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.service-grid article {
  min-height: 150px;
  padding: 20px;
  border: 1px solid rgba(12, 111, 103, .14);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.95), rgba(249,252,251,.95)),
    linear-gradient(135deg, rgba(31, 93, 122, .08), rgba(207, 170, 135, .1));
  box-shadow: 0 12px 34px rgba(24, 33, 31, .07);
  transition: transform .18s ease, box-shadow .18s ease;
  position: relative;
  overflow: hidden;
}
.service-grid article::before {
  content: "";
  display: block;
  width: 44px;
  height: 4px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
}
.service-grid article:hover, .reviews-grid article:hover { transform: translateY(-3px); box-shadow: 0 18px 42px rgba(24, 33, 31, .12); }
.service-grid p { margin: 0; color: var(--muted); }

.info-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 5vw, 58px);
  background:
    linear-gradient(90deg, rgba(220, 235, 243, .42), transparent 46%),
    #fff;
}
.info-main { max-width: 620px; justify-self: end; }
.info-main p:not(.eyebrow) { color: var(--muted); font-size: 18px; }
.info-list {
  max-width: 620px;
  display: grid;
  gap: 12px;
}
.info-list article {
  padding: 18px;
  border: 1px solid rgba(12, 111, 103, .16);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #f5fbfa);
  box-shadow: 0 12px 30px rgba(24, 33, 31, .06);
}
.info-list strong, .info-list span { display: block; }
.info-list span { margin-top: 6px; color: var(--muted); }

.guide-section {
  background:
    linear-gradient(135deg, rgba(7,61,56,.08), transparent 42%),
    linear-gradient(180deg, #fffdfa, #f4faf8);
}
.guide-layout {
  max-width: 1120px;
  margin: auto;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 18px;
  align-items: stretch;
}
.content-drawer {
  max-width: 1120px;
  margin: auto;
  padding: 0;
  border: 0;
  background: transparent;
}
.content-drawer > summary {
  width: fit-content;
  min-height: 46px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  padding: 0 16px;
  border: 1px solid rgba(12,111,103,.18);
  border-radius: 8px;
  background: white;
  color: var(--teal-dark);
  box-shadow: 0 10px 26px rgba(24,33,31,.06);
}
.content-drawer > summary::marker { color: var(--gold); }
.feature-panel {
  padding: clamp(24px, 4vw, 38px);
  border-radius: 8px;
  color: white;
  background:
    linear-gradient(135deg, rgba(7,61,56,.97), rgba(12,111,103,.92)),
    linear-gradient(135deg, rgba(244,213,157,.2), transparent);
  box-shadow: 0 28px 80px rgba(7, 61, 56, .2);
}
.panel-kicker {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(244, 213, 157, .16);
  color: #f4d59d;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}
.feature-panel h3 {
  max-width: 560px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.02;
}
.feature-panel p { color: rgba(255,255,255,.82); font-size: 17px; }
.mini-checklist {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}
.mini-checklist span {
  padding: 12px 12px 12px 36px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  position: relative;
}
.mini-checklist span::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 18px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f4d59d;
}
.habit-grid, .warning-grid, .nutrition-grid, .wellness-grid, .resource-grid {
  display: grid;
  gap: 14px;
}
.habit-grid {
  grid-template-columns: repeat(2, 1fr);
}
.habit-grid article, .warning-grid article, .nutrition-grid article, .wellness-grid article, .resource-grid a {
  border: 1px solid rgba(12,111,103,.14);
  border-radius: 8px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 14px 38px rgba(24,33,31,.07);
}
.habit-grid article {
  min-height: 156px;
  padding: 22px;
}
.habit-grid strong, .warning-grid strong, .wellness-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--teal-dark);
  font-size: 18px;
}
.habit-grid p { margin: 0; color: var(--muted); }

.warning-section {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: clamp(20px, 5vw, 52px);
  background: #fff;
  border-top: 1px solid rgba(12,111,103,.1);
  border-bottom: 1px solid rgba(12,111,103,.1);
}
.warning-copy {
  max-width: 480px;
  justify-self: end;
}
.warning-copy p:not(.eyebrow) { color: var(--muted); font-size: 18px; }
.warning-grid {
  max-width: 720px;
  grid-template-columns: repeat(2, 1fr);
}
.warning-grid article {
  padding: 18px;
  background: linear-gradient(180deg, #fff, #fff8f4);
  border-color: rgba(154, 108, 96, .18);
}
.warning-grid span, .wellness-grid span {
  display: block;
  color: var(--muted);
}

.nutrition-section {
  background:
    linear-gradient(135deg, rgba(244,213,157,.22), transparent 44%),
    linear-gradient(180deg, #f6fbfa, #fffdfa);
}
.nutrition-layout {
  max-width: 1120px;
  margin: auto;
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 18px;
}
.plate-card {
  padding: clamp(24px, 4vw, 34px);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.94), rgba(255,248,239,.96)),
    linear-gradient(135deg, rgba(244,213,157,.26), rgba(12,111,103,.08));
  border: 1px solid rgba(185,133,79,.18);
  box-shadow: var(--shadow);
}
.plate-card span {
  color: var(--rose-dark);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}
.plate-card strong {
  display: block;
  margin: 12px 0;
  color: var(--teal-dark);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.02;
}
.plate-card p, .nutrition-grid p { color: var(--muted); }
.nutrition-grid {
  grid-template-columns: repeat(2, 1fr);
}
.nutrition-grid article {
  padding: 20px;
  background: white;
}
.nutrition-grid h3 { color: var(--teal-dark); }

.wellness-section {
  background:
    linear-gradient(135deg, rgba(7,61,56,.92), rgba(12,111,103,.86)),
    #073d38;
}
.wellness-card {
  max-width: 1120px;
  margin: auto;
  color: white;
}
.wellness-card .eyebrow { color: #f4d59d; }
.wellness-card h2 { max-width: 720px; }
.wellness-grid {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 28px;
}
.wellness-grid article {
  min-height: 142px;
  padding: 20px;
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.18);
  box-shadow: none;
}
.wellness-grid strong { color: white; }
.wellness-grid span { color: rgba(255,255,255,.74); }

.resources-section {
  background: white;
}
.resource-grid {
  max-width: 1040px;
  margin: auto;
  grid-template-columns: repeat(4, 1fr);
}
.resource-grid a {
  min-height: 92px;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  color: var(--teal-dark);
  font-weight: 850;
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(246,251,250,.96));
  transition: transform .18s ease, box-shadow .18s ease;
}
.resource-grid a:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(24, 33, 31, .11);
}

.faq-section { background: linear-gradient(180deg, #f5fbfa, #fff8f3); }
.faq-grid, .reviews-grid {
  max-width: 1040px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
details {
  padding: 18px;
  border: 1px solid rgba(12, 111, 103, .14);
  border-radius: 8px;
  background: white;
}
details[open] { border-color: rgba(12, 111, 103, .34); box-shadow: 0 12px 32px rgba(55, 42, 35, .07); }
summary {
  cursor: pointer;
  font-weight: 800;
}
details p { margin: 10px 0 0; color: var(--muted); }

.reviews-section { background: white; }
.reviews-grid { grid-template-columns: repeat(3, 1fr); }
.reviews-grid article {
  padding: 20px;
  border: 1px solid rgba(185, 133, 79, .18);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff, #fffaf5);
  box-shadow: 0 12px 34px rgba(24, 33, 31, .07);
}
.stars {
  color: #b57b2b;
  letter-spacing: 0;
  font-weight: 800;
}
.reviews-grid p { color: var(--muted); }
.reviews-grid strong { display: block; margin-top: 12px; }

.booking-section {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(20px, 5vw, 58px);
  background:
    linear-gradient(135deg, rgba(12,111,103,.12), transparent 42%),
    linear-gradient(315deg, rgba(31,93,122,.1), transparent 46%),
    linear-gradient(180deg, #f8fbfa, #ffffff);
}
.booking-copy, .booking-form { max-width: 620px; }
.booking-copy { justify-self: end; padding-top: 14px; }
.booking-copy p:not(.eyebrow) { color: var(--muted); font-size: 18px; }
.booking-steps { display: grid; gap: 10px; margin-top: 22px; }
.booking-steps span {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(12, 111, 103, .14);
  border-radius: 8px;
  font-weight: 750;
}
.booking-steps b {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--teal);
  color: white;
}
.booking-form {
  width: 100%;
  padding: clamp(18px, 4vw, 30px);
  background: white;
  border: 1px solid rgba(12, 111, 103, .14);
  border-radius: 8px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.booking-form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--teal), var(--rose), var(--gold));
}
label { display: grid; gap: 8px; margin-bottom: 14px; color: #373737; font-weight: 750; }
input, select, textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid #d9d4d0;
  border-radius: 8px;
  font: inherit;
  color: var(--ink);
  background: #fff;
}
textarea { resize: vertical; }
input:focus, select:focus, textarea:focus { outline: 3px solid rgba(15, 118, 110, .17); border-color: var(--teal); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.slot-picker {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 2px 0 16px;
  min-height: 44px;
}
.slot, .slot-help {
  min-height: 42px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #fff;
  font: inherit;
  font-weight: 800;
}
.slot { cursor: pointer; }
.slot:hover:not(:disabled), .slot.selected {
  color: white;
  background: var(--teal);
  border-color: var(--teal);
}
.slot:disabled {
  color: #aaa;
  background: #f2f0ee;
  text-decoration: line-through;
  cursor: not-allowed;
}
.slot-help {
  grid-column: 1 / -1;
  display: grid;
  place-items: center;
  padding: 10px;
  color: var(--muted);
  background: #f7f3f0;
  font-weight: 700;
  text-align: center;
}
.form-status { min-height: 24px; margin: 12px 0 0; font-weight: 750; }
.form-status.ok { color: var(--teal); }
.form-status.err { color: #a12b2b; }

.chat-section { background: linear-gradient(180deg, #f7fbfc, #ffffff); }
.chat-panel {
  max-width: 820px;
  margin: auto;
  border: 1px solid #dce9ee;
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.chat-messages {
  min-height: 300px;
  max-height: 480px;
  overflow: auto;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bubble {
  max-width: 88%;
  padding: 12px 14px;
  border-radius: 8px;
  white-space: pre-wrap;
}
.bubble.assistant { align-self: flex-start; background: #edf7f6; }
.bubble.user { align-self: flex-end; background: var(--ink); color: white; }
.chat-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 12px;
  border-top: 1px solid #dce9ee;
}
.chat-form button {
  border: 0;
  border-radius: 8px;
  padding: 0 18px;
  background: var(--teal);
  color: white;
  font-weight: 800;
}

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
  padding: 28px 16px 92px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}
footer strong { color: var(--ink); }

.call-float {
  position: fixed;
  left: 50%;
  bottom: 16px;
  z-index: 60;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: min(420px, calc(100% - 28px));
  min-height: 58px;
  padding: 10px 18px;
  border-radius: 8px;
  color: white;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  box-shadow: 0 16px 38px rgba(15, 118, 110, .34);
  font-weight: 800;
}
.call-float span {
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .16);
  font-size: 13px;
  text-transform: uppercase;
}
.call-float strong { font-size: 18px; }

@media (max-width: 820px) {
  .desktop-nav { display: none; }
  .menu-toggle, .mobile-menu { display: block; }
  .site-header { padding: 10px 14px; }
  .brand { max-width: calc(100% - 56px); }
  .menu-toggle {
    position: fixed;
    top: 10px;
    right: 14px;
    box-shadow: 0 8px 22px rgba(24,33,31,.12);
  }
  body.menu-open { overflow: hidden; }
  .hero {
    min-height: 0;
    display: block;
    background: var(--paper);
  }
  .hero-media {
    position: relative;
    height: min(48svh, 430px);
    min-height: 330px;
    overflow: hidden;
    background: #f8f6f4;
  }
  .hero-media::after {
    background: linear-gradient(180deg, rgba(255,253,251,.02) 0%, rgba(255,253,251,.04) 56%, rgba(255,253,251,.84) 100%);
  }
  .hero-media img {
    object-position: 31% 18%;
  }
  .hero-content {
    width: auto;
    margin: 0;
    padding: 24px 14px 126px;
    background: linear-gradient(180deg, #073d38, #0d746b);
    border: 0;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
  }
  .hero-content .eyebrow { color: #f0d19a; }
  .hero-content .lead { color: rgba(255,255,255,.9); }
  .hero-content::before { display: none; }
  .lead { max-width: min(100%, 340px); font-size: 16px; }
  h1 { max-width: 100%; }
  .hero-proof { display: none; }
  .hero-actions .btn { flex: 1 1 140px; }
  .hero-actions, .hero-badges, .contact-strip { display: none; }
  .intro-band { padding: 86px 14px 18px; }
  .section, .booking-section, .chat-section, .info-section, .faq-section, .reviews-section, .guide-section, .warning-section, .nutrition-section, .wellness-section, .resources-section {
    padding: 34px 14px;
  }
  .section-title { margin-bottom: 18px; }
  .section-title > p:not(.eyebrow) { font-size: 15px; }
  h2 { font-size: 34px; }
  .content-drawer:not([open]) { padding-bottom: 0; }
  .content-drawer > summary {
    width: 100%;
    justify-content: center;
    margin-bottom: 10px;
  }
  .feature-panel h3, .plate-card strong { font-size: 26px; }
  .feature-panel, .plate-card { padding: 20px; }
  .habit-grid article, .warning-grid article, .nutrition-grid article, .wellness-grid article, .resource-grid a {
    min-height: 0;
    padding: 14px;
  }
  .wellness-grid { margin-top: 16px; }
  .service-grid, .booking-section, .info-section, .faq-grid, .reviews-grid, .guide-layout, .habit-grid, .warning-section, .warning-grid, .nutrition-layout, .nutrition-grid, .wellness-grid, .resource-grid { grid-template-columns: 1fr; }
  .booking-copy { justify-self: stretch; }
  .info-main { justify-self: stretch; }
  .warning-copy { justify-self: stretch; max-width: none; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .slot-picker { grid-template-columns: repeat(2, 1fr); }
  .chat-form { grid-template-columns: 1fr; }
  .chat-form button { min-height: 46px; }
}

@media (max-width: 420px) {
  .brand small { display: none; }
  h1 { font-size: 48px; }
  .lead { font-size: 17px; }
  .service-grid article { min-height: auto; }
  .call-float { bottom: 10px; min-height: 54px; }
  .call-float strong { font-size: 16px; }
}
