/* ============================================================
   RETIRO DA TOCA — Design System
   Refúgio entre vinhedos, montanhas e experiências memoráveis.
   ============================================================ */

:root {
  /* Paper / backgrounds */
  --cream:       #F4EDDF;
  --cream-deep:  #ECE2CF;
  --paper:       #F8F3E8;
  --paper-warm:  #EFE6D5;

  /* Brand line + metal */
  --bronze:      #9D6E42;
  --bronze-soft: #B7935F;
  --bronze-ink:  #8C5E35; /* bronze escurecido p/ texto pequeno (AA ≥4.5:1 sobre o creme) */
  --gold:        #A8814C;

  /* Accents */
  --wine:        #5C2333;
  --wine-deep:   #461824;
  --olive:       #2E3927;   /* deep forest — wordmark, headings */
  --olive-soft:  #56603F;
  --terracotta:  #B26A40;

  /* Ink */
  --ink:         #2B2720;
  --ink-soft:    #6C6456;
  --ink-faint:   #948B79;

  /* Hairlines */
  --line:        rgba(157,110,66,0.42);
  --line-soft:   rgba(157,110,66,0.22);

  /* Type */
  --serif:  "Cormorant Garamond", Georgia, serif;
  --script: "Petit Formal Script", "Cormorant Garamond", cursive;
  --sans:   "Jost", "Helvetica Neue", Helvetica, Arial, sans-serif;

  /* Rhythm */
  --shell: 1240px;
  --gutter: clamp(22px, 5vw, 72px);
  --section-y: clamp(80px, 11vw, 168px);
  --fold: clamp(150px, 23vw, 400px);
}

/* ---------- reset ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.75;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ---------- type primitives ---------- */
.kicker {
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(11px, 1vw, 13px);
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--bronze-ink);
  margin: 0;
}
.display {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: 0.005em;
  color: var(--olive);
  margin: 0;
  text-wrap: balance;
}
.h1 { font-size: clamp(44px, 8vw, 104px); }
.h2 { font-size: clamp(34px, 5.4vw, 70px); }
.h3 { font-size: clamp(26px, 3.4vw, 42px); }
.script {
  font-family: var(--script);
  font-weight: 400;
  color: var(--gold);
  line-height: 1.1;
  letter-spacing: 0.01em;
}
.lead {
  font-size: clamp(17px, 1.55vw, 21px);
  line-height: 1.7;
  color: var(--ink-soft);
  font-weight: 300;
  max-width: 62ch;
  text-wrap: pretty;
}
p { text-wrap: pretty; }

/* ---------- layout ---------- */
.shell { width: min(100% - var(--gutter)*2); max-width: var(--shell); margin-inline: auto; }
.section { padding-block: var(--section-y); position: relative; }

/* Foco de teclado — visível e on-brand. :focus-visible não afeta cliques de mouse. */
a:focus-visible, button:focus-visible, summary:focus-visible,
[tabindex]:focus-visible, input:focus-visible {
  outline: 2px solid var(--bronze-ink);
  outline-offset: 3px;
}
/* Pular para o conteúdo (teclado/leitor de tela) */
.skip-link {
  position: fixed; top: 12px; left: 12px; z-index: 200;
  background: var(--olive); color: var(--cream);
  padding: 11px 20px; border-radius: 999px;
  font: 500 14px/1 var(--sans); text-decoration: none;
  transform: translateY(-160%); transition: transform 0.2s ease;
}
.skip-link:focus { transform: none; outline-offset: 2px; }

/* ---------- arched folds (janela structure) ---------- */
/* every section rises over the previous one as a window arch */
main .section, .hero, .cta-band { padding-bottom: calc(var(--section-y) * 0.85 + var(--fold)); }
.fold {
  position: relative; z-index: 1;
  margin-top: calc(-1 * var(--fold));
  border-radius: 50% 50% 0 0 / var(--fold) var(--fold) 0 0;
  border-top: 1px solid var(--line);
  padding-top: calc(var(--fold) * 0.58 + clamp(28px, 4vw, 48px));
  background-color: var(--cream); /* fill so the break IS the arch, never a straight seam */
}
.fold::after {
  /* the grape at the keystone, from the brand mark */
  content: ""; position: absolute; top: 0; left: 50%;
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--bronze); transform: translate(-50%, -50%);
}
.bg-deep  { background: var(--cream-deep); }
.bg-paper { background: var(--paper); }
.bg-olive { background: var(--olive); color: var(--paper); }
.bg-wine  { background: var(--wine); color: var(--paper-warm); }

.eyebrow-row { display: flex; align-items: center; gap: 14px; margin-bottom: 26px; }
.eyebrow-row .sparkle { width: 13px; height: 13px; flex: none; }

/* ---------- sparkle ornament ---------- */
.sparkle { display: inline-block; color: var(--bronze); }
.divider {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  color: var(--line); margin: 0 auto;
}
.divider::before, .divider::after {
  content: ""; height: 1px; width: clamp(40px, 14vw, 150px);
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}
.divider .sparkle { width: 14px; height: 14px; color: var(--bronze); }

/* ---------- buttons ---------- */
.btn {
  --bg: var(--olive); --fg: var(--paper);
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-weight: 400; font-size: 13px;
  letter-spacing: 0.22em; text-transform: uppercase;
  padding: 16px 30px; border: 1px solid var(--bg);
  background: var(--bg); color: var(--fg); border-radius: 2px; white-space: nowrap;
  transition: background .4s ease, color .4s ease, transform .4s ease, border-color .4s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--solid:hover { background: var(--wine); border-color: var(--wine); }
.btn--ghost {
  --bg: transparent; --fg: var(--olive); border-color: var(--line);
}
.btn--ghost:hover { border-color: var(--bronze); color: var(--bronze); background: transparent; }
.btn--light { --bg: var(--paper); --fg: var(--olive); }
.btn--light:hover { background: var(--gold); border-color: var(--gold); color: var(--paper); }
.btn--wine { --bg: var(--wine); --fg: var(--paper-warm); border-color: var(--wine); }
.btn--wine:hover { background: var(--wine-deep); border-color: var(--wine-deep); }

.btn .wa { width: 16px; height: 16px; }

/* ---------- arch frame ---------- */
.arch {
  position: relative;
  border-radius: 9999px 9999px 12px 12px;
  overflow: hidden;
  background-color: var(--paper-warm);
  background-image: repeating-linear-gradient(45deg, rgba(157,110,66,0.07) 0 1px, transparent 1px 12px);
}
.arch image-slot, .arch img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center; }
.arch-outline {
  position: relative; padding: 14px;
}
.arch-outline::before {
  content: ""; position: absolute; inset: 0;
  border: 1px solid var(--line);
  border-radius: 9999px 9999px 14px 14px;
  pointer-events: none;
}

/* ---------- image slot defaults ---------- */
image-slot {
  background: transparent;
  color: var(--ink-faint);
  font-family: var(--sans);
}
/* striped placeholder shows behind empty slots (and in screenshot tools
   that can't render the slot's shadow DOM) */
.ph {
  background-color: var(--paper-warm);
  background-image: repeating-linear-gradient(45deg,
    rgba(157,110,66,0.07) 0 1px, transparent 1px 11px);
}

/* ---------- vertical labels ---------- */
.vlabel {
  writing-mode: vertical-rl; text-orientation: mixed;
  font-family: var(--sans); font-weight: 400;
  font-size: 12px; letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--bronze); white-space: nowrap;
}
.vlabel.flip { transform: rotate(180deg); }

/* ---------- botanical decor ---------- */
.botanic {
  position: absolute; pointer-events: none; z-index: 0;
  mix-blend-mode: multiply; opacity: 0.6;
}

/* ---------- cards ---------- */
.grid { display: grid; gap: clamp(18px, 2vw, 30px); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.feature {
  position: relative; padding: 34px 30px;
  border: 1px solid var(--line-soft);
  background: rgba(248,243,232,0.5);
  border-radius: 3px;
  transition: border-color .45s ease, background .45s ease, transform .45s ease;
}
.feature:hover { border-color: var(--line); background: var(--paper); transform: translateY(-4px); }
.feature .num {
  font-family: var(--serif); font-style: italic; font-size: 20px;
  color: var(--bronze-soft); margin-bottom: 16px; display: block;
}
.feature h4 {
  font-family: var(--serif); font-weight: 500; font-size: 25px;
  color: var(--olive); margin: 0 0 10px; line-height: 1.15;
}
.feature p { margin: 0; font-size: 15.5px; color: var(--ink-soft); line-height: 1.65; }

/* ---------- glyph (icon) ---------- */
.glyph { width: 34px; height: 34px; color: var(--bronze); margin-bottom: 18px; }

/* ---------- reveal ---------- */
/* JS-gated: hidden state only applies once .reveal-on is set on <html>,
   so content is never permanently hidden if scripts fail */
.reveal-on [data-reveal] {
  opacity: 0; transform: translateY(26px);
  transition: opacity 1.1s cubic-bezier(.2,.7,.2,1), transform 1.1s cubic-bezier(.2,.7,.2,1);
  transition-delay: var(--d, 0ms);
}
.reveal-on [data-reveal].in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal-on [data-reveal] { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- header ---------- */
.site-head {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--gutter);
  transition: background .5s ease, padding .5s ease, box-shadow .5s ease, border-color .5s ease;
  border-bottom: 1px solid transparent;
}
.site-head.scrolled {
  background: rgba(244,237,223,0.9);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--line-soft);
  padding-block: 12px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand .mark { width: 38px; height: 46px; flex: none; transition: width .5s, height .5s; }
.scrolled .brand .mark { width: 32px; height: 39px; }

/* official logo (recolored PNG) */
.brand-logo {
  display: block; height: 50px; width: auto;
  transition: height .5s ease;
}
.scrolled .brand-logo { height: 43px; }
.foot-logo {
  display: block; height: 134px; width: auto; margin-bottom: 6px;
}
.brand .wordmark {
  font-family: var(--serif); font-weight: 600; line-height: 0.92;
  font-size: 19px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--olive);
}
.brand .wordmark small { display: block; font-size: 13px; letter-spacing: 0.3em; color: var(--bronze); font-weight: 500; }

.nav { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 40px); }
.nav a {
  font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 400; color: var(--ink); position: relative; padding: 4px 0;
}
.nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -2px; height: 1px;
  background: var(--bronze); transition: right .4s ease;
}
.nav a:hover::after { right: 0; }
.nav a:hover { color: var(--bronze); }
.head-cta { display: flex; align-items: center; gap: 16px; }

.burger { display: none; width: 44px; height: 44px; position: relative; background: none; border: 0; padding: 0; }
.burger span { position: absolute; left: 50%; width: 30px; height: 1.5px; background: var(--olive); transition: .35s; transform: translateX(-50%); }
.burger span:nth-child(1){ top: 15px; }
.burger span:nth-child(2){ top: 23px; }
.burger span:nth-child(3){ top: 31px; }
body.menu-open .burger span:nth-child(1){ top: 23px; transform: translateX(-50%) rotate(45deg); }
body.menu-open .burger span:nth-child(2){ opacity: 0; }
body.menu-open .burger span:nth-child(3){ top: 23px; transform: translateX(-50%) rotate(-45deg); }

/* mobile nav sheet */
.mobile-nav {
  position: fixed; inset: 0; z-index: 55; background: var(--cream);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; opacity: 0; pointer-events: none; transition: opacity .45s ease;
}
body.menu-open .mobile-nav { opacity: 1; pointer-events: auto; }
.mobile-nav a {
  font-family: var(--serif); font-size: 34px; color: var(--olive); font-weight: 500;
}
.mobile-nav a:hover { color: var(--bronze); }
.mobile-nav .btn { margin-top: 22px; }

/* ---------- footer ---------- */
.site-foot { background: var(--olive); color: var(--paper-warm); padding-block: clamp(64px, 8vw, 100px) 36px; position: relative; overflow: hidden; }
.site-foot.fold { padding-top: calc(var(--fold) * 0.62 + clamp(36px, 5vw, 64px)); }
.site-foot a:hover { color: #fff; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; }
.foot-grid h5 {
  font-family: var(--sans); font-weight: 500; font-size: 12px; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--bronze-soft); margin: 0 0 18px;
}
.foot-link { display: block; padding: 5px 0; color: rgba(244,237,223,0.78); font-size: 15px; transition: color .3s; }
.foot-link:hover { color: #fff; }
.foot-rule { height: 1px; background: rgba(244,237,223,0.16); margin: 48px 0 24px; }
.foot-bottom { display: flex; justify-content: space-between; align-items: center; gap: 18px; flex-wrap: wrap; font-size: 12.5px; letter-spacing: 0.08em; color: rgba(244,237,223,0.6); }

/* ---------- whatsapp float ---------- */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 70;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--wine); color: var(--paper);
  display: grid; place-items: center;
  box-shadow: 0 12px 30px rgba(70,24,36,0.34);
  transition: transform .4s ease, background .4s ease;
}
.wa-float:hover { transform: scale(1.08); background: var(--wine-deep); }
.wa-float svg { width: 28px; height: 28px; }

/* ---------- pills / tags ---------- */
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--bronze); border: 1px solid var(--line-soft);
  padding: 7px 15px; border-radius: 999px;
}
.tag-soon {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--terracotta); border: 1px solid rgba(178,106,64,0.4);
  padding: 4px 12px; border-radius: 999px; display: inline-block; white-space: nowrap;
}

/* ============================================================
   SECTIONS
   ============================================================ */

/* ---------- hero ---------- */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  padding-top: clamp(110px, 14vh, 150px); padding-bottom: clamp(48px, 8vh, 90px);
  overflow: hidden;
}
.hero-inner {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  align-items: center; gap: clamp(34px, 5vw, 80px);
}
.hero-copy { max-width: 600px; }
.hero-copy .h1 { margin: 4px 0 26px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-words {
  margin-top: 40px; font-size: 12px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--bronze); font-weight: 400;
}
.hero-figure { position: relative; display: flex; justify-content: center; width: 100%; }
.hero-vlabel { position: absolute; right: -8px; top: 50%; transform: translateY(-50%) rotate(180deg); z-index: 3; }
.hero-arch { aspect-ratio: 4 / 5; width: 100%; }
.hero-figure .arch-outline { width: 100%; max-width: 460px; }
.hero-vine {
  width: clamp(220px, 28vw, 420px); top: -30px; right: -60px; opacity: 0.85;
  transform: rotate(8deg);
}
.scroll-hint {
  position: absolute; left: 50%; bottom: calc(var(--fold) + 18px); transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--bronze);
}
.scroll-hint i { width: 1px; height: 40px; background: linear-gradient(var(--bronze), transparent); animation: hint 2.4s ease-in-out infinite; transform-origin: top; }
@keyframes hint { 0%,100%{ transform: scaleY(.4); opacity:.4 } 50%{ transform: scaleY(1); opacity:1 } }

/* ---------- lockup ---------- */
.lockup { max-width: 760px; }
.lockup.center { margin-inline: auto; text-align: center; }
.lockup.center .lead { text-align: center; }

/* ---------- split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px, 5vw, 76px); align-items: center; }
.split-figure .arch { aspect-ratio: 4 / 5; }
.split-text .lead strong { color: var(--wine); font-weight: 400; }

/* ---------- chalés ---------- */
.chalet {
  display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(34px, 5vw, 76px);
  align-items: center; margin-top: clamp(56px, 7vw, 96px);
}
.chalet.reverse .chalet-figure { order: 2; }
.chalet-figure { position: relative; }
.chalet-figure .arch { aspect-ratio: 4 / 5; }
.chalet-index {
  position: absolute; top: -28px; left: -10px; z-index: 2;
  font-family: var(--serif); font-style: italic; font-size: clamp(48px, 6vw, 84px);
  color: var(--bronze-soft); opacity: 0.55; line-height: 1;
}
.chalet.reverse .chalet-index { left: auto; right: -10px; }
.chalet-copy .h3 { margin: 10px 0 18px; }
.amen { list-style: none; padding: 0; margin: 26px 0 30px; display: flex; flex-wrap: wrap; gap: 12px 26px; }
.amen li { display: flex; align-items: center; gap: 10px; font-size: 14px; letter-spacing: 0.06em; color: var(--ink-soft); }
.glyph-sm { width: 22px; height: 22px; color: var(--bronze); flex: none; }

/* ---------- experiências ---------- */
.exp-grid { margin-top: clamp(44px, 5vw, 70px); }
.exp-card {
  background: var(--paper); border: 1px solid var(--line-soft); border-radius: 4px;
  overflow: hidden; transition: transform .5s ease, border-color .5s ease, box-shadow .5s ease;
}
.exp-card:hover { transform: translateY(-5px); border-color: var(--line); box-shadow: 0 22px 48px -28px rgba(40, 30, 18, 0.4); }
.exp-thumb { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background-color: var(--paper-warm); background-image: repeating-linear-gradient(45deg, rgba(157,110,66,0.07) 0 1px, transparent 1px 12px); }
.exp-thumb image-slot { display: block; width: 100%; height: 100%; transform: scale(1.001); transition: transform 1.3s cubic-bezier(0.18, 0.6, 0.18, 1); }
.exp-thumb::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to top, rgba(35, 41, 25, 0.28), transparent 55%);
  opacity: 0; transition: opacity .6s ease;
}
.exp-card:hover .exp-thumb image-slot { transform: scale(1.075); }
.exp-card:hover .exp-thumb::after { opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  .exp-thumb image-slot, .exp-card { transition: none; }
  .exp-card:hover .exp-thumb image-slot { transform: scale(1.001); }
}
.exp-body { padding: 30px 30px 34px; }
.exp-body h4 { font-family: var(--serif); font-weight: 500; font-size: 28px; color: var(--olive); margin: 0 0 8px; }
.exp-body p { margin: 0; color: var(--ink-soft); font-size: 15.5px; }

/* ---------- região ---------- */
.region-map { position: relative; border-radius: 9999px 9999px 8px 8px; overflow: hidden; border: 1px solid var(--line); aspect-ratio: 1 / 1; background-color: var(--paper-warm); background-image: repeating-linear-gradient(45deg, rgba(157,110,66,0.07) 0 1px, transparent 1px 12px); }
.region-map image-slot { width: 100%; height: 100%; }
.region-iframe { width: 100%; height: 100%; border: 0; display: block; }
.map-pin {
  position: absolute; left: 50%; top: 52%; transform: translate(-50%,-50%);
  display: inline-flex; align-items: center; gap: 8px; background: var(--cream);
  border: 1px solid var(--line); padding: 8px 14px; border-radius: 999px;
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--wine); white-space: nowrap;
}
.map-pin svg { width: 16px; height: 16px; color: var(--wine); }
.map-open {
  position: absolute; left: 50%; bottom: 14px; transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 8px; background: var(--cream);
  border: 1px solid var(--line); padding: 8px 16px; min-height: 44px; border-radius: 999px;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--wine);
  white-space: nowrap; text-decoration: none; box-shadow: 0 4px 14px rgba(60,30,20,0.14);
  transition: background 0.2s ease, color 0.2s ease;
}
.map-open svg { width: 15px; height: 15px; color: var(--wine); }
.map-open:hover { background: var(--wine); color: var(--cream); }
.map-open:hover svg { color: var(--cream); }
.region-list { list-style: none; padding: 0; margin: 30px 0 0; display: grid; gap: 22px; }
.region-list li { display: flex; gap: 16px; align-items: flex-start; }
.region-list strong { color: var(--olive); font-weight: 500; }
.region-list div { color: var(--ink-soft); font-size: 15.5px; line-height: 1.6; }
.r-icon { flex: none; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; }
.r-icon svg { width: 22px; height: 22px; color: var(--bronze); }

/* ---------- testimonials ---------- */
.testi { overflow: hidden; }
.testi-vine { width: clamp(220px, 24vw, 380px); right: -60px; bottom: -60px; opacity: 0.22; mix-blend-mode: normal; transform: rotate(-18deg) scaleX(-1); }
.testi .lead, .testi-grid { position: relative; z-index: 1; }
.superhost {
  display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap;
  margin: 30px auto 0; color: var(--paper-warm); font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase;
}
.superhost .stars { color: var(--bronze-soft); letter-spacing: 0.1em; }
.superhost .dot { color: rgba(244,237,223,0.4); }
.testi-grid { margin-top: clamp(44px, 5vw, 64px); }
.quote { margin: 0; padding: 34px 30px; border: 1px solid rgba(244,237,223,0.18); border-radius: 4px; background: rgba(244,237,223,0.04); }
.quote-mark { width: 22px; height: 22px; color: var(--bronze-soft); margin-bottom: 16px; }
.quote blockquote { margin: 0; font-family: var(--serif); font-style: italic; font-size: 22px; line-height: 1.45; color: var(--paper); }
.quote figcaption { margin-top: 18px; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--bronze-soft); }

/* ---------- premium em breve ---------- */
.soon-grid { margin-top: clamp(44px, 5vw, 70px); }
.soon { padding: 34px 30px; border: 1px dashed var(--line); border-radius: 4px; background: rgba(248,243,232,0.4); transition: background .4s, border-color .4s; }
.soon:hover { background: var(--paper); border-color: var(--bronze-soft); }
.soon h4 { font-family: var(--serif); font-weight: 500; font-size: 28px; color: var(--olive); margin: 16px 0 8px; }
.soon p { margin: 0; color: var(--ink-soft); font-size: 15.5px; }
.cta-soon { border-style: solid; background: var(--wine); border-color: var(--wine); }
.cta-soon h4, .cta-soon p { color: var(--paper-warm); }
.cta-soon { display: flex; flex-direction: column; align-items: flex-start; }
.cta-soon .btn { margin-top: auto; }

/* ---------- cta band ---------- */
.cta-band { background: var(--cream); padding-block: clamp(80px, 10vw, 140px); text-align: center; }
.cta-inner {
  position: relative; max-width: 880px;
  border: 1px solid var(--line);
  border-radius: 9999px 9999px 12px 12px;
  background: rgba(248,243,232,0.6);
  padding: clamp(80px, 11vw, 140px) clamp(26px, 6vw, 90px) clamp(54px, 7vw, 78px);
}
.cta-inner::before {
  content: ""; position: absolute; top: 0; left: 50%;
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--bronze); transform: translate(-50%, -50%);
}
.cta-script { font-size: clamp(30px, 5vw, 52px); }

/* glyph fill safety */
.glyph use, .glyph-sm use { color: inherit; }

/* ---------- vinhedo page ---------- */
.back-link {
  display: inline-block; margin-bottom: 22px; font-size: 12px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--bronze); transition: color .3s, gap .3s;
}
.back-link:hover { color: var(--wine); }
.stat-row { display: flex; flex-wrap: wrap; gap: 38px; margin-top: 38px; padding-top: 30px; border-top: 1px solid var(--line-soft); }
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-n { font-family: var(--serif); font-size: clamp(28px, 3.4vw, 40px); color: var(--wine); line-height: 1; }
.stat-l { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); }

.deg-grid { margin-top: clamp(44px, 5vw, 70px); }
.deg-card {
  padding: 38px 34px; border: 1px solid var(--line-soft); border-radius: 4px;
  background: var(--paper); transition: transform .5s ease, border-color .5s ease;
}
.deg-card:hover { transform: translateY(-5px); border-color: var(--line); }
.deg-card h4 { font-family: var(--serif); font-weight: 500; font-size: clamp(26px, 3vw, 32px); color: var(--olive); margin: 4px 0 10px; }
.deg-card p { margin: 0; color: var(--ink-soft); font-size: 16px; line-height: 1.65; }

.exc-grid { margin-top: clamp(44px, 5vw, 70px); }
.exc-card {
  position: relative; padding: 34px 26px; border: 1px solid var(--line-soft); border-radius: 4px;
  background: rgba(248,243,232,0.5); transition: transform .5s ease, border-color .5s ease, background .5s ease;
}
.exc-card:hover { transform: translateY(-5px); border-color: var(--line); background: var(--paper); }
.exc-num { position: absolute; top: 22px; right: 24px; font-family: var(--serif); font-style: italic; font-size: 22px; color: var(--bronze-soft); }
.exc-card h4 { font-family: var(--serif); font-weight: 500; font-size: 24px; color: var(--olive); margin: 4px 0 8px; line-height: 1.15; }
.exc-card p { margin: 0; color: var(--ink-soft); font-size: 15px; line-height: 1.6; }

/* ---------- responsive ---------- */
@media (max-width: 1000px) {
  .scroll-hint { display: none; }
  .hero-inner { grid-template-columns: 1fr; gap: 44px; }
  .hero-copy { max-width: none; }
  .hero-figure { order: -1; }
  .hero-arch { aspect-ratio: 1 / 1; }
  .hero-figure .arch-outline { max-width: 400px; }
  .hero-vlabel { display: none; }
  .split, .chalet, .chalet.reverse { grid-template-columns: 1fr; gap: 36px; }
  .chalet.reverse .chalet-figure { order: 0; }
  .split-figure, .chalet-figure { max-width: 460px; }
  .region-map { aspect-ratio: 4 / 3; }
}
@media (max-width: 940px) {
  .nav, .head-cta .btn { display: none; }
  .burger { display: block; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  body { font-size: 16px; }
  .grid-2, .grid-3, .grid-4, .exp-grid, .testi-grid, .soon-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; gap: 34px; }
  .hero { min-height: 0; }
  .hero-vine { right: -90px; opacity: 0.32; }
  .chalet-index { font-size: 40px; top: -22px; }
}

/* ============================================================
   A VIDEIRA QUE CRESCE — animação-assinatura
   O caule cresce com o scroll pela margem; brotos surgem e os
   cachos amadurecem do traço para o vinho.
   ============================================================ */
.vine-rail {
  position: absolute; top: 0; left: 0; z-index: 4;
  pointer-events: none; overflow: visible;
}
.vine-rail svg { display: block; overflow: visible; }
.vine-stem {
  fill: none; stroke: var(--bronze); stroke-width: 1.5;
  stroke-linecap: round; opacity: 0.8;
}
.vine-tip { transition: opacity 0.45s ease; }
.vine-tip path { fill: var(--olive-soft); opacity: 0.8; }
.vine-tip circle { fill: var(--bronze); }

.vine-ms {
  transform-box: fill-box; transform-origin: center;
  opacity: 0; transform: scale(0.35) rotate(-12deg);
  transition: opacity 0.9s ease, transform 1.4s cubic-bezier(0.16, 1.25, 0.3, 1);
}
.vine-ms.on { opacity: 1; transform: none; }
.vine-ms path {
  fill: none; stroke: var(--bronze); stroke-width: 1.4;
  stroke-linecap: round; stroke-linejoin: round;
}
.vine-ms .leaf-fill { fill: rgba(86, 96, 63, 0.14); }
.vine-chalet path { stroke: var(--olive-soft); }
.vine-grapes circle {
  fill: var(--cream); stroke: var(--bronze); stroke-width: 1.3;
  transition: fill 1.5s ease;
  transition-delay: calc(var(--i, 0) * 170ms + 400ms);
}
.vine-grapes.on circle { fill: var(--wine); }
@media (max-width: 1396px) { .vine-rail { display: none !important; } }

/* a uva da abóbada vira um CACHO: brota do ponto da costura,
   desdobra folha e gavinha, e os bagos amadurecem um a um */
.fold::after, .cta-inner::before { transition: background 1s ease 0.4s; }
.fold.ripe::after, .cta-inner.ripe::before { background: var(--wine); }

.keystone {
  position: absolute; top: 0; left: 50%;
  width: 80px; height: 84px; margin-left: -40px;
  overflow: visible; pointer-events: none; z-index: 3;
}
.keystone path {
  fill: none; stroke: var(--bronze); stroke-width: 1.5;
  stroke-linecap: round; stroke-linejoin: round;
}
.keystone .ks-leaf { fill: rgba(86, 96, 63, 0.16); }
.keystone .ks-stem, .keystone .ks-leaf, .keystone .ks-tendril {
  opacity: 0; transform: scale(0.3);
  transform-box: fill-box; transform-origin: top center;
  transition: opacity 0.7s ease, transform 1.2s cubic-bezier(0.16, 1.2, 0.3, 1);
}
.keystone .ks-leaf    { transition-delay: 250ms; }
.keystone .ks-tendril { transition-delay: 420ms; }
.ripe .keystone .ks-stem, .ripe .keystone .ks-leaf, .ripe .keystone .ks-tendril {
  opacity: 1; transform: none;
}
.keystone circle {
  fill: var(--cream); stroke: var(--bronze); stroke-width: 1.4;
  transform: scale(0); transform-box: fill-box; transform-origin: center;
  transition:
    transform 0.9s cubic-bezier(0.2, 1.45, 0.3, 1) calc(var(--i, 0) * 130ms + 350ms),
    fill 1.1s ease calc(var(--i, 0) * 170ms + 1150ms);
}
.ripe .keystone circle { transform: scale(1); fill: var(--wine); }
.bg-olive .keystone path { stroke: var(--bronze-soft); }
.bg-olive .keystone .ks-leaf { fill: rgba(244, 237, 223, 0.12); }

/* a janela do chalé respira: as imagens em arco assentam devagar */
@media (prefers-reduced-motion: no-preference) {
  .reveal-on [data-reveal] .arch image-slot,
  .reveal-on [data-reveal] .arch > img {
    transform: scale(1.08);
    transition: transform 3.2s cubic-bezier(0.18, 0.6, 0.18, 1);
    transition-delay: var(--d, 0ms);
  }
  .reveal-on [data-reveal].in .arch image-slot,
  .reveal-on [data-reveal].in .arch > img { transform: scale(1.001); }
}
@media (prefers-reduced-motion: reduce) {
  .vine-ms { opacity: 1; transform: none; transition: none; }
  .vine-tip { display: none; }
  .keystone path, .keystone circle { transition: none; }
}

/* ---------- ciclo do vinhedo (página do vinhedo) ---------- */
.cycle-track {
  position: relative;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(24px, 3vw, 40px);
  margin-top: clamp(44px, 6vw, 72px);
}
.cycle-track::before {
  content: ""; position: absolute; top: 37px; left: 6%; right: 6%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(183, 147, 95, 0.6) 10%, rgba(183, 147, 95, 0.6) 90%, transparent);
}
.cycle-step { text-align: center; position: relative; padding-inline: 8px; }
.cycle-node {
  position: relative; z-index: 1;
  width: 74px; height: 74px; border-radius: 50%;
  border: 1px solid rgba(183, 147, 95, 0.65);
  background: var(--olive);
  display: grid; place-items: center;
  margin: 0 auto 22px;
  color: var(--bronze-soft);
}
.cycle-node svg { width: 32px; height: 32px; }
.cycle-step h4 {
  font-family: var(--serif); font-weight: 500;
  font-size: 24px; line-height: 1.15;
  color: var(--paper); margin: 0 0 10px;
}
.cycle-step p { margin: 0; font-size: 15px; line-height: 1.65; color: rgba(244, 237, 223, 0.68); }
.cycle-foot {
  text-align: center; margin: clamp(40px, 5vw, 56px) auto 0; max-width: 52ch;
  font-family: var(--script); font-size: clamp(19px, 2vw, 24px); color: var(--bronze-soft);
}
@media (max-width: 900px) {
  .cycle-track { grid-template-columns: 1fr 1fr; row-gap: 44px; }
  .cycle-track::before { display: none; }
}
@media (max-width: 520px) { .cycle-track { grid-template-columns: 1fr; } }

/* ---------- como chegar (home) ---------- */
.route {
  margin-top: clamp(52px, 7vw, 88px);
  border-top: 1px solid var(--line-soft);
  padding-top: clamp(36px, 5vw, 56px);
}
.route-title { text-align: center; margin: 0 0 34px; }
.route-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3.5vw, 48px);
}
.route-item { display: flex; gap: 16px; align-items: flex-start; }
.route-icon {
  flex: none; width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  color: var(--bronze);
}
.route-icon svg { width: 22px; height: 22px; }
.route-item strong { display: block; font-weight: 500; color: var(--olive); font-size: 17px; letter-spacing: 0.01em; }
.route-item p { margin: 6px 0 0; font-size: 15px; line-height: 1.65; color: var(--ink-soft); }
@media (max-width: 900px) { .route-grid { grid-template-columns: 1fr; } }

/* ---------- FAQ ---------- */
.faq-shell { max-width: 880px; }
.faq-list { margin-top: clamp(36px, 5vw, 52px); border-top: 1px solid var(--line-soft); }
.faq-item { border-bottom: 1px solid var(--line-soft); }
.faq-item summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 26px 4px;
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(20px, 2.4vw, 25px); line-height: 1.3; color: var(--olive);
  transition: color .3s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--bronze); }
.faq-mark { position: relative; flex: none; width: 18px; height: 18px; }
.faq-mark::before, .faq-mark::after {
  content: ""; position: absolute; background: var(--bronze);
  transition: transform .35s cubic-bezier(.4,0,.2,1), opacity .35s ease;
}
.faq-mark::before { top: 8px; left: 0; width: 18px; height: 1.5px; }
.faq-mark::after { left: 8px; top: 0; width: 1.5px; height: 18px; }
.faq-item[open] .faq-mark::after { transform: scaleY(0); opacity: 0; }
.faq-a {
  overflow: hidden;
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows .4s ease;
}
.faq-item[open] .faq-a { grid-template-rows: 1fr; }
.faq-a > p {
  min-height: 0; margin: 0;
  padding: 0 64px 28px 4px;
  color: var(--ink-soft); font-size: 16.5px; line-height: 1.7;
}
.faq-foot { text-align: center; margin-top: clamp(32px, 4vw, 44px); color: var(--ink-soft); font-size: 16px; }
.faq-foot a { color: var(--bronze-ink); border-bottom: 1px solid var(--line); padding-bottom: 1px; white-space: nowrap; transition: color .3s ease, border-color .3s ease; }
.faq-foot a:hover { color: var(--olive); border-color: var(--olive); }
@media (prefers-reduced-motion: reduce) {
  .faq-a { transition: none; }
  .faq-mark::before, .faq-mark::after { transition: none; }
}

/* ---------- linha do tempo (história do vinhedo) ---------- */
.timeline {
  list-style: none; margin: clamp(56px, 7vw, 92px) 0 0; padding: 0;
  position: relative;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 4vw, 56px);
}
.timeline::before {
  content: ""; position: absolute; top: 6px; left: 12%; right: 12%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--line) 14%, var(--line) 86%, transparent);
}
.tl-item { position: relative; text-align: center; }
.tl-dot {
  position: relative; z-index: 1; display: block;
  width: 13px; height: 13px; border-radius: 50%;
  background: var(--bronze); box-shadow: 0 0 0 5px var(--cream-deep);
  margin: 0 auto 26px;
}
.tl-year {
  display: block; font-family: var(--serif); font-weight: 500;
  font-size: clamp(38px, 4.6vw, 58px); color: var(--wine); line-height: 1; margin-bottom: 14px;
}
.tl-item h4 {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(20px, 2.2vw, 24px); color: var(--olive); margin: 0 0 10px;
}
.tl-item p { margin: 0 auto; max-width: 30ch; font-size: 15px; line-height: 1.66; color: var(--ink-soft); }
@media (max-width: 760px) {
  .timeline { grid-template-columns: 1fr; gap: 0; padding-left: 26px; }
  .timeline::before { top: 8px; bottom: 8px; left: 5px; right: auto; width: 1px; height: auto; background: linear-gradient(180deg, transparent, var(--line) 8%, var(--line) 92%, transparent); }
  .tl-item { text-align: left; padding-bottom: 38px; }
  .tl-item:last-child { padding-bottom: 0; }
  .tl-dot { position: absolute; left: -26px; top: 12px; margin: 0; }
  .tl-year { font-size: 40px; margin-bottom: 8px; }
  .tl-item p { margin: 0; max-width: 42ch; }
}

/* ---------- photo frame (landscape, retangular) ---------- */
.photo-frame { position: relative; padding: 14px; width: 100%; }
.photo-frame::before {
  content: ""; position: absolute; inset: 0;
  border: 1px solid var(--line); border-radius: 8px; pointer-events: none;
}
.photo-inner {
  border-radius: 4px; overflow: hidden;
  background-color: var(--paper-warm);
  background-image: repeating-linear-gradient(45deg, rgba(157,110,66,0.07) 0 1px, transparent 1px 12px);
}
.photo-inner img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ph-tall .photo-inner { aspect-ratio: 4 / 3; }
.photo-4x3 { aspect-ratio: 4 / 3; }
.photo-cap {
  display: block; margin-top: 14px; text-align: center;
  font-family: var(--serif); font-style: italic; font-size: 14px; color: var(--ink-soft);
}
.hero-figure .photo-frame { max-width: 540px; }

/* ---------- lista de eventos ---------- */
.event-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 26px; }
.event-list li { display: flex; gap: 18px; align-items: flex-start; }
.event-ic {
  flex: none; width: 48px; height: 48px; border-radius: 50%;
  border: 1px solid var(--line); display: grid; place-items: center; color: var(--bronze);
}
.event-ic svg { width: 24px; height: 24px; }
.event-list strong { display: block; font-family: var(--serif); font-weight: 500; font-size: 21px; color: var(--olive); }
.event-list p { margin: 6px 0 0; font-size: 15px; line-height: 1.62; color: var(--ink-soft); }

/* ---------- hub "a fazenda hoje" (sobre fundo oliva) ---------- */
.hub-grid { margin-top: clamp(40px, 5vw, 64px); }
.hubcard {
  display: flex; flex-direction: column; align-items: flex-start;
  padding: 36px 32px; border: 1px solid rgba(244,237,223,0.18);
  border-radius: 3px; background: rgba(244,237,223,0.03);
  transition: border-color .45s ease, background .45s ease, transform .45s ease;
}
.hubcard:hover { border-color: var(--bronze-soft); background: rgba(244,237,223,0.07); transform: translateY(-5px); }
.hub-ic {
  width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid rgba(183,147,95,0.5); display: grid; place-items: center;
  color: var(--bronze-soft); margin-bottom: 22px;
}
.hub-ic svg { width: 24px; height: 24px; }
.hubcard h4 { font-family: var(--serif); font-weight: 500; font-size: 28px; color: var(--paper); margin: 0 0 10px; }
.hubcard p { margin: 0 0 22px; font-size: 15px; line-height: 1.62; color: rgba(244,237,223,0.72); }
.hub-go { margin-top: auto; font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--bronze-soft); transition: color .3s ease; }
.hubcard:hover .hub-go { color: #fff; }

/* ---------- fazenda teaser (home) ---------- */
.fazenda-teaser .split { align-items: center; }
.fazenda-teaser .photo-cap { text-align: left; }

/* ---------- carrossel (janela de fotos) ---------- */
.carousel { position: absolute; inset: 0; overflow: hidden; }
.carousel-slide {
  position: absolute; inset: 0; opacity: 0;
  transition: opacity 1.1s ease;
}
.carousel-slide.is-active { opacity: 1; }
.carousel-slide image-slot, .carousel-slide img { width: 100%; height: 100%; display: block; object-fit: cover; }
.carousel-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid rgba(244,237,223,0.6); background: rgba(46,57,39,0.34);
  color: var(--paper); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  display: grid; place-items: center; cursor: pointer; padding: 0;
  font-family: var(--serif); font-size: 26px; line-height: 1;
  opacity: 0; transition: opacity .4s ease, background .3s ease, border-color .3s ease;
}
.carousel:hover .carousel-arrow { opacity: 1; }
.carousel-arrow:hover { background: var(--wine); border-color: var(--wine); }
.carousel-prev { left: 14px; }
.carousel-next { right: 14px; }
.carousel-dots { position: absolute; left: 0; right: 0; bottom: 0; z-index: 3; display: flex; justify-content: center; align-items: center; }
.carousel-dot {
  width: 44px; height: 44px; padding: 0; margin: 0; cursor: pointer;
  border: 0; background: transparent; position: relative;
  display: flex; align-items: center; justify-content: center;
}
.carousel-dot::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  border: 1px solid rgba(244,237,223,0.9); background: transparent;
  box-shadow: 0 1px 4px rgba(0,0,0,0.25);
  transition: background .3s ease, transform .3s ease;
}
.carousel-dot.is-on::before { background: var(--paper); transform: scale(1.3); }
@media (hover: none) { .carousel-arrow { opacity: 1; } }
@media (prefers-reduced-motion: reduce) { .carousel-slide { transition: none; } }

/* ---------- fold padding (kept last to win the cascade) ---------- */
main .section, main .hero, main .cta-band {
  padding-bottom: calc(var(--section-y) * 0.55 + var(--fold));
}
main .fold { padding-top: calc(var(--fold) * 0.58 + clamp(28px, 4vw, 48px)); }
