/* ═══════════════════════════════════════════════════════
   PROEFLOKAAL BREGJE WADDINXVEEN — Design System
   Palette: Teal #4a7c7e | Gold #c8a96e | Cream #f5f0e8 | Dark #2b2b2b
   Typography: Playfair Display (serif) + Inter (sans)
═══════════════════════════════════════════════════════ */

/* ── CSS Custom Properties ── */
:root {
  --teal:        #4a7c7e;
  --teal-dark:   #3a6264;
  --teal-deeper: #2e5052;
  --gold:        #c8a96e;
  --gold-dark:   #b0915a;
  --cream:       #f5f0e8;
  --cream-dark:  #ede7d9;
  --dark:        #2b2b2b;
  --dark-mid:    #3d3d3d;
  --white:       #ffffff;

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

  --radius-sm: 4px;
  --radius:    8px;
  --radius-lg: 16px;

  --shadow-sm: 0 1px 3px rgba(43,43,43,.08), 0 1px 2px rgba(43,43,43,.06);
  --shadow:    0 4px 16px rgba(43,43,43,.10), 0 2px 6px rgba(43,43,43,.07);
  --shadow-lg: 0 16px 48px rgba(43,43,43,.16);

  --transition: 200ms ease;
  --container: 1160px;
  --header-h:  72px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--dark);
  background: var(--cream);
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* Media fill utility — applied where needed */
.media, .img-fill, figure.photo { position: relative; overflow: hidden; }
.media > img, .img-fill > img, figure.photo > img,
.gallery img, .card img, .hero__img,
.menu-card__img-wrap img, .over-img-frame img, .hours-card img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

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

/* ── Typography ── */
h1, h2, h3 { font-family: var(--font-serif); line-height: 1.2; font-weight: 600; }
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
p  { font-size: 1rem; color: inherit; }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.5rem;
}
.eyebrow--gold  { color: var(--gold); }
.eyebrow--teal  { color: var(--teal); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: none; }

.btn--gold {
  background: var(--gold);
  color: var(--dark);
}
.btn--gold:hover { background: var(--gold-dark); box-shadow: 0 6px 20px rgba(200,169,110,.35); }

.btn--outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn--outline-gold:hover { background: rgba(200,169,110,.12); }

.btn--outline-teal {
  background: transparent;
  color: var(--teal);
  border: 1.5px solid var(--teal);
}
.btn--outline-teal:hover { background: rgba(74,124,126,.10); }

.btn--lg { padding: 16px 36px; font-size: 1rem; }

/* ── 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: 0;
}

/* ══════════════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--header-h);
  background: rgba(245,240,232,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(74,124,126,.12);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow); }

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

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--teal);
  flex-shrink: 0;
}
.logo-deer { width: 36px; height: 42px; color: var(--teal); }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name { font-family: var(--font-serif); font-size: 1.25rem; font-weight: 700; color: var(--teal); }
.logo-sub  { font-size: 0.65rem; font-weight: 500; letter-spacing: 0.08em; color: var(--dark-mid); opacity: 0.7; }

/* Desktop nav */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.desktop-nav a {
  padding: 8px 12px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.desktop-nav a:hover { color: var(--teal); background: rgba(74,124,126,.07); }

.btn-nav-cta {
  background: var(--gold) !important;
  color: var(--dark) !important;
  padding: 8px 20px !important;
  border-radius: var(--radius) !important;
  font-weight: 600 !important;
  margin-left: 8px;
}
.btn-nav-cta:hover { background: var(--gold-dark) !important; color: var(--dark) !important; }

/* Hamburger */
.mobile-menu__trigger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  color: var(--teal);
  transition: background var(--transition);
}
.mobile-menu__trigger:hover { background: rgba(74,124,126,.08); }
.hamburger { display: flex; flex-direction: column; gap: 5px; }
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.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 — FULLSCREEN OVERLAY
══════════════════════════════════════════════════════ */
.mobile-menu__overlay {
  position: fixed;
  inset: 0;
  z-index: 950;
  width: 100%;
  height: 100svh;
  height: 100dvh;
  min-height: 100vh;
  background: var(--teal-deeper);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 280ms cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-menu__overlay[aria-hidden="false"] { transform: translateX(0); }

@media (prefers-reduced-motion: reduce) {
  .mobile-menu__overlay { transition: none; }
}

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

.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.mobile-logo-deer { width: 44px; height: 52px; color: var(--gold); }
.mobile-menu__close {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius);
  color: rgba(255,255,255,.7);
  transition: color var(--transition), background var(--transition);
}
.mobile-menu__close svg { width: 24px; height: 24px; }
.mobile-menu__close:hover { color: white; background: rgba(255,255,255,.1); }

.mobile-menu__list {
  flex: 1;
  padding: 24px 0;
}
.mobile-menu__item {
  display: block;
  padding: 18px 32px;
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 600;
  color: white;
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: color var(--transition), padding-left var(--transition);
}
.mobile-menu__item:hover { color: var(--gold); padding-left: 40px; }

.mobile-menu__cta {
  padding: 24px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.mobile-menu__cta .btn--gold { justify-content: center; font-size: 1.05rem; padding: 18px; }
.mobile-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.75);
  font-size: 1rem;
  font-weight: 500;
  padding: 4px 0;
  transition: color var(--transition);
}
.mobile-phone svg { width: 20px; height: 20px; }
.mobile-phone:hover { color: var(--gold); }

/* ══════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 90vh;
  min-height: 90svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--header-h);
}

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

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 48px 24px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 760px;
}

.hero__logo-mark {
  width: 60px;
  height: 70px;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,.35));
  animation: deer-float 4s ease-in-out infinite;
}
.hero__logo-mark svg { width: 100%; height: 100%; }

@keyframes deer-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

.hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0;
}
.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 6vw, 4.4rem);
  font-weight: 700;
  color: white;
  line-height: 1.1;
  text-shadow: 0 2px 20px rgba(0,0,0,.4);
}
.hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.88);
  font-weight: 300;
  line-height: 1.6;
}
.hero__content .btn--gold {
  margin-top: 8px;
  box-shadow: 0 8px 32px rgba(200,169,110,.4);
}
.hero__content .btn--gold:hover {
  box-shadow: 0 12px 40px rgba(200,169,110,.55);
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: rgba(255,255,255,.65);
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.25);
  animation: bounce 2s ease-in-out infinite;
  transition: color var(--transition), border-color var(--transition);
}
.hero__scroll svg { width: 20px; height: 20px; }
.hero__scroll:hover { color: var(--gold); border-color: var(--gold); }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ══════════════════════════════════════════════════════
   SECTIONS — general
══════════════════════════════════════════════════════ */
.section { padding: 96px 0; }
.section--cream { background: var(--cream); }
.section--teal  { background: var(--teal-deeper); color: white; }
.section--teal h2, .section--teal h3 { color: white; }
.section--teal p  { color: rgba(255,255,255,.80); }
.section--teal .eyebrow { color: var(--gold); }

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header--light h2 { color: white; }
.section-header--light .section-sub { color: rgba(255,255,255,.75); }

.section-sub {
  font-size: 1.05rem;
  color: var(--dark-mid);
  max-width: 560px;
  margin: 12px auto 0;
  line-height: 1.7;
}

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

/* ══════════════════════════════════════════════════════
   MENU CARDS
══════════════════════════════════════════════════════ */
.menu-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(200,169,110,.2);
  border-radius: var(--radius-lg);
  padding: 0 0 28px;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.menu-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.2); }
.menu-card--featured {
  background: rgba(200,169,110,.12);
  border-color: rgba(200,169,110,.5);
}

.menu-card__img-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.menu-card__img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }

.menu-card__icon {
  display: flex;
  justify-content: flex-end;
  padding: 16px 20px 0;
}
.menu-card__icon svg { width: 22px; height: 22px; color: var(--gold); opacity: 0.9; }

.menu-card h3 {
  padding: 16px 24px 4px;
  color: white;
  font-size: 1.35rem;
}
.menu-card__time {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--gold);
  padding: 0 24px 10px;
  text-transform: uppercase;
}
.menu-card p:last-child {
  padding: 0 24px;
  font-size: 0.95rem;
  color: rgba(255,255,255,.75);
  line-height: 1.65;
}

.menu-cta {
  text-align: center;
  margin-top: 48px;
}
.menu-cta .btn--outline-gold svg { width: 18px; height: 18px; }

/* ══════════════════════════════════════════════════════
   GALLERY
══════════════════════════════════════════════════════ */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.gallery__item {
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 1;
  position: relative;
}
.gallery__item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 400ms ease; }
.gallery__item:hover img { transform: scale(1.04); }




.gallery-footer {
  margin-top: 24px;
  text-align: center;
  display: flex;
  justify-content: center;
}
.gallery-footer p {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  color: var(--dark-mid);
}
.gallery-footer svg { width: 18px; height: 18px; color: var(--teal); flex-shrink: 0; }
.gallery-footer a { color: var(--teal); font-weight: 600; }
.gallery-footer a:hover { color: var(--teal-dark); text-decoration: underline; }

/* ══════════════════════════════════════════════════════
   OVER BREGJE
══════════════════════════════════════════════════════ */
.over-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.over-text { display: flex; flex-direction: column; gap: 20px; }
.over-text h2 { color: white; }
.over-text p  { color: rgba(255,255,255,.80); line-height: 1.7; }

.over-visual { position: relative; }
.over-img-frame {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.over-img-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.over-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 90px;
  height: 90px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: var(--shadow);
  padding: 16px;
}
.over-badge svg { width: 100%; height: 100%; }

/* ══════════════════════════════════════════════════════
   OPENINGSTIJDEN
══════════════════════════════════════════════════════ */
.hours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}
.hours-card {
  background: white;
  border: 2px solid transparent;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.hours-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.hours-card--featured {
  border-color: var(--teal);
  box-shadow: var(--shadow);
}
.hours-card__icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: rgba(74,124,126,.10);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.hours-card__icon svg { width: 24px; height: 24px; color: var(--teal); }
.hours-card h3 { color: var(--dark); font-size: 1.1rem; margin-bottom: 8px; }
.hours-time {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--teal);
  display: block;
  margin-bottom: 4px;
}
.hours-note { font-size: 0.8rem; color: var(--dark-mid); opacity: 0.7; }
.hours-disclaimer {
  text-align: center;
  font-size: 0.85rem;
  color: var(--dark-mid);
  opacity: 0.7;
}

/* ══════════════════════════════════════════════════════
   CTA BAND
══════════════════════════════════════════════════════ */
.cta-band {
  background: var(--cream-dark);
  border-top: 1px solid rgba(74,124,126,.15);
  border-bottom: 1px solid rgba(74,124,126,.15);
  padding: 80px 24px;
}
.cta-band__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: center;
  gap: 40px;
}
.cta-band__deer {
  width: 80px; height: 80px;
  color: var(--teal);
  flex-shrink: 0;
}
.cta-band__deer svg { width: 100%; height: 100%; }
.cta-band__text h2 { color: var(--dark); font-size: clamp(1.6rem, 3vw, 2.2rem); }
.cta-band__text .eyebrow--teal { color: var(--teal); }
.cta-band__text p { color: var(--dark-mid); margin-top: 6px; font-size: 1rem; }
.cta-band__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}
.cta-band__actions .btn { width: 100%; justify-content: center; }

/* ══════════════════════════════════════════════════════
   CONTACT
══════════════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.contact-card {
  background: white;
  border-left: 3px solid var(--teal);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.contact-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.contact-card__icon {
  width: 48px; height: 48px;
  border-radius: 10px;
  background: rgba(74,124,126,.10);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.contact-card__icon svg { width: 22px; height: 22px; color: var(--teal); }
.contact-card h3 { font-size: 1.05rem; color: var(--dark); margin-bottom: 8px; }
.contact-card p  { font-size: 0.9rem; color: var(--dark-mid); line-height: 1.6; margin-bottom: 16px; }
.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--teal);
  transition: color var(--transition), gap var(--transition);
}
.contact-link svg { width: 16px; height: 16px; }
.contact-link:hover { color: var(--teal-dark); gap: 10px; }

.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(74,124,126,.15);
}
.map-embed iframe { display: block; }

/* ══════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════ */
.footer-kit {
  background: var(--dark);
  color: rgba(255,255,255,.75);
  padding: 64px 0 0;
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1fr;
  gap: 48px;
}
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
}
.footer-logo svg { width: 32px; height: 38px; }
.footer-tagline { font-size: 0.9rem; line-height: 1.6; max-width: 260px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 40px; height: 40px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6);
  transition: color var(--transition), border-color var(--transition), background var(--transition);
}
.footer-social a svg { width: 18px; height: 18px; }
.footer-social a:hover { color: var(--gold); border-color: var(--gold); background: rgba(200,169,110,.1); }

.footer-links h4, .footer-contact h4, .footer-hours h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: white;
  margin-bottom: 16px;
}
.footer-links ul li a {
  display: block;
  padding: 4px 0;
  font-size: 0.9rem;
  color: rgba(255,255,255,.65);
  transition: color var(--transition), padding-left var(--transition);
}
.footer-links ul li a:hover { color: var(--gold); padding-left: 4px; }

.footer-contact ul { display: flex; flex-direction: column; gap: 12px; }
.footer-contact ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  line-height: 1.5;
}
.footer-contact ul li svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; color: var(--teal); }
.footer-contact ul li a { color: rgba(255,255,255,.65); transition: color var(--transition); }
.footer-contact ul li a:hover { color: var(--gold); }

.footer-hours ul { display: flex; flex-direction: column; gap: 8px; }
.footer-hours ul li { display: flex; justify-content: space-between; font-size: 0.9rem; gap: 12px; }
.footer-hours ul li span:first-child { color: rgba(255,255,255,.6); }
.footer-hours ul li span:last-child  { color: white; font-weight: 500; }
.hours-small { opacity: 0.55; font-size: 0.8rem !important; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 24px;
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,.40);
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom a { color: rgba(255,255,255,.55); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--gold); }

/* ══════════════════════════════════════════════════════
   STICKY MOBILE CTA BAR
══════════════════════════════════════════════════════ */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 800;
  background: var(--teal-deeper);
  padding: 12px 16px;
  gap: 10px;
  border-top: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 -4px 20px rgba(0,0,0,.15);
}
.sticky-cta__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--gold);
  color: var(--dark);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 16px;
  border-radius: var(--radius);
  transition: background var(--transition);
}
.sticky-cta__btn svg { width: 18px; height: 18px; }
.sticky-cta__btn:hover { background: var(--gold-dark); }
.sticky-cta__call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 56px;
  background: rgba(255,255,255,.1);
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 13px 10px;
  border-radius: var(--radius);
  flex-direction: column;
  flex-shrink: 0;
  transition: background var(--transition);
}
.sticky-cta__call svg { width: 20px; height: 20px; }
.sticky-cta__call:hover { background: rgba(255,255,255,.18); }

/* ══════════════════════════════════════════════════════
   RESPONSIVE — TABLET (≤ 900px)
══════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .desktop-nav { display: none; }
  .mobile-menu__trigger { display: flex; }

  .card-grid--3 { grid-template-columns: 1fr; }
  .over-grid { grid-template-columns: 1fr; gap: 40px; }
  .over-visual { max-width: 460px; margin: 0 auto; }
  .over-img-frame { aspect-ratio: 3/2; }

  .hours-grid { grid-template-columns: 1fr 1fr; }
  .hours-grid .hours-card:last-child { grid-column: span 2; }

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

  .cta-band__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .cta-band__deer { display: none; }
  .cta-band__actions { align-items: center; width: 100%; }
  .cta-band__actions .btn { width: auto; min-width: 260px; }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .footer-brand { grid-column: span 2; }

  .sticky-cta { display: flex; }
  body { padding-bottom: 72px; }
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 600px)
══════════════════════════════════════════════════════ */
@media (max-width: 600px) {
  :root { --header-h: 60px; }
  .section { padding: 72px 0; }

  .hero { min-height: 100svh; }
  .hero__content { gap: 16px; padding: 32px 16px 100px; }
  .hero__title { font-size: clamp(2.2rem, 8vw, 3rem); }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  
  

  .hours-grid { grid-template-columns: 1fr; }
  .hours-grid .hours-card:last-child { grid-column: span 1; }

  .footer-inner { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }

  .footer-bottom { flex-direction: column; text-align: center; }

  .cta-band { padding: 60px 24px; }

  .over-badge { width: 64px; height: 64px; bottom: -12px; right: -8px; }
}

/* Scroll animations removed — no JS-gated opacity */
