:root {
  --ink: #0d0d0d;
  --ink-2: #171717;
  --paper: #f6f2e9;
  --paper-2: #fffdf8;
  --white: #ffffff;
  --red: #e31b23;
  --red-dark: #b60e15;
  --gold: #f7b51b;
  --muted: #6f6a63;
  --line: rgba(13, 13, 13, 0.13);
  --dark-line: rgba(255, 255, 255, 0.12);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  --radius: 24px;
  --container: 1200px;
  --heading: "Barlow Condensed", Impact, sans-serif;
  --body: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input {
  color: inherit;
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  margin-inline: auto;
  width: min(var(--container), calc(100% - 40px));
}

.site-header {
  background: rgba(12, 12, 12, 0.92);
  border-bottom: 1px solid var(--dark-line);
  color: var(--white);
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(16px);
}

.nav {
  align-items: center;
  display: flex;
  height: 82px;
  justify-content: space-between;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 12px;
}

.brand-mark {
  align-items: center;
  background: linear-gradient(145deg, var(--red), var(--red-dark));
  border: 2px solid var(--gold);
  border-radius: 14px;
  color: var(--white);
  display: flex;
  font-family: var(--heading);
  font-size: 29px;
  font-style: italic;
  font-weight: 900;
  height: 50px;
  justify-content: center;
  line-height: 1;
  transform: skew(-5deg);
  width: 54px;
}

.header-logo {
  background: #000;
  overflow: hidden;
  padding: 2px;
  transform: none;
}

.header-logo img {
  border-radius: 10px;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-copy strong {
  font-family: var(--heading);
  font-size: 23px;
  font-style: italic;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.brand-copy small {
  color: #bbb6af;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  margin-top: 5px;
  text-transform: uppercase;
}

.nav-links {
  align-items: center;
  display: flex;
  gap: 28px;
}

.nav-links a {
  color: #dad7d1;
  font-size: 14px;
  font-weight: 700;
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--gold);
}

.nav-links .nav-cta {
  background: var(--red);
  border-radius: 999px;
  color: var(--white);
  padding: 12px 20px;
}

.nav-links .nav-cta:hover {
  background: var(--gold);
  color: var(--ink);
}

.menu-toggle {
  background: transparent;
  border: 0;
  display: none;
  height: 44px;
  width: 44px;
}

.menu-toggle span {
  background: var(--white);
  display: block;
  height: 2px;
  margin: 6px auto;
  transition: transform 0.2s ease, opacity 0.2s ease;
  width: 23px;
}

.hero {
  align-items: center;
  background:
    linear-gradient(110deg, rgba(0,0,0,.96) 0%, rgba(12,12,12,.94) 49%, rgba(12,12,12,.83) 100%);
  color: var(--white);
  display: flex;
  min-height: 780px;
  overflow: hidden;
  padding: 140px 0 75px;
  position: relative;
}

.hero::before {
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 42px 42px;
  content: "";
  inset: 0;
  position: absolute;
}

.hero-glow {
  border-radius: 50%;
  filter: blur(20px);
  opacity: 0.28;
  position: absolute;
}

.hero-glow-one {
  background: var(--red);
  height: 440px;
  right: -200px;
  top: 100px;
  width: 440px;
}

.hero-glow-two {
  background: var(--gold);
  bottom: -170px;
  height: 320px;
  left: 18%;
  width: 320px;
}

.hero-grid {
  align-items: center;
  display: grid;
  gap: 70px;
  grid-template-columns: 1.02fr 0.98fr;
  position: relative;
  z-index: 1;
}

.eyebrow {
  align-items: center;
  color: var(--gold);
  display: flex;
  font-size: 12px;
  font-weight: 800;
  gap: 10px;
  letter-spacing: 0.15em;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.eyebrow span {
  background: var(--red);
  display: inline-block;
  height: 3px;
  width: 30px;
}

.eyebrow.dark {
  color: var(--red-dark);
}

.hero h1,
.section-heading h2,
.menu-intro h2,
.flavors-copy h2,
.about-copy h2,
.contact-copy h2 {
  font-family: var(--heading);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 0.88;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(72px, 8.7vw, 132px);
  max-width: 720px;
}

.hero h1 em {
  color: var(--red);
  font-style: italic;
  text-shadow: 3px 3px 0 var(--gold);
}

.hero-logo {
  display: block;
  height: auto;
  max-width: 520px;
  object-fit: contain;
  object-position: left center;
  width: min(100%, 520px);
}

.hero-text {
  color: #cbc6bd;
  font-size: 18px;
  margin: 28px 0 32px;
  max-width: 600px;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  font-size: 14px;
  font-weight: 800;
  justify-content: center;
  min-height: 54px;
  padding: 0 25px;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--red);
  box-shadow: 0 14px 35px rgba(227, 27, 35, 0.28);
  color: var(--white);
}

.button-primary:hover {
  background: var(--gold);
  color: var(--ink);
}

.button-ghost {
  border-color: rgba(255,255,255,.28);
  color: var(--white);
}

.button-ghost:hover {
  background: var(--white);
  color: var(--ink);
}

.quick-facts {
  border-top: 1px solid var(--dark-line);
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 46px;
  padding-top: 24px;
}

.quick-facts div {
  display: flex;
  flex-direction: column;
}

.quick-facts strong {
  font-family: var(--heading);
  font-size: 20px;
  text-transform: uppercase;
}

.quick-facts span {
  color: #9d9992;
  font-size: 12px;
}

.hero-visual {
  position: relative;
}

.hero-image-wrap {
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 50% 50% 32px 32px;
  box-shadow: var(--shadow);
  overflow: visible;
  padding: 12px;
  position: relative;
  transform: rotate(2deg);
}

.hero-image-wrap::before {
  border: 2px dashed rgba(247,181,27,.38);
  border-radius: inherit;
  content: "";
  inset: -18px;
  position: absolute;
}

.hero-image-wrap img {
  aspect-ratio: 4 / 5;
  border-radius: 50% 50% 24px 24px;
  object-fit: cover;
}

.floating-card {
  align-items: center;
  background: var(--gold);
  border: 7px solid var(--ink);
  bottom: 30px;
  color: var(--ink);
  display: flex;
  gap: 10px;
  padding: 16px 22px;
  position: absolute;
  right: -28px;
  transform: rotate(-4deg);
}

.floating-card span {
  font-family: var(--heading);
  font-size: 52px;
  font-weight: 900;
  line-height: 1;
}

.floating-card p {
  font-size: 11px;
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
}

.feature-strip {
  background: var(--red);
  color: var(--white);
  overflow: hidden;
}

.feature-strip-inner {
  align-items: center;
  display: flex;
  font-family: var(--heading);
  font-size: 20px;
  font-style: italic;
  font-weight: 800;
  justify-content: space-between;
  letter-spacing: 0.03em;
  min-height: 66px;
  text-transform: uppercase;
}

.feature-strip i {
  background: var(--gold);
  border-radius: 50%;
  height: 5px;
  width: 5px;
}

.section {
  padding: 110px 0;
}

.favorites {
  background: var(--paper);
}

.section-heading {
  align-items: end;
  display: flex;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 48px;
}

.section-heading h2,
.flavors-copy h2 {
  font-size: clamp(52px, 6vw, 82px);
}

.section-heading > p {
  color: var(--muted);
  max-width: 450px;
}

.favorite-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1.45fr 1fr 1fr;
}

.favorite-card {
  border-radius: var(--radius);
  min-height: 470px;
  overflow: hidden;
  position: relative;
}

.favorite-card img {
  height: 100%;
  object-fit: cover;
  position: absolute;
  transition: transform 0.5s ease;
}

.favorite-card:hover img {
  transform: scale(1.04);
}

.card-overlay {
  background: linear-gradient(transparent, rgba(0,0,0,.92));
  bottom: 0;
  color: var(--white);
  left: 0;
  padding: 35px;
  position: absolute;
  right: 0;
}

.card-overlay span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.card-overlay h3 {
  font-family: var(--heading);
  font-size: 43px;
  line-height: 1;
  text-transform: uppercase;
}

.card-overlay p {
  color: #d4d0c8;
  font-size: 13px;
  margin-top: 8px;
}

.menu-section {
  background:
    radial-gradient(circle at 88% 4%, rgba(227,27,35,.17), transparent 25%),
    var(--ink);
  color: var(--white);
}

.menu-intro {
  margin: 0 auto 38px;
  max-width: 720px;
  text-align: center;
}

.menu-intro .eyebrow {
  justify-content: center;
}

.menu-intro h2,
.about-copy h2,
.contact-copy h2 {
  font-size: clamp(58px, 7vw, 94px);
}

.menu-intro > p:last-child {
  color: #9f9a93;
  margin-top: 22px;
}

.menu-tools {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 42px;
}

.search-box {
  align-items: center;
  background: rgba(255,255,255,.07);
  border: 1px solid var(--dark-line);
  border-radius: 999px;
  display: flex;
  max-width: 560px;
  padding: 0 20px;
  width: 100%;
}

.search-box svg {
  fill: none;
  height: 20px;
  margin-right: 10px;
  stroke: #aaa59d;
  stroke-linecap: round;
  stroke-width: 2;
  width: 20px;
}

.search-box input {
  background: transparent;
  border: 0;
  color: var(--white);
  min-height: 52px;
  outline: 0;
  width: 100%;
}

.search-box input::placeholder {
  color: #8e8982;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.filter-button {
  background: rgba(255,255,255,.06);
  border: 1px solid var(--dark-line);
  border-radius: 999px;
  color: #c9c5bd;
  font-size: 12px;
  font-weight: 700;
  padding: 10px 15px;
  text-transform: capitalize;
}

.filter-button:hover,
.filter-button.active {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.menu-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.menu-card {
  background: #171717;
  border: 1px solid var(--dark-line);
  border-radius: 20px;
  overflow: hidden;
}

.menu-card-header {
  align-items: end;
  background: linear-gradient(110deg, rgba(227,27,35,.18), transparent);
  border-bottom: 1px solid var(--dark-line);
  display: flex;
  justify-content: space-between;
  padding: 22px 24px;
}

.menu-card-header h3 {
  font-family: var(--heading);
  font-size: 32px;
  font-style: italic;
  line-height: 1;
  text-transform: uppercase;
}

.menu-card-header span {
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.menu-card-note {
  color: #a9a49d;
  font-size: 11px;
  padding: 14px 24px 0;
}

.menu-items {
  padding: 15px 24px 22px;
}

.menu-item {
  align-items: baseline;
  border-bottom: 1px dashed rgba(255,255,255,.12);
  display: grid;
  gap: 12px;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 11px 0;
}

.menu-item:last-child {
  border-bottom: 0;
}

.menu-item-info strong {
  display: block;
  font-size: 14px;
}

.menu-item-info small {
  color: #8f8a83;
  display: block;
  font-size: 10px;
  margin-top: 2px;
}

.menu-price {
  color: var(--gold);
  font-family: var(--heading);
  font-size: 20px;
  font-weight: 800;
  text-align: right;
  white-space: nowrap;
}

.menu-notes {
  background: rgba(255,255,255,.05);
  border: 1px solid var(--dark-line);
  border-radius: 16px;
  color: #a9a49d;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin-top: 24px;
  padding: 18px 22px;
}

.menu-notes p {
  font-size: 11px;
}

.menu-notes strong {
  color: var(--white);
}

.no-results {
  color: #c1bdb6;
  padding: 45px 0;
  text-align: center;
}

.flavors-section {
  background: var(--gold);
}

.flavors-grid {
  align-items: center;
  display: grid;
  gap: 80px;
  grid-template-columns: .7fr 1.3fr;
}

.flavors-copy > p:last-child {
  margin-top: 24px;
  max-width: 410px;
}

.flavor-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.flavor-chip {
  background: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 999px;
  color: var(--white);
  font-family: var(--heading);
  font-size: 18px;
  font-weight: 800;
  padding: 12px 18px;
  text-transform: uppercase;
  transform: rotate(-1deg);
}

.flavor-chip:nth-child(3n) {
  background: var(--red);
  border-color: var(--red);
  transform: rotate(1deg);
}

.flavor-chip:nth-child(4n) {
  background: transparent;
  color: var(--ink);
}

.about-section {
  background: var(--paper);
}

.about-grid {
  align-items: center;
  display: grid;
  gap: 80px;
  grid-template-columns: 1fr 1fr;
}

.about-visual {
  position: relative;
}

.about-visual img {
  aspect-ratio: 1 / 1.12;
  border-radius: 50% 50% 22px 22px;
  object-fit: cover;
}

.about-stamp {
  align-items: center;
  background: var(--red);
  border: 8px solid var(--paper);
  border-radius: 50%;
  bottom: -30px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  height: 150px;
  justify-content: center;
  position: absolute;
  right: -25px;
  transform: rotate(-8deg);
  width: 150px;
}

.about-stamp strong {
  font-family: var(--heading);
  font-size: 35px;
  line-height: 1;
}

.about-stamp span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
}

.about-copy h2 {
  max-width: 630px;
}

.about-copy > p:not(.eyebrow) {
  color: var(--muted);
  margin-top: 22px;
}

.text-link {
  border-bottom: 2px solid var(--red);
  display: inline-flex;
  font-weight: 800;
  gap: 8px;
  margin-top: 28px;
  padding-bottom: 4px;
}

.text-link span {
  color: var(--red);
}

.contact-section {
  background: var(--ink-2);
  color: var(--white);
  padding: 100px 0;
}

.contact-grid {
  align-items: center;
  display: grid;
  gap: 80px;
  grid-template-columns: .9fr 1.1fr;
}

.contact-copy > p:not(.eyebrow) {
  color: #a9a49d;
  margin: 24px 0 30px;
}

.visit-card {
  background: var(--paper-2);
  border-radius: var(--radius);
  color: var(--ink);
  overflow: hidden;
}

.visit-row {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 24px;
  grid-template-columns: 100px 1fr;
  padding: 22px 26px;
}

.visit-row:last-child {
  border-bottom: 0;
}

.visit-row > span {
  color: var(--red-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  padding-top: 4px;
  text-transform: uppercase;
}

.visit-row strong {
  font-size: 14px;
}

.hours-list {
  display: grid;
  gap: 6px;
}

.hours-line {
  display: flex;
  font-size: 12px;
  justify-content: space-between;
}

.hours-line span:last-child {
  font-weight: 700;
}

.hours-line.today {
  color: var(--red-dark);
  font-weight: 800;
}

footer {
  background: #090909;
  border-top: 1px solid var(--dark-line);
  color: #8f8a83;
  padding: 28px 0;
}

.footer-inner {
  align-items: center;
  display: flex;
  font-size: 11px;
  justify-content: space-between;
}

.footer-brand .brand-mark {
  height: 42px;
  width: 46px;
}

.footer-brand .brand-copy strong {
  color: var(--white);
  font-size: 18px;
}

.footer-brand .brand-copy small {
  font-size: 8px;
}

.mobile-call {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.sr-only {
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

@media (max-width: 980px) {
  .nav-links {
    align-items: stretch;
    background: #111;
    border-top: 1px solid var(--dark-line);
    display: none;
    flex-direction: column;
    gap: 0;
    left: 0;
    padding: 12px 20px 22px;
    position: absolute;
    right: 0;
    top: 82px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    border-bottom: 1px solid var(--dark-line);
    padding: 16px 4px;
  }

  .nav-links .nav-cta {
    border: 0;
    margin-top: 12px;
    text-align: center;
  }

  .menu-toggle {
    display: block;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hero {
    min-height: auto;
  }

  .hero-grid,
  .about-grid,
  .contact-grid,
  .flavors-grid {
    gap: 60px;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-visual {
    margin: 0 auto;
    max-width: 580px;
    width: 88%;
  }

  .favorite-grid {
    grid-template-columns: 1fr 1fr;
  }

  .favorite-card.large {
    grid-column: 1 / -1;
  }

  .favorite-card.large,
  .favorite-card {
    min-height: 420px;
  }

  .feature-strip-inner {
    flex-wrap: wrap;
    gap: 12px 20px;
    justify-content: center;
    padding: 18px 0;
  }

  .contact-copy {
    max-width: 700px;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .nav {
    height: 72px;
  }

  .nav-links {
    top: 72px;
  }

  .brand-mark {
    height: 44px;
    width: 47px;
  }

  .brand-copy strong {
    font-size: 19px;
  }

  .brand-copy small {
    font-size: 8px;
  }

  .hero {
    padding: 125px 0 70px;
  }

  .hero h1 {
    font-size: clamp(63px, 19vw, 94px);
  }

  .hero-logo {
    margin-inline: auto;
    max-width: 390px;
  }

  .hero-text {
    font-size: 16px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .quick-facts {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    width: 92%;
  }

  .floating-card {
    right: -15px;
  }

  .section {
    padding: 80px 0;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
  }

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

  .favorite-card,
  .favorite-card.large {
    min-height: 390px;
  }

  .menu-card-header {
    padding: 18px;
  }

  .menu-card-note {
    padding: 12px 18px 0;
  }

  .menu-items {
    padding: 12px 18px 18px;
  }

  .menu-item {
    gap: 8px;
  }

  .menu-price {
    font-size: 18px;
  }

  .about-stamp {
    bottom: -24px;
    height: 120px;
    right: -4px;
    width: 120px;
  }

  .about-stamp strong {
    font-size: 28px;
  }

  .contact-grid {
    gap: 50px;
  }

  .contact-actions .button {
    width: 100%;
  }

  .visit-row {
    gap: 12px;
    grid-template-columns: 1fr;
  }

  .hours-line {
    gap: 20px;
  }

  .footer-inner {
    align-items: start;
    flex-direction: column;
    gap: 20px;
  }

  .mobile-call {
    background: var(--red);
    border-radius: 999px;
    bottom: 14px;
    box-shadow: 0 12px 30px rgba(0,0,0,.35);
    color: var(--white);
    display: block;
    font-size: 13px;
    font-weight: 900;
    padding: 14px 22px;
    position: fixed;
    right: 14px;
    z-index: 900;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
