:root {
  --bg: #050505;
  --surface: #2f1606;
  --surface-strong: #8a3f00;
  --ink: #090705;
  --muted: #7c6544;
  --paper: #f4ddb4;
  --brand: #8f4303;
  --brand-deep: #050505;
  --accent: #8d6b00;
  --accent-bright: #c59212;
  --charcoal: #050505;
  --line: rgba(244, 221, 180, 0.16);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Trebuchet MS", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(143, 67, 3, 0.26), transparent 24%),
    radial-gradient(circle at bottom right, rgba(141, 107, 0, 0.18), transparent 26%),
    linear-gradient(180deg, #050505 0%, #301505 22%, #070604 22.1%, #8f4303 56%, #0a0804 56.1%, #050505 100%);
}

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

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

.hero {
  min-height: 100vh;
  padding: 24px 24px 64px;
  color: var(--paper);
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.9) 0%, rgba(47, 22, 6, 0.7) 48%, rgba(5, 5, 5, 0.18) 100%),
    radial-gradient(circle at top right, rgba(141, 107, 0, 0.18), transparent 30%);
  pointer-events: none;
}

.nav,
.hero-content,
.section,
.menu-hero-copy,
.footer {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.nav,
.hero-content {
  position: relative;
  z-index: 1;
}

.nav {
  position: fixed;
  top: 12px;
  left: 50%;
  z-index: 50;
  width: min(1180px, calc(100% - 48px));
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  padding: 7px 24px;
  border: 1px solid rgba(255, 244, 236, 0.14);
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.78);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
  flex-wrap: nowrap;
}

.nav-home {
  justify-content: center;
}

.brand {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(3.8rem, 5.8vw, 6rem);
  letter-spacing: 0.04em;
  line-height: 0.9;
}

.nav-links {
  display: grid;
  grid-template-columns: 32px minmax(max-content, 1fr) minmax(max-content, 1fr) minmax(max-content, 1.24fr) 32px;
  align-items: center;
  justify-items: center;
  column-gap: clamp(12px, 3vw, 48px);
  width: 100%;
  flex-wrap: nowrap;
  color: rgba(255, 245, 237, 0.82);
  font-size: 1.08rem;
  font-weight: 700;
  white-space: nowrap;
}

.nav-links a {
  justify-self: center;
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}

.nav-links a:last-child {
  justify-self: end;
}

.nav-logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  padding: 0;
  border-bottom: 0;
  justify-self: start;
  transform: none;
}

.nav-logo-link img {
  display: block;
  width: 23px;
  height: auto;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.52));
}

.language-link {
  justify-self: end;
  font-size: 0.88em;
  letter-spacing: 0.06em;
}

.nav-links a:hover {
  border-color: rgba(255, 245, 237, 0.45);
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
  gap: 24px;
  align-items: center;
  padding-top: 76px;
}

.hero-copy {
  text-align: center;
}

.hero-logo {
  width: min(351px, 65vw);
  margin: 18px auto 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 800;
}

h1,
h2,
h3,
.brand {
  line-height: 0.95;
}

h2 {
  margin: 0;
  font-size: clamp(2.6rem, 4vw, 4.6rem);
  max-width: 12ch;
}

h3 {
  margin: 0 0 12px;
  font-size: 1.45rem;
}

.stacked-title {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(5.8rem, 15vw, 11rem);
  letter-spacing: 0.03em;
  line-height: 0.8;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stacked-title span {
  display: block;
}

.hero-kicker {
  max-width: 34rem;
  margin: 18px auto 0;
  font-size: 1.28rem;
  line-height: 1.35;
  color: rgba(255, 245, 237, 0.95);
}

.hero-text,
.menu-card p,
.visit-copy p,
.info-panel p,
.footer p {
  line-height: 1.65;
}

.hero-text {
  max-width: 36rem;
  margin: 18px auto 0;
  color: rgba(255, 245, 237, 0.74);
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin: 24px 0;
}

.icon-link,
.footer-instagram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(244, 221, 180, 0.22);
  border-radius: 999px;
  color: var(--paper);
  background: rgba(5, 5, 5, 0.42);
}

.icon-link svg,
.footer-instagram svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.button {
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

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

.button-primary {
  background: var(--accent);
  color: #050505;
  box-shadow: 0 14px 30px rgba(141, 107, 0, 0.24);
}

.button-secondary {
  border: 1px solid rgba(255, 245, 237, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: var(--paper);
}

.menu-card,
.gallery-item,
.info-panel,
.media-card {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-location {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 20px;
  width: min(440px, 100%);
  margin-left: auto;
  margin-right: auto;
  padding: 11px 12px;
  border: 1px solid rgba(255, 244, 236, 0.12);
  border-radius: 18px;
  background: rgba(255, 248, 241, 0.08);
  backdrop-filter: blur(8px);
}

.location-copy p {
  margin: 0;
  color: rgba(255, 245, 237, 0.88);
  font-weight: 600;
  white-space: nowrap;
}

.location-copy {
  transform: none;
}

.location-link {
  align-self: center;
  margin-top: 0;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(141, 107, 0, 0.2);
  border: 1px solid rgba(244, 221, 180, 0.2);
  color: var(--paper);
  font-weight: 700;
  white-space: nowrap;
}

.hero-media {
  display: grid;
  gap: 18px;
}

.media-card {
  border-radius: 30px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.media-card img,
.gallery-item img {
  height: 100%;
  object-fit: cover;
}

.media-card-main {
  min-height: 340px;
  transform: rotate(-2deg);
}

.media-card-shot {
  width: min(420px, 88%);
  justify-self: end;
  min-height: 220px;
  margin-top: -48px;
  border: 8px solid rgba(255, 245, 237, 0.08);
}

.section {
  padding: 40px 24px 88px;
  position: relative;
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.section-heading {
  margin-bottom: 28px;
}

.section-heading h2 {
  text-wrap: balance;
}

.menu-note {
  max-width: 34rem;
  margin: 14px 0 0;
  color: rgba(255, 244, 236, 0.72);
  line-height: 1.6;
}

.story-list,
.menu-grid,
.gallery-grid,
.visit-section,
.visit-panel {
  display: grid;
  gap: 20px;
}

.story-list {
  gap: 0;
  border-top: 1px solid rgba(255, 244, 236, 0.14);
}

.menu-card {
  background: linear-gradient(180deg, rgba(47, 22, 6, 0.94), rgba(5, 5, 5, 0.94));
  border-radius: 26px;
  padding: 26px;
  color: var(--paper);
  position: relative;
}

.story-point p,
.menu-card p,
.visit-copy p,
.info-panel p,
.footer p {
  color: rgba(255, 244, 236, 0.74);
}

.menu-card.featured {
  background: linear-gradient(160deg, rgba(143, 67, 3, 0.98), rgba(5, 5, 5, 0.98));
  color: white;
}

.menu-card.featured p,
.menu-card.featured strong,
.menu-card.featured .tag {
  color: rgba(255, 255, 255, 0.9);
}

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

.menu-section,
.gallery-section {
  color: var(--paper);
}

.story {
  color: var(--paper);
}

.story::before {
  background:
    linear-gradient(180deg, rgba(47, 22, 6, 0.98), rgba(5, 5, 5, 0.98)),
    radial-gradient(circle at bottom left, rgba(141, 107, 0, 0.14), transparent 34%);
  border-top: 1px solid rgba(255, 244, 236, 0.08);
  border-bottom: 1px solid rgba(255, 244, 236, 0.08);
}

.gallery-section::before {
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.98), rgba(47, 22, 6, 0.96)),
    radial-gradient(circle at top right, rgba(143, 67, 3, 0.18), transparent 30%);
  border-top: 1px solid rgba(255, 244, 236, 0.08);
  border-bottom: 1px solid rgba(255, 244, 236, 0.06);
}

.visit-section {
  color: var(--paper);
}

.visit-section::before {
  background:
    linear-gradient(180deg, rgba(47, 22, 6, 0.98), rgba(5, 5, 5, 0.98)),
    radial-gradient(circle at top right, rgba(141, 107, 0, 0.24), transparent 32%);
  border-top: 1px solid rgba(255, 244, 236, 0.08);
  border-bottom: 1px solid rgba(255, 244, 236, 0.08);
}

.menu-section::before {
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.97), rgba(143, 67, 3, 0.9)),
    radial-gradient(circle at top right, rgba(141, 107, 0, 0.14), transparent 30%);
}

.story > *,
.menu-section > *,
.gallery-section > *,
.visit-section > * {
  position: relative;
  z-index: 1;
}

.story-point h3,
.menu-card h3,
.gallery-section h2,
.menu-section h2 {
  color: var(--paper);
}

.story h2,
.visit-section h2,
.story-point h3 {
  color: var(--paper);
}

.story-point {
  display: grid;
  grid-template-columns: 76px 0.7fr 1.3fr;
  gap: 24px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 244, 236, 0.14);
}

.story-point span {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.6rem;
  line-height: 1;
  color: var(--accent);
}

.story-point.featured {
  background: rgba(143, 67, 3, 0.24);
  margin-inline: -18px;
  padding-inline: 18px;
}

.story-point p {
  margin: 0;
  color: rgba(255, 244, 236, 0.76);
  line-height: 1.7;
}

.menu-card strong {
  font-size: 1.2rem;
  color: var(--accent);
}

.menu-card {
  min-height: 100%;
}

.tag,
.info-label {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
  color: var(--accent);
}

.gallery-grid {
  grid-template-columns: 1.2fr 1fr 1fr;
}

.gallery-item {
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(47, 22, 6, 0.96), rgba(5, 5, 5, 0.96));
  position: relative;
}

.gallery-item.large {
  grid-row: span 2;
}

.gallery-item.large img {
  height: 460px;
}

.gallery-item:not(.large) img {
  aspect-ratio: 1 / 0.78;
}

.gallery-item figcaption {
  padding: 18px 22px 22px;
  font-weight: 700;
  color: var(--paper);
}

.gallery-carousels {
  display: grid;
  gap: 26px;
}

.photo-carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.carousel-track {
  --slide-size: min(62vw, 520px);
  display: flex;
  gap: 18px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  -webkit-overflow-scrolling: touch;
  padding: 2px max(44px, calc((100% - var(--slide-size)) / 2)) 14px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  touch-action: pan-x pan-y;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.carousel-track img {
  flex: 0 0 var(--slide-size);
  width: var(--slide-size);
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid rgba(255, 244, 236, 0.14);
  border-radius: 4px;
  box-shadow: 0 18px 42px rgba(12, 5, 4, 0.26);
  scroll-snap-align: center;
  scroll-snap-stop: always;
}

.carousel-button {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid rgba(255, 244, 236, 0.24);
  border-radius: 999px;
  color: var(--paper);
  background: rgba(5, 5, 5, 0.86);
  cursor: pointer;
  transform: translateY(-50%);
}

.carousel-button-prev {
  left: 8px;
}

.carousel-button-next {
  right: 8px;
}

.visit-section {
  max-width: 920px;
  align-items: center;
}

.visit-panel {
  grid-template-columns: 1fr;
}

.map-card {
  min-height: 100%;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: linear-gradient(180deg, rgba(47, 22, 6, 0.96), rgba(5, 5, 5, 0.96));
}

.map-card-link {
  display: flex;
  min-height: 420px;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  background:
    linear-gradient(180deg, rgba(47, 22, 6, 0.96), rgba(5, 5, 5, 0.96)),
    radial-gradient(circle at top right, rgba(141, 107, 0, 0.18), transparent 34%);
}

.map-card-link h3 {
  margin: 0 0 14px;
  color: var(--paper);
  font-size: 2rem;
}

.map-card-link p {
  max-width: 34rem;
  margin: 0 0 22px;
  color: rgba(255, 244, 236, 0.76);
  line-height: 1.65;
}

.map-card-link .button {
  width: max-content;
}

.info-panel {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px 16px;
  padding: 18px;
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(47, 22, 6, 0.96), rgba(5, 5, 5, 0.96));
  color: var(--paper);
  position: relative;
  overflow-wrap: anywhere;
  min-width: 0;
}

.menu-card::after,
.gallery-item::after,
.info-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(244, 221, 180, 0.12);
  pointer-events: none;
}

.info-panel p,
.visit-copy p {
  color: rgba(255, 244, 236, 0.74);
}

.info-panel > div {
  min-width: 0;
}

.info-panel .info-label {
  margin-bottom: 4px;
  font-size: 0.66rem;
}

.info-panel p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.35;
}

.info-panel a {
  color: inherit;
  border-bottom: 1px solid rgba(255, 244, 236, 0.2);
}

.menu-hero {
  padding: 24px 24px 44px;
  color: var(--paper);
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.9), rgba(47, 22, 6, 0.72)),
    url("assets/photos/burger-cut-bg.jpg") center / cover;
}

.menu-hero-copy {
  padding: 36px 0 24px;
}

.menu-hero-copy h1 {
  max-width: 12ch;
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(4.2rem, 10vw, 8.8rem);
  line-height: 0.9;
}

.menu-hero-copy p:not(.eyebrow) {
  max-width: 38rem;
  color: rgba(255, 245, 237, 0.76);
  line-height: 1.7;
}

.menu-standalone {
  padding-top: 54px;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 8px 14px;
  flex-wrap: wrap;
  padding: 0 24px 18px;
  color: var(--paper);
  font-size: 0.86rem;
}

.footer-links {
  display: flex;
  gap: 8px 12px;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255, 244, 236, 0.86);
  border-bottom: 1px solid rgba(255, 244, 236, 0.18);
  padding-bottom: 2px;
}

.footer-address {
  border-bottom: 1px solid rgba(255, 244, 236, 0.72);
  padding-bottom: 2px;
}

.footer-instagram {
  display: none;
}

.footer::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: rgba(255, 244, 236, 0.12);
  margin-bottom: 8px;
}

.footer p {
  margin: 0;
  line-height: 1.25;
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 120;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  width: min(920px, calc(100% - 32px));
  padding: 16px 18px;
  border: 1px solid rgba(255, 244, 236, 0.16);
  border-radius: 8px;
  background: rgba(5, 5, 5, 0.94);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.42);
  color: var(--paper);
  transform: translateX(-50%);
  transition: opacity 180ms ease, transform 180ms ease;
}

.cookie-banner.is-hidden {
  opacity: 0;
  transform: translateX(-50%) translateY(12px);
  pointer-events: none;
}

.cookie-copy strong {
  display: block;
  margin-bottom: 4px;
  color: var(--accent-bright);
  font-size: 0.92rem;
}

.cookie-copy p {
  margin: 0;
  color: rgba(255, 244, 236, 0.76);
  font-size: 0.9rem;
  line-height: 1.45;
}

.cookie-actions {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.cookie-actions a {
  color: rgba(255, 244, 236, 0.86);
  font-size: 0.86rem;
  font-weight: 700;
  border-bottom: 1px solid rgba(255, 244, 236, 0.22);
  padding-bottom: 2px;
}

.cookie-button {
  min-height: 38px;
  padding: 9px 14px;
  border: 1px solid rgba(244, 221, 180, 0.24);
  border-radius: 999px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.cookie-button-primary {
  background: var(--accent);
  color: #050505;
}

.cookie-button-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--paper);
}

.legal-page {
  min-height: 100vh;
  padding-top: 56px;
}

@media (max-width: 980px) {
  .hero-content,
  .story-list,
  .menu-grid,
  .gallery-grid,
  .visit-section,
  .visit-panel {
    grid-template-columns: 1fr;
  }

  .gallery-item.large {
    grid-row: auto;
  }

  .carousel-track {
    --slide-size: min(68vw, 440px);
  }

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

  .story-point {
    grid-template-columns: 64px 1fr;
  }

  .story-point p {
    grid-column: 2;
  }

  .media-card-shot {
    width: 100%;
    margin-top: 0;
    justify-self: stretch;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-inline: 16px;
  }

  .section,
  .footer {
    padding-inline: 16px;
  }

  .story {
    padding-bottom: 34px;
  }

  .gallery-section {
    padding-top: 28px;
    padding-bottom: 32px;
  }

  .visit-section {
    padding-top: 24px;
    padding-bottom: 40px;
  }

  .nav {
    flex-direction: column;
    align-items: center;
  }

  .nav-links {
    justify-content: center;
    flex-wrap: wrap;
    white-space: normal;
  }

  .brand {
    font-size: 3.3rem;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-logo {
    width: min(74vw, 297px);
    margin-inline: auto;
  }

  .hero-location {
    width: min(320px, 100%);
    margin: 16px auto 0;
    padding: 9px 10px;
    flex-direction: row;
    align-items: center;
    text-align: center;
  }

  .location-copy {
    flex: 1;
  }

  .location-copy p {
    font-size: 0.8rem;
    text-align: center;
  }

  .location-link {
    padding: 8px 10px;
    font-size: 0.7rem;
  }

  h2 {
    font-size: 2.6rem;
  }

  .story-point,
  .menu-card {
    padding: 22px;
  }

  .info-panel {
    gap: 10px 12px;
    padding: 14px;
  }

  .photo-carousel {
    width: calc(100% + 32px);
    margin-left: -16px;
    margin-right: -16px;
  }

  .carousel-track {
    --slide-size: 78vw;
    gap: 12px;
    padding-inline: calc((100% - var(--slide-size)) / 2);
  }

  .carousel-button {
    display: none;
  }

  .info-panel .info-label {
    font-size: 0.62rem;
  }

  .info-panel p {
    font-size: 0.8rem;
  }

  .footer {
    justify-content: center;
    gap: 8px 14px;
    text-align: center;
  }

  .footer > p {
    width: 100%;
  }

  .footer-instagram {
    display: inline-flex;
    margin: 0 auto 4px;
  }

  .footer-links {
    justify-content: center;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
    bottom: 12px;
    padding: 14px;
  }

  .cookie-actions {
    justify-content: flex-start;
  }

  .story-point {
    margin-inline: 0;
    padding-inline: 0;
    grid-template-columns: 1fr;
  }

  .story-point p {
    grid-column: auto;
  }
}

/* Updated about and menu layouts */
.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.74fr);
  grid-template-areas:
    "copy photo"
    "notes photo";
  gap: 28px;
  align-items: end;
}

.about-copy {
  grid-area: copy;
  max-width: 680px;
}

.about-copy h2 {
  max-width: 13ch;
}

.about-copy p {
  max-width: 42rem;
  color: rgba(255, 244, 236, 0.76);
  line-height: 1.72;
}

.about-lead {
  margin-top: 24px;
  font-size: 1.2rem;
  color: rgba(255, 250, 242, 0.9) !important;
}

.about-photo {
  grid-area: photo;
  min-height: 520px;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255, 244, 236, 0.13);
  box-shadow: var(--shadow);
  transform: rotate(1deg);
}

.about-photo img {
  height: 100%;
  object-fit: cover;
}

.about-notes {
  grid-area: notes;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 244, 236, 0.13);
  border-radius: 18px;
  background: rgba(244, 221, 180, 0.13);
}

.about-notes p {
  min-height: 116px;
  margin: 0;
  padding: 20px;
  background: rgba(5, 5, 5, 0.48);
  color: rgba(255, 244, 236, 0.78);
  line-height: 1.45;
}

.about-notes strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--accent);
}

.menu-board {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.menu-feature,
.menu-category {
  border: 1px solid rgba(255, 244, 236, 0.14);
  box-shadow: var(--shadow);
}

.menu-feature {
  position: sticky;
  top: 22px;
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.18), rgba(47, 22, 6, 0.94)),
    url("assets/photos/burger-hands-bg.jpg") center / cover;
  overflow: hidden;
}

.menu-feature h2 {
  max-width: 9ch;
  margin: 0;
  color: var(--paper);
}

.menu-feature p {
  color: rgba(255, 244, 236, 0.82);
  line-height: 1.55;
}

.menu-feature strong {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3.5rem;
  line-height: 0.9;
  color: var(--accent);
}

.menu-list {
  display: grid;
  gap: 22px;
}

.menu-category {
  border-radius: 22px;
  background: rgba(5, 5, 5, 0.72);
  overflow: hidden;
}

.menu-category h2 {
  max-width: none;
  padding: 22px 24px;
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  color: var(--accent);
  border-bottom: 1px solid rgba(255, 244, 236, 0.12);
}

.menu-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: start;
  padding: 22px 24px;
  border-bottom: 1px solid rgba(255, 244, 236, 0.1);
}

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

.menu-row h3 {
  margin: 0 0 6px;
  color: var(--paper);
  font-size: 1.32rem;
}

.menu-row p {
  max-width: 46rem;
  margin: 0;
  color: rgba(255, 244, 236, 0.68);
  line-height: 1.48;
}

.menu-row strong {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
  color: var(--paper);
  white-space: nowrap;
}

.menu-category.compact {
  background: rgba(47, 22, 6, 0.76);
}

@media (max-width: 980px) {
  .about-layout,
  .menu-board {
    grid-template-columns: 1fr;
  }

  .about-layout {
    grid-template-areas:
      "copy"
      "photo"
      "notes";
  }

  .about-photo {
    min-height: 360px;
    transform: none;
  }

  .menu-feature {
    position: relative;
    top: auto;
    min-height: 320px;
  }
}

@media (max-width: 640px) {
  .about-notes {
    grid-template-columns: 1fr;
  }

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

  .menu-feature,
  .menu-category h2,
  .menu-row {
    padding-inline: 20px;
  }
}

/* Current about section */
.about-statement {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1fr);
  gap: 44px;
  align-items: end;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255, 244, 236, 0.16);
}

.about-title-block h2 {
  max-width: 10ch;
  margin: 0;
}

.about-text-block {
  max-width: 680px;
}

.about-text-block p {
  margin: 0;
  color: rgba(255, 244, 236, 0.74);
  font-size: 1.05rem;
  line-height: 1.7;
}

.about-text-block p + p {
  margin-top: 18px;
}

.about-text-block .about-intro {
  color: rgba(255, 250, 242, 0.92);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.36;
}

.about-bars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 24px;
  border: 1px solid rgba(255, 244, 236, 0.14);
}

.about-bars div {
  padding: 24px;
  background: rgba(5, 5, 5, 0.44);
  border-right: 1px solid rgba(255, 244, 236, 0.14);
}

.about-bars div:nth-child(2) {
  background: rgba(143, 67, 3, 0.26);
}

.about-bars div:last-child {
  border-right: 0;
}

.about-bars span {
  display: block;
  margin-bottom: 18px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 3rem;
  line-height: 0.9;
  color: var(--accent);
}

.about-bars strong {
  display: block;
  margin-bottom: 8px;
  color: var(--paper);
  font-size: 1.12rem;
}

.about-bars p {
  margin: 0;
  color: rgba(255, 244, 236, 0.68);
  line-height: 1.5;
}

/* Current menu page */
.paper-menu {
  overflow: hidden;
  border-radius: 18px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 26px 70px rgba(10, 4, 3, 0.34);
}

.paper-menu-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: end;
  padding: 30px 34px;
  background: var(--brand);
  color: var(--paper);
}

.paper-menu-header .eyebrow {
  margin: 0;
  color: var(--paper);
}

.paper-menu-header h2 {
  max-width: none;
  margin: 0;
  font-size: clamp(3rem, 6vw, 5.5rem);
}

.paper-menu-header span {
  color: rgba(255, 244, 236, 0.78);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

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

.paper-menu-category {
  padding: 30px 34px;
  border-right: 1px solid rgba(143, 67, 3, 0.22);
  border-bottom: 1px solid rgba(143, 67, 3, 0.22);
}

.paper-menu-category:nth-child(2n) {
  border-right: 0;
}

.paper-menu-category.extras {
  grid-column: 1 / -1;
  background: #ead4aa;
}

.paper-menu-category h3 {
  margin: 0 0 18px;
  color: var(--brand);
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.3rem, 4vw, 3.4rem);
  line-height: 0.9;
  border-bottom: 3px solid var(--brand);
  padding-bottom: 12px;
}

.paper-menu-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: start;
  padding: 16px 0;
  border-bottom: 1px solid rgba(42, 13, 13, 0.14);
}

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

.paper-menu-item strong {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 1.16rem;
}

.paper-menu-item p {
  margin: 0;
  color: rgba(9, 7, 5, 0.72);
  line-height: 1.45;
}

.paper-menu-item > span {
  min-width: 74px;
  padding: 8px 10px;
  border-radius: 999px;
  background: var(--brand);
  color: var(--paper);
  font-weight: 800;
  text-align: center;
  white-space: nowrap;
}

.paper-menu-item.highlight {
  margin: 0 0 8px;
  padding: 18px;
  border: 2px solid var(--brand);
  border-radius: 14px;
  background: #ddbd78;
}

@media (max-width: 980px) {
  .about-statement,
  .paper-menu-grid {
    grid-template-columns: 1fr;
  }

  .paper-menu-category,
  .paper-menu-category:nth-child(2n) {
    border-right: 0;
  }

  .about-bars {
    grid-template-columns: 1fr;
  }

  .about-bars div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 244, 236, 0.14);
  }

  .about-bars div:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 640px) {
  .paper-menu-header {
    grid-template-columns: 1fr;
    align-items: start;
    padding: 24px 20px;
  }

  .paper-menu-category {
    padding: 24px 20px;
  }

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

  .paper-menu-item > span {
    width: max-content;
  }
}

/* Reference-based Encarnado menu */
.enc-menu {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid rgba(255, 244, 236, 0.16);
  border-radius: 18px;
  box-shadow: 0 28px 80px rgba(7, 3, 2, 0.38);
}

.enc-menu-brand {
  display: flex;
  min-height: 760px;
  flex-direction: column;
  justify-content: space-between;
  padding: 34px 28px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.76)),
    var(--bg);
  color: var(--paper);
}

.enc-wordmark {
  display: grid;
  gap: 2px;
  width: min-content;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(4.8rem, 7vw, 7.4rem);
  line-height: 0.72;
  letter-spacing: 0;
}

.enc-wordmark span {
  display: block;
}

.enc-burger-mark {
  display: grid;
  gap: 9px;
  width: 128px;
}

.enc-burger-mark span {
  display: block;
  height: 14px;
  border: 5px solid var(--paper);
  border-radius: 999px;
}

.enc-burger-mark span:first-child {
  height: 42px;
  border-bottom-width: 0;
  border-radius: 80px 80px 16px 16px;
}

.enc-burger-mark span:last-child {
  height: 24px;
}

.enc-menu-brand p {
  margin: 0;
  color: rgba(255, 244, 236, 0.72);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.enc-menu-sheet {
  background: var(--paper);
  color: #1c0c0a;
}

.enc-menu-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: end;
  padding: 30px 34px 24px;
  border-bottom: 5px solid #111;
}

.enc-menu-top .eyebrow {
  margin: 0;
  color: var(--brand);
}

.enc-menu-top h2 {
  max-width: none;
  margin: 0;
  color: #111;
  font-size: clamp(3rem, 5vw, 5rem);
}

.enc-menu-top > span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: var(--brand);
  color: var(--paper);
  font-size: 1.6rem;
  font-weight: 800;
}

.enc-category {
  padding: 26px 34px 8px;
}

.enc-category h3 {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 10px;
  color: var(--brand);
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.1rem, 3.6vw, 3.2rem);
  line-height: 0.9;
}

.enc-category h3::after {
  content: "";
  flex: 1;
  height: 3px;
  background: #111;
}

.enc-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: start;
  padding: 15px 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.18);
}

.enc-item strong {
  display: block;
  margin-bottom: 5px;
  color: #111;
  font-size: 1.14rem;
}

.enc-item p {
  margin: 0;
  color: rgba(17, 17, 17, 0.66);
  line-height: 1.45;
}

.enc-item > span {
  min-width: 76px;
  color: #111;
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  line-height: 0.95;
  text-align: right;
}

.enc-item.feature {
  margin: 10px 0;
  padding: 18px;
  border: 2px solid var(--brand);
  background: #f2d38f;
}

.enc-two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 5px solid #111;
}

.enc-two-col .enc-category:first-child {
  border-right: 1px solid rgba(17, 17, 17, 0.18);
}

@media (max-width: 980px) {
  .enc-menu {
    grid-template-columns: 1fr;
  }

  .enc-menu-brand {
    min-height: 300px;
  }

  .enc-wordmark {
    font-size: 5rem;
  }
}

@media (max-width: 700px) {
  .enc-menu-top,
  .enc-two-col,
  .enc-item {
    grid-template-columns: 1fr;
  }

  .enc-menu-top {
    align-items: start;
  }

  .enc-two-col .enc-category:first-child {
    border-right: 0;
    border-bottom: 5px solid #111;
  }

  .enc-category,
  .enc-menu-top {
    padding-inline: 22px;
  }

  .enc-item > span {
    text-align: left;
  }
}

.menu-coming-soon {
  min-height: 100vh;
  padding: 24px;
  color: var(--paper);
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.96), rgba(47, 22, 6, 0.88)),
    url("assets/photos/burger-cut-bg.jpg") center / cover;
  position: relative;
  overflow: hidden;
}

.menu-coming-soon::after {
  content: "MENU";
  position: absolute;
  right: -0.08em;
  bottom: -0.22em;
  color: rgba(255, 244, 236, 0.045);
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(12rem, 34vw, 32rem);
  line-height: 0.8;
  pointer-events: none;
}

.menu-coming-soon .nav {
  position: relative;
  z-index: 1;
}

.coming-soon-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 0.52fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  width: min(1180px, 100%);
  min-height: calc(100vh - 180px);
  margin: 0 auto;
  padding: 40px 0 72px;
}

.coming-soon-panel {
  min-height: 540px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(255, 244, 236, 0.18);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.7), rgba(5, 5, 5, 0.94)),
    radial-gradient(circle at top right, rgba(143, 67, 3, 0.42), transparent 42%);
  box-shadow: 0 28px 80px rgba(5, 2, 2, 0.46);
}

.coming-soon-panel .enc-wordmark {
  color: var(--paper);
}

.coming-soon-mark {
  display: grid;
  gap: 10px;
  width: 140px;
}

.coming-soon-mark span {
  display: block;
  height: 16px;
  border: 5px solid var(--accent);
  border-radius: 999px;
}

.coming-soon-mark span:first-child {
  height: 48px;
  border-bottom-width: 0;
  border-radius: 90px 90px 18px 18px;
}

.coming-soon-mark span:last-child {
  height: 26px;
}

.coming-soon-copy {
  max-width: 680px;
}

.coming-soon-copy h1 {
  max-width: 10ch;
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(5.8rem, 12vw, 11.5rem);
  line-height: 0.78;
}

.coming-soon-copy h1 span {
  display: block;
}

.coming-soon-copy h1 span + span {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 244, 236, 0.72);
}

.coming-soon-copy p:not(.eyebrow) {
  max-width: 34rem;
  color: rgba(255, 244, 236, 0.78);
  font-size: 1.15rem;
  line-height: 1.65;
}

.coming-soon-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 14px;
}

@media (max-width: 760px) {
  .coming-soon-content {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

.work-hero {
  min-height: 100vh;
  padding: 24px;
  color: var(--paper);
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.98), rgba(47, 22, 6, 0.94)),
    url("assets/photos/burger-hands-bg.jpg") center / cover;
}

.work-content {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: center;
  width: min(1180px, 100%);
  min-height: calc(100vh - 180px);
  margin: 0 auto;
  padding: 40px 0 72px;
}

.work-copy h1 {
  max-width: 7ch;
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(4.8rem, 10vw, 9rem);
  line-height: 0.78;
}

.work-copy p {
  max-width: 42rem;
  color: rgba(255, 244, 236, 0.82);
  font-size: 1.16rem;
  line-height: 1.65;
}

.work-copy .work-email {
  margin-top: 16px;
  color: rgba(255, 244, 236, 0.72);
  font-size: 1rem;
}

.work-email strong {
  color: var(--accent);
  overflow-wrap: anywhere;
}

.work-copy .button {
  display: inline-block;
  margin-top: 12px;
}

.work-panel {
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid rgba(255, 244, 236, 0.16);
  border-radius: 28px;
  background: rgba(5, 5, 5, 0.8);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
  align-self: center;
  max-width: 420px;
  justify-self: end;
}

.work-panel h2 {
  max-width: 12ch;
  margin-bottom: 22px;
  font-size: clamp(2.2rem, 3.8vw, 3.4rem);
  line-height: 1;
}

.work-panel ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.work-panel li {
  padding-left: 22px;
  color: rgba(255, 244, 236, 0.8);
  line-height: 1.5;
  position: relative;
}

.work-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
}

.work-panel p {
  margin: 24px 0 0;
  color: rgba(255, 244, 236, 0.72);
  line-height: 1.6;
}

@media (max-width: 980px) {
  .work-content {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .work-panel {
    max-width: none;
    justify-self: stretch;
  }
}

/* Final about redesign */
.about-redesign {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.82fr);
  gap: clamp(26px, 5vw, 58px);
  max-width: 1080px;
  margin: 0 auto;
  align-items: center;
}

.about-redesign-copy {
  max-width: 680px;
}

.about-redesign-copy h2 {
  max-width: 9ch;
  margin: 0;
  font-size: clamp(4.4rem, 8vw, 8.4rem);
}

.about-redesign-copy p {
  max-width: 38rem;
  margin: 22px 0 0;
  color: rgba(255, 244, 236, 0.78);
  font-size: 1.08rem;
  line-height: 1.7;
}

.about-redesign-copy p:first-of-type {
  color: rgba(255, 250, 242, 0.92);
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  line-height: 1.45;
}

.about-awards {
  position: relative;
  display: grid;
  gap: 12px;
  padding: clamp(16px, 2.4vw, 22px);
  border: 1px solid rgba(255, 244, 236, 0.14);
  border-radius: 12px;
  background: rgba(5, 5, 5, 0.42);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.about-awards::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(143, 67, 3, 0.24), transparent 48%),
    radial-gradient(circle at top right, rgba(141, 107, 0, 0.18), transparent 34%);
  pointer-events: none;
}

.about-awards > * {
  position: relative;
  z-index: 1;
}

.about-awards-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(64px, 8vw, 88px);
  align-items: center;
  gap: 12px;
  max-width: 24rem;
}

.about-awards-copy .eyebrow {
  margin-bottom: 8px;
}

.about-awards-copy h3 {
  margin: 0;
  color: var(--paper);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
}

.about-awards-burger {
  position: static;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  filter: drop-shadow(0 16px 24px rgba(8, 3, 3, 0.28));
}

.awards-list {
  display: grid;
  gap: 8px;
  margin: 6px 0 0;
  padding: 0;
  list-style: none;
}

.awards-list li {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid rgba(255, 244, 236, 0.1);
  border-radius: 8px;
  background: rgba(255, 244, 236, 0.07);
}

.awards-list strong {
  color: var(--accent);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(2rem, 4vw, 2.9rem);
  line-height: 0.9;
}

.awards-list span {
  color: rgba(255, 244, 236, 0.74);
  font-size: 0.92rem;
  line-height: 1.3;
}

.awards-list b {
  display: block;
  margin-bottom: 2px;
  color: var(--paper);
  font-size: 1.05rem;
}

.awards-note {
  margin: 2px 0 0;
  color: var(--accent);
  font-weight: 800;
}

.about-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 34px;
  border-top: 1px solid rgba(255, 244, 236, 0.16);
  border-bottom: 1px solid rgba(255, 244, 236, 0.16);
}

.about-strip span {
  padding: 18px 16px;
  border-right: 1px solid rgba(255, 244, 236, 0.16);
  color: var(--accent);
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.about-strip span:last-child {
  border-right: 0;
}

@media (max-width: 900px) {
  .about-redesign {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

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

  .about-strip span:nth-child(2) {
    border-right: 0;
  }
}

@media (max-width: 560px) {
  .about-awards {
    padding-top: 16px;
  }

  .about-awards-burger {
    width: 68px;
  }

  .awards-list li {
    grid-template-columns: 54px minmax(0, 1fr);
    padding: 10px;
  }

  .awards-list span {
    font-size: 0.9rem;
  }

  .awards-list b {
    font-size: 0.96rem;
  }

  .about-strip {
    grid-template-columns: 1fr;
  }

  .about-strip span {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 244, 236, 0.16);
  }

  .about-strip span:last-child {
    border-bottom: 0;
  }
}

/* Restore simpler coming soon menu */
.menu-coming-soon::after {
  content: none;
}

.coming-soon-content {
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
}

.coming-soon-content > .enc-wordmark {
  color: var(--paper);
}

.coming-soon-content > div:not(.enc-wordmark) {
  max-width: 680px;
}

.coming-soon-content > div:not(.enc-wordmark) h1 {
  max-width: 8ch;
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(6rem, 16vw, 13rem);
  line-height: 0.8;
}

.coming-soon-content > div:not(.enc-wordmark) p:not(.eyebrow) {
  max-width: 34rem;
  color: rgba(255, 244, 236, 0.78);
  font-size: 1.15rem;
  line-height: 1.65;
}

.coming-soon-content > div:not(.enc-wordmark) .button {
  display: inline-block;
  margin-top: 14px;
}

@media (max-width: 760px) {
  .coming-soon-content {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

/* Final fixed compact header overrides */
section,
#topo {
  scroll-margin-top: 92px;
}

.menu-coming-soon .nav {
  position: fixed;
  z-index: 50;
}

.coming-soon-content,
.work-content {
  padding-top: 104px;
}

.legal-page {
  padding-top: 120px;
}

@media (max-width: 640px) {
  .nav {
    top: 8px;
    width: calc(100% - 20px);
    padding: 6px 12px;
    gap: 0;
    flex-direction: row;
  }

  .nav-links {
    display: grid;
    grid-template-columns: 20px minmax(max-content, 1fr) minmax(max-content, 0.9fr) minmax(max-content, 1.45fr) 20px;
    align-items: center;
    justify-items: center;
    column-gap: clamp(8px, 2.4vw, 16px);
    width: 100%;
    flex-wrap: nowrap;
    white-space: nowrap;
    font-size: 0.72rem;
  }

  .nav-links a,
  .nav-links a:last-child {
    justify-self: auto;
  }

  .nav-logo-link {
    width: 20px;
    height: 20px;
    flex-basis: 20px;
    transform: none;
  }

  .nav-logo-link img {
    width: 19px;
  }

  .hero-content {
    padding-top: 72px;
  }

  .coming-soon-content,
  .work-content {
    padding-top: 92px;
  }

  .legal-page {
    padding-top: 108px;
  }
}
