/* =============================================================
   Restaurant Olivia — Demo site
   Brand: Royal Blue #2B4FD8 | Gold #C8A84B | Navy #1A1A6E
   Fonts: Cinzel (display) + Raleway (body)
   ============================================================= */

/* ---- 0. RESET & TOKENS ------------------------------------ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:       #2B4FD8;
  --blue-dark:  #1A1A6E;
  --blue-hover: #2243c0;
  --gold:       #C8A84B;
  --gold-light: #e8ca72;
  --white:      #ffffff;
  --cream:      #F8F6F1;
  --text:       #1a1a2e;
  --text-mid:   #4a4a6a;
  --text-light: #7a7a9a;

  --font-display: 'Cinzel', Georgia, serif;
  --font-body:    'Raleway', system-ui, sans-serif;

  --radius:     12px;
  --radius-sm:  8px;
  --shadow:     0 4px 24px rgba(43,79,216,.08);
  --shadow-md:  0 8px 40px rgba(43,79,216,.14);

  --nav-h: 72px;
  --section-pad: clamp(64px, 8vw, 112px);
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

/* ---- 1. MEDIA FILL UTILITIES ------------------------------ */
.media, .img-fill, figure.photo { position: relative; overflow: hidden; }
.media > img, .img-fill > img, figure.photo > img,
.gallery img, .card img, .hero__img,
.menu-panel__img-wrap img,
.over-ons__media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

/* ---- 2. TYPOGRAPHY ---------------------------------------- */
h1, h2, h3 { font-family: var(--font-display); line-height: 1.15; }
h4, h5, h6, .section-label, .btn-nav, nav a { font-family: var(--font-body); }

.section-label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}
.section-label--light { color: var(--gold-light); }

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 600;
  color: var(--text);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.section-title--light { color: var(--white); }

.section-sub {
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.section-header { text-align: center; margin-bottom: 3rem; }

.olive-divider { display: flex; justify-content: center; margin-top: 1.25rem; }
.olive-divider svg { width: 120px; height: 20px; }
.olive-divider--left { justify-content: flex-start; margin-bottom: 1.5rem; }
.olive-divider--left svg { width: 80px; }

/* ---- 3. BUTTONS ------------------------------------------- */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  background: var(--gold);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: .875rem 2rem;
  border-radius: 4px;
  transition: background .2s, transform .15s, box-shadow .2s;
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(200,168,75,.35);
}

.btn-ghost {
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: .875rem 2rem;
  border: 1.5px solid rgba(255,255,255,.5);
  border-radius: 4px;
  transition: border-color .2s, background .2s;
}
.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.1);
}

.btn-outline {
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--blue);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: .875rem 2rem;
  border: 1.5px solid var(--blue);
  border-radius: 4px;
  transition: background .2s, color .2s;
}
.btn-outline:hover { background: var(--blue); color: var(--white); }

.btn-full { width: 100%; }
.btn-nav {
  background: var(--gold);
  color: var(--text) !important;
  font-weight: 700;
  padding: .5rem 1.25rem;
  border-radius: 4px;
  font-size: .85rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: background .2s;
}
.btn-nav:hover { background: var(--gold-light); }

.btn-footer-cta {
  margin-top: 1.5rem;
  font-size: .82rem;
  padding: .75rem 1.5rem;
}

/* ---- 4. CONTAINER ----------------------------------------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 48px);
}

/* ---- 5. NAVIGATION ---------------------------------------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  background: var(--blue-dark);
  transition: box-shadow .3s;
}
.site-header.scrolled {
  box-shadow: 0 2px 24px rgba(26,26,110,.3);
}

.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 48px);
  height: 100%;
}

.nav-logo {
  display: flex; align-items: center; gap: .625rem;
  text-decoration: none;
}
.nav-logo .logo-olive { width: 32px; height: 32px; }
.logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: .04em;
}
.logo-text--light { color: rgba(255,255,255,.9); }

.desktop-nav {
  display: flex; align-items: center; gap: 2rem;
}
.desktop-nav a {
  color: rgba(255,255,255,.85);
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: color .2s;
  position: relative;
}
.desktop-nav a:not(.btn-nav):hover { color: var(--white); }
.desktop-nav a:not(.btn-nav)::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform .25s;
  transform-origin: left;
}
.desktop-nav a:not(.btn-nav):hover::after { transform: scaleX(1); }

/* ---- 6. MOBILE MENU TRIGGER ------------------------------- */
.mobile-menu__trigger {
  display: none;
  padding: .5rem;
  color: var(--white);
  background: none;
  border: none;
  cursor: pointer;
}
.hamburger {
  display: flex; flex-direction: column; gap: 5px; width: 24px;
}
.hamburger span {
  display: block;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.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);
}

/* ---- 7. MOBILE MENU OVERLAY ------------------------------- */
.mobile-menu__overlay {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100svh;
  height: 100dvh;
  background: var(--blue-dark);
  z-index: 200;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  pointer-events: none;
}
.mobile-menu__overlay[aria-hidden="false"] {
  transform: translateX(0);
  pointer-events: auto;
}

.mobile-menu__panel--root {
  display: flex;
  flex-direction: column;
  min-height: 100svh;
  min-height: 100dvh;
  padding: 0 1.5rem 2rem;
}

.mobile-menu__header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 0 1rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
  margin-bottom: 1rem;
}
.mobile-logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: .04em;
}

.mobile-menu__close {
  color: var(--white);
  padding: .5rem;
  background: none;
  border: none;
  cursor: pointer;
}
.mobile-menu__close svg { width: 28px; height: 28px; }

.mobile-menu__list {
  list-style: none;
  flex: 1;
  padding: .5rem 0;
}

.mobile-menu__item {
  display: block;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: .04em;
  padding: .875rem 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: color .2s, padding-left .2s;
}
.mobile-menu__item:hover { color: var(--gold); padding-left: .5rem; }

.mobile-menu__item--cta {
  margin-top: 1.5rem;
  display: inline-flex;
  background: var(--gold);
  color: var(--text) !important;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border-radius: 4px;
  border-bottom: none !important;
}
.mobile-menu__item--cta:hover { background: var(--gold-light); padding-left: 2rem !important; }

.mobile-menu__footer {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: auto;
  color: rgba(255,255,255,.6);
  font-size: .9rem;
  line-height: 1.8;
}

/* ---- 8. HERO --------------------------------------------- */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: var(--nav-h);
}

.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(
    135deg,
    rgba(26,26,110,.75) 0%,
    rgba(43,79,216,.5) 50%,
    rgba(0,0,0,.4) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 760px;
  padding: 2rem 1.5rem;
  animation: fadeUp .8s ease both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

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

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  text-shadow: 0 2px 24px rgba(0,0,0,.4);
  margin-bottom: 1.25rem;
}

.hero__sub {
  font-size: clamp(.95rem, 1.5vw, 1.1rem);
  color: rgba(255,255,255,.85);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.hero__actions {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
}

.hero__scroll-hint {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 2;
}
.hero__scroll-hint span {
  display: block;
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,.6), transparent);
  margin: 0 auto;
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: .7; transform: scaleY(1); }
  50% { opacity: .3; transform: scaleY(.6); }
}

/* ---- 9. INFO STRIP ---------------------------------------- */
.info-strip {
  background: var(--blue-dark);
  padding: 1.5rem 0;
}
.info-strip__inner {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 48px);
}
.info-strip__item {
  display: flex; align-items: center; gap: .875rem;
  color: var(--white);
  font-size: .9rem;
}
.info-strip__item svg {
  width: 20px; height: 20px; flex-shrink: 0; color: var(--gold);
}
.info-strip__item strong {
  display: block;
  font-weight: 600;
  font-size: .85rem;
  font-size: clamp(.75rem, 1.5vw, .85rem);
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .1rem;
}
.info-strip__item span { font-size: clamp(.8rem, 1.5vw, .9rem); color: rgba(255,255,255,.8); }
.info-strip__divider {
  width: 1px; height: 40px;
  background: rgba(255,255,255,.15);
  flex-shrink: 0;
}

/* ---- 10. MENU SECTION ------------------------------------- */
.menu-section {
  padding: var(--section-pad) 0;
  background: var(--cream);
}

.menu-tabs {
  display: flex; gap: .5rem; justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.menu-tab {
  font-family: var(--font-body);
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-mid);
  background: var(--white);
  border: 1.5px solid #e0ddd5;
  padding: .625rem 1.5rem;
  border-radius: 4px;
  transition: background .2s, color .2s, border-color .2s;
}
.menu-tab.active,
.menu-tab:hover {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

.menu-panel { display: none; }
.menu-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: start; }

.menu-panel__img-wrap {
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.menu-panel__img-wrap img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .5s ease;
}
.menu-panel__img-wrap:hover img { transform: scale(1.04); }

.menu-items { display: flex; flex-direction: column; gap: .25rem; }

.menu-item {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 1rem;
  padding: 1.125rem 0;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.menu-item:last-child { border-bottom: none; }
.menu-item__info h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: .3rem;
}
.menu-item__info p {
  font-size: .875rem;
  color: var(--text-mid);
  line-height: 1.5;
}
.menu-item__price {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--blue);
  white-space: nowrap;
  flex-shrink: 0;
}

.menu-cta {
  display: flex; gap: 1rem; justify-content: center;
  flex-wrap: wrap;
  margin-top: 3rem;
}

/* ---- 11. OVER ONS ----------------------------------------- */
.over-ons-section {
  padding: var(--section-pad) 0;
  background: var(--white);
}
.over-ons__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 48px);
}
.over-ons__media {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.over-ons__media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

.over-ons__content p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.over-ons__features {
  display: flex; flex-wrap: wrap; gap: 1.25rem;
  margin: 1.75rem 0;
}
.over-ons__feature {
  display: flex; align-items: center; gap: .625rem;
  font-size: .9rem;
  font-weight: 600;
  color: var(--text);
}
.over-ons__feature svg { width: 20px; height: 20px; flex-shrink: 0; }

/* ---- 12. REVIEWS ------------------------------------------ */
.reviews-section {
  padding: var(--section-pad) 0;
  background: var(--blue-dark);
}
.reviews-section .section-label { color: var(--gold); }
.reviews-section .section-title { color: var(--white); }
.reviews-section .section-sub { color: rgba(255,255,255,.7); }

.google-badge {
  display: inline-flex; align-items: center; gap: 1rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  padding: .75rem 1.5rem;
  border-radius: var(--radius);
  margin-top: 1.25rem;
}
.google-badge__score strong {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--white);
  display: block;
  line-height: 1;
}
.google-badge__score span {
  font-size: .75rem;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.stars-row { display: flex; gap: 2px; margin: .3rem 0 .2rem; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.review-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 2rem;
  transition: background .2s, transform .2s;
}
.review-card:hover {
  background: rgba(255,255,255,.1);
  transform: translateY(-2px);
}

.review-card__stars { display: flex; gap: 3px; margin-bottom: 1.25rem; }

.review-card blockquote {
  font-size: .975rem;
  color: rgba(255,255,255,.88);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.review-card cite {
  display: flex; align-items: center; gap: .75rem;
  font-style: normal;
}
.review-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--blue);
  border: 2px solid var(--gold);
  color: var(--white);
  font-weight: 700;
  font-size: .8rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.review-card cite strong {
  display: block;
  color: var(--white);
  font-size: .9rem;
  font-weight: 600;
}
.review-card cite span {
  font-size: .8rem;
  color: rgba(255,255,255,.5);
}

/* ---- 13. RESERVEER SECTION -------------------------------- */
.reserveer-section {
  position: relative;
  padding: var(--section-pad) 0;
  background: var(--blue);
  overflow: hidden;
}
.reserveer-section__bg {
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.reserveer-section__inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.reserveer-section__text .section-title--light { margin-bottom: 1rem; }
.reserveer-section__text p {
  color: rgba(255,255,255,.8);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.reserveer-contact-items { display: flex; flex-direction: column; gap: .875rem; margin-bottom: 2rem; }
.reserveer-contact-item {
  display: flex; align-items: center; gap: .75rem;
  color: rgba(255,255,255,.9);
  font-size: .95rem;
  font-weight: 500;
  transition: color .2s;
}
.reserveer-contact-item:hover { color: var(--gold-light); }
.reserveer-contact-item svg { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; }

.reserveer-hours h3 {
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: .875rem;
}
.hours-grid {
  display: grid;
  grid-template-columns: auto auto;
  column-gap: 2rem;
  row-gap: .4rem;
}
.hours-grid span { font-size: .9rem; color: rgba(255,255,255,.8); }
.hours-grid span:nth-child(even) { font-weight: 600; color: var(--white); }

/* ---- 14. CONTACT FORM ------------------------------------- */
.reserveer-section__form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group label {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-mid);
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--text);
  background: var(--cream);
  border: 1.5px solid #e0ddd5;
  border-radius: var(--radius-sm);
  padding: .75rem 1rem;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(43,79,216,.12);
}
.form-group textarea { resize: vertical; min-height: 110px; }

.form-note {
  text-align: center;
  font-size: .8rem;
  color: var(--text-light);
  margin-top: -.25rem;
}
.form-note a { color: var(--blue); font-weight: 600; }

/* ---- 15. FOOTER ------------------------------------------- */
.footer-kit {
  background: #0f0f3d;
  color: rgba(255,255,255,.75);
  padding: clamp(48px, 6vw, 80px) 0 0;
}
.footer-kit__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 48px) 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-logo { margin-bottom: 1rem; }
.footer-tagline {
  font-size: .875rem;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.social-links { display: flex; gap: .75rem; }
.social-link {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.7);
  display: flex; align-items: center; justify-content: center;
  transition: border-color .2s, color .2s;
}
.social-link:hover { border-color: var(--gold); color: var(--gold); }
.social-link svg { width: 16px; height: 16px; }

.footer-col__title {
  font-family: var(--font-display);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: .875rem; }
.footer-links li { display: flex; align-items: flex-start; gap: .625rem; font-size: .875rem; }
.footer-links li svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-links a { color: rgba(255,255,255,.7); transition: color .2s; line-height: 1.5; }
.footer-links a:hover { color: var(--white); }

.footer-hours { display: flex; flex-direction: column; gap: .4rem; }
.footer-hours__row {
  display: flex; justify-content: space-between;
  font-size: .85rem;
  color: rgba(255,255,255,.65);
  padding: .3rem 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer-hours__row:last-child { border-bottom: none; }
.footer-hours__row span:last-child { font-weight: 600; color: rgba(255,255,255,.85); }
.closed { color: rgba(255,255,255,.35) !important; font-style: italic; }

.footer-nav-list {
  list-style: none;
  display: flex; flex-direction: column; gap: .5rem;
}
.footer-nav-list a {
  font-size: .875rem;
  color: rgba(255,255,255,.65);
  transition: color .2s;
}
.footer-nav-list a:hover { color: var(--white); }

.footer-kit__bottom {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap;
  gap: .75rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem clamp(16px, 4vw, 48px);
  font-size: .8rem;
  color: rgba(255,255,255,.35);
}
.footer-maps-link a {
  display: inline-flex; align-items: center; gap: .375rem;
  color: rgba(255,255,255,.45);
  transition: color .2s;
}
.footer-maps-link a:hover { color: var(--gold); }

/* ---- 16. SCROLL REVEAL ------------------------------------ */
.reveal {
  opacity: 1;
  transform: none;
}

/* ---- 17. RESPONSIVE --------------------------------------- */
@media (max-width: 1024px) {
  .footer-kit__inner { grid-template-columns: 1fr 1fr; }
  .over-ons__inner { gap: 2.5rem; }
  .reserveer-section__inner { gap: 2.5rem; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }

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

  .menu-panel.active { grid-template-columns: 1fr; }
  .menu-panel__img-wrap { aspect-ratio: 16/9; max-height: 260px; }

  .over-ons__inner { grid-template-columns: 1fr; }
  .over-ons__media { aspect-ratio: 16/9; }

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

  .reserveer-section__inner { grid-template-columns: 1fr; }
  .reserveer-section__form { padding: 1.75rem; }
  .form-row { grid-template-columns: 1fr; }

  .footer-kit__inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 2.1rem; }
  .hero__actions { flex-direction: column; align-items: center; }
  .hero__actions a { width: 100%; text-align: center; }

  .info-strip__divider { display: none; }
  .info-strip__inner { gap: 1rem 1.5rem; }

  .menu-tabs { gap: .375rem; }
  .menu-cta { flex-direction: column; align-items: center; }
  .menu-cta a { width: 100%; text-align: center; }

  .footer-kit__inner { grid-template-columns: 1fr; }
  .footer-kit__bottom { flex-direction: column; text-align: center; }

  .reserveer-contact-items { gap: .625rem; }
  .hours-grid { font-size: .85rem; }

  .google-badge { flex-direction: column; text-align: center; gap: .5rem; }
}

/* ---- 18. ACCESSIBILITY ------------------------------------ */
.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;
}
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
