/* ==========================================================================
   Ellicottville Outside - shared design system
   DMO-style: photo-forward, bright, seasonal. Pine + gold brand.
   ========================================================================== */

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---------- Variables ---------- */
:root {
  --pine: #1f3d2f;
  --pine-950: #16281c;
  --forest: #2c5d42;
  --sage: #3f7d5a;
  --gold: #e0a94a;
  --gold-deep: #c48f2f;
  --clay: #c25b34;
  --ink: #1c241f;
  --white: #ffffff;
  --cream: #f6f4ee;
  --stone-100: #eef0ec;
  --stone-200: #dfe3dc;
  --stone-300: #cbd2c6;
  --stone-400: #9aa398;
  --stone-600: #59614f;
  --max: 1240px;
  --pad: 96px;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(20,40,28,0.10);
  --shadow-lg: 0 22px 50px rgba(20,40,28,0.20);
}

/* ---------- Typography helpers ---------- */
.display { font-family: 'Bebas Neue', Impact, sans-serif; font-weight: 400; letter-spacing: 0.02em; line-height: 0.98; }
.eyebrow { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: var(--gold-deep); }
.eyebrow--light { color: var(--gold); }

/* ---------- Layout ---------- */
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.section { padding: var(--pad) 0; }
.section--cream { background: var(--cream); }
.section--pine { background: var(--pine); color: #fff; }
.section--forest { background: var(--forest); color: #fff; }
.sec-head { max-width: 720px; margin-bottom: 46px; }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head.center .sec-sub { margin-left: auto; margin-right: auto; }
.sec-title { font-family: 'Bebas Neue', Impact, sans-serif; font-weight: 400; font-size: clamp(2.3rem, 5vw, 3.5rem); line-height: 1; letter-spacing: 0.01em; color: var(--pine); margin: 12px 0 16px; }
.section--pine .sec-title, .section--forest .sec-title { color: #fff; }
.sec-sub { font-size: 1.12rem; color: var(--stone-600); line-height: 1.7; max-width: 640px; }
.section--pine .sec-sub, .section--forest .sec-sub { color: rgba(255,255,255,0.75); }

/* ---------- Buttons ---------- */
.btn { display: inline-block; padding: 15px 32px; border-radius: 10px; font-weight: 700; font-size: 1rem; cursor: pointer; border: none; transition: all 0.25s ease; letter-spacing: -0.01em; }
.btn-primary { background: var(--gold); color: var(--pine); }
.btn-primary:hover { background: #edbc63; transform: translateY(-2px); box-shadow: 0 12px 28px rgba(224,169,74,0.4); }
.btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.5); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-ghost { background: rgba(255,255,255,0.9); color: var(--pine); }
.btn-ghost:hover { background: #fff; transform: translateY(-2px); }
.link-arrow { font-weight: 700; color: var(--gold-deep); font-size: 0.92rem; }
.link-arrow:hover { color: var(--pine); }
.section--pine .link-arrow, .section--forest .link-arrow { color: var(--gold); }

/* ---------- Photo utility (real img or photo-ready slot) ---------- */
.ph { position: relative; overflow: hidden; background: var(--stone-100); border-radius: var(--radius); }
.ph img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ph--16x9 { aspect-ratio: 16 / 9; }
.ph--4x3 { aspect-ratio: 4 / 3; }
.ph--3x2 { aspect-ratio: 3 / 2; }
.ph--1x1 { aspect-ratio: 1 / 1; }
.ph--tall { aspect-ratio: 3 / 4; }
/* placeholder variant: awaiting a real photo */
.ph--slot { display: flex; align-items: center; justify-content: center; text-align: center;
  background: linear-gradient(135deg, #e7ece4 0%, #d5ddcf 100%); color: var(--sage); }
.ph--slot::before { content: ''; position: absolute; inset: 10px; border: 2px dashed rgba(63,125,90,0.35); border-radius: 12px; }
.ph-slot-label { position: relative; z-index: 1; font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--sage); padding: 0 16px; }
.ph-slot-label small { display: block; font-weight: 500; text-transform: none; letter-spacing: 0; color: var(--stone-400); margin-top: 4px; font-size: 0.78rem; }
.img-credit { font-size: 0.72rem; color: var(--stone-400); margin-top: 8px; text-align: right; }
.img-credit a { color: var(--stone-400); text-decoration: underline; }

/* ==========================================================================
   NAV + MEGA MENU
   ========================================================================== */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 200; transition: all 0.3s ease; background: transparent; }
.nav--overlay:not(.scrolled)::before { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(16,28,20,0.6) 0%, rgba(16,28,20,0) 100%); pointer-events: none; }
.nav.solid, .nav.scrolled { background: rgba(31,61,47,0.97); backdrop-filter: blur(12px); box-shadow: 0 2px 22px rgba(0,0,0,0.18); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; max-width: var(--max); margin: 0 auto; padding: 14px 24px; gap: 20px; }
.nav.scrolled .nav-inner { padding: 10px 24px; }
.brand { display: flex; align-items: center; gap: 10px; font-family: 'Bebas Neue', Impact, sans-serif; font-size: 1.5rem; color: #fff; letter-spacing: 0.05em; line-height: 1; flex-shrink: 0; }
.brand b { font-weight: 400; }
.brand span { color: var(--gold); }
.brand svg { width: 34px; height: 34px; }
.nav-menu { display: flex; align-items: center; gap: 6px; }
.nav-item { position: relative; }
.nav-link { display: inline-flex; align-items: center; gap: 5px; padding: 10px 14px; color: rgba(255,255,255,0.88); font-size: 0.92rem; font-weight: 600; border-radius: 8px; transition: all 0.2s; cursor: pointer; background: none; border: none; font-family: inherit; }
.nav-link:hover { color: #fff; background: rgba(255,255,255,0.1); }
.nav-link .caret { width: 9px; height: 9px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg); margin-top: -3px; opacity: 0.7; transition: transform 0.2s; }
.nav-item.open .nav-link .caret { transform: rotate(-135deg); margin-top: 2px; }

/* mega dropdown */
.mega { position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(8px); min-width: 560px; background: #fff; border-radius: 16px; box-shadow: var(--shadow-lg); padding: 22px; opacity: 0; visibility: hidden; transition: all 0.22s ease; display: grid; grid-template-columns: 1fr 1fr; gap: 6px 26px; }
.nav-item.open .mega { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.mega::before { content: ''; position: absolute; top: -10px; left: 0; right: 0; height: 10px; }
.mega-col h4 { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold-deep); margin: 8px 12px; }
.mega a { display: block; padding: 9px 12px; border-radius: 8px; color: var(--ink); font-size: 0.94rem; font-weight: 500; transition: all 0.15s; }
.mega a:hover { background: var(--cream); color: var(--pine); }
.mega a b { display: block; font-weight: 700; }
.mega a small { color: var(--stone-400); font-size: 0.8rem; }

.nav-right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-fb { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,0.14); }
.nav-fb:hover { background: var(--gold); }
.nav-fb svg { width: 17px; height: 17px; fill: #fff; }
.nav-fb:hover svg { fill: var(--pine); }
.nav-cta { padding: 9px 20px; font-size: 0.9rem; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: #fff; margin: 6px 0; transition: 0.3s; }

/* ==========================================================================
   HERO (full-bleed photo + seasonal switch)
   ========================================================================== */
.hero { position: relative; min-height: 92vh; display: flex; align-items: flex-end; overflow: hidden; background: var(--pine-950); }
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media .hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 0.8s ease; }
.hero-media .hero-img.active { opacity: 1; }
.hero::after { content: ''; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(16,28,20,0.35) 0%, rgba(16,28,20,0.15) 40%, rgba(16,28,20,0.85) 100%); }
.hero-inner { position: relative; z-index: 2; width: 100%; max-width: var(--max); margin: 0 auto; padding: 124px 24px 60px; }
.hero-eyebrow { display: inline-block; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.16em; color: var(--gold); margin-bottom: 18px; padding: 8px 16px; background: rgba(224,169,74,0.16); border: 1px solid rgba(224,169,74,0.35); border-radius: 100px; backdrop-filter: blur(4px); }
.hero h1 { font-family: 'Bebas Neue', Impact, sans-serif; font-weight: 400; font-size: clamp(2.8rem, 6.5vw, 5.2rem); color: #fff; line-height: 0.95; letter-spacing: 0.01em; margin-bottom: 16px; max-width: 15ch; text-shadow: 0 2px 30px rgba(0,0,0,0.3); }
.hero h1 span { color: var(--gold); }
.hero-body { font-size: 1.2rem; color: rgba(255,255,255,0.92); max-width: 600px; line-height: 1.65; margin-bottom: 28px; text-shadow: 0 1px 12px rgba(0,0,0,0.4); }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 30px; }
.season-switch { display: inline-flex; gap: 8px; flex-wrap: wrap; align-items: center; background: rgba(16,28,20,0.4); backdrop-filter: blur(8px); padding: 8px; border-radius: 100px; border: 1px solid rgba(255,255,255,0.15); }
.season-switch .lbl { color: rgba(255,255,255,0.7); font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; padding: 0 8px 0 12px; }
.season-chip { padding: 9px 20px; border-radius: 100px; font-size: 0.9rem; font-weight: 700; background: transparent; color: rgba(255,255,255,0.85); border: none; cursor: pointer; transition: all 0.2s; font-family: inherit; }
.season-chip:hover { color: #fff; }
.season-chip.active { background: var(--gold); color: var(--pine); }

/* ==========================================================================
   CONDITIONS BAND + LIVE WEATHER
   ========================================================================== */
.conditions { background: var(--pine); padding: 22px 0; border-bottom: 3px solid var(--gold); }
.cond-grid { display: grid; grid-template-columns: minmax(300px, 1fr) 1.3fr; gap: 24px; align-items: stretch; }
.cond-title { color: rgba(255,255,255,0.85); font-weight: 700; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.09em; display: flex; align-items: center; gap: 9px; margin-bottom: 12px; }
.dot { width: 9px; height: 9px; border-radius: 50%; background: #4ade80; box-shadow: 0 0 0 4px rgba(74,222,128,0.25); }
.cond-now { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 12px; padding: 16px 20px; }
.cn-head { color: rgba(255,255,255,0.85); font-weight: 700; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.09em; display: flex; align-items: center; gap: 9px; margin-bottom: 10px; }
.cn-loading { color: rgba(255,255,255,0.5); font-size: 0.9rem; padding: 6px 0; }
.cn-loading a { color: var(--gold); }
.cn-top { display: flex; align-items: center; gap: 14px; }
.cn-icon { font-size: 2.4rem; line-height: 1; }
.cn-temp { font-family: 'Bebas Neue', Impact, sans-serif; font-size: 3rem; line-height: 0.9; color: #fff; }
.cn-temp span { font-size: 1.3rem; color: var(--gold); vertical-align: super; }
.cn-meta { display: flex; flex-direction: column; gap: 2px; }
.cn-cond { color: #fff; font-weight: 600; font-size: 0.96rem; }
.cn-wind { color: rgba(255,255,255,0.6); font-size: 0.82rem; }
.cn-forecast { display: flex; gap: 8px; margin-top: 14px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,0.1); }
.cn-day { flex: 1; text-align: center; }
.cn-day .d-name { color: rgba(255,255,255,0.55); font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.05em; font-weight: 700; margin-bottom: 3px; }
.cn-day .d-icon { font-size: 1.1rem; }
.cn-day .d-temp { color: #fff; font-weight: 700; font-size: 0.9rem; }
.cn-src { margin-top: 10px; font-size: 0.68rem; color: rgba(255,255,255,0.4); }
.cond-side { display: flex; flex-direction: column; }
.cond-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; flex: 1; }
.cond-link { display: flex; flex-direction: column; gap: 1px; padding: 12px 16px; border-radius: 10px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); transition: all 0.2s; justify-content: center; }
.cond-link:hover { background: rgba(224,169,74,0.16); border-color: var(--gold); transform: translateY(-1px); }
.cond-link .cl-top { color: rgba(255,255,255,0.55); font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; }
.cond-link .cl-main { color: #fff; font-size: 0.9rem; font-weight: 600; }

/* ==========================================================================
   FEATURE ROWS (alternating image + text)
   ========================================================================== */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.feature + .feature { margin-top: 80px; }
.feature.flip .feature-media { order: 2; }
.feature-media .ph { box-shadow: var(--shadow-lg); }
.feature-text .eyebrow { margin-bottom: 10px; display: block; }
.feature-text h3 { font-family: 'Bebas Neue', Impact, sans-serif; font-weight: 400; font-size: clamp(2rem, 4vw, 2.9rem); line-height: 1; letter-spacing: 0.01em; color: var(--pine); margin-bottom: 16px; }
.feature-text p { font-size: 1.08rem; color: var(--stone-600); line-height: 1.75; margin-bottom: 16px; }
.feature-stats { display: flex; gap: 28px; margin: 18px 0 22px; flex-wrap: wrap; }
.feature-stats .stat .n { font-family: 'Bebas Neue', Impact, sans-serif; font-size: 2.2rem; color: var(--gold-deep); line-height: 1; }
.feature-stats .stat .l { font-size: 0.82rem; color: var(--stone-400); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }

/* ---------- Accolades + reach (Why Ellicottville) ---------- */
.accolades { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-bottom: 44px; }
.accolade { background: var(--cream); border: 1px solid var(--stone-200); border-radius: 14px; padding: 26px 20px; text-align: center; }
.accolade .src { font-size: 0.7rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gold-deep); margin-bottom: 10px; }
.accolade p { font-size: 1rem; color: var(--pine); font-weight: 600; line-height: 1.42; }
.reach { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; text-align: center; }
.reach-item .n { font-family: 'Bebas Neue', Impact, sans-serif; font-size: 3.1rem; color: var(--gold-deep); line-height: 1; }
.reach-item .l { font-size: 0.92rem; color: var(--stone-600); line-height: 1.5; margin-top: 6px; }
@media (max-width: 780px) { .accolades { grid-template-columns: 1fr 1fr; } .reach { grid-template-columns: 1fr; gap: 20px; } }

/* ---------- Featured stay callout ---------- */
.stay-bar { display: flex; align-items: center; justify-content: space-between; gap: 24px; background: #fff; border: 1px solid var(--stone-200); border-left: 5px solid var(--gold); border-radius: 16px; padding: 28px 32px; flex-wrap: wrap; box-shadow: var(--shadow); }
.stay-bar .k { font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold-deep); margin-bottom: 8px; }
.stay-bar p { font-size: 1.08rem; color: var(--pine); font-weight: 600; line-height: 1.55; max-width: 660px; }
.stay-bar .btn { flex-shrink: 0; }
.stay-lead { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.stay-thumb { width: 210px; height: 150px; object-fit: cover; border-radius: 12px; flex-shrink: 0; }
@media (max-width: 640px) { .stay-bar { flex-direction: column; align-items: flex-start; } .stay-thumb { width: 100%; height: 190px; } }

/* ---------- Merchandise (coming soon) ---------- */
.merch-card { background: #fff; border: 1px solid var(--stone-200); border-radius: 14px; overflow: hidden; text-align: center; transition: all 0.25s ease; }
.merch-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.merch-thumb { height: 150px; display: flex; align-items: center; justify-content: center; font-size: 3rem; background: linear-gradient(135deg, #eef0ec, #dfe3dc); }
.merch-card h4 { font-size: 1.05rem; font-weight: 700; margin: 16px 16px 4px; color: var(--pine); }
.merch-card p { font-size: 0.8rem; color: var(--stone-400); margin: 0 16px 18px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }

/* ==========================================================================
   CARD GRIDS (activity / village / guide cards with photo)
   ========================================================================== */
.card-grid { display: grid; gap: 24px; }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }
.card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: all 0.3s ease; display: flex; flex-direction: column; }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card .ph { border-radius: 0; }
.card-media { position: relative; }
.card-tag { position: absolute; top: 14px; left: 14px; z-index: 2; background: var(--gold); color: var(--pine); font-size: 0.68rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; padding: 5px 12px; border-radius: 100px; }
.card-body { padding: 22px 24px 26px; flex: 1; display: flex; flex-direction: column; }
.card-body .kicker { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gold-deep); margin-bottom: 6px; }
.card-body h3 { font-family: 'Bebas Neue', Impact, sans-serif; font-weight: 400; font-size: 1.7rem; line-height: 1; letter-spacing: 0.02em; color: var(--pine); margin-bottom: 10px; }
.card-body p { font-size: 0.95rem; color: var(--stone-600); line-height: 1.6; margin-bottom: 16px; flex: 1; }
.card-meta { font-size: 0.78rem; color: var(--stone-400); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 8px; }

/* season dimming on activity cards */
.card.dim, .actv.dim { opacity: 0.4; filter: saturate(0.6); }
.season-badge { position: absolute; top: 14px; right: 14px; z-index: 2; display: none; background: rgba(31,61,47,0.9); color: #fff; font-size: 0.66rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; padding: 5px 11px; border-radius: 100px; }
.in-season .season-badge { display: block; }

/* ==========================================================================
   VILLAGE / FUEL UP
   ========================================================================== */
.fuel-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.fuel-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12); border-radius: 18px; overflow: hidden; transition: all 0.3s ease; }
.fuel-card:hover { border-color: var(--gold); }
.fuel-card .ph { border-radius: 0; }
.fuel-body { padding: 28px 30px 30px; }
.fuel-badge { display: inline-block; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--pine); background: var(--gold); padding: 5px 13px; border-radius: 100px; margin-bottom: 14px; }
.fuel-card h3 { font-family: 'Bebas Neue', Impact, sans-serif; font-weight: 400; font-size: 2rem; letter-spacing: 0.02em; margin-bottom: 4px; color: #fff; }
.fuel-tag { color: var(--gold); font-size: 0.92rem; font-weight: 600; margin-bottom: 14px; }
.fuel-card p { color: rgba(255,255,255,0.78); font-size: 0.98rem; line-height: 1.7; margin-bottom: 16px; }
.pill-row { display: flex; gap: 8px; flex-wrap: wrap; }
.pill { font-size: 0.8rem; color: rgba(255,255,255,0.85); background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.14); padding: 6px 13px; border-radius: 100px; }

/* ==========================================================================
   EVENTS
   ========================================================================== */
.events-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.event-card { display: flex; gap: 18px; padding: 22px; border: 1px solid var(--stone-200); border-radius: 14px; background: #fff; transition: all 0.25s ease; }
.event-card:hover { border-color: var(--gold); box-shadow: var(--shadow); }
.event-date { flex-shrink: 0; width: 60px; text-align: center; }
.event-date .mo { font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; color: var(--clay); }
.event-date .dy { font-family: 'Bebas Neue', Impact, sans-serif; font-size: 2.1rem; line-height: 0.9; color: var(--pine); }
.event-info h4 { font-size: 1.05rem; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.event-info p { font-size: 0.88rem; color: var(--stone-600); line-height: 1.5; }
.event-info .ev-where { color: var(--gold-deep); font-weight: 600; }

/* ==========================================================================
   RESPONSIBLE RECREATION
   ========================================================================== */
.respect-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 8px; }
.respect-item { text-align: center; }
.respect-item .ic { width: 56px; height: 56px; margin: 0 auto 14px; border-radius: 14px; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; }
.respect-item h4 { color: #fff; font-size: 1.05rem; font-weight: 700; margin-bottom: 6px; }
.respect-item p { color: rgba(255,255,255,0.72); font-size: 0.9rem; line-height: 1.55; }

/* ==========================================================================
   NEWSLETTER
   ========================================================================== */
.nl { text-align: center; }
.nl-inner { max-width: 620px; margin: 0 auto; }
.nl-inner p { color: rgba(255,255,255,0.82); font-size: 1.08rem; margin: 12px 0 26px; }
.nl-form { display: flex; gap: 10px; max-width: 480px; margin: 0 auto; flex-wrap: wrap; }
.nl-form input { flex: 1; min-width: 200px; padding: 15px 18px; border-radius: 10px; border: none; font-family: inherit; font-size: 1rem; background: rgba(255,255,255,0.95); color: var(--ink); }
.nl-form input:focus { outline: 3px solid rgba(224,169,74,0.5); }
.nl-note { margin-top: 14px; font-size: 0.82rem; color: rgba(255,255,255,0.55); }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--stone-200); }
.faq-q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; padding: 22px 0; font-size: 1.1rem; font-weight: 700; color: var(--pine); display: flex; justify-content: space-between; align-items: center; gap: 16px; font-family: inherit; }
.faq-q .plus { flex-shrink: 0; font-size: 1.5rem; color: var(--gold-deep); transition: transform 0.25s; line-height: 1; }
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-a p { padding: 0 0 22px; color: var(--stone-600); font-size: 1rem; line-height: 1.75; }

/* ==========================================================================
   PAGE HEADER (interior pages)
   ========================================================================== */
.page-hero { position: relative; padding: 150px 0 70px; color: #fff; overflow: hidden; background: var(--pine); }
.page-hero .ph, .page-hero .page-hero-media { position: absolute; inset: 0; z-index: 0; border-radius: 0; }
.page-hero .page-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero::after { content: ''; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(16,28,20,0.55), rgba(16,28,20,0.8)); }
.page-hero .container { position: relative; z-index: 2; }
.page-hero .eyebrow { color: var(--gold); }
.page-hero h1 { font-family: 'Bebas Neue', Impact, sans-serif; font-weight: 400; font-size: clamp(2.6rem, 6vw, 4.4rem); line-height: 1; margin: 12px 0 14px; }
.page-hero p { color: rgba(255,255,255,0.85); max-width: 620px; font-size: 1.12rem; }
.crumbs { margin-bottom: 8px; font-size: 0.85rem; color: rgba(255,255,255,0.6); }
.crumbs a { color: var(--gold); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer { background: var(--pine-950); padding: 60px 0 30px; color: rgba(255,255,255,0.6); }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand .brand { margin-bottom: 16px; }
.footer-brand p { font-size: 0.92rem; line-height: 1.7; max-width: 320px; }
.footer-brand .foot-social { margin-top: 18px; display: flex; gap: 10px; }
.footer-brand .foot-social a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; }
.footer-brand .foot-social a:hover { background: var(--gold); }
.footer-brand .foot-social svg { width: 18px; height: 18px; fill: #fff; }
.footer-brand .foot-social a:hover svg { fill: var(--pine); }
.footer-col h5 { color: #fff; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px; }
.footer-col a { display: block; font-size: 0.92rem; margin-bottom: 10px; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 24px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 0.82rem; }
.footer-bottom a { color: var(--gold); }

/* ---------- Animations ---------- */
.fade-up { opacity: 0; transform: translateY(24px); transition: all 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
  .cols-4 { grid-template-columns: repeat(2, 1fr); }
  .cols-3 { grid-template-columns: repeat(2, 1fr); }
  .respect-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 900px) {
  .nav-menu, .nav-cta { display: none; }
  .nav-toggle { display: block; }
  .nav-menu.open { display: flex; flex-direction: column; align-items: stretch; position: absolute; top: 100%; left: 0; right: 0; background: var(--pine); padding: 16px; gap: 2px; box-shadow: var(--shadow-lg); max-height: 80vh; overflow-y: auto; }
  .nav-menu.open .nav-item { width: 100%; }
  .nav-menu.open .mega { position: static; transform: none; opacity: 1; visibility: visible; min-width: 0; grid-template-columns: 1fr; box-shadow: none; padding: 4px 10px 12px; display: none; background: rgba(0,0,0,0.15); }
  .nav-menu.open .nav-item.open .mega { display: grid; }
  .nav-menu.open .mega a { color: rgba(255,255,255,0.85); }
  .nav-menu.open .mega a:hover { background: rgba(255,255,255,0.08); color: #fff; }
  .nav-menu.open .mega-col h4 { color: var(--gold); }
}
@media (max-width: 780px) {
  :root { --pad: 60px; }
  .feature, .feature.flip { grid-template-columns: 1fr; gap: 28px; }
  .feature.flip .feature-media { order: 0; }
  .cond-grid { grid-template-columns: 1fr; }
  .cond-links { grid-template-columns: 1fr 1fr; }
  .fuel-grid { grid-template-columns: 1fr; }
  .cols-2, .cols-3, .cols-4 { grid-template-columns: 1fr; }
  .hero { min-height: 88vh; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .footer-top { grid-template-columns: 1fr; }
  .respect-grid { grid-template-columns: 1fr; }
}
