/* ==========================================================================
   The Roost: Kitchen and Bar — styles.css
   Contemporary hospitality · semi fine-dining · mobile-first · zero-build
   ========================================================================== */

:root {
  /* Warm white + charcoal + rich tan accent */
  --bg: #f7f6f3;
  --bg-elevated: #ffffff;
  --bg-subtle: #efeee9;
  --charcoal: #1a1a1a;
  --charcoal-soft: #2c2c2c;
  --ink: #1a1a1a;
  --ink-muted: #5c5c5c;
  --ink-faint: #8a8a8a;
  --line: rgba(26, 26, 26, 0.09);
  --line-strong: rgba(26, 26, 26, 0.14);
  --accent: #c4a574;          /* rich camel / tan */
  --accent-hover: #b8956a;
  --accent-deep: #a07d52;
  --tan-soft: #d4b896;
  --gold: #c4a574;            /* alias — same tan family */
  --on-dark: #fafaf8;
  --on-dark-muted: rgba(250, 250, 248, 0.7);
  --shadow: 0 1px 2px rgba(26, 26, 26, 0.04), 0 6px 20px rgba(26, 26, 26, 0.05);
  --shadow-lg: 0 4px 8px rgba(26, 26, 26, 0.04), 0 16px 36px rgba(26, 26, 26, 0.08);

  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Outfit", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --max: 1120px;
  --nav-h: 5.5rem;
  --radius: 4px;
  --radius-lg: 8px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 1rem);
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; display: block; }
a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
a:hover { color: var(--accent-hover); }
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 0.55em;
}
h1 { font-size: clamp(2.75rem, 6vw, 4.5rem); font-weight: 500; }
h2 { font-size: clamp(2rem, 3.8vw, 2.85rem); font-weight: 500; }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); font-weight: 600; }

p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.section {
  padding: clamp(4rem, 8vw, 6.25rem) 0;
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.lede {
  font-size: 1.125rem;
  color: var(--ink-muted);
  max-width: 36rem;
  line-height: 1.7;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100%;
  z-index: 1000;
  background: var(--charcoal);
  color: var(--on-dark);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius);
  text-decoration: none;
}
.skip-link:focus { top: 1rem; }

/* --------------------------------------------------------------------------
   Sticky nav — solid dark bar so logo pops
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  background: var(--charcoal);
  border-bottom: 1px solid rgba(250, 250, 248, 0.08);
  transition: box-shadow 0.3s var(--ease);
}
.site-header.is-scrolled {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  gap: 1.25rem;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.logo:hover { opacity: 0.92; }
.logo-img {
  height: 4.25rem;
  width: auto;
  max-width: min(58vw, 11.5rem);
  object-fit: contain;
}
@media (min-width: 880px) {
  .logo-img {
    height: 4.75rem;
    max-width: 12.5rem;
  }
}

.nav-links {
  display: none;
  align-items: center;
  gap: 0.15rem;
}
.nav-links a {
  text-decoration: none;
  color: var(--on-dark-muted);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--on-dark);
  background: rgba(250, 250, 248, 0.08);
}

.nav-cta { display: none; }

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0.6rem;
  border: 1px solid rgba(250, 250, 248, 0.22);
  border-radius: var(--radius);
  background: transparent;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 1.5px;
  background: var(--on-dark);
  border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

@media (min-width: 880px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .nav-toggle { display: none; }
}

.nav-drawer {
  display: none;
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  background: var(--charcoal-soft);
  padding: 1.75rem 1.5rem;
  z-index: 99;
  overflow-y: auto;
}
.nav-drawer.is-open { display: block; }
.nav-drawer a {
  display: block;
  text-decoration: none;
  color: var(--on-dark);
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 500;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(250, 250, 248, 0.1);
}
.nav-drawer .btn { margin-top: 1.75rem; width: 100%; justify-content: center; }
body.nav-open { overflow: hidden; }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1;
  text-decoration: none;
  padding: 0.95rem 1.45rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
}
.btn:active { transform: scale(0.98); }
.btn-primary {
  background: var(--accent);
  color: var(--charcoal);
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--tan-soft);
  border-color: var(--tan-soft);
  color: var(--charcoal);
}
.btn-secondary {
  background: transparent;
  color: var(--on-dark);
  border-color: rgba(250, 250, 248, 0.35);
}
.btn-secondary:hover {
  background: rgba(250, 250, 248, 0.08);
  color: var(--on-dark);
  border-color: var(--on-dark);
}
.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn-outline:hover {
  background: var(--charcoal);
  color: var(--on-dark);
  border-color: var(--charcoal);
}
.btn-dark {
  background: var(--charcoal);
  color: var(--on-dark);
  border-color: var(--charcoal);
}
.btn-dark:hover {
  background: var(--charcoal-soft);
  border-color: var(--charcoal-soft);
  color: var(--on-dark);
}
.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* --------------------------------------------------------------------------
   Hero — large logo + refined copy
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: flex;
  align-items: center;
  color: var(--on-dark);
  overflow: hidden;
  background: var(--charcoal);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(196, 165, 116, 0.12), transparent 55%),
    linear-gradient(180deg, #141414 0%, #1a1a1a 100%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  padding: clamp(3.5rem, 10vw, 6rem) 0;
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-logo {
  width: min(100%, 18rem);
  height: auto;
  margin: 0 auto 1.75rem;
  filter: drop-shadow(0 6px 24px rgba(0, 0, 0, 0.4));
}
@media (min-width: 700px) {
  .hero-logo { width: min(100%, 22rem); margin-bottom: 2rem; }
}
.hero-eyebrow {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 1rem;
}
.hero h1 {
  /* Visually hidden — logo is the primary brand mark */
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  font-style: italic;
  font-weight: 500;
  color: var(--on-dark-muted);
  max-width: 32rem;
  margin: 0 auto 2rem;
  line-height: 1.4;
}
.hero .btn-row {
  justify-content: center;
  margin-top: 0.25rem;
}
.hero-photo-note {
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 2;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250, 250, 248, 0.4);
}

/* --------------------------------------------------------------------------
   About
   -------------------------------------------------------------------------- */
.about-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 900px) {
  .about-grid.about-grid--hospitality {
    grid-template-columns: 1fr 1.05fr;
    gap: 3.5rem;
    align-items: center;
  }
}

.photo-placeholder {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background:
    linear-gradient(145deg, #e8e6e0 0%, #d9d6ce 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--ink-faint);
  text-align: center;
  padding: 2rem;
  border: 1px solid var(--line);
}
.photo-placeholder svg {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--ink-faint);
  opacity: 0.7;
}
.photo-placeholder strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--ink-muted);
  font-weight: 500;
}
.photo-placeholder span {
  font-size: 0.8125rem;
  max-width: 14rem;
  color: var(--ink-faint);
}

.feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.75rem;
}
.pill {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: var(--bg-elevated);
  color: var(--ink-muted);
  border: 1px solid var(--line);
}

.brand-values {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem 1.25rem;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--line);
}
.brand-value {
  text-align: center;
  padding: 0.85rem 1rem;
  border: none;
  border-radius: 0;
  background: transparent;
  min-width: 6.5rem;
  flex: 1 1 6.5rem;
  max-width: 9.5rem;
}
.brand-value:hover {
  border-color: transparent;
  box-shadow: none;
}
.brand-value .bv-icon {
  width: 1.75rem;
  height: 1.75rem;
  margin: 0 auto 0.65rem;
  color: var(--accent);
}
.brand-value span {
  display: block;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  line-height: 1.35;
}

/* --------------------------------------------------------------------------
   Menu
   -------------------------------------------------------------------------- */
.menu-section {
  background: var(--bg-elevated);
  border-top: 1px solid var(--line);
  border-bottom: none;
}

.menu-header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.placeholder-banner {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: var(--bg);
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 1rem 1.15rem;
  font-size: 0.9rem;
  color: var(--ink-muted);
  margin-bottom: 2.25rem;
  max-width: 44rem;
}
.placeholder-banner strong {
  color: var(--ink);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.65rem;
  display: block;
  margin-bottom: 0.3rem;
  font-weight: 700;
}

.menu-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 2.5rem;
  position: sticky;
  top: var(--nav-h);
  z-index: 10;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
}
.menu-cat-btn {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--ink-muted);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.menu-cat-btn:hover,
.menu-cat-btn.is-active {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: var(--on-dark);
}

.menu-category {
  margin-bottom: 3.25rem;
  scroll-margin-top: calc(var(--nav-h) + 4rem);
}
.menu-category h3 {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.menu-category h3 svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--accent);
}

.menu-list {
  display: grid;
  gap: 0;
}
@media (min-width: 720px) {
  .menu-list { grid-template-columns: 1fr 1fr; column-gap: 3rem; }
}

.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.2rem 1.25rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line);
}
.menu-item-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.menu-item-price {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--accent);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.menu-item-desc {
  grid-column: 1 / -1;
  font-size: 0.875rem;
  color: var(--ink-muted);
  margin: 0;
  line-height: 1.55;
}
.menu-item-tag {
  grid-column: 1 / -1;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.25rem;
}

.disclaimer {
  font-size: 0.75rem;
  color: var(--ink-faint);
  margin-top: 2.5rem;
  max-width: 48rem;
  line-height: 1.55;
}

.menu-photo-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 3rem;
}
@media (min-width: 700px) {
  .menu-photo-grid { grid-template-columns: 1fr 1fr; }
}
.menu-photo-card {
  background: var(--charcoal);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
}
.menu-photo-card img {
  width: 100%;
  height: auto;
  display: block;
}
.menu-photo-card figcaption {
  padding: 0.95rem 1.15rem;
  font-size: 0.8rem;
  color: var(--on-dark-muted);
}
.menu-photo-card a { color: var(--gold); }

/* --------------------------------------------------------------------------
   Visit / Hours
   -------------------------------------------------------------------------- */
.visit-grid {
  display: grid;
  gap: 1.75rem;
  margin-top: 2rem;
}
@media (min-width: 900px) {
  .visit-grid {
    grid-template-columns: 1fr 1.2fr;
    gap: 2rem;
    align-items: stretch;
  }
}

.hours-card,
.contact-card,
.form-card {
  background: var(--bg-elevated);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
}
.hours-table th,
.hours-table td {
  text-align: left;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.hours-table th {
  font-weight: 600;
  width: 42%;
  color: var(--ink);
}
.hours-table td { color: var(--ink-muted); }
.hours-table tr:last-child th,
.hours-table tr:last-child td { border-bottom: none; }
.hours-note {
  font-size: 0.8rem;
  color: var(--ink-faint);
  margin-top: 1.15rem;
  margin-bottom: 0;
}

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--bg-subtle);
  min-height: 320px;
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
  display: block;
}

.address-block { margin-top: 1.5rem; }
.address-block p { margin-bottom: 0.35rem; }
.address-block .venue-note {
  font-size: 0.875rem;
  color: var(--ink-faint);
  font-style: italic;
}

/* --------------------------------------------------------------------------
   Contact
   -------------------------------------------------------------------------- */
.contact-section {
  background: var(--bg-subtle);
}

.contact-grid {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 860px) {
  .contact-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3.5rem;
  }
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1.75rem 0;
}
.contact-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: var(--ink);
  font-weight: 500;
  padding: 1rem 1.1rem;
  background: var(--bg-elevated);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.contact-link:hover {
  border-color: var(--line-strong);
  box-shadow: var(--shadow);
  color: var(--ink);
}
.contact-link .icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--bg);
  color: var(--accent);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border: 1px solid var(--line);
}
.contact-link .icon svg { width: 1.1rem; height: 1.1rem; }
.contact-link small {
  display: block;
  font-weight: 400;
  font-size: 0.8rem;
  color: var(--ink-faint);
}

.form-note {
  font-size: 0.8125rem;
  color: var(--ink-muted);
  background: var(--bg);
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  margin-bottom: 1.35rem;
  border-left: 3px solid var(--gold);
}

.form-group { margin-bottom: 1.15rem; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 0.45rem;
  color: var(--ink);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.8rem 0.95rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(196, 165, 116, 0.28);
  background: var(--bg-elevated);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-actions { margin-top: 0.5rem; }
.form-status {
  margin-top: 1rem;
  font-size: 0.9rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  display: none;
}
.form-status.is-visible { display: block; }
.form-status.success {
  background: rgba(46, 125, 70, 0.08);
  color: #1e5c32;
  border: 1px solid rgba(46, 125, 70, 0.25);
}
.form-status.error {
  background: rgba(160, 125, 82, 0.1);
  color: var(--accent-deep);
  border: 1px solid rgba(160, 125, 82, 0.3);
}

/* --------------------------------------------------------------------------
   Page hero (menu page)
   -------------------------------------------------------------------------- */
.page-hero {
  background: var(--charcoal);
  color: var(--on-dark);
  padding: clamp(3rem, 7vw, 4.25rem) 0;
  text-align: center;
}
.page-hero .page-hero-logo {
  width: min(100%, 11rem);
  margin: 0 auto 1.25rem;
}
.page-hero h1 {
  color: var(--on-dark);
  margin-bottom: 0.4em;
  font-weight: 500;
}
.page-hero p {
  color: var(--on-dark-muted);
  margin: 0 auto;
  max-width: 34rem;
}
.page-hero .section-label { color: var(--gold); }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--charcoal);
  color: var(--on-dark-muted);
  padding: 3.5rem 0 2rem;
  font-size: 0.9rem;
}
.footer-grid {
  display: grid;
  gap: 2.25rem;
  margin-bottom: 2.75rem;
}
@media (min-width: 700px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
}
.site-footer h3 {
  color: var(--on-dark);
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 0.85rem;
}
.site-footer a {
  color: var(--on-dark);
  text-decoration: none;
}
.site-footer a:hover {
  color: var(--gold);
  text-decoration: underline;
}
.footer-brand p { max-width: 22rem; }
.footer-logo {
  max-width: 8.5rem;
  margin-bottom: 1.1rem;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(250, 250, 248, 0.1);
  font-size: 0.8rem;
  color: rgba(250, 250, 248, 0.45);
}
.footer-bottom a { color: rgba(250, 250, 248, 0.55); }

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

/* --------------------------------------------------------------------------
   Hero with interior photo
   -------------------------------------------------------------------------- */
.hero.has-photo {
  background: var(--charcoal);
}
.hero.has-photo::before {
  background:
    linear-gradient(180deg, rgba(14,14,14,0.62) 0%, rgba(14,14,14,0.78) 50%, rgba(14,14,14,0.9) 100%),
    url("../assets/interior-hero.jpg?v=sharp25") center center / cover no-repeat;
}
.hero.has-photo::after {
  content: none;
}

.photo-frame {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--charcoal);
}
.photo-frame img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center;
}
.photo-frame--about img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center 45%;
  min-height: 220px;
  max-height: min(52vh, 420px);
}
@media (min-width: 900px) {
  .photo-frame--about img {
    max-height: 380px;
  }
}
.photo-frame figcaption {
  font-size: 0.75rem;
  color: var(--ink-faint);
  padding: 0.7rem 0.95rem;
  background: var(--bg-elevated);
  border-top: 1px solid var(--line);
}

/* Specials — evergreen, no dated flyers */
.specials {
  margin-top: 3rem;
  padding: 2rem 0 0;
  border-top: 1px solid var(--line);
}
.specials-inner {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  padding: 1.75rem 1.5rem;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
@media (min-width: 720px) {
  .specials-inner {
    grid-template-columns: auto 1fr;
    gap: 2rem;
    padding: 2rem 2.25rem;
  }
}
.specials-mark {
  width: 5.5rem;
  height: auto;
  margin: 0 auto;
  opacity: 0.92;
}
@media (min-width: 720px) {
  .specials-mark { width: 6.5rem; margin: 0; }
}
.specials h3 {
  margin-bottom: 0.4em;
  font-weight: 500;
}
.specials-list {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  color: var(--ink-muted);
  font-size: 0.95rem;
}
.specials-list li {
  position: relative;
  padding: 0.35rem 0 0.35rem 1.1rem;
}
.specials-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85em;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--accent);
}

/* --------------------------------------------------------------------------
   Lunch / Dinner meal tabs
   -------------------------------------------------------------------------- */
.meal-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
}
.meal-tab {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.7rem 1.35rem;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--ink-muted);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.meal-tab:hover {
  color: var(--ink);
  border-color: var(--ink);
}
.meal-tab.is-active,
.meal-tab[aria-selected="true"] {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: var(--accent);
}
.meal-panel[hidden] { display: none; }

/* --------------------------------------------------------------------------
   Build Your Nest
   -------------------------------------------------------------------------- */
.nest-section {
  background: var(--charcoal);
  color: var(--on-dark);
  padding: clamp(4rem, 8vw, 6rem) 0;
}
.nest-section .section-label { color: var(--accent); }
.nest-section h2 {
  color: var(--on-dark);
  font-weight: 500;
  margin-bottom: 0.4em;
}
.nest-intro {
  color: var(--on-dark-muted);
  max-width: 36rem;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}
.nest-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal);
  background: var(--accent);
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}
.nest-vibes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.nest-vibe {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 0.65rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(250, 250, 248, 0.22);
  background: transparent;
  color: var(--on-dark-muted);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.nest-vibe:hover {
  color: var(--on-dark);
  border-color: var(--accent);
}
.nest-vibe.is-active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--charcoal);
}
.nest-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1.75rem;
  max-width: 40rem;
}
.nest-form input[type="text"] {
  flex: 1 1 16rem;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(250, 250, 248, 0.2);
  background: rgba(250, 250, 248, 0.06);
  color: var(--on-dark);
}
.nest-form input::placeholder { color: rgba(250, 250, 248, 0.4); }
.nest-form input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(196, 165, 116, 0.25);
}
.nest-result {
  margin-top: 0.5rem;
}
.nest-disclaimer {
  font-size: 0.8rem;
  color: rgba(250, 250, 248, 0.5);
  margin-bottom: 1.25rem;
}
.nest-path {
  display: grid;
  gap: 0.85rem;
}
@media (min-width: 720px) {
  .nest-path { grid-template-columns: repeat(4, 1fr); gap: 1rem; }
}
.nest-card {
  background: rgba(250, 250, 248, 0.05);
  border: 1px solid rgba(250, 250, 248, 0.12);
  border-radius: var(--radius-lg);
  padding: 1.15rem 1.2rem;
  min-height: 100%;
}
.nest-card--drink {
  border-color: rgba(196, 165, 116, 0.35);
}
.nest-card--note {
  opacity: 0.92;
}
.nest-role {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.55rem;
}
.nest-card h4 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--on-dark);
  margin: 0 0 0.4rem;
}
.nest-desc {
  font-size: 0.875rem;
  color: var(--on-dark-muted);
  margin: 0 0 0.85rem;
  line-height: 1.5;
}
.nest-price {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
  margin: 0;
}
.nest-footer {
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(250, 250, 248, 0.1);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nest-footer p {
  margin: 0;
  color: var(--on-dark-muted);
  font-size: 0.95rem;
}
.nest-footer span {
  font-size: 0.8rem;
  opacity: 0.7;
}
.nest-empty {
  color: var(--on-dark-muted);
}

/* Stronger hero overlay for logo readability after photo update */
.hero.has-photo::before {
  background:
    linear-gradient(180deg, rgba(14,14,14,0.62) 0%, rgba(14,14,14,0.78) 50%, rgba(14,14,14,0.9) 100%),
    url("../assets/interior-hero.jpg?v=sharp25") center center / cover no-repeat;
}


/* Hero photo: high-res asset; cover without extra zoom */
.hero.has-photo {
  background-color: #141414;
}
.hero.has-photo::before {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  /* Prefer crisp when browser scales down from 1920px source */
  image-rendering: auto;
}
