/* ═══════════════════════════════════════════════════════════════
   RESTAURANT OLIVE GARDEN - DEMO SITE
   Navy #1a2340 / Gold #b5a06a / Cream #f5f0e8
   ═══════════════════════════════════════════════════════════════ */

/* ── CUSTOM PROPERTIES ──────────────────────────────────────── */
:root {
  --navy:       #1a2340;
  --navy-mid:   #2c3a5c;
  --navy-light: #3d4f7c;
  --gold:       #b5a06a;
  --gold-bright:#c8b97a;
  --gold-dark:  #9a8550;
  --cream:      #f5f0e8;
  --cream-mid:  #ede7d9;
  --white:      #ffffff;
  --text-dark:  #1a1a1a;
  --text-mid:   #4a4a4a;
  --text-light: #8a8070;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

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

  --shadow-sm:  0 2px 8px rgba(26,35,64,.08);
  --shadow-md:  0 8px 24px rgba(26,35,64,.12);
  --shadow-lg:  0 20px 60px rgba(26,35,64,.18);

  --transition: 200ms ease;
  --nav-h:      72px;
}

/* ── 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);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--cream);
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

img {
  display: block;
  max-width: 100%;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── MEDIA / IMG FILL UTILITY (mobile-proof) ─────────────────── */
.media, .img-fill, figure.photo { position: relative; overflow: hidden; }
.media > img,
.img-fill > img,
figure.photo > img,
.gallery img,
.card img,
.hero__img,
.dish-card__media img,
.atmosphere__media img,
.about__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── CONTAINER ───────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── TYPOGRAPHY ──────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -.01em;
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.6rem); }

em { font-style: italic; }

.section-eyebrow {
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}

.section-eyebrow--light { color: var(--gold-bright); }

.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 { margin-bottom: 1rem; }
.section-header--light h2,
.section-header--light p { color: var(--white); }
.section-header--light .section-eyebrow { color: var(--gold-bright); }

.section-sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 640px;
  margin: 0 auto;
}

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-body);
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  letter-spacing: .03em;
}

.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn--sm  { font-size: .82rem; padding: .5rem 1.1rem; }
.btn--lg  { font-size: 1rem;   padding: .9rem 2rem; }
.btn--xl  { font-size: 1.1rem; padding: 1.1rem 2.5rem; }
.btn--full { width: 100%; justify-content: center; padding: 1rem; font-size: 1rem; }

.btn--gold {
  background: var(--gold);
  color: var(--navy);
  border: 2px solid var(--gold);
  font-weight: 600;
  letter-spacing: .05em;
}
.btn--gold:hover, .btn--gold:focus-visible {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(181,160,106,.45);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.5);
}
.btn--ghost:hover, .btn--ghost:focus-visible {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
}

/* ── HERO-SPECIFIC BUTTONS (unambiguously solid gold) ─────── */
.btn--hero-cta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 1rem 2.4rem;
  border-radius: var(--radius-sm);
  background-color: #c8b97a;
  color: #1a2340;
  border: none;
  box-shadow: 0 4px 24px rgba(200,185,122,.5), 0 2px 8px rgba(0,0,0,.2);
  transition: all var(--transition);
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
}

.btn--hero-cta:hover, .btn--hero-cta:focus-visible {
  background-color: #d9cc95;
  box-shadow: 0 8px 32px rgba(200,185,122,.6), 0 4px 12px rgba(0,0,0,.3);
  transform: translateY(-2px);
}

.btn--hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: .04em;
  padding: .9rem 2rem;
  border-radius: var(--radius-sm);
  background: transparent;
  color: rgba(255,255,255,.85);
  border: 1.5px solid rgba(255,255,255,.4);
  transition: all var(--transition);
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
}

.btn--hero-secondary:hover, .btn--hero-secondary:focus-visible {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.8);
  color: var(--white);
}


/* ── SITE HEADER ─────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(26,35,64,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(181,160,106,.15);
  transition: background var(--transition);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: var(--gold);
  flex-shrink: 0;
}

.logo-monogram { width: 40px; height: 40px; }
.logo-wordmark {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--white);
}

.desktop-nav ul {
  display: flex;
  gap: 2rem;
}

.desktop-nav a {
  font-size: .9rem;
  font-weight: 400;
  color: rgba(255,255,255,.8);
  letter-spacing: .04em;
  transition: color var(--transition);
}

.desktop-nav a:hover { color: var(--gold); }

.header-cta { flex-shrink: 0; }

/* ── HAMBURGER ────────────────────────────────────────────────── */
.mobile-menu__trigger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--white);
  flex-shrink: 0;
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  pointer-events: none;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
  transform-origin: center;
}

.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: 200;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  /* hidden state */
  opacity: 0;
  pointer-events: none;
  transform: translateX(100%);
  transition: opacity 280ms ease, transform 280ms ease;
  height: 100svh;
  height: 100dvh;
}

.mobile-menu__overlay.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.mobile-menu__panel {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.5rem 2rem 3rem;
}

.mobile-menu__close {
  align-self: flex-end;
  color: var(--white);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.mobile-menu__close svg { width: 24px; height: 24px; }

.mobile-menu__list {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  flex: 1;
}

.mobile-menu__item {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--white);
  padding: .6rem 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: color var(--transition);
}

.mobile-menu__item:hover { color: var(--gold); }

.mobile-menu__cta {
  margin-top: 2.5rem;
  text-align: center;
  padding: 1rem 1.5rem;
  font-size: 1rem;
}

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

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(26,35,64,.80) 0%,
    rgba(26,35,64,.55) 50%,
    rgba(26,35,64,.70) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 820px;
}

.hero__eyebrow {
  font-family: var(--font-body);
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.hero__title {
  color: var(--white);
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  line-height: 1.1;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
}

.hero__title em { color: var(--gold-bright); }

.hero__sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,.85);
  line-height: 1.65;
  max-width: 580px;
  margin: 0 auto 2.25rem;
}

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

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,.6);
  animation: bounce 2s infinite;
}

.hero__scroll svg { width: 28px; height: 28px; }

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

/* ── SOCIAL PROOF STRIP ──────────────────────────────────────── */
.social-proof {
  background: var(--cream);
  border-bottom: 1px solid var(--cream-mid);
  padding: 2rem 0;
}

.social-proof__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.proof-divider {
  width: 1px;
  height: 48px;
  background: var(--cream-mid);
}

.proof-item--rating {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.stars {
  display: flex;
  gap: 2px;
  color: var(--gold);
}

.stars svg { width: 18px; height: 18px; }

.rating-text strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  display: block;
  line-height: 1;
}

.rating-text span {
  font-size: .78rem;
  color: var(--text-light);
  letter-spacing: .04em;
}

.proof-item--quote blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--navy-mid);
  max-width: 380px;
  line-height: 1.5;
}

.proof-item--quote cite {
  display: block;
  font-style: normal;
  font-family: var(--font-body);
  font-size: .75rem;
  letter-spacing: .06em;
  color: var(--gold);
  margin-top: .35rem;
  text-transform: uppercase;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--navy);
  border: 1.5px solid var(--gold);
  border-radius: var(--radius);
  padding: .85rem 1.4rem;
  box-shadow: 0 4px 16px rgba(26,35,64,.15);
}

.trust-badge__icon {
  width: 44px;
  height: 44px;
  background: rgba(181,160,106,.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.trust-badge__text {
  display: flex;
  flex-direction: column;
  gap: .1rem;
}

.trust-badge__number {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.trust-badge__label {
  font-size: .75rem;
  font-weight: 500;
  color: rgba(255,255,255,.7);
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* ── MENU SECTION ─────────────────────────────────────────────── */
.menu-section {
  background: var(--navy);
  padding: 7rem 0;
}

.menu-section .section-header { margin-bottom: 3.5rem; }
.menu-section .section-header h2 { color: var(--white); }
.menu-section .section-sub { color: rgba(255,255,255,.7); }

.dish-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.dish-card {
  background: var(--navy-mid);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid rgba(181,160,106,.1);
  display: flex;
  flex-direction: column;
}

.dish-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,.3);
}

.dish-card__media {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.dish-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 400ms ease;
}

.dish-card:hover .dish-card__media img { transform: scale(1.04); }

.dish-card__body {
  padding: 1.5rem;
  flex: 1;
}

.dish-card__tag {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: .5rem;
}

.dish-card__body h3 {
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: .6rem;
}

.dish-card__body p {
  font-size: .9rem;
  color: rgba(255,255,255,.65);
  line-height: 1.6;
}

.menu-cta {
  text-align: center;
}

/* ── ATMOSPHERE SECTION ──────────────────────────────────────── */
.atmosphere {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.atmosphere__media {
  position: absolute;
  inset: 0;
}

.atmosphere__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.atmosphere__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(26,35,64,.88) 0%,
    rgba(26,35,64,.60) 60%,
    rgba(26,35,64,.30) 100%
  );
}

.atmosphere__content-wrap {
  position: relative;
  z-index: 2;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.atmosphere__content {
  max-width: 560px;
  color: var(--white);
}

.atmosphere__ornament {
  width: 60px;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: .8;
}

.atmosphere__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.3;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.atmosphere__text {
  font-size: 1rem;
  color: rgba(255,255,255,.8);
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* ── ABOUT SECTION ───────────────────────────────────────────── */
.about {
  background: var(--cream);
  padding: 7rem 0;
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about__text .section-eyebrow { display: block; }
.about__text h2 { margin-bottom: 1.25rem; color: var(--navy); }
.about__text p {
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.about__text em { color: var(--gold-dark); }

.about__facts {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-top: 1.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--cream-mid);
}

.fact-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .9rem;
  color: var(--navy-mid);
  font-weight: 500;
}

.fact-item svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
  flex-shrink: 0;
}

.about__visual { position: relative; }

.about__img-wrap {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about__badge {
  position: absolute;
  bottom: 2rem;
  right: -1.5rem;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  width: 90px;
  height: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.badge-number {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}

.badge-label {
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  line-height: 1.3;
}

/* ── RESERVATIONS SECTION ────────────────────────────────────── */
.reservations {
  background: var(--navy);
  padding: 7rem 0;
}

.reservations__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.reservations__title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--white);
  margin-bottom: 1rem;
}

.reservations__title em { color: var(--gold-bright); }

.reservations__info > p {
  color: rgba(255,255,255,.7);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.res-contact-list {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-bottom: 2rem;
}

.res-contact-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: rgba(255,255,255,.85);
  font-size: .95rem;
  transition: color var(--transition);
}

.res-contact-item:hover { color: var(--gold); }
.res-contact-item svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }

.hours-box {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(181,160,106,.2);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.hours-box h3 {
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1rem;
}

.hours-box h3 svg { width: 16px; height: 16px; }

.hours-list { display: flex; flex-direction: column; gap: .5rem; }

.hours-item {
  display: flex;
  justify-content: space-between;
  font-size: .9rem;
  color: rgba(255,255,255,.75);
  padding: .4rem 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.hours-item:last-child { border-bottom: none; padding-bottom: 0; }
.hours-item--closed { color: rgba(255,255,255,.4); }
.hours-item--closed span:last-child { font-style: italic; }

/* ── RESERVATION FORM ────────────────────────────────────────── */
.res-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: .45rem;
  margin-bottom: .75rem;
}

.form-group label {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--navy);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--text-dark);
  background: var(--cream);
  border: 1.5px solid var(--cream-mid);
  border-radius: var(--radius-sm);
  padding: .7rem .9rem;
  transition: border-color var(--transition);
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
}

.form-group textarea { resize: vertical; min-height: 80px; }

/* ── FOOTER ──────────────────────────────────────────────────── */
.footer-kit {
  background: var(--navy);
  border-top: 1px solid rgba(181,160,106,.15);
  padding-top: 5rem;
}

.footer-kit__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr 1.5fr;
  gap: 3rem;
  padding-bottom: 4rem;
}

.footer-col--brand { display: flex; flex-direction: column; gap: 1rem; }

.footer-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: var(--gold);
}

.footer-logo .logo-monogram { width: 36px; height: 36px; }
.footer-logo span {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
}

.footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: rgba(255,255,255,.5);
  line-height: 1.5;
}

.footer-socials {
  display: flex;
  gap: .75rem;
  margin-top: .25rem;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  transition: all var(--transition);
}

.footer-socials a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer-socials svg { width: 16px; height: 16px; }

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

.footer-links {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.footer-links a {
  font-size: .9rem;
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--white); }

.footer-hours {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.footer-hours li {
  display: flex;
  justify-content: space-between;
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  gap: 1rem;
}

.footer-hours .closed { color: rgba(255,255,255,.3); font-style: italic; }

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .88rem;
  color: rgba(255,255,255,.6);
}

.footer-contact svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: .15rem;
}

.footer-contact a {
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
  line-height: 1.5;
}

.footer-contact a:hover { color: var(--gold); }

.footer-kit__bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 1.5rem 0;
}

.footer-kit__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-kit__bottom p {
  font-size: .8rem;
  color: rgba(255,255,255,.35);
}

.footer-credit a {
  color: var(--gold);
  opacity: .7;
  transition: opacity var(--transition);
}

.footer-credit a:hover { opacity: 1; }

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

/* ── REDUCED MOTION ──────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .mobile-menu__overlay { transition: none; }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */

/* ── TABLET (≤ 900px) ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .mobile-menu__trigger {
    display: flex;
  }

  .about__inner,
  .reservations__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

  .dish-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto 3.5rem;
  }

  .dish-card__media { aspect-ratio: 16/9; }

  .proof-divider { display: none; }

  .about__badge { right: 1rem; }
}

/* ── MOBILE (≤ 600px) ─────────────────────────────────────────── */
@media (max-width: 600px) {
  :root { --nav-h: 64px; }

  .hero__title { font-size: 2.4rem; }

  .hero__actions { flex-direction: column; align-items: center; }
  .hero__actions .btn { width: 100%; max-width: 320px; justify-content: center; }

  .social-proof__inner {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .proof-item--rating { justify-content: center; }
  .proof-item--badge .trust-badge { justify-content: center; }

  .about__inner { gap: 2.5rem; }
  .about__badge { right: .5rem; bottom: .5rem; width: 72px; height: 72px; }
  .badge-number { font-size: 1.2rem; }

  .form-row--half { grid-template-columns: 1fr; }

  .reservations__inner { gap: 2.5rem; }

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

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

  .menu-section { padding: 5rem 0; }
  .about { padding: 5rem 0; }
  .reservations { padding: 5rem 0; }

  .res-form { padding: 1.5rem; }

  .atmosphere__content { max-width: 100%; }
  .atmosphere__overlay {
    background: linear-gradient(
      160deg,
      rgba(26,35,64,.85) 0%,
      rgba(26,35,64,.70) 100%
    );
  }
}
