/* ============================================
   BULLHEAD — design tokens
   ============================================ */
:root {
  --cream: #F7EFE6;
  --cream-deep: #EFE3D2;
  --ink: #241712;
  --ink-soft: #4A3830;
  --rose: #E7C9D6;
  --rose-deep: #D9AFC2;
  --cognac: #C77E3F;
  --green: #1F5C3F;
  --green-deep: #163F2C;
  --rust: #C4562A;
  --red: #E8332B;

  --font-display: 'Fraunces', serif;
  --font-body: 'Inter', sans-serif;

  --edge: clamp(20px, 6vw, 64px);
}

* { box-sizing: border-box; }
html { scroll-behavior: auto; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  margin: 0;
  color: var(--ink);
  letter-spacing: -0.01em;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============================================
   Scroll progress rail — one quiet, purposeful
   piece of chrome instead of a nav highlight
   ============================================ */
.progress-rail {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  background: transparent;
  z-index: 100;
}
.progress-fill {
  height: 100%;
  width: 0%;
  background: var(--red);
  transition: width 0.1s linear;
}

/* ============================================
   Nav
   ============================================ */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--edge);
  background: linear-gradient(to bottom, rgba(36,23,18,0.55), transparent);
  transition: background 0.3s ease, padding 0.3s ease;
}
.site-nav.scrolled {
  background: rgba(247,239,230,0.92);
  backdrop-filter: blur(10px);
  padding-top: 12px;
  padding-bottom: 12px;
  box-shadow: 0 1px 0 rgba(36,23,18,0.08);
}
.nav-mark {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: #fff;
  transition: color 0.3s ease;
}
.nav-logo {
  height: 30px;
  width: auto;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.4));
}
.site-nav.scrolled .nav-mark { color: var(--ink); }
.nav-links {
  display: none;
  gap: 32px;
  font-size: 0.95rem;
  font-weight: 500;
}
.nav-links a { color: #fff; opacity: 0.9; transition: opacity 0.3s ease, color 0.3s ease; }
.site-nav.scrolled .nav-links a { color: var(--ink-soft); }
.nav-links a:hover { opacity: 1; }
@media (min-width: 800px) {
  .nav-links { display: flex; }
}
.nav-cta {
  font-size: 0.85rem;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: 100px;
  background: var(--red);
  color: #fff;
  white-space: nowrap;
}
.nav-burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  margin-left: 8px;
}
@media (min-width: 800px) {
  .nav-burger { display: none; }
}
.nav-burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: background 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
}
.site-nav.scrolled .nav-burger span { background: var(--ink); }
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 28px;
  padding: 0 var(--edge);
  transform: translateY(-100%);
  transition: transform 0.4s ease;
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--cream);
}
.mobile-menu a.active { color: var(--red); }
@media (min-width: 800px) {
  .mobile-menu { display: none; }
}
.nav-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  margin-left: 6px;
  border-radius: 100px;
  background: var(--red);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  vertical-align: middle;
}
.mobile-menu .nav-badge { font-size: 0.9rem; height: 24px; min-width: 24px; }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 70%;
  transform: scale(1.08);
  will-change: transform;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(22,14,10,0.92) 0%, rgba(22,14,10,0.55) 42%, rgba(22,14,10,0.15) 68%, rgba(22,14,10,0.35) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 0 var(--edge) 96px;
  max-width: 780px;
}
.hero-logo {
  width: clamp(64px, 10vw, 104px);
  height: auto;
  margin-bottom: 24px;
  filter: drop-shadow(0 6px 18px rgba(0,0,0,0.5));
}
.hero-kicker {
  color: var(--rose);
  font-size: 0.95rem;
  font-weight: 500;
  margin: 0 0 18px;
}
.hero-headline {
  font-size: clamp(2.1rem, 7vw, 3.6rem);
  line-height: 1.08;
  color: #fff;
  margin-bottom: 22px;
}
.hero-sub {
  color: rgba(255,255,255,0.82);
  font-size: 1.05rem;
  max-width: 46ch;
  margin-bottom: 34px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 26px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}
.btn-primary {
  background: var(--red);
  color: #fff;
}
.btn-primary:hover { transform: translateY(-2px); }
.btn-ghost {
  border: 1.5px solid rgba(255,255,255,0.5);
  color: #fff;
}
.btn-ghost:hover { border-color: #fff; transform: translateY(-2px); }

.hero-open-badge {
  position: absolute;
  top: 28px;
  right: var(--edge);
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 100px;
  background: rgba(22,14,10,0.45);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 500;
  border: 1px solid rgba(255,255,255,0.18);
}
.dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #6FCF97;
  box-shadow: 0 0 0 0 rgba(111,207,151,0.6);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(111,207,151,0.5); }
  70% { box-shadow: 0 0 0 8px rgba(111,207,151,0); }
  100% { box-shadow: 0 0 0 0 rgba(111,207,151,0); }
}

/* ============================================
   ALWAYS-ON STRIP — the one orchestrated
   type-reveal moment on the page
   ============================================ */
.strip {
  background: var(--green-deep);
  padding: clamp(64px, 12vw, 120px) var(--edge);
}
.strip-line {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  color: var(--cream);
  font-size: clamp(1.4rem, 4vw, 2.4rem);
  line-height: 1.35;
  max-width: 20ch;
  margin: 0 auto;
  text-align: center;
}
.strip-line .word {
  display: inline-block;
  opacity: 0.18;
}
.strip-line .word.lit {
  opacity: 1;
}

/* ============================================
   STORY
   ============================================ */
.story {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .story { grid-template-columns: 1fr 1fr; align-items: stretch; }
}
.story-media { position: relative; min-height: 320px; }
.story-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.story-copy {
  background: var(--cream);
  padding: clamp(48px, 8vw, 96px) var(--edge);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.story-copy h2 {
  font-size: clamp(1.7rem, 4vw, 2.3rem);
  margin-bottom: 22px;
  max-width: 16ch;
}
.story-copy p {
  color: var(--ink-soft);
  font-size: 1.02rem;
  max-width: 48ch;
  margin: 0 0 16px;
}
@media (min-width: 900px) {
  .story--reverse .story-media { order: 2; }
  .story--reverse .story-copy { order: 1; }
}

/* ============================================
   KITCHEN
   ============================================ */
.kitchen {
  padding: clamp(72px, 10vw, 128px) var(--edge);
  background: var(--rose);
}
.kitchen-head {
  max-width: 640px;
  margin-bottom: 48px;
}
.kitchen-head h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 16px;
}
.kitchen-head p {
  color: var(--ink-soft);
  font-size: 1.02rem;
}
.kitchen-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 800px) {
  .kitchen-grid {
    grid-template-columns: 1.4fr 1fr;
    grid-template-rows: auto auto;
  }
  .kitchen-card--wide { grid-row: span 2; }
}
.kitchen-card {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.kitchen-card--wide { aspect-ratio: 3/4; }
@media (min-width: 800px) {
  .kitchen-card--wide { aspect-ratio: auto; height: 100%; }
}
.kitchen-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.kitchen-card:hover img { transform: scale(1.04); }
.kitchen-card figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 20px 18px 16px;
  background: linear-gradient(to top, rgba(22,14,10,0.85), transparent);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
}

/* ============================================
   LOCATIONS
   ============================================ */
.locations {
  padding: clamp(72px, 10vw, 128px) var(--edge);
  background: var(--cream);
}
.locations h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 14px;
}
.locations-sub {
  color: var(--ink-soft);
  max-width: 60ch;
  margin: 0 0 48px;
  font-size: 1.02rem;
}
.locations-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 800px) {
  .locations-grid { grid-template-columns: 1fr 1fr; }
}
.location-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(36,23,18,0.08);
}
.location-media { aspect-ratio: 4/3; overflow: hidden; }
.location-media img { width: 100%; height: 100%; object-fit: cover; }
.location-info { padding: 28px; }
.location-info h3 {
  font-size: 1.4rem;
  margin-bottom: 4px;
}
.location-tag {
  color: var(--rust);
  font-weight: 600;
  font-size: 0.88rem;
  margin: 0 0 14px;
}
.location-info p:not(.location-tag) {
  color: var(--ink-soft);
  margin: 0 0 18px;
}
.location-map {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  border-top: 1px solid rgba(36,23,18,0.08);
}
.location-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.location-link {
  display: inline-block;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink);
  border-bottom: 1.5px solid var(--red);
  padding-bottom: 2px;
  transition: opacity 0.2s ease;
}
.location-link:hover { opacity: 0.65; }

.page-hero {
  position: relative;
  height: 46vh;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.page-hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(22,14,10,0.88), rgba(22,14,10,0.3));
}
.page-hero-content {
  position: relative;
  z-index: 1;
  padding: 0 var(--edge) 44px;
}
.page-hero-kicker {
  color: var(--rose);
  font-size: 0.92rem;
  font-weight: 500;
  margin: 0 0 12px;
}
.page-hero-content h1 {
  color: #fff;
  font-size: clamp(2rem, 6vw, 3.1rem);
  max-width: 20ch;
}

/* ============================================
   Nav active state
   ============================================ */
.nav-links a.active {
  color: var(--red) !important;
  opacity: 1;
}

/* ============================================
   EXPLORE grid (home page teasers into other pages)
   ============================================ */
.explore {
  padding: clamp(72px, 10vw, 128px) var(--edge);
  background: var(--cream);
}
.explore h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 48px;
}
.explore-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 700px) {
  .explore-grid { grid-template-columns: repeat(2, 1fr); }
}
.explore-card {
  position: relative;
  display: block;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 5/4;
}
.explore-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.explore-card:hover img { transform: scale(1.05); }
.explore-card-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(22,14,10,0.85) 0%, rgba(22,14,10,0.15) 55%, transparent 100%);
}
.explore-card-label {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 24px;
  color: #fff;
}
.explore-card-label h3 {
  font-size: 1.3rem;
  margin-bottom: 6px;
}
.explore-card-label p {
  margin: 0;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.8);
}

/* ============================================
   Footer nav (shared across inner pages)
   ============================================ */
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 8px;
}
.footer-links a { color: rgba(247,239,230,0.7); font-size: 0.9rem; }
.footer-links a:hover { color: var(--cognac); }

/* ============================================
   MENU — interactive list + qty steppers
   ============================================ */
.menu-list {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(56px, 8vw, 96px) var(--edge) 140px;
}
.menu-category { margin-bottom: 40px; }
.menu-category-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: var(--rust);
  margin: 0 0 14px;
}
.menu-items {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(36,23,18,0.08);
}
.menu-item-name {
  margin: 0;
  font-weight: 600;
  color: var(--ink);
}
.menu-item-price {
  margin: 2px 0 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}
.qty-stepper {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.qty-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid rgba(36,23,18,0.2);
  background: #fff;
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  color: var(--ink);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.qty-btn:hover { border-color: var(--red); }
.qty-count {
  min-width: 18px;
  text-align: center;
  font-weight: 600;
}

.order-bar {
  position: fixed;
  left: var(--edge);
  right: var(--edge);
  bottom: 20px;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 22px;
  border-radius: 100px;
  background: var(--ink);
  color: var(--cream);
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
  transform: translateY(140%);
  transition: transform 0.35s ease;
}
.order-bar.visible { transform: translateY(0); }
.order-bar-info { font-size: 0.9rem; }
.order-bar-info strong { display: block; font-size: 1rem; }
.order-bar-link {
  background: var(--red);
  color: #fff;
  padding: 10px 20px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
}

/* ============================================
   CONTACT — order summary + reservation form
   ============================================ */
.contact-wrap {
  max-width: 640px;
  margin: 0 auto;
  padding: clamp(56px, 8vw, 96px) var(--edge) 120px;
}
.order-summary {
  background: #fff;
  border: 1px solid rgba(36,23,18,0.1);
  border-radius: 10px;
  padding: 8px 20px;
  margin-bottom: 28px;
}
.order-line {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(36,23,18,0.08);
  font-size: 0.95rem;
}
.order-line:last-child { border-bottom: none; }
.order-line-name { flex: 1; }
.order-line-total { color: var(--ink-soft); font-size: 0.88rem; }
.order-line-remove {
  border: none;
  background: none;
  color: var(--ink-soft);
  font-size: 1.2rem;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
}
.order-total-row {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  padding: 16px 0 20px;
  border-top: 1.5px solid var(--ink);
  margin-top: 4px;
}
.order-empty {
  background: var(--rose);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 28px;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.order-empty a { color: var(--ink); font-weight: 600; text-decoration: underline; }

.order-form { display: flex; flex-direction: column; gap: 18px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 420px) {
  .form-field-row { grid-template-columns: 1fr; }
}
.form-field[hidden],
.form-field-row[hidden] {
  display: none !important;
}
.form-field label { font-size: 0.85rem; font-weight: 600; color: var(--ink-soft); }
.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1.5px solid rgba(36,23,18,0.15);
  background: #fff;
  color: var(--ink);
}
.form-field textarea { resize: vertical; min-height: 80px; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--red);
}
.order-type-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.order-type-btn {
  padding: 10px 18px;
  border-radius: 100px;
  border: 1.5px solid rgba(36,23,18,0.15);
  background: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--ink-soft);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.order-type-btn:hover { border-color: var(--red); }
.order-type-btn.active {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.order-submit {
  border: none;
  cursor: pointer;
  margin-top: 6px;
  align-self: flex-start;
}
.visit {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(72px, 10vw, 120px) var(--edge) 32px;
}
.visit-inner { max-width: 1100px; margin: 0 auto; }
.visit h2 {
  color: var(--cream);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 48px;
}
.visit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 64px;
}
@media (min-width: 700px) {
  .visit-grid { grid-template-columns: repeat(3, 1fr); }
}
.visit-block h3 {
  color: var(--cognac);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
  font-family: var(--font-body);
}
.visit-block p {
  color: rgba(247,239,230,0.85);
  margin: 0;
  line-height: 1.6;
}
.visit-block a:hover { color: var(--cognac); }
.visit-footer {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 28px;
  border-top: 1px solid rgba(247,239,230,0.15);
  font-size: 0.85rem;
  color: rgba(247,239,230,0.55);
}
@media (min-width: 700px) {
  .visit-footer { flex-direction: row; justify-content: space-between; }
}
