/* ═══════════════════════════════════════════════
   STEVIG BROOD — Brand Design System
   Olijfgroen #4a5c2f | Goud #c8a96e | Crème #f5f0e8
═══════════════════════════════════════════════ */

/* ─── Custom Properties ─────────────────────── */
:root {
  --green:      #4a5c2f;
  --green-dark: #364421;
  --green-mid:  #5d7339;
  --gold:       #c8a96e;
  --gold-dark:  #a8894e;
  --cream:      #f5f0e8;
  --cream-dark: #ede6d6;
  --white:      #ffffff;
  --dark:       #2c2c2c;
  --dark-soft:  #3d3d3d;
  --text:       #2c2c2c;
  --text-muted: #6b6455;
  --border:     rgba(74,92,47,0.15);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --radius:     10px;
  --radius-lg:  16px;
  --shadow-sm:  0 2px 8px rgba(44,44,44,0.08);
  --shadow-md:  0 6px 24px rgba(44,44,44,0.12);
  --shadow-lg:  0 16px 48px rgba(44,44,44,0.15);

  --container:  1200px;
  --section-py: clamp(64px, 10vw, 120px);
}

/* ─── 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);
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.65;
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ─── Utility ────────────────────────────────── */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap;
}

/* ─── Container ──────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}
.container--narrow { max-width: 720px; }

/* ─── Sections ───────────────────────────────── */
.section { padding: var(--section-py) 0; }
.section--cream { background: var(--cream); }
.section--white { background: var(--white); }
.section--green { background: var(--green); }

.section-header { text-align: center; max-width: 680px; margin: 0 auto 60px; }
.section-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 14px;
}
.section-eyebrow--light { color: var(--gold); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  line-height: 1.12;
  color: var(--dark);
  margin-bottom: 18px;
}
.section-title--light { color: var(--white); }
.section-intro {
  font-size: clamp(16px, 1.8vw, 18px);
  color: var(--text-muted);
  line-height: 1.7;
}

/* ─── Buttons ────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all 0.2s ease;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}
.btn-lg { padding: 16px 36px; font-size: 16px; }
.btn-sm { padding: 9px 18px; font-size: 13px; }
.btn-full { width: 100%; }

.btn-primary {
  background: var(--green);
  color: var(--white);
  border: 2px solid var(--green);
}
.btn-primary:hover { background: var(--green-dark); border-color: var(--green-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn-gold {
  background: var(--gold);
  color: var(--dark);
  border: 2px solid var(--gold);
  font-weight: 700;
}
.btn-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.55);
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.9); }

/* Hero secondary button — gold-outlined for legibility over dark hero */
.btn-hero-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--gold);
  font-weight: 600;
}
.btn-hero-secondary:hover {
  background: var(--gold);
  color: var(--dark);
}

.btn-ghost-light {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

.btn-outline {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
}
.btn-outline:hover { background: var(--green); color: var(--white); transform: translateY(-1px); }

.btn-outline-dark {
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--dark);
}
.btn-outline-dark:hover { background: var(--dark); color: var(--white); transform: translateY(-1px); }

/* ─── HEADER ─────────────────────────────────── */
.site-header {
  position: fixed;
  /* Default: white text for transparent-over-hero state */
}

/* Nav links white when header is transparent (over dark hero) */
.site-header:not(.scrolled) .desktop-nav a {
  color: rgba(255,255,255,0.9);
  text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}
.site-header:not(.scrolled) .desktop-nav a:hover { color: var(--gold); }
.site-header:not(.scrolled) .logo-text { color: var(--white); }
.site-header:not(.scrolled) .hamburger-bar { background: var(--white); }

.site-header {
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: 72px;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.site-header.scrolled {
  background: rgba(245,240,232,0.97);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 16px rgba(44,44,44,0.1);
}
.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-mark {
  font-size: 22px;
  color: var(--green);
  line-height: 1;
}
.logo-text {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--dark);
}

.desktop-nav { margin-left: auto; }
.desktop-nav ul { display: flex; gap: 36px; }
.desktop-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  letter-spacing: 0.01em;
  transition: color 0.2s;
}
.desktop-nav a:hover { color: var(--green); }

.nav-cta { margin-left: 24px; }

/* ─── HAMBURGER ──────────────────────────────── */
.mobile-menu__trigger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border-radius: 6px;
  background: transparent;
  border: none;
  padding: 4px;
  z-index: 1001;
  position: relative;
}
.hamburger-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

/* ─── MOBILE MENU OVERLAY ────────────────────── */
.mobile-menu__overlay {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100dvh;
  min-height: 100svh;
  background: var(--green);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
  pointer-events: none;
}
.mobile-menu__overlay[aria-hidden="false"] {
  transform: translateX(0);
  pointer-events: all;
}
@media (prefers-reduced-motion: reduce) {
  .mobile-menu__overlay { transition: none; }
}

.mobile-menu__panel { display: flex; flex-direction: column; height: 100%; padding: 0 32px 40px; }
.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  margin-bottom: 16px;
}
.mobile-logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.mobile-menu__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  color: var(--white);
  border-radius: 6px;
  background: rgba(255,255,255,0.1);
  transition: background 0.2s;
}
.mobile-menu__close:hover { background: rgba(255,255,255,0.2); }

.mobile-menu__list { display: flex; flex-direction: column; gap: 4px; flex: 1; padding-top: 12px; }
.mobile-menu__item {
  display: block;
  padding: 16px 0;
  font-family: var(--font-display);
  font-size: clamp(28px, 7vw, 40px);
  font-weight: 700;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: color 0.2s, padding-left 0.2s;
  text-decoration: none;
}
.mobile-menu__item:hover { color: var(--gold); padding-left: 8px; }

.mobile-menu__ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}
.mobile-menu__contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.mobile-menu__contact a {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  transition: color 0.2s;
}
.mobile-menu__contact a:hover { color: var(--white); }

/* Open state — body scroll lock */
body.menu-open { overflow: hidden; }

/* ─── HERO ───────────────────────────────────── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
}
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(44,44,44,0.72) 0%,
    rgba(74,92,47,0.45) 60%,
    rgba(44,44,44,0.35) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
  padding-top: 72px; /* header offset */
}
.hero__eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(44px, 8vw, 88px);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 24px;
  max-width: 14ch;
}
.hero__title-line { display: block; }
.hero__title-accent { color: var(--gold); }
.hero__sub {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255,255,255,0.85);
  max-width: 42ch;
  line-height: 1.6;
  margin-bottom: 40px;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.hero__scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.6);
  z-index: 2;
  animation: bounce 2s infinite;
  transition: color 0.2s;
}
.hero__scroll-cue:hover { color: var(--white); }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ─── CARD GRID ──────────────────────────────── */
.card-grid { display: grid; gap: 28px; }
.card-grid--3 { grid-template-columns: repeat(3, 1fr); }

/* ─── CARD — PRODUCT ─────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.card--accent {
  background: var(--cream);
  border: 2px solid var(--border);
}

.card__img-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--cream-dark);
}
.card__img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.card:hover .card__img-wrap img { transform: scale(1.04); }

.card__badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--gold);
  color: var(--dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 4px;
}
.card__body { padding: 24px; }
.card__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.card__desc { color: var(--text-muted); font-size: 14px; line-height: 1.65; margin-bottom: 20px; }
.card__footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.card__price { font-weight: 700; color: var(--green); font-size: 15px; }

/* ─── WORKSHOP SPLIT ─────────────────────────── */
.workshop-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.workshop-split__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.workshop-split__img img { width: 100%; height: 100%; object-fit: cover; }
.workshop-text {
  color: rgba(255,255,255,0.85);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 28px;
}
.workshop-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}
.workshop-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.9);
  font-size: 16px;
}
.icon-check {
  width: 20px; height: 20px;
  flex-shrink: 0;
  color: var(--gold);
}

/* ─── VERHAAL SPLIT ──────────────────────────── */
.verhaal-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.verhaal-split__body p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 16px;
}
.verhaal-split__body p:last-of-type { margin-bottom: 32px; }
.verhaal-split__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.verhaal-split__img img { width: 100%; height: 100%; object-fit: cover; }

/* ─── REVIEWS ────────────────────────────────── */
/* Make review cards equal height with flex column */
.card-grid--3 .card--review {
  padding: 32px;
  border: none;
  display: flex;
  flex-direction: column;
}
.card--review-accent {
  background: var(--green);
}
/* Stretch quote to fill available space so reviewer pinned to bottom */
.card--review .card__quote { flex: 1; }

.card--review-accent .card__quote { color: rgba(255,255,255,0.9); }
.card--review-accent .card__reviewer strong { color: var(--white); }
.card--review-accent .card__reviewer span { color: rgba(255,255,255,0.6); }
.card--review-accent .card__stars span { color: var(--gold); }

.card__stars { font-size: 20px; color: var(--gold); margin-bottom: 16px; letter-spacing: 2px; }
.card__quote {
  font-family: var(--font-display);
  font-size: clamp(16px, 2vw, 19px);
  font-weight: 700;
  line-height: 1.5;
  color: var(--dark);
  margin-bottom: 20px;
  quotes: "„" """ "‚" "'";
}
.card__reviewer { display: flex; flex-direction: column; gap: 4px; }
.card__reviewer strong { font-size: 14px; font-weight: 600; color: var(--dark); }
.card__reviewer span { font-size: 13px; color: var(--text-muted); }

.reviews-meta { display: flex; justify-content: center; margin-top: 48px; }
.reviews-rating {
  display: flex; align-items: center; gap: 20px;
  background: var(--white);
  padding: 24px 36px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.rating-score {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
}
.rating-stars { font-size: 22px; color: var(--gold); letter-spacing: 2px; margin-bottom: 4px; }
.rating-label { font-size: 13px; color: var(--text-muted); }

/* ─── CTA BAND ───────────────────────────────── */
.cta-band {
  background: var(--green);
  padding: clamp(56px, 8vw, 96px) 0;
}
.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}
.cta-band__title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 12px;
}
.cta-band__sub { color: rgba(255,255,255,0.75); font-size: 17px; max-width: 42ch; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 16px; flex-shrink: 0; }

/* ─── LOCATIE ────────────────────────────────── */
.locatie-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.card--locatie { padding: 36px; background: var(--white); box-shadow: var(--shadow-sm); }
.locatie-card__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--border);
}

.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td {
  padding: 10px 0;
  font-size: 15px;
  border-bottom: 1px solid var(--cream-dark);
  color: var(--text);
}
.hours-table td:last-child { text-align: right; font-weight: 600; }
.hours-table__highlight td { color: var(--green); font-weight: 600; }
.hours-table__closed td { color: var(--text-muted); }

.locatie-address { line-height: 1.9; margin-bottom: 24px; }
.locatie-address a { color: var(--green); font-weight: 500; }
.locatie-address a:hover { text-decoration: underline; }
.locatie-map { margin-top: 8px; border-radius: 8px; overflow: hidden; }

/* ─── CONTACT FORM ───────────────────────────── */
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; gap: 20px; }
.form-row--2 { grid-template-columns: 1fr 1fr; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 0.01em;
}
.form-group label span { color: var(--green); }
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--dark);
  background: var(--white);
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(74,92,47,0.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }

/* ─── FOOTER ─────────────────────────────────── */
.footer-kit {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  padding: clamp(56px, 8vw, 80px) 0 0;
}
.footer-kit__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-logo .logo-mark { font-size: 20px; color: var(--gold); }
.footer-tagline { font-size: 14px; line-height: 1.7; max-width: 32ch; margin-bottom: 12px; }
.footer-kvk { font-size: 12px; color: rgba(255,255,255,0.4); }

.footer-kit__col h4 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer-kit__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-kit__col a {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}
.footer-kit__col a:hover { color: var(--white); }
.footer-kit__col p { font-size: 14px; line-height: 1.8; }
.footer-kit__col address { font-size: 14px; line-height: 1.85; }

.footer-kit__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}
.footer-kit__bottom a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-kit__bottom a:hover { color: var(--white); }

/* ═══════════════════════════════════════════════
   RESPONSIVE — TABLET
═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .card-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .workshop-split { grid-template-columns: 1fr; gap: 40px; }
  .workshop-split__img { order: -1; max-height: 360px; }
  .verhaal-split { grid-template-columns: 1fr; gap: 40px; }
  .verhaal-split__img { order: -1; max-height: 360px; }
  .footer-kit__grid { grid-template-columns: 1fr 1fr; }
  .cta-band__inner { flex-direction: column; text-align: center; }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — MOBILE
═══════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Show hamburger, hide desktop nav */
  .mobile-menu__trigger { display: flex; }
  .desktop-nav { display: none; }
  .nav-cta { display: none; }

  /* Header trigger alignment */
  .header-inner { gap: 0; }
  .site-logo { flex: 1; }

  /* Card grids to single column */
  .card-grid--3 { grid-template-columns: 1fr; }
  .locatie-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer-kit__grid { grid-template-columns: 1fr; gap: 32px; }

  /* CTA */
  .cta-band__actions { flex-direction: column; width: 100%; }
  .cta-band__actions .btn { width: 100%; justify-content: center; }

  /* Hero */
  .hero__title { font-size: clamp(36px, 10vw, 52px); max-width: none; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }

  /* Form */
  .form-row--2 { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero { min-height: 100svh; }
  .section-title { font-size: clamp(28px, 8vw, 36px); }
}
