:root {
  --ink: #171717;
  --paper: #f6f6f2;
  --white: #ffffff;
  --brand: #d94720;
  --brand-dark: #9f2d12;
  --brand-soft: #f4c8bb;
  --brand-wash: #fff2ed;
  --yellow: #f1c84b;
  --green: #5f8f62;
  --green-soft: #dfece0;
  --blue-soft: #dcebf1;
  --muted: #686862;
  --line: #d8d8d0;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

p {
  margin: 0;
  line-height: 1.65;
}

h1,
h2,
h3 {
  margin: 0;
  font-weight: 900;
  letter-spacing: 0;
}

h1 {
  font-size: 72px;
  line-height: 0.98;
}

h2 {
  font-size: 44px;
  line-height: 1.05;
}

h3 {
  font-size: 22px;
  line-height: 1.18;
}

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  left: 16px;
  top: 16px;
  transform: translateY(-160%);
  background: var(--white);
  color: var(--ink);
  border: 2px solid var(--ink);
  padding: 10px 14px;
}

.skip-link:focus {
  transform: translateY(0);
}

.topbar {
  background: var(--brand-dark);
  color: var(--white);
  font-size: 12px;
}

.topbar .wrap {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.site-nav {
  position: sticky;
  z-index: 50;
  top: 0;
  background: rgba(246, 246, 242, 0.96);
  border-bottom: 1px solid var(--brand-soft);
  backdrop-filter: blur(14px);
}

.nav-row {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 112px;
  height: 54px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 13px;
  font-weight: 800;
}

.nav-links a {
  border-bottom: 2px solid transparent;
  padding: 10px 0 8px;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--brand);
  border-bottom-color: var(--brand);
}

.nav-links .nav-cta {
  background: var(--ink);
  color: var(--white);
  border: 1px solid var(--ink);
  border-radius: 4px;
  padding: 11px 15px;
}

.nav-links .nav-cta:hover,
.nav-links .nav-cta[aria-current="page"] {
  color: var(--white);
  background: var(--brand);
  border-color: var(--brand);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 4px;
}

.nav-toggle svg {
  width: 23px;
  height: 23px;
}

.hero {
  position: relative;
  min-height: 560px;
  height: min(720px, calc(100svh - 150px));
  color: var(--white);
  overflow: hidden;
  background: var(--ink);
}

.hero-media,
.hero-video,
.page-hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 10, 10, 0.86) 0%, rgba(10, 10, 10, 0.57) 46%, rgba(10, 10, 10, 0.16) 78%), linear-gradient(0deg, rgba(10, 10, 10, 0.42), transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 780px;
  padding: 48px 0;
}

.eyebrow,
.kicker {
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--yellow);
}

.hero h1 {
  max-width: 760px;
  margin-top: 14px;
}

.hero .lede {
  max-width: 650px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid var(--ink);
  border-radius: 4px;
  background: var(--white);
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.btn.primary {
  color: var(--white);
  background: var(--brand);
  border-color: var(--brand);
}

.btn.dark {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.btn.ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.72);
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
  font-size: 13px;
  font-weight: 800;
}

.hero-facts span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-facts span::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--yellow);
  border-radius: 50%;
}

.section {
  padding: 88px 0;
}

.section.tight {
  padding: 64px 0;
}

.band-white {
  background: var(--white);
}

.band-dark {
  background: var(--ink);
  color: var(--white);
}

.band-green {
  background: var(--green-soft);
}

.band-blue {
  background: var(--blue-soft);
}

.section-head {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
  gap: 56px;
  margin-bottom: 38px;
}

.section-head h2 {
  margin-top: 9px;
}

.section-head h2::after {
  content: "";
  display: block;
  width: 56px;
  height: 5px;
  margin-top: 18px;
  background: var(--brand);
}

.section-head p {
  color: var(--muted);
  font-size: 17px;
}

.band-dark .section-head p,
.band-dark p {
  color: #c8c8c0;
}

.cards-3,
.cards-4 {
  display: grid;
  gap: 14px;
}

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

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

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 28px;
}

.card .number {
  display: block;
  margin-bottom: 28px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 900;
}

.card p {
  margin-top: 12px;
  color: var(--muted);
}

.media-split {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  align-items: center;
  gap: 64px;
}

.media-split.reverse {
  grid-template-columns: 0.88fr 1.12fr;
}

.media-split.reverse .media-frame {
  order: 2;
}

.media-frame {
  overflow: hidden;
  border-radius: 6px;
  background: #ddd;
}

.media-frame.landscape {
  aspect-ratio: 16 / 10;
}

.media-frame.portrait {
  aspect-ratio: 4 / 5;
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.copy-block h2 {
  margin-top: 9px;
}

.copy-block p {
  margin-top: 20px;
  color: var(--muted);
  font-size: 17px;
}

.copy-block .actions {
  margin-top: 24px;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 38px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stat {
  padding: 24px 22px;
  border-right: 1px solid var(--line);
}

.stat:last-child {
  border-right: 0;
}

.stat strong {
  display: block;
  color: var(--brand);
  font-size: 28px;
}

.stat span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.price-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  align-items: center;
}

.price-big {
  display: block;
  margin: 10px 0 16px;
  color: var(--yellow);
  font-size: 88px;
  font-weight: 950;
  line-height: 1;
}

.price-rows {
  border-top: 1px solid #444;
}

.price-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 17px 0;
  border-bottom: 1px solid #444;
}

.price-row span:last-child {
  color: #d7d7cf;
  text-align: right;
}

.image-strip {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 10px;
}

.image-strip figure {
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
  background: #ddd;
  aspect-ratio: 4 / 5;
}

.image-strip figure:first-child {
  aspect-ratio: auto;
}

.image-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.instagram-section {
  overflow: hidden;
  background: var(--brand-dark);
  color: var(--white);
}

.instagram-section .kicker,
.instagram-section .reel-count {
  color: var(--yellow);
}

.instagram-section .section-head h2::after {
  background: var(--yellow);
}

.instagram-section .section-head p {
  color: rgba(255, 255, 255, 0.76);
}

.reel-strip {
  width: 100%;
  overflow-x: auto;
  padding: 6px 0 20px;
  scroll-snap-type: x proximity;
  scrollbar-color: rgba(255, 255, 255, 0.45) transparent;
  scrollbar-width: thin;
}

.reel-row {
  display: flex;
  width: max-content;
  min-width: 100%;
  gap: 16px;
}

.reel-card {
  position: relative;
  flex: 0 0 clamp(168px, 15vw, 220px);
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 6px;
  background: #090909;
  cursor: pointer;
  scroll-snap-align: start;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.reel-card:hover,
.reel-card:focus-visible,
.reel-card.is-playing {
  border-color: var(--yellow);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.32);
  transform: translateY(-4px);
}

.reel-card:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 3px;
}

.reel-card video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.reel-card-overlay {
  position: absolute;
  inset: auto 0 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 8px;
  padding: 54px 12px 12px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.82));
  pointer-events: none;
}

.reel-card-overlay span {
  color: var(--yellow);
  font-size: 11px;
  font-weight: 900;
}

.reel-card-overlay strong {
  font-size: 13px;
}

.reel-play-state {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.35);
  color: var(--white);
  font-style: normal;
}

.reel-play-state::before {
  content: "▶";
  margin-left: 2px;
  font-size: 11px;
}

.reel-card.is-playing .reel-play-state::before {
  content: "Ⅱ";
  margin-left: 0;
}

.reel-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 18px;
}

.reel-footer > span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
}

.location-home-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: 64px;
}

.location-home-media {
  width: min(100%, 480px);
  margin: 0;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--white);
  border: 1px solid #a8c1aa;
  border-radius: 6px;
}

.location-home-media img {
  display: block;
  width: 100%;
  height: auto;
}

.location-home-copy h2 {
  margin-top: 9px;
}

.location-home-copy p {
  margin-top: 20px;
  color: var(--muted);
  font-size: 17px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 20px;
  color: var(--brand);
  font-size: 14px;
  font-weight: 900;
}

.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.page-hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 10, 10, 0.82), rgba(10, 10, 10, 0.07) 75%), linear-gradient(90deg, rgba(10, 10, 10, 0.45), transparent 65%);
}

.page-hero-media.storefront {
  object-position: center 53%;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 72px 0 54px;
}

.page-hero .crumb {
  margin-bottom: 18px;
  font-size: 12px;
  font-weight: 800;
}

.page-hero .crumb a {
  color: var(--yellow);
}

.page-hero .kicker {
  color: var(--yellow);
}

.page-hero h1 {
  max-width: 900px;
  margin-top: 10px;
}

.page-hero .lede {
  max-width: 760px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
}

.step-experience {
  overflow: clip;
  background: #b43316;
  color: var(--white);
}

.step-experience .step-section-head {
  align-items: start;
}

.step-experience .kicker {
  color: var(--yellow);
}

.step-experience .section-head h2::after {
  background: var(--yellow);
}

.step-experience .section-head p {
  color: rgba(255, 255, 255, 0.78);
}

.step-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(380px, 1.08fr);
  gap: 42px;
  align-items: start;
}

.step-tabs {
  border-top: 1px solid rgba(255, 255, 255, 0.42);
}

.step-tab {
  position: relative;
  width: 100%;
  min-height: 108px;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 24px;
  align-items: center;
  gap: 18px;
  padding: 20px 8px;
  color: var(--white);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 0;
  cursor: pointer;
  text-align: left;
  transition: background 180ms ease, padding 180ms ease;
}

.step-tab::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: transparent;
}

.step-tab:hover,
.step-tab:focus-visible,
.step-tab.is-active {
  padding-left: 18px;
  background: rgba(255, 255, 255, 0.1);
}

.step-tab:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 3px;
}

.step-tab.is-active::before {
  background: var(--yellow);
}

.step-tab .step-number {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background: transparent;
  color: var(--white);
  font-size: 21px;
  font-weight: 950;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.step-tab.is-active .step-number {
  background: var(--paper);
  color: var(--ink);
  transform: scale(1.06);
}

.step-tab-copy {
  min-width: 0;
}

.step-tab-copy strong,
.step-tab-copy small {
  display: block;
}

.step-tab-copy strong {
  font-size: 20px;
}

.step-tab-copy small {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  line-height: 1.45;
}

.step-arrow {
  color: var(--yellow);
  font-size: 22px;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.step-tab.is-active .step-arrow {
  opacity: 1;
  transform: translateX(0);
}

.step-stage {
  position: sticky;
  top: 126px;
  overflow: hidden;
  min-height: 590px;
  background: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
}

.step-stage-media {
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: var(--white);
}

.step-stage-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.step-stage.is-changing .step-stage-media img {
  animation: media-in 360ms ease both;
}

.step-stage-copy {
  padding: 30px 32px 34px;
}

.step-stage-copy > span {
  color: var(--yellow);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.step-stage-copy h3 {
  margin-top: 9px;
  font-size: 30px;
}

.step-stage-copy p {
  margin-top: 13px;
  color: rgba(255, 255, 255, 0.74);
}

.soup-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.soup-card {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.soup-card:hover {
  transform: translateY(-4px);
  border-color: var(--brand-soft);
  box-shadow: 0 15px 34px rgba(78, 31, 18, 0.12);
}

.soup-card.is-selected {
  border-color: var(--brand);
  box-shadow: 0 0 0 2px var(--brand);
}

.soup-card[hidden] {
  display: none;
}

.soup-card-action {
  position: absolute;
  z-index: 3;
  inset: 0;
  width: 100%;
  background: transparent;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
}

.soup-card-action:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: -5px;
}

.soup-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: var(--white);
  transition: transform 260ms ease;
}

.soup-card:hover img,
.soup-card.is-selected img {
  transform: scale(1.035);
}

.soup-card-content {
  padding: 20px;
}

.soup-card-description {
  display: none;
}

.soup-card p {
  margin-top: 8px;
  color: var(--muted);
}

.soup-explorer {
  background: var(--brand-wash);
}

.soup-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -5px 0 24px;
}

.soup-filter {
  min-height: 40px;
  padding: 0 15px;
  border: 1px solid var(--brand-soft);
  border-radius: 4px;
  background: var(--white);
  color: var(--brand-dark);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 850;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
}

.soup-filter:hover,
.soup-filter:focus-visible,
.soup-filter.is-active {
  color: var(--white);
  background: var(--brand);
  border-color: var(--brand);
}

.soup-filter:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 2px;
}

.soup-spotlight {
  position: fixed;
  z-index: 45;
  top: 96px;
  left: 50%;
  width: min(760px, calc(100vw - 48px));
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  margin: 0;
  overflow: hidden;
  background: var(--brand-dark);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 6px;
  box-shadow: 0 22px 64px rgba(0, 0, 0, 0.34);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -12px);
  visibility: hidden;
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.soup-spotlight.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
  visibility: visible;
}

.soup-spotlight-copy {
  padding: 26px 28px;
  align-self: center;
}

.soup-count {
  display: block;
  margin-bottom: 14px;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 900;
}

.soup-spotlight .kicker {
  color: var(--yellow);
}

.soup-spotlight h2 {
  margin-top: 8px;
  font-size: 30px;
}

.soup-spotlight-copy > p:not(.soup-flavour) {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.76);
}

.soup-flavour {
  margin-top: 14px;
  color: var(--white);
  font-weight: 800;
}

.soup-spotlight .tag {
  margin-top: 22px;
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--white);
}

.soup-spotlight .tag.vegan {
  background: var(--green-soft);
  border-color: var(--green-soft);
  color: #315e36;
}

.soup-spotlight-media {
  min-height: 220px;
  overflow: hidden;
  background: var(--white);
}

.soup-spotlight-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.soup-spotlight.is-changing .soup-spotlight-media img {
  animation: media-in 360ms ease both;
}

.soup-grid.is-filtering .soup-card:not([hidden]) {
  animation: card-in 280ms ease both;
}

@keyframes media-in {
  from { opacity: 0.45; transform: scale(1.025); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes card-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.tag {
  display: inline-flex;
  margin-top: 13px;
  padding: 5px 8px;
  border: 1px solid var(--line);
  border-radius: 3px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tag.vegan {
  background: var(--green-soft);
  border-color: #a8c1aa;
  color: #315e36;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border: 1px solid var(--line);
}

.pricing-table th,
.pricing-table td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.pricing-table th:last-child,
.pricing-table td:last-child {
  text-align: right;
}

.pricing-table th {
  background: var(--ink);
  color: var(--white);
  font-size: 13px;
}

.pricing-table tr:last-child td {
  border-bottom: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 170px;
  gap: 10px;
}

.gallery-grid figure {
  position: relative;
  grid-column: span 4;
  grid-row: span 2;
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
  background: #ddd;
}

.gallery-grid figure.wide {
  grid-column: span 8;
}

.gallery-grid figure.tall {
  grid-row: span 3;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.025);
}

.gallery-grid figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 32px 14px 12px;
  color: var(--white);
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.68));
  font-size: 12px;
  font-weight: 800;
}

.visit-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: start;
}

.visit-address h2 {
  margin-top: 10px;
}

.visit-address p {
  margin-top: 20px;
  color: var(--muted);
  font-size: 17px;
}

.contact-list {
  border-top: 1px solid var(--line);
}

.contact-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.contact-row span:last-child {
  color: var(--muted);
  text-align: right;
}

.faq {
  max-width: 920px;
}

.faq details {
  border-top: 1px solid var(--line);
}

.faq details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  cursor: pointer;
  list-style: none;
  font-size: 18px;
  font-weight: 850;
}

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

.faq summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--brand);
  font-size: 24px;
}

.faq details[open] summary::after {
  content: "−";
}

.faq details p {
  max-width: 800px;
  padding: 0 0 22px;
  color: var(--muted);
}

.callout {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
}

.callout h2 {
  margin-top: 8px;
}

.site-footer {
  padding: 52px 0;
  background: var(--ink);
  color: var(--white);
  border-top: 6px solid var(--brand);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.7fr;
  gap: 56px;
}

.footer-brand img {
  width: 118px;
  height: 76px;
  object-fit: cover;
  border-radius: 4px;
}

.footer-brand p {
  max-width: 460px;
  margin-top: 18px;
  color: #adada6;
  font-size: 14px;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-links strong {
  margin-bottom: 6px;
}

.footer-links a {
  color: #adada6;
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 38px;
  padding-top: 20px;
  border-top: 1px solid #333;
  color: #85857f;
  font-size: 12px;
}

.mobile-visit {
  display: none;
}

@media (max-width: 1020px) {
  h1 {
    font-size: 58px;
  }

  h2 {
    font-size: 38px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: fixed;
    z-index: 49;
    inset: 112px 0 auto;
    display: none;
    align-items: stretch;
    padding: 16px 20px 24px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
  }

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

  .nav-links a {
    padding: 12px 0;
  }

  .nav-links .nav-cta {
    margin-top: 6px;
    text-align: center;
  }

  .section-head,
  .media-split,
  .media-split.reverse,
  .price-layout,
  .visit-layout,
  .location-home-grid {
    grid-template-columns: 1fr;
  }

  .media-split,
  .media-split.reverse {
    gap: 36px;
  }

  .media-split.reverse .media-frame {
    order: 0;
  }

  .location-home-media {
    justify-self: center;
  }

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

  .step-layout {
    grid-template-columns: 1fr;
  }

  .step-stage {
    position: relative;
    top: auto;
    min-height: 0;
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
  }

  .step-stage-media {
    aspect-ratio: 4 / 3;
  }

  .step-stage-copy {
    align-self: center;
  }

  .stat-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat:nth-child(2) {
    border-right: 0;
  }

  .stat:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

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

  .image-strip figure:first-child {
    grid-column: 1 / -1;
    aspect-ratio: 16 / 9;
  }

  .gallery-grid figure,
  .gallery-grid figure.wide {
    grid-column: span 6;
  }
}

@media (max-width: 700px) {
  .wrap {
    width: min(var(--max), calc(100% - 24px));
  }

  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 20px;
  }

  .topbar .wrap {
    min-height: 38px;
    font-size: 11px;
  }

  .nav-row {
    min-height: 70px;
  }

  .brand img {
    width: 96px;
    height: 46px;
  }

  .nav-links {
    inset: 108px 0 auto;
  }

  .hero {
    height: calc(100svh - 145px);
    min-height: 570px;
    max-height: 690px;
  }

  .hero::after {
    background: linear-gradient(0deg, rgba(8, 8, 8, 0.88) 0%, rgba(8, 8, 8, 0.48) 72%, rgba(8, 8, 8, 0.16) 100%);
  }

  .hero-content {
    justify-content: flex-end;
    padding: 34px 0;
  }

  .hero h1 {
    max-width: 380px;
  }

  .hero .lede,
  .page-hero .lede {
    font-size: 16px;
  }

  .hero-facts {
    gap: 10px 16px;
    margin-top: 24px;
    font-size: 12px;
  }

  .section {
    padding: 66px 0;
  }

  .section.tight {
    padding: 50px 0;
  }

  .section-head {
    gap: 18px;
    margin-bottom: 28px;
  }

  .section-head p,
  .copy-block p,
  .visit-address p,
  .location-home-copy p {
    font-size: 16px;
  }

  .reel-strip {
    width: calc(100% + 12px);
    padding-bottom: 16px;
    scroll-snap-type: x mandatory;
  }

  .reel-row {
    gap: 12px;
    padding-right: 12px;
  }

  .reel-card {
    flex-basis: min(76vw, 280px);
  }

  .reel-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .location-home-grid {
    gap: 32px;
  }

  .location-home-media {
    width: min(88vw, 420px);
  }

  .cards-3,
  .cards-4,
  .soup-grid,
  .image-strip {
    grid-template-columns: 1fr;
  }

  .card {
    padding: 23px;
  }

  .card .number {
    margin-bottom: 20px;
  }

  .stat-row {
    grid-template-columns: 1fr 1fr;
  }

  .stat {
    padding: 18px 14px;
  }

  .price-big {
    font-size: 68px;
  }

  .image-strip figure,
  .image-strip figure:first-child {
    grid-column: auto;
    aspect-ratio: 4 / 3;
  }

  .page-hero {
    min-height: 430px;
  }

  .page-hero-content {
    padding: 54px 0 38px;
  }

  .step-layout {
    gap: 24px;
  }

  .step-tab {
    min-height: 96px;
    grid-template-columns: 46px minmax(0, 1fr) 18px;
    gap: 13px;
    padding: 17px 4px;
  }

  .step-tab:hover,
  .step-tab:focus-visible,
  .step-tab.is-active {
    padding-left: 12px;
  }

  .step-tab .step-number {
    width: 42px;
    height: 42px;
    font-size: 19px;
  }

  .step-tab-copy strong {
    font-size: 17px;
  }

  .step-stage {
    display: block;
  }

  .step-stage-media {
    aspect-ratio: 16 / 10;
  }

  .step-stage-copy {
    padding: 24px;
  }

  .step-stage-copy h3 {
    font-size: 25px;
  }

  .soup-filters {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .soup-filter {
    width: 100%;
  }

  .soup-spotlight {
    display: none;
  }

  .soup-card-description {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
    line-height: 1.6;
  }

  .soup-card.is-selected .soup-card-description {
    display: block;
    animation: card-in 220ms ease both;
  }

  .pricing-table th,
  .pricing-table td {
    padding: 15px 12px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 150px;
  }

  .gallery-grid figure,
  .gallery-grid figure.wide {
    grid-column: span 1;
    grid-row: span 2;
  }

  .gallery-grid figure.mobile-wide {
    grid-column: 1 / -1;
  }

  .contact-row {
    display: grid;
    gap: 5px;
  }

  .contact-row span:last-child {
    text-align: left;
  }

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 34px 22px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    display: grid;
  }

  .mobile-visit {
    position: fixed;
    z-index: 45;
    left: 12px;
    right: 12px;
    bottom: 12px;
    display: flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    background: var(--brand);
    color: var(--white);
    font-size: 14px;
    font-weight: 900;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
  }

  .site-footer {
    padding-bottom: 90px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .hero-video {
    display: none;
  }
}
