:root {
  --bg: #f7f3ee;
  --surface: #ffffff;
  --surface-strong: #fcf4ea;
  --surface-soft: #fef9f2;
  --surface-sage: #eff6ef;
  --surface-blush: #fbf0e6;
  --edamame: #e0efe0;
  --matcha: #dfeddf;
  --wasabi: #d9ead9;
  --cucumber: #ddeddf;
  --ginger: #f5e4cd;
  --salmon-soft: #f5d9d9;
  --soy: #e8e3d8;
  --avocado: #e5ebd0;
  --lemon: #f5ecca;
  --rice: #ebe6d8;
  --nori-soft: #dce5dd;
  --accent-blue-soft: #ebf3f9;
  --accent-blue-line: rgba(73, 131, 189, 0.16);
  --accent-green-soft: var(--edamame);
  --accent-green-line: rgba(74, 126, 93, 0.16);
  --accent-apricot-soft: var(--ginger);
  --accent-cream-soft: #fff8ef;
  --accent-sand-soft: #f8ede1;
  --panel: #ffffff;
  --panel-dark: #151515;
  --text: #1d1d1f;
  --text-dark: #1d1d1f;
  --text-light: #fbf8f2;
  --muted: rgba(29, 29, 31, 0.82);
  --muted-light: rgba(251, 248, 242, 0.78);
  --line: rgba(29, 29, 31, 0.07);
  --radius-lg: 36px;
  --radius-md: 24px;
  --radius-sm: 14px;
  --shadow: 0 12px 36px rgba(15, 23, 42, 0.06);
  --shadow-soft: 0 2px 10px rgba(15, 23, 42, 0.04);
  --container: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Avenir Next", "Helvetica Neue", "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
}

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

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: #fffdf8;
  color: var(--text-dark);
  border: 1px solid rgba(29, 29, 31, 0.12);
  box-shadow: var(--shadow-soft);
  transform: translateY(-140%);
}

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

:where(a, button, summary):focus-visible {
  outline: 3px solid #0f4c81;
  outline-offset: 4px;
}

.site-shell {
  overflow: clip;
}

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

.site-announcement {
  background: linear-gradient(135deg, var(--accent-blue-soft), var(--rice));
  border-bottom: 1px solid rgba(73, 131, 189, 0.1);
}

.site-announcement .container {
  min-height: 42px;
  display: flex;
  align-items: center;
}

.site-announcement p {
  margin: 0;
  font-size: 0.84rem;
  letter-spacing: 0.02em;
  color: rgba(29, 29, 31, 0.86);
}

.site-announcement a {
  font-weight: 700;
  color: #1d1d1f;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(17, 17, 17, 0.96);
  backdrop-filter: blur(18px);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  margin-left: auto;
  flex-direction: column;
  gap: 5px;
  z-index: 30;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.site-header.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 78px;
  flex-wrap: wrap;
}

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

.brand img {
  width: 42px;
  height: auto;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
}

.brand-copy strong,
.wordmark {
  font-family: "Avenir Next Condensed", "Avenir Next", "Helvetica Neue", sans-serif;
  font-size: 1.04rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
}

.brand-copy span {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
  flex: 1 1 auto;
}

.nav a {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.35;
}

.nav a.active,
.nav a:hover,
.nav a:focus-visible {
  color: #fff;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-left: auto;
}

.header-order-menu {
  position: relative;
}

.header-order-menu[open] {
  z-index: 30;
}

.header-order-menu summary {
  list-style: none;
  cursor: pointer;
}

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

.header-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

.header-action-primary {
  gap: 0.5rem;
  background: #fff;
  color: var(--text-dark);
}

.header-action-secondary {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.header-order-panel {
  position: absolute;
  top: calc(100% + 0.55rem);
  right: 0;
  display: grid;
  gap: 0.55rem;
  min-width: 220px;
  padding: 0.7rem;
  border-radius: 22px;
  background: rgba(255, 250, 245, 0.98);
  border: 1px solid rgba(29, 29, 31, 0.08);
  box-shadow: var(--shadow);
  z-index: 31;
}

.header-order-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.8rem 1rem;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(29, 29, 31, 0.08);
  color: var(--text-dark);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-align: center;
}

.header-order-link:hover,
.header-action:hover {
  transform: translateY(-1px);
}

.header-order-menu[open] .switch-caret {
  transform: rotate(45deg);
}

.button,
.button-secondary,
.button-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button {
  background: #151515;
  color: var(--text-light);
}

.button-secondary {
  background: rgba(255, 250, 245, 0.92);
  border-color: rgba(20, 20, 20, 0.08);
  color: var(--text-dark);
}

.button-ghost {
  background: rgba(255, 248, 242, 0.9);
  border-color: rgba(20, 20, 20, 0.08);
  color: var(--text-dark);
}

.button:hover,
.button-secondary:hover,
.button-ghost:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.hero {
  padding: 1.6rem 0 1.15rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 1.35rem;
  align-items: stretch;
}

.hero-copy,
.hero-stage {
  border-radius: calc(var(--radius-lg) + 4px);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 2.45rem;
  padding-top: 3.1rem;
  background: linear-gradient(135deg, var(--accent-cream-soft), var(--rice));
}

.hero-stage {
  overflow: hidden;
}

.eyebrow,
.tag,
.page-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.42rem 0.66rem;
  border-radius: 999px;
  background: rgba(29, 29, 31, 0.03);
  border: 1px solid rgba(29, 29, 31, 0.06);
  color: var(--text-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-copy .eyebrow,
.page-kicker,
.section-heading .tag {
  background: var(--accent-blue-soft);
  border-color: var(--accent-blue-line);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Avenir Next Condensed", "Avenir Next", "Helvetica Neue", sans-serif;
  font-weight: 800;
  letter-spacing: 0.01em;
}

h1 {
  margin-top: 1rem;
  max-width: 10ch;
  font-size: clamp(3rem, 7vw, 5.25rem);
  line-height: 1.04;
  text-transform: uppercase;
  text-wrap: balance;
  padding-top: 0.14em;
  padding-bottom: 0.04em;
}

.lede,
.page-intro,
.section-heading p,
.feature-copy p,
.split-panel-dark p,
.split-panel-light p,
.photo-card .copy p,
.service-band-card p,
.card p,
.page-card p,
.store-card p,
.story-card p,
.step-card p {
  color: var(--muted);
  line-height: 1.65;
}

.lede {
  margin: 1.15rem 0 0;
  max-width: 34rem;
  font-size: 1.04rem;
}

.lede-subtle {
  max-width: 33rem;
  font-size: 0.98rem;
  color: rgba(29, 29, 31, 0.76);
}

.service-switch,
.hero-actions,
.hero-service-actions,
.split-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-actions {
  position: relative;
  align-items: flex-start;
  z-index: 4;
}

.service-switch-order-hero {
  margin-top: 1.35rem;
  align-items: start;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-switch-order-hero .switch-fan {
  grid-column: auto;
  order: initial;
}

.service-switch-order-hero .switch-fan-menu {
  grid-template-columns: 1fr;
}

.service-switch-order-hero .switch-fan-link {
  min-height: 64px;
}

.service-switch {
  margin-top: 1.5rem;
  padding: 0.45rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-blue-soft), var(--rice));
  border: 1px solid rgba(20, 20, 20, 0.06);
}

.switch-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  color: var(--text-dark);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.switch-pill.active {
  background: #1d1d1f;
  color: var(--text-light);
}

.service-switch-order {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.65rem;
  padding: 0.7rem;
  border-radius: 32px;
}

.service-switch-top {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  align-items: start;
}

.switch-fan {
  display: block;
}

.switch-fan summary {
  list-style: none;
  cursor: pointer;
}

.service-switch-top > .switch-pill,
.switch-fan summary.switch-pill {
  width: 100%;
  min-height: 54px;
}

.switch-fan summary.switch-pill {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  padding-inline: 1.15rem;
}

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

.switch-caret {
  font-size: 1.05rem;
  line-height: 1;
}

.switch-fan[open] .switch-caret {
  transform: rotate(45deg);
}

.hero-service-menu[open] .switch-caret {
  transform: rotate(45deg);
}

.switch-fan-menu {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  padding-top: 0.8rem;
}

.switch-fan-link {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 72px;
  padding: 1rem 1.1rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(20, 20, 20, 0.08);
  color: var(--text-dark);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-decoration: none;
  text-align: left;
}

.switch-fan-link:hover {
  background: #ffffff;
}

.hero-service-card {
  margin-top: 1.5rem;
  padding: 1.35rem;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(245, 250, 255, 0.9), rgba(255, 248, 239, 0.94));
  border: 1px solid rgba(20, 20, 20, 0.08);
  box-shadow: var(--shadow-soft);
}

.hero-service-card h2 {
  margin-top: 0.55rem;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  line-height: 1.02;
  text-transform: uppercase;
}

.hero-service-card p {
  margin: 0.8rem 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.hero-service-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.42rem 0.66rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(29, 29, 31, 0.06);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-service-actions {
  margin-top: 1rem;
  flex-direction: column;
  align-items: stretch;
}

.hero-service-menu {
  position: relative;
  width: 100%;
}

.hero-service-menu summary {
  list-style: none;
  cursor: pointer;
  display: inline-flex;
  width: fit-content;
  gap: 0.55rem;
}

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

.hero-service-panel {
  position: static;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  width: 100%;
  margin-top: 0.75rem;
  padding: 0.8rem;
  border-radius: 24px;
  background: rgba(255, 250, 245, 0.98);
  border: 1px solid rgba(29, 29, 31, 0.08);
  box-shadow: var(--shadow);
}

.hero-service-link {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 82px;
  padding: 1rem 1.05rem;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(20, 20, 20, 0.08);
  overflow: hidden;
}

.hero-service-actions > .button-secondary {
  width: fit-content;
}

.switch-fan-meta {
  display: block;
  margin-bottom: 0.18rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(29, 29, 31, 0.72);
}

.switch-fan-title {
  display: block;
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: var(--text-dark);
}

.service-switch-order {
  position: relative;
}

.service-switch-order::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.36), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.service-switch-order > * {
  position: relative;
  z-index: 1;
}

.service-switch-order {
  position: relative;
}

.service-switch-order::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.36), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.service-switch-order > * {
  position: relative;
  z-index: 1;
}

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

.switch-fan {
  grid-column: 1 / -1;
}

.service-switch-order > .switch-pill {
  order: 2;
}

.switch-fan {
  order: 1;
}

.switch-fan-menu {
  grid-column: 1 / -1;
}

.hero-actions {
  margin-top: 1.35rem;
}

.hero-stage {
  position: relative;
  min-height: 560px;
  background: #e8e8ed;
  box-shadow: var(--shadow);
}

.hero-stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  filter: brightness(1.04) contrast(1.03) saturate(0.98);
}

.hero-note {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  width: min(320px, 68%);
  padding: 0.9rem 1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(20, 20, 20, 0.06);
  backdrop-filter: blur(18px);
}

.hero-note strong {
  display: block;
  margin-bottom: 0.25rem;
}

.hero-note p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.service-band {
  padding: 0.45rem 0 1.8rem;
}

.service-band-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1rem;
}

.service-band-card {
  min-height: 250px;
  padding: 1.8rem;
  border-radius: var(--radius-lg);
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
}

.service-band-card .tag,
.feature-copy .tag,
.split-panel-light .tag,
.photo-card .tag {
  background: var(--accent-green-soft);
  border-color: var(--accent-green-line);
}

.service-band-card h2,
.service-band-card h3 {
  margin-bottom: 0.7rem;
}

.service-band-primary {
  background: #1d1d1f;
  color: var(--text-light);
  box-shadow: none;
}

.service-band-primary p {
  color: var(--muted-light);
}

.service-band-primary .tag {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.text-link {
  display: inline-flex;
  margin-top: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.text-link::after {
  content: ">";
  margin-left: 0.45rem;
}

.surface {
  margin-top: 1rem;
  padding-top: 0.8rem;
  background: linear-gradient(180deg, rgba(255, 248, 242, 0.82), #ffffff 12%);
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
}

main section,
.page-hero {
  padding: 2.2rem 0;
}

.stage-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.2rem;
}

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

.stage-panel,
.wide-story {
  position: relative;
  display: grid;
  gap: 1.15rem;
  border-radius: calc(var(--radius-lg) + 6px);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.stage-panel {
  min-height: 720px;
  grid-template-rows: 1.2fr 0.8fr;
}

.stage-panel-dark {
  background: linear-gradient(160deg, #1b1b1d, #2a2b30);
  color: var(--text-light);
}

.stage-panel-fresh {
  background: linear-gradient(135deg, var(--edamame), var(--matcha) 56%, #f8fbf3);
  color: var(--text-dark);
  border: 1px solid rgba(112, 163, 101, 0.16);
}

.stage-panel-light {
  background: linear-gradient(135deg, var(--rice), var(--avocado));
  border: 1px solid rgba(255, 255, 255, 0.74);
}

.stage-media {
  min-height: 0;
}

.stage-media img,
.wide-story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.stage-panel .stage-media img {
  min-height: 420px;
}

.stage-copy,
.wide-story-copy {
  padding: 2.1rem;
}

.stage-copy h2,
.wide-story-copy h2 {
  font-size: clamp(2rem, 3.3vw, 3.4rem);
  line-height: 0.98;
  text-transform: uppercase;
  margin: 0.9rem 0 0.9rem;
}

.stage-copy p,
.wide-story-copy p {
  max-width: 34rem;
}

.stage-panel-dark .tag {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.stage-panel-dark p,
.stage-panel-dark li {
  color: var(--muted-light);
}

.stage-panel-fresh .tag {
  background: rgba(123, 174, 103, 0.14);
  border-color: rgba(112, 163, 101, 0.18);
  color: #234028;
}

.stage-panel-fresh p,
.stage-panel-fresh li {
  color: rgba(29, 29, 31, 0.74);
}

.stage-panel-fresh .button {
  background: #24472a;
  color: #fffdf8;
}

.stage-panel-fresh .button-secondary {
  background: rgba(255, 252, 246, 0.92);
  border-color: rgba(36, 71, 42, 0.12);
}

.stage-panel-fresh .button-ghost {
  background: rgba(255, 252, 246, 0.74);
  border-color: rgba(36, 71, 42, 0.12);
}

.stage-panel-fresh::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(180, 221, 161, 0.34), transparent 42%);
  pointer-events: none;
}

.wide-story {
  grid-template-columns: 0.92fr 1.08fr;
  align-items: stretch;
  background: linear-gradient(135deg, var(--soy), var(--wasabi));
  border: 1px solid rgba(255, 255, 255, 0.72);
}

.wide-story-order {
  overflow: visible;
}

.wide-story-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.wide-story-order .wide-story-copy {
  position: relative;
  z-index: 3;
}

.wide-story-media {
  min-height: 520px;
}

.wide-story-order .wide-story-media {
  overflow: hidden;
  border-radius: 0 calc(var(--radius-lg) + 6px) calc(var(--radius-lg) + 6px) 0;
}

.compact-intro {
  padding-top: 0.3rem;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}

.section-heading h2,
.page-hero h1 {
  font-size: clamp(2.15rem, 4vw, 3.9rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.editorial-grid,
.photo-grid,
.cards-3,
.cards-2,
.store-grid,
.steps-grid,
.footer-grid,
.split {
  display: grid;
  gap: 1.15rem;
}

.editorial-grid {
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  align-items: start;
}

.editorial-large,
.editorial-small,
.photo-card,
.card,
.page-card,
.store-card,
.story-card,
.step-card,
.split-panel-light {
  background: linear-gradient(180deg, rgba(255, 249, 242, 0.98), rgba(255, 255, 255, 0.97));
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.card:nth-child(4n + 1),
.page-card:nth-child(4n + 1),
.store-card:nth-child(4n + 1),
.step-card:nth-child(4n + 1),
.photo-card:nth-child(4n + 1),
.editorial-small:nth-child(4n + 1) {
  background: linear-gradient(180deg, var(--edamame), rgba(255, 255, 255, 0.96));
}

.card:nth-child(4n + 2),
.page-card:nth-child(4n + 2),
.store-card:nth-child(4n + 2),
.step-card:nth-child(4n + 2),
.photo-card:nth-child(4n + 2),
.editorial-small:nth-child(4n + 2) {
  background: linear-gradient(180deg, var(--accent-blue-soft), rgba(255, 255, 255, 0.96));
}

.card:nth-child(4n + 3),
.page-card:nth-child(4n + 3),
.store-card:nth-child(4n + 3),
.step-card:nth-child(4n + 3),
.photo-card:nth-child(4n + 3),
.editorial-small:nth-child(4n + 3) {
  background: linear-gradient(180deg, var(--ginger), rgba(255, 255, 255, 0.96));
}

.card:nth-child(4n + 4),
.page-card:nth-child(4n + 4),
.store-card:nth-child(4n + 4),
.step-card:nth-child(4n + 4),
.photo-card:nth-child(4n + 4),
.editorial-small:nth-child(4n + 4) {
  background: linear-gradient(180deg, var(--nori-soft), rgba(255, 255, 255, 0.97));
}

.editorial-large img,
.editorial-small img,
.photo-card img,
.feature-image img {
  width: 100%;
  object-fit: cover;
}

.editorial-large img,
.editorial-small img,
.photo-card img,
.feature-image img,
.hero-stage img {
  transform: scale(1.01);
}

.editorial-large img {
  height: 540px;
}

.editorial-small img {
  height: 260px;
}

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

.photo-card img {
  height: 340px;
}

.editorial-copy,
.editorial-meta,
.photo-card .copy,
.card,
.page-card,
.store-card,
.story-card,
.step-card,
.split-panel-dark,
.split-panel-light {
  padding: 1.7rem;
}

.editorial-copy p,
.editorial-meta p {
  margin: 0;
}

.editorial-meta h3 {
  margin-bottom: 0.4rem;
}

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

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

.card h3,
.page-card h3,
.store-card h3,
.story-card h3,
.step-card h3,
.editorial-copy h3,
.editorial-meta h3 {
  font-size: 1.28rem;
  margin-bottom: 0.55rem;
  text-transform: uppercase;
}

.feature-banner {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 1.15rem;
  align-items: stretch;
  padding: 1.25rem;
  border-radius: calc(var(--radius-lg) + 4px);
  background: linear-gradient(135deg, #ffffff, var(--accent-blue-soft));
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.feature-copy {
  padding: 0.4rem 0.3rem 0.4rem 0.4rem;
}

.feature-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.feature-image img {
  height: 100%;
  min-height: 420px;
}

.bullet-list,
.store-card ul,
.page-card ul,
.footer-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.bullet-list li,
.store-card li,
.page-card li,
.footer-list li {
  padding-top: 0.75rem;
  border-top: 1px solid rgba(20, 20, 20, 0.08);
}

.bullet-list li:first-child,
.store-card li:first-child,
.page-card li:first-child,
.footer-list li:first-child {
  border-top: 0;
  padding-top: 0;
}

.process-shell {
  padding: 1.15rem;
  border-radius: calc(var(--radius-lg) + 4px);
  background: linear-gradient(135deg, var(--surface-strong), var(--accent-blue-soft));
  box-shadow: var(--shadow-soft);
}

.step-card strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin-bottom: 0.85rem;
  border-radius: 999px;
  background: rgba(29, 29, 31, 0.06);
  color: var(--text-dark);
}

.split-panel-dark {
  background: linear-gradient(135deg, var(--accent-apricot-soft), #fff8ef 52%, var(--accent-cream-soft));
  color: var(--text-dark);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 1.9rem;
}

.split-panel-dark .tag {
  background: rgba(207, 146, 88, 0.14);
  border-color: rgba(207, 146, 88, 0.18);
  color: #6f4620;
}

.split-panel-dark p,
.split-panel-dark li {
  color: rgba(29, 29, 31, 0.74);
}

.split-panel-light {
  background: linear-gradient(135deg, var(--accent-blue-soft), var(--cucumber));
  padding: 1.9rem;
}

.cta-strip {
  background: linear-gradient(135deg, var(--lemon), var(--ginger));
  border-radius: calc(var(--radius-lg) + 4px);
  box-shadow: var(--shadow);
  padding: 1.95rem;
}

.stage-grid-bottom > .split-panel-dark {
  background: linear-gradient(135deg, var(--accent-apricot-soft), #fff8ef 52%, var(--accent-cream-soft));
}

.stage-grid-bottom > .split-panel-light {
  background: linear-gradient(135deg, var(--accent-blue-soft), var(--accent-apricot-soft));
}

.footer-airport {
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
}

.footer-badge-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.footer-link-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 156px;
  padding: 1.15rem;
  border-radius: 24px;
  border: 1px solid rgba(29, 29, 31, 0.07);
  box-shadow: var(--shadow-soft);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.footer-link-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.footer-link-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.footer-link-code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  height: 38px;
  padding: 0 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(29, 29, 31, 0.08);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-link-arrow {
  font-size: 1rem;
  font-weight: 700;
  color: rgba(29, 29, 31, 0.76);
}

.footer-link-title,
.footer-link-text {
  display: flex;
  line-height: 1.35;
}

.footer-link-title {
  margin-top: 1.3rem;
  font-size: 1.02rem;
  font-weight: 800;
  color: #1d1d1f;
}

.footer-link-text {
  margin-top: 0.45rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-link-airport {
  background: linear-gradient(135deg, var(--accent-blue-soft), #f8fbfe);
}

.footer-link-supply {
  background: linear-gradient(135deg, var(--ginger), #fff8f1);
}

.footer-link-catering {
  background: linear-gradient(135deg, var(--salmon-soft), #fff6f2);
}

.service-band-card,
.editorial-large,
.editorial-small,
.photo-card,
.card,
.page-card,
.store-card,
.story-card,
.step-card,
.feature-banner,
.split-panel-dark,
.split-panel-light,
.cta-strip {
  position: relative;
}

.service-band-card::before,
.editorial-large::before,
.editorial-small::before,
.photo-card::before,
.card::before,
.page-card::before,
.store-card::before,
.story-card::before,
.step-card::before,
.feature-banner::before,
.split-panel-light::before,
.cta-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.44), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.page-hero {
  padding-top: 3rem;
  padding-bottom: 1rem;
}

.page-kicker {
  margin-bottom: 0.8rem;
}

.site-footer {
  padding: 3.25rem 0 4.15rem;
  background: #f5f5f7;
  color: var(--text-dark);
}

.menu-arrival-grid,
.menu-showcase-grid,
.menu-category-grid {
  display: grid;
  gap: 1rem;
}

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

.menu-showcase-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.menu-showcase-grid-appetizers {
  --menu-card-bg: linear-gradient(145deg, rgba(252, 246, 235, 0.96), rgba(236, 246, 239, 0.88));
  --menu-card-border: rgba(116, 140, 118, 0.16);
  --menu-card-image-bg: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(248, 251, 247, 0.92));
  --menu-card-tag-bg: rgba(255, 251, 245, 0.9);
}

.menu-showcase-grid-bowls {
  --menu-card-bg: linear-gradient(145deg, rgba(240, 249, 242, 0.96), rgba(231, 245, 237, 0.88));
  --menu-card-border: rgba(101, 146, 110, 0.18);
  --menu-card-image-bg: linear-gradient(180deg, rgba(251, 255, 251, 0.97), rgba(240, 249, 242, 0.92));
  --menu-card-tag-bg: rgba(247, 255, 247, 0.9);
}

.menu-showcase-grid-soups {
  --menu-card-bg: linear-gradient(145deg, rgba(251, 244, 230, 0.96), rgba(245, 235, 216, 0.88));
  --menu-card-border: rgba(171, 135, 92, 0.18);
  --menu-card-image-bg: linear-gradient(180deg, rgba(255, 253, 248, 0.97), rgba(249, 242, 230, 0.92));
  --menu-card-tag-bg: rgba(255, 249, 239, 0.9);
}

.menu-showcase-grid-bento {
  --menu-card-bg: linear-gradient(145deg, rgba(244, 243, 239, 0.96), rgba(236, 238, 233, 0.88));
  --menu-card-border: rgba(127, 131, 120, 0.18);
  --menu-card-image-bg: linear-gradient(180deg, rgba(255, 255, 253, 0.97), rgba(244, 245, 241, 0.92));
  --menu-card-tag-bg: rgba(250, 250, 247, 0.9);
}

.menu-showcase-grid-tempura {
  --menu-card-bg: linear-gradient(145deg, rgba(253, 245, 223, 0.96), rgba(248, 235, 204, 0.88));
  --menu-card-border: rgba(182, 143, 63, 0.18);
  --menu-card-image-bg: linear-gradient(180deg, rgba(255, 252, 244, 0.97), rgba(250, 243, 222, 0.92));
  --menu-card-tag-bg: rgba(255, 248, 230, 0.9);
}

.menu-showcase-grid-sushi {
  --menu-card-bg: linear-gradient(145deg, rgba(244, 247, 246, 0.96), rgba(235, 241, 240, 0.88));
  --menu-card-border: rgba(108, 127, 126, 0.18);
  --menu-card-image-bg: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(243, 247, 246, 0.92));
  --menu-card-tag-bg: rgba(249, 251, 251, 0.9);
}

.menu-showcase-grid-desserts {
  --menu-card-bg: linear-gradient(145deg, rgba(250, 244, 240, 0.96), rgba(246, 239, 232, 0.88));
  --menu-card-border: rgba(170, 130, 112, 0.16);
  --menu-card-image-bg: linear-gradient(180deg, rgba(255, 254, 252, 0.97), rgba(250, 245, 240, 0.92));
  --menu-card-tag-bg: rgba(255, 250, 247, 0.9);
}

.menu-showcase-grid-wraps {
  --menu-card-bg: linear-gradient(145deg, rgba(242, 247, 236, 0.96), rgba(233, 242, 228, 0.88));
  --menu-card-border: rgba(118, 144, 96, 0.18);
  --menu-card-image-bg: linear-gradient(180deg, rgba(252, 255, 250, 0.97), rgba(240, 247, 236, 0.92));
  --menu-card-tag-bg: rgba(248, 252, 245, 0.9);
}

.menu-category-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 1rem;
}

.menu-feature-card,
.menu-category-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.menu-feature-card {
  background: var(--menu-card-bg, linear-gradient(145deg, rgba(255, 248, 242, 0.95), rgba(235, 245, 239, 0.8)));
  border: 1px solid var(--menu-card-border, rgba(20, 20, 20, 0.06));
}

.menu-feature-card img {
  display: block;
  width: 100%;
  height: 260px;
  object-fit: contain;
  padding: 1.4rem;
  background: var(--menu-card-image-bg, rgba(255, 255, 255, 0.55));
}

.menu-feature-card-edamame img {
  padding: 1.1rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.9));
}

.menu-feature-card-chuka img {
  padding: 1rem;
  background: linear-gradient(180deg, rgba(255, 250, 244, 0.98), rgba(255, 255, 255, 0.9));
}

.menu-feature-card-tatar img {
  padding: 0.9rem 1rem 0.8rem;
  background: linear-gradient(180deg, rgba(255, 252, 248, 0.98), rgba(255, 255, 255, 0.9));
}

.menu-feature-card .copy,
.menu-category-card {
  padding: 1.35rem;
}

.menu-feature-card .tag {
  background: var(--menu-card-tag-bg, rgba(255, 255, 255, 0.84));
  border-color: rgba(20, 20, 20, 0.08);
}

.menu-catalog {
  padding-bottom: 1.25rem;
}

.menu-category-heading {
  display: grid;
  gap: 0.72rem;
  margin-top: 3rem;
  margin-bottom: 1.2rem;
}

.menu-category-heading .tag {
  width: max-content;
}

.menu-category-heading h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.75rem);
  line-height: 1.02;
  text-transform: uppercase;
}

.menu-category-heading p {
  max-width: 56rem;
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.menu-showcase-grid-bento .menu-feature-card img,
.menu-showcase-grid-wraps .menu-feature-card img {
  height: 220px;
}

.menu-showcase-grid-soups .menu-feature-card img {
  height: 240px;
}

.menu-showcase-grid-sushi .menu-feature-card img {
  height: 240px;
}

.menu-showcase-grid-sushi .menu-feature-card .copy h3 {
  font-size: 1.28rem;
}

.section-heading-compact {
  margin-top: 1.25rem;
}

.menu-section-intro {
  display: block;
  margin-bottom: 1.25rem;
}

.menu-section-copy h2 {
  font-size: clamp(2rem, 3.6vw, 3.3rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.menu-section-copy p {
  max-width: 58rem;
  margin: 0.95rem 0 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 1.02rem;
}

.menu-category-note {
  margin-top: 1rem;
  padding: 1.2rem 1.35rem;
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(255, 248, 239, 0.95), rgba(241, 247, 241, 0.92));
  border: 1px solid rgba(20, 20, 20, 0.06);
}

.menu-category-note p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.menu-category-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(20, 20, 20, 0.06);
}

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

.menu-item-list li {
  display: grid;
  gap: 0.2rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(20, 20, 20, 0.08);
}

.menu-item-list li:first-child {
  padding-top: 0;
  border-top: 0;
}

.menu-item-list strong {
  font-size: 1rem;
}

.menu-item-list span {
  color: var(--muted);
  line-height: 1.55;
}

.wide-story-menu .wide-story-media img,
.wide-story-order .wide-story-media img,
.wide-story-stores .wide-story-media img,
.wide-story-about .wide-story-media img {
  object-fit: cover;
  padding: 0;
  background: none;
}

.wide-story-menu .wide-story-media img {
  object-position: 76% center;
}

.wide-story-order .wide-story-media img {
  object-position: 72% center;
}

.wide-story-stores .wide-story-media img {
  object-position: 74% center;
}

.wide-story-about .wide-story-media img {
  object-position: 70% center;
}

.wide-story-pickup .wide-story-media img,
.wide-story-delivery .wide-story-media img,
.wide-story-faq .wide-story-media img {
  object-fit: cover;
  padding: 0;
  background: none;
}

.wide-story-pickup .wide-story-media img {
  object-position: 72% center;
}

.wide-story-delivery .wide-story-media img {
  object-position: center;
}

.wide-story-faq .wide-story-media img {
  object-position: center;
}

.wide-story-contact .wide-story-media img {
  object-fit: cover;
  object-position: center;
  padding: 0;
  background: none;
}

.wide-story-catering .wide-story-media img {
  object-fit: contain;
  object-position: center;
  padding: 2.4rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0));
}

.photo-card-menu-sushi img {
  object-fit: contain;
  object-position: center;
  padding: 1.75rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0));
}

.photo-card-menu-bowl img,
.photo-card-catering-bowl img {
  object-fit: contain;
  object-position: center;
  padding: 1.4rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0));
}

.photo-card-catering-tataki img {
  object-position: center 58%;
}

.photo-card-stores-hbf img {
  object-position: center 44%;
}

.photo-card-stores-city img {
  object-position: center 52%;
}

.footer-grid {
  grid-template-columns: 1.3fr 1fr 1fr;
  align-items: start;
  column-gap: 1.5rem;
  row-gap: 1.25rem;
}

.footer-grid > :nth-child(2) {
  grid-column: 1;
  grid-row: 2;
}

.footer-grid > :nth-child(3) {
  grid-column: 2;
  grid-row: 2;
}

.footer-grid > :nth-child(4) {
  grid-column: 3;
  grid-row: 2;
}

.footer-grid > :nth-child(5) {
  grid-column: 1;
  grid-row: 3;
}

.footer-airport {
  grid-column: 2 / 4;
  grid-row: 3;
}

.footer-order {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1.2rem;
  border-radius: 30px;
  background: linear-gradient(135deg, var(--accent-cream-soft), var(--rice));
  border: 1px solid rgba(29, 29, 31, 0.07);
  box-shadow: var(--shadow-soft);
}

.footer-order strong {
  display: block;
  margin-bottom: 0.35rem;
}

.footer-order-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0.75rem;
  align-items: start;
}

.footer-order .header-order-menu {
  width: 100%;
}

.footer-order .header-order-panel {
  right: auto;
  left: 0;
}

.footer-order .header-action,
.footer-order .header-order-link {
  width: 100%;
}

.footer-delivery-link {
  background: #151515;
  border-color: #151515;
  color: var(--text-light);
}

.footer-grid p {
  margin: 0.8rem 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.site-footer .brand-copy strong,
.site-footer .brand-copy .wordmark {
  color: var(--text-dark);
}

.site-footer .brand-copy > span:last-child {
  color: rgba(29, 29, 31, 0.78);
}

.site-footer .brand-copy {
  gap: 0.28rem;
}

.site-footer .brand-copy .wordmark {
  letter-spacing: 0.1em;
}

.catering-box-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.catering-box-card {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  border-radius: 30px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(247, 243, 238, 0.96));
  border: 1px solid rgba(29, 29, 31, 0.06);
  box-shadow: var(--shadow-soft);
}

.catering-box-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  object-position: center;
  padding: 1.4rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0));
}

.catering-box-card .copy {
  padding: 0 1.25rem 1.35rem;
}

.catering-box-card h3 {
  margin-top: 0.3rem;
  font-size: 1.6rem;
}

.catering-box-card p {
  margin-top: 0.6rem;
}

@media (max-width: 980px) {
  .hero-grid,
  .stage-grid,
  .wide-story,
  .service-band-grid,
  .editorial-grid,
  .photo-grid,
  .catering-box-grid,
  .feature-banner,
  .cards-3,
  .cards-2,
  .store-grid,
  .steps-grid,
  .footer-grid,
  .split {
    grid-template-columns: 1fr;
  }

  .footer-order {
    grid-template-columns: 1fr;
  }

  .footer-order-actions {
    grid-template-columns: 1fr;
  }

  .footer-grid > :nth-child(1),
  .footer-grid > :nth-child(2),
  .footer-grid > :nth-child(3),
  .footer-grid > :nth-child(4),
  .footer-grid > :nth-child(5),
  .footer-grid > :nth-child(6),
  .footer-airport {
    grid-column: auto;
    grid-row: auto;
  }

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

  .hero-stage {
    min-height: 420px;
  }

  .menu-section-intro {
    grid-template-columns: 1fr;
  }

  .menu-section-labels {
    flex-direction: row;
    flex-wrap: wrap;
    padding-top: 0;
  }

  .editorial-large img,
  .feature-image img,
  .wide-story-media img {
    min-height: 320px;
  }

  .wide-story-menu .wide-story-media img,
  .wide-story-order .wide-story-media img,
  .wide-story-catering .wide-story-media img,
  .photo-card-menu-sushi img,
  .photo-card-menu-bowl img,
  .photo-card-catering-bowl img {
    padding: 1.25rem;
  }

  .wide-story-menu .wide-story-media img,
  .wide-story-order .wide-story-media img,
  .wide-story-stores .wide-story-media img,
  .wide-story-about .wide-story-media img,
  .wide-story-pickup .wide-story-media img,
  .wide-story-delivery .wide-story-media img,
  .wide-story-faq .wide-story-media img,
  .wide-story-contact .wide-story-media img {
    padding: 0;
  }

  .stage-panel {
    min-height: auto;
  }

  .hero-service-panel {
    position: static;
    grid-template-columns: 1fr;
    width: 100%;
    margin-top: 0.75rem;
  }
}

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

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

@media (max-width: 760px) {
  .site-announcement .container {
    align-items: flex-start;
    padding-top: 0.65rem;
    padding-bottom: 0.65rem;
  }

  .footer-badge-grid {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .nav-toggle {
    display: flex;
  }

  .site-header {
    position: sticky;
  }

  .site-header .container {
    flex-wrap: wrap;
  }

  .nav,
  .header-actions {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .site-header.nav-open .nav,
  .site-header.nav-open .header-actions {
    display: flex;
  }

  .nav {
    gap: 0;
    padding: 0.5rem 0 0.75rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 0.5rem;
  }

  .nav a {
    width: 100%;
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 1rem;
  }

  .header-actions {
    gap: 0.7rem;
    padding-bottom: 1rem;
    margin-left: 0;
  }

  .header-order-menu,
  .header-action-secondary {
    width: 100%;
  }

  .header-order-panel {
    position: static;
    min-width: 0;
    margin-top: 0.55rem;
    width: 100%;
  }

  .header-action,
  .hero-actions .button,
  .hero-actions .button-secondary,
  .hero-service-actions .button,
  .hero-service-actions .button-secondary,
  .split-actions .button,
  .split-actions .button-secondary {
    width: 100%;
  }

  .hero-grid {
    gap: 1rem;
  }

  h1 {
    max-width: none;
    font-size: clamp(2.65rem, 13vw, 4rem);
  }

  .lede,
  .page-intro,
  .section-heading p {
    font-size: 1rem;
    line-height: 1.62;
  }

  .service-switch {
    width: 100%;
    border-radius: 22px;
  }

  .service-switch-top {
    grid-template-columns: 1fr;
  }

  .switch-pill {
    flex: 1 1 100%;
  }

  .service-switch-order {
    grid-template-columns: 1fr;
  }

  .service-switch-order-hero {
    grid-template-columns: 1fr;
  }

  .service-switch-order > .switch-pill {
    order: 3;
  }

  .switch-fan-menu {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: 300px;
  }

  .hero-note {
    width: calc(100% - 1rem);
    left: 0.5rem;
    bottom: 0.5rem;
  }

  .editorial-large img,
  .editorial-small img,
  .photo-card img,
  .feature-image img {
    height: 260px;
    min-height: 260px;
  }

  main section,
  .page-hero {
    padding-bottom: 1.3rem;
  }

  .footer-grid {
    gap: 2rem;
  }

  .footer-badge-grid {
    grid-template-columns: 1fr;
  }

  .footer-link-card {
    min-width: 0;
  }

  .footer-link-title,
  .footer-link-text {
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .site-footer .container {
    overflow: hidden;
  }
}
