/* ============================================================
   Dra. Christiane Moreno — Nutricionista Clínica
   Paleta: verde-oliva · creme · dourado
   ============================================================ */

:root {
  /* Paleta quente inspirada na referência aprovada: marrom · creme · dourado */
  --olive-900: #33271d;
  --olive-800: #4a392b;
  --olive-700: #6b5340;
  --olive-500: #8a6f56;
  --sage-400: #b39876;
  --sage-200: #e3d5c0;
  --cream-50: #faf6ee;
  --cream-100: #f5edde;
  --cream-200: #ecdfc8;
  --gold-500: #c08d4e;
  --gold-400: #d9ab72;
  --ink: #2f2822;
  --ink-soft: #62564a;
  --white: #ffffff;

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Jost", "Helvetica Neue", Arial, sans-serif;
  --font-script: "Great Vibes", cursive;

  --radius: 18px;
  --shadow-soft: 0 20px 60px rgba(35, 43, 31, 0.10);
  --shadow-card: 0 10px 36px rgba(35, 43, 31, 0.08);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --container: 1180px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--ink);
  background: var(--cream-50);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; background: none; border: none; cursor: pointer; }

::selection { background: var(--gold-400); color: var(--white); }

/* ---------- Typography ---------- */
h1, h2, h3 { font-family: var(--font-display); font-weight: 500; line-height: 1.15; color: var(--olive-800); }
h1 { font-size: clamp(2.4rem, 5.2vw, 4.1rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); letter-spacing: -0.005em; }
h3 { font-size: 1.32rem; }
h1 em, h2 em { font-style: italic; color: var(--gold-500); }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 1.1rem;
}
.eyebrow--light { color: var(--gold-400); }

.section { padding: clamp(4.5rem, 9vw, 8rem) 0; }
.section--cream { background: var(--cream-100); }
.section--dark { background: var(--olive-800); color: var(--cream-100); }
.section--dark h2, .section--dark h3 { color: var(--cream-50); }
.section__head { max-width: 720px; margin: 0 auto clamp(2.8rem, 6vw, 4.5rem); text-align: center; }
.section__lead { margin-top: 1.1rem; font-size: 1.08rem; color: var(--ink-soft); }
.section--dark .section__lead { color: var(--sage-200); }

.container { width: min(var(--container), 92%); margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem 2.2rem;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease);
  will-change: transform;
}
.btn:hover { transform: translateY(-3px); }
.btn--primary {
  background: var(--olive-700);
  color: var(--cream-50);
  box-shadow: 0 12px 30px rgba(62, 74, 56, 0.28);
}
.btn--primary:hover { background: var(--olive-800); box-shadow: 0 18px 40px rgba(62, 74, 56, 0.35); }
.btn--ghost {
  border: 1px solid var(--olive-500);
  color: var(--olive-700);
  background: transparent;
}
.btn--ghost:hover { background: var(--olive-700); color: var(--cream-50); border-color: var(--olive-700); }
.btn--gold {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--white);
  box-shadow: 0 12px 30px rgba(185, 147, 82, 0.35);
}
.btn--gold:hover { box-shadow: 0 18px 42px rgba(185, 147, 82, 0.45); }
.btn--whatsapp {
  background: #1fb355;
  color: var(--white);
  width: 100%;
  box-shadow: 0 12px 30px rgba(31, 179, 85, 0.3);
}
.btn--whatsapp:hover { background: #189a48; }

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal--delay { transition-delay: 0.18s; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 1.1rem 0;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), padding 0.4s var(--ease), transform 0.4s var(--ease);
}
.header.is-scrolled {
  background: rgba(251, 248, 242, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 6px 30px rgba(35, 43, 31, 0.08);
  padding: 0.65rem 0;
}
.header.is-hidden { transform: translateY(-110%); }
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.header__logo { display: flex; align-items: center; gap: 0.7rem; }
.header__logo img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.header__logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--cream-50);
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: color 0.4s var(--ease);
}
.header__logo-text em { color: var(--gold-400); }
.header.is-scrolled .header__logo-text { color: var(--olive-800); }
.header.is-scrolled .header__logo-text em { color: var(--gold-500); }

.nav { display: flex; align-items: center; gap: 1.9rem; }
.nav a {
  font-size: 0.92rem;
  font-weight: 400;
  color: rgba(250, 246, 238, 0.92);
  position: relative;
  padding: 0.3rem 0;
  transition: color 0.4s var(--ease);
}
.header.is-scrolled .nav a { color: var(--olive-700); }
.nav a:not(.nav__cta)::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--gold-500);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease);
}
.nav a:not(.nav__cta):hover::after { transform: scaleX(1); transform-origin: left; }
.nav__cta {
  background: var(--cream-100);
  color: #4a392b !important;
  padding: 0.65rem 1.5rem !important;
  border-radius: 999px;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.nav__cta:hover { background: var(--gold-400); }
.header.is-scrolled .nav__cta { background: var(--olive-700); color: var(--cream-50) !important; }
.header.is-scrolled .nav__cta:hover { background: var(--gold-500); }

.header__toggle { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.header__toggle span {
  width: 26px; height: 2px;
  background: var(--cream-50);
  border-radius: 2px;
  transition: transform 0.35s var(--ease), opacity 0.35s var(--ease), background 0.35s var(--ease);
}
.header.is-scrolled .header__toggle span, .header__toggle.is-open span { background: var(--olive-800); }
.header__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__toggle.is-open span:nth-child(2) { opacity: 0; }
.header__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO — estilo referência: fundo marrom, nome em script dourado,
   headline branca e foto integrada ao fundo
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: clamp(7rem, 13vh, 9.5rem) 0 0;
  background: linear-gradient(150deg, #7d6148 0%, #8f7256 48%, #a1835f 100%);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(720px 720px at 82% 30%, rgba(255, 235, 205, 0.14), transparent 62%),
    radial-gradient(560px 560px at 6% 92%, rgba(51, 39, 29, 0.35), transparent 60%);
}
.hero__rings {
  position: absolute;
  right: -6%;
  top: 6%;
  width: 780px;
  height: 780px;
  pointer-events: none;
  border-radius: 50%;
  border: 1.5px solid rgba(245, 237, 222, 0.16);
}
.hero__rings::before, .hero__rings::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(245, 237, 222, 0.13);
}
.hero__rings::before { inset: 90px; }
.hero__rings::after { inset: 200px; border-color: rgba(245, 237, 222, 0.10); }
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: clamp(2rem, 5vw, 4rem);
}
.hero__content { padding-bottom: clamp(3rem, 9vh, 6.5rem); }
.hero__name {
  font-family: var(--font-script);
  font-size: clamp(2.1rem, 3.6vw, 3rem);
  color: var(--gold-400);
  margin-bottom: 1rem;
  line-height: 1.1;
}
.hero h1 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(2rem, 4.1vw, 3.3rem);
  line-height: 1.16;
  color: var(--white);
  letter-spacing: -0.01em;
  max-width: 620px;
}
.hero__sub {
  margin-top: 1.4rem;
  font-size: 1.08rem;
  color: rgba(250, 246, 238, 0.88);
  max-width: 500px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.2rem; }
.btn--cream {
  background: var(--cream-100);
  color: #4a392b;
  font-weight: 500;
  box-shadow: 0 14px 34px rgba(51, 39, 29, 0.35);
}
.btn--cream:hover { background: var(--white); box-shadow: 0 20px 44px rgba(51, 39, 29, 0.42); }
.hero__badges {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.1rem;
  margin-top: 2.3rem;
  font-size: 0.9rem;
  color: rgba(250, 246, 238, 0.85);
}
.hero__badges svg { vertical-align: -3px; margin-right: 0.35rem; color: var(--gold-400); }
.hero__badge-sep { width: 26px; height: 1px; background: rgba(245, 237, 222, 0.4); }

.hero__media {
  position: relative;
  justify-self: center;
  align-self: end;
  display: flex;
  align-items: flex-end;
}
.hero__photo {
  width: min(560px, 88vw);
  margin-bottom: -3.5rem;
  filter: drop-shadow(0 30px 60px rgba(51, 39, 29, 0.45));
}
.hero__card {
  position: absolute;
  left: -14%;
  bottom: 8%;
  background: rgba(74, 57, 43, 0.92);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  padding: 1.2rem 1.6rem;
  box-shadow: 0 20px 50px rgba(51, 39, 29, 0.4);
  border-left: 3px solid var(--gold-400);
  max-width: 270px;
}
.hero__card-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--gold-400);
  line-height: 1.25;
  margin-bottom: 0.2rem;
}
.hero__card-text { font-size: 0.85rem; color: var(--sage-200); line-height: 1.45; }

/* ============================================================
   SOBRE
   ============================================================ */
.about__inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2.5rem, 7vw, 6rem);
  align-items: center;
}
.about__media { position: relative; }
.about__photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.about__photo img { transition: transform 1.2s var(--ease); }
.about__media:hover .about__photo img { transform: scale(1.04); }
.about__monogram {
  position: absolute;
  right: -34px;
  top: -34px;
  width: 110px; height: 110px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 5px solid var(--cream-50);
  background: var(--cream-100);
}
.about__content h2 { margin-bottom: 1.4rem; }
.about__content p { color: var(--ink-soft); margin-bottom: 1.1rem; }
.about__content p strong { color: var(--olive-700); font-weight: 500; }

.about__creds { margin: 1.8rem 0 2.3rem; display: grid; gap: 1.1rem; }
.about__creds li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.1rem 1.4rem;
  box-shadow: var(--shadow-card);
  border-left: 3px solid var(--sage-400);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.about__creds li:hover { transform: translateX(6px); box-shadow: var(--shadow-soft); }
.about__cred-icon { color: var(--gold-500); font-size: 1.05rem; line-height: 1.8; }
.about__creds strong { display: block; font-weight: 500; color: var(--olive-800); }
.about__creds span { font-size: 0.88rem; color: var(--ink-soft); }

/* ============================================================
   JORNADA
   ============================================================ */
.journey { position: relative; overflow: hidden; }
.journey::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(700px 500px at 90% 10%, rgba(185, 147, 82, 0.10), transparent 60%);
  pointer-events: none;
}
.journey__steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  counter-reset: step;
}
.journey__step {
  position: relative;
  background: rgba(251, 248, 242, 0.04);
  border: 1px solid rgba(196, 209, 192, 0.18);
  border-radius: var(--radius);
  padding: 2.2rem 1.9rem 2rem;
  transition: transform 0.45s var(--ease), background 0.45s var(--ease), border-color 0.45s var(--ease);
}
.journey__step:hover {
  transform: translateY(-8px);
  background: rgba(251, 248, 242, 0.08);
  border-color: rgba(203, 170, 110, 0.45);
}
.journey__num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-style: italic;
  color: var(--gold-400);
  display: block;
  margin-bottom: 0.8rem;
  line-height: 1;
}
.journey__step h3 { margin-bottom: 0.6rem; font-size: 1.28rem; }
.journey__step p { font-size: 0.95rem; color: var(--sage-200); }
.journey__cta { text-align: center; margin-top: 3.2rem; }

/* ============================================================
   ESPECIALIDADES
   ============================================================ */
.spec__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}
.spec__card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.7rem;
  box-shadow: var(--shadow-card);
  border: 1px solid transparent;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.45s var(--ease);
}
.spec__card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-soft);
  border-color: var(--gold-400);
}
.spec__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--cream-100);
  color: var(--olive-500);
  margin-bottom: 1.2rem;
  transition: background 0.45s var(--ease), color 0.45s var(--ease);
}
.spec__icon svg { width: 30px; height: 30px; }
.spec__card:hover .spec__icon { background: var(--olive-700); color: var(--gold-400); }
.spec__card h3 { font-size: 1.22rem; margin-bottom: 0.5rem; }
.spec__card p { font-size: 0.92rem; color: var(--ink-soft); }
.spec__card--wide {
  grid-column: span 2;
  display: flex;
  gap: 1.4rem;
  align-items: flex-start;
}
.spec__card--wide .spec__icon { flex-shrink: 0; margin-bottom: 0; }
.spec__tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.9rem; }
.spec__tags li {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  background: var(--cream-100);
  color: var(--olive-700);
  border: 1px solid var(--cream-200);
}
.spec__note {
  text-align: center;
  margin-top: 2.6rem;
  color: var(--ink-soft);
  font-size: 0.98rem;
}
.spec__note a { color: var(--gold-500); font-weight: 500; border-bottom: 1px solid currentColor; }

/* ============================================================
   DIFERENCIAIS
   ============================================================ */
.diff__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}
.diff__item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.7rem;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.diff__item::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--sage-400), var(--gold-400));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.diff__item:hover { transform: translateY(-8px); box-shadow: var(--shadow-soft); }
.diff__item:hover::before { transform: scaleX(1); }
.diff__num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--gold-500);
  display: block;
  margin-bottom: 0.7rem;
}
.diff__item h3 { font-size: 1.16rem; margin-bottom: 0.5rem; }
.diff__item p { font-size: 0.92rem; color: var(--ink-soft); }
.diff__item--cta {
  background: var(--olive-700);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 1.2rem;
}
.diff__item--cta p {
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--cream-50);
  line-height: 1.3;
}
.diff__item--cta .btn--primary { background: var(--gold-500); box-shadow: none; }
.diff__item--cta .btn--primary:hover { background: var(--gold-400); }

/* ============================================================
   DEPOIMENTOS
   ============================================================ */
.testi__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.testi__card {
  position: relative;
  background: rgba(251, 248, 242, 0.05);
  border: 1px solid rgba(196, 209, 192, 0.18);
  border-radius: var(--radius);
  padding: 2.6rem 2rem 2rem;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  transition: transform 0.45s var(--ease), border-color 0.45s var(--ease);
}
.testi__card:hover { transform: translateY(-6px); border-color: rgba(203, 170, 110, 0.45); }
.testi__quote {
  position: absolute;
  top: 0.6rem;
  left: 1.4rem;
  font-family: var(--font-display);
  font-size: 4.4rem;
  line-height: 1;
  color: var(--gold-400);
  opacity: 0.65;
}
.testi__card blockquote { flex: 1; font-size: 0.98rem; color: var(--sage-200); font-style: italic; }
.testi__card figcaption { margin-top: 1.4rem; padding-top: 1rem; border-top: 1px solid rgba(196, 209, 192, 0.18); }
.testi__card figcaption strong { display: block; font-weight: 500; color: var(--cream-50); }
.testi__card figcaption span { font-size: 0.82rem; color: var(--sage-400); }
.testi__placeholder {
  text-align: center;
  margin-top: 2.2rem;
  font-size: 0.9rem;
  color: var(--sage-400);
  letter-spacing: 0.08em;
}

/* ============================================================
   RECEITAS
   ============================================================ */
.recipes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.recipes__card {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.9rem 1.7rem;
  box-shadow: var(--shadow-card);
  border: 1px solid transparent;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.45s var(--ease);
}
.recipes__card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-soft);
  border-color: var(--gold-400);
}
.recipes__tags { display: flex; flex-wrap: wrap; gap: 0.45rem; }
.recipes__tags li {
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.28rem 0.8rem;
  border-radius: 999px;
  background: var(--cream-100);
  color: var(--olive-700);
  border: 1px solid var(--cream-200);
}
.recipes__card h3 { font-size: 1.3rem; flex: 1; }
.recipes__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gold-500);
  transition: transform 0.35s var(--ease);
}
.recipes__card:hover .recipes__link { transform: translateX(5px); }
.recipes__note {
  text-align: center;
  margin-top: 2.6rem;
  color: var(--ink-soft);
  font-size: 0.98rem;
}
.recipes__note a { color: var(--gold-500); font-weight: 500; border-bottom: 1px solid currentColor; }

/* ============================================================
   FAQ
   ============================================================ */
.faq__inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
.faq__head { position: sticky; top: 7rem; }
.faq__head h2 { margin-bottom: 1.2rem; }
.faq__head p { color: var(--ink-soft); }
.faq__head a { color: var(--gold-500); font-weight: 500; border-bottom: 1px solid currentColor; }
.faq__list { display: grid; gap: 0.9rem; }
.faq__item {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  border: 1px solid transparent;
  transition: border-color 0.4s var(--ease);
  overflow: hidden;
}
.faq__item[open] { border-color: var(--gold-400); }
.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  list-style: none;
  padding: 1.3rem 1.6rem;
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 500;
  color: var(--olive-800);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__arrow {
  flex-shrink: 0;
  width: 11px; height: 11px;
  border-right: 1.6px solid var(--gold-500);
  border-bottom: 1.6px solid var(--gold-500);
  transform: rotate(45deg);
  transition: transform 0.4s var(--ease);
  margin-top: -4px;
}
.faq__item[open] .faq__arrow { transform: rotate(225deg); margin-top: 4px; }
.faq__item p {
  padding: 0 1.6rem 1.5rem;
  color: var(--ink-soft);
  font-size: 0.97rem;
}

/* ============================================================
   AGENDAMENTO
   ============================================================ */
.booking { position: relative; overflow: hidden; }
.booking::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(640px 540px at 12% 90%, rgba(185, 147, 82, 0.12), transparent 60%);
  pointer-events: none;
}
.booking__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.booking__content h2 { margin-bottom: 1.1rem; }
.booking__modes { display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem; margin-top: 2.4rem; }
.booking__mode {
  border: 1px solid rgba(196, 209, 192, 0.22);
  border-radius: var(--radius);
  padding: 1.6rem 1.5rem;
  background: rgba(251, 248, 242, 0.04);
}
.booking__mode h3 { font-size: 1.3rem; margin-bottom: 0.5rem; color: var(--gold-400); }
.booking__mode p { font-size: 0.95rem; color: var(--sage-200); }
.booking__mode a {
  display: inline-block;
  margin-top: 0.7rem;
  font-size: 0.88rem;
  color: var(--cream-50);
  border-bottom: 1px solid var(--gold-400);
}
.booking__card {
  background: var(--cream-50);
  border-radius: calc(var(--radius) + 6px);
  padding: 2.8rem 2.4rem;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
  color: var(--ink);
}
.booking__logo { width: 78px; height: 78px; margin: 0 auto 1.2rem; border-radius: 50%; }
.booking__card h3 { font-size: 1.7rem; margin-bottom: 0.4rem; }
.booking__card > p { color: var(--ink-soft); font-size: 0.95rem; margin-bottom: 1.6rem; }
.booking__contacts { display: grid; gap: 0.4rem; margin-top: 1.5rem; font-size: 0.93rem; }
.booking__contacts a { color: var(--olive-700); transition: color 0.3s var(--ease); }
.booking__contacts a:hover { color: var(--gold-500); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--olive-900); color: var(--sage-200); padding: 4.5rem 0 0; }
.footer__inner {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding-bottom: 3rem;
}
.footer__brand img { border-radius: 50%; margin-bottom: 1.1rem; }
.footer__brand p { font-size: 0.92rem; max-width: 340px; }
.footer h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--cream-50);
  margin-bottom: 1.1rem;
  font-weight: 500;
}
.footer__nav, .footer__contact { display: flex; flex-direction: column; gap: 0.55rem; }
.footer__nav a, .footer__contact a {
  font-size: 0.92rem;
  transition: color 0.3s var(--ease);
  width: fit-content;
}
.footer__nav a:hover, .footer__contact a:hover { color: var(--gold-400); }
.footer__bottom {
  border-top: 1px solid rgba(196, 209, 192, 0.14);
  padding: 1.4rem 0;
  font-size: 0.82rem;
  color: var(--sage-400);
  text-align: center;
}

/* ---------- WhatsApp FAB ---------- */
.whatsapp-fab {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  z-index: 90;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #1fb355;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 34px rgba(31, 179, 85, 0.4);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  animation: fabPulse 2.6s infinite;
}
.whatsapp-fab:hover { transform: scale(1.08); box-shadow: 0 18px 44px rgba(31, 179, 85, 0.5); }
@keyframes fabPulse {
  0%, 100% { box-shadow: 0 14px 34px rgba(31, 179, 85, 0.4), 0 0 0 0 rgba(31, 179, 85, 0.32); }
  55% { box-shadow: 0 14px 34px rgba(31, 179, 85, 0.4), 0 0 0 16px rgba(31, 179, 85, 0); }
}
@media (prefers-reduced-motion: reduce) { .whatsapp-fab { animation: none; } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .spec__grid { grid-template-columns: repeat(3, 1fr); }
  .diff__grid { grid-template-columns: repeat(2, 1fr); }
  .recipes__grid { grid-template-columns: repeat(2, 1fr); }
  .journey__steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .nav {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    gap: 1.6rem;
    background: rgba(251, 248, 242, 0.98);
    backdrop-filter: blur(16px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--ease);
    z-index: -1;
  }
  .nav.is-open { opacity: 1; pointer-events: auto; z-index: 99; }
  .nav a { font-size: 1.25rem; color: var(--olive-700); }
  .nav .nav__cta { background: var(--olive-700); color: var(--cream-50) !important; }
  .header__toggle { display: flex; position: relative; z-index: 100; }

  .hero { min-height: auto; align-items: flex-start; }
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__content { order: 1; padding-bottom: 0; }
  .hero__media { order: 2; margin-top: 2.4rem; }
  .hero__sub { margin-inline: auto; }
  .hero__actions, .hero__badges { justify-content: center; }
  .hero h1 { margin-inline: auto; }
  .hero__photo { width: min(340px, 82vw); }
  .hero__card { left: 50%; transform: translateX(-50%); bottom: 4%; max-width: 88%; padding: 0.9rem 1.2rem; }
  .hero__rings { right: -40%; top: auto; bottom: -10%; width: 520px; height: 520px; }

  .about__inner { grid-template-columns: 1fr; }
  .about__media { max-width: 420px; margin-inline: auto; }
  .about__monogram { right: -12px; top: -22px; width: 88px; height: 88px; }

  .faq__inner { grid-template-columns: 1fr; }
  .faq__head { position: static; }

  .booking__inner { grid-template-columns: 1fr; }

  .testi__grid { grid-template-columns: 1fr; }

  .footer__inner { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .spec__grid { grid-template-columns: 1fr; }
  .spec__card--wide { grid-column: span 1; flex-direction: column; }
  .diff__grid { grid-template-columns: 1fr; }
  .recipes__grid { grid-template-columns: 1fr; }
  .journey__steps { grid-template-columns: 1fr; }
  .booking__modes { grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .hero__actions { flex-direction: column; }
}
