/* ============================================================
   DIMITRA — Grieks Restaurant Woerden
   Design: dark premium Mediterranean, gold accents, 1993 heritage
   ============================================================ */

/* ---------- TOKENS ---------- */
:root {
  --bg:         #1a1a1a;
  --bg-2:       #222222;
  --bg-3:       #2a2a2a;
  --bg-card:    #252525;
  --gold:       #c8922a;
  --gold-light: #d9a84a;
  --gold-dim:   rgba(200,146,42,0.15);
  --white:      #ffffff;
  --off-white:  #f0ece4;
  --grey:       #888880;
  --border:     rgba(200,146,42,0.2);
  --topbar-h:   72px;
  --radius:     4px;
  --radius-lg:  8px;
  --shadow:     0 8px 32px rgba(0,0,0,0.5);
  --shadow-card:0 4px 20px rgba(0,0,0,0.4);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --transition: 0.25s ease;
}

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

/* ---------- MEDIA FILL UTILITY ---------- */
.media,
.img-fill,
figure.photo {
  position: relative;
  overflow: hidden;
}
.media > img,
.img-fill > img,
figure.photo > img,
.gallery img,
.card__media > img,
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---------- CONTAINER ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all var(--transition);
  white-space: nowrap;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
}
.btn--gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn--gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(200,146,42,0.4);
}
.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn--lg { padding: 16px 36px; font-size: 0.95rem; }
.btn--full { width: 100%; justify-content: center; }

/* ---------- SECTION HEADERS ---------- */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 12px;
}
.section-eyebrow.gold { color: var(--gold); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 16px;
}
.section-desc {
  color: var(--grey);
  font-size: 1rem;
  max-width: 480px;
}
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header .section-desc {
  margin: 0 auto;
}

/* ============================================================
   TOPBAR
   ============================================================ */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--topbar-h);
  z-index: 900;
  background: rgba(26,26,26,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition), box-shadow var(--transition);
}
.topbar.scrolled {
  background: rgba(20,20,20,0.98);
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}
.topbar__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}
.topbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-delta {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.logo-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: var(--white);
}
.topbar__nav {
  display: flex;
  gap: 32px;
  flex: 1;
  justify-content: center;
}
.topbar__link {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color var(--transition);
  text-decoration: none;
}
.topbar__link:hover { color: var(--gold); }
.topbar__cta { flex-shrink: 0; }
.mobile-menu__trigger {
  display: none;
  margin-left: auto;
  padding: 8px;
  color: var(--white);
}

/* ============================================================
   MOBILE MENU OVERLAY (kit)
   ============================================================ */
.mobile-menu__overlay {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100svh;
  background: var(--bg);
  z-index: 950;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  overscroll-behavior: contain;
}
.mobile-menu__overlay[aria-hidden="false"] {
  transform: translateX(0);
}
.mobile-menu__panel {
  width: 100%;
  max-width: 400px;
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.mobile-menu__list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 40px;
}
.mobile-menu__item {
  display: block;
  padding: 16px 20px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
  text-decoration: none;
}
.mobile-menu__item:hover { color: var(--gold); }
.mobile-menu__cta {
  margin-top: 16px;
  width: 100%;
  max-width: 280px;
  justify-content: center;
}

/* ============================================================
   HERO (.hero kit)
   ============================================================ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero__media {
  position: absolute;
  inset: 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,26,26,0.3) 0%,
    rgba(26,26,26,0.55) 50%,
    rgba(26,26,26,0.8) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 800px;
}
.hero__eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.eyebrow-line {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.82);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.6;
}
.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.5);
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ============================================================
   WELCOME SECTION
   ============================================================ */
.welcome-section {
  padding: 100px 0;
  background: var(--bg-2);
}
.welcome-section__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.welcome-section__text .section-title {
  margin-bottom: 24px;
}
.section-body {
  color: rgba(255,255,255,0.72);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 20px;
}
.welcome-section__stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.stat {
  flex: 1;
  text-align: center;
}
.stat__number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.stat__label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--grey);
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  flex-shrink: 0;
}
.welcome-section__image {
  position: relative;
}
.welcome-photo {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.welcome-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.welcome-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--bg);
  border: 2px solid var(--gold);
  border-radius: 50%;
  width: 90px;
  height: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-card);
}
.welcome-badge__delta {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.welcome-badge__year {
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey);
}

/* ============================================================
   MENU SECTION (.card-grid kit)
   ============================================================ */
.menu-section {
  padding: 100px 0;
  background: var(--bg);
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--border);
}
.dish-card .card__media {
  aspect-ratio: 1/1;
  overflow: hidden;
  position: relative;
}
.dish-card .card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.dish-card:hover .card__media img {
  transform: scale(1.05);
}
.card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
}
.card__body {
  padding: 20px;
}
.card__header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 10px;
}
.card__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}
.card__price {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--gold);
  flex-shrink: 0;
}
.card__desc {
  font-size: 0.875rem;
  color: var(--grey);
  line-height: 1.6;
}
.menu-cta {
  text-align: center;
}

/* ============================================================
   PROMO SECTION (.cta-band kit)
   ============================================================ */
.promo-section {
  padding: 100px 0;
  background: var(--bg-2);
}
.promo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.promo-card.cta-band {
  position: relative;
  min-height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-image: var(--promo-bg);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  border: 1px solid var(--border);
}
.promo-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(20,15,5,0.92) 0%,
    rgba(20,15,5,0.6) 50%,
    rgba(20,15,5,0.2) 100%
  );
}
.promo-card__content {
  position: relative;
  z-index: 1;
  padding: 40px;
}
.promo-card__tag {
  display: inline-block;
  background: var(--gold-dim);
  color: var(--gold);
  border: 1px solid var(--gold);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: 16px;
}
.promo-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 12px;
}
.promo-card__desc {
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 340px;
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-section {
  padding: 100px 0;
  background: var(--bg);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.review-card.card {
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
}
.review-card__stars {
  display: flex;
  gap: 4px;
}
.star {
  width: 18px;
  height: 18px;
  fill: var(--gold);
}
.review-card__quote {
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  flex: 1;
  font-style: italic;
}
.review-card__author {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.review-card__name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--white);
}
.review-card__meta {
  font-size: 0.8rem;
  color: var(--grey);
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section {
  padding: 100px 0;
  background: var(--bg-2);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px;
}
.contact-item:last-child { margin-bottom: 0; }
.contact-item__icon {
  width: 44px;
  height: 44px;
  background: var(--gold-dim);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.contact-item__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.contact-item__value {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  line-height: 1.5;
}
.contact-item__link {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  transition: color var(--transition);
}
.contact-item__link:hover { color: var(--gold); }
.opening-hours__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--white);
}
.opening-hours__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.opening-hours__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.9rem;
}
.opening-hours__row .day { color: rgba(255,255,255,0.7); }
.opening-hours__row .hours { color: var(--white); font-weight: 500; }
.opening-hours__row.closed .hours { color: var(--grey); font-style: italic; }
.opening-hours__row .hours small { font-size: 0.75em; color: var(--grey); }

/* Contact form */
.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.contact-form__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 28px;
  color: var(--white);
}
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--grey);
}
.form-group input,
.form-group textarea {
  background: var(--bg-3);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 12px 16px;
  transition: border-color var(--transition);
  outline: none;
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

/* ============================================================
   FOOTER (.footer-kit)
   ============================================================ */
.footer-kit {
  background: #111;
  border-top: 1px solid var(--border);
  padding: 72px 0 0;
}
.footer-kit__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 56px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-tagline {
  font-size: 0.875rem;
  color: var(--grey);
  line-height: 1.6;
  margin-bottom: 24px;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--grey);
  transition: all var(--transition);
}
.social-link:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: var(--gold-dim);
}
.footer-col__title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  font-size: 0.9rem;
  color: var(--grey);
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--gold); }
.footer-hours {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-hours li {
  display: flex;
  flex-direction: column;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  gap: 2px;
}
.footer-hours li span:first-child { color: var(--grey); font-size: 0.8rem; }
.closed-text { color: var(--grey) !important; font-style: italic; }
.footer-address p {
  font-size: 0.9rem;
  color: var(--grey);
  line-height: 1.7;
  margin-bottom: 8px;
}
.footer-address a {
  color: var(--grey);
  transition: color var(--transition);
}
.footer-address a:hover { color: var(--gold); }
.footer-kit__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 24px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  gap: 16px;
  flex-wrap: wrap;
}
.footer-credit a {
  color: var(--gold);
  opacity: 0.7;
  transition: opacity var(--transition);
}
.footer-credit a:hover { opacity: 1; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet: 1024px */
@media (max-width: 1024px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .contact-form-wrap { grid-column: span 2; }
  .footer-kit__inner { grid-template-columns: 1fr 1fr; gap: 36px; }
}

/* Mobile: 768px */
@media (max-width: 768px) {
  /* Topbar mobile */
  .topbar__nav,
  .topbar__cta { display: none; }
  .mobile-menu__trigger { display: flex; }

  /* Hero */
  .hero__title { font-size: clamp(2.2rem, 9vw, 3.2rem); }
  .hero__actions { flex-direction: column; align-items: center; }
  .hero__actions .btn { width: 100%; max-width: 320px; justify-content: center; }

  /* Welcome */
  .welcome-section { padding: 72px 0; }
  .welcome-section__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .welcome-section__image { order: -1; }
  .welcome-badge { left: 16px; bottom: -16px; width: 76px; height: 76px; }
  .welcome-section__stats { gap: 0; }

  /* Cards */
  .card-grid { grid-template-columns: 1fr 1fr; gap: 16px; }

  /* Promo */
  .promo-grid { grid-template-columns: 1fr; }
  .promo-card.cta-band { min-height: 320px; }
  .promo-card__content { padding: 28px; }

  /* Reviews */
  .reviews-grid { grid-template-columns: 1fr; }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-form-wrap { grid-column: auto; }

  /* Footer */
  .footer-kit__inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-kit__bottom { flex-direction: column; text-align: center; }

  /* Sections */
  .menu-section, .promo-section, .reviews-section, .contact-section { padding: 72px 0; }
}

/* Small mobile: 480px */
@media (max-width: 480px) {
  .card-grid { grid-template-columns: 1fr; }
  .dish-card .card__media { aspect-ratio: 4/3; }
  .footer-kit__inner { grid-template-columns: 1fr; }
  .welcome-section__stats {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
  .stat-divider {
    width: 48px;
    height: 1px;
    background: var(--border);
  }
  /* Stats: bigger font on mobile so they read clearly */
  .stat__number { font-size: 2.6rem; }
  .stat__label { font-size: 0.85rem; color: rgba(255,255,255,0.65); }
  /* Promo card body text — brighter on mobile for legibility over dark overlay */
  .promo-card__desc { color: rgba(255,255,255,0.9); font-size: 0.9rem; }
  .promo-card__overlay {
    background: linear-gradient(
      to top,
      rgba(15,10,3,0.96) 0%,
      rgba(15,10,3,0.75) 50%,
      rgba(15,10,3,0.3) 100%
    );
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .hero__scroll { animation: none; }
}

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