/* =====================================================================
   ESTATE — Vineyard & Winery Website Template
   Plain HTML5 + CSS3 + vanilla JS. No frameworks. No build step.
   ---------------------------------------------------------------------
   REBRAND: edit the CSS variables in :root below.
   Change --brand (burgundy), --cream, --gold and the fonts.
   Replace the estate name "Estate" in the HTML files + logo.
   ===================================================================== */

/* ---------- DESIGN TOKENS ---------- */
:root {
  /* Colors — refined burgundy + cream + gold */
  --brand:        #6b1f3a;   /* deep burgundy (primary)            */
  --brand-dark:   #4c1429;   /* darker burgundy for contrast       */
  --brand-light:  #8a3554;   /* lighter burgundy                   */
  --cream:        #f5efe6;   /* warm cream background              */
  --cream-soft:   #faf6ef;   /* softer cream / cards               */
  --gold:         #c8a24a;   /* gold accent                        */
  --gold-dark:    #a9842f;   /* gold hover                         */
  --ink:          #2a1820;   /* near-black wine-tinted text        */
  --muted:        #6e5a60;   /* muted text                         */
  --white:        #ffffff;
  --line:         #e6dccc;   /* hairline border on cream           */

  /* Typography */
  --font-head: "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", system-ui, sans-serif;

  /* Layout */
  --maxw: 1180px;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 4px 14px rgba(76, 20, 41, 0.08);
  --shadow-md: 0 14px 40px rgba(76, 20, 41, 0.16);
  --shadow-lg: 0 26px 60px rgba(76, 20, 41, 0.24);
  --header-h: 78px;
  --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.1; font-weight: 700; color: var(--brand-dark); }
h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); }
h2 { font-size: clamp(2.1rem, 4vw, 3.2rem); }
h3 { font-size: 1.5rem; }
p  { color: var(--muted); }

/* ---------- LAYOUT HELPERS ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section--cream { background: var(--cream); }
.section--brand { background: var(--brand); color: var(--cream); }
.text-center { text-align: center; }
.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--gold-dark);
  margin-bottom: 14px;
  display: inline-block;
}
.section-head { max-width: 700px; margin: 0 auto 58px; }
.section-head p { margin-top: 14px; font-size: 1.08rem; }
.lead { font-size: 1.16rem; color: var(--muted); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 30px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.86rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 50px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s;
  white-space: nowrap;
}
.btn--primary { background: var(--gold); color: var(--brand-dark); box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--gold-dark); color: #fff; transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn--ghost { background: transparent; color: var(--brand-dark); border: 2px solid var(--brand); }
.btn--ghost:hover { background: var(--brand); color: var(--cream); transform: translateY(-3px); }
.btn--light { background: var(--cream); color: var(--brand-dark); }
.btn--light:hover { background: #fff; transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn--outline-light { border: 2px solid rgba(245,239,230,.55); color: var(--cream); }
.btn--outline-light:hover { background: var(--cream); color: var(--brand-dark); }

/* =====================================================================
   HEADER (shared, sticky)
   ===================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 246, 239, 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,246,239,.97); }
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h);
}
.logo { display: flex; align-items: center; gap: 12px; font-family: var(--font-head); font-weight: 700; font-size: 1.6rem; color: var(--brand-dark); letter-spacing: .01em; }
.logo-mark {
  width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center; font-size: 1.4rem;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-light) 100%);
  box-shadow: var(--shadow-sm); color: var(--gold);
}
.logo span small { display: block; font-family: var(--font-body); font-weight: 500; font-size: .58rem; letter-spacing: .26em; text-transform: uppercase; color: var(--gold-dark); margin-top: 1px; }

.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-menu a {
  font-family: var(--font-body); font-weight: 500; font-size: .9rem;
  padding: 9px 16px; border-radius: 50px; color: var(--ink);
  transition: color .2s, background .2s;
}
.nav-menu a:hover { color: var(--brand-dark); background: rgba(107,31,58,.07); }
.nav-menu a.active { color: var(--brand-dark); background: rgba(200,162,74,.18); font-weight: 600; }

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

/* Hamburger */
.hamburger {
  display: none; width: 44px; height: 44px; border-radius: 12px;
  position: relative; background: rgba(107,31,58,.08);
}
.hamburger span {
  position: absolute; left: 11px; right: 11px; height: 2.5px; border-radius: 3px;
  background: var(--brand-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)
   ===================================================================== */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(900px 500px at 85% -10%, rgba(200,162,74,.28), transparent 60%),
    radial-gradient(700px 500px at 0% 110%, rgba(107,31,58,.20), transparent 55%),
    linear-gradient(160deg, var(--cream) 0%, var(--cream-soft) 100%);
}
.hero-grid {
  display: grid; grid-template-columns: 1.02fr .98fr; gap: 52px; align-items: center;
  padding: 90px 0 100px;
}
.hero-text h1 { margin-bottom: 20px; }
.hero-text .lead { margin-bottom: 32px; max-width: 520px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 38px; }
.hero-stats { display: flex; gap: 38px; flex-wrap: wrap; }
.hero-stats .stat strong { font-family: var(--font-head); font-size: 2.1rem; color: var(--brand-dark); display: block; line-height: 1; }
.hero-stats .stat span { font-size: .82rem; color: var(--muted); letter-spacing: .02em; }

/* Hero visual: photographic stacked frames */
.hero-art { position: relative; min-height: 480px; }
.hero-photo {
  position: absolute; border-radius: 22px; overflow: hidden; box-shadow: var(--shadow-lg);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo--main { inset: 0 16% 14% 0; }
.hero-photo--accent {
  width: 50%; bottom: 0; right: 0; aspect-ratio: 3/4;
  border: 6px solid var(--cream-soft); animation: float 6s ease-in-out infinite;
}
.hero-badge {
  position: absolute; top: 6%; right: 2%; background: var(--white); color: var(--brand-dark);
  padding: 14px 18px; border-radius: 16px; box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 10px; font-weight: 600; font-family: var(--font-body);
  font-size: .85rem; animation: float 5s ease-in-out infinite reverse; z-index: 2;
}
.hero-badge .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px rgba(200,162,74,.25); }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

/* =====================================================================
   PAGE BANNER (inner pages)
   ===================================================================== */
.page-banner {
  position: relative; padding: 78px 0 70px; text-align: center; color: var(--cream);
  background:
    radial-gradient(700px 360px at 80% -30%, rgba(200,162,74,.42), transparent 60%),
    linear-gradient(150deg, var(--brand-dark) 0%, var(--brand) 100%);
}
.page-banner h1 { color: #fff; margin-bottom: 14px; }
.page-banner p { color: rgba(245,239,230,.86); max-width: 640px; margin: 0 auto; font-size: 1.05rem; }
.breadcrumb { display: flex; gap: 8px; justify-content: center; align-items: center; margin-top: 20px; font-size: .85rem; 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(--gold); opacity: 1; font-weight: 600; }

/* =====================================================================
   CARDS / GRIDS
   ===================================================================== */
.grid { display: grid; gap: 28px; }
.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: 32px; 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;
  font-size: 1.7rem; margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(200,162,74,.20), rgba(107,31,58,.12));
}

/* =====================================================================
   WINE CARDS (featured + list)
   ===================================================================== */
.wine-card { overflow: hidden; padding: 0; display: flex; flex-direction: column; }
.wine-card .thumb { aspect-ratio: 4/3; position: relative; overflow: hidden; }
.wine-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.wine-card:hover .thumb img { transform: scale(1.05); }
.wine-card .tag { position: absolute; top: 14px; left: 14px; background: var(--white); color: var(--brand-dark); font-family: var(--font-body); font-weight: 600; font-size: .68rem; text-transform: uppercase; letter-spacing: .06em; padding: 5px 12px; border-radius: 50px; box-shadow: var(--shadow-sm); }
.wine-card .body { padding: 24px 26px 28px; flex: 1; display: flex; flex-direction: column; }
.wine-card .body .row { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.wine-card .body h3 { font-size: 1.4rem; }
.wine-card .body .price { font-family: var(--font-head); font-weight: 700; color: var(--gold-dark); font-size: 1.3rem; white-space: nowrap; }
.wine-card .vintage { font-family: var(--font-body); font-size: .72rem; text-transform: uppercase; letter-spacing: .14em; color: var(--gold-dark); margin: 4px 0 10px; font-weight: 600; }
.wine-card .body p { font-size: .94rem; }
.wine-card .notes { margin-top: 14px; padding-top: 14px; border-top: 1px dashed var(--line); font-size: .8rem; color: var(--muted); letter-spacing: .02em; }
.wine-card .notes b { color: var(--brand-dark); font-weight: 600; }

/* =====================================================================
   WINE FILTER (wines page)
   ===================================================================== */
.wine-filters { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 50px; }
.wine-filters button {
  padding: 10px 24px; border-radius: 50px; font-family: var(--font-body); font-weight: 600;
  font-size: .82rem; letter-spacing: .04em; text-transform: uppercase;
  background: var(--white); border: 1px solid var(--line); color: var(--brand-dark);
  transition: background .2s, color .2s, border-color .2s;
}
.wine-filters button:hover { background: rgba(107,31,58,.07); }
.wine-filters button.active { background: var(--brand); color: var(--cream); border-color: var(--brand); }

.wine-cat { margin-bottom: 66px; }
.wine-cat:last-child { margin-bottom: 0; }
.wine-cat-head { text-align: center; margin-bottom: 40px; }
.wine-cat-head h2 { font-size: 2.2rem; }
.wine-cat-head .line { width: 70px; height: 3px; background: var(--gold); margin: 14px auto 0; border-radius: 3px; }
.wine-cat.hide { display: none; }

/* =====================================================================
   SPLIT SECTIONS (about teaser / story)
   ===================================================================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 58px; align-items: center; }
.split-visual {
  border-radius: var(--radius); position: relative; overflow: hidden;
  box-shadow: var(--shadow-md); aspect-ratio: 4/5;
}
.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::before { content: "🍇"; flex: none; }

/* =====================================================================
   EXPERIENCE / VISIT TEASER
   ===================================================================== */
.exp-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.exp-card { overflow: hidden; padding: 0; }
.exp-card .ph { aspect-ratio: 3/2; overflow: hidden; }
.exp-card .ph img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.exp-card:hover .ph img { transform: scale(1.05); }
.exp-card .body { padding: 26px 28px 30px; }
.exp-card .body h3 { margin-bottom: 8px; }
.exp-card .meta { font-family: var(--font-body); font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; color: var(--gold-dark); font-weight: 600; margin-bottom: 12px; display: block; }

/* =====================================================================
   AWARDS STRIP
   ===================================================================== */
.awards { background: var(--brand-dark); color: var(--cream); border-radius: var(--radius); padding: 46px 40px; display: grid; grid-template-columns: repeat(4,1fr); gap: 30px; box-shadow: var(--shadow-md); text-align: center; }
.awards .award .yr { font-family: var(--font-body); font-size: .74rem; letter-spacing: .14em; color: var(--gold); text-transform: uppercase; }
.awards .award strong { display: block; font-family: var(--font-head); font-size: 1.5rem; color: #fff; margin: 6px 0; line-height: 1.1; }
.awards .award p { color: rgba(245,239,230,.78); font-size: .86rem; }

/* =====================================================================
   INFO STRIP (hours / location)
   ===================================================================== */
.strip { background: var(--brand-dark); color: var(--cream); border-radius: var(--radius); padding: 42px; 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 { font-size: 1.7rem; }
.strip .item h4 { color: #fff; font-size: 1.1rem; margin-bottom: 4px; }
.strip .item p { color: rgba(245,239,230,.82); font-size: .92rem; }

/* =====================================================================
   TESTIMONIALS
   ===================================================================== */
.testi-grid .card .stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 12px; }
.testi-grid .card p { color: var(--ink); font-style: italic; font-size: 1rem; }
.testi-grid .card .who { margin-top: 20px; display: flex; align-items: center; gap: 12px; }
.testi-grid .card .who img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; flex: none; }
.testi-grid .card .who b { font-family: var(--font-head); font-size: 1.15rem; display: block; color: var(--ink); }
.testi-grid .card .who small { color: var(--muted); }

/* =====================================================================
   CTA BAND
   ===================================================================== */
.cta-band { text-align: center; }
.cta-band .inner {
  background: linear-gradient(150deg, var(--brand) 0%, var(--brand-dark) 100%);
  border-radius: 26px; padding: 70px 40px; color: var(--cream); box-shadow: var(--shadow-lg);
  position: relative; overflow: hidden;
}
.cta-band .inner::after { content: "🍷"; position: absolute; right: -6px; bottom: -34px; font-size: 12rem; opacity: .08; }
.cta-band h2 { color: #fff; margin-bottom: 14px; }
.cta-band p { color: rgba(245,239,230,.88); max-width: 560px; margin: 0 auto 30px; font-size: 1.05rem; }
.cta-band .hero-actions { justify-content: center; margin-bottom: 0; }

/* =====================================================================
   TEAM
   ===================================================================== */
.team-card { text-align: center; }
.team-card .photo { width: 130px; height: 130px; 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.3rem; margin-bottom: 2px; }
.team-card .role { color: var(--gold-dark); font-family: var(--font-body); font-weight: 600; font-size: .76rem; text-transform: uppercase; letter-spacing: .1em; }
.team-card p { font-size: .92rem; margin-top: 10px; }

/* =====================================================================
   VISIT PAGE — experiences list
   ===================================================================== */
.exp-row { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; margin-bottom: 70px; }
.exp-row:last-child { margin-bottom: 0; }
.exp-row .photo { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; box-shadow: var(--shadow-md); }
.exp-row .photo img { width: 100%; height: 100%; object-fit: cover; }
.exp-row.reverse .text { order: -1; }
.exp-row .price-tag { font-family: var(--font-head); font-size: 1.6rem; color: var(--gold-dark); font-weight: 700; margin: 8px 0 4px; }
.exp-row .duration { font-family: var(--font-body); font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); font-weight: 600; }

/* =====================================================================
   CONTACT PAGE
   ===================================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; 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; font-size: 1.4rem; background: linear-gradient(135deg, rgba(200,162,74,.20), rgba(107,31,58,.12)); }
.contact-info .info-item h4 { margin-bottom: 2px; font-size: 1.15rem; }
.contact-info .info-item p, .contact-info .info-item a { color: var(--muted); font-size: .95rem; }
.contact-info .info-item a:hover { color: var(--gold-dark); }

.form { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow-sm); }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--font-body); font-weight: 600; font-size: .85rem; color: var(--brand-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(--gold); box-shadow: 0 0 0 3px rgba(200,162,74,.20); background: #fff; }
.field textarea { resize: vertical; min-height: 130px; }
.field.error input, .field.error textarea { border-color: #c0392b; }
.field .msg { color: #c0392b; font-size: .8rem; margin-top: 5px; display: none; }
.field.error .msg { display: block; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: .8rem; color: var(--muted); margin-top: 10px; }
.form-success { display: none; background: rgba(107,31,58,.08); border: 1px solid rgba(200,162,74,.5); color: var(--brand-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(107,31,58,.05) 0 18px, transparent 18px 36px),
    linear-gradient(150deg, var(--cream) 0%, #e7d9c8 100%);
  border: 1px solid var(--line); display: grid; place-items: center; text-align: center;
}
.map-placeholder .pin { font-size: 2.6rem; animation: float 4s ease-in-out infinite; }
.map-placeholder .label { font-family: var(--font-head); font-weight: 700; font-size: 1.3rem; color: var(--brand-dark); margin-top: 6px; }
.map-placeholder small { color: var(--muted); }

/* =====================================================================
   FOOTER (shared)
   ===================================================================== */
.site-footer { background: var(--brand-dark); color: rgba(245,239,230,.78); padding: 74px 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: 1.25rem; margin-bottom: 18px; letter-spacing: .01em; }
.footer-brand .logo { color: var(--cream); margin-bottom: 16px; }
.footer-brand .logo span small { color: var(--gold); }
.footer-brand p { font-size: .92rem; max-width: 290px; }
.footer-col a, .footer-col p { display: block; color: rgba(245,239,230,.78); font-size: .92rem; padding: 5px 0; transition: color .2s, padding-left .2s; }
.footer-col a:hover { color: var(--gold); 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; font-size: 1.1rem; background: rgba(245,239,230,.08); padding: 0; }
.socials a:hover { background: var(--gold); padding-left: 0; }
.footer-bottom { border-top: 1px solid rgba(245,239,230,.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(--gold); }

/* =====================================================================
   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; }
.no-js .reveal { opacity: 1; transform: none; }

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 980px) {
  .grid-3, .grid-4, .exp-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero-art { min-height: 400px; order: -1; max-width: 480px; }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .split-visual { aspect-ratio: 16/10; max-height: 420px; }
  .exp-row, .exp-row.reverse { grid-template-columns: 1fr; gap: 28px; }
  .exp-row.reverse .text { order: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .awards { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 760px) {
  .section { padding: 66px 0; }
  .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, .awards { grid-template-columns: 1fr; gap: 24px; padding: 30px; }
  .hero-stats { gap: 26px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
}

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