/* ═══════════════════════════════════════════════
   BRASSERIE L'OEUF — Stylesheet
   Brand: Goud #F5C200 | Bosgroen #1A7A5E | Donkerbruin #2C1A0E
═══════════════════════════════════════════════ */

/* ── 1. Custom Properties ──────────────────── */
:root {
  --gold:        #F5C200;
  --gold-dark:   #D4860A;
  --green:       #1A7A5E;
  --green-dark:  #145e48;
  --brown:       #2C1A0E;
  --brown-mid:   #3d2514;
  --cream:       #FAF6EF;
  --cream-mid:   #F0E8D6;
  --white:       #FFFFFF;
  --text:        #2C1A0E;
  --text-light:  #5a3e28;
  --text-muted:  #7a6555;

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

  --radius:      8px;
  --radius-lg:   16px;
  --shadow-sm:   0 2px 8px rgba(44,26,14,.10);
  --shadow-md:   0 4px 20px rgba(44,26,14,.15);
  --shadow-lg:   0 8px 40px rgba(44,26,14,.20);

  --header-h:    72px;
  --transition:  .25s ease;
}

/* ── 2. Reset & Base ───────────────────────── */
*, *::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(--text); background: var(--white); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── 3. Image Fill Utility (CRITICAL: no letterboxing) ── */
.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; }

/* ── 4. Typography ─────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.15; }
p { line-height: 1.7; }

/* ── 5. Layout Utilities ───────────────────── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 clamp(1rem, 4vw, 2.5rem); }
.section { padding: clamp(4rem, 8vw, 7rem) 0; }
.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; }

/* ── 6. Buttons ────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .75rem 1.75rem; border-radius: var(--radius);
  font-family: var(--font-body); font-size: .95rem; font-weight: 600;
  line-height: 1; transition: background var(--transition), color var(--transition),
    border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.btn svg { width: 1.1em; height: 1.1em; flex-shrink: 0; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-gold { background: var(--gold); color: var(--brown); }
.btn-gold:hover { background: var(--gold-dark); color: var(--white); box-shadow: var(--shadow-md); }

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

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

.btn-outline-gold { background: transparent; color: var(--gold); border: 2px solid var(--gold); }
.btn-outline-gold:hover { background: var(--gold); color: var(--brown); }

.btn-outline-white { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.6); }
.btn-outline-white:hover { background: rgba(255,255,255,.15); border-color: var(--white); }

.btn-sm { padding: .55rem 1.25rem; font-size: .875rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── 7. Section Intro ──────────────────────── */
.section-label { font-family: var(--font-body); font-size: .8rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: .5rem; }
.section-label--gold { color: var(--gold); }
.section-title { font-size: clamp(2rem, 3.5vw, 2.8rem); color: var(--brown); margin-bottom: 1rem; }
.section-title--white { color: var(--white); }
.section-desc { font-size: 1.05rem; color: var(--text-light); max-width: 56ch; }
.section-desc--light { color: rgba(255,255,255,.85); }
.section-intro { margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-intro--light .section-title { color: var(--white); }
.section-intro--light .section-desc { color: rgba(255,255,255,.8); }

/* ── 8. Header / Nav ───────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  height: var(--header-h);
  background: rgba(44,26,14,.92); backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(245,194,0,.15);
  transition: background var(--transition);
}
.header-inner { max-width: 1180px; margin: 0 auto; padding: 0 clamp(1rem, 4vw, 2.5rem); height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }

.site-logo { display: flex; align-items: center; gap: .6rem; text-decoration: none; }
.logo-icon { width: 36px; height: 36px; flex-shrink: 0; }
.logo-text { font-family: var(--font-display); font-size: 1.5rem; color: var(--white); letter-spacing: .01em; }
.logo-text strong { color: var(--gold); }
.logo-text--white { color: var(--white); }

.desktop-nav { display: flex; align-items: center; gap: 1.75rem; }
.desktop-nav a { font-size: .9rem; font-weight: 500; color: rgba(255,255,255,.85); transition: color var(--transition); }
.desktop-nav a:hover { color: var(--gold); }
.nav-cta { display: flex; align-items: center; gap: .4rem; padding: .5rem 1.2rem; background: var(--gold); color: var(--brown) !important; border-radius: var(--radius); font-weight: 600 !important; }
.nav-cta svg { width: 1em; height: 1em; }
.nav-cta:hover { background: var(--gold-dark); color: var(--white) !important; }

/* ── 9. Mobile Menu Trigger (hamburger) ─────── */
.mobile-menu__trigger {
  display: none; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: var(--radius);
  background: rgba(245,194,0,.1);
  transition: background var(--transition);
  z-index: 1100;
  position: relative;
}
.mobile-menu__trigger:hover { background: rgba(245,194,0,.2); }
.hamburger { display: flex; flex-direction: column; gap: 5px; width: 22px; }
.hamburger span { display: block; height: 2px; background: var(--white); border-radius: 2px; transition: transform var(--transition), opacity var(--transition); transform-origin: center; }

/* Hamburger → X when open */
.mobile-menu__trigger[aria-expanded="true"] .hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu__trigger[aria-expanded="true"] .hamburger span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.mobile-menu__trigger[aria-expanded="true"] .hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

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

/* ── 10. MOBILE MENU — Fullscreen Overlay Kit ── */
.mobile-menu__overlay {
  position: fixed; inset: 0;
  width: 100%; height: 100svh;
  background: var(--brown);
  z-index: 1000;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
  overscroll-behavior: contain;
}
.mobile-menu__overlay.is-open {
  transform: translateX(0);
}
.mobile-menu__overlay[aria-hidden="true"] { pointer-events: none; }
.mobile-menu__overlay[aria-hidden="false"] { pointer-events: auto; }

body.menu-open { overflow: hidden; }

.mobile-menu__panel { display: flex; flex-direction: column; flex: 1; padding: 1.5rem; }
.mobile-menu__header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 2.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid rgba(245,194,0,.2); }
.mobile-menu__close { display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: var(--radius); color: var(--white); transition: background var(--transition); }
.mobile-menu__close:hover { background: rgba(255,255,255,.1); }
.mobile-menu__close svg { width: 24px; height: 24px; }

.mobile-menu__list { flex: 1; display: flex; flex-direction: column; gap: .25rem; }
.mobile-menu__item {
  display: block; width: 100%;
  padding: 1rem 1.25rem;
  font-family: var(--font-display); font-size: 1.6rem; font-weight: 700;
  color: rgba(255,255,255,.85);
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
  text-align: left;
}
.mobile-menu__item:hover { background: rgba(245,194,0,.1); color: var(--gold); }

.mobile-menu__footer { padding-top: 2rem; margin-top: auto; border-top: 1px solid rgba(245,194,0,.2); display: flex; flex-direction: column; gap: .75rem; }

/* ── 11. HERO ──────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: flex-end;
  padding-bottom: clamp(3rem, 8vw, 6rem);
  padding-top: var(--header-h);
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero__gradient {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(44,26,14,.85) 0%,
    rgba(44,26,14,.5) 40%,
    rgba(44,26,14,.15) 70%,
    transparent 100%
  );
}
.hero__content {
  position: relative; z-index: 1;
  max-width: 1180px; width: 100%;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
}
.hero__eyebrow { font-family: var(--font-body); font-size: .8rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; color: var(--gold); margin-bottom: .75rem; }
.hero__title { font-size: clamp(2.4rem, 5.5vw, 4.5rem); color: var(--white); max-width: 16ch; margin-bottom: 1.25rem; text-shadow: 0 2px 20px rgba(0,0,0,.4); }
.hero__sub { font-size: clamp(1rem, 1.5vw, 1.2rem); color: rgba(255,255,255,.85); max-width: 50ch; margin-bottom: 2rem; }
.hero__ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero__scroll {
  position: absolute; bottom: 1.5rem; right: 2rem; z-index: 1;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.15); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); transition: background var(--transition);
  animation: bounce 2s ease-in-out infinite;
}
.hero__scroll:hover { background: var(--gold); color: var(--brown); }
.hero__scroll svg { width: 20px; height: 20px; }
@keyframes bounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(6px)} }

/* ── 12. Opening Strip ─────────────────────── */
.opening-strip { background: var(--brown); padding: clamp(1.25rem, 3vw, 1.75rem) 0; border-top: 2px solid var(--gold); }
.opening-strip__inner { display: flex; align-items: center; gap: clamp(1rem, 3vw, 2.5rem); flex-wrap: wrap; }
.opening-item { display: flex; align-items: center; gap: .85rem; flex: 1 1 160px; }
.opening-item svg { width: 28px; height: 28px; color: var(--gold); flex-shrink: 0; }
.opening-item > div { display: flex; flex-direction: column; }
.opening-item strong { font-size: .9rem; color: var(--white); line-height: 1.2; }
.opening-item span { font-size: .82rem; color: rgba(255,255,255,.65); }
.opening-item--cta { flex: 0 0 auto; margin-left: auto; }
.opening-divider { width: 1px; height: 40px; background: rgba(245,194,0,.25); flex-shrink: 0; }
@media (max-width: 640px) {
  .opening-divider { display: none; }
  .opening-item--cta { flex: 1 1 100%; }
}

/* ── 13. Brasserie Section ─────────────────── */
.brasserie-section { background: var(--cream); }
.brasserie-split { display: grid; grid-template-columns: 55% 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.brasserie-split__image .img-fill img { min-height: 380px; }
.brasserie-split__image .img-fill { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.brasserie-split__content h3 { font-size: 1.5rem; color: var(--brown); margin-bottom: 1rem; }
.brasserie-split__content p { color: var(--text-light); margin-bottom: 1.5rem; }

.menu-highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 2rem; }
.menu-item { display: flex; align-items: center; gap: .85rem; background: var(--white); border-radius: var(--radius); padding: .75rem; box-shadow: var(--shadow-sm); }
.menu-item__img { width: 64px; height: 64px; border-radius: 6px; flex-shrink: 0; overflow: hidden; }
.menu-item__img img { width: 100%; height: 100%; object-fit: cover; }
.menu-item__text { display: flex; flex-direction: column; gap: .2rem; }
.menu-item__text strong { font-size: .9rem; color: var(--brown); }
.menu-item__text span { font-size: .8rem; color: var(--text-muted); }

.brasserie-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

@media (max-width: 768px) {
  .brasserie-split { grid-template-columns: 1fr; }
  .menu-highlights { grid-template-columns: 1fr 1fr; }
}

/* ── 14. Padel Section ─────────────────────── */
.padel-section { position: relative; overflow: hidden; padding: clamp(4rem, 8vw, 7rem) 0; }
.padel-bg-img { position: absolute; inset: 0; z-index: 0; }
.padel-bg-img img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.padel-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(26,122,94,.9) 0%, rgba(44,26,14,.85) 100%); }
.padel-content { position: relative; z-index: 1; }

/* Padel Cards */
.card-grid { display: grid; gap: clamp(1rem, 2vw, 1.5rem); }
.card-grid--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 860px) { .card-grid--3 { grid-template-columns: 1fr; } }

.card { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.15); border-radius: var(--radius-lg); padding: clamp(1.5rem, 3vw, 2rem); backdrop-filter: blur(8px); transition: transform var(--transition), background var(--transition), box-shadow var(--transition); }
.card:hover { transform: translateY(-4px); background: rgba(255,255,255,.12); box-shadow: 0 8px 32px rgba(0,0,0,.2); }

.card--padel .card__icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(245,194,0,.15); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.card--padel .card__icon svg { width: 24px; height: 24px; color: var(--gold); }
.card--padel.card--featured { background: rgba(245,194,0,.12); border-color: var(--gold); }
.card__count { font-family: var(--font-display); font-size: 3.5rem; font-weight: 900; color: var(--gold); line-height: 1; margin-bottom: .25rem; }
.card__title { font-size: 1.15rem; color: var(--white); margin-bottom: .5rem; }
.card__desc { font-size: .9rem; color: rgba(255,255,255,.7); line-height: 1.6; }

.padel-extra { display: flex; gap: 2rem; flex-wrap: wrap; margin: 2.5rem 0; padding: 1.5rem; background: rgba(255,255,255,.06); border-radius: var(--radius); border: 1px solid rgba(255,255,255,.1); }
.padel-extra__item { display: flex; align-items: center; gap: .65rem; font-size: .9rem; color: rgba(255,255,255,.85); }
.padel-extra__item svg { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; }

.padel-cta { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── 15. Reviews Section ───────────────────── */
.reviews-section { background: var(--white); }
.reviews-header { display: flex; align-items: flex-start; gap: 3rem; margin-bottom: 3rem; flex-wrap: wrap; }
.google-rating { display: flex; align-items: center; gap: 1rem; background: var(--cream); border-radius: var(--radius-lg); padding: 1.5rem 2rem; border: 1px solid var(--cream-mid); flex-shrink: 0; }
.google-rating__score { font-family: var(--font-display); font-size: 3rem; font-weight: 900; color: var(--brown); line-height: 1; }
.google-rating__meta { display: flex; flex-direction: column; gap: .4rem; }
.stars { display: flex; gap: 3px; }
.stars svg { width: 18px; height: 18px; }
.google-rating__meta span { font-size: .8rem; color: var(--text-muted); font-weight: 500; }

.card--review { background: var(--cream); border: 1px solid var(--cream-mid); border-radius: var(--radius-lg); padding: 2rem; transition: transform var(--transition), box-shadow var(--transition); }
.card--review:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card__stars { display: flex; gap: 3px; margin-bottom: 1rem; }
.card__stars svg { width: 16px; height: 16px; }
.card__quote { font-family: var(--font-display); font-size: 1rem; color: var(--brown); line-height: 1.6; margin-bottom: 1rem; font-style: italic; quotes: none; }
.card__author { font-size: .82rem; color: var(--text-muted); font-weight: 500; font-style: normal; }

/* ── 16. Feesten Section ───────────────────── */
.feesten-section { background: var(--cream); }
.feesten-split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.feesten-split__image .img-fill { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.feesten-split__content .section-title { font-size: clamp(1.6rem, 3vw, 2.3rem); }
.feesten-split__content > p { color: var(--text-light); margin-bottom: 1.5rem; }

.feesten-cards { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.card--feature { background: var(--white); border: 1px solid var(--cream-mid); border-radius: var(--radius); padding: 1.25rem 1.5rem; display: flex; align-items: flex-start; gap: 1rem; box-shadow: var(--shadow-sm); transition: box-shadow var(--transition), transform var(--transition); }
.card--feature:hover { box-shadow: var(--shadow-md); transform: translateX(4px); }
.card__icon { width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.card__icon--green { background: rgba(26,122,94,.1); }
.card__icon--green svg { color: var(--green); }
.card__icon svg { width: 22px; height: 22px; }
.card--feature h4 { font-size: 1rem; color: var(--brown); margin-bottom: .25rem; }
.card--feature p { font-size: .88rem; color: var(--text-light); line-height: 1.5; margin: 0; }

@media (max-width: 768px) {
  .feesten-split { grid-template-columns: 1fr; }
}

/* ── 17. CTA Band ──────────────────────────── */
.cta-band { background: var(--green); padding: clamp(4rem, 7vw, 6rem) 0; }
.cta-band__inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.cta-band__title { font-size: clamp(1.8rem, 3.5vw, 2.6rem); color: var(--white); margin-bottom: 1rem; }
.cta-band__sub { color: rgba(255,255,255,.8); font-size: 1.05rem; }

.contact-block { background: rgba(255,255,255,.1); border-radius: var(--radius-lg); padding: 1.75rem; margin-bottom: 1.5rem; border: 1px solid rgba(255,255,255,.15); }
.contact-item { display: flex; align-items: flex-start; gap: .85rem; padding: .75rem 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.contact-item:last-child { border-bottom: none; padding-bottom: 0; }
.contact-item svg { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.contact-item a, .contact-item span { font-size: .95rem; color: rgba(255,255,255,.9); line-height: 1.5; }
.contact-item a:hover { color: var(--gold); }

.contact-form { background: var(--white); border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow-lg); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-field { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1rem; }
.form-field:last-of-type { margin-bottom: 1.25rem; }
.form-field label { font-size: .85rem; font-weight: 600; color: var(--brown); }
.form-field input, .form-field textarea {
  width: 100%; padding: .7rem 1rem;
  border: 1.5px solid var(--cream-mid); border-radius: var(--radius);
  font: 1rem/1.5 var(--font-body); color: var(--text);
  background: var(--cream); outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-field input:focus, .form-field textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(26,122,94,.15); }
.form-field textarea { resize: vertical; min-height: 100px; }

@media (max-width: 768px) {
  .cta-band__inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ── 18. Footer ────────────────────────────── */
.footer-kit { background: var(--brown); padding: clamp(3.5rem, 7vw, 5.5rem) 0 0; }
.footer-kit__inner { display: grid; grid-template-columns: 2fr 1.2fr 1.2fr 1fr; gap: clamp(2rem, 4vw, 3.5rem); padding-bottom: 3rem; border-bottom: 1px solid rgba(245,194,0,.15); }

.footer-kit__brand .site-logo--white .logo-text { color: var(--white); }
.footer-kit__tagline { font-size: .9rem; color: rgba(255,255,255,.55); margin: 1rem 0 1.5rem; line-height: 1.6; }
.footer-kit__socials { display: flex; gap: .75rem; }
.footer-kit__socials a { width: 40px; height: 40px; border-radius: var(--radius); background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.6); transition: background var(--transition), color var(--transition); }
.footer-kit__socials a:hover { background: var(--gold); color: var(--brown); }
.footer-kit__socials svg { width: 18px; height: 18px; }

.footer-kit__col h4 { font-family: var(--font-body); font-size: .8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.25rem; }

.footer-kit__list { display: flex; flex-direction: column; gap: .6rem; }
.footer-kit__list li { display: flex; justify-content: space-between; gap: 1rem; font-size: .875rem; color: rgba(255,255,255,.65); }
.footer-kit__list li span:first-child { color: rgba(255,255,255,.5); }

.footer-kit__list--contact { gap: .85rem; }
.footer-kit__list--contact li { flex-direction: row; align-items: flex-start; justify-content: flex-start; gap: .65rem; line-height: 1.5; }
.footer-kit__list--contact svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-kit__list--contact a { color: rgba(255,255,255,.75); }
.footer-kit__list--contact a:hover { color: var(--gold); }

.footer-kit__nav { display: flex; flex-direction: column; gap: .6rem; }
.footer-kit__nav a { font-size: .875rem; color: rgba(255,255,255,.65); transition: color var(--transition); }
.footer-kit__nav a:hover { color: var(--gold); }

.footer-kit__bottom { border-top: 1px solid rgba(245,194,0,.1); padding: 1.25rem 0; }
.footer-kit__bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .5rem; font-size: .8rem; color: rgba(255,255,255,.4); }
.footer-kit__bottom-inner a { color: rgba(245,194,0,.6); }
.footer-kit__bottom-inner a:hover { color: var(--gold); }

@media (max-width: 960px) {
  .footer-kit__inner { grid-template-columns: 1fr 1fr; }
  .footer-kit__brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .footer-kit__inner { grid-template-columns: 1fr; }
  .footer-kit__brand { grid-column: auto; }
}

/* ── 19. Favicon placeholder ───────────────── */
/* ── 20. Transitions / Motion preferences ─── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ── 21. Focus visible ─────────────────────── */
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 3px; }
