/* ============================================================
   HOME.CSS — light theme, all original sections + new additions
   ============================================================ */

/* ——— SHARED UTILITIES ——— */
.h-section-label {
  font-family:var(--body); font-size:9px; font-weight:600; letter-spacing:3px; text-transform:uppercase;
  color:var(--green); margin-bottom:14px; display:flex; align-items:center; gap:10px;
}
.h-section-label::before { content:''; display:block; width:24px; height:1px; background:var(--green); opacity:0.5; flex-shrink:0; }

.h-section-title { font-family:var(--serif); font-size:clamp(32px,4.5vw,56px); font-weight:400; color:var(--text-primary); line-height:1.06; margin-bottom:18px; }
.h-section-title em { color:var(--green); font-style:italic; }
.h-section-title--left { text-align:left; }
.h-section-intro { font-size:15px; color:var(--text-secondary); max-width:520px; line-height:1.75; margin-bottom:44px; }

.h-btn { display:inline-flex; align-items:center; gap:8px; padding:13px 26px; border-radius:3px; font-family:var(--body); font-size:12px; font-weight:500; letter-spacing:0.8px; text-decoration:none; transition:all .2s ease; white-space:nowrap; cursor:pointer; border:none; }
.h-btn--primary { background:var(--green); color:#fff; }
.h-btn--primary:hover { background:var(--green-lt); transform:translateY(-1px); }
.h-btn--ghost { background:transparent; color:var(--text-primary); border:1.5px solid var(--border-md); }
.h-btn--ghost:hover { border-color:var(--green); color:var(--green); }
.h-btn--outline { background:transparent; color:var(--green); border:1.5px solid var(--green); }
.h-btn--outline:hover { background:var(--green-dim); }
.h-btn--sm { padding:10px 20px; font-size:11px; }
.h-btn--full { width:100%; justify-content:center; }
/* legacy gold aliases — map to green */
.h-btn--gold { background:var(--green); color:#fff; }
.h-btn--gold:hover { background:var(--green-lt); transform:translateY(-1px); }

.h-link-arrow { display:inline-flex; align-items:center; gap:6px; font-family:var(--body); font-size:13px; font-weight:500; color:var(--green); text-decoration:none; transition:gap .2s ease,color .2s ease; }
.h-link-arrow:hover { gap:10px; color:var(--green-lt); }

[data-reveal] { opacity:0; transform:translateY(22px); transition:opacity .65s ease,transform .65s ease; }
[data-reveal].is-visible { opacity:1; transform:translateY(0); }
[data-reveal-delay="1"] { transition-delay:.1s; }
[data-reveal-delay="2"] { transition-delay:.2s; }
[data-reveal-delay="3"] { transition-delay:.3s; }
[data-reveal-delay="4"] { transition-delay:.4s; }


/* ============================================================
   HERO — keeps the fullbleed video/image structure
   ============================================================ */
.h-hero { position:relative; min-height:100vh; display:flex; flex-direction:column; background:var(--surface-2); overflow:hidden; }
.h-hero__bg { position:absolute; inset:0; z-index:0; }
.h-hero__video-wrap { position:absolute; inset:0; overflow:hidden; }
.h-hero__video { width:100%; height:100%; object-fit:cover; object-position:center 40%; opacity:0.6; }
.h-hero__video:not([src]) { display:none; }
.h-hero__video-wrap::after { content:''; position:absolute; inset:0; background:radial-gradient(ellipse 120% 60% at 60% 70%,rgba(45,106,79,.06) 0%,transparent 65%),linear-gradient(180deg,rgba(0,0,0,.18) 0%,rgba(0,0,0,.08) 40%,rgba(0,0,0,.55) 100%); }
.h-hero__grain { position:absolute; inset:0; background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E"); opacity:.25; pointer-events:none; }
.h-hero__overlay { position:absolute; inset:0; background:linear-gradient(105deg,rgba(8,8,8,.78) 0%,rgba(8,8,8,.42) 50%,rgba(8,8,8,.18) 100%); z-index:1; }
.h-hero__overlay::after { content:''; position:absolute; bottom:0; left:0; right:0; height:260px; background:linear-gradient(0deg,rgba(255,255,255,.95) 0%,transparent 100%); }

.h-hero__inner { position:relative; z-index:2; flex:1; display:flex; align-items:flex-end; padding-top:calc(var(--nav-h) + 80px); padding-bottom:80px; }
.h-hero__content { max-width:660px; }
.h-hero__eyebrow { display:flex; align-items:center; gap:14px; font-family:var(--body); font-size:10px; font-weight:500; letter-spacing:3px; text-transform:uppercase; color:rgba(255,255,255,.8); margin-bottom:22px; }
.h-hero__eyebrow-line { display:block; width:22px; height:1px; background:rgba(255,255,255,.6); opacity:.8; }
.h-hero__title { font-family:var(--serif); font-size:clamp(48px,7.5vw,96px); font-weight:400; color:#fff; line-height:.93; letter-spacing:-1px; margin-bottom:26px; }
.h-hero__title em { color:rgba(255,255,255,.8); font-style:italic; display:block; }
.h-hero__sub { font-family:var(--body); font-size:16px; font-weight:400; color:rgba(255,255,255,.72); line-height:1.8; margin-bottom:24px; max-width:460px; }

/* Search bar in hero */
.h-hero__search { margin-bottom:28px; max-width:520px; }
.h-search-bar { display:flex; align-items:center; background:#fff; border-radius:4px; overflow:hidden; box-shadow:0 4px 20px rgba(0,0,0,.22); }
.h-search-bar__icon { margin-left:14px; color:var(--text-muted); flex-shrink:0; }
.h-search-bar__input { flex:1; padding:13px 12px; border:none; outline:none; font-family:var(--body); font-size:14px; color:var(--text-primary); background:transparent; }
.h-search-bar__input::placeholder { color:var(--text-muted); }
.h-search-bar__btn { padding:13px 22px; background:var(--green); color:#fff; font-family:var(--body); font-size:14px; font-weight:500; border:none; cursor:pointer; transition:background var(--t-fast); flex-shrink:0; }
.h-search-bar__btn:hover { background:var(--green-lt); }

.h-hero__ctas { display:flex; gap:12px; flex-wrap:wrap; margin-bottom:28px; }
.h-hero__trust { display:flex; align-items:center; gap:10px; flex-wrap:wrap; font-family:var(--body); font-size:11px; color:rgba(255,255,255,.5); letter-spacing:.5px; }
.h-hero__trust-dot { opacity:.35; }

.h-hero__scroll { position:absolute; right:32px; bottom:130px; display:flex; flex-direction:column; align-items:center; gap:10px; z-index:2; }
.h-hero__scroll-line { width:1px; height:56px; background:linear-gradient(180deg,transparent,rgba(45,106,79,.6)); animation:scrollPulse 2s ease infinite; }
.h-hero__scroll span { font-family:var(--body); font-size:9px; letter-spacing:2px; text-transform:uppercase; color:rgba(45,106,79,.55); writing-mode:vertical-rl; }
@keyframes scrollPulse { 0%,100%{opacity:.4;transform:scaleY(1);} 50%{opacity:1;transform:scaleY(1.1);} }

/* Stats bar — sits on the white transition */
.h-hero__stats { position:relative; z-index:2; background:#fff; border-top:1px solid var(--border); box-shadow:0 -1px 0 var(--border); }
.h-stats-bar { display:grid; grid-template-columns:repeat(4,1fr); }
.h-stat { padding:24px 28px; border-right:1px solid var(--border); display:flex; flex-direction:column; gap:4px; }
.h-stat:last-child { border-right:none; }
.h-stat__num { font-family:var(--serif); font-size:28px; font-weight:400; color:var(--green); line-height:1; }
.h-stat__num small { font-size:16px; opacity:.7; }
.h-stat__label { font-family:var(--body); font-size:11px; color:var(--text-muted); letter-spacing:.4px; }


/* ============================================================
   EXPLORE EAST AFRICA (from screenshot)
   ============================================================ */
.h-explore { padding:56px 0 48px; background:var(--base); border-bottom:1px solid var(--border); }
.h-explore__title { font-family:var(--serif); font-size:26px; font-weight:700; margin-bottom:22px; }
.h-explore__grid { display:grid; grid-template-columns:repeat(5,1fr); gap:12px; margin-bottom:18px; }
.h-explore__card { position:relative; border-radius:8px; overflow:hidden; text-decoration:none; display:block; aspect-ratio:3/4; box-shadow:0 2px 10px rgba(0,0,0,.09); transition:transform .3s ease,box-shadow .3s ease; }
.h-explore__card:hover { transform:translateY(-3px); box-shadow:0 8px 24px rgba(0,0,0,.14); }
.h-explore__card-img { position:absolute; inset:0; background-size:cover; background-position:center; transition:transform .4s ease; }
.h-explore__card:hover .h-explore__card-img { transform:scale(1.06); }
.h-explore__card::after { content:''; position:absolute; inset:0; background:linear-gradient(to top,rgba(0,0,0,.72) 0%,rgba(0,0,0,.08) 55%,transparent 100%); }
.h-explore__card-body { position:absolute; bottom:0; left:0; right:0; padding:16px 14px; z-index:2; }
.h-explore__card-name { font-family:var(--serif); font-size:17px; font-weight:700; color:#fff; line-height:1.1; margin-bottom:2px; }
.h-explore__card-sub { font-family:var(--body); font-size:11px; color:rgba(255,255,255,.6); }
.h-explore__more { }


/* ============================================================
   WHY EAST AFRICA
   ============================================================ */
.h-why { padding:80px 0 72px; background:var(--surface-1); border-bottom:1px solid var(--border); }
.h-why .h-section-title { text-align:center; margin:0 auto 12px; }
.h-why .h-section-label { justify-content:center; }
.h-why .h-section-intro { text-align:center; margin:0 auto 48px; }
.h-why__grid { display:grid; grid-template-columns:repeat(4,1fr); gap:1px; background:var(--border); border:1px solid var(--border); border-radius:6px; overflow:hidden; margin-bottom:36px; }
.h-why__card { background:var(--base); padding:36px 28px; transition:background .3s ease; }
.h-why__card:hover { background:var(--surface-1); }
.h-why__card-num { font-family:var(--serif); font-size:11px; color:rgba(45,106,79,.3); letter-spacing:2px; margin-bottom:18px; }
.h-why__card-icon { width:44px; height:44px; margin-bottom:18px; color:var(--green); }
.h-why__card-icon svg { width:100%; height:100%; }
.h-why__card-title { font-family:var(--serif); font-size:20px; font-weight:400; color:var(--text-primary); margin-bottom:4px; line-height:1.1; }
.h-why__card-sub { font-family:var(--body); font-size:10px; letter-spacing:1.5px; text-transform:uppercase; color:var(--green); margin-bottom:12px; }
.h-why__card-body { font-size:13px; color:var(--text-muted); line-height:1.75; }
.h-why__footer { text-align:center; padding-top:8px; }


/* ============================================================
   DESTINATIONS SHOWCASE
   ============================================================ */
.h-dest { padding:80px 0 0; background:var(--base); }
.h-dest .wrap { margin-bottom:36px; }
.h-dest .h-section-title { text-align:center; }
.h-dest .h-section-label { justify-content:center; }
.h-dest__grid { display:grid; grid-template-columns:repeat(4,1fr); min-height:480px; }
.h-dest__card { position:relative; overflow:hidden; display:block; text-decoration:none; cursor:pointer; }
.h-dest__card-bg { position:absolute; inset:0; transition:transform .6s cubic-bezier(.4,0,.2,1); }
.h-dest__card:hover .h-dest__card-bg { transform:scale(1.06); }
.h-dest__card-img { position:absolute; inset:0; background-size:cover; background-position:center; filter:brightness(.65); transition:filter .4s ease; }
.h-dest__card:hover .h-dest__card-img { filter:brightness(.5); }
.h-dest__card-overlay { position:absolute; inset:0; background:linear-gradient(180deg,transparent 30%,rgba(0,0,0,.88) 100%); z-index:1; }
.h-dest__card-body { position:absolute; bottom:0; left:0; right:0; z-index:2; padding:24px 22px; }
.h-dest__card-flag { display:block; font-size:18px; margin-bottom:5px; }
.h-dest__card-name { font-family:var(--serif); font-size:24px; font-weight:400; color:#fff; margin-bottom:5px; line-height:1.1; }
.h-dest__card-parks { font-family:var(--body); font-size:11px; color:rgba(255,255,255,.5); line-height:1.5; margin-bottom:12px; letter-spacing:.3px; }
.h-dest__card-cta { font-family:var(--body); font-size:11px; font-weight:500; letter-spacing:1px; color:rgba(255,255,255,.7); display:inline-block; opacity:0; transform:translateY(6px); transition:opacity .3s ease,transform .3s ease; }
.h-dest__card:hover .h-dest__card-cta { opacity:1; transform:translateY(0); }
.h-dest__card-bg--tz { background:#2a1a08; }
.h-dest__card-bg--ke { background:#0f1f0f; }
.h-dest__card-bg--ug { background:#0f1a1a; }
.h-dest__card-bg--zz { background:#081520; }
.h-dest__footer { padding:32px 0 72px; text-align:center; }


/* ============================================================
   POPULAR GUIDES + MEET REGAN (from screenshot)
   ============================================================ */
.h-mid { padding:72px 0; background:var(--surface-1); border-top:1px solid var(--border); border-bottom:1px solid var(--border); }
.h-mid__grid { display:grid; grid-template-columns:1fr 1.7fr; gap:60px; align-items:start; }

.h-guides__title { font-family:var(--serif); font-size:22px; font-weight:700; margin-bottom:20px; }
.h-guides__list { margin-bottom:18px; }
.h-guide-item { border-bottom:1px solid var(--border); }
.h-guide-item:first-child { border-top:1px solid var(--border); }
.h-guide-link { display:flex; align-items:center; gap:13px; padding:13px 0; text-decoration:none; }
.h-guide-link:hover .h-guide-text strong { color:var(--green); }
.h-guide-img { width:52px; height:40px; border-radius:4px; background-size:cover; background-position:center; flex-shrink:0; }
.h-guide-text { display:flex; flex-direction:column; gap:2px; }
.h-guide-text strong { font-family:var(--body); font-size:13px; font-weight:500; color:var(--text-primary); line-height:1.35; transition:color var(--t-fast); }
.h-guide-text span { font-size:12px; color:var(--text-muted); }

.h-regan__inner { display:grid; grid-template-columns:1fr auto; gap:28px; align-items:start; }
.h-regan__greeting { font-family:var(--serif); font-size:26px; font-weight:700; color:var(--text-primary); margin-bottom:3px; }
.h-regan__role { font-family:var(--body); font-size:13px; font-weight:500; color:var(--green); margin-bottom:14px; }
.h-regan__bio { font-size:14px; color:var(--text-secondary); line-height:1.7; margin-bottom:10px; max-width:400px; }
.h-regan__stats { display:flex; gap:22px; margin:18px 0 20px; flex-wrap:wrap; }
.h-regan__stat { display:flex; flex-direction:column; gap:2px; text-align:center; }
.h-regan__stat strong { font-family:var(--body); font-size:13px; font-weight:600; color:var(--text-primary); }
.h-regan__stat span { font-size:11px; color:var(--text-muted); }
.h-regan__photo-col { display:flex; flex-direction:column; gap:13px; flex-shrink:0; width:150px; }
.h-regan__photo-wrap { width:120px; height:120px; border-radius:50%; overflow:hidden; border:3px solid var(--surface-3); margin:0 auto; }
.h-regan__photo { width:100%; height:100%; object-fit:cover; }
.h-regan__quote-box { background:var(--surface-2); border-left:3px solid var(--green); border-radius:4px; padding:12px 13px; }
.h-regan__quote-box p { font-size:12px; color:var(--text-secondary); line-height:1.65; font-style:italic; }


/* ============================================================
   WHEN TO VISIT
   ============================================================ */
.h-when { padding:80px 0; background:var(--base); border-bottom:1px solid var(--border); }
.h-when .h-section-title { text-align:center; }
.h-when .h-section-label { justify-content:center; }
.h-when .h-section-intro { text-align:center; margin:0 auto 28px; }
.h-when__toggle { display:flex; align-items:center; justify-content:center; gap:10px; flex-wrap:wrap; margin-bottom:32px; row-gap:12px; }
.h-toggle-btn { font-family:var(--body); font-size:11px; font-weight:500; letter-spacing:1.5px; text-transform:uppercase; color:var(--text-muted); padding:8px 18px; border-radius:3px; border:1px solid transparent; background:none; cursor:pointer; transition:all .2s; }
.h-toggle-btn.active { color:var(--green); border-color:var(--green); background:var(--green-dim); }
.h-toggle-note { width:100%; text-align:center; font-size:11px; color:var(--text-muted); font-style:italic; }
.h-when__tabs { display:grid; grid-template-columns:repeat(12,1fr); border:1px solid var(--border); border-radius:4px; overflow:hidden; margin-bottom:2px; }
.h-month-tab { padding:11px 4px; font-family:var(--body); font-size:11px; font-weight:500; letter-spacing:.5px; color:var(--text-muted); background:var(--surface-1); border:none; border-right:1px solid var(--border); cursor:pointer; transition:all .2s; text-align:center; }
.h-month-tab:last-child { border-right:none; }
.h-month-tab:hover { background:var(--surface-2); color:var(--text-primary); }
.h-month-tab.active { background:var(--green); color:#fff; font-weight:600; }
.h-month-tab--peak { color:rgba(45,106,79,.7); }
.h-when__panel { background:var(--surface-1); border:1px solid var(--border); border-top:none; border-radius:0 0 4px 4px; padding:28px 32px; min-height:170px; margin-bottom:28px; }
.h-month-info { display:grid; grid-template-columns:1fr 1fr 1fr 1.2fr; gap:28px; align-items:start; }
.h-month-info__label { font-family:var(--body); font-size:9px; letter-spacing:2px; text-transform:uppercase; color:var(--green); margin-bottom:7px; }
.h-month-info__value { font-family:var(--body); font-size:13px; color:var(--text-primary); line-height:1.5; }
.h-crowd-bars { display:flex; gap:4px; margin-top:2px; }
.h-crowd-bar { height:13px; width:26px; background:var(--surface-3); border-radius:2px; transition:background .3s; }
.h-crowd-bar.filled { background:var(--green); }
.h-month-trips { display:flex; flex-direction:column; gap:7px; }
.h-month-trip { font-size:12px; color:var(--text-secondary); text-decoration:none; display:flex; align-items:center; gap:6px; transition:color .2s; }
.h-month-trip::before { content:'→'; color:var(--green); font-size:11px; }
.h-month-trip:hover { color:var(--green); }
.h-when__badge { display:flex; align-items:center; justify-content:center; gap:10px; font-family:var(--body); font-size:11px; color:var(--text-muted); letter-spacing:.5px; }
.h-badge-dot { width:6px; height:6px; background:var(--green); border-radius:50%; flex-shrink:0; animation:badgePulse 2s ease infinite; }
@keyframes badgePulse { 0%,100%{opacity:1;transform:scale(1);} 50%{opacity:.5;transform:scale(.8);} }


/* ============================================================
   FEATURED ITINERARIES
   ============================================================ */
.h-itins { padding:80px 0; background:var(--surface-1); border-bottom:1px solid var(--border); }
.h-itins .h-section-title { text-align:center; }
.h-itins .h-section-label { justify-content:center; }
.h-itins .h-section-intro { text-align:center; margin:0 auto 44px; }
.h-itins__grid { display:grid; grid-template-columns:repeat(4,1fr); gap:1px; background:var(--border); border:1px solid var(--border); border-radius:6px; overflow:hidden; margin-bottom:36px; }
.h-itin-card { background:var(--base); display:flex; flex-direction:column; transition:background .3s ease; }
.h-itin-card:hover { background:var(--surface-1); }
.h-itin-card__media { position:relative; height:200px; overflow:hidden; flex-shrink:0; }
.h-itin-card__img { width:100%; height:100%; background-size:cover; background-position:center; transition:transform .5s ease; filter:brightness(.8); }
.h-itin-card:hover .h-itin-card__img { transform:scale(1.05); filter:brightness(.7); }
.h-itin-card__badge { position:absolute; top:12px; right:12px; background:rgba(255,255,255,.92); color:var(--text-primary); font-family:var(--body); font-size:10px; font-weight:600; letter-spacing:1px; padding:4px 10px; border-radius:2px; }
.h-itin-card__body { padding:22px; flex:1; display:flex; flex-direction:column; }
.h-itin-card__title { font-family:var(--serif); font-size:19px; font-weight:400; color:var(--text-primary); margin-bottom:5px; line-height:1.2; }
.h-itin-card__meta { font-family:var(--body); font-size:10px; letter-spacing:1.2px; text-transform:uppercase; color:var(--green); margin-bottom:11px; }
.h-itin-card__desc { font-size:13px; color:var(--text-muted); line-height:1.7; flex:1; margin-bottom:18px; }
.h-itin-card__cta { font-family:var(--body); font-size:11px; font-weight:500; letter-spacing:1px; color:var(--green); text-decoration:none; display:inline-block; margin-top:auto; transition:color .2s,letter-spacing .2s; }
.h-itin-card__cta:hover { color:var(--green-lt); letter-spacing:1.5px; }
.h-itins__footer { display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:14px; }
.h-itins__urgency { display:flex; align-items:center; gap:6px; font-family:var(--body); font-size:12px; color:var(--text-muted); font-style:italic; }


/* ============================================================
   COMFORT STANDARDS
   ============================================================ */
.h-comfort { padding:80px 0; background:var(--base); border-bottom:1px solid var(--border); }
.h-comfort__inner { display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:center; }
.h-comfort__intro { font-size:15px; color:var(--text-secondary); line-height:1.75; margin-bottom:28px; max-width:480px; }
.h-comfort__list { list-style:none; padding:0; margin:0 0 24px; display:flex; flex-direction:column; gap:14px; }
.h-comfort__list li { display:flex; align-items:flex-start; gap:13px; font-size:14px; color:var(--text-secondary); line-height:1.65; padding-bottom:14px; border-bottom:1px solid var(--border); }
.h-comfort__list li:last-child { border-bottom:none; padding-bottom:0; }
.h-comfort__icon { font-size:16px; flex-shrink:0; width:22px; margin-top:1px; }
.h-comfort__kit { margin-bottom:24px; border:1px solid var(--border); border-radius:4px; overflow:hidden; }
.h-comfort__kit-trigger { display:flex; align-items:center; gap:9px; width:100%; padding:13px 16px; background:var(--surface-1); font-family:var(--body); font-size:13px; font-weight:500; color:var(--green); cursor:pointer; list-style:none; transition:background .2s; }
.h-comfort__kit-trigger:hover { background:var(--surface-2); }
.h-comfort__kit-trigger svg { transition:transform .25s; stroke:var(--green); }
.h-comfort__kit[open] .h-comfort__kit-trigger svg { transform:rotate(180deg); }
.h-comfort__kit-body { padding:18px 16px; background:var(--surface-1); }
.h-kit-items { display:grid; grid-template-columns:1fr 1fr; gap:10px; }
.h-kit-item { display:flex; align-items:center; gap:9px; font-size:13px; color:var(--text-secondary); }
.h-kit-item span:first-child { font-size:15px; width:20px; flex-shrink:0; }
.h-comfort__visual { position:relative; }
.h-comfort__img-wrap { position:relative; border-radius:6px; overflow:hidden; aspect-ratio:4/5; }
.h-comfort__img { width:100%; height:100%; background-size:cover; background-position:center; filter:brightness(.85); transition:transform .6s ease; }
.h-comfort__visual:hover .h-comfort__img { transform:scale(1.03); }
.h-comfort__img-badge { position:absolute; bottom:22px; right:-18px; background:var(--green); color:#fff; padding:14px 18px; border-radius:3px; display:flex; flex-direction:column; gap:2px; box-shadow:0 8px 28px rgba(0,0,0,.18); }
.h-comfort__img-badge-num { font-family:var(--serif); font-size:26px; font-weight:700; line-height:1; }
.h-comfort__img-badge-label { font-family:var(--body); font-size:10px; font-weight:500; letter-spacing:1px; text-transform:uppercase; white-space:nowrap; }


/* ============================================================
   USPs
   ============================================================ */
.h-usp { padding:80px 0; background:var(--surface-1); border-bottom:1px solid var(--border); }
.h-usp .h-section-title { text-align:center; }
.h-usp .h-section-label { justify-content:center; }
.h-usp__grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:var(--border); border:1px solid var(--border); border-radius:6px; overflow:hidden; margin-bottom:44px; }
.h-usp__item { background:var(--base); padding:32px 26px; display:flex; gap:18px; align-items:flex-start; transition:background .3s; }
.h-usp__item:hover { background:var(--surface-1); }
.h-usp__num { font-family:var(--serif); font-size:32px; font-weight:400; color:rgba(45,106,79,.15); line-height:1; flex-shrink:0; width:42px; }
.h-usp__title { font-family:var(--serif); font-size:17px; font-weight:400; color:var(--text-primary); margin-bottom:7px; line-height:1.2; }
.h-usp__desc { font-size:13px; color:var(--text-muted); line-height:1.7; }
.h-usp__cta { text-align:center; }


/* ============================================================
   TESTIMONIALS
   ============================================================ */
.h-trust { padding:80px 0; background:var(--base); border-bottom:1px solid var(--border); }
.h-trust .h-section-title { text-align:center; }
.h-trust .h-section-label { justify-content:center; }
.h-trust__stats { display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:var(--border); border:1px solid var(--border); border-radius:6px; overflow:hidden; margin-bottom:44px; }
.h-trust__stat { background:var(--surface-1); padding:26px; text-align:center; }
.h-trust__stat-num { display:block; font-family:var(--serif); font-size:34px; font-weight:400; color:var(--green); line-height:1; margin-bottom:5px; }
.h-trust__stat-label { font-family:var(--body); font-size:11px; color:var(--text-muted); letter-spacing:.5px; }
.h-testimonials { position:relative; overflow:hidden; }
.h-testimonials__track { display:flex; transition:transform .45s cubic-bezier(.4,0,.2,1); }
.h-testimonial { min-width:100%; padding:44px 52px; background:var(--surface-1); border:1px solid var(--border); border-radius:6px; text-align:center; }
.h-testimonial__stars { font-size:18px; color:var(--green); letter-spacing:4px; margin-bottom:18px; }
.h-testimonial__quote { font-family:var(--serif); font-size:clamp(16px,2.2vw,21px); font-weight:400; font-style:italic; color:var(--text-primary); line-height:1.6; max-width:660px; margin:0 auto 18px; }
.h-testimonial__quote::before { content:'\201C'; }
.h-testimonial__quote::after { content:'\201D'; }
.h-testimonial__cite { font-family:var(--body); font-size:11px; letter-spacing:1.5px; text-transform:uppercase; color:var(--green); font-style:normal; }
.h-testimonials__controls { display:flex; align-items:center; justify-content:center; gap:14px; margin-top:22px; }
.h-testi-btn { width:38px; height:38px; border-radius:50%; border:1px solid var(--border-md); background:var(--base); color:var(--text-secondary); display:flex; align-items:center; justify-content:center; cursor:pointer; transition:all .2s; }
.h-testi-btn:hover { border-color:var(--green); color:var(--green); }
.h-testi-dots { display:flex; gap:8px; align-items:center; }
.h-testi-dot { width:6px; height:6px; border-radius:50%; background:var(--surface-3); cursor:pointer; transition:all .2s; border:none; padding:0; }
.h-testi-dot.active { background:var(--green); transform:scale(1.3); }


/* ============================================================
   FAQ (from screenshot)
   ============================================================ */
.h-faq { padding:72px 0; background:var(--surface-1); border-bottom:1px solid var(--border); }
.h-faq .h-section-title { text-align:center; }
.h-faq .h-section-label { justify-content:center; }
.h-faq__grid { display:grid; grid-template-columns:1fr 1fr; gap:0 40px; margin-bottom:24px; margin-top:36px; }
.h-faq__col { display:flex; flex-direction:column; }
.h-faq-item { border-bottom:1px solid var(--border); }
.h-faq-item:first-child { border-top:1px solid var(--border); }
.h-faq-item__q { list-style:none; display:flex; align-items:center; justify-content:space-between; padding:15px 0; font-family:var(--body); font-size:14px; font-weight:500; color:var(--text-primary); cursor:pointer; gap:12px; user-select:none; transition:color var(--t-fast); }
.h-faq-item__q:hover { color:var(--green); }
.h-faq-item__q::-webkit-details-marker { display:none; }
.h-faq-item__q::after { content:'+'; font-size:20px; font-weight:300; color:var(--text-muted); flex-shrink:0; transition:transform .2s ease; line-height:1; }
.h-faq-item[open] .h-faq-item__q::after { transform:rotate(45deg); }
.h-faq-item__a { padding:0 0 15px; }
.h-faq-item__a p { font-size:13px; color:var(--text-secondary); line-height:1.75; }
.h-faq-item__a a { color:var(--green); text-decoration:underline; }
.h-faq__more { text-align:center; }


/* ============================================================
   LEAD CAPTURE FORM
   ============================================================ */
.h-cta { padding:80px 0; background:var(--base); border-bottom:1px solid var(--border); }
.h-cta__inner { position:relative; display:grid; grid-template-columns:1fr 1.2fr; gap:60px; align-items:start; }
.h-cta__title { font-family:var(--serif); font-size:clamp(32px,4.5vw,54px); font-weight:400; color:var(--text-primary); line-height:1.06; margin-bottom:18px; }
.h-cta__title em { color:var(--green); font-style:italic; }
.h-cta__desc { font-size:15px; color:var(--text-secondary); line-height:1.8; margin-bottom:24px; max-width:380px; }
.h-cta__contact-info { display:flex; flex-direction:column; gap:10px; }
.h-cta__wa { display:inline-flex; align-items:center; gap:8px; font-size:13px; color:#1a7a3a; background:rgba(37,211,102,.07); border:1px solid rgba(37,211,102,.2); padding:11px 16px; border-radius:3px; text-decoration:none; transition:background .2s; width:fit-content; }
.h-cta__wa:hover { background:rgba(37,211,102,.13); }
.h-cta__email { font-size:13px; color:var(--text-muted); text-decoration:none; transition:color .2s; display:inline-flex; align-items:center; gap:8px; }
.h-cta__email:hover { color:var(--green); }
.h-form { background:var(--surface-1); border:1px solid var(--border); border-radius:6px; padding:32px; }
.h-form__row { display:grid; grid-template-columns:1fr 1fr; gap:14px; margin-bottom:14px; }
.h-form__group { display:flex; flex-direction:column; gap:7px; margin-bottom:14px; }
.h-form__group:last-of-type { margin-bottom:18px; }
.h-form__label { font-family:var(--body); font-size:10px; font-weight:600; letter-spacing:1.5px; text-transform:uppercase; color:var(--text-muted); }
.h-form__input { background:var(--base); border:1px solid var(--border-md); border-radius:3px; padding:11px 13px; font-family:var(--body); font-size:13px; color:var(--text-primary); outline:none; transition:border-color .2s; width:100%; }
.h-form__input::placeholder { color:var(--text-muted); }
.h-form__input:focus { border-color:var(--green); }
.h-form__checks { display:flex; flex-wrap:wrap; gap:7px; }
.h-form__check { display:flex; align-items:center; gap:6px; font-family:var(--body); font-size:12px; color:var(--text-muted); cursor:pointer; padding:6px 11px; border:1px solid var(--border); border-radius:3px; background:var(--base); transition:border-color .2s,color .2s; }
.h-form__check:hover { border-color:var(--green); color:var(--text-secondary); }
.h-form__check input { accent-color:var(--green); }
.h-form__note { text-align:center; font-size:11px; color:var(--text-muted); margin-top:11px; font-style:italic; }


/* ============================================================
   NEWSLETTER (from screenshot)
   ============================================================ */
.h-newsletter { padding:48px 0; background:var(--surface-2); border-top:1px solid var(--border); }
.h-newsletter__inner { display:flex; align-items:center; gap:24px; background:var(--base); border:1px solid var(--border); border-radius:8px; padding:28px 32px; flex-wrap:wrap; }
.h-newsletter__icon { color:var(--green); flex-shrink:0; background:var(--green-dim); width:52px; height:52px; border-radius:50%; display:flex; align-items:center; justify-content:center; }
.h-newsletter__text { flex:1; min-width:180px; }
.h-newsletter__title { font-family:var(--serif); font-size:17px; font-weight:700; color:var(--text-primary); margin-bottom:3px; }
.h-newsletter__sub { font-size:13px; color:var(--text-muted); }
.h-newsletter__form { display:flex; flex-shrink:0; border-radius:4px; overflow:hidden; border:1px solid var(--border-md); }
.h-newsletter__input { padding:11px 15px; border:none; outline:none; font-family:var(--body); font-size:13px; color:var(--text-primary); min-width:220px; background:var(--base); }
.h-newsletter__input::placeholder { color:var(--text-muted); }
.h-newsletter__btn { padding:11px 20px; background:var(--green); color:#fff; font-family:var(--body); font-size:13px; font-weight:500; border:none; cursor:pointer; transition:background var(--t-fast); white-space:nowrap; }
.h-newsletter__btn:hover { background:var(--green-lt); }


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width:1100px) {
  .h-comfort__img-badge { right:0; }
  .h-explore__grid { grid-template-columns:repeat(3,1fr); }
}
@media (max-width:1024px) {
  .h-why__grid { grid-template-columns:repeat(2,1fr); }
  .h-dest__grid { grid-template-columns:repeat(2,1fr); }
  .h-itins__grid { grid-template-columns:repeat(2,1fr); }
  .h-usp__grid { grid-template-columns:repeat(2,1fr); }
  .h-comfort__inner { grid-template-columns:1fr; gap:44px; }
  .h-comfort__visual { display:none; }
  .h-cta__inner { grid-template-columns:1fr; gap:36px; }
  .h-month-info { grid-template-columns:1fr 1fr; row-gap:22px; }
  .h-stats-bar { grid-template-columns:repeat(2,1fr); }
  .h-mid__grid { grid-template-columns:1fr; gap:44px; }
}
@media (max-width:900px) {
  .h-regan__inner { grid-template-columns:1fr; }
  .h-regan__photo-col { display:none; }
  .h-faq__grid { grid-template-columns:1fr; }
}
@media (max-width:768px) {
  .h-hero__scroll { display:none; }
  .h-hero__sub br { display:none; }
  .h-stats-bar { grid-template-columns:repeat(2,1fr); }
  .h-why__grid { grid-template-columns:1fr; }
  .h-dest__grid { grid-template-columns:1fr; }
  .h-dest__card { min-height:260px; }
  .h-when__tabs { grid-template-columns:repeat(6,1fr); }
  .h-when__tabs .h-month-tab:nth-child(n+7) { border-top:1px solid var(--border); }
  .h-itins__grid { grid-template-columns:1fr; }
  .h-usp__grid { grid-template-columns:1fr; }
  .h-trust__stats { grid-template-columns:1fr; }
  .h-testimonial { padding:28px 22px; }
  .h-form__row { grid-template-columns:1fr; }
  .h-explore__grid { grid-template-columns:repeat(2,1fr); }
  .h-newsletter__inner { flex-direction:column; align-items:flex-start; }
  .h-newsletter__form { width:100%; }
  .h-newsletter__input { min-width:0; flex:1; }
}
@media (max-width:480px) {
  .h-stats-bar { grid-template-columns:1fr 1fr; }
  .h-hero__ctas { flex-direction:column; }
  .h-btn { width:100%; justify-content:center; }
  .h-explore__grid { grid-template-columns:repeat(2,1fr); }
}
