:root {
  --wine: #4a100e;
  --wine-deep: #270706;
  --gold: #d79a2b;
  --gold-light: #f0bd57;
  --cream: #f0e7d5;
  --ink: #16120f;
  --white: #fffaf0;
  --line-dark: rgba(22, 18, 15, .22);
  --line-light: rgba(255, 250, 240, .2);
  --display: "Bebas Neue", sans-serif;
  --body: "DM Sans", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--wine-deep);
  color: var(--white);
  font-family: var(--body);
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
.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;
}

.site-header {
  align-items: center;
  background: rgba(23, 7, 6, .88);
  border-bottom: 1px solid var(--line-light);
  display: grid;
  grid-template-columns: minmax(210px, 1fr) auto minmax(210px, 1fr);
  height: 88px;
  left: 0;
  padding: 0 clamp(24px, 4vw, 68px);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
}
.brand { display: inline-flex; flex-direction: column; justify-self: start; }
.brand-main {
  color: var(--gold-light);
  font-family: var(--display);
  font-size: 26px;
  letter-spacing: .08em;
  line-height: .9;
}
.brand-sub {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .38em;
  margin-top: 7px;
}
.main-nav { display: flex; gap: clamp(24px, 3vw, 52px); }
.main-nav a {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.main-nav a::after {
  background: var(--gold);
  content: "";
  display: block;
  height: 2px;
  margin-top: 7px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.main-nav a:hover::after { transform: scaleX(1); }
.header-order {
  align-items: center;
  background: var(--gold);
  color: var(--ink);
  display: flex;
  font-size: 12px;
  font-weight: 800;
  gap: 20px;
  justify-self: end;
  letter-spacing: .1em;
  padding: 15px 20px;
  text-transform: uppercase;
  transition: background .2s ease, transform .2s ease;
}
.header-order:hover { background: var(--gold-light); transform: translateY(-2px); }
.menu-toggle { display: none; }

.hero {
  height: min(940px, 100svh);
  min-height: 720px;
  overflow: hidden;
  position: relative;
}
.hero-image {
  height: 100%;
  object-fit: cover;
  object-position: 62% 44%;
  position: absolute;
  width: 100%;
  animation: hero-in 1.4s ease both;
}
.hero-scrim {
  background:
    linear-gradient(90deg, rgba(26, 4, 3, .94) 0%, rgba(35, 6, 5, .68) 42%, rgba(24, 5, 4, .12) 78%),
    linear-gradient(0deg, rgba(30, 5, 4, .72) 0%, transparent 38%);
  inset: 0;
  position: absolute;
}
.hero-copy {
  bottom: clamp(86px, 12vh, 150px);
  left: clamp(24px, 7vw, 120px);
  max-width: 830px;
  position: absolute;
  z-index: 2;
}
.eyebrow {
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .34em;
  margin: 0 0 22px;
  text-transform: uppercase;
}
.eyebrow-dark { color: var(--wine); }
.hero h1 {
  font-family: var(--display);
  font-size: clamp(108px, 14.5vw, 230px);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: .72;
  margin: 0;
  text-transform: uppercase;
}
.hero h1 span { display: block; }
.hero h1 span:last-child {
  color: transparent;
  -webkit-text-stroke: 2px var(--gold-light);
  margin-left: 14%;
}
.hero-lead {
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 500;
  margin: 34px 0;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button {
  align-items: center;
  border: 1px solid transparent;
  display: inline-flex;
  font-size: 12px;
  font-weight: 800;
  gap: 24px;
  justify-content: space-between;
  letter-spacing: .1em;
  min-height: 58px;
  padding: 0 22px;
  text-transform: uppercase;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.button:hover { transform: translateY(-3px); }
.button-primary { background: var(--gold); color: var(--ink); }
.button-primary:hover { background: var(--gold-light); }
.button-ghost { border-color: var(--white); }
.button-ghost:hover { background: var(--white); color: var(--ink); }
.button-cream { background: var(--cream); color: var(--ink); }
.button-dark { background: var(--ink); color: var(--white); }
.hero-side {
  bottom: 92px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .34em;
  margin: 0;
  position: absolute;
  right: -112px;
  text-transform: uppercase;
  transform: rotate(-90deg);
  z-index: 2;
}

.quick-links {
  background: var(--wine);
  border-bottom: 1px solid var(--line-light);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.quick-links a {
  border-right: 1px solid var(--line-light);
  display: grid;
  gap: 32px 12px;
  grid-template-columns: 1fr auto;
  min-height: 185px;
  padding: 28px clamp(20px, 3vw, 48px);
  transition: background .25s ease, color .25s ease;
}
.quick-links a:last-child { border-right: 0; }
.quick-links a:hover { background: var(--gold); color: var(--ink); }
.quick-number {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
}
.quick-label {
  align-self: end;
  font-family: var(--display);
  font-size: clamp(28px, 2.8vw, 46px);
  letter-spacing: .01em;
  line-height: .9;
  text-transform: uppercase;
}
.quick-arrow { align-self: end; font-size: 25px; }

.section {
  padding: clamp(90px, 12vw, 170px) clamp(24px, 7vw, 120px);
}
.manifesto {
  background: var(--cream);
  color: var(--ink);
  display: grid;
  gap: 60px;
  grid-template-columns: 1.25fr .75fr;
  min-height: 980px;
  overflow: hidden;
  position: relative;
}
.manifesto-heading h2,
.feed-header h2,
.visit-title h2 {
  font-family: var(--display);
  font-size: clamp(70px, 9vw, 142px);
  font-weight: 400;
  letter-spacing: -.02em;
  line-height: .82;
  margin: 0;
}
.manifesto-heading h2 em,
.feed-header h2 em,
.visit-title h2 em {
  color: var(--wine);
  font-style: normal;
}
.manifesto-body {
  align-self: end;
  border-top: 1px solid var(--line-dark);
  font-size: clamp(16px, 1.5vw, 21px);
  line-height: 1.65;
  padding-top: 28px;
}
.manifesto-body p:first-child { font-weight: 700; }
.manifesto-photo {
  grid-column: 1 / -1;
  margin: 30px 0 0 14%;
  max-width: 780px;
  position: relative;
}
.manifesto-photo img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: 50% 54%;
  width: 100%;
}
.manifesto-photo figcaption {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  margin-top: 12px;
  text-transform: uppercase;
}
.manifesto-stamp {
  align-items: center;
  border: 1px solid var(--wine);
  border-radius: 50%;
  color: var(--wine);
  display: flex;
  flex-direction: column;
  height: 210px;
  justify-content: center;
  position: absolute;
  right: 9%;
  bottom: 12%;
  transform: rotate(8deg);
  width: 210px;
}
.manifesto-stamp span { font-size: 9px; font-weight: 800; letter-spacing: .22em; }
.manifesto-stamp strong { font-family: var(--display); font-size: 72px; line-height: .95; }

.craft {
  background: var(--wine-deep);
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  min-height: 930px;
}
.craft-photo { min-height: 760px; overflow: hidden; }
.craft-photo img {
  height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
  width: 100%;
}
.craft-photo:hover img { transform: scale(1.025); }
.craft-copy {
  align-self: center;
  padding: clamp(70px, 8vw, 130px);
}
.craft-copy h2,
.menu-preview h2 {
  font-family: var(--display);
  font-size: clamp(82px, 9vw, 150px);
  font-weight: 400;
  letter-spacing: -.02em;
  line-height: .78;
  margin: 0 0 36px;
}
.craft-copy h2 span,
.menu-preview h2 span {
  color: var(--gold);
}
.craft-copy > p:not(.eyebrow),
.menu-preview-copy > p:not(.eyebrow) {
  color: rgba(255, 250, 240, .75);
  font-size: 17px;
  line-height: 1.7;
  max-width: 570px;
}
.craft-list {
  border-top: 1px solid var(--line-light);
  list-style: none;
  margin: 44px 0;
  padding: 0;
}
.craft-list li {
  border-bottom: 1px solid var(--line-light);
  display: flex;
  font-family: var(--display);
  font-size: 29px;
  letter-spacing: .03em;
  padding: 17px 0;
  text-transform: uppercase;
}
.craft-list li span {
  color: var(--gold);
  font-family: var(--body);
  font-size: 10px;
  font-weight: 700;
  margin-right: 24px;
}
.text-link {
  border-bottom: 1px solid currentColor;
  display: inline-flex;
  font-size: 12px;
  font-weight: 800;
  gap: 32px;
  letter-spacing: .1em;
  padding-bottom: 8px;
  text-transform: uppercase;
}

.feed { background: var(--cream); color: var(--ink); }
.feed-header {
  align-items: end;
  display: flex;
  justify-content: space-between;
  margin-bottom: 70px;
}
.instagram-link {
  border-bottom: 1px solid var(--ink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  padding-bottom: 8px;
  text-transform: uppercase;
}
.feed-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1.3fr .7fr;
  grid-template-rows: repeat(2, minmax(280px, 410px));
}
.feed-card { margin: 0; overflow: hidden; position: relative; }
.feed-card-large { grid-row: 1 / 3; }
.feed-card img {
  height: 100%;
  object-fit: cover;
  transition: filter .35s ease, transform .7s ease;
  width: 100%;
}
.feed-card-large img { object-position: 50% 50%; }
.feed-card:hover img { filter: saturate(1.1); transform: scale(1.035); }
.feed-card::after {
  background: linear-gradient(0deg, rgba(21, 7, 5, .82), transparent 46%);
  content: "";
  inset: 0;
  position: absolute;
}
.feed-card figcaption {
  bottom: 24px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  left: 26px;
  position: absolute;
  z-index: 2;
}
.feed-card figcaption span {
  font-family: var(--display);
  font-size: 38px;
  line-height: 1;
  text-transform: uppercase;
}
.feed-card figcaption small {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .15em;
  margin-top: 8px;
  text-transform: uppercase;
}

.menu-preview {
  align-items: center;
  background: var(--wine);
  display: grid;
  gap: 60px;
  grid-template-columns: 1fr .75fr;
  min-height: 760px;
  overflow: hidden;
  padding: clamp(80px, 10vw, 150px) clamp(24px, 7vw, 120px);
}
.menu-preview-copy { position: relative; z-index: 2; }
.menu-preview-copy .button { margin-top: 28px; }
.menu-preview-mark {
  color: transparent;
  font-family: var(--display);
  font-size: clamp(150px, 21vw, 350px);
  letter-spacing: -.03em;
  line-height: .62;
  opacity: .38;
  text-align: right;
  -webkit-text-stroke: 2px var(--gold);
}

.visit { background: var(--cream); color: var(--ink); }
.visit-title { margin-bottom: 80px; }
.visit-grid {
  border-left: 1px solid var(--line-dark);
  border-top: 1px solid var(--line-dark);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.visit-block {
  border-bottom: 1px solid var(--line-dark);
  border-right: 1px solid var(--line-dark);
  min-height: 360px;
  padding: 38px;
}
.visit-kicker {
  color: var(--wine);
  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .2em;
  margin-bottom: 72px;
  text-transform: uppercase;
}
.visit-block h3 {
  font-family: var(--display);
  font-size: clamp(34px, 3.2vw, 54px);
  font-weight: 400;
  line-height: .95;
  margin: 0 0 18px;
  text-transform: uppercase;
}
.visit-block p { line-height: 1.65; }
.text-link-dark { margin-top: 22px; }
.visit-block dl { margin: 0; }
.visit-block dl div {
  border-bottom: 1px solid var(--line-dark);
  display: flex;
  justify-content: space-between;
  padding: 13px 0;
}
.visit-block dt, .visit-block dd { font-size: 13px; margin: 0; }
.visit-block dd { font-weight: 800; }
.visit-order { background: var(--gold); }
.visit-order .button { margin-top: 22px; }

.site-footer {
  background: var(--wine-deep);
  overflow: hidden;
  padding: 70px clamp(24px, 5vw, 80px) 32px;
}
.footer-wordmark {
  color: transparent;
  font-family: var(--display);
  font-size: 18vw;
  letter-spacing: -.035em;
  line-height: .8;
  white-space: nowrap;
  -webkit-text-stroke: 2px var(--gold);
}
.footer-bottom {
  border-top: 1px solid var(--line-light);
  display: flex;
  font-size: 10px;
  font-weight: 700;
  justify-content: space-between;
  letter-spacing: .13em;
  margin-top: 55px;
  padding-top: 22px;
  text-transform: uppercase;
}
.floating-order {
  align-items: center;
  background: #25d366;
  bottom: 20px;
  color: #072b13;
  display: none;
  flex-direction: column;
  left: 18px;
  padding: 12px 22px;
  position: fixed;
  right: 18px;
  z-index: 45;
}
.floating-order span { font-size: 9px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.floating-order strong { font-size: 15px; }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
@keyframes hero-in {
  from { opacity: .5; transform: scale(1.04); }
  to { opacity: 1; transform: scale(1); }
}

@media (max-width: 1050px) {
  .site-header { grid-template-columns: 1fr auto; }
  .main-nav { display: none; }
  .header-order { display: none; }
  .menu-toggle {
    background: transparent;
    border: 0;
    display: grid;
    gap: 7px;
    justify-self: end;
    padding: 12px 0 12px 20px;
  }
  .menu-toggle span:not(.sr-only) { background: var(--white); display: block; height: 2px; width: 30px; }
  .main-nav.open {
    align-items: center;
    background: var(--wine-deep);
    display: flex;
    flex-direction: column;
    gap: 24px;
    justify-content: center;
    left: 0;
    min-height: calc(100svh - 88px);
    position: fixed;
    right: 0;
    top: 88px;
    z-index: 60;
  }
  .main-nav.open a { font-family: var(--display); font-size: 48px; }
  .quick-links { grid-template-columns: repeat(2, 1fr); }
  .quick-links a:nth-child(2) { border-right: 0; }
  .quick-links a:nth-child(-n+2) { border-bottom: 1px solid var(--line-light); }
  .manifesto { grid-template-columns: 1fr; }
  .manifesto-body { max-width: 650px; }
  .manifesto-photo { margin-left: 0; }
  .manifesto-stamp { bottom: 7%; }
  .craft { grid-template-columns: 1fr; }
  .craft-photo { max-height: 760px; }
  .menu-preview { grid-template-columns: 1fr; }
  .menu-preview-mark { display: none; }
  .visit-grid { grid-template-columns: 1fr 1fr; }
  .visit-order { grid-column: 1 / -1; }
}

@media (max-width: 700px) {
  .site-header { height: 74px; padding: 0 20px; }
  .brand-main { font-size: 22px; }
  .main-nav.open {
    min-height: calc(100svh - 74px);
    top: 74px;
  }
  .hero { min-height: 760px; }
  .hero-image { object-position: 57% 50%; }
  .hero-scrim {
    background:
      linear-gradient(0deg, rgba(28, 5, 4, .93) 0%, rgba(35, 6, 5, .46) 72%),
      linear-gradient(90deg, rgba(26, 4, 3, .55), transparent);
  }
  .hero-copy { bottom: 78px; left: 20px; right: 20px; }
  .hero h1 { font-size: clamp(88px, 29vw, 132px); line-height: .76; }
  .hero h1 span:last-child { margin-left: 5%; }
  .hero-lead { margin: 26px 0; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-side { display: none; }
  .button { width: 100%; }
  .quick-links a { min-height: 145px; padding: 22px 18px; }
  .quick-label { font-size: 28px; }
  .section { padding: 80px 20px; }
  .manifesto { gap: 34px; min-height: auto; }
  .manifesto-heading h2,
  .feed-header h2,
  .visit-title h2 { font-size: 65px; }
  .manifesto-stamp { display: none; }
  .manifesto-photo { margin-top: 15px; }
  .manifesto-photo img { aspect-ratio: 4 / 5; }
  .craft-photo { min-height: 610px; }
  .craft-copy { padding: 76px 20px; }
  .craft-copy h2,
  .menu-preview h2 { font-size: 76px; }
  .craft-list li { font-size: 24px; }
  .feed-header { align-items: start; flex-direction: column; gap: 30px; }
  .feed-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 520px);
  }
  .feed-card-large { grid-row: auto; }
  .menu-preview { min-height: 640px; padding: 80px 20px; }
  .visit-title { margin-bottom: 48px; }
  .visit-grid { grid-template-columns: 1fr; }
  .visit-order { grid-column: auto; }
  .visit-block { min-height: 310px; padding: 30px; }
  .visit-kicker { margin-bottom: 52px; }
  .footer-wordmark { font-size: 28vw; line-height: .72; white-space: normal; }
  .footer-bottom { flex-direction: column; gap: 16px; padding-bottom: 74px; }
  .floating-order { display: flex; }
}

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