/* ============================================================
   VERDE E MAR — Boipeba · Luxo tropical claro
   ============================================================ */
:root {
  --sand: #F7F2E9;
  --sand-2: #EFE7D8;
  --white: #FDFBF7;
  --ink: #24352C;
  --green: #1D3A2E;
  --green-deep: #16291F;
  --gold: #B08D57;
  --gold-soft: rgba(176,141,87,0.4);
  --line: rgba(36,53,44,0.14);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Jost', 'Helvetica Neue', sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { background: var(--sand); color: var(--ink); font-family: var(--sans); font-weight: 300; font-size: 17px; line-height: 1.7; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { color: var(--green); text-decoration: none; transition: color 0.3s ease; }
a:hover { color: var(--gold); }
ul { list-style: none; }
::selection { background: var(--gold-soft); }

.serif { font-family: var(--serif); }
.container { max-width: 1240px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }

/* ---------- kickers & headings ---------- */
.kicker { font-family: var(--sans); font-weight: 400; font-size: 0.72rem; letter-spacing: 0.32em; text-transform: uppercase; color: var(--gold); display: inline-flex; align-items: center; gap: 14px; }
.kicker::before { content: ""; width: 34px; height: 1px; background: var(--gold); }
.h-display { font-family: var(--serif); font-weight: 400; font-size: clamp(2.4rem, 5.4vw, 4.4rem); line-height: 1.08; letter-spacing: 0.01em; color: var(--green); }
.h-section { font-family: var(--serif); font-weight: 400; font-size: clamp(2rem, 4vw, 3.1rem); line-height: 1.12; color: var(--green); text-wrap: pretty; }
.lead { font-size: 1.06rem; font-weight: 300; color: rgba(36,53,44,0.78); max-width: 62ch; text-wrap: pretty; }

/* ---------- buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 12px; font-family: var(--sans); font-weight: 400; font-size: 0.78rem; letter-spacing: 0.22em; text-transform: uppercase; padding: 17px 34px; border: 1px solid transparent; cursor: pointer; transition: all 0.35s ease; white-space: nowrap; }
.btn svg { width: 16px; height: 16px; flex: none; }
.btn--green { background: var(--green); color: var(--sand); }
.btn--green:hover { background: var(--green-deep); color: var(--sand); }
.btn--ghost { background: transparent; color: var(--green); border-color: rgba(36,53,44,0.35); }
.btn--ghost:hover { border-color: var(--green); color: var(--green); }
.btn--light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.55); }
.btn--light:hover { background: rgba(255,255,255,0.12); color: #fff; border-color: #fff; }
.btn--sand { background: var(--sand); color: var(--green); }
.btn--sand:hover { background: #fff; color: var(--green); }

/* ---------- header ---------- */
.nav { position: fixed; inset: 0 0 auto 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 26px clamp(20px, 4vw, 48px); transition: background 0.45s ease, padding 0.45s ease, box-shadow 0.45s ease; }
.nav.scrolled { background: rgba(22,41,31,0.96); backdrop-filter: blur(12px); padding-top: 14px; padding-bottom: 14px; box-shadow: 0 12px 44px -28px rgba(0,0,0,0.55); }
.brand img { height: 19px; width: auto; }
.nav-menu { display: flex; align-items: center; gap: clamp(14px, 1.8vw, 26px); }
.nav-menu a { color: rgba(255,255,255,0.85); font-size: 0.7rem; font-weight: 400; letter-spacing: 0.18em; text-transform: uppercase; padding: 6px 2px; border-bottom: 1px solid transparent; }
.nav-menu a:hover { color: #fff; }
.nav-menu a.active { color: #fff; border-bottom-color: var(--gold); }
.nav-right { display: flex; align-items: center; gap: 18px; }
.lang-switch { display: flex; align-items: center; gap: 2px; }
.lang-switch button { background: none; border: none; color: rgba(255,255,255,0.6); font-family: var(--sans); font-size: 0.66rem; letter-spacing: 0.14em; padding: 4px 5px; cursor: pointer; transition: color 0.3s; }
.lang-switch button:hover { color: #fff; }
.lang-switch button.on { color: var(--gold); }
.lang-switch span { color: rgba(255,255,255,0.3); font-size: 0.6rem; }
.btn--nav { padding: 12px 24px; font-size: 0.68rem; background: rgba(253,251,247,0.14); color: #fff; border: 1px solid rgba(255,255,255,0.4); backdrop-filter: blur(4px); }
.btn--nav:hover { background: var(--sand); color: var(--green); border-color: var(--sand); }
.nav-burger { display: none; background: none; border: none; cursor: pointer; width: 40px; height: 40px; flex-direction: column; align-items: center; justify-content: center; gap: 6px; }
.nav-burger span { width: 24px; height: 1.5px; background: #fff; display: block; transition: transform 0.35s ease, opacity 0.35s ease; }

/* mobile menu */
.mobile-menu { position: fixed; inset: 0; z-index: 99; background: var(--green-deep); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; opacity: 0; pointer-events: none; transition: opacity 0.4s ease; }
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu a { color: var(--sand); font-family: var(--serif); font-size: 1.7rem; padding: 8px 0; }
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .btn { margin-top: 22px; }
body.menu-open { overflow: hidden; }
body.menu-open .nav-burger span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
body.menu-open .nav-burger span:nth-child(2) { opacity: 0; }
body.menu-open .nav-burger span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- heroes ---------- */
.hero { position: relative; min-height: 100vh; display: flex; align-items: flex-end; overflow: hidden; }
.hero--sub { min-height: 64vh; }
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-scrim { position: absolute; inset: 0; background: linear-gradient(to top, rgba(13,25,19,0.72) 0%, rgba(13,25,19,0.18) 45%, rgba(13,25,19,0.3) 100%); }
.hero-content { position: relative; width: 100%; padding: 0 clamp(20px, 4vw, 48px) clamp(56px, 9vh, 110px); max-width: 1240px; margin: 0 auto; color: #fff; }
.hero-kicker { color: rgba(253,251,247,0.85); font-size: 0.72rem; letter-spacing: 0.32em; text-transform: uppercase; display: block; margin-bottom: 22px; }
.hero-title { font-family: var(--serif); font-weight: 400; font-size: clamp(2.6rem, 6vw, 5rem); line-height: 1.05; max-width: 16ch; text-wrap: pretty; }
.hero-sub { margin-top: 20px; font-size: 1.05rem; font-weight: 300; color: rgba(255,255,255,0.88); max-width: 52ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 38px; }
.hero-logo-img { width: min(540px, 76vw); height: auto; margin-bottom: 26px; filter: drop-shadow(0 2px 26px rgba(0,0,0,0.35)); }
.scroll-hint { position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); width: 1px; height: 52px; overflow: hidden; }
.scroll-hint::after { content: ""; position: absolute; left: 0; top: -52px; width: 1px; height: 52px; background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.9)); animation: scrollhint 2.4s ease-in-out infinite; }
@keyframes scrollhint { 0% { top: -52px; } 60% { top: 52px; } 100% { top: 52px; } }

/* ---------- sections ---------- */
.section { padding: clamp(80px, 12vh, 150px) 0; }
.section--tight { padding: clamp(60px, 9vh, 110px) 0; }
.section--sand2 { background: var(--sand-2); }
.section--green { background: var(--green); color: var(--sand); }
.section--green .h-section { color: var(--sand); }
.section--green .lead { color: rgba(247,242,233,0.75); }
.section-head { max-width: 720px; display: flex; flex-direction: column; gap: 20px; margin-bottom: clamp(44px, 6vw, 72px); }

/* gold rule */
.rule { width: 54px; height: 1px; background: var(--gold); border: none; }

/* ---------- intro / stats ---------- */
.intro-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.intro-copy { display: flex; flex-direction: column; gap: 24px; }
.intro-copy p { color: rgba(36,53,44,0.8); font-size: 1.05rem; max-width: 56ch; text-wrap: pretty; }
.intro-em { font-family: var(--serif); font-style: italic; font-size: 1.35rem; color: var(--green); }
.stats { display: flex; gap: clamp(28px, 4vw, 60px); margin-top: 14px; }
.stat b { display: block; font-family: var(--serif); font-weight: 400; font-size: clamp(2.4rem, 3.6vw, 3.4rem); color: var(--green); line-height: 1; }
.stat span { font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); display: block; margin-top: 8px; }
.photo-frame { position: relative; }
.photo-frame img { width: 100%; height: clamp(420px, 58vh, 640px); object-fit: cover; }
.photo-frame::after { content: ""; position: absolute; inset: 18px; border: 1px solid rgba(253,251,247,0.5); pointer-events: none; }
.photo-tag { position: absolute; left: -1px; bottom: 34px; background: var(--green); color: var(--sand); padding: 16px 26px; display: flex; flex-direction: column; line-height: 1.2; }
.photo-tag b { font-family: var(--serif); font-weight: 400; font-size: 1.7rem; }
.photo-tag span { font-size: 0.62rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); margin-top: 4px; }

/* ---------- exclusives grid ---------- */
.excl-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.excl { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: clamp(24px, 3vw, 40px) clamp(18px, 2.4vw, 32px); display: flex; flex-direction: column; gap: 16px; transition: background 0.4s ease; }
.excl:hover { background: rgba(253,251,247,0.7); }
.excl svg { width: 30px; height: 30px; stroke: var(--gold); stroke-width: 1.1; fill: none; }
.excl b { font-family: var(--serif); font-weight: 500; font-size: 1.12rem; color: var(--green); }
.excl span { font-size: 0.85rem; color: rgba(36,53,44,0.66); line-height: 1.55; }

/* ---------- editorial rows ---------- */
.ed-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 90px); align-items: center; padding: clamp(36px, 5vh, 64px) 0; }
.ed-row img { width: 100%; height: clamp(360px, 52vh, 560px); object-fit: cover; }
.ed-row.flip .ed-media { order: 2; }
.ed-copy { display: flex; flex-direction: column; gap: 18px; }
.ed-copy p { color: rgba(36,53,44,0.78); max-width: 52ch; text-wrap: pretty; }
.ed-copy h3 { font-family: var(--serif); font-weight: 400; font-size: clamp(1.7rem, 2.6vw, 2.3rem); color: var(--green); line-height: 1.15; }

/* ---------- preview cards (home) ---------- */
.prev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 28px); }
.prev-card { position: relative; display: block; overflow: hidden; }
.prev-card img { width: 100%; height: clamp(380px, 48vh, 520px); object-fit: cover; transition: transform 1.2s cubic-bezier(0.2, 0.6, 0.2, 1); }
.prev-card:hover img { transform: scale(1.045); }
.prev-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(13,25,19,0.62), transparent 55%); }
.prev-label { position: absolute; left: 26px; bottom: 24px; z-index: 2; color: #fff; display: flex; flex-direction: column; gap: 4px; }
.prev-label b { font-family: var(--serif); font-weight: 400; font-size: 1.5rem; }
.prev-label span { font-size: 0.64rem; letter-spacing: 0.26em; text-transform: uppercase; color: rgba(255,255,255,0.75); }

/* ---------- quote ---------- */
.quote-wrap { max-width: 860px; margin: 0 auto; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 28px; }
.quote-mark { font-family: var(--serif); font-size: 4.5rem; line-height: 0.4; color: var(--gold); }
blockquote.big { font-family: var(--serif); font-weight: 400; font-style: italic; font-size: clamp(1.5rem, 2.8vw, 2.2rem); line-height: 1.45; color: var(--green); text-wrap: pretty; }
.section--green blockquote.big { color: var(--sand); }
.quote-by { font-size: 0.72rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold); }
.quote-badge { display: inline-flex; align-items: center; gap: 8px; font-size: 0.8rem; letter-spacing: 0.08em; color: rgba(36,53,44,0.6); }
.section--green .quote-badge { color: rgba(247,242,233,0.6); }
.stars { color: var(--gold); letter-spacing: 3px; font-size: 0.85rem; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; padding: clamp(100px, 16vh, 180px) 0; text-align: center; color: #fff; }
.cta-band .hero-media img { width: 100%; height: 100%; object-fit: cover; }
.cta-band .hero-scrim { background: rgba(13,25,19,0.62); }
.cta-inner { position: relative; display: flex; flex-direction: column; align-items: center; gap: 26px; padding: 0 20px; }
.cta-inner h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(2.2rem, 4.6vw, 3.6rem); line-height: 1.12; max-width: 20ch; text-wrap: pretty; }
.cta-inner p { color: rgba(255,255,255,0.85); max-width: 46ch; }

/* ---------- suites ---------- */
.room { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(36px, 5vw, 80px); align-items: center; padding: clamp(44px, 7vh, 84px) 0; border-bottom: 1px solid var(--line); }
.room:last-of-type { border-bottom: none; }
.room.flip .room-media { order: 2; }
.room-media img { width: 100%; height: clamp(380px, 55vh, 580px); object-fit: cover; }
.room-copy { display: flex; flex-direction: column; gap: 18px; }
.room-num { font-family: var(--serif); font-style: italic; font-size: 1rem; color: var(--gold); letter-spacing: 0.08em; }
.room-copy h3 { font-family: var(--serif); font-weight: 400; font-size: clamp(2rem, 3.4vw, 2.9rem); color: var(--green); line-height: 1.05; }
.room-type { font-size: 0.7rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold); }
.room-feats { display: flex; flex-direction: column; gap: 0; margin-top: 8px; border-top: 1px solid var(--line); }
.room-feats li { padding: 13px 0; border-bottom: 1px solid var(--line); font-size: 0.95rem; color: rgba(36,53,44,0.8); display: flex; align-items: baseline; gap: 12px; }
.room-feats li::before { content: "—"; color: var(--gold); flex: none; }

/* ---------- gallery ---------- */
.gal-filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.gal-filters button { background: none; border: 1px solid var(--line); color: rgba(36,53,44,0.7); font-family: var(--sans); font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; padding: 11px 22px; cursor: pointer; transition: all 0.3s ease; }
.gal-filters button:hover { border-color: var(--green); color: var(--green); }
.gal-filters button.on { background: var(--green); border-color: var(--green); color: var(--sand); }
.gal-grid { columns: 3; column-gap: 18px; }
.gal-item { break-inside: avoid; margin-bottom: 18px; position: relative; overflow: hidden; cursor: zoom-in; }
.gal-item img { width: 100%; transition: transform 1s ease; }
.gal-item:hover img { transform: scale(1.03); }
.gal-item.hide { display: none; }
.gal-note { margin-top: 34px; font-size: 0.85rem; color: rgba(36,53,44,0.55); font-style: italic; }

/* lightbox */
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(13,25,19,0.96); display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.35s ease; }
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox img { max-width: 90vw; max-height: 86vh; object-fit: contain; }
.lb-btn { position: absolute; background: none; border: none; color: rgba(255,255,255,0.8); cursor: pointer; font-family: var(--sans); transition: color 0.3s; }
.lb-btn:hover { color: #fff; }
.lb-close { top: 26px; right: 34px; font-size: 1.9rem; line-height: 1; }
.lb-prev, .lb-next { top: 50%; transform: translateY(-50%); font-size: 2.4rem; padding: 20px; }
.lb-prev { left: 12px; }
.lb-next { right: 12px; }

/* ---------- experiences ---------- */
.exp-note { font-size: 0.85rem; color: rgba(36,53,44,0.55); font-style: italic; max-width: 60ch; }
.price-tag { font-size: 0.7rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); border: 1px solid var(--gold-soft); padding: 9px 18px; align-self: flex-start; }

/* ---------- tarifas ---------- */
.rate-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 28px); }
.rate-card { background: var(--white); border: 1px solid var(--line); padding: clamp(32px, 3.6vw, 52px) clamp(26px, 3vw, 44px); display: flex; flex-direction: column; gap: 14px; }
.rate-card.hi { background: var(--green); border-color: var(--green); color: var(--sand); }
.rate-season { font-size: 0.68rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold); }
.rate-months { font-size: 0.9rem; color: rgba(36,53,44,0.6); }
.rate-card.hi .rate-months { color: rgba(247,242,233,0.65); }
.rate-value { font-family: var(--serif); font-weight: 400; font-size: clamp(2.1rem, 3vw, 2.9rem); color: var(--green); line-height: 1.1; }
.rate-card.hi .rate-value { color: var(--sand); }
.rate-value small { font-family: var(--sans); font-size: 0.85rem; color: inherit; opacity: 0.65; }
.rate-from { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; opacity: 0.6; }
.rate-note { font-size: 0.88rem; line-height: 1.6; color: rgba(36,53,44,0.7); }
.rate-card.hi .rate-note { color: rgba(247,242,233,0.75); }
.incl-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 3vw, 40px); }
.incl-col { background: var(--white); border: 1px solid var(--line); padding: clamp(30px, 3.4vw, 48px); }
.incl-col h3 { font-family: var(--serif); font-weight: 400; font-size: 1.6rem; color: var(--green); margin-bottom: 20px; }
.incl-col li { padding: 11px 0; border-bottom: 1px solid var(--line); font-size: 0.95rem; color: rgba(36,53,44,0.8); display: flex; gap: 12px; align-items: baseline; }
.incl-col li:last-child { border-bottom: none; }
.incl-col li::before { content: "—"; color: var(--gold); flex: none; }
.policy-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(18px, 2.4vw, 36px); margin-top: clamp(40px, 5vw, 64px); padding-top: clamp(30px, 4vw, 48px); border-top: 1px solid var(--line); }
.policy b { display: block; font-family: var(--serif); font-weight: 500; font-size: 1.2rem; color: var(--green); margin-bottom: 6px; }
.policy span { font-size: 0.88rem; color: rgba(36,53,44,0.66); line-height: 1.55; }

/* ---------- localização / rotas ---------- */
.route-tabs { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }
.route-tabs button { background: none; border: 1px solid var(--line); color: rgba(36,53,44,0.72); font-family: var(--sans); font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; padding: 12px 20px; cursor: pointer; transition: all 0.3s ease; display: inline-flex; align-items: center; gap: 10px; }
.route-tabs button.on { background: var(--green); border-color: var(--green); color: var(--sand); }
.route-panel { display: none; background: var(--white); border: 1px solid var(--line); padding: clamp(30px, 4vw, 52px); }
.route-panel.on { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 60px); animation: fadein 0.5s ease; }
@keyframes fadein { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.route-info { display: flex; flex-direction: column; gap: 16px; }
.route-info h3 { font-family: var(--serif); font-weight: 400; font-size: 1.9rem; color: var(--green); line-height: 1.15; }
.route-info .rt-em { font-family: var(--serif); font-style: italic; font-size: 1.1rem; color: var(--gold); }
.route-meta { display: flex; flex-wrap: wrap; gap: 12px; }
.route-meta span { font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--green); border: 1px solid var(--line); padding: 8px 14px; }
.route-steps { counter-reset: step; display: flex; flex-direction: column; }
.route-steps li { counter-increment: step; display: flex; gap: 18px; padding: 15px 0; border-bottom: 1px solid var(--line); font-size: 0.95rem; color: rgba(36,53,44,0.8); align-items: baseline; }
.route-steps li:last-child { border-bottom: none; }
.route-steps li::before { content: counter(step, decimal-leading-zero); font-family: var(--serif); font-style: italic; color: var(--gold); font-size: 1.05rem; flex: none; }
.route-premium { border: 1px solid var(--gold-soft); background: rgba(176,141,87,0.06); }
.map-frame { position: relative; }
.map-frame iframe { width: 100%; height: clamp(380px, 50vh, 520px); border: 0; filter: saturate(0.82); }
.map-cta { margin-top: 18px; font-size: 0.9rem; }

/* ---------- depoimentos ---------- */
.testis { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 3vw, 40px); }
.testi { background: var(--white); border: 1px solid var(--line); padding: clamp(34px, 4vw, 56px); display: flex; flex-direction: column; gap: 22px; }
.testi p { font-family: var(--serif); font-style: italic; font-size: 1.3rem; line-height: 1.5; color: var(--green); text-wrap: pretty; }
.testi-by { display: flex; align-items: center; justify-content: space-between; gap: 14px; border-top: 1px solid var(--line); padding-top: 20px; }
.testi-by b { font-weight: 400; font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink); }
.testi-by small { display: block; font-size: 0.74rem; color: rgba(36,53,44,0.55); letter-spacing: 0.06em; margin-top: 3px; }
.testi-src { text-align: right; font-size: 0.78rem; color: rgba(36,53,44,0.65); }

/* ---------- reserva ---------- */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 44px); }
.step-card { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 14px; padding: clamp(26px, 3vw, 44px) 18px; }
.step-num { font-family: var(--serif); font-style: italic; font-size: 2.6rem; color: var(--gold); line-height: 1; }
.step-card b { font-family: var(--serif); font-weight: 500; font-size: 1.3rem; color: var(--green); }
.step-card span { font-size: 0.92rem; color: rgba(36,53,44,0.68); max-width: 30ch; }
.trust-strip { display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(20px, 4vw, 56px); margin-top: clamp(36px, 5vw, 60px); padding-top: clamp(28px, 4vw, 44px); border-top: 1px solid var(--line); }
.trust { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(36,53,44,0.62); display: flex; align-items: center; gap: 10px; }
.trust::before { content: ""; width: 5px; height: 5px; background: var(--gold); border-radius: 50%; }
.btn--giant { padding: 24px 52px; font-size: 0.88rem; }

/* ---------- footer ---------- */
.footer { background: var(--green-deep); color: rgba(247,242,233,0.8); padding: clamp(64px, 9vh, 110px) 0 40px; }
.footer a { color: rgba(247,242,233,0.75); }
.footer a:hover { color: var(--gold); }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: clamp(32px, 4vw, 64px); padding-bottom: clamp(40px, 5vw, 64px); border-bottom: 1px solid rgba(247,242,233,0.14); }
.footer-brand img { height: 18px; width: auto; margin-bottom: 18px; }
.footer-brand p { font-family: var(--serif); font-style: italic; font-size: 1.05rem; color: rgba(247,242,233,0.65); max-width: 30ch; }
.footer h4 { font-size: 0.66rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); font-weight: 400; margin-bottom: 18px; }
.footer li { margin-bottom: 10px; font-size: 0.9rem; font-weight: 300; }
.footer-bottom { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; padding-top: 30px; font-size: 0.78rem; color: rgba(247,242,233,0.45); }
.footer-bottom .lang-switch button { color: rgba(247,242,233,0.5); }
.footer-bottom .lang-switch button.on { color: var(--gold); }

/* ---------- floating whatsapp ---------- */
.wa-float { position: fixed; right: 26px; bottom: 26px; z-index: 90; width: 56px; height: 56px; border-radius: 50%; background: var(--green); color: var(--sand); display: flex; align-items: center; justify-content: center; box-shadow: 0 14px 34px -12px rgba(22,41,31,0.55); border: 1px solid rgba(247,242,233,0.25); transition: transform 0.3s ease, background 0.3s ease; }
.wa-float:hover { transform: translateY(-3px); background: var(--green-deep); color: var(--sand); }
.wa-float svg { width: 24px; height: 24px; fill: currentColor; }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 1s ease, transform 1s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } .scroll-hint { display: none; } }

/* ---------- responsive ---------- */
@media (max-width: 1080px) {
  .nav-menu { display: none; }
  .nav-burger { display: flex; }
  .nav-right .lang-switch { display: none; }
  .excl-grid { grid-template-columns: repeat(2, 1fr); }
  .gal-grid { columns: 2; }
}
@media (max-width: 820px) {
  .intro-grid, .ed-row, .room, .incl-grid, .route-panel.on, .testis { grid-template-columns: 1fr; }
  .ed-row.flip .ed-media, .room.flip .room-media { order: 0; }
  .prev-grid, .rate-cards, .steps-grid { grid-template-columns: 1fr; }
  .policy-strip { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero--sub { min-height: 54vh; }
  .photo-frame img { height: 380px; }
  .btn--nav { display: none; }
}
@media (max-width: 560px) {
  .gal-grid { columns: 1; }
  .stats { flex-wrap: wrap; gap: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
}
