:root {
  --bg: #050505;
  --bg-soft: #0a0a0b;
  --panel: #101114;
  --panel-alt: #14161a;
  --panel-border: rgba(255, 255, 255, 0.09);
  --text: #f5f0e8;
  --muted: #b7b0ad;
  --muted-soft: #8e8886;
  --red: #e31b23;
  --red-bright: #ff4a49;
  --green: #153f30;
  --green-soft: #245842;
  --cream: #f2ebe0;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.42);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  font-family: "Sora", sans-serif;
  background:
    radial-gradient(circle at 80% 10%, rgba(227, 27, 35, 0.18), transparent 24%),
    radial-gradient(circle at 16% 90%, rgba(21, 63, 48, 0.16), transparent 20%),
    linear-gradient(180deg, #0a0a0b 0%, #050505 40%, #080808 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 95%);
}

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

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

button,
a,
iframe,
summary {
  border-radius: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 999;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: var(--red);
  color: white;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(16px);
  background: rgba(5, 5, 5, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 82px;
}

.brand-lockup,
.site-footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.site-footer__brand div {
  display: grid;
  gap: 0.25rem;
}

.site-footer__brand strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer__brand p {
  margin: 0;
  color: rgba(245, 240, 232, 0.68);
  font-size: 0.9rem;
}

.logo {
  width: clamp(240px, 34vw, 500px);
}

.logo img {
  width: 100%;
  height: auto;
}

.logo--compact {
  width: 108px;
}

.site-nav {
  display: none;
  align-items: center;
  gap: 1.6rem;
}

.site-nav a {
  color: rgba(245, 240, 232, 0.86);
  font-size: 0.96rem;
  font-weight: 600;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.9rem 1.45rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--red-bright), var(--red));
  color: white;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(227, 27, 35, 0.25);
}

.button--secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.14);
  color: var(--text);
}

.button--secondary:hover,
.button--secondary:focus-visible {
  background: rgba(255, 255, 255, 0.04);
  box-shadow: none;
}

.button:focus-visible,
.site-nav a:focus-visible,
.brand-lockup:focus-visible,
.site-footer__links a:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(255, 74, 73, 0.35);
  outline-offset: 3px;
}

.site-header__cta {
  display: none;
}

.hero {
  padding: 4rem 0 2rem;
}

.hero__grid,
.founder-grid,
.location-grid {
  display: grid;
  gap: 2rem;
}

.hero__content,
.hero__visual {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: #ff7172;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1,
h2,
h3,
.founder-quote,
.hero-panel__copy h2,
.menu-preview-card__eyebrow,
.site-footer__brand strong {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
}

h1 {
  max-width: 8ch;
  font-size: clamp(4rem, 11vw, 6.4rem);
  line-height: 0.92;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(2.4rem, 5vw, 3.7rem);
  line-height: 0.96;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

h3 {
  font-size: 1.45rem;
  line-height: 1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.hero__subtitle,
.section-copy,
.concept-card p,
.menu-preview-card__blurb,
.menu-item,
.founder-panel__stats span,
.location-card p,
.site-footer__note,
.hero-panel__note,
.hero-banner p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.hero__subtitle {
  max-width: 60ch;
  margin: 1.2rem 0 0;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.6rem;
}

.hero__facts,
.pill-row,
.concept-grid,
.menu-preview-grid,
.site-footer__links,
.hero-panel__points {
  display: grid;
  gap: 1rem;
}

.hero__facts {
  margin: 1.7rem 0 0;
  padding: 0;
  list-style: none;
}

.hero__facts li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--cream);
  font-size: 0.95rem;
}

.hero__facts li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red-bright), var(--green-soft));
  flex: 0 0 auto;
}

.hero-panel,
.concept-card,
.menu-preview-card,
.menu-card,
.founder-panel,
.location-card,
.map-frame,
.hero-banner,
.section-banner,
.full-menu {
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
    var(--panel);
  box-shadow: var(--shadow);
}

.hero-panel {
  padding: 1.6rem;
  background:
    radial-gradient(circle at top right, rgba(227, 27, 35, 0.14), transparent 30%),
    radial-gradient(circle at bottom left, rgba(21, 63, 48, 0.14), transparent 20%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
    var(--panel);
}

.hero-panel__image {
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-panel__image img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.hero-panel__copy {
  margin-top: 1.2rem;
}

.hero-panel__copy h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.hero-panel__points {
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  margin-top: 1rem;
}

.hero-panel__points span {
  padding-top: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--cream);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-panel__note {
  max-width: 42ch;
  margin: 1rem 0 0;
}

.hero-banner,
.section-banner {
  margin-top: 1.5rem;
  padding: 1.15rem 1.25rem;
  background:
    linear-gradient(90deg, rgba(227, 27, 35, 0.16), rgba(21, 63, 48, 0.12)),
    rgba(16, 17, 20, 0.96);
}

.hero-banner p,
.section-banner p {
  margin: 0;
  color: var(--text);
}

.section {
  padding: 4.6rem 0;
}

.section-heading {
  max-width: 60ch;
}

.section-heading--narrow {
  max-width: 52ch;
}

.section-copy {
  margin: 1rem 0 0;
}

.concept-grid,
.menu-preview-grid {
  margin-top: 1.8rem;
}

.concept-card {
  position: relative;
  padding: 1.4rem;
}

.concept-card__step {
  display: inline-block;
  margin-bottom: 1rem;
  color: #ff8a89;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.concept-card h3 {
  margin-bottom: 0.55rem;
}

.menu-preview-card {
  padding: 1.4rem;
}

.menu-preview-card__top {
  margin-bottom: 1.1rem;
}

.menu-preview-card__eyebrow {
  color: var(--cream);
  font-size: 1.4rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.menu-preview-card__blurb {
  margin: 0.4rem 0 0;
}

.menu-list {
  display: grid;
  gap: 0.8rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu-item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.11);
}

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

.menu-item strong,
.hours-row strong {
  color: var(--cream);
}

.full-menu {
  margin-top: 1.5rem;
  overflow: hidden;
}

.full-menu summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  cursor: pointer;
  list-style: none;
}

.full-menu summary::-webkit-details-marker {
  display: none;
}

.full-menu summary span {
  color: var(--cream);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.full-menu summary strong {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.full-menu__content {
  padding: 0 1.25rem 1.25rem;
}

.menu-grid {
  display: grid;
  gap: 1rem;
}

.menu-grid--full {
  margin-top: 0.2rem;
}

.menu-card {
  padding: 1.25rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
    var(--panel-alt);
}

.menu-card--modifiers {
  background:
    linear-gradient(180deg, rgba(227, 27, 35, 0.12), rgba(255, 255, 255, 0)),
    var(--panel-alt);
}

.menu-card__header,
.hours-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.menu-card__header span {
  color: var(--muted-soft);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.section--founder {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
}

.pill-row {
  margin-top: 1.4rem;
}

.pill {
  display: inline-flex;
  width: fit-content;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.92rem;
  font-weight: 600;
}

.founder-panel {
  position: relative;
  overflow: hidden;
  padding: 1.6rem;
  background:
    radial-gradient(circle at 85% 90%, rgba(227, 27, 35, 0.15), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
    var(--panel-alt);
}

.founder-quote {
  margin-top: 0.45rem;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.founder-panel__stats {
  display: grid;
  gap: 1rem;
  margin-top: 1.3rem;
}

.founder-panel__stats strong {
  display: block;
  margin-bottom: 0.28rem;
  color: var(--cream);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.updates-callout {
  margin-top: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.25rem;
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top right, rgba(227, 27, 35, 0.16), transparent 26%),
    radial-gradient(circle at bottom left, rgba(21, 63, 48, 0.12), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
    var(--panel);
  box-shadow: var(--shadow);
}

.updates-callout__eyebrow,
.updates-callout__text {
  margin: 0;
}

.updates-callout__eyebrow {
  color: #ff8a89;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.updates-callout__text {
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.location-card {
  margin-top: 1.4rem;
  padding: 1.4rem;
  background:
    radial-gradient(circle at top right, rgba(21, 63, 48, 0.18), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
    var(--panel-alt);
}

.location-card__label {
  margin: 0 0 0.4rem;
  color: #ff7172;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hours-list {
  display: grid;
  gap: 0.9rem;
  margin: 1.25rem 0;
}

.hours-row {
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.location-note {
  margin: 0 0 1.2rem;
  color: var(--muted);
}

.map-frame {
  min-height: 360px;
  overflow: hidden;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  filter: saturate(0) contrast(1.08) brightness(0.85);
}

.site-footer {
  padding: 2.4rem 0 3rem;
  background: #060606;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.site-footer__grid {
  display: grid;
  gap: 1.5rem;
}

.site-footer__note {
  max-width: 48ch;
  margin: 1rem 0 0;
}

.site-footer__links a {
  color: rgba(245, 240, 232, 0.88);
  font-weight: 600;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 650ms ease,
    transform 650ms ease;
}

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

@media (min-width: 760px) {
  .concept-grid,
  .menu-preview-grid,
  .site-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (min-width: 980px) {
  .site-nav,
  .site-header__cta {
    display: flex;
  }

  .hero__grid,
  .founder-grid,
  .location-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
    align-items: center;
  }

  .concept-grid,
  .menu-preview-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .menu-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .site-footer__grid {
    grid-template-columns: 1.4fr 0.8fr;
    align-items: start;
  }

  .site-footer__links {
    justify-items: end;
  }
}

@media (max-width: 759px) {
  .updates-callout {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

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