/* =====================================================================
   WILDEN — Glamping & Eco Retreat Website Template
   Plain HTML5 + CSS3 + vanilla JS. No frameworks, no build tools.
   ---------------------------------------------------------------------
   REBRAND: To rebrand, edit the CSS variables in :root below.
   Change --forest (forest green), --tan, --cream and the fonts.
   Replace the name "Wilden" in the HTML files + logo.
   ===================================================================== */

/* ---------- DESIGN TOKENS ---------- */
:root {
  /* Colors — natural, earthy palette */
  --forest:       #2f4030;   /* deep forest green (primary)        */
  --forest-dark:  #20301f;   /* darker green for contrast/hovers   */
  --forest-light: #46583f;   /* lighter forest green               */
  --tan:          #c9b690;   /* warm tan accent                    */
  --tan-dark:     #a8915f;   /* deeper tan for hovers/headings     */
  --cream:        #f4f1e9;   /* warm cream background               */
  --cream-soft:   #faf8f1;   /* softer cream / cards                */
  --ink:          #28301f;   /* near-black green-tinted text        */
  --muted:        #6a6a58;   /* muted text                          */
  --white:        #ffffff;
  --line:         #e3dcc9;   /* hairline border on cream            */

  /* Typography */
  --font-head: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", system-ui, sans-serif;

  /* Layout */
  --maxw: 1180px;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 4px 14px rgba(32, 48, 31, 0.08);
  --shadow-md: 0 14px 40px rgba(32, 48, 31, 0.16);
  --shadow-lg: 0 26px 60px rgba(32, 48, 31, 0.24);
  --header-h: 76px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream-soft);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.12; font-weight: 600; color: var(--forest-dark); }
h1 { font-size: clamp(2.3rem, 5vw, 3.7rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); }
h3 { font-size: 1.35rem; }
p  { color: var(--muted); }

/* ---------- LAYOUT HELPERS ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 92px 0; }
.section--cream { background: var(--cream); }
.section--forest { background: var(--forest); color: var(--cream); }
.text-center { text-align: center; }
.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--tan-dark);
  margin-bottom: 12px;
  display: inline-block;
}
.section-head { max-width: 700px; margin: 0 auto 56px; }
.section-head p { margin-top: 14px; font-size: 1.05rem; }
.lead { font-size: 1.14rem; color: var(--muted); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 50px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s;
  white-space: nowrap;
}
.btn--primary { background: var(--tan); color: var(--forest-dark); box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--tan-dark); color: #fff; transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn--ghost { background: transparent; color: var(--forest-dark); border: 2px solid var(--forest); }
.btn--ghost:hover { background: var(--forest); color: var(--cream); transform: translateY(-3px); }
.btn--light { background: var(--cream); color: var(--forest-dark); }
.btn--light:hover { background: #fff; transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn--outline-light { border: 2px solid rgba(244,241,233,.6); color: var(--cream); }
.btn--outline-light:hover { background: var(--cream); color: var(--forest-dark); }

/* =====================================================================
   HEADER (shared, sticky)
   ===================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 248, 241, 0.85);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s, background .3s;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); background: rgba(250,248,241,.96); }
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h);
}
.logo { display: flex; align-items: center; gap: 11px; font-family: var(--font-head); font-weight: 600; font-size: 1.4rem; color: var(--forest-dark); }
.logo-mark {
  width: 42px; height: 42px; border-radius: 12px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-light) 100%);
  box-shadow: var(--shadow-sm);
}
.logo-mark svg { width: 24px; height: 24px; }
.logo span small { display: block; font-family: var(--font-body); font-weight: 500; font-size: .6rem; letter-spacing: .24em; text-transform: uppercase; color: var(--tan-dark); margin-top: 1px; }

.nav-menu { display: flex; align-items: center; gap: 6px; }
.nav-menu a {
  font-family: var(--font-body); font-weight: 500; font-size: .95rem;
  padding: 9px 15px; border-radius: 50px; color: var(--ink);
  transition: color .2s, background .2s;
}
.nav-menu a:hover { color: var(--forest-dark); background: rgba(47,64,48,.07); }
.nav-menu a.active { color: var(--forest-dark); background: rgba(201,182,144,.3); font-weight: 600; }

.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-cta .btn { padding: 10px 22px; }

/* Hamburger */
.hamburger {
  display: none; width: 44px; height: 44px; border-radius: 12px;
  position: relative; background: rgba(47,64,48,.08);
}
.hamburger span {
  position: absolute; left: 11px; right: 11px; height: 2.5px; border-radius: 3px;
  background: var(--forest-dark); transition: transform .3s var(--ease), opacity .2s;
}
.hamburger span:nth-child(1) { top: 15px; }
.hamburger span:nth-child(2) { top: 21px; }
.hamburger span:nth-child(3) { top: 27px; }
.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* =====================================================================
   HERO (home) — full-bleed nature photo
   ===================================================================== */
.hero { position: relative; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(120deg, rgba(32,48,31,.82) 0%, rgba(32,48,31,.55) 45%, rgba(47,64,48,.28) 100%);
}
.hero-inner { position: relative; z-index: 2; padding: 132px 0 120px; }
.hero-text { max-width: 640px; color: var(--cream); }
.hero-text .eyebrow { color: var(--tan); }
.hero-text h1 { color: #fff; margin-bottom: 20px; }
.hero-text .lead { color: rgba(244,241,233,.92); margin-bottom: 32px; max-width: 560px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-stats { display: flex; gap: 38px; flex-wrap: wrap; }
.hero-stats .stat strong { font-family: var(--font-head); font-size: 1.9rem; color: #fff; display: block; }
.hero-stats .stat span { font-size: .85rem; color: rgba(244,241,233,.8); }

/* =====================================================================
   PAGE BANNER (inner pages)
   ===================================================================== */
.page-banner {
  position: relative; padding: 92px 0 84px; text-align: center; color: var(--cream); overflow: hidden;
}
.page-banner .banner-bg { position: absolute; inset: 0; z-index: 0; }
.page-banner .banner-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-banner::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(150deg, rgba(32,48,31,.86) 0%, rgba(47,64,48,.66) 100%);
}
.page-banner .container { position: relative; z-index: 2; }
.page-banner h1 { color: #fff; margin-bottom: 12px; }
.page-banner p { color: rgba(244,241,233,.88); max-width: 640px; margin: 0 auto; }
.breadcrumb { display: flex; gap: 8px; justify-content: center; align-items: center; margin-top: 20px; font-size: .88rem; font-family: var(--font-body); }
.breadcrumb a { color: var(--cream); opacity: .8; }
.breadcrumb a:hover { opacity: 1; text-decoration: underline; }
.breadcrumb span { opacity: .55; }
.breadcrumb .current { color: var(--tan); opacity: 1; font-weight: 600; }

/* =====================================================================
   CARDS / GRIDS
   ===================================================================== */
.grid { display: grid; gap: 26px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.card h3 { margin-bottom: 10px; }
.icon-badge {
  width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center;
  margin-bottom: 18px; color: var(--forest);
  background: linear-gradient(135deg, rgba(201,182,144,.35), rgba(47,64,48,.12));
}
.icon-badge svg { width: 28px; height: 28px; }

/* =====================================================================
   STAY / ACCOMMODATION CARDS (photo-led)
   ===================================================================== */
.stay { overflow: hidden; padding: 0; display: flex; flex-direction: column; }
.stay .thumb { position: relative; aspect-ratio: 3 / 2; overflow: hidden; }
.stay .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.stay:hover .thumb img { transform: scale(1.06); }
.stay .tag {
  position: absolute; top: 14px; left: 14px; background: var(--cream-soft); color: var(--forest-dark);
  font-family: var(--font-body); font-weight: 600; font-size: .72rem; padding: 5px 12px;
  border-radius: 50px; box-shadow: var(--shadow-sm);
}
.stay .body { padding: 24px 24px 28px; flex: 1; display: flex; flex-direction: column; }
.stay .row { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.stay .price { font-family: var(--font-head); font-weight: 600; color: var(--tan-dark); font-size: 1.05rem; white-space: nowrap; }
.stay .price small { font-family: var(--font-body); font-weight: 400; color: var(--muted); font-size: .72rem; }
.stay .body > p { font-size: .94rem; margin: 8px 0 16px; }
.stay .meta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; }
.stay .meta span {
  font-size: .76rem; font-weight: 500; color: var(--forest);
  background: rgba(201,182,144,.22); padding: 5px 11px; border-radius: 50px;
}

/* =====================================================================
   FEATURE / EXPERIENCE CARDS (photo-led)
   ===================================================================== */
.feature { overflow: hidden; padding: 0; }
.feature .thumb { aspect-ratio: 4 / 3; overflow: hidden; }
.feature .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.feature:hover .thumb img { transform: scale(1.06); }
.feature .body { padding: 24px 26px 28px; }
.feature .body h3 { margin-bottom: 8px; }
.feature .body p { font-size: .94rem; }
.feature .kicker {
  display: inline-block; font-family: var(--font-body); font-weight: 600; font-size: .72rem;
  text-transform: uppercase; letter-spacing: .12em; color: var(--tan-dark); margin-bottom: 10px;
}

/* =====================================================================
   SPLIT SECTIONS (image + text)
   ===================================================================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split-visual {
  border-radius: var(--radius); position: relative; overflow: hidden;
  box-shadow: var(--shadow-md); aspect-ratio: 4 / 3;
}
.split-visual img { width: 100%; height: 100%; object-fit: cover; }
.split-text h2 { margin-bottom: 18px; }
.split-text p + p { margin-top: 14px; }
.check-list { margin-top: 22px; display: grid; gap: 12px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink); }
.check-list li svg { flex: none; width: 20px; height: 20px; margin-top: 4px; color: var(--tan-dark); }

/* =====================================================================
   INFO STRIP
   ===================================================================== */
.strip { background: var(--forest-dark); color: var(--cream); border-radius: var(--radius); padding: 40px; display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; box-shadow: var(--shadow-md); }
.strip .item { display: flex; gap: 16px; align-items: flex-start; }
.strip .item .ic { flex: none; color: var(--tan); }
.strip .item .ic svg { width: 26px; height: 26px; }
.strip .item h4 { color: #fff; font-size: 1.05rem; margin-bottom: 4px; }
.strip .item p { color: rgba(244,241,233,.82); font-size: .92rem; }

/* =====================================================================
   SUSTAINABILITY NOTE
   ===================================================================== */
.eco-note {
  background: linear-gradient(150deg, var(--forest) 0%, var(--forest-dark) 100%);
  color: var(--cream); border-radius: 26px; padding: 56px 48px; box-shadow: var(--shadow-lg);
  display: grid; grid-template-columns: auto 1fr; gap: 34px; align-items: center;
}
.eco-note .leaf {
  width: 92px; height: 92px; border-radius: 24px; flex: none; display: grid; place-items: center;
  background: rgba(201,182,144,.25); color: var(--tan);
}
.eco-note .leaf svg { width: 48px; height: 48px; }
.eco-note h2 { color: #fff; margin-bottom: 12px; }
.eco-note p { color: rgba(244,241,233,.9); max-width: 640px; }

/* =====================================================================
   TESTIMONIALS
   ===================================================================== */
.quote-card { max-width: 780px; margin: 0 auto; text-align: center; }
.quote-card .stars { color: var(--tan-dark); font-size: 1.2rem; letter-spacing: 3px; margin-bottom: 18px; }
.quote-card blockquote { font-family: var(--font-head); font-size: clamp(1.35rem,2.4vw,1.9rem); color: var(--forest-dark); line-height: 1.4; font-weight: 500; }
.quote-card .who { margin-top: 24px; display: flex; gap: 14px; align-items: center; justify-content: center; }
.quote-card .avatar { width: 54px; height: 54px; border-radius: 50%; overflow: hidden; box-shadow: var(--shadow-sm); }
.quote-card .avatar img { width: 100%; height: 100%; object-fit: cover; }
.quote-card .who b { font-family: var(--font-head); color: var(--ink); display: block; }
.quote-card .who small { color: var(--muted); }

.testi-grid .card .stars { color: var(--tan-dark); letter-spacing: 2px; margin-bottom: 12px; }
.testi-grid .card blockquote { color: var(--ink); font-style: italic; font-family: var(--font-body); font-size: 1rem; line-height: 1.7; }
.testi-grid .card .who { margin-top: 20px; display: flex; align-items: center; gap: 12px; }
.testi-grid .card .avatar { width: 46px; height: 46px; border-radius: 50%; overflow: hidden; flex: none; }
.testi-grid .card .avatar img { width: 100%; height: 100%; object-fit: cover; }
.testi-grid .card .who b { font-family: var(--font-head); font-size: .98rem; display: block; }
.testi-grid .card .who small { color: var(--muted); }

/* =====================================================================
   CTA BAND
   ===================================================================== */
.cta-band { text-align: center; }
.cta-band .inner {
  position: relative; overflow: hidden;
  border-radius: 26px; padding: 72px 40px; color: var(--cream); box-shadow: var(--shadow-lg);
}
.cta-band .inner .cta-bg { position: absolute; inset: 0; z-index: 0; }
.cta-band .inner .cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-band .inner::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(150deg, rgba(32,48,31,.85) 0%, rgba(47,64,48,.7) 100%);
}
.cta-band .inner > * { position: relative; z-index: 2; }
.cta-band h2 { color: #fff; margin-bottom: 14px; }
.cta-band p { color: rgba(244,241,233,.9); max-width: 560px; margin: 0 auto 28px; }
.cta-band .hero-actions { justify-content: center; margin-bottom: 0; }

/* =====================================================================
   TEAM / VALUES
   ===================================================================== */
.team-card { text-align: center; }
.team-card .photo { width: 116px; height: 116px; border-radius: 50%; margin: 0 auto 18px; overflow: hidden; box-shadow: var(--shadow-md); }
.team-card .photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card h3 { font-size: 1.15rem; margin-bottom: 2px; }
.team-card .role { color: var(--tan-dark); font-family: var(--font-body); font-weight: 600; font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; }
.team-card p { font-size: .9rem; margin-top: 10px; }

/* =====================================================================
   CONTACT PAGE
   ===================================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; }
.contact-info .info-item { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.contact-info .info-item:last-child { border-bottom: none; }
.contact-info .info-item .ic { width: 48px; height: 48px; flex: none; border-radius: 14px; display: grid; place-items: center; color: var(--forest); background: linear-gradient(135deg, rgba(201,182,144,.35), rgba(47,64,48,.12)); }
.contact-info .info-item .ic svg { width: 22px; height: 22px; }
.contact-info .info-item h4 { margin-bottom: 2px; }
.contact-info .info-item p, .contact-info .info-item a { color: var(--muted); font-size: .95rem; }
.contact-info .info-item a:hover { color: var(--tan-dark); }

.form { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--font-body); font-weight: 600; font-size: .88rem; color: var(--forest-dark); margin-bottom: 7px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 13px 16px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: .95rem; color: var(--ink); background: var(--cream-soft);
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--tan-dark); box-shadow: 0 0 0 3px rgba(168,145,95,.2); background: #fff; }
.field textarea { resize: vertical; min-height: 130px; }
.field.error input, .field.error textarea { border-color: #c0512f; }
.field .msg { color: #c0512f; font-size: .8rem; margin-top: 5px; display: none; }
.field.error .msg { display: block; }
.form-note { font-size: .82rem; color: var(--muted); margin-top: 6px; }
.form-success { display: none; background: rgba(47,64,48,.1); border: 1px solid rgba(47,64,48,.35); color: var(--forest-dark); padding: 14px 18px; border-radius: var(--radius-sm); font-family: var(--font-body); font-weight: 600; margin-bottom: 18px; }
.form-success.show { display: block; }

.map-placeholder {
  margin-top: 30px; height: 280px; border-radius: var(--radius); overflow: hidden; position: relative;
  background:
    repeating-linear-gradient(45deg, rgba(47,64,48,.05) 0 18px, transparent 18px 36px),
    linear-gradient(150deg, var(--cream) 0%, #e6dfcb 100%);
  border: 1px solid var(--line); display: grid; place-items: center; text-align: center;
}
.map-placeholder .pin { color: var(--forest); }
.map-placeholder .pin svg { width: 42px; height: 42px; }
.map-placeholder .label { font-family: var(--font-head); font-weight: 600; color: var(--forest-dark); margin-top: 6px; }
.map-placeholder small { color: var(--muted); }

/* =====================================================================
   FOOTER (shared)
   ===================================================================== */
.site-footer { background: var(--forest-dark); color: rgba(244,241,233,.78); padding: 70px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 40px; }
.footer-grid h4 { color: var(--cream); font-size: 1rem; margin-bottom: 18px; letter-spacing: .02em; }
.footer-brand .logo { color: var(--cream); margin-bottom: 16px; }
.footer-brand .logo span small { color: var(--tan); }
.footer-brand p { font-size: .92rem; max-width: 280px; }
.footer-col a, .footer-col p { display: block; color: rgba(244,241,233,.78); font-size: .92rem; padding: 5px 0; transition: color .2s, padding-left .2s; }
.footer-col a:hover { color: var(--tan); padding-left: 5px; }
.socials { display: flex; gap: 10px; margin-top: 8px; }
.socials a { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; background: rgba(244,241,233,.08); padding: 0; color: var(--cream); }
.socials a svg { width: 18px; height: 18px; }
.socials a:hover { background: var(--tan); color: var(--forest-dark); padding-left: 0; }
.footer-bottom { border-top: 1px solid rgba(244,241,233,.14); margin-top: 48px; padding-top: 24px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .85rem; }
.footer-bottom a:hover { color: var(--tan); }

/* =====================================================================
   SCROLL REVEAL
   ===================================================================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
/* Fallback: if JS disabled, show everything */
.no-js .reveal { opacity: 1; transform: none; }

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 980px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 34px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .eco-note { grid-template-columns: 1fr; text-align: center; gap: 24px; justify-items: center; }
}

@media (max-width: 760px) {
  .section { padding: 64px 0; }
  /* Mobile nav */
  .hamburger { display: block; }
  .nav-menu {
    position: fixed; inset: var(--header-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 4px;
    background: var(--cream-soft); padding: 16px 20px 26px;
    border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md);
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: transform .3s var(--ease), opacity .3s;
  }
  .nav-menu.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-menu a { padding: 13px 16px; font-size: 1rem; }
  .nav-cta .btn { display: none; }
  .strip { grid-template-columns: 1fr; gap: 22px; padding: 30px; }
  .hero-stats { gap: 26px; }
  .hero-inner { padding: 96px 0 84px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
}

@media (max-width: 480px) {
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .container { padding: 0 18px; }
  .cta-band .inner { padding: 48px 24px; }
  .eco-note { padding: 40px 24px; }
}
