/* ═══════════════════════════════════════════════════════
   BISTRO 'T PAKHUIS — STYLESHEET
   Palette: donkerbruin #4a3728 | taupe #c8b99a | crème #f5f0e8 | zwart #1a1a1a | wit #ffffff
   Fonts: Playfair Display (display/headings) + Lato (body)
════════════════════════════════════════════════════════ */

/* ── RESET & TOKENS ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --brown:       #4a3728;
  --brown-dark:  #2e2017;
  --brown-mid:   #6b4f3a;
  --taupe:       #c8b99a;
  --taupe-light: #ddd0bb;
  --cream:       #f5f0e8;
  --cream-dark:  #ede5d8;
  --near-black:  #1a1a1a;
  --white:       #ffffff;
  --text:        #2c2018;
  --text-muted:  #6b5748;

  --ff-display: 'Playfair Display', Georgia, serif;
  --ff-body:    'Lato', system-ui, sans-serif;

  --radius: 6px;
  --shadow: 0 4px 24px rgba(74, 55, 40, 0.15);
  --shadow-hover: 0 8px 36px rgba(74, 55, 40, 0.25);

  --container: 1120px;
  --section-gap: clamp(4rem, 8vw, 7rem);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-body);
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  line-height: 1.7;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

/* ── GLOBAL IMAGE FILL ── */
.media, .img-fill, figure.photo { position: relative; overflow: hidden; }
.media > img, .img-fill > img, figure.photo > img,
.gallery img, .card img, .hero__img,
.sfeerstrip__item .media img { width: 100%; height: 100%; object-fit: cover; display: block; }

img { max-width: 100%; }

a { color: inherit; text-decoration: none; }
address { font-style: normal; }

/* ── TYPOGRAPHY ── */
h1,h2,h3 { font-family: var(--ff-display); line-height: 1.2; }
h4 { font-family: var(--ff-body); font-weight: 700; letter-spacing: .05em; text-transform: uppercase; font-size: .8rem; }

/* ── UTILITIES ── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 2.5rem);
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.section-eyebrow {
  display: block;
  font-family: var(--ff-body);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: .75rem;
}
.section-eyebrow--light { color: var(--taupe-light); }

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--brown-dark);
  margin-bottom: 1.25rem;
}
.section-title--light { color: var(--cream); }

.section-intro {
  max-width: 680px;
  margin: 0 auto 3rem;
  color: var(--text-muted);
  text-align: center;
  font-size: 1.05rem;
}
.section-intro--light { color: var(--taupe-light); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .7rem 1.6rem;
  border-radius: var(--radius);
  font-family: var(--ff-body);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .22s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--brown);
  color: var(--white);
  border-color: var(--brown);
}
.btn-primary:hover { background: var(--brown-dark); border-color: var(--brown-dark); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.55);
}
.btn-outline:hover { background: rgba(255,255,255,.12); border-color: var(--white); }

.btn-header {
  background: var(--brown);
  color: var(--white);
  border-color: var(--brown);
  padding: .55rem 1.2rem;
  font-size: .8rem;
}
.btn-header:hover { background: var(--brown-dark); }

.btn-large { padding: .9rem 2rem; font-size: .95rem; }
.btn-full { width: 100%; justify-content: center; }


/* ═══════════════════════════════════════════════════════
   HEADER / NAV
════════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(245, 240, 232, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(74, 55, 40, 0.12);
  transition: box-shadow .3s;
}
.site-header.scrolled { box-shadow: 0 2px 20px rgba(74, 55, 40, 0.12); }

.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 2.5rem);
  height: 68px;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.logo { display: flex; flex-direction: column; line-height: 1; }
.logo-name {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brown-dark);
}
.logo-sub {
  font-family: var(--ff-body);
  font-size: .65rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-top: 1px;
}

.desktop-nav { margin-left: auto; }
.desktop-nav ul { display: flex; gap: 2rem; list-style: none; }
.desktop-nav a {
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--brown);
  transition: color .2s;
  position: relative;
}
.desktop-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 2px;
  background: var(--brown);
  transform: scaleX(0);
  transition: transform .22s ease;
  transform-origin: left;
}
.desktop-nav a:hover::after { transform: scaleX(1); }
.desktop-nav a:hover { color: var(--brown-dark); }

.mobile-menu__trigger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--brown-dark);
  padding: .25rem;
  margin-left: auto;
}

@media (max-width: 820px) {
  .desktop-nav { display: none; }
  .btn-header { display: none; }
  .mobile-menu__trigger { display: flex; }
}


/* ═══════════════════════════════════════════════════════
   MOBILE MENU OVERLAY (kit compliant)
════════════════════════════════════════════════════════ */
.mobile-menu__overlay {
  position: fixed;
  inset: 0;
  z-index: 500;
  width: 100%;
  height: 100svh;
  height: 100dvh;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .28s cubic-bezier(.4,0,.2,1);
  visibility: hidden;
}
.mobile-menu__overlay.is-open {
  transform: translateX(0);
  visibility: visible;
}

.mobile-menu__panel--root {
  display: flex;
  flex-direction: column;
  min-height: 100svh;
  min-height: 100dvh;
  padding: 0;
}

.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(74, 55, 40, 0.12);
  background: var(--brown-dark);
}
.mobile-menu__brand {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--cream);
}
.mobile-menu__close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--taupe);
  padding: .25rem;
}
.mobile-menu__close:hover { color: var(--white); }

.mobile-menu__list {
  list-style: none;
  padding: 1.5rem 0;
  flex: 1;
}
.mobile-menu__item {
  display: block;
  padding: 1rem 2rem;
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--brown-dark);
  border-bottom: 1px solid rgba(74,55,40,.06);
  transition: color .2s, padding-left .2s;
}
.mobile-menu__item:hover { color: var(--brown); padding-left: 2.5rem; }

.mobile-menu__footer {
  padding: 1.5rem 2rem 2.5rem;
  border-top: 1px solid rgba(74,55,40,.1);
  background: var(--cream-dark);
}
.mobile-menu__hours {
  margin-top: 1rem;
  text-align: center;
  font-size: .9rem;
  color: var(--text-muted);
}

body.menu-open { overflow: hidden; }


/* ═══════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26,16,8,.45) 0%,
    rgba(26,16,8,.55) 60%,
    rgba(26,16,8,.75) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 10;
  max-width: 760px;
  padding: clamp(1.5rem, 5vw, 2.5rem);
  padding-top: 80px;
}
.hero__eyebrow {
  font-family: var(--ff-body);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: .75rem;
}
.hero__title {
  font-size: clamp(2.6rem, 7vw, 5rem);
  color: var(--white);
  margin-bottom: .5rem;
  text-shadow: 0 2px 16px rgba(0,0,0,.35);
}
.hero__subtitle {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--taupe-light);
  margin-bottom: 1.25rem;
}
.hero__intro {
  font-size: clamp(.9rem, 1.5vw, 1.05rem);
  color: rgba(245,240,232,.85);
  margin-bottom: 2rem;
  line-height: 1.65;
}
.hero__ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}


/* ═══════════════════════════════════════════════════════
   SFEERSTRIP
════════════════════════════════════════════════════════ */
.sfeerstrip {
  background: var(--brown-dark);
}
.sfeerstrip__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.sfeerstrip__item {
  position: relative;
  overflow: hidden;
}
.sfeerstrip__item .media {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.sfeerstrip__item .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.sfeerstrip__item:hover .media img { transform: scale(1.04); }
.sfeerstrip__caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: .75rem 1rem;
  background: linear-gradient(to top, rgba(26,16,8,.8), transparent);
  color: var(--taupe-light);
  font-family: var(--ff-display);
  font-style: italic;
  font-size: .9rem;
  text-align: center;
}

@media (max-width: 600px) {
  .sfeerstrip__grid { grid-template-columns: 1fr; }
  .sfeerstrip__item .media { aspect-ratio: 16/9; }
}


/* ═══════════════════════════════════════════════════════
   OVER ONS
════════════════════════════════════════════════════════ */
.over-section {
  background: var(--cream);
  padding: var(--section-gap) 0;
}

.over-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.over-text h2 { margin-bottom: 1.5rem; }
.over-text p {
  color: var(--text);
  margin-bottom: 1.1rem;
  font-size: 1rem;
  line-height: 1.75;
}
.over-signature {
  font-family: var(--ff-display);
  font-style: italic;
  color: var(--brown);
  font-size: 1.05rem;
  margin-top: 1.5rem;
  border-left: 3px solid var(--taupe);
  padding-left: 1rem;
}

.over-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.over-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid var(--cream-dark);
  box-shadow: var(--shadow);
  transition: box-shadow .25s, transform .25s;
}
.over-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }

.over-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brown);
  margin-bottom: .9rem;
}

.over-card h3 {
  font-family: var(--ff-body);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: .4rem;
}
.over-card p { font-size: .9rem; color: var(--text); line-height: 1.6; }
.over-card p a { color: var(--brown); text-decoration: underline; }
.over-card p a:hover { color: var(--brown-dark); }
.over-card p em { font-style: italic; color: var(--text-muted); }

@media (max-width: 900px) {
  .over-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .over-details { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .over-details { grid-template-columns: 1fr; }
}


/* ═══════════════════════════════════════════════════════
   MENU SECTION
════════════════════════════════════════════════════════ */
.menu-section {
  background: var(--brown-dark);
  padding: var(--section-gap) 0;
  text-align: center;
}

.card-grid.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.card.menu-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(200, 185, 154, 0.2);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: left;
  position: relative;
  transition: transform .25s, background .25s;
}
.card.menu-card:hover { background: rgba(255,255,255,.08); transform: translateY(-3px); }

.menu-card--featured {
  background: rgba(200, 185, 154, 0.12);
  border-color: rgba(200, 185, 154, 0.4);
}

.menu-card__header {
  display: flex;
  align-items: center;
  gap: .9rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(200,185,154,.2);
}

.menu-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  background: rgba(200, 185, 154, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--taupe);
  flex-shrink: 0;
}

.menu-card__title {
  font-family: var(--ff-display);
  font-size: 1.35rem;
  color: var(--cream);
}

.menu-card__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--brown);
  color: var(--taupe-light);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .25rem .6rem;
  border-radius: 20px;
}

.menu-list { list-style: none; display: flex; flex-direction: column; gap: 1.1rem; }

.menu-list li {
  display: flex;
  flex-direction: column;
  gap: .2rem;
}
.menu-list__dish {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--taupe-light);
  font-weight: 600;
}
.menu-list__desc {
  font-size: .85rem;
  color: rgba(200, 185, 154, 0.65);
  line-height: 1.5;
}

/* Specialiteitenbord */
.specialiteiten-band {
  background: var(--brown);
  border-radius: var(--radius);
  padding: 2rem 2.5rem;
}
.specialiteiten-band__inner {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  text-align: left;
}
.specialiteiten-band__icon {
  color: var(--taupe);
  flex-shrink: 0;
  margin-top: .15rem;
}
.specialiteiten-band__text h3 {
  font-family: var(--ff-display);
  font-size: 1.35rem;
  color: var(--cream);
  margin-bottom: .6rem;
}
.specialiteiten-band__text p {
  color: var(--taupe-light);
  font-size: .95rem;
  line-height: 1.65;
}

@media (max-width: 840px) {
  .card-grid.menu-grid { grid-template-columns: 1fr; }
  .specialiteiten-band__inner { flex-direction: column; }
}


/* ═══════════════════════════════════════════════════════
   WIJNKAART
════════════════════════════════════════════════════════ */
.wijn-section {
  background: var(--cream-dark);
  padding: var(--section-gap) 0;
}

.wijn-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.wijn-text .section-title { color: var(--brown-dark); }

.wijn-text p {
  color: var(--text);
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.75;
}

.wijn-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: 1.25rem;
}
.wijn-chip {
  background: var(--brown);
  color: var(--taupe-light);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: .35rem .85rem;
  border-radius: 20px;
}

.wijn-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.wijn-card {
  background: var(--white);
  border: 1px solid var(--taupe-light);
  border-radius: var(--radius);
  padding: 1.75rem 1.25rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s;
}
.wijn-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.wijn-card__icon { color: var(--brown); margin-bottom: .85rem; display: flex; justify-content: center; }
.wijn-card__label {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: .95rem;
  color: var(--brown-dark);
}

@media (max-width: 860px) {
  .wijn-inner { grid-template-columns: 1fr; }
}


/* ═══════════════════════════════════════════════════════
   CTA BAND — RESERVEREN
════════════════════════════════════════════════════════ */
.cta-band {
  background: var(--brown);
  padding: var(--section-gap) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    rgba(200,185,154,.03) 0px,
    rgba(200,185,154,.03) 1px,
    transparent 1px,
    transparent 14px
  );
  pointer-events: none;
}

.cta-band__inner { position: relative; z-index: 1; }
.cta-band__title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--cream);
  margin-bottom: 1rem;
}
.cta-band__intro {
  max-width: 580px;
  margin: 0 auto 2.5rem;
  color: var(--taupe-light);
  font-size: 1.05rem;
}

.cta-band__contacts {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.cta-contact-block {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(245,240,232,.08);
  border: 1px solid rgba(200,185,154,.25);
  border-radius: var(--radius);
  padding: 1.25rem 2rem;
  text-align: left;
  transition: background .22s, transform .22s;
  min-width: 240px;
}
.cta-contact-block:hover { background: rgba(245,240,232,.15); transform: translateY(-2px); }

.cta-contact-block__icon {
  color: var(--taupe);
  flex-shrink: 0;
}
.cta-contact-block__label {
  display: block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: .2rem;
}
.cta-contact-block__value {
  display: block;
  font-family: var(--ff-display);
  font-size: 1.15rem;
  color: var(--cream);
}

/* Hours grid */
.cta-band__hours {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 0;
  background: rgba(0,0,0,.15);
  border-radius: var(--radius);
  margin: 0 auto 2.5rem;
  max-width: 600px;
  overflow: hidden;
}

.hours-block {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  padding: 1.25rem 1rem;
}
.hours-block--closed { opacity: .5; }

.hours-block__icon { color: var(--taupe); flex-shrink: 0; }
.hours-block__info { display: flex; flex-direction: column; }
.hours-block__day {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--taupe);
}
.hours-block__time {
  font-family: var(--ff-display);
  font-size: 1rem;
  color: var(--cream);
}

.hours-divider {
  width: 1px;
  background: rgba(200,185,154,.2);
  align-self: stretch;
}

.cta-band__actions { margin-top: 1rem; }

@media (max-width: 600px) {
  .cta-band__contacts { flex-direction: column; align-items: stretch; }
  .cta-contact-block { min-width: auto; }
  .cta-band__hours { flex-direction: column; max-width: 280px; }
  .hours-divider { width: auto; height: 1px; }
}


/* ═══════════════════════════════════════════════════════
   FOOTER KIT
════════════════════════════════════════════════════════ */
.footer-kit {
  background: var(--brown-dark);
  color: var(--taupe-light);
  padding: clamp(3rem, 6vw, 5rem) 0 2rem;
}

.footer-kit__grid {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.2fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-kit__name {
  font-family: var(--ff-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: .5rem;
}
.footer-kit__tagline {
  font-size: .9rem;
  line-height: 1.6;
  color: var(--taupe);
}

.footer-kit__col h4 {
  color: var(--taupe);
  margin-bottom: 1rem;
  font-size: .7rem;
  letter-spacing: .12em;
}
.footer-kit__col address p,
.footer-kit__col p {
  font-size: .9rem;
  margin-bottom: .5rem;
  line-height: 1.65;
  color: var(--taupe-light);
}
.footer-kit__col a { color: var(--taupe-light); }
.footer-kit__col a:hover { color: var(--white); text-decoration: underline; }

/* Footer hours table */
.footer-hours { border-collapse: collapse; width: 100%; font-size: .9rem; }
.footer-hours td { padding: .25rem 0; vertical-align: top; }
.footer-hours td:first-child { width: 50%; color: var(--taupe); padding-right: .75rem; }
.footer-hours td:last-child { color: var(--taupe-light); }
.footer-hours--closed td { opacity: .5; }

/* Review links */
.footer-review-text { font-size: .9rem; margin-bottom: .75rem; }
.footer-review-links { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.footer-review-links li {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .9rem;
  color: var(--taupe-light);
}
.footer-review-links svg { color: var(--taupe); flex-shrink: 0; }

.footer-kit__bottom {
  border-top: 1px solid rgba(200,185,154,.12);
  padding-top: 1.5rem;
  text-align: center;
  font-size: .8rem;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .footer-kit__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 520px) {
  .footer-kit__grid { grid-template-columns: 1fr; gap: 2rem; }
}


/* ═══════════════════════════════════════════════════════
   SCROLL ANIMATION
════════════════════════════════════════════════════════ */
.reveal {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .55s ease, transform .55s ease;
  }
  .reveal.is-visible {
    opacity: 1;
    transform: none;
  }
}


/* ═══════════════════════════════════════════════════════
   MOBILE EXTRA
════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .hero__title { font-size: 2.4rem; }
  .hero__ctas { flex-direction: column; align-items: center; }
  .btn-large { width: 100%; justify-content: center; }
}
