/* ═══════════════════════════════════════════════════════
   TOKO RASA BARU — GOUDA
   Design: Indonesisch restaurant, warm & authentiek
   Palette: Bosgroen #4a7c3f | Goud #c8a84b | Wit #fff | Donker #2c2c2c
═══════════════════════════════════════════════════════ */

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

:root {
  --green: #4a7c3f;
  --green-dark: #3a6231;
  --green-light: #5a9c4f;
  --gold: #c8a84b;
  --gold-dark: #a88c3a;
  --gold-light: #e8c86b;
  --dark: #2c2c2c;
  --dark-2: #3a3a3a;
  --cream: #faf7f0;
  --cream-2: #f5efe0;
  --white: #ffffff;
  --text: #333333;
  --text-light: #666666;
  --border: #e0d8c8;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --header-h: 72px;
  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

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

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
  color: var(--dark);
}

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

/* ── Sections ── */
.section { padding: 80px 0; }

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 12px;
}
.section-label--light { color: var(--gold-light); }

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--dark);
  margin-bottom: 20px;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
}

.section-intro {
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
  min-height: 44px;
}
.btn--lg { padding: 16px 36px; font-size: 1rem; }
.btn--sm { padding: 10px 20px; font-size: 0.875rem; }
.btn--full { width: 100%; justify-content: center; }

.btn--gold {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}
.btn--gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(200,168,75,0.4);
}

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

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


/* ═══════════════════════════════════════════════════════
   SITE HEADER
═══════════════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: #4a7c3f !important;
  height: var(--header-h);
  box-shadow: 0 4px 16px rgba(0,0,0,0.35);
}

/* No body padding needed with sticky */
body { padding-top: 0; }

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  flex-shrink: 0;
}
.logo-emblem { display: flex; align-items: center; }
.logo-text { display: flex; flex-direction: column; }
.logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
}
.logo-sub {
  font-size: 0.7rem;
  color: var(--gold-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Desktop nav */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}
.desktop-nav a {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  min-height: 44px;
  display: flex;
  align-items: center;
}
.desktop-nav a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.12);
}
.desktop-nav a.nav-cta {
  background: var(--gold);
  color: var(--dark);
  font-weight: 600;
}
.desktop-nav a.nav-cta:hover {
  background: var(--gold-dark);
}

/* Hamburger */
.mobile-menu__trigger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px 8px;
  min-width: 44px;
  min-height: 44px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.mobile-menu__trigger:hover { background: rgba(255,255,255,0.15); }
.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.mobile-menu__trigger[aria-expanded="true"] .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.mobile-menu__trigger[aria-expanded="true"] .hamburger-line:nth-child(2) {
  opacity: 0;
}
.mobile-menu__trigger[aria-expanded="true"] .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


/* ═══════════════════════════════════════════════════════
   MOBILE MENU OVERLAY (kit-component)
═══════════════════════════════════════════════════════ */
.mobile-menu__overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--green-dark);
  display: flex;
  flex-direction: column;
  height: 100dvh;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu__overlay.is-open {
  transform: translateX(0);
}
.mobile-menu__overlay[aria-hidden="true"] {
  visibility: hidden;
  pointer-events: none;
}
.mobile-menu__overlay.is-open[aria-hidden="false"],
.mobile-menu__overlay.is-open {
  visibility: visible;
  pointer-events: all;
}

.mobile-menu__panel { display: flex; flex-direction: column; flex: 1; }

.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.mobile-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
}
.mobile-menu__close {
  background: transparent;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  transition: background var(--transition);
}
.mobile-menu__close:hover { background: rgba(255,255,255,0.15); }

.mobile-menu__list {
  flex: 1;
  padding: 16px 0;
}
.mobile-menu__item {
  display: block;
  padding: 18px 24px;
  color: rgba(255,255,255,0.9);
  font-size: 1.15rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: all var(--transition);
  min-height: 60px;
  display: flex;
  align-items: center;
}
.mobile-menu__item:hover {
  color: var(--gold-light);
  background: rgba(255,255,255,0.06);
  padding-left: 32px;
}

.mobile-menu__footer {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.mobile-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 1rem;
  min-height: 54px;
  border: 2px solid rgba(255,255,255,0.4);
  color: var(--white);
  transition: all var(--transition);
  background: transparent;
}
.mobile-cta-btn:hover { background: rgba(255,255,255,0.1); }
.mobile-cta-gold {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}
.mobile-cta-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); }


/* ═══════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__img-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26,50,20,0.82) 0%,
    rgba(44,44,44,0.5) 60%,
    rgba(26,50,20,0.3) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,168,75,0.2);
  border: 1px solid rgba(200,168,75,0.5);
  color: var(--gold-light);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  max-width: 700px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.85);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.6;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: rgba(255,255,255,0.6);
  animation: bounce 2s infinite;
  display: flex;
  align-items: center;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}


/* ═══════════════════════════════════════════════════════
   TRUST STRIP
═══════════════════════════════════════════════════════ */
.trust-strip {
  background: var(--green);
  padding: 20px 0;
}
.trust-strip__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.9);
  font-size: 0.875rem;
  font-weight: 500;
}
.trust-item svg { color: var(--gold-light); flex-shrink: 0; }


/* ═══════════════════════════════════════════════════════
   GERECHTEN / CARD GRID
═══════════════════════════════════════════════════════ */
.gerechten-section { background: var(--cream); }

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

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

.card__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.card__body {
  padding: 20px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card__category {
  display: inline-block;
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 8px;
}

.card__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--dark);
  margin-bottom: 10px;
}

.card__desc {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
  flex: 1;
}

/* CTA card */
.card--cta {
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  aspect-ratio: 4/3;
}
.card--cta:hover { transform: translateY(-4px); }
.card--cta__inner {
  padding: 40px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.card-cta-icon { color: var(--gold-light); }
.card--cta h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--white);
}
.card--cta p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}


/* ═══════════════════════════════════════════════════════
   OVER ONS
═══════════════════════════════════════════════════════ */
.over-ons-section { background: var(--white); }

.over-ons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.over-ons__img-side { position: relative; }
.over-ons__img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}
.over-ons__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.over-ons__badge-card {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--gold);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.badge-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
}
.badge-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--dark);
  opacity: 0.75;
  margin-top: 4px;
  white-space: nowrap;
}

.over-ons__text-side p {
  color: var(--text-light);
  font-size: 1rem;
  margin-bottom: 16px;
  line-height: 1.75;
}

.over-ons__highlights {
  margin: 24px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.over-ons__highlights li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
}
.over-ons__highlights li svg { color: var(--green); flex-shrink: 0; }


/* ═══════════════════════════════════════════════════════
   CTA BAND — CATERING
═══════════════════════════════════════════════════════ */
.cta-band {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.cta-band__img-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cta-band__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cta-band__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,60,18,0.88) 0%, rgba(44,44,44,0.65) 100%);
}

.cta-band .container { position: relative; z-index: 1; }

.cta-band__content {
  max-width: 640px;
}
.cta-band__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--white);
  margin-bottom: 20px;
}
.cta-band__sub {
  color: rgba(255,255,255,0.82);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

.cta-band__features {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.cta-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
}
.cta-feature svg { color: var(--gold-light); }


/* ═══════════════════════════════════════════════════════
   INFO / OPENINGSTIJDEN SECTIE
═══════════════════════════════════════════════════════ */
.info-section { background: var(--cream); }

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.info-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--green);
}

.info-card__icon {
  width: 52px;
  height: 52px;
  background: var(--cream-2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--green);
}

.info-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--dark);
  margin-bottom: 16px;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
}
.hours-table td {
  padding: 7px 0;
  font-size: 0.9rem;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.hours-table td:last-child { text-align: right; font-weight: 500; color: var(--green); }
.hours-table tr.hours-closed td { color: var(--text-light); }
.hours-table tr.hours-closed td:last-child { color: #c0392b; }

.location-address {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 16px;
}
.location-contacts { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.contact-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--green);
  font-weight: 500;
  transition: color var(--transition);
}
.contact-link:hover { color: var(--green-dark); }
.contact-link svg { flex-shrink: 0; }

.info-list {
  margin: 16px 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.info-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.5;
}
.info-list li svg { color: var(--green); flex-shrink: 0; margin-top: 2px; }

.info-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.65;
}


/* ═══════════════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════════════ */
.contact-section { background: var(--white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: start;
}

.contact-intro .section-title { color: var(--dark); margin-bottom: 16px; }
.contact-intro p { color: var(--text-light); font-size: 1rem; line-height: 1.7; margin-bottom: 32px; }

.contact-direct { display: flex; flex-direction: column; gap: 16px; }
.contact-direct__item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.contact-direct__item:hover { background: var(--cream-2); }
.contact-direct__icon {
  width: 44px;
  height: 44px;
  background: var(--green);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}
.contact-direct__label { display: block; font-size: 0.75rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.07em; }
.contact-direct__value { display: block; font-size: 0.95rem; font-weight: 600; color: var(--dark); }

/* Form */
.contact-form {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--dark); }
.form-group input,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color var(--transition);
  min-height: 44px;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(74,124,63,0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }


/* ═══════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════ */
.footer-kit__top {
  background: var(--green-dark);
  padding: 60px 0 40px;
}
.footer-kit__bottom {
  background: rgba(0,0,0,0.25);
  padding: 16px 0;
}
.footer-kit__bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-kit__bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}
.footer-demo-note a { color: var(--gold-light); }

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1.2fr 1fr;
  gap: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.footer-logo__name {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
}
.footer-logo__sub { display: block; font-size: 0.72rem; color: rgba(255,255,255,0.6); letter-spacing: 0.05em; }
.footer-tagline { font-size: 0.875rem; color: rgba(255,255,255,0.65); line-height: 1.65; }

.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-light);
  margin-bottom: 16px;
}

.footer-hours { display: flex; flex-direction: column; gap: 6px; }
.footer-hours li {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  gap: 12px;
}
.footer-hours .closed { color: rgba(255,255,255,0.35); }

.footer-contact-list { display: flex; flex-direction: column; gap: 10px; }
.footer-contact-list li { display: flex; align-items: flex-start; gap: 8px; font-size: 0.85rem; color: rgba(255,255,255,0.7); }
.footer-contact-list a { color: rgba(255,255,255,0.7); transition: color var(--transition); display: flex; align-items: center; gap: 8px; }
.footer-contact-list a:hover { color: var(--gold-light); }
.footer-contact-list svg { flex-shrink: 0; margin-top: 2px; color: var(--gold-light); }

.footer-order-btn { display: inline-flex; margin-bottom: 12px; }
.footer-order-note { font-size: 0.8rem; color: rgba(255,255,255,0.55); line-height: 1.5; }


/* ═══════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .over-ons-grid { gap: 40px; }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }
  .section { padding: 56px 0; }

  .desktop-nav { display: none; }
  .mobile-menu__trigger { display: flex; }

  .hero { height: 100svh; min-height: 560px; }
  .hero__title { font-size: clamp(1.8rem, 8vw, 2.8rem); }
  .hero__actions { flex-direction: column; align-items: flex-start; }

  .trust-strip__inner { gap: 20px; justify-content: flex-start; }
  .trust-item { font-size: 0.8rem; }

  .card-grid { grid-template-columns: 1fr; }

  .over-ons-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .over-ons__badge-card { right: 16px; bottom: -16px; }

  .info-grid { grid-template-columns: 1fr; }

  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-form { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }

  .cta-band { padding: 72px 0; }
  .cta-band__features { flex-direction: column; gap: 16px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-kit__bottom .container { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 1.75rem; }
  .hero__sub { font-size: 0.95rem; }
  .trust-strip__inner { flex-direction: column; align-items: flex-start; }
  .section-title { font-size: 1.7rem; }
  .over-ons__badge-card { position: static; margin-top: 16px; display: inline-block; }
  .container { padding: 0 16px; }
}

/* Body lock when mobile menu open */
body.menu-open { overflow: hidden; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* ── CTA card: full width row at bottom of grid ── */
@media (min-width: 769px) {
  .card-grid .card--cta {
    grid-column: 1 / -1;
    aspect-ratio: auto;
    min-height: 180px;
  }
  .card-grid .card--cta .card--cta__inner {
    flex-direction: row;
    text-align: left;
    gap: 40px;
    padding: 40px 56px;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
}
