:root {
  --olive: #5B6F4D;
  --charcoal: #3C3C3C;
  --off-white: #F7F4EC;
  --terracotta: #C67147;
  --gold: #D2A867;
  --tan: #D7B899;

  --serif: 'Vollkorn', Georgia, serif;
  --mono: 'Space Mono', 'Courier New', monospace;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--off-white);
  color: var(--charcoal);
  font-family: var(--mono);
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 900;
  margin: 0;
  line-height: 1.02;
}

a { color: inherit; text-decoration: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 26px;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}

.btn--primary {
  background: var(--terracotta);
  color: var(--off-white);
}
.btn--primary:hover { background: var(--gold); color: var(--charcoal); }

.btn--outline {
  background: rgba(255,255,255,0.06);
  color: var(--off-white);
  border: 1px solid rgba(247,244,236,0.6);
}
.btn--outline:hover { background: rgba(255,255,255,0.16); border-color: var(--off-white); }

.btn--offwhite {
  background: var(--off-white);
  color: var(--charcoal);
}
.btn--offwhite:hover { background: var(--terracotta); color: var(--off-white); }

.btn--ghost {
  background: transparent;
  color: var(--charcoal);
  border: 1px solid var(--charcoal);
  padding: 10px 18px;
  font-size: 12px;
}
.btn--ghost:hover { background: var(--charcoal); color: var(--off-white); }

.btn--pill {
  background: var(--off-white);
  color: var(--charcoal);
  border-radius: 999px;
  padding: 10px 22px 10px 16px;
  font-size: 12px;
}
.btn__dot {
  width: 8px; height: 8px;
  background-image:
    linear-gradient(45deg, var(--charcoal) 25%, transparent 25%, transparent 75%, var(--charcoal) 75%),
    linear-gradient(45deg, var(--charcoal) 25%, transparent 25%, transparent 75%, var(--charcoal) 75%);
  background-size: 4px 4px;
  background-position: 0 0, 2px 2px;
  border-radius: 1px;
}

.arrow-btn {
  width: 38px; height: 38px;
  border: 1px solid var(--charcoal);
  background: transparent;
  cursor: pointer;
  font-size: 15px;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.arrow-btn:hover { background: var(--charcoal); color: var(--off-white); }

.eyebrow {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin: 0 0 18px;
  opacity: 0.9;
}

/* ---------- Nav ---------- */
.nav {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 56px;
}
.nav__logo img { height: 64px; }
.nav__links {
  display: flex;
  gap: 36px;
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--off-white);
}
.nav__links a:hover { color: var(--tan); }
.nav__right { display: flex; align-items: center; gap: 16px; }
.nav__burger { display: none; }
.nav--static { position: relative; background: var(--charcoal); }

.nav__mobile {
  display: none;
  position: fixed;
  top: 0; right: 0;
  width: 78%;
  max-width: 320px;
  height: 100%;
  background: var(--charcoal);
  color: var(--off-white);
  z-index: 40;
  flex-direction: column;
  gap: 28px;
  padding: 100px 32px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  font-size: 15px;
  letter-spacing: 0.1em;
}
.nav__mobile.open { transform: translateX(0); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 560px;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(30,30,26,0.85) 0%, rgba(30,30,26,0.1) 45%, rgba(30,30,26,0.55) 100%),
    linear-gradient(to right, rgba(20,20,18,0.6) 0%, rgba(20,20,18,0) 55%);
}
.hero__content {
  position: absolute;
  left: 56px;
  bottom: 64px;
  right: 56px;
  max-width: 620px;
  color: var(--off-white);
}
.hero__headline {
  font-size: 70px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.35);
  margin-bottom: 18px;
}
.hero__sub {
  font-size: 15px;
  margin: 0 0 28px;
  opacity: 0.92;
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Ticker ---------- */
.ticker {
  background: var(--olive);
  color: var(--off-white);
  overflow: hidden;
  padding: 12px 0;
}
.ticker__track {
  display: flex;
  width: max-content;
  animation: ticker 28s linear infinite;
}
.ticker:hover .ticker__track { animation-play-state: paused; }
.ticker__track span {
  white-space: nowrap;
  font-size: 12px;
  letter-spacing: 0.16em;
  padding-right: 8px;
}
.ticker__track b { color: var(--tan); margin: 0 6px; font-weight: 400; }
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Menu ---------- */
.menu {
  padding: 72px 56px 96px;
}
.menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
  flex-wrap: wrap;
  gap: 20px;
}
.menu__header h2 { font-size: 44px; }
.menu__controls { display: flex; align-items: center; gap: 10px; }

.carousel {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
  scrollbar-width: none;
}
.carousel::-webkit-scrollbar { display: none; }

.card {
  flex: 0 0 340px;
  scroll-snap-align: start;
}
.card__photo {
  width: 100%;
  height: 250px;
  overflow: hidden;
}
.card__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.card:hover .card__photo img { transform: scale(1.04); }
.card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: #8a8a83;
  margin: 14px 0 6px;
}
.card__tag {
  border: 1px solid var(--olive);
  color: var(--olive);
  padding: 1px 6px;
  font-size: 10px;
}
.card h3 {
  font-size: 28px;
  margin-bottom: 8px;
}
.card__ingredients {
  font-size: 13px;
  color: #8a8a83;
  margin: 0 0 10px;
  line-height: 1.5;
}
.card__price {
  font-size: 17px;
  color: var(--terracotta);
  font-weight: 700;
  margin: 0;
}

.full-menu {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 0 48px;
  margin-top: 48px;
  border-top: 1px solid rgba(60,60,60,0.15);
}
.full-menu.open { display: grid; }
.menu__full-link { margin-top: 24px; }

.menu--page { padding-top: 72px; }
.menu__page-title { font-size: 44px; margin-bottom: 12px; }
.menu__page-intro { max-width: 520px; font-size: 14px; color: #8a8a83; line-height: 1.6; margin: 0; }
.full-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(60,60,60,0.15);
}
.full-item__photo {
  width: 64px; height: 64px;
  flex-shrink: 0;
  overflow: hidden;
}
.full-item__photo img { width: 100%; height: 100%; object-fit: cover; }
.full-item__body { flex: 1; }
.full-item__body h4 {
  font-family: var(--serif);
  font-weight: 900;
  font-size: 18px;
  margin: 0 0 4px;
  display: inline;
}
.full-item__ingredients {
  font-size: 12px;
  color: #8a8a83;
  margin: 4px 0 0;
}
.full-item__price {
  color: var(--terracotta);
  font-weight: 700;
  font-size: 15px;
  white-space: nowrap;
}

/* ---------- Product moment ---------- */
.product-moment {
  position: relative;
  height: 640px;
  overflow: hidden;
  background: #14140f;
}
.product-moment__bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.product-moment__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,10,8,0.9) 0%, rgba(10,10,8,0.25) 55%, rgba(10,10,8,0.05) 100%);
}
.product-moment__content {
  position: relative;
  color: var(--off-white);
  max-width: 480px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 56px;
}
.product-moment__content h2 { font-size: 48px; margin-bottom: 16px; }
.product-moment__content p { font-size: 14px; opacity: 0.88; line-height: 1.6; margin: 0; }

/* ---------- Find us ---------- */
.find-us {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--olive);
  color: var(--off-white);
}
.find-us__image { height: 100%; min-height: 480px; overflow: hidden; }
.find-us__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.04);
}
.find-us__info {
  padding: 72px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.find-us__info h2 { font-size: 44px; margin-bottom: 48px; }
.location-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 28px 0;
  border-top: 1px solid rgba(247,244,236,0.25);
}
.location-row h3 {
  font-size: 20px;
  margin-bottom: 6px;
}
.location-row__address {
  font-size: 12px;
  opacity: 0.8;
  margin: 0 0 12px;
}
.location-row__hours {
  font-size: 11px;
  letter-spacing: 0.08em;
  opacity: 0.85;
  margin: 0 0 4px;
  display: inline-block;
  margin-right: 24px;
}

/* ---------- Catering ---------- */
.catering { padding: 96px 56px; }
.catering__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.catering__header h2 { font-size: 44px; }
.catering__contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: right;
  font-size: 13px;
}
.catering__contact a:hover { color: var(--terracotta); }

.catering-form { max-width: 760px; }
.form-field {
  padding: 24px 0;
  border-top: 1px solid rgba(60,60,60,0.15);
}
.form-field:last-of-type { border-bottom: 1px solid rgba(60,60,60,0.15); }
.form-field label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
  color: var(--charcoal);
}
.form-field label span { color: #8a8a83; font-weight: 400; }

.chip-group { display: flex; gap: 10px; flex-wrap: wrap; }
.chip {
  background: #fff;
  border: 1px solid rgba(60,60,60,0.25);
  padding: 10px 18px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.chip:hover { border-color: var(--terracotta); }
.chip.active {
  background: var(--terracotta);
  color: var(--off-white);
  border-color: var(--terracotta);
}

input, textarea {
  width: 100%;
  background: #fff;
  border: 1px solid rgba(60,60,60,0.25);
  padding: 14px 16px;
  font-family: var(--mono);
  font-size: 14px;
  color: var(--charcoal);
}
input:focus, textarea:focus { outline: 2px solid var(--terracotta); outline-offset: -1px; }
textarea { resize: vertical; }

.form-note {
  font-size: 11px;
  color: #8a8a83;
  margin: 14px 0 0;
}
.form-status {
  font-size: 12px;
  margin: 10px 0 0;
  color: var(--olive);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--charcoal);
  color: var(--off-white);
  padding: 64px 56px 32px;
}
.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__wordmark { font-size: 72px; }
.footer__location { font-size: 12px; letter-spacing: 0.12em; opacity: 0.7; }
.footer__links {
  display: flex;
  gap: 28px;
  font-size: 12px;
  letter-spacing: 0.1em;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(247,244,236,0.15);
  flex-wrap: wrap;
}
.footer__links a:hover { color: var(--tan); }
.footer__order { color: var(--terracotta); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  flex-wrap: wrap;
  gap: 10px;
}
.footer__tagline { font-family: var(--serif); font-style: italic; color: var(--terracotta); font-size: 15px; margin: 0; }
.footer__copy { font-size: 11px; opacity: 0.6; margin: 0; }
.footer__copy-mobile { display: none; }

/* =========================================================
   MOBILE — genuinely different composition, not a squeeze
   ========================================================= */
@media (max-width: 900px) {
  .nav {
    padding: 18px 20px;
  }
  .nav__logo img { height: 44px; }
  .nav__links { display: none; }
  .nav__burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px; height: 32px;
    background: transparent;
    border: none;
    cursor: pointer;
  }
  .nav__burger span {
    display: block;
    height: 2px;
    background: var(--off-white);
  }
  .nav__mobile { display: flex; }
  .btn--pill { font-size: 11px; padding: 9px 16px; }

  .hero { min-height: 640px; }
  .hero__bg { object-position: center 35%; }
  .hero__overlay {
    background: linear-gradient(to top, rgba(20,20,18,0.92) 0%, rgba(20,20,18,0.25) 40%, rgba(20,20,18,0.15) 100%);
  }
  .hero__content { left: 20px; right: 20px; bottom: 36px; max-width: none; }
  .hero__headline { font-size: 44px; }
  .hero__sub { font-size: 14px; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { text-align: center; justify-content: center; }

  .ticker__track span { font-size: 11px; }

  .menu { padding: 48px 20px 64px; }
  .menu__header h2 { font-size: 30px; }
  .menu__header { flex-direction: column; align-items: flex-start; }
  .menu__controls { width: 100%; }
  .menu__controls #prevBtn, .menu__controls #nextBtn { display: none; }
  .menu__controls .btn--ghost { width: 100%; justify-content: center; }

  .carousel { gap: 14px; touch-action: pan-x; }
  .card { flex-basis: 176px; }
  .card__photo { height: 130px; }
  .card h3 { font-size: 18px; }
  .card__ingredients { font-size: 11px; }
  .card__price { font-size: 14px; }

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

  .product-moment__content { padding: 0 20px; }
  .product-moment__content h2 { font-size: 32px; }
  .product-moment__content p { font-size: 13px; }

  .find-us { grid-template-columns: 1fr; }
  .find-us__image { min-height: 260px; }
  .find-us__info { padding: 44px 20px; }
  .find-us__info h2 { font-size: 30px; margin-bottom: 28px; }
  .location-row { flex-direction: column; align-items: flex-start; gap: 14px; }
  .location-row .btn { width: 100%; text-align: center; justify-content: center; }

  .catering { padding: 56px 20px; }
  .catering__header { flex-direction: column; }
  .catering__header h2 { font-size: 30px; }
  .catering__contact { text-align: left; }

  .footer { padding: 48px 20px 24px; }
  .footer__wordmark { font-size: 40px; }
  .footer__location { display: none; }
  .footer__links { gap: 16px 22px; }
  .footer__copy-mobile { display: inline; }
}
