/* ===================================================
   STEAK HOUSE BETTY BOOP — DEMO SITE
   Americana Steakhouse: Navy #1B3A6B | Red #E8392A | White #FFFFFF
   =================================================== */

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

:root {
  --navy:       #1B3A6B;
  --navy-deep:  #122850;
  --navy-mid:   #243E72;
  --red:        #E8392A;
  --red-dark:   #C42F21;
  --white:      #FFFFFF;
  --off-white:  #FAF8F5;
  --text:       #1A1A1A;
  --text-muted: #666666;
  --border:     rgba(27,58,107,0.15);

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

  --container-width: 1200px;
  --section-gap: 100px;
  --nav-h: 72px;

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

  --shadow-sm: 0 2px 8px rgba(0,0,0,.08);
  --shadow-md: 0 8px 32px rgba(0,0,0,.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.18);
  --shadow-card: 0 4px 20px rgba(27,58,107,.15);

  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

/* Prevent hero from bleeding under nav on mobile */
section:first-of-type { scroll-margin-top: var(--nav-h); }

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

/* SVG global — prevent uncontrolled full-width rendering */
svg:not([class]) { max-width: 100%; }
svg[width][height] { width: attr(width px); height: attr(height px); flex-shrink: 0; }

/* Fill-image pattern — ALWAYS fill container */
.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__media img { width: 100%; height: 100%; object-fit: cover; display: block; }

a { color: inherit; text-decoration: none; }
address { font-style: normal; }
ul { list-style: none; }

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

/* === TYPOGRAPHY === */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 1rem;
}
.section-title--light { color: var(--white); }

.section-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}
.section-sub--light { color: rgba(255,255,255,0.75); }

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.eyebrow--light { color: rgba(232,57,42,0.85); }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
  text-decoration: none;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn--primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn--primary:hover, .btn--primary:focus-visible {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(232,57,42,0.4);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn--ghost:hover, .btn--ghost:focus-visible {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}

.btn--ghost-sm {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
  padding: 8px 18px;
  font-size: 0.85rem;
}
.btn--ghost-sm:hover { background: var(--white); color: var(--navy); }

.btn--outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn--outline:hover {
  background: var(--navy);
  color: var(--white);
}
.btn--outline svg { stroke: currentColor; }

.btn--lg { padding: 16px 36px; font-size: 1rem; }
.btn--full { width: 100%; justify-content: center; }
.btn--nav {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  padding: 10px 22px;
  font-size: 0.875rem;
}
.btn--nav:hover { background: var(--red-dark); border-color: var(--red-dark); }

/* === NAVIGATION === */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: var(--navy-deep);
  border-bottom: 2px solid var(--red);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.35); }

.nav-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  color: var(--white);
  text-decoration: none;
}
.logo-mark svg { width: 44px; height: 44px; }
.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  margin: 0 auto;
}
.nav-link {
  display: block;
  padding: 8px 14px;
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.nav-link:hover, .nav-link:focus-visible {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

.mobile-menu__trigger {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  color: var(--white);
  margin-left: auto;
  border-radius: var(--radius-sm);
}
.mobile-menu__trigger:hover { background: rgba(255,255,255,0.1); }
.mobile-menu__trigger .hamburger-icon { display: block; width: 24px; height: 24px; }
.mobile-menu__trigger .close-icon { display: none; width: 24px; height: 24px; }
.mobile-menu__trigger[aria-expanded="true"] .hamburger-icon { display: none; }
.mobile-menu__trigger[aria-expanded="true"] .close-icon { display: block; }

/* === MOBILE MENU OVERLAY === */
.mobile-menu__overlay {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100svh;
  height: 100dvh;
  background: var(--navy-deep);
  z-index: 99;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-100%);
  transition: opacity 0.28s ease, transform 0.28s ease;
}
.mobile-menu__overlay[aria-hidden="false"] {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-menu__panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-h) + 32px) 32px 32px;
  overflow-y: auto;
}

.mobile-menu__list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 40px;
}

.mobile-menu__item {
  display: block;
  padding: 16px 0;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: color var(--transition), padding-left var(--transition);
}
.mobile-menu__item:hover, .mobile-menu__item:focus-visible {
  color: var(--red);
  padding-left: 12px;
}

.mobile-menu__cta {
  align-self: flex-start;
  margin-bottom: 32px;
}

.mobile-menu__info {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  line-height: 1.8;
}
.mobile-menu__info a { color: rgba(255,255,255,0.7); }
.mobile-menu__info a:hover { color: var(--white); }

/* === STRIPE DIVIDER === */
.stripe-divider {
  height: 8px;
  background: repeating-linear-gradient(
    90deg,
    var(--red) 0px,
    var(--red) 24px,
    var(--white) 24px,
    var(--white) 48px
  );
}

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

.hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

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

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(18,40,80,0.45) 0%,
    rgba(18,40,80,0.6) 50%,
    rgba(18,40,80,0.75) 100%
  );
}

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

.hero__badge {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 2px;
  margin-bottom: 20px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.hero__sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.88);
  margin-bottom: 36px;
  font-weight: 400;
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s ease-in-out infinite;
}
.hero__scroll-hint svg { width: 28px; height: 28px; }

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

/* === ABOUT BAND === */
.about-band {
  padding: var(--section-gap) 0;
  background: var(--white);
}

.about-band__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-band__text .eyebrow { display: block; margin-bottom: 12px; }
.about-band__text .section-title { margin-bottom: 20px; }
.about-band__text p {
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.8;
}

.about-band__stats {
  display: flex;
  gap: 32px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.stat__number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
}
.stat__label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

/* === SPECIALS === */
.specials {
  padding: var(--section-gap) 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.specials::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(232,57,42,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(255,255,255,0.03) 0%, transparent 60%);
  pointer-events: none;
}

.specials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.special-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-top: 3px solid var(--red);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  position: relative;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.special-card:hover {
  background: rgba(255,255,255,0.09);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.special-card--featured {
  background: rgba(232,57,42,0.12);
  border-color: rgba(232,57,42,0.4);
  border-top-color: var(--red);
}

.special-card__badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--red);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 2px;
}

.special-card__day {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}

.special-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(232,57,42,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--red);
}
.special-card__icon svg { width: 22px; height: 22px; }

.special-card__title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.special-card__desc {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.special-card__price {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 6px 14px;
  border-radius: 2px;
}

/* === MENU SECTION === */
.menu-section {
  padding: var(--section-gap) 0;
  background: var(--off-white);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.menu-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
}
.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.menu-card__media {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.menu-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.menu-card:hover .menu-card__media img { transform: scale(1.06); }

.menu-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(18,40,80,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.menu-card:hover .menu-card__overlay { opacity: 1; }

.menu-card__body {
  padding: 20px;
}

.menu-card__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.menu-card__desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 12px;
}

.menu-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.menu-card__cat {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
}

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

/* === REVIEWS === */
.reviews {
  padding: var(--section-gap) 0;
  background: var(--white);
}

.reviews__rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
}

.star-row {
  display: flex;
  gap: 4px;
}
.star { width: 22px; height: 22px; }

.reviews__score {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
}
.review-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.review-card--featured {
  border-color: var(--red);
  background: var(--white);
  box-shadow: var(--shadow-card);
}
.review-card--featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.review-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}
.review-card__stars svg { width: 18px; height: 18px; }

.review-card blockquote p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 20px;
  font-style: italic;
}

.review-card__author {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.review-card__name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
}
.review-card__platform {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* === RESERVATION SECTION === */
.reservation-section {
  padding: var(--section-gap) 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.reservation-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(232,57,42,0.1) 0%, transparent 60%);
  pointer-events: none;
}

.reservation-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.reservation-info .eyebrow { display: block; margin-bottom: 12px; }
.reservation-info .section-title { margin-bottom: 16px; }

.reservation-info__lead {
  color: rgba(255,255,255,0.75);
  margin-bottom: 40px;
  line-height: 1.8;
  font-size: 1rem;
}

.contact-list { display: flex; flex-direction: column; gap: 24px; }

.contact-list__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-list__icon {
  width: 44px;
  height: 44px;
  background: rgba(232,57,42,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--red);
}
.contact-list__icon svg { width: 20px; height: 20px; }

.contact-list__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 4px;
}

.contact-list__value {
  display: block;
  color: var(--white);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
}
.contact-list__value a { color: var(--white); }
.contact-list__value a:hover { color: var(--red); }

/* === FORM === */
.reservation-form-wrap {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.form-row { display: flex; flex-direction: column; gap: 16px; margin-bottom: 16px; }
.form-row--half { flex-direction: row; gap: 16px; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.02em;
}

.form-input {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--white);
  transition: border-color var(--transition), background var(--transition);
  outline: none;
  width: 100%;
}
.form-input::placeholder { color: rgba(255,255,255,0.35); }
.form-input:focus {
  border-color: var(--red);
  background: rgba(255,255,255,0.12);
  box-shadow: 0 0 0 3px rgba(232,57,42,0.2);
}
.form-select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; background-size: 16px; padding-right: 40px; }
.form-select option { background: var(--navy); color: var(--white); }

.form-textarea { resize: vertical; min-height: 80px; margin-bottom: 8px; }

/* === CONTACT SECTION === */
.contact-section {
  padding: var(--section-gap) 0;
  background: var(--off-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: start;
}

.contact-address {
  margin: 24px 0 32px;
}
.contact-address__line {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 1rem;
  color: var(--text);
}
.contact-address__line svg { width: 20px; height: 20px; color: var(--red); flex-shrink: 0; }
.contact-address__line a { color: var(--navy); font-weight: 500; }
.contact-address__line a:hover { color: var(--red); }

.opening-hours__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}

.hours-table { width: 100%; }
.hours-table td {
  padding: 8px 0;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.hours-table td:first-child { font-weight: 500; width: 110px; }
.hours-table td:last-child { color: var(--text-muted); }

.special-tag {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 2px;
  margin-left: 8px;
  vertical-align: middle;
}

.contact-map { }

.location-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.location-card__img {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}

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

.location-card__body {
  padding: 28px 32px;
}

.location-card__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.location-card__addr {
  color: var(--text);
  font-size: 1rem;

/* === FOOTER === */
.site-footer {
  background: var(--navy-deep);
  color: var(--white);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-logo svg { width: 44px; height: 44px; }
.footer-logo span {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}

.footer-tagline {
  color: rgba(255,255,255,0.55);
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 12px;
}
.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: background var(--transition), color var(--transition);
}
.social-link:hover { background: var(--red); color: var(--white); }
.social-link svg { width: 18px; height: 18px; }

.footer-heading {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
}

.footer-nav ul { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--white); }

.footer-hours__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.footer-hours__list > div {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
}
.footer-hours__list dt {
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}
.footer-hours__list dd {
  color: rgba(255,255,255,0.85);
}

.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--red);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color var(--transition);
}
.footer-phone:hover { color: #ff6b5a; }
.footer-phone svg { width: 16px; height: 16px; }

.footer-contact address {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  line-height: 2;
  margin-bottom: 24px;
}

.footer-cta-btn { font-size: 0.85rem; padding: 10px 20px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a {
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
}
.footer-bottom a:hover { color: var(--white); }


/* Inline SVG size control — prevent full-width rendering */
svg { overflow: hidden; flex-shrink: 0; }
.social-link svg { width: 18px !important; height: 18px !important; }
.footer-logo svg { width: 44px !important; height: 44px !important; }
.footer-phone svg { width: 16px !important; height: 16px !important; }
.contact-list__icon svg { width: 20px !important; height: 20px !important; }
.contact-address__line svg { width: 20px !important; height: 20px !important; }
.btn svg { width: 18px !important; height: 18px !important; }
.special-card__icon svg { width: 22px !important; height: 22px !important; }
.logo-mark svg { width: 44px !important; height: 44px !important; }
.mobile-menu__trigger svg { width: 24px !important; height: 24px !important; }
.hero__scroll-hint svg { width: 28px !important; height: 28px !important; }
.review-card__stars svg { width: 18px !important; height: 18px !important; }
.star { width: 22px !important; height: 22px !important; }

/* === RESPONSIVE === */
@media (max-width: 1100px) {
  :root { --section-gap: 80px; }

  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .about-band__grid { gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .reservation-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  :root { --section-gap: 64px; }

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

  .hero { height: 100svh; min-height: 500px; }
  .hero__title { font-size: clamp(2.2rem, 10vw, 3.5rem); }

  .about-band__grid { grid-template-columns: 1fr; gap: 40px; }
  .about-band__image { order: -1; }
  .about-band__stats { gap: 24px; flex-wrap: wrap; }

  .specials__grid { grid-template-columns: 1fr; gap: 20px; }

  .menu-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  .reviews__grid { grid-template-columns: 1fr; gap: 20px; }

  .reservation-form-wrap { padding: 28px 20px; }
  .form-row--half { flex-direction: column; }

  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }

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

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

  .about-band__stats { flex-direction: column; gap: 16px; }
}

/* === ACCESSIBILITY === */
:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
  border-radius: 2px;
}

.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;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
  .hero__scroll-hint { animation: none; }
}
