/* =====================================================================
   Hawkeye & Huckleberry Lounge — Design Preview
   Built by Boatr Marketing / Relaunch
   Design language: Refined Modern Cowboy
   ===================================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #f5f1e8;            /* warm cream / parchment */
  --bg-deep: #ebe5d4;       /* deeper cream */
  --ink: #2d1f15;           /* deep brown — primary text */
  --ink-soft: #4a3528;      /* softer brown */
  --ink-muted: #7a6452;     /* muted brown */
  --rust: #a6431b;          /* oxblood / rust accent */
  --rust-deep: #8a3614;
  --gold: #b8945c;          /* refined warm gold */
  --bone: #faf6ec;          /* off-white */
  --line: rgba(45, 31, 21, 0.14);
  --line-strong: rgba(45, 31, 21, 0.32);
  --shadow: 0 8px 28px rgba(45, 31, 21, 0.10);

  --font-display: 'Frank Ruhl Libre', Georgia, serif;
  --font-serif: 'DM Serif Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--ink); background: var(--bg); font-size: 17px; line-height: 1.65; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 32px; }
.container-narrow { width: 100%; max-width: 880px; margin: 0 auto; padding: 0 32px; }

/* ── SEO BANNER (Spork-pattern collapsible audit) ── */
.seo-banner { background: var(--ink); border-bottom: 2px solid var(--rust); }
.seo-top {
  display: flex; align-items: center; justify-content: space-between;
  padding: 11px 32px; cursor: pointer; gap: 14px; flex-wrap: wrap;
  max-width: 1280px; margin: 0 auto;
}
.seo-badge {
  background: var(--rust); color: var(--bone);
  font-family: var(--font-body); font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 3px; white-space: nowrap;
}
.seo-text { font-family: var(--font-body); font-size: 13px; font-weight: 500; color: rgba(250, 246, 236, 0.92); }
.seo-text span { color: var(--gold); font-weight: 700; }
.seo-toggle {
  background: rgba(250, 246, 236, 0.06); border: 1px solid rgba(184, 148, 92, 0.4);
  color: rgba(250, 246, 236, 0.88); padding: 6px 14px; border-radius: 4px;
  font-family: var(--font-body); font-size: 12px; font-weight: 600;
  cursor: pointer; white-space: nowrap; transition: all 0.2s;
}
.seo-toggle:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.seo-panel { max-height: 0; overflow: hidden; transition: max-height 0.5s ease; }
.seo-panel.open { max-height: 1600px; overflow-y: auto; }
.seo-panel-inner { padding: 28px 32px 32px; max-width: 1100px; margin: 0 auto; }
.seo-greeting {
  font-family: var(--font-display); font-style: italic; font-size: 22px; line-height: 1.5;
  color: rgba(250, 246, 236, 0.95); margin-bottom: 6px; max-width: 720px;
}
.seo-greeting strong { color: var(--gold); font-style: normal; font-weight: 500; }
.seo-greeting-sub { font-size: 14px; color: rgba(250, 246, 236, 0.55); margin-bottom: 24px; }
.seo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.seo-col-title {
  font-family: var(--font-body); font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 14px; font-weight: 700;
}
.seo-row { display: flex; align-items: flex-start; gap: 11px; margin-bottom: 11px; }
.seo-ico {
  width: 18px; height: 18px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 900; flex-shrink: 0; margin-top: 1px;
}
.seo-ico.x { background: rgba(166, 67, 27, 0.28); color: #e0875e; }
.seo-ico.c { background: rgba(184, 148, 92, 0.22); color: var(--gold); }
.seo-row-text { font-size: 13px; color: rgba(250, 246, 236, 0.78); line-height: 1.5; }
.seo-row-text strong { color: var(--bone); font-weight: 700; }
.seo-cta-row {
  margin-top: 24px; grid-column: 1 / -1;
  background: rgba(166, 67, 27, 0.14); border: 1px solid rgba(166, 67, 27, 0.45);
  border-radius: 8px; padding: 16px 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.seo-cta-text { font-size: 14px; color: rgba(250, 246, 236, 0.9); line-height: 1.5; }
.seo-cta-text strong { color: var(--gold); }
.seo-cta-btn {
  background: var(--rust); color: var(--bone); border: none; border-radius: 5px;
  padding: 11px 22px; font-family: var(--font-body); font-size: 14px; font-weight: 700;
  letter-spacing: 0.04em; cursor: pointer; white-space: nowrap; transition: all 0.2s;
  text-decoration: none; display: inline-block;
}
.seo-cta-btn:hover { background: var(--rust-deep); transform: translateY(-1px); }

/* ── TOP BAR (hours strip) ── */
.top-strip {
  background: var(--bg-deep);
  padding: 12px 32px;
  text-align: center;
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 500;
  border-bottom: 1px solid var(--line);
}
.top-strip strong { color: var(--ink); font-weight: 600; }
.top-strip .sep { margin: 0 14px; opacity: 0.4; }

/* ── NAVBAR ── */
nav.main-nav {
  background: var(--bg);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
  background: rgba(245, 241, 232, 0.92);
}
.nav-brand {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 13px;
  line-height: 1.1;
}
.nav-logo {
  height: 46px;
  width: auto;
  display: block;
  flex-shrink: 0;
}
.nav-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-brand-mark { font-size: 19px; font-weight: 700; }
.nav-brand-sub {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rust);
  margin-top: 2px;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 36px;
  align-items: center;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition: color 0.2s;
  position: relative;
}
.nav-links a:hover { color: var(--rust); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -8px;
  height: 2px;
  background: var(--rust);
}
.nav-cta {
  background: var(--ink);
  color: #fff !important;
  padding: 12px 24px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--rust); color: #fff !important; }

/* ── HAMBURGER ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--bg);
  z-index: 99;
  padding: 100px 32px 32px;
  flex-direction: column;
  gap: 24px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
}

/* ── HERO — full-bleed cinematic ── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--ink);
  color: var(--bone);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  /* Themed steakhouse overlay: deep ink at top/bottom for legibility,
     rust ember glow bleeding from the lower-left, warmer than a flat black
     overlay so the wood-fire warmth of the photo still reads through. */
  background:
    linear-gradient(180deg, rgba(20, 12, 6, 0.55) 0%, rgba(20, 12, 6, 0.20) 35%, rgba(20, 12, 6, 0.88) 100%),
    linear-gradient(90deg, rgba(20, 12, 6, 0.65) 0%, rgba(20, 12, 6, 0.10) 55%),
    radial-gradient(ellipse at 20% 95%, rgba(166, 67, 27, 0.35) 0%, rgba(166, 67, 27, 0) 55%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px 100px;
}
.hero-text {
  max-width: 760px;
}
.hero-text .hero-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  position: relative;
  padding-left: 44px;
}
.hero-text .hero-eyebrow::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 32px;
  height: 1px;
  background: var(--gold);
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 500;
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--bone);
  margin-bottom: 32px;
  text-shadow: 0 2px 30px rgba(0,0,0,0.4);
}
.hero h1 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}
.hero-lede {
  font-size: 20px;
  line-height: 1.6;
  color: rgba(250, 246, 236, 0.85);
  margin-bottom: 40px;
  max-width: 580px;
  text-shadow: 0 1px 12px rgba(0,0,0,0.4);
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-actions .btn-primary {
  background: var(--bone);
  color: var(--ink);
}
.hero-actions .btn-primary:hover {
  background: var(--gold);
  color: var(--ink);
}
.hero-actions .btn-secondary {
  background: transparent;
  color: var(--bone);
  border-color: rgba(250, 246, 236, 0.6);
}
.hero-actions .btn-secondary:hover {
  background: rgba(250, 246, 236, 0.12);
  border-color: var(--bone);
  color: var(--bone);
}
.hero-credit {
  position: absolute;
  bottom: 24px;
  right: 32px;
  z-index: 2;
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(250, 246, 236, 0.5);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s;
  border: none;
  text-align: center;
  white-space: nowrap;
}
.btn-primary {
  background: var(--ink);
  color: var(--bone);
}
.btn-primary:hover { background: var(--rust); }
.btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn-secondary:hover { background: var(--ink); color: var(--bone); }
.btn-rust {
  background: var(--rust);
  color: var(--bone);
}
.btn-rust:hover { background: var(--rust-deep); }
.btn-ghost {
  background: transparent;
  color: var(--bone);
  border: 1px solid rgba(250, 246, 236, 0.4);
}
.btn-ghost:hover { background: rgba(250, 246, 236, 0.1); border-color: var(--bone); }

/* ── SECTION TYPOGRAPHY ── */
.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 16px;
  display: inline-block;
}
.section-h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 20px;
}
.section-h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--rust);
}
.section-lede {
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 640px;
  margin-bottom: 28px;
}

/* ── STORY SECTION ── */
.story-section { padding: 120px 0; background: var(--bg); position: relative; }
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.story-img {
  position: relative;
  height: 640px;
  overflow: hidden;
}
.story-img img { width: 100%; height: 100%; object-fit: cover; }
.story-img-caption {
  position: absolute;
  bottom: 0; left: 0;
  background: var(--ink);
  color: var(--bone);
  padding: 20px 24px;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
}
.story-pullquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 28px;
  line-height: 1.4;
  color: var(--rust);
  border-left: 2px solid var(--rust);
  padding-left: 24px;
  margin: 32px 0;
  font-weight: 400;
}
.story-text p { font-size: 17px; line-height: 1.85; color: var(--ink-soft); margin-bottom: 18px; }
.story-text p strong { color: var(--ink); font-weight: 600; }

/* ── SIGNATURE ITEMS GRID ── */
.signatures { padding: 120px 0; background: var(--bg-deep); }
.signatures-header { text-align: center; margin-bottom: 80px; }
.signatures-header .section-lede { margin-left: auto; margin-right: auto; }
.sig-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.sig-card { background: var(--bone); padding: 0; overflow: hidden; transition: transform 0.3s; box-shadow: var(--shadow); }
.sig-card:hover { transform: translateY(-6px); }
.sig-card img { width: 100%; height: 280px; object-fit: cover; }
.sig-card-body { padding: 28px; }
.sig-card-tag {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 10px;
}
.sig-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 12px;
  color: var(--ink);
}
.sig-card p { font-size: 15px; line-height: 1.65; color: var(--ink-muted); }

/* ── EXPERIENCE STRIP ── */
.experience { padding: 72px 0; background: var(--bg); }
.experience-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.exp-card { padding: 48px 32px; border-right: 1px solid var(--line); }
.exp-card:last-child { border-right: none; }
.exp-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  color: var(--rust);
}
.exp-card h4 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--ink);
}
.exp-card p { font-size: 15px; line-height: 1.6; color: var(--ink-muted); }

/* ── PRIVATE EVENTS TEASER ── */
.events-teaser {
  padding: 120px 0;
  background: var(--ink);
  color: var(--bone);
  position: relative;
  overflow: hidden;
}
.events-teaser::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/bar-patio.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.22;
}
.events-teaser .container { position: relative; z-index: 1; }
.events-teaser .eyebrow { color: var(--gold); }
.events-teaser .section-h2 { color: var(--bone); max-width: 720px; }
.events-teaser .section-h2 em { color: var(--gold); }
.events-teaser .section-lede { color: rgba(250, 246, 236, 0.78); max-width: 580px; }

.event-spaces { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 60px; }
.event-space {
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid rgba(250, 246, 236, 0.15);
  padding: 28px 24px;
  background: rgba(250, 246, 236, 0.04);
  transition: all 0.25s;
  text-decoration: none;
  cursor: pointer;
}
.event-space:hover { background: rgba(250, 246, 236, 0.08); border-color: var(--gold); transform: translateY(-3px); }
.event-space-link {
  margin-top: 16px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}
.event-space:hover .event-space-link { color: var(--bone); }
.event-space-num {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}
.event-space h4 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--bone);
  margin-bottom: 8px;
}
.event-space p { font-size: 14px; color: rgba(250, 246, 236, 0.65); line-height: 1.6; }
.event-space-cap {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(250, 246, 236, 0.12);
  font-size: 13px;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.06em;
}

/* ── CONTACT / VISIT ── */
.visit-section { padding: 120px 0; background: var(--bg); }
.visit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.visit-info { padding: 48px 0; }
.info-row {
  padding: 28px 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 32px;
  align-items: start;
}
.info-row:last-child { border-bottom: 1px solid var(--line); }
.info-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
  padding-top: 4px;
}
.info-val {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--ink);
  line-height: 1.3;
  font-weight: 500;
}
.info-val a { color: var(--ink); transition: color 0.2s; }
.info-val a:hover { color: var(--rust); }
.info-val small {
  display: block;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--ink-muted);
  margin-top: 6px;
  letter-spacing: 0;
}
.visit-image { height: 580px; overflow: hidden; }
.visit-image img { width: 100%; height: 100%; object-fit: cover; }

/* ── MENU PAGE ── */
.menu-hero {
  padding: 48px 0 26px;
  text-align: center;
}
.menu-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 84px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 18px;
}
.menu-hero h1 em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--rust);
  font-weight: 400;
}
.menu-hero-lede {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 580px;
  margin: 0 auto;
}
.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 24px;
  padding: 22px 0 18px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.menu-tab {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
  padding-bottom: 8px;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
}
.menu-tab:hover { color: var(--ink); }
.menu-tab.active { color: var(--rust); border-bottom-color: var(--rust); }

.menu-section { padding: 26px 0; }
.menu-section-header { text-align: center; margin-bottom: 24px; }
.menu-section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 8px;
}
.menu-section-header h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--rust);
  font-weight: 400;
}
.menu-section-header p {
  font-size: 15px;
  color: var(--ink-muted);
  font-style: italic;
}

.menu-items { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 64px; max-width: 1100px; margin: 0 auto; }
.menu-item { padding: 11px 0; border-bottom: 1px dotted var(--line); }
.menu-item-head { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; margin-bottom: 6px; }
.menu-item-name {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
  flex: 1;
}
.menu-item-price {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--rust);
  white-space: nowrap;
}
.menu-item-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-muted);
  font-style: italic;
}
.menu-item-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-left: 8px;
  padding: 2px 8px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  vertical-align: middle;
}

.menu-section-foot {
  margin-top: 14px;
  font-size: 13.5px;
  color: var(--ink-muted);
  font-style: italic;
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.menu-note {
  background: var(--bg-deep);
  padding: 24px 32px;
  text-align: center;
  font-size: 14px;
  color: var(--ink-muted);
  font-style: italic;
  margin: 60px auto 0;
  max-width: 720px;
  border-left: 3px solid var(--rust);
}

/* ── EVENTS PAGE — DETAILED SPACE CARDS ── */
.event-detail-section { padding: 80px 0; }
.event-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 100px;
}
.event-detail-grid.flip { direction: rtl; }
.event-detail-grid.flip > * { direction: ltr; }
.event-detail-img { height: 540px; overflow: hidden; }
.event-detail-img img { width: 100%; height: 100%; object-fit: cover; }
.event-detail-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  color: var(--rust);
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}
.event-detail-text h3 {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 500;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 20px;
}
.event-detail-text p { font-size: 17px; line-height: 1.75; color: var(--ink-soft); margin-bottom: 16px; }
.event-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
  padding: 24px;
  background: var(--bg-deep);
}
.event-spec-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 4px;
}
.event-spec-val {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
}

/* ── STORY PAGE ── */
.about-hero {
  position: relative;
  min-height: 68vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--ink);
  color: var(--bone);
  padding: 120px 0;
}
.about-hero-bg { position: absolute; inset: 0; z-index: 0; }
.about-hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.about-hero-bg::after {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(20,12,6,0.55) 0%, rgba(20,12,6,0.28) 45%, rgba(20,12,6,0.82) 100%),
    radial-gradient(ellipse at 50% 55%, rgba(20,12,6,0) 0%, rgba(20,12,6,0.45) 100%);
}
.about-hero .container-narrow { position: relative; z-index: 2; }
.about-hero .eyebrow { color: var(--gold); }
.about-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 84px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--bone);
  margin-bottom: 0;
  text-shadow: 0 2px 30px rgba(0,0,0,0.45);
}
.about-hero h1 em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}
.about-content { padding: 60px 0; }
.about-block { max-width: 880px; margin: 0 auto 80px; }
.about-block p { font-size: 19px; line-height: 1.85; color: var(--ink-soft); margin-bottom: 20px; }
.about-block p strong { color: var(--ink); font-weight: 600; }
.about-block .pullquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 36px;
  line-height: 1.3;
  color: var(--rust);
  text-align: center;
  margin: 60px auto;
  padding: 0 40px;
  font-weight: 400;
  max-width: 800px;
  position: relative;
}
.about-block .pullquote::before {
  content: '"';
  font-size: 80px;
  line-height: 1;
  color: var(--gold);
  display: block;
  margin-bottom: -20px;
}
.about-image-wide {
  width: 100%;
  height: 600px;
  margin: 80px 0;
  overflow: hidden;
}
.about-image-wide img { width: 100%; height: 100%; object-fit: cover; }
.brothers-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 1180px;
  margin: 60px auto;
}
.brother-card { text-align: left; }
.brother-card h3 {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--ink);
  font-weight: 500;
  margin-bottom: 4px;
}
.brother-card .role {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 16px;
  display: block;
}
.brother-card p { font-size: 16px; line-height: 1.7; color: var(--ink-soft); }
.brother-card p + p { margin-top: 14px; }
.brother-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--bg-deep);
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-muted);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  overflow: hidden;
}
.brother-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; display: block; }

/* ── FOOTER ── */
footer {
  background: var(--ink);
  color: var(--bone);
  padding: 80px 32px 32px;
  margin-top: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: 1240px;
  margin: 0 auto 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(250, 246, 236, 0.12);
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 14px;
  line-height: 1.1;
}
.footer-brand span {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-top: 8px;
}
.footer-desc { font-size: 14px; color: rgba(250, 246, 236, 0.6); line-height: 1.7; max-width: 320px; margin-top: 12px; }
.footer-col h5 {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 14px;
  color: rgba(250, 246, 236, 0.85);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold); }
.footer-meta {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(250, 246, 236, 0.4);
  flex-wrap: wrap;
  gap: 12px;
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .container, .container-narrow { padding: 0 24px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero { min-height: 78vh; }
  .hero-content { padding: 0 24px 72px; }
  .hero-credit { right: 16px; bottom: 14px; font-size: 9px; }
  .story-grid, .visit-grid, .event-detail-grid { grid-template-columns: 1fr; gap: 40px; }
  .event-detail-grid.flip { direction: ltr; }
  .story-img, .visit-image, .event-detail-img { height: 400px; }
  .sig-grid { grid-template-columns: 1fr; }
  .experience-grid { grid-template-columns: 1fr 1fr; }
  .exp-card:nth-child(2) { border-right: none; }
  .exp-card:nth-child(odd) { border-right: 1px solid var(--line); }
  .exp-card { border-bottom: 1px solid var(--line); }
  .exp-card:nth-last-child(-n+2) { border-bottom: none; }
  .event-spaces { grid-template-columns: 1fr 1fr; }
  .menu-items { grid-template-columns: 1fr; gap: 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .brothers-row { grid-template-columns: 1fr; gap: 40px; }
  .info-row { grid-template-columns: 100px 1fr; gap: 16px; }
}
@media (max-width: 600px) {
  .nav-brand-text { display: none; }
  .nav-logo { height: 40px; }
  .top-strip .sep { display: none; }
  .top-strip { font-size: 11px; padding: 10px 16px; }
  .seo-top { padding: 10px 16px; }
  .seo-text { font-size: 12px; }
  .seo-panel-inner { padding: 22px 16px 28px; }
  .seo-greeting { font-size: 18px; }
  .seo-grid { grid-template-columns: 1fr; gap: 8px; }
  .seo-cta-row { flex-direction: column; align-items: stretch; text-align: center; }
  .seo-cta-btn { text-align: center; }
  .nav-cta { display: none; }
  .experience-grid, .event-spaces { grid-template-columns: 1fr; }
  .exp-card { border-right: none !important; }
  .footer-grid { grid-template-columns: 1fr; }
  .edit-panel { right: 12px; left: 12px; width: auto; }
}

/* ============================================================
   RELAUNCH EDIT WIDGET (kept consistent across ALL previews —
   uses tryrelaunch.com brand: orange #FE8D01 on slate #0F172A.
   Do NOT swap to per-client colors. Customer recognition matters.
   ============================================================ */
.edit-fab {
  position: fixed; bottom: 24px; right: 24px; z-index: 998;
  background: #0F172A; color: #fff;
  padding: 12px 18px; border-radius: 999px;
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-size: 13px; font-weight: 700;
  letter-spacing: 0.04em; cursor: pointer; border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  transition: all 0.25s;
}
.edit-fab:hover { background: #1E293B; transform: translateY(-2px); }
.edit-fab-dot {
  width: 8px; height: 8px; background: #FE8D01; border-radius: 50%;
  animation: relaunch-pulse 2s ease-in-out infinite;
}
@keyframes relaunch-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

.edit-panel {
  position: fixed; bottom: 86px; right: 24px; z-index: 999;
  width: min(380px, calc(100vw - 48px));
  max-height: 70vh;
  background: #0F172A; color: #fff;
  border-radius: 12px; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  display: none; flex-direction: column; overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.edit-panel.open { display: flex; }
.edit-panel-header {
  padding: 16px 18px; border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex; justify-content: space-between; align-items: center;
}
.edit-panel-title {
  font-family: var(--font-body); font-size: 14px; font-weight: 700;
  letter-spacing: 0.04em; display: flex; align-items: center; gap: 8px;
}
.edit-panel-close {
  background: none; border: none; color: rgba(255, 255, 255, 0.6);
  font-size: 22px; cursor: pointer; line-height: 1;
}
.edit-panel-close:hover { color: #fff; }

.edit-messages {
  flex: 1; overflow-y: auto; padding: 16px;
  display: flex; flex-direction: column; gap: 10px;
}
.edit-msg {
  padding: 10px 14px; border-radius: 12px;
  font-size: 14px; line-height: 1.4; max-width: 86%;
}
.edit-msg.user {
  background: #FE8D01; color: #0F172A; align-self: flex-end;
  border-bottom-right-radius: 3px; font-weight: 600;
}
.edit-msg.claude {
  background: rgba(255, 255, 255, 0.06); color: rgba(255, 255, 255, 0.92);
  align-self: flex-start; border-bottom-left-radius: 3px;
}
.edit-msg.system {
  background: rgba(254, 141, 1, 0.18); color: #FFA94D;
  align-self: flex-start; border-bottom-left-radius: 3px;
  font-size: 13px;
}
.edit-msg.error {
  background: rgba(239, 68, 68, 0.18); color: #f97171;
  align-self: flex-start; border-bottom-left-radius: 3px;
}
.edit-typing { padding: 8px 16px; display: none; gap: 4px; }
.edit-typing.show { display: flex; }
.edit-typing span {
  width: 6px; height: 6px; background: #FFA94D; border-radius: 50%;
  animation: relaunch-bounce 1.4s ease-in-out infinite;
}
.edit-typing span:nth-child(2) { animation-delay: 0.15s; }
.edit-typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes relaunch-bounce {
  0%, 80%, 100% { opacity: 0.3; transform: translateY(0); }
  40% { opacity: 1; transform: translateY(-4px); }
}

.edit-suggestions {
  padding: 0 16px 12px; display: flex; flex-wrap: wrap; gap: 6px;
}
.edit-chip {
  background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6); border-radius: 16px;
  padding: 5px 11px; font-size: 11px; cursor: pointer; transition: all 0.2s;
  font-family: var(--font-body);
}
.edit-chip:hover { background: rgba(254, 141, 1, 0.18); color: #FFA94D; border-color: #FE8D01; }

.edit-input-row {
  padding: 12px 14px 14px; border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex; gap: 8px; align-items: flex-end;
}
.edit-input {
  flex: 1; background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 8px;
  padding: 10px 12px; font-family: var(--font-body); font-size: 14px;
  color: #fff; outline: none; resize: none;
  min-height: 40px; max-height: 100px; line-height: 1.4;
}
.edit-input::placeholder { color: rgba(255, 255, 255, 0.3); }
.edit-input:focus { border-color: #FE8D01; }
.edit-send {
  background: #FE8D01; color: #0F172A; border: none;
  border-radius: 8px; width: 40px; height: 40px;
  cursor: pointer; font-size: 16px; flex-shrink: 0;
  font-weight: 900; transition: background 0.2s;
}
.edit-send:hover { background: #EA7C00; }
.edit-send:disabled { background: rgba(255, 255, 255, 0.1); cursor: not-allowed; }

/* ============================================================
   PRIVATE EVENT — space cards + inquiry form
   ============================================================ */
.space-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 12px;
}
.space-card {
  display: flex;
  flex-direction: column;
  background: var(--bone);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.space-card:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(45,31,21,0.12); }
.space-card-img { height: 230px; overflow: hidden; }
.space-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.space-card-body { padding: 26px 28px 30px; display: flex; flex-direction: column; flex: 1; }
.space-card-num {
  font-family: var(--font-body); font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--rust); margin-bottom: 10px;
}
.space-card-body h3 { font-family: var(--font-display); font-size: 25px; font-weight: 500; color: var(--ink); margin-bottom: 12px; }
.space-card-body p { font-size: 15px; color: var(--ink-soft); line-height: 1.6; margin-bottom: 18px; }
.space-card-specs {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px;
}
.space-card-tag {
  font-family: var(--font-body); font-size: 11.5px; font-weight: 600;
  letter-spacing: 0.04em; color: var(--ink-muted);
  background: var(--bg-deep); border-radius: 999px; padding: 5px 12px;
}
.space-card-link {
  margin-top: auto; font-family: var(--font-body); font-size: 13px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--rust);
}
.space-card-link:hover { color: var(--rust-deep); }

/* Inquiry form */
.event-inquiry { padding: 92px 0; background: var(--bg-deep); }
.event-inquiry .eyebrow { color: var(--rust); }
.event-form {
  margin-top: 34px; text-align: left;
  background: var(--bone); padding: 38px 40px;
  border-radius: 12px; border: 1px solid var(--line);
  box-shadow: 0 14px 40px rgba(45,31,21,0.06);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.form-field { margin-bottom: 20px; display: flex; flex-direction: column; }
.form-field label {
  font-family: var(--font-body); font-size: 11.5px; font-weight: 700;
  letter-spacing: 0.09em; text-transform: uppercase; color: var(--ink-muted); margin-bottom: 7px;
}
.form-field input, .form-field select, .form-field textarea {
  font-family: var(--font-body); font-size: 15px; color: var(--ink);
  background: var(--bg); border: 1px solid var(--line); border-radius: 7px;
  padding: 12px 14px; outline: none; transition: border-color 0.2s; width: 100%;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--rust); }
.form-field textarea { resize: vertical; min-height: 110px; }
.event-form .hidden-field { position: absolute; left: -9999px; }
.event-form button[type="submit"] { margin-top: 6px; cursor: pointer; border: none; }
@media (max-width: 720px) {
  .space-cards { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .event-form { padding: 26px 22px; }
}

/* ============================================================
   PRESS STRIP (homepage) — sleek, high-contrast, logo row
   ============================================================ */
.press-strip { padding: 96px 0; background: var(--ink); }
.press-strip .eyebrow { color: var(--gold); }
.press-strip .section-h2 { color: var(--bone); }
.press-strip .section-h2 em { color: var(--gold); }

.press-eyebrow-sub {
  font-family: var(--font-body); font-size: 11px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(250,246,236,0.45); margin: 22px 0 18px;
}
.press-logos {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 18px; margin: 0 auto 48px; max-width: 920px;
}
.press-logo { display: inline-flex; align-items: center; height: 36px; }
.press-logo img {
  height: 30px; width: auto; max-width: 150px; object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.5; transition: opacity 0.25s;
}
.press-logo:hover img { opacity: 0.92; }
.press-logo-txt {
  display: none; font-family: var(--font-display); font-size: 19px;
  font-weight: 500; color: rgba(250,246,236,0.6); letter-spacing: 0.01em;
}
.press-logo.noimg img { display: none; }
.press-logo.noimg .press-logo-txt { display: inline; }

.press-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin-top: 8px; text-align: left;
}
.press-card {
  background: rgba(250,246,236,0.05);
  border: 1px solid rgba(184,148,92,0.22);
  border-top: 2px solid var(--gold);
  border-radius: 10px; padding: 26px 24px;
  transition: transform 0.2s, background 0.2s;
}
.press-card:hover { transform: translateY(-3px); background: rgba(250,246,236,0.08); }
.press-card-tag {
  font-family: var(--font-body); font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px;
}
.press-card p { font-size: 15px; color: #efe7d6; line-height: 1.6; margin: 0; }
.press-card p strong { color: #ffffff; font-weight: 600; }
.press-strip-cta { text-align: center; margin-top: 44px; }
@media (max-width: 860px) {
  .press-cards { grid-template-columns: 1fr; }
  .press-logos { gap: 20px 30px; }
  .press-logo img { height: 24px; }
}

/* ── OpenTable reservation widget ── */
.reserve-section { padding: 90px 0; background: var(--bg-deep); }
.reserve-section .eyebrow { color: var(--rust); }
.ot-widget { display: flex; justify-content: center; margin-top: 8px; min-height: 230px; }
.ot-widget iframe { margin: 0 auto !important; max-width: 100%; }

/* ── Reservation lightbox ── */
.reserve-modal {
  position: fixed; inset: 0; z-index: 1000; display: none;
  align-items: flex-start; justify-content: center;
  background: rgba(20, 12, 6, 0.72); backdrop-filter: blur(3px);
  padding: 6vh 16px; overflow-y: auto;
}
.reserve-modal.open { display: flex; }
.reserve-modal-panel {
  position: relative; background: var(--bone); border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5); padding: 32px 26px 26px;
  width: min(440px, 100%); text-align: center;
}
.reserve-modal-title { font-family: var(--font-display); font-size: 26px; font-weight: 500; color: var(--ink); margin-bottom: 18px; }
.reserve-modal-close {
  position: absolute; top: 8px; right: 14px; background: none; border: none;
  font-size: 30px; line-height: 1; color: var(--ink-muted); cursor: pointer; padding: 4px;
}
.reserve-modal-close:hover { color: var(--rust); }
.reserve-modal-loading { color: var(--ink-muted); font-size: 14px; padding: 30px 0; }
#reserve-modal-body { display: flex; justify-content: center; min-height: 220px; }
#reserve-modal-body iframe { margin: 0 auto !important; max-width: 100%; }

/* ── PRESS / ACCOLADES (refined editorial) ── */
.award-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.award-tile {
  background: var(--bone); border: 1px solid rgba(184,148,92,0.55);
  border-radius: 10px; padding: 34px 22px 28px; text-align: center;
  transition: transform .2s, box-shadow .2s;
}
.award-tile:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(45,31,21,0.10); }
.award-tile-star { color: var(--gold); margin-bottom: 12px; line-height: 1; }
.award-tile-star svg { display: inline-block; }
.award-tile-name { font-family: var(--font-display); font-size: 20px; font-weight: 500; color: var(--ink); line-height: 1.22; margin-bottom: 12px; }
.award-tile-by { font-family: var(--font-body); font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--rust); }

.chef-accolade { display: grid; grid-template-columns: 320px 1fr; gap: 52px; align-items: start; margin-bottom: 70px; }
.chef-accolade:last-child { margin-bottom: 0; }
.chef-accolade.flip .chef-accolade-photo { order: 2; }
.chef-accolade-photo img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center 16%; border-radius: 12px; box-shadow: var(--shadow); }
.chef-accolade-body h3 { font-family: var(--font-display); font-size: 34px; font-weight: 500; color: var(--ink); line-height: 1.08; margin-bottom: 4px; }
.chef-accolade-sub { font-family: var(--font-serif); font-style: italic; font-size: 20px; color: var(--rust); margin-bottom: 22px; }

.accolade-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
.accolade-list.two-col { columns: 2; column-gap: 48px; }
.accolade-list.two-col li { break-inside: avoid; }

@media (max-width: 860px) {
  .award-grid { grid-template-columns: 1fr 1fr; }
  .chef-accolade, .chef-accolade.flip { grid-template-columns: 1fr; gap: 22px; }
  .chef-accolade.flip .chef-accolade-photo { order: 0; }
  .chef-accolade-photo img { max-width: 300px; margin: 0 auto; aspect-ratio: 1 / 1; }
  .accolade-cols { grid-template-columns: 1fr; gap: 40px; }
  .accolade-list.two-col { columns: 1; }
}

.press-logo-name {
  font-family: var(--font-display); font-size: 21px; font-weight: 500;
  color: rgba(250,246,236,0.62); letter-spacing: 0.01em; transition: color .2s;
  white-space: nowrap;
}
.press-logo-name:hover { color: var(--bone); }
@media (max-width: 600px) { .press-logo-name { font-size: 17px; } }

/* ── Press logo chips ── */
.press-logo-chip {
  background: #fff; border-radius: 8px; padding: 13px 20px;
  display: inline-flex; align-items: center; justify-content: center;
  height: 56px; box-shadow: 0 5px 18px rgba(0,0,0,0.22);
}
.press-logo-chip img { height: 30px; width: auto; display: block; }
.press-logo-chip-text {
  font-family: var(--font-display); font-size: 18px; font-weight: 600;
  color: var(--ink); white-space: nowrap; letter-spacing: 0.01em;
}
@media (max-width: 600px) { .press-logo-chip { height: 48px; padding: 10px 15px; } .press-logo-chip img { height: 24px; } .press-logo-chip-text { font-size: 15px; } }

/* ── Press chef cards (equal, side by side) ── */
.chef-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; }
.chef-card-photo { width: 100%; aspect-ratio: 4 / 5; border-radius: 12px; overflow: hidden; box-shadow: var(--shadow); margin-bottom: 22px; }
.chef-card-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 18%; }
.chef-card h3 { font-family: var(--font-display); font-size: 32px; font-weight: 500; color: var(--ink); line-height: 1.08; margin-bottom: 4px; }
@media (max-width: 760px) {
  .chef-cards { grid-template-columns: 1fr; gap: 50px; }
  .chef-card-photo { max-width: 380px; margin-left: auto; margin-right: auto; }
}

/* press accolade links */
.accolade-list a { color: var(--rust); text-decoration: underline; text-underline-offset: 2px; text-decoration-thickness: 1px; }
.accolade-list a:hover { color: var(--rust-deep); }
a.award-tile { cursor: pointer; }
a.award-tile:hover { border-color: var(--gold); }

/* Happy Hour responsive grids */
.hh-facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.hh-menu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-top: 56px; }
@media (max-width: 760px) { .hh-menu-grid { grid-template-columns: 1fr; gap: 40px; } }
@media (max-width: 600px) { .hh-facts { grid-template-columns: 1fr 1fr; gap: 28px 18px; } }
@media (max-width: 480px) { .award-grid { grid-template-columns: 1fr; } }

/* experience spacing (mobile) */
@media (max-width: 600px) {
  .experience { padding: 44px 0; }
  .exp-card { padding: 28px 18px; }
}
