/* ============================================
   RESTAURANT MEQAN — Style Sheet
   Palette: Gold #C9A84C | Black #1A1A1A | Charcoal #2C2C2C | Off-white #F5F0E8 | Grey #4A4A4A
   Fonts: Cormorant Garamond (headings) + DM Sans (body)
   ============================================ */

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

:root {
  --gold: #C9A84C;
  --gold-dark: #A8872E;
  --gold-light: #E2C87A;
  --black: #1A1A1A;
  --charcoal: #2C2C2C;
  --grey: #4A4A4A;
  --light-grey: #8A8A8A;
  --offwhite: #F5F0E8;
  --offwhite-dark: #EDE7D9;
  --white: #FFFFFF;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'DM Sans', system-ui, sans-serif;

  --radius: 4px;
  --radius-lg: 12px;
  --transition: 0.3s ease;

  --container-max: 1180px;
  --container-narrow: 760px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.7;
  color: var(--grey);
  background: var(--offwhite);
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

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

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

address { font-style: normal; }

/* ---- MEDIA / IMG-FILL SAFETY NET ---- */
.media, .img-fill, figure.photo { position: relative; overflow: hidden; }
.media > img, .img-fill > img, figure.photo > img,
.gallery img, .card img, .hero__img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.15;
  color: var(--black);
}

h1 { font-size: clamp(2.6rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.6rem); }

em { font-style: italic; color: var(--gold); }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.body-lg { font-size: 1.1rem; line-height: 1.75; }
.body-lg--light { color: var(--offwhite); opacity: 0.9; }
.text-muted { color: var(--light-grey); font-size: 0.95rem; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-primary {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--offwhite);
  border-color: rgba(201,168,76,0.6);
}
.btn-outline:hover, .btn-outline:focus-visible {
  background: rgba(201,168,76,0.1);
  border-color: var(--gold);
  color: var(--gold);
}

.btn-lg { padding: 1rem 2.25rem; font-size: 1rem; }

.btn-full { width: 100%; justify-content: center; }

/* ---- LAYOUT ---- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.container--narrow { max-width: var(--container-narrow); }

.section {
  padding: 6rem 0;
}
.section--dark {
  background: var(--black);
  color: var(--offwhite);
}
.section--light {
  background: var(--offwhite);
  color: var(--grey);
}

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

.section-title { margin-bottom: 1.25rem; }
.section-title--light { color: var(--offwhite); }

.section-intro {
  font-size: 1.05rem;
  color: var(--grey);
  max-width: 52ch;
  margin: 0 auto;
}

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

/* ---- SITE HEADER ---- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 0 2rem;
  height: 72px;
  display: flex;
  align-items: center;
  background: rgba(26,26,26,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.12);
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  background: rgba(26,26,26,0.97);
  box-shadow: 0 2px 24px rgba(0,0,0,0.4);
}

.nav-inner {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.logo-link { display: flex; align-items: center; flex-shrink: 0; }
.logo-emblem { width: 48px; height: 48px; }

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  margin-left: auto;
}

.nav-link {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: rgba(245,240,232,0.8);
  transition: color var(--transition);
  padding: 0.25rem 0;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-link:hover, .nav-link:focus-visible {
  color: var(--gold);
}
.nav-link:hover::after, .nav-link:focus-visible::after {
  transform: scaleX(1);
}

.nav-cta { margin-left: 1rem; }

/* ---- MOBILE TRIGGER ---- */
.mobile-menu__trigger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  margin-left: auto;
  color: var(--offwhite);
}
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 24px;
}
.hamburger span {
  display: block;
  height: 1.5px;
  background: var(--offwhite);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.mobile-menu__trigger.active .hamburger span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.mobile-menu__trigger.active .hamburger span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.mobile-menu__trigger.active .hamburger span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ---- MOBILE MENU OVERLAY ---- */
.mobile-menu__overlay {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100svh;
  height: 100dvh;
  background: var(--black);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transform: translateX(100%);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.mobile-menu__overlay.is-open {
  opacity: 1;
  pointer-events: all;
  transform: translateX(0);
}
@media (prefers-reduced-motion: reduce) {
  .mobile-menu__overlay { transition: opacity 0.15s; transform: none; }
}

.mobile-menu__panel--root {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 2rem;
  gap: 0;
}

.mobile-menu__close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--offwhite);
  padding: 0.5rem;
  opacity: 0.7;
  transition: opacity var(--transition), color var(--transition);
}
.mobile-menu__close svg { width: 28px; height: 28px; }
.mobile-menu__close:hover { opacity: 1; color: var(--gold); }

.mobile-menu__logo {
  margin-bottom: 2.5rem;
}
.mobile-menu__logo svg { width: 64px; height: 64px; }

.mobile-menu__list {
  list-style: none;
  text-align: center;
  margin-bottom: 2.5rem;
  width: 100%;
}
.mobile-menu__item {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--offwhite);
  padding: 0.6rem 1rem;
  transition: color var(--transition);
  border: none;
  background: none;
  cursor: pointer;
  letter-spacing: 0.02em;
}
.mobile-menu__item:hover, .mobile-menu__item:focus-visible {
  color: var(--gold);
}

.mobile-menu__cta { width: 100%; justify-content: center; max-width: 280px; }

/* ---- HERO ---- */
.hero {
  position: relative;
  width: 100%;
  height: 100svh;
  height: 100dvh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(26,26,26,0.7) 0%,
    rgba(26,26,26,0.55) 40%,
    rgba(26,26,26,0.75) 100%
  );
}

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

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

.hero__eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300;
  color: var(--offwhite);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}
.hero__title em { color: var(--gold); }

.hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(245,240,232,0.85);
  margin-bottom: 2.5rem;
  font-weight: 300;
  max-width: 56ch;
  margin-left: auto;
  margin-right: auto;
}

.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;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(245,240,232,0.5);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: bounce 2s ease infinite;
}
.hero__scroll-hint svg { width: 16px; height: 16px; }

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

/* ---- ABOUT SECTION ---- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-image {
  position: relative;
}
.about-image .img-fill {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(26,26,26,0.15);
}

.about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(201,168,76,0.4);
}
.about-badge__year {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--black);
  line-height: 1;
}
.about-badge__label {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
}

.about-text .section-eyebrow { margin-bottom: 0.5rem; }
.about-text h2 { margin-bottom: 1.5rem; }
.about-text p { color: var(--grey); margin-bottom: 1rem; }

.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--offwhite-dark);
}
.pillar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--grey);
}
.pillar svg { width: 20px; height: 20px; flex-shrink: 0; }

/* ---- DISH FEATURE ---- */
.section--dish { overflow: hidden; }

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

.dish-feature__text .section-eyebrow { margin-bottom: 0.75rem; }
.dish-feature__text h2 { margin-bottom: 1.5rem; color: var(--offwhite); }
.dish-feature__text p { margin-bottom: 1rem; }
.dish-feature__text .btn { margin-top: 1rem; }

.dish-feature__image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.dish-feature__image .img-fill {
  width: min(400px, 100%);
  margin: 0 auto;
  position: relative;
  z-index: 2;
  border: 3px solid rgba(201,168,76,0.3);
}
.dish-ring {
  position: absolute;
  width: calc(min(400px, 100%) + 60px);
  height: calc(min(400px, 100%) + 60px);
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.15);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: rotate-ring 20s linear infinite;
}
@keyframes rotate-ring {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ---- CARD GRID ---- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
}

.card--service {
  background: var(--white);
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  box-shadow: 0 2px 12px rgba(26,26,26,0.06);
}
.card--service:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(26,26,26,0.12);
  border-color: rgba(201,168,76,0.35);
}

.card__icon svg { width: 48px; height: 48px; }

.card__title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--black);
  margin: 0;
}
.card__body { color: var(--grey); font-size: 0.95rem; flex: 1; line-height: 1.65; }

.card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--gold-dark);
  text-transform: uppercase;
  transition: gap var(--transition), color var(--transition);
  margin-top: auto;
}
.card__link svg { width: 14px; height: 14px; transition: transform var(--transition); }
.card__link:hover { color: var(--gold); }
.card__link:hover svg { transform: translateX(4px); }

/* ---- CTA BAND ---- */
.cta-band {
  background: var(--charcoal);
  background-image: linear-gradient(135deg, rgba(201,168,76,0.06) 0%, transparent 60%);
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  padding: 5rem 1.5rem;
}
.cta-band__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
}
.cta-band__title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--offwhite);
  margin-bottom: 0.75rem;
}
.cta-band__title em { color: var(--gold); }
.cta-band__text p { color: rgba(245,240,232,0.75); margin-bottom: 0; }
.cta-band__actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 200px;
}

/* ---- HOURS CARD ---- */
.hours-card {
  background: var(--white);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(26,26,26,0.07);
}
.hours-card__inner { padding: 0; }

.hours-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2.5rem;
  gap: 1.5rem;
  transition: background var(--transition);
}
.hours-row--highlight {
  background: linear-gradient(90deg, rgba(201,168,76,0.07) 0%, transparent 100%);
  border-left: 3px solid var(--gold);
}
.hours-row:hover { background: rgba(201,168,76,0.05); }

.hours-day {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
  color: var(--black);
  font-size: 1rem;
}
.hours-day svg { width: 20px; height: 20px; flex-shrink: 0; }

.hours-time {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--black);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hours-badge {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--black);
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
}

.hours-divider {
  height: 1px;
  background: rgba(201,168,76,0.12);
  margin: 0 2.5rem;
}

.hours-card__note {
  padding: 1.25rem 2.5rem;
  background: rgba(201,168,76,0.05);
  border-top: 1px solid rgba(201,168,76,0.12);
  font-size: 0.875rem;
  color: var(--grey);
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  line-height: 1.5;
}
.hours-card__note svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; color: var(--gold); }
.hours-card__note a { color: var(--gold-dark); font-weight: 500; }

/* ---- REVIEWS ---- */
.rating-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}
.stars {
  display: flex;
  gap: 3px;
}
.stars svg { width: 20px; height: 20px; }

.rating-score {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--gold);
}
.rating-count {
  font-size: 0.85rem;
  color: rgba(245,240,232,0.6);
}

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

.review-card {
  background: var(--charcoal);
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: transform var(--transition), border-color var(--transition);
}
.review-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201,168,76,0.3);
}

.review-card__stars { display: flex; gap: 4px; }
.review-card__stars svg { width: 16px; height: 16px; }

.review-card__quote {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  color: rgba(245,240,232,0.9);
  line-height: 1.6;
  flex: 1;
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.review-card__author strong {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--offwhite);
}
.review-card__author span {
  font-size: 0.8rem;
  color: rgba(245,240,232,0.5);
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  flex-shrink: 0;
}

/* ---- CONTACT ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: start;
}

.contact-info h2 { margin-bottom: 1rem; }
.contact-info > p { color: var(--grey); margin-bottom: 2rem; }

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-list svg { width: 22px; height: 22px; flex-shrink: 0; margin-top: 2px; }
.contact-list strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 0.2rem;
}
.contact-list span, .contact-list address { color: var(--grey); font-size: 0.95rem; line-height: 1.5; }
.contact-list a { color: var(--gold-dark); font-weight: 500; transition: color var(--transition); }
.contact-list a:hover { color: var(--gold); }

/* ---- CONTACT FORM ---- */
.contact-form-wrap {
  background: var(--white);
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: 0 4px 24px rgba(26,26,26,0.07);
}

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

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }

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

.form-optional {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--light-grey);
  font-size: 0.75rem;
}

.form-group input,
.form-group textarea {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--black);
  background: var(--offwhite);
  border: 1.5px solid rgba(26,26,26,0.12);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--light-grey); }

/* ---- FOOTER ---- */
.footer-kit {
  background: var(--black);
  border-top: 1px solid rgba(201,168,76,0.15);
  padding: 4rem 1.5rem 2rem;
  color: rgba(245,240,232,0.7);
}
.footer-kit__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  text-align: center;
}

.footer-kit__logo svg { width: 90px; height: 90px; margin: 0 auto 1.25rem; }

.footer-kit__tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 2rem;
}

.footer-kit__divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.4), transparent);
  margin: 2rem 0;
}

.footer-kit__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: left;
}
.footer-kit__col h4 {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.footer-kit__col ul { display: flex; flex-direction: column; gap: 0.35rem; }
.footer-kit__col li, .footer-kit__col address { font-size: 0.875rem; color: rgba(245,240,232,0.65); }
.footer-kit__col a { color: rgba(245,240,232,0.65); transition: color var(--transition); }
.footer-kit__col a:hover { color: var(--gold); }

.footer-kit__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-kit__copy { font-size: 0.8rem; color: rgba(245,240,232,0.4); }

.footer-kit__socials { display: flex; gap: 1rem; }
.social-link {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(245,240,232,0.6);
  transition: all var(--transition);
}
.social-link svg { width: 16px; height: 16px; }
.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.08);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .mobile-menu__trigger { display: flex; }

  .hero__title { font-size: clamp(2.4rem, 9vw, 3.5rem); }
  .hero__actions { flex-direction: column; align-items: center; }
  .hero__actions .btn { width: 100%; max-width: 300px; justify-content: center; }

  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-badge { bottom: -1rem; right: -0.5rem; width: 80px; height: 80px; }
  .about-badge__year { font-size: 1.2rem; }

  .dish-feature { grid-template-columns: 1fr; gap: 3rem; }
  .dish-feature__text { order: 2; }
  .dish-feature__image { order: 1; }

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

  .cta-band__inner { grid-template-columns: 1fr; text-align: center; }
  .cta-band__actions { flex-direction: row; justify-content: center; flex-wrap: wrap; }

  .hours-row { flex-direction: column; align-items: flex-start; gap: 0.5rem; padding: 1.25rem 1.5rem; }
  .hours-time { font-size: 1.1rem; }
  .hours-divider { margin: 0 1.5rem; }
  .hours-card__note { padding: 1.25rem 1.5rem; }

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

  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-form-wrap { padding: 1.75rem; }

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

  .section { padding: 4rem 0; }
}

@media (max-width: 480px) {
  .hero__sub { font-size: 0.95rem; }
  .site-header { padding: 0 1rem; }
  .container { padding: 0 1.25rem; }
  .section { padding: 3.5rem 0; }
  .cta-band { padding: 3.5rem 1.25rem; }
  .cta-band__actions { flex-direction: column; }
  .cta-band__actions .btn { width: 100%; justify-content: center; }
}

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