:root {
  --navy: #12202c;
  --navy-2: #1b3144;
  --ink: #0d161e;
  --cream: #f6efe2;
  --paper: #fffaf2;
  --sand: #e8d7b3;
  --gold: #d4a017;
  --gold-2: #f0c14a;
  --sign: #f3d03b;
  --rust: #9c3b28;
  --sea: #2b6f7c;
  --muted: #6b5e4e;
  --line: rgba(18, 32, 44, 0.12);
  --shadow: 0 18px 50px rgba(13, 22, 30, 0.18);
  --radius: 18px;
  --max: 1160px;
  --font: "Source Sans 3", system-ui, sans-serif;
  --display: "Fraunces", Georgia, serif;
}

*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  margin: 0;
  font-family: var(--font);
  color: var(--navy);
  background: var(--cream);
  line-height: 1.55;
  overflow-x: hidden;
}
img, video, iframe { max-width: 100%; display: block; }
a { color: inherit; }
button, a, input, select, textarea { touch-action: manipulation; }
.wrap { width: min(var(--max), calc(100% - 2rem)); margin-inline: auto; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(18, 32, 44, 0.94);
  color: var(--cream);
  backdrop-filter: blur(10px);
  border-bottom: 3px solid var(--gold);
  padding-top: env(safe-area-inset-top);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: 64px;
}
.brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  line-height: 1.05;
}
.brand-text {
  display: flex;
  flex-direction: column;
}
.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  background: #fff;
  border-radius: 8px;
}
.brand-kicker {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-2);
}
.brand-name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: 0.02em;
}
.nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}
.nav a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: var(--cream);
  opacity: 0.88;
}
.nav a:hover, .nav a.active { opacity: 1; color: var(--gold-2); }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 999px;
  padding: 0.8rem 1.2rem;
  min-height: 44px;
  transition: transform 0.15s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-gold { background: var(--gold); color: var(--ink); }
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(246, 239, 226, 0.35);
}
.btn-navy { background: var(--navy); color: var(--cream); }
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}

.nav-toggle {
  display: none;
  background: rgba(246, 239, 226, 0.08);
  border: 1px solid rgba(246, 239, 226, 0.18);
  color: var(--cream);
  font-size: 1.45rem;
  cursor: pointer;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  line-height: 1;
  flex-shrink: 0;
}

/* Hero */
.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  place-items: end stretch;
  color: var(--cream);
  background:
    linear-gradient(180deg, rgba(13,22,30,0.20) 0%, rgba(13,22,30,0.68) 62%, rgba(13,22,30,0.90) 100%),
    url("../images/interior.jpg") center 45% / cover no-repeat;
}
.hero-inner { padding: 3.5rem 0 3rem; }
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-2);
  font-weight: 700;
  margin-bottom: 0.6rem;
}
.hero h1 {
  font-family: var(--display);
  font-size: clamp(2.4rem, 7vw, 4.6rem);
  line-height: 0.95;
  margin: 0 0 0.8rem;
  max-width: 14ch;
}
.hero p.lede {
  font-size: 1.15rem;
  max-width: 38rem;
  color: rgba(246, 239, 226, 0.92);
  margin: 0 0 1.5rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* Sections */
section { padding: 4.2rem 0; }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 1.8rem;
}
.section-head h2, .page-hero h1, .story h2, .visit-grid h2 {
  font-family: var(--display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.1;
  margin: 0;
}
.muted { color: var(--muted); }
.gold { color: var(--gold); }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
@media (min-width: 800px) {
  .featured-four { grid-template-columns: repeat(2, 1fr); }
}
.grid-2 { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 2rem; align-items: center; }
.card {
  background: var(--paper);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.card img { width: 100%; height: 220px; object-fit: cover; }
.card-body { padding: 1.15rem 1.2rem 1.35rem; }
.card h3 {
  font-family: var(--display);
  margin: 0 0 0.35rem;
  font-size: 1.35rem;
}
.tag {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--rust);
  margin-bottom: 0.35rem;
}

.bread-band {
  background: var(--navy);
  color: var(--cream);
}
.bread-band .grid-2 img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: var(--radius);
}
.card img.photo-full {
  height: 420px;
  object-fit: contain;
  object-position: center;
  background: #1a1510;
}
.bread-band .grid-2 img.photo-full {
  height: 520px;
  object-fit: contain;
  object-position: center;
  background: #0d161e;
}
.quote {
  font-family: var(--display);
  font-size: 1.45rem;
  font-style: italic;
  line-height: 1.35;
  margin: 1rem 0;
}

.info-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--sign);
  color: var(--ink);
  font-family: var(--font);
}
.info-strip div {
  padding: 1.15rem 1rem;
  border-right: 1px solid rgba(13,22,30,0.12);
  text-align: center;
  font-size: 1rem;
  line-height: 1.4;
  font-weight: 600;
}
.info-strip div:last-child { border-right: 0; }
.info-strip strong {
  display: block;
  font-family: var(--font);
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: 0;
  margin-bottom: 0.15rem;
}
.info-strip a { text-decoration: none; }

.page-hero {
  background: var(--navy);
  color: var(--cream);
  padding: 3.2rem 0 2.4rem;
}
.page-hero p { max-width: 40rem; color: rgba(246,239,226,0.85); }

/* Menu */
.menu-note {
  background: var(--paper);
  border-left: 4px solid var(--gold);
  padding: 0.9rem 1rem;
  margin-bottom: 2rem;
  border-radius: 0 12px 12px 0;
}
.menu-cat { margin-bottom: 2.6rem; }
.menu-cat h2 {
  font-family: var(--display);
  font-size: 1.8rem;
  margin: 0 0 0.3rem;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
  padding-bottom: 0.15rem;
}
.menu-intro { color: var(--muted); margin: 0.4rem 0 1rem; max-width: 46rem; }
.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem 1.2rem;
  padding: 0.95rem 0;
  border-bottom: 1px dashed var(--line);
}
.menu-item h3 { margin: 0; font-size: 1.08rem; }
.menu-item p { margin: 0.2rem 0 0; color: var(--muted); font-size: 0.95rem; }
.price {
  font-weight: 700;
  white-space: nowrap;
  color: var(--navy);
}
.badge-new {
  font-size: 0.68rem;
  background: var(--rust);
  color: white;
  padding: 0.1rem 0.4rem;
  border-radius: 999px;
  margin-left: 0.35rem;
  letter-spacing: 0.06em;
  vertical-align: middle;
}

/* About / visit */
.story img, .map-frame {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.story img { height: 420px; object-fit: cover; object-position: center 20%; }
.facts { display: grid; gap: 0.8rem; margin-top: 1.2rem; }
.fact {
  background: var(--paper);
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--line);
}
.fact strong { display: block; font-family: var(--display); }

.values-list {
  margin: 0 0 1.2rem;
  padding-left: 1.1rem;
}
.values-list li { margin: 0.45rem 0; }

.apply-form fieldset {
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: var(--radius);
  padding: 1.1rem 1.15rem 1.2rem;
  margin: 0 0 1.1rem;
}
.apply-form legend {
  font-family: var(--display);
  font-weight: 700;
  padding: 0 0.4rem;
}
.apply-form label {
  display: block;
  font-weight: 600;
  font-size: 0.92rem;
  margin: 0.7rem 0;
}
.apply-form input[type="text"],
.apply-form input[type="tel"],
.apply-form input[type="email"],
.apply-form select,
.apply-form textarea {
  display: block;
  width: 100%;
  margin-top: 0.35rem;
  padding: 0.65rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  font: inherit;
  background: #fff;
}
.apply-form textarea { resize: vertical; }
.form-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}
.form-row.checks { grid-template-columns: repeat(3, 1fr); align-items: center; }
.apply-form .check {
  font-weight: 600;
  display: flex;
  gap: 0.45rem;
  align-items: flex-start;
}
.apply-form .check input { margin-top: 0.2rem; width: auto; }
@media (max-width: 700px) {
  .form-row, .form-row.checks { grid-template-columns: 1fr; }
}

.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: 0.55rem 0; border-bottom: 1px solid var(--line); }
.hours-table td:last-child { text-align: right; font-weight: 700; }
.closed { color: var(--rust); }

.map-frame { min-height: 320px; border: 0; background: #cfd8dc; }

footer {
  background: var(--ink);
  color: var(--cream);
  padding: 2.4rem 0 1.4rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.6rem;
}
footer a { color: var(--gold-2); text-decoration: none; }
.legal { font-size: 0.82rem; color: rgba(246,239,226,0.6); border-top: 1px solid rgba(246,239,226,0.12); padding-top: 1rem; }

@media (max-width: 860px) {
  .wrap { width: min(var(--max), calc(100% - 1.4rem)); }
  .nav { display: none; }
  .nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--navy);
    padding: 0.6rem 1.1rem calc(1.2rem + env(safe-area-inset-bottom));
    gap: 0.15rem;
    border-bottom: 3px solid var(--gold);
    max-height: calc(100dvh - 64px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .nav.open a {
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 0.55rem 0.2rem;
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(246, 239, 226, 0.08);
  }
  .nav.open .btn {
    margin-top: 0.55rem;
    width: 100%;
    border-bottom: 0;
    justify-content: center;
  }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  body.nav-open { overflow: hidden; }
  .grid-3, .grid-2, .info-strip, .footer-grid { grid-template-columns: 1fr; }
  .info-strip div { border-right: 0; border-bottom: 1px solid rgba(13,22,30,0.12); padding: 0.95rem 0.85rem; }
  .hero { min-height: min(78dvh, 640px); background-position: 70% 20%; }
  .hero-inner { padding: 2.2rem 0 2rem; }
  .hero h1 { max-width: 12ch; }
  .hero p.lede { font-size: 1.02rem; }
  .story img { height: 240px; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .hero-actions { width: 100%; }
  .hero-actions .btn { flex: 1 1 100%; }
  section { padding: 2.6rem 0; }
  .page-hero { padding: 2.1rem 0 1.6rem; }
  .card img, .card img.photo-full { height: 210px; }
  .bread-band .grid-2 img,
  .bread-band .grid-2 img.photo-full { height: 240px; }
  .quote { font-size: 1.2rem; }
  .brand-kicker { font-size: 0.58rem; letter-spacing: 0.12em; }
  .brand-name { font-size: 1.15rem; }
  .brand img { width: 40px; height: 40px; }
  .menu-item { grid-template-columns: 1fr; gap: 0.25rem; }
  .price { text-align: left; }
  .menu-photo { max-height: 200px; }
  .apply-form input[type="text"],
  .apply-form input[type="tel"],
  .apply-form input[type="email"],
  .apply-form select,
  .apply-form textarea {
    font-size: 16px;
    min-height: 44px;
  }
  .map-frame { min-height: 240px; }
  .mobile-cta { display: grid; }
  body { padding-bottom: calc(64px + env(safe-area-inset-bottom)); }
  #cookie-banner { bottom: calc(64px + env(safe-area-inset-bottom)); }
}

.legal { display: flex; align-items: center; gap: 0.8rem; flex-wrap: wrap; }
.hit-counter { height: 22px; border-radius: 4px; }

.menu-photo {
  width: 100%;
  max-height: 280px;
  object-fit: contain;
  background: #fff;
  border-radius: var(--radius);
  margin: 0.35rem 0 1.15rem;
  box-shadow: var(--shadow);
}

#cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  background: var(--navy);
  color: #f4efe4;
  border-top: 3px solid var(--gold);
  box-shadow: 0 -8px 24px rgba(0,0,0,0.25);
}
.cookie-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem 1.2rem 1.15rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.cookie-inner p { margin: 0; max-width: 46rem; font-size: 0.95rem; }
.cookie-actions { display: flex; gap: 0.6rem; align-items: center; flex-wrap: wrap; }
.cookie-actions a { color: var(--gold); }
.map-consent { margin-top: 0.6rem; }

.mobile-cta {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 70;
  grid-template-columns: 1fr 1fr 1.25fr;
  gap: 0.45rem;
  padding: 0.55rem 0.7rem calc(0.55rem + env(safe-area-inset-bottom));
  background: rgba(13, 22, 30, 0.96);
  border-top: 2px solid var(--gold);
  backdrop-filter: blur(10px);
}
.mobile-cta a {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  color: var(--cream);
  border: 1px solid rgba(246, 239, 226, 0.22);
  border-radius: 999px;
}
.mobile-cta a.primary {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}

@media (max-width: 860px) {
  .cookie-inner {
    flex-direction: column;
    align-items: stretch;
    padding: 0.85rem 1rem 1rem;
  }
  .cookie-actions { width: 100%; }
  .cookie-actions .btn { flex: 1; }
}

@media (max-width: 420px) {
  .brand-kicker { display: none; }
  .hero { min-height: min(70dvh, 560px); }
}
