/* ================================================================
   Bij Hen 2.0 - Demo site stylesheet (v2)
   Palette: gold #C9A84C | brown #3D2B1F | cream #F5F0E8 | green #2D5A3D
   Fonts: Playfair Display (headings) + Inter (body)
   ================================================================ */

/* ── Custom properties ── */
:root {
  --gold:       #C9A84C;
  --gold-dark:  #A8852E;
  --gold-light: #E8D08A;
  --brown:      #3D2B1F;
  --brown-mid:  #5C3D2A;
  --cream:      #F5F0E8;
  --cream-dark: #EDE6D8;
  --green:      #2A6644;
  --green-dark: #1C4A2E;
  --white:      #FFFFFF;
  --text:       #2C1810;
  --text-mid:   #6B4C3B;
  --text-light: #9A7A68;

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

  --radius:   10px;
  --radius-lg: 16px;
  --shadow-sm: 0 2px 8px rgba(61,43,31,.08);
  --shadow-md: 0 4px 20px rgba(61,43,31,.12);
  --shadow-lg: 0 8px 40px rgba(61,43,31,.16);
  --transition: 220ms ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }
input, textarea, button { font-family: 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,
.over-ons__img-wrap img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

/* ── Container ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px) { .container { padding: 0 40px; } }

/* ── Typography ── */
h1, h2, h3 { font-family: var(--font-display); line-height: 1.2; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .9rem;
  border-radius: 50px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn--sm  { padding: 8px 20px; font-size: .8rem; }
.btn--md  { padding: 12px 28px; }
.btn--lg  { padding: 14px 32px; font-size: .95rem; }
.btn--full { width: 100%; justify-content: center; }
.btn--gold {
  background: var(--gold);
  color: var(--brown);
  border-color: var(--gold);
}
.btn--gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  box-shadow: 0 4px 20px rgba(201,168,76,.4);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.7);
}
.btn--outline:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
}
.btn--outline-brown {
  background: transparent;
  color: var(--brown);
  border-color: var(--brown);
}
.btn--outline-brown:hover {
  background: var(--brown);
  color: var(--cream);
}
.btn--outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn--outline-light:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
}

/* ── Section shared ── */
.section {
  padding: 96px 0;
}
.section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}
.section__eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 10px;
}
.section__title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--brown);
  margin-bottom: 16px;
}
.section__sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ══════════════════════════
   TOPBAR
══════════════════════════ */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  background: rgba(61,43,31,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,.2);
  transition: background var(--transition);
}
.topbar__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 32px;
}
@media (min-width: 768px) { .topbar__inner { padding: 0 40px; } }

.topbar__logo {
  display: flex;
  align-items: baseline;
  gap: 4px;
  flex-shrink: 0;
}
.logo-script {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--gold);
  line-height: 1;
}
.logo-sub {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .7rem;
  color: var(--gold-light);
  letter-spacing: .08em;
}
.topbar__nav {
  display: none;
  gap: 8px;
  margin-left: auto;
}
@media (min-width: 900px) { .topbar__nav { display: flex; } }
.topbar__link {
  font-size: .88rem;
  font-weight: 500;
  color: rgba(245,240,232,.75);
  padding: 6px 12px;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}
.topbar__link:hover { color: var(--gold); background: rgba(201,168,76,.1); }

.topbar__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
}
@media (min-width: 900px) { .topbar__actions { margin-left: 0; } }

.topbar__phone {
  display: none;
  align-items: center;
  gap: 6px;
  font-size: .83rem;
  font-weight: 500;
  color: rgba(245,240,232,.7);
  transition: color var(--transition);
}
@media (min-width: 640px) { .topbar__phone { display: flex; } }
.topbar__phone:hover { color: var(--gold); }

.topbar__actions .btn--gold { display: none; }
@media (min-width: 900px) { .topbar__actions .btn--gold { display: inline-flex; } }

/* ── Hamburger ── */
.mobile-menu__trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
  transition: background var(--transition);
}
@media (min-width: 900px) { .mobile-menu__trigger { display: none; } }
.mobile-menu__trigger:hover { background: rgba(201,168,76,.15); }

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 22px;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}
.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; }
.mobile-menu__trigger[aria-expanded="true"] .hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════
   MOBILE MENU (kit fullscreen)
══════════════════════════ */
.mobile-menu__overlay {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100dvh;
  background: var(--brown);
  z-index: 800;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .3s ease;
  visibility: hidden;
}
.mobile-menu__overlay.is-open {
  transform: translateX(0);
  visibility: visible;
}
@media (prefers-reduced-motion: reduce) {
  .mobile-menu__overlay { transition: none; }
}
.mobile-menu__panel--root {
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
  padding: 0 32px 40px;
}
.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  flex-shrink: 0;
}
.mobile-menu__logo {
  font-size: 1.8rem;
}
.mobile-menu__close {
  background: none;
  border: none;
  color: var(--cream);
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
  transition: background var(--transition);
}
.mobile-menu__close:hover { background: rgba(255,255,255,.08); }

.mobile-menu__list {
  flex: 1;
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu__item {
  display: block;
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-style: italic;
  color: var(--cream);
  padding: 10px 0;
  border-bottom: 1px solid rgba(245,240,232,.1);
  transition: color var(--transition), padding-left var(--transition);
}
.mobile-menu__item:hover { color: var(--gold); padding-left: 8px; }

.mobile-menu__footer {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 24px;
}
.mobile-menu__cta { justify-content: center; }
.mobile-menu__tel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(245,240,232,.6);
  font-size: .9rem;
  transition: color var(--transition);
}
.mobile-menu__tel:hover { color: var(--gold); }

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

/* ══════════════════════════
   HERO
══════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(30,20,10,.35) 0%,
    rgba(30,20,10,.5) 50%,
    rgba(30,20,10,.7) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 0 24px;
  padding-top: 68px;
}
.hero__eyebrow {
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
}
.hero__title {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.hero__title-script {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(3.5rem, 10vw, 7rem);
  color: var(--gold);
  line-height: 1;
  text-shadow: 0 2px 20px rgba(0,0,0,.4);
}
.hero__title-tagline {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.1rem, 3vw, 1.7rem);
  color: var(--cream);
  letter-spacing: .02em;
  margin-top: 4px;
}
.hero__sub {
  font-size: 1.05rem;
  color: rgba(245,240,232,.85);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.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(245,240,232,.6);
  animation: bounce 2.2s ease infinite;
  transition: color var(--transition);
}
.hero__scroll:hover { color: var(--gold); }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ══════════════════════════
   AANBOD / DIENSTEN
══════════════════════════ */
.aanbod { background: var(--cream); }

.card-grid { display: grid; gap: 28px; }
.card-grid--4 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.card-grid--3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

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

/* Card media - FILLS container, no letterboxing */
.card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  flex-shrink: 0;
}
.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}
.card:hover .card__media img { transform: scale(1.04); }

.card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(201,168,76,.12);
  color: var(--gold-dark);
  margin-bottom: 14px;
  flex-shrink: 0;
}
.card__title {
  font-size: 1.15rem;
  color: var(--brown);
  margin-bottom: 8px;
}
.card__text {
  font-size: .92rem;
  color: var(--text-mid);
  line-height: 1.65;
  flex: 1;
}
.card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-size: .875rem;
  font-weight: 600;
  color: var(--gold-dark);
  transition: gap var(--transition), color var(--transition);
}
.card__link:hover { gap: 10px; color: var(--brown); }

/* ══════════════════════════
   CTA BAND
══════════════════════════ */
.cta-band {
  background: var(--green);
  padding: 72px 0;
}
.cta-band__inner {
  display: flex;
  flex-direction: column;
  gap: 28px;
  text-align: center;
}
@media (min-width: 768px) {
  .cta-band__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    gap: 48px;
  }
}
.cta-band__title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--white);
  margin-bottom: 8px;
}
.cta-band__sub {
  font-size: 1rem;
  color: rgba(245,240,232,.75);
}
.cta-band__actions {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
  flex-wrap: wrap;
  justify-content: center;
}
@media (min-width: 768px) { .cta-band__actions { justify-content: flex-start; } }

/* ══════════════════════════
   NIEUWS
══════════════════════════ */
.nieuws { background: var(--cream-dark); }
.nieuws-grid { }

.card--nieuws .card__media {
  aspect-ratio: 3 / 2;
}
.card__media--nieuws {
  position: relative;
}
.card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--green);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
}
.card__badge--gold { background: var(--gold); color: var(--brown); }
.card__badge--green { background: var(--green); }

.card__date {
  display: block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 8px;
}

.nieuws__footer {
  text-align: center;
  margin-top: 48px;
}

/* ══════════════════════════
   OVER ONS
══════════════════════════ */
.over-ons { background: var(--cream); }
.over-ons__inner {
  display: grid;
  gap: 64px;
  align-items: center;
}
@media (min-width: 900px) {
  .over-ons__inner {
    grid-template-columns: 1fr 1fr;
  }
}

.over-ons__media {
  position: relative;
}
.over-ons__img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  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__stat-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius);
  padding: 14px 20px;
  box-shadow: var(--shadow-md);
  text-align: center;
  display: flex;
  flex-direction: column;
}
.over-ons__stat-card:first-of-type {
  bottom: -20px;
  right: -20px;
}
.over-ons__stat-card--2 {
  bottom: -20px !important;
  right: auto !important;
  left: -20px;
}
@media (max-width: 480px) {
  .over-ons__stat-card:first-of-type { right: 8px; bottom: 8px; }
  .over-ons__stat-card--2 { left: 8px; bottom: 8px; }
}
.stat__number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-dark);
  line-height: 1;
}
.stat__label {
  font-size: .75rem;
  color: var(--text-mid);
  margin-top: 4px;
}

.over-ons__content .section__title {
  margin-bottom: 20px;
}
.over-ons__text {
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 16px;
}

.over-ons__list {
  margin: 28px 0 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.over-ons__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .93rem;
  color: var(--text-mid);
}
.over-ons__list svg {
  color: var(--gold-dark);
  flex-shrink: 0;
  margin-top: 1px;
}

/* ══════════════════════════
   FAQ
══════════════════════════ */
.faq { background: var(--cream-dark); }
.faq__container { max-width: 800px; }

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.faq__item {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.faq__item:hover { box-shadow: var(--shadow-md); }
.faq__item[open] { box-shadow: var(--shadow-md); }

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: .97rem;
  color: var(--brown);
  list-style: none;
  user-select: none;
  transition: color var(--transition);
}
.faq__question::-webkit-details-marker { display: none; }
.faq__question:hover { color: var(--gold-dark); }

.faq__chevron {
  flex-shrink: 0;
  color: var(--gold-dark);
  transition: transform .3s ease;
}
.faq__item[open] .faq__chevron { transform: rotate(180deg); }

.faq__answer {
  padding: 0 24px 20px;
  color: var(--text-mid);
  font-size: .93rem;
  line-height: 1.7;
  border-top: 1px solid var(--cream-dark);
}

/* ══════════════════════════
   CONTACT SECTION
══════════════════════════ */
.contact-section { background: var(--cream); }
.contact__inner {
  display: grid;
  gap: 56px;
}
@media (min-width: 900px) {
  .contact__inner { grid-template-columns: 1.2fr 1fr; }
}

/* Form */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 520px) { .form-row { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.form-label { font-size: .85rem; font-weight: 600; color: var(--brown); }
.form-optional { color: var(--text-light); font-weight: 400; }
.form-input {
  padding: 12px 16px;
  border: 1.5px solid rgba(61,43,31,.2);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--text);
  font-size: .93rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-input::placeholder { color: var(--text-light); }
.form-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,.18);
}
.form-textarea { resize: vertical; min-height: 140px; }

/* Contact info */
.contact__info-title {
  font-size: 1.2rem;
  color: var(--brown);
  margin-bottom: 24px;
}
.contact__info-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}
.contact__info-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact__info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(201,168,76,.12);
  color: var(--gold-dark);
  flex-shrink: 0;
}
.contact__info-label {
  display: block;
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--text-light);
  margin-bottom: 3px;
}
.contact__info-value {
  display: block;
  font-size: .93rem;
  color: var(--text);
  line-height: 1.5;
}
a.contact__info-value:hover { color: var(--gold-dark); }

.contact__hours {
  background: var(--cream-dark);
  border-radius: var(--radius);
  padding: 20px;
}
.contact__hours-title {
  font-size: 1rem;
  color: var(--brown);
  margin-bottom: 4px;
}
.contact__hours-sub {
  font-size: .8rem;
  color: var(--text-light);
  margin-bottom: 12px;
}
.hours-table { width: 100%; font-size: .88rem; }
.hours-table td { padding: 4px 0; color: var(--text-mid); }
.hours-table td:last-child { text-align: right; font-weight: 500; color: var(--brown); }

/* ══════════════════════════
   FOOTER
══════════════════════════ */
.footer-kit {
  background: var(--brown);
  color: rgba(245,240,232,.8);
  padding-top: 72px;
}
.footer-kit__inner {
  display: grid;
  gap: 48px;
  padding-bottom: 56px;
}
@media (min-width: 768px) {
  .footer-kit__inner {
    grid-template-columns: 1.2fr 2fr 1.5fr;
    gap: 56px;
  }
}

/* Brand zone */
.footer-kit__logo {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 14px;
}
.logo-script--footer {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--gold);
  line-height: 1;
}
.logo-sub--footer {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .7rem;
  color: var(--gold-light);
  letter-spacing: .08em;
}
.footer-kit__tagline {
  font-size: .88rem;
  line-height: 1.7;
  color: rgba(245,240,232,.6);
  margin-bottom: 20px;
}
.footer-kit__socials {
  display: flex;
  gap: 12px;
}
.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(201,168,76,.25);
  color: rgba(245,240,232,.65);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.social-link:hover {
  background: rgba(201,168,76,.15);
  color: var(--gold);
  border-color: rgba(201,168,76,.5);
}

/* Links zone */
.footer-kit__zone--links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.footer-kit__heading {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-kit__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-kit__list a {
  font-size: .88rem;
  color: rgba(245,240,232,.65);
  transition: color var(--transition);
}
.footer-kit__list a:hover { color: var(--gold); }

.footer-kit__season {
  font-size: .78rem;
  color: rgba(245,240,232,.4);
  margin-bottom: 8px;
}
.footer-kit__hours {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}
.footer-kit__hours li {
  display: flex;
  justify-content: space-between;
  font-size: .87rem;
  color: rgba(245,240,232,.7);
}
.footer-kit__hours li span:last-child { font-weight: 600; color: rgba(245,240,232,.85); }
.footer-kit__note {
  font-size: .78rem;
  color: rgba(245,240,232,.4);
  line-height: 1.6;
}

/* Map zone */
.footer-kit__map-wrap {
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 14px;
  border: 1px solid rgba(255,255,255,.06);
}
.footer-kit__address {
  font-size: .85rem;
  color: rgba(245,240,232,.55);
  line-height: 1.6;
}

/* Footer bottom */
.footer-kit__bottom {
  border-top: 1px solid rgba(245,240,232,.1);
  padding: 20px 0;
}
.footer-kit__bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: center;
}
@media (min-width: 600px) {
  .footer-kit__bottom-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
.footer-kit__copy, .footer-kit__credit {
  font-size: .8rem;
  color: rgba(245,240,232,.4);
}
.footer-kit__credit a { color: rgba(245,240,232,.55); text-decoration: underline; }
.footer-kit__credit a:hover { color: var(--gold); }

/* ══════════════════════════
   ACCESSIBILITY & SR
══════════════════════════ */
.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;
}

/* ══════════════════════════
   FOCUS STYLES
══════════════════════════ */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ══════════════════════════
   SMOOTH SCROLL OFFSET
══════════════════════════ */
[id] { scroll-margin-top: 80px; }
