:root {
  --espresso: #231815;
  --espresso-2: #342722;
  --cream: #f5f0e8;
  --paper: #fffaf2;
  --butter: #c9a86a;
  --matcha: #76845c;
  --sage: #e3e8d9;
  --berry: #8a3d42;
  --blush: #ead1d2;
  --ink-soft: rgba(35, 24, 21, 0.68);
  --line: rgba(35, 24, 21, 0.16);
  --white: #fffdf8;
  --content: min(1180px, calc(100% - 48px));
  --ease-out: cubic-bezier(0.2, 0.7, 0.2, 1);
  --ease-soft: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-soft: 0 18px 46px rgba(35, 24, 21, 0.1);
  --shadow-lift: 0 22px 58px rgba(35, 24, 21, 0.15);
  --hero-image: url("assets/images/hero-brand-visual-v2.webp");
  --hero-y: 0px;
  --scroll-progress: 0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(180deg, var(--cream) 0%, var(--paper) 42%, var(--cream) 78%, var(--espresso) 100%);
  color: var(--espresso);
  font-family: Inter, "Noto Sans SC", "Microsoft YaHei", Arial, sans-serif;
  line-height: 1.7;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(35, 24, 21, 0.028) 1px, transparent 1px),
    linear-gradient(180deg, rgba(35, 24, 21, 0.024) 1px, transparent 1px);
  background-size: 112px 112px;
  opacity: 0.5;
  mask-image: linear-gradient(180deg, transparent 0%, #000 22%, #000 78%, transparent 100%);
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

button {
  font: inherit;
}

.scroll-progress {
  position: fixed;
  z-index: 90;
  top: 0;
  left: 0;
  width: calc(var(--scroll-progress) * 100%);
  height: 3px;
  background: linear-gradient(90deg, var(--butter), var(--matcha));
  transform-origin: left center;
  transition: width 90ms linear;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 18px;
  left: 50%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  width: var(--content);
  min-height: 70px;
  padding: 10px 14px;
  border: 1px solid rgba(245, 240, 232, 0.22);
  border-radius: 8px;
  background: rgba(35, 24, 21, 0.86);
  color: var(--cream);
  transform: translateX(-50%);
  backdrop-filter: blur(18px);
  transition: background 260ms ease, box-shadow 260ms ease, top 260ms ease, min-height 260ms ease, padding 260ms ease;
}

.site-header.is-scrolled {
  top: 10px;
  min-height: 58px;
  padding-top: 7px;
  padding-bottom: 7px;
  background: rgba(35, 24, 21, 0.96);
  box-shadow: 0 16px 44px rgba(20, 13, 12, 0.22);
}

.brand-link {
  display: flex;
  align-items: center;
  min-width: 278px;
  line-height: 1;
}

.brand-logo {
  object-fit: contain;
}

.brand-logo-lockup {
  width: 276px;
  height: auto;
  aspect-ratio: 760 / 150;
}

.brand-logo-mark {
  display: none;
  width: 34px;
  height: 34px;
  object-fit: contain;
  filter: invert(1) sepia(0.1) saturate(0.4) brightness(2.6);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  color: rgba(245, 240, 232, 0.78);
  font-size: 14px;
  white-space: nowrap;
}

.nav-links a {
  position: relative;
  transition: color 160ms ease;
}

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

.nav-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--butter);
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.nav-links a:hover::after,
.nav-links a.is-active::after {
  transform: scaleX(1);
}

.nav-links a.is-active {
  color: var(--white);
}

.icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.header-cta,
.button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px 0 10px;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
  white-space: nowrap;
  transition: transform 180ms var(--ease-out), background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button::after,
.header-cta::after {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: 7px;
  background: linear-gradient(110deg, transparent 12%, rgba(255, 253, 248, 0.26) 44%, transparent 68%);
  opacity: 0;
  transform: translateX(-42%);
  transition: opacity 180ms ease, transform 520ms var(--ease-soft);
}

.header-cta {
  min-height: 44px;
  padding: 0 16px 0 7px;
  background: var(--cream);
  color: var(--espresso);
  font-size: 14px;
  box-shadow: 0 14px 34px rgba(10, 7, 6, 0.12);
}

.button .icon,
.header-cta .icon {
  width: 34px;
  height: 34px;
  padding: 8px;
  border-radius: 999px;
  transition: transform 180ms var(--ease-out), background 180ms ease, color 180ms ease;
}

.header-cta .icon {
  width: 30px;
  height: 30px;
  padding: 7px;
  background: var(--espresso);
  color: var(--cream);
}

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

.button:hover::after,
.header-cta:hover::after {
  opacity: 1;
  transform: translateX(42%);
}

.button:hover .icon,
.header-cta:hover .icon {
  transform: translateX(1px) scale(1.04);
}

.button:active,
.header-cta:active {
  transform: translateY(0);
}

.button-primary {
  background: linear-gradient(180deg, #d8bc7d 0%, var(--butter) 100%);
  color: var(--espresso);
  box-shadow: 0 16px 36px rgba(201, 168, 106, 0.28), inset 0 1px 0 rgba(255, 253, 248, 0.32);
}

.button-primary .icon {
  background: rgba(35, 24, 21, 0.13);
  color: var(--espresso);
}

.button-secondary {
  border-color: rgba(245, 240, 232, 0.42);
  background: rgba(245, 240, 232, 0.09);
  color: var(--cream);
  box-shadow: inset 0 1px 0 rgba(255, 253, 248, 0.12);
  backdrop-filter: blur(14px);
}

.button-secondary .icon {
  background: rgba(245, 240, 232, 0.12);
  color: var(--cream);
}

.button-secondary.dark {
  border-color: var(--line);
  background: rgba(255, 250, 242, 0.48);
  color: var(--espresso);
}

.button-secondary.dark .icon {
  background: rgba(122, 139, 91, 0.14);
  color: var(--matcha);
}

section {
  scroll-margin-top: 104px;
}

main > section {
  position: relative;
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 92vh;
  padding: 150px max(24px, calc((100% - 1180px) / 2)) 0;
  overflow: hidden;
  color: var(--cream);
  background: var(--espresso);
}

.hero::before {
  content: "";
  position: absolute;
  inset: -3% 0;
  background: var(--hero-image) center / cover no-repeat;
  transform: scale(1.04) translate3d(0, var(--hero-y), 0);
  animation: heroDrift 12s ease-out forwards;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 74% 32%, rgba(201, 168, 106, 0.18), transparent 28%),
    linear-gradient(90deg, rgba(16, 11, 10, 0.9) 0%, rgba(16, 11, 10, 0.66) 36%, rgba(16, 11, 10, 0.28) 72%, rgba(16, 11, 10, 0.1) 100%),
    linear-gradient(0deg, rgba(16, 11, 10, 0.7) 0%, rgba(16, 11, 10, 0.08) 58%);
}

@keyframes heroDrift {
  from {
    transform: scale(1.08) translate3d(0, calc(10px + var(--hero-y)), 0);
  }
  to {
    transform: scale(1.035) translate3d(0, var(--hero-y), 0);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
  padding-bottom: 156px;
}

.hero-content > * {
  opacity: 0;
  animation: heroCopyIn 780ms var(--ease-out) both;
}

.hero-content > :nth-child(1) {
  animation-delay: 120ms;
}

.hero-content > :nth-child(2) {
  animation-delay: 220ms;
}

.hero-content > :nth-child(3) {
  animation-delay: 320ms;
}

.hero-content > :nth-child(4) {
  animation-delay: 410ms;
}

.hero-content > :nth-child(5) {
  animation-delay: 520ms;
}

@keyframes heroCopyIn {
  from {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--matcha);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero .eyebrow,
.support-section .eyebrow,
.contact-section .eyebrow {
  color: var(--butter);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 14px;
  font-size: 78px;
  font-weight: 900;
  line-height: 1;
}

h2 {
  margin-bottom: 18px;
  font-size: 42px;
  font-weight: 900;
  line-height: 1.18;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.35;
}

.hero-subtitle {
  margin-bottom: 18px;
  color: var(--white);
  font-size: 26px;
  font-weight: 800;
}

.hero-copy {
  max-width: 620px;
  color: rgba(245, 240, 232, 0.82);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-reserve-panel {
  position: absolute;
  z-index: 3;
  right: max(24px, calc((100% - 1180px) / 2));
  bottom: 146px;
  width: min(390px, calc(100% - 48px));
  padding: 14px;
  border: 1px solid rgba(245, 240, 232, 0.32);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.92), rgba(245, 240, 232, 0.82)),
    var(--cream);
  color: var(--espresso);
  box-shadow: 0 28px 90px rgba(10, 7, 6, 0.32);
  backdrop-filter: blur(18px);
  animation: reservePanelIn 900ms var(--ease-soft) 580ms both, reserveFloat 5.8s ease-in-out 1.6s infinite;
}

.hero-reserve-panel::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 7px;
  background: linear-gradient(130deg, transparent 0 34%, rgba(255, 253, 248, 0.46) 46%, transparent 60% 100%);
  opacity: 0.7;
  pointer-events: none;
  transform: translateX(-44%);
  animation: reserveSheen 5.6s ease-in-out 1.8s infinite;
}

.reserve-panel-head,
.reserve-window,
.reserve-mini-grid {
  position: relative;
  z-index: 2;
}

.reserve-panel-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
  padding: 4px 4px 12px;
}

.reserve-panel-head span,
.gift-feature-copy span {
  color: var(--matcha);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.reserve-panel-head strong {
  font-size: 18px;
  line-height: 1.2;
}

.reserve-preview {
  position: relative;
  z-index: 2;
  overflow: hidden;
  height: 220px;
  border-radius: 8px;
  background: var(--espresso);
}

.reserve-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(35, 24, 21, 0.34), transparent 56%);
  pointer-events: none;
}

.reserve-preview img {
  transform: scale(1.02);
  transition: transform 920ms var(--ease-soft), filter 920ms ease;
}

.hero-reserve-panel:hover .reserve-preview img {
  transform: scale(1.075);
  filter: saturate(1.03) contrast(1.04);
}

.reserve-window {
  display: grid;
  gap: 2px;
  margin: 12px 0;
  padding: 14px;
  border: 1px solid rgba(35, 24, 21, 0.1);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.62);
}

.reserve-window span {
  color: var(--berry);
  font-size: 12px;
  font-weight: 900;
}

.reserve-window strong {
  font-size: 28px;
  line-height: 1.08;
}

.reserve-window small {
  color: var(--ink-soft);
}

.reserve-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.reserve-mini-grid span {
  display: grid;
  min-height: 42px;
  place-items: center;
  border: 1px solid rgba(35, 24, 21, 0.1);
  border-radius: 8px;
  background: rgba(35, 24, 21, 0.05);
  color: rgba(35, 24, 21, 0.78);
  font-size: 13px;
  font-weight: 900;
}

@keyframes reservePanelIn {
  from {
    opacity: 0;
    transform: translate3d(24px, 20px, 0) scale(0.975);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes reserveFloat {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -8px;
  }
}

@keyframes reserveSheen {
  0%,
  42% {
    opacity: 0;
    transform: translateX(-46%);
  }
  54% {
    opacity: 0.7;
  }
  70%,
  100% {
    opacity: 0;
    transform: translateX(46%);
  }
}

.hero-metrics {
  position: absolute;
  z-index: 3;
  right: max(24px, calc((100% - 1180px) / 2));
  bottom: 0;
  left: max(24px, calc((100% - 1180px) / 2));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(245, 240, 232, 0.38);
  border-bottom: 0;
  background: rgba(245, 240, 232, 0.9);
  color: var(--espresso);
  backdrop-filter: blur(20px);
  box-shadow: 0 -20px 60px rgba(16, 11, 10, 0.16);
  animation: metricIn 760ms var(--ease-out) 650ms both;
}

@keyframes metricIn {
  from {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.hero-metrics div {
  position: relative;
  min-height: 112px;
  padding: 22px 28px;
  border-right: 1px solid var(--line);
}

.hero-metrics div::after {
  content: "";
  position: absolute;
  right: 28px;
  bottom: 20px;
  left: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--matcha), transparent);
  opacity: 0.22;
}

.hero-metrics div:last-child {
  border-right: 0;
}

.hero-metrics strong {
  display: block;
  font-size: 34px;
  line-height: 1.08;
}

.hero-metrics span {
  color: var(--ink-soft);
  font-size: 14px;
}

.intro-band,
.gift-reserve-section,
.models-section,
.products-section,
.campaign-section,
.roadmap-section {
  width: var(--content);
  margin: 0 auto;
  padding: 112px 0;
}

.intro-band::before,
.gift-reserve-section::before,
.models-section::before,
.products-section::before,
.campaign-section::before,
.roadmap-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 72px;
  height: 1px;
  background: linear-gradient(90deg, var(--butter), transparent);
}

.gift-reserve-section {
  padding-top: 104px;
}

.gift-reserve-section .section-heading p:not(.eyebrow) {
  max-width: 720px;
  margin: 0 auto;
  color: var(--ink-soft);
  font-size: 17px;
}

.gift-layout {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 18px;
  align-items: stretch;
}

.gift-feature,
.gift-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.74);
  box-shadow: var(--shadow-soft);
}

.gift-feature {
  min-height: 572px;
  color: var(--cream);
}

.gift-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(20, 13, 12, 0.84) 0%, rgba(20, 13, 12, 0.3) 52%, rgba(20, 13, 12, 0.04) 100%),
    linear-gradient(120deg, rgba(122, 132, 92, 0.24), transparent 46%);
}

.gift-feature img {
  transform: scale(1.01);
  transition: transform 980ms var(--ease-soft), filter 980ms ease;
}

.gift-feature:hover img {
  transform: scale(1.06);
  filter: saturate(1.02) contrast(1.05);
}

.gift-feature-copy {
  position: absolute;
  z-index: 2;
  right: 34px;
  bottom: 32px;
  left: 34px;
  max-width: 560px;
}

.gift-feature-copy span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--butter);
}

.gift-feature-copy h3 {
  max-width: 520px;
  margin-bottom: 12px;
  font-size: 38px;
  line-height: 1.16;
}

.gift-feature-copy p {
  max-width: 540px;
  margin-bottom: 0;
  color: rgba(245, 240, 232, 0.78);
}

.gift-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.gift-card {
  display: grid;
  min-height: 278px;
  padding: 26px;
  transition: transform 260ms var(--ease-out), box-shadow 260ms ease, border-color 260ms ease, background 260ms ease;
}

.gift-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(130deg, transparent 0 34%, rgba(255, 253, 248, 0.56) 48%, transparent 64% 100%);
  opacity: 0;
  transform: translateX(-42%);
  transition: opacity 260ms ease, transform 720ms var(--ease-soft);
  pointer-events: none;
}

.gift-card:hover {
  transform: translateY(-8px);
  border-color: rgba(35, 24, 21, 0.26);
  background: var(--paper);
  box-shadow: var(--shadow-lift);
}

.gift-card:hover::before {
  opacity: 1;
  transform: translateX(42%);
}

.gift-card span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 24px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(122, 132, 92, 0.12);
  color: var(--matcha);
  font-size: 13px;
  font-weight: 900;
}

.gift-card h3 {
  font-size: 26px;
}

.gift-card p {
  margin-bottom: 24px;
  color: var(--ink-soft);
}

.gift-card strong {
  align-self: end;
  color: var(--berry);
  font-size: 18px;
}

.gift-card.accent {
  background: var(--espresso);
  color: var(--cream);
  border-color: rgba(35, 24, 21, 0.34);
}

.gift-card.accent span {
  background: rgba(201, 168, 106, 0.18);
  color: var(--butter);
}

.gift-card.accent p {
  color: rgba(245, 240, 232, 0.74);
}

.gift-card.accent strong {
  color: var(--cream);
}

.roadmap-section {
  width: auto;
  margin: 0;
  padding: 112px max(24px, calc((100% - 1180px) / 2));
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.96), rgba(245, 240, 232, 0.94)),
    var(--cream);
}

.roadmap-section::before {
  left: max(24px, calc((100% - 1180px) / 2));
}

.section-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 64px;
  align-items: start;
}

.section-grid .section-copy,
.image-text-section .section-copy,
.supply-band .section-copy,
.profit-copy {
  position: sticky;
  top: 118px;
  align-self: start;
}

.section-copy p:not(.eyebrow),
.profit-copy p,
.contact-copy p {
  color: var(--ink-soft);
  font-size: 17px;
}

.proof-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.proof-list article {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left 220ms var(--ease-out), border-color 220ms ease;
}

.proof-list article:hover {
  padding-left: 10px;
  border-color: rgba(35, 24, 21, 0.28);
}

.proof-list span {
  grid-row: 1 / span 2;
  color: var(--matcha);
  font-weight: 900;
}

.proof-list h3,
.proof-list p {
  grid-column: 2;
}

.proof-list p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.image-text-section {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 64px;
  align-items: center;
  padding: 120px max(24px, calc((100% - 1180px) / 2));
  background:
    linear-gradient(180deg, rgba(245, 240, 232, 0.2), rgba(255, 253, 248, 0.98) 22%),
    var(--white);
}

.brand-collage {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.68fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  min-height: 520px;
  transform: translateY(-22px);
}

.collage-main,
.collage-side,
.support-image,
.contact-visual,
.product-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.collage-main::after,
.collage-side::after,
.support-image::after,
.contact-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 253, 248, 0.2);
  border-radius: inherit;
  pointer-events: none;
}

.collage-main {
  grid-row: 1 / span 2;
}

.collage-note {
  position: absolute;
  right: 22px;
  bottom: 22px;
  display: grid;
  max-width: 330px;
  padding: 16px 18px;
  border-radius: 8px;
  background: rgba(35, 24, 21, 0.82);
  color: var(--cream);
}

.collage-note strong {
  font-size: 22px;
}

.collage-note span {
  color: rgba(245, 240, 232, 0.74);
  font-size: 14px;
}

.brand-collage img,
.support-image img,
.contact-visual img,
.product-card img {
  transform: scale(1.01);
  transition: transform 820ms var(--ease-soft), filter 820ms ease;
}

.brand-collage:hover img,
.support-image:hover img,
.contact-visual:hover img,
.product-card:hover img {
  transform: scale(1.055);
  filter: saturate(0.96) contrast(1.03);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 46px;
  text-align: center;
}

.section-heading.align-left {
  margin-left: 0;
  text-align: left;
}

.model-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.model-card {
  position: relative;
  overflow: hidden;
  min-height: 288px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.72);
  transition: transform 260ms var(--ease-out), border-color 260ms ease, background 260ms ease, box-shadow 260ms ease;
}

.model-card::before,
.support-item::before,
.product-card::before,
.contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 253, 248, 0.24) 46%, transparent 72%);
  opacity: 0;
  transform: translateX(-36%);
  transition: opacity 260ms ease, transform 620ms var(--ease-soft);
  pointer-events: none;
}

.model-card:hover {
  transform: translateY(-8px);
  border-color: rgba(35, 24, 21, 0.28);
  background: var(--paper);
  box-shadow: var(--shadow-lift);
}

.model-card:hover::before,
.support-item:hover::before,
.product-card:hover::before,
.contact-card:hover::before {
  opacity: 1;
  transform: translateX(36%);
}

.model-card.featured {
  background: var(--matcha);
  color: var(--cream);
  border-color: var(--matcha);
}

.model-card p {
  color: var(--ink-soft);
}

.model-card.featured p {
  color: rgba(245, 240, 232, 0.78);
}

.model-tag {
  display: inline-flex;
  margin-bottom: 28px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--sage);
  color: var(--matcha);
  font-size: 13px;
  font-weight: 900;
}

.featured .model-tag {
  background: rgba(245, 240, 232, 0.14);
  color: var(--cream);
}

.model-card h3 {
  font-size: 32px;
}

.model-price {
  margin-bottom: 18px;
  font-weight: 900;
}

.support-section {
  padding: 124px max(24px, calc((100% - 1180px) / 2));
  background:
    linear-gradient(180deg, rgba(245, 240, 232, 0.08), transparent 18%),
    var(--espresso);
  color: var(--cream);
}

.support-layout {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 48px;
  align-items: stretch;
}

.support-panel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.support-item {
  position: relative;
  overflow: hidden;
  min-height: 176px;
  padding: 24px;
  border: 1px solid rgba(245, 240, 232, 0.16);
  border-radius: 8px;
  background: rgba(245, 240, 232, 0.07);
  transition: background 260ms ease, transform 260ms var(--ease-out), border-color 260ms ease;
}

.support-item:hover {
  transform: translateY(-6px);
  background: rgba(245, 240, 232, 0.11);
  border-color: rgba(245, 240, 232, 0.28);
}

.support-item p {
  margin-bottom: 0;
  color: rgba(245, 240, 232, 0.7);
}

.support-image {
  min-height: 396px;
  align-self: stretch;
  position: sticky;
  top: 112px;
}

.supply-band {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  padding: 108px max(24px, calc((100% - 1180px) / 2));
  background:
    linear-gradient(180deg, rgba(35, 24, 21, 0.03), transparent 28%),
    var(--sage);
}

.supply-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid rgba(35, 24, 21, 0.16);
}

.supply-grid article {
  position: relative;
  min-height: 150px;
  padding: 24px 22px;
  border-right: 1px solid rgba(35, 24, 21, 0.16);
  border-bottom: 1px solid rgba(35, 24, 21, 0.16);
  transition: background 220ms ease, padding-left 220ms var(--ease-out);
}

.supply-grid article:hover {
  padding-left: 30px;
  background: rgba(255, 253, 248, 0.28);
}

.supply-grid article:nth-child(2n) {
  border-right: 0;
}

.supply-grid p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.product-gallery {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr 0.92fr;
  grid-auto-rows: 320px;
  gap: 16px;
}

.product-card {
  position: relative;
  color: var(--cream);
  background: var(--espresso);
  transition: transform 260ms var(--ease-out), box-shadow 260ms ease;
}

.product-card::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(0deg, rgba(20, 13, 12, 0.74) 0%, rgba(20, 13, 12, 0.12) 62%);
}

.product-card::before {
  z-index: 2;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
}

.product-card.tall {
  grid-row: span 2;
}

.product-card div {
  position: absolute;
  z-index: 3;
  right: 22px;
  bottom: 20px;
  left: 22px;
}

.product-card p {
  margin-bottom: 0;
  color: rgba(245, 240, 232, 0.76);
}

.campaign-section {
  width: auto;
  margin: 0;
  padding: 124px max(24px, calc((100% - 1180px) / 2));
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.98), rgba(245, 240, 232, 0.94) 54%, rgba(201, 168, 106, 0.12)),
    var(--paper);
}

.campaign-section::before {
  left: max(24px, calc((100% - 1180px) / 2));
  background: linear-gradient(90deg, var(--butter), transparent);
}

.campaign-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 42px;
  align-items: stretch;
}

.campaign-copy {
  position: relative;
  min-height: 430px;
  padding: 42px;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(25, 15, 15, 0.88) 0%, rgba(25, 15, 15, 0.58) 54%, rgba(25, 15, 15, 0.24) 100%),
    url("assets/images/fruit-cakes.webp") center / cover no-repeat;
  color: var(--cream);
  box-shadow: var(--shadow-lift);
}

.campaign-copy .eyebrow {
  color: var(--blush);
}

.campaign-copy h1,
.campaign-copy h2 {
  max-width: 620px;
  margin-bottom: 16px;
  font-size: 56px;
  line-height: 1.16;
}

.campaign-copy p:not(.eyebrow) {
  max-width: 560px;
  color: rgba(245, 240, 232, 0.78);
  font-size: 18px;
}

.campaign-page .campaign-section {
  min-height: 100vh;
  padding-top: 148px;
}

.campaign-delivery {
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.98), rgba(245, 240, 232, 0.94) 42%, rgba(201, 168, 106, 0.12) 100%),
    var(--paper);
}

.campaign-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.campaign-visual {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: 14px;
}

.campaign-visual div,
.campaign-product,
.content-stack article,
.mechanism-panel,
.campaign-timeline li {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.74);
}

.campaign-visual div {
  display: grid;
  align-content: center;
  min-height: 126px;
  padding: 24px;
  transition: transform 260ms var(--ease-out), background 260ms ease, border-color 260ms ease;
}

.campaign-visual div:hover {
  transform: translateY(-5px);
  border-color: rgba(138, 61, 66, 0.22);
  background: var(--white);
}

.campaign-visual strong {
  color: var(--berry);
  font-size: 34px;
  line-height: 1.05;
}

.campaign-visual span {
  color: var(--ink-soft);
  font-weight: 800;
}

.campaign-products {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.campaign-product {
  display: grid;
  min-height: 284px;
  padding: 24px;
  transition: transform 260ms var(--ease-out), border-color 260ms ease, box-shadow 260ms ease, background 260ms ease;
}

.campaign-product:hover {
  transform: translateY(-6px);
  border-color: rgba(35, 24, 21, 0.25);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.campaign-product.featured {
  background: var(--berry);
  color: var(--cream);
  border-color: var(--berry);
}

.campaign-product span,
.content-stack span,
.campaign-timeline span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 18px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(138, 61, 66, 0.1);
  color: var(--berry);
  font-size: 13px;
  font-weight: 900;
}

.campaign-product.featured span {
  background: rgba(255, 253, 248, 0.16);
  color: var(--blush);
}

.campaign-product h3 {
  margin-bottom: 12px;
}

.campaign-product p {
  margin-bottom: 22px;
  color: var(--ink-soft);
  font-size: 15px;
}

.campaign-product.featured p {
  color: rgba(245, 240, 232, 0.76);
}

.campaign-product strong {
  align-self: end;
  color: var(--berry);
  font-size: 22px;
  line-height: 1.2;
}

.campaign-product.featured strong {
  color: var(--cream);
}

.campaign-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 36px;
  margin-top: 92px;
}

.content-plan .section-heading {
  margin-bottom: 30px;
}

.content-stack {
  display: grid;
  gap: 12px;
}

.content-stack article {
  padding: 22px;
  background: rgba(255, 253, 248, 0.62);
  transition: transform 260ms var(--ease-out), background 260ms ease, border-color 260ms ease;
}

.content-stack article:hover {
  transform: translateX(6px);
  border-color: rgba(35, 24, 21, 0.24);
  background: var(--white);
}

.content-stack span {
  margin-bottom: 10px;
}

.content-stack p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.mechanism-panel {
  align-self: start;
  padding: 30px;
  background:
    linear-gradient(180deg, rgba(201, 168, 106, 0.1), rgba(255, 250, 242, 0.82)),
    var(--cream);
  box-shadow: var(--shadow-soft);
}

.mechanism-panel h3 {
  font-size: 32px;
}

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

.mechanism-panel li {
  position: relative;
  padding-left: 22px;
  color: var(--ink-soft);
}

.mechanism-panel li::before {
  content: "";
  position: absolute;
  top: 0.76em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--berry);
}

.campaign-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  padding: 34px 0 0;
  margin: 76px 0 0;
  list-style: none;
}

.campaign-timeline::before {
  content: "";
  position: absolute;
  top: 10px;
  right: 8%;
  left: 8%;
  height: 2px;
  background: linear-gradient(90deg, var(--butter), var(--matcha), rgba(35, 24, 21, 0.14));
}

.campaign-timeline li {
  min-height: 210px;
  padding: 22px;
  background: rgba(255, 253, 248, 0.68);
  transition: transform 260ms var(--ease-out), background 260ms ease, border-color 260ms ease;
}

.campaign-timeline li::before {
  content: "";
  position: absolute;
  top: -30px;
  left: 22px;
  width: 12px;
  height: 12px;
  border: 3px solid var(--cream);
  border-radius: 50%;
  background: var(--berry);
  box-shadow: 0 0 0 1px rgba(35, 24, 21, 0.12);
}

.campaign-timeline li:hover {
  transform: translateY(-5px);
  border-color: rgba(138, 61, 66, 0.2);
  background: var(--white);
}

.campaign-timeline span {
  margin-bottom: 22px;
}

.campaign-timeline strong {
  display: block;
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.3;
}

.campaign-timeline p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 15px;
}

.delivery-brief {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: 14px;
}

.delivery-brief article,
.overview-grid article,
.checklist-grid article,
.copy-card,
.metrics-grid article,
.notes-grid article,
.script-stack article {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.74);
  transition: transform 260ms var(--ease-out), border-color 260ms ease, box-shadow 260ms ease, background 260ms ease;
}

.delivery-brief article {
  display: grid;
  align-content: center;
  min-height: 126px;
  padding: 24px;
}

.delivery-brief article:hover,
.overview-grid article:hover,
.checklist-grid article:hover,
.copy-card:hover,
.metrics-grid article:hover,
.notes-grid article:hover,
.script-stack article:hover {
  transform: translateY(-5px);
  border-color: rgba(138, 61, 66, 0.2);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.delivery-brief span,
.overview-grid span,
.checklist-grid span,
.copy-card span,
.metrics-grid span,
.script-stack span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(138, 61, 66, 0.1);
  color: var(--berry);
  font-size: 13px;
  font-weight: 900;
}

.delivery-brief strong {
  color: var(--berry);
  font-size: 26px;
  line-height: 1.18;
}

.delivery-brief p,
.overview-grid p,
.copy-card p,
.script-stack p,
.notes-grid p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.delivery-section {
  margin-top: 92px;
}

.delivery-heading {
  max-width: 760px;
  margin: 0 auto 30px;
  text-align: center;
}

.delivery-heading.align-left {
  margin-left: 0;
  text-align: left;
}

.delivery-heading h2 {
  margin-bottom: 0;
}

.overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.overview-grid article {
  min-height: 220px;
  padding: 26px;
}

.overview-grid strong {
  display: block;
  margin-bottom: 14px;
  font-size: 24px;
  line-height: 1.28;
}

.delivery-products {
  margin-top: 0;
}

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

.checklist-grid article {
  padding: 24px;
}

.checklist-grid h3 {
  margin-bottom: 16px;
}

.checklist-grid ul,
.delivery-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.checklist-grid li,
.delivery-list li {
  position: relative;
  padding-left: 20px;
  color: var(--ink-soft);
}

.checklist-grid li::before,
.delivery-list li::before {
  content: "";
  position: absolute;
  top: 0.78em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--berry);
}

.copy-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.copy-card {
  display: grid;
  min-height: 310px;
  padding: 22px;
}

.copy-card p {
  font-size: 15px;
}

.copy-card button {
  align-self: end;
  width: 100%;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(138, 61, 66, 0.22);
  border-radius: 8px;
  background: rgba(138, 61, 66, 0.1);
  color: var(--berry);
  cursor: pointer;
  font-weight: 900;
  transition: transform 180ms var(--ease-out), background 180ms ease, border-color 180ms ease;
}

.copy-card button:hover {
  transform: translateY(-2px);
  border-color: rgba(138, 61, 66, 0.34);
  background: rgba(138, 61, 66, 0.14);
}

.delivery-two-column {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.materials-panel,
.script-panel {
  min-width: 0;
}

.script-stack {
  display: grid;
  gap: 12px;
}

.script-stack article {
  padding: 22px;
}

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

.metrics-grid article {
  min-height: 178px;
  padding: 24px;
}

.metrics-grid strong {
  display: block;
  color: var(--espresso);
  font-size: 18px;
  line-height: 1.45;
}

.notes-section {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.56);
}

.notes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.notes-grid article {
  padding: 22px;
  background: rgba(255, 250, 242, 0.68);
}

.notes-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--berry);
  font-size: 20px;
}

.profit-section {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 52px;
  align-items: center;
  padding: 112px max(24px, calc((100% - 1180px) / 2));
  background:
    linear-gradient(90deg, rgba(122, 139, 91, 0.1), transparent 40%),
    var(--white);
}

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

.formula span {
  position: relative;
  overflow: hidden;
  display: grid;
  min-height: 128px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream);
  font-size: 24px;
  font-weight: 900;
  transition: transform 260ms var(--ease-out), border-color 260ms ease, box-shadow 260ms ease;
}

.formula span:hover {
  transform: translateY(-5px);
  border-color: rgba(35, 24, 21, 0.28);
  box-shadow: var(--shadow-soft);
}

.formula b {
  color: var(--matcha);
  font-size: 30px;
}

.roadmap-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  padding: 36px 0 0;
  margin: 0;
  list-style: none;
}

.roadmap-list::before {
  content: "";
  position: absolute;
  top: 14px;
  right: 8%;
  left: 8%;
  height: 2px;
  background: linear-gradient(90deg, var(--matcha), var(--butter), rgba(35, 24, 21, 0.12));
  transform: scaleX(var(--roadmap-progress, 0));
  transform-origin: left center;
  transition: transform 760ms var(--ease-out);
}

.roadmap-section.is-visible .roadmap-list::before {
  --roadmap-progress: 1;
}

.roadmap-list li {
  position: relative;
  min-height: 142px;
  padding: 28px 18px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  transition: background 260ms ease, transform 260ms var(--ease-out), border-color 260ms ease;
}

.roadmap-list li::before {
  content: "";
  position: absolute;
  top: -27px;
  left: 18px;
  width: 13px;
  height: 13px;
  border: 3px solid var(--cream);
  border-radius: 50%;
  background: var(--matcha);
  box-shadow: 0 0 0 1px rgba(35, 24, 21, 0.12);
}

.roadmap-list li:hover {
  transform: translateY(-5px);
  border-color: var(--line);
  background: var(--paper);
}

.roadmap-list span {
  display: block;
  margin-bottom: 26px;
  color: var(--matcha);
  font-size: 13px;
  font-weight: 900;
}

.roadmap-list strong {
  display: block;
  line-height: 1.3;
}

.contact-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
  padding: 124px max(24px, calc((100% - 1180px) / 2));
  background:
    linear-gradient(180deg, rgba(35, 24, 21, 0.94), var(--espresso));
  color: var(--cream);
}

.contact-copy p {
  color: rgba(245, 240, 232, 0.74);
}

.contact-visual {
  aspect-ratio: 0.88;
}

.contact-card {
  position: relative;
  overflow: hidden;
  margin-top: 34px;
  padding: 26px;
  border-radius: 8px;
  background: var(--cream);
  color: var(--espresso);
  box-shadow: 0 24px 70px rgba(10, 7, 6, 0.22);
  transition: transform 260ms var(--ease-out), box-shadow 260ms ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 88px rgba(10, 7, 6, 0.3);
}

.contact-card span {
  display: block;
  color: var(--matcha);
  font-size: 13px;
  font-weight: 900;
}

.contact-card strong {
  display: block;
  margin: 8px 0 4px;
  font-size: 30px;
}

.contact-card p {
  color: var(--ink-soft);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 26px max(24px, calc((100% - 1180px) / 2));
  background: #16100f;
  color: rgba(245, 240, 232, 0.68);
  font-size: 14px;
}

.toast {
  position: fixed;
  z-index: 80;
  right: 22px;
  bottom: 22px;
  max-width: min(360px, calc(100% - 44px));
  padding: 14px 16px;
  border-radius: 8px;
  background: var(--espresso);
  color: var(--cream);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

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

.reveal {
  opacity: 0;
  transform: translate3d(0, var(--reveal-y, 26px), 0) scale(var(--reveal-scale, 1));
  transition: opacity 720ms ease, transform 720ms var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.brand-collage.reveal,
.support-image.reveal,
.contact-visual.reveal {
  --reveal-y: 34px;
  --reveal-scale: 0.985;
}

.model-card.reveal,
.gift-feature.reveal,
.gift-card.reveal,
.support-item.reveal,
.product-card.reveal,
.campaign-product.reveal,
.content-stack article.reveal,
.mechanism-panel.reveal,
.campaign-timeline li.reveal,
.delivery-brief article.reveal,
.overview-grid article.reveal,
.checklist-grid article.reveal,
.copy-card.reveal,
.materials-panel.reveal,
.script-panel.reveal,
.script-stack article.reveal,
.metrics-grid article.reveal,
.notes-grid article.reveal {
  --reveal-y: 22px;
  --reveal-scale: 0.99;
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-links {
    display: none;
  }

  .header-cta {
    justify-self: end;
  }

  h1 {
    font-size: 58px;
  }

  h2 {
    font-size: 34px;
  }

  .section-grid,
  .gift-layout,
  .image-text-section,
  .support-layout,
  .supply-band,
  .profit-section,
  .contact-section,
  .campaign-hero,
  .campaign-grid,
  .delivery-two-column {
    grid-template-columns: 1fr;
  }

  .product-gallery,
  .gift-cards,
  .campaign-products,
  .overview-grid,
  .checklist-grid,
  .copy-grid,
  .metrics-grid,
  .notes-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .roadmap-list,
  .campaign-timeline {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 18px;
  }

  .delivery-brief {
    grid-template-rows: none;
    grid-template-columns: repeat(3, 1fr);
  }

  .section-grid .section-copy,
  .image-text-section .section-copy,
  .supply-band .section-copy,
  .profit-copy,
  .support-image {
    position: static;
  }

  .brand-collage {
    transform: none;
  }

  .hero-reserve-panel {
    right: max(24px, calc((100% - 1180px) / 2));
    width: 340px;
  }

  .roadmap-list::before {
    display: none;
  }

  .campaign-timeline::before {
    display: none;
  }

  .roadmap-list li::before,
  .campaign-timeline li::before {
    top: 16px;
    left: auto;
    right: 16px;
    width: 10px;
    height: 10px;
  }
}

@media (max-width: 720px) {
  :root {
    --content: min(1180px, calc(100% - 28px));
  }

  .site-header {
    top: 10px;
    right: 14px;
    left: 14px;
    grid-template-columns: auto 42px;
    justify-content: space-between;
    width: auto;
    min-height: 60px;
    padding: 9px 10px;
    transform: none;
  }

  .brand-link {
    min-width: 0;
  }

  .brand-logo-lockup {
    display: none;
  }

  .brand-logo-mark {
    display: block;
    width: 34px;
    height: 34px;
  }

  .header-cta {
    width: 42px;
    min-height: 40px;
    padding: 0;
  }

  .header-cta span {
    display: none;
  }

  .hero {
    min-height: 760px;
    padding-top: 110px;
  }

  .hero::before {
    background-position: 58% center;
  }

  .hero-content {
    padding-bottom: 300px;
  }

  .hero-reserve-panel {
    right: 14px;
    bottom: 246px;
    left: 14px;
    width: auto;
    padding: 10px;
    animation: reservePanelIn 700ms var(--ease-soft) 480ms both;
  }

  .reserve-preview {
    height: 132px;
  }

  .reserve-window {
    margin: 10px 0;
    padding: 10px;
  }

  .reserve-window strong {
    font-size: 22px;
  }

  .reserve-mini-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 28px;
  }

  .hero-subtitle {
    font-size: 22px;
  }

  .hero-copy,
  .section-copy p:not(.eyebrow),
  .profit-copy p,
  .contact-copy p {
    font-size: 16px;
  }

  .hero-actions,
  .contact-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .hero-metrics div {
    min-height: 76px;
    padding: 14px 18px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-metrics strong {
    font-size: 26px;
  }

  .intro-band,
  .gift-reserve-section,
  .models-section,
  .products-section,
  .roadmap-section {
    padding: 72px 0;
  }

  .roadmap-section {
    padding-right: 14px;
    padding-left: 14px;
  }

  .image-text-section,
  .support-section,
  .supply-band,
  .profit-section,
  .contact-section,
  .campaign-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .campaign-page .campaign-section {
    padding-top: 128px;
  }

  .campaign-copy {
    min-height: 520px;
    padding: 28px;
    background:
      linear-gradient(180deg, rgba(25, 15, 15, 0.88) 0%, rgba(25, 15, 15, 0.62) 58%, rgba(25, 15, 15, 0.34) 100%),
      url("assets/images/fruit-cakes.webp") center / cover no-repeat;
  }

  .campaign-copy h1,
  .campaign-copy h2 {
    font-size: 36px;
  }

  .campaign-copy p:not(.eyebrow) {
    font-size: 16px;
  }

  .brand-collage {
    grid-template-columns: 1fr;
    grid-template-rows: 1.1fr 0.8fr 0.8fr;
    min-height: 640px;
  }

  .collage-main {
    grid-row: auto;
  }

  .collage-note {
    right: 16px;
    bottom: 16px;
    left: 16px;
  }

  .model-grid,
  .gift-cards,
  .support-panel,
  .supply-grid,
  .product-gallery,
  .campaign-products,
  .campaign-timeline,
  .overview-grid,
  .checklist-grid,
  .copy-grid,
  .metrics-grid,
  .notes-grid,
  .delivery-brief,
  .roadmap-list {
    grid-template-columns: 1fr;
  }

  .roadmap-list,
  .campaign-timeline {
    padding-top: 0;
  }

  .product-gallery {
    grid-auto-rows: 360px;
  }

  .product-card.tall {
    grid-row: span 1;
  }

  .gift-feature {
    min-height: 460px;
  }

  .gift-feature-copy {
    right: 22px;
    bottom: 22px;
    left: 22px;
  }

  .gift-feature-copy h3 {
    font-size: 30px;
  }

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

  .formula b {
    text-align: center;
    line-height: 1;
  }

  .formula span {
    min-height: 86px;
    font-size: 21px;
  }

  .roadmap-list li {
    min-height: auto;
    padding: 18px;
    border-color: var(--line);
    background: var(--paper);
  }

  .campaign-visual {
    grid-template-rows: none;
  }

  .campaign-products {
    margin-top: 14px;
  }

  .campaign-product,
  .campaign-timeline li {
    min-height: auto;
  }

  .campaign-grid {
    margin-top: 64px;
  }

  .delivery-section {
    margin-top: 64px;
  }

  .campaign-timeline {
    margin-top: 52px;
  }

  .campaign-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .delivery-heading {
    text-align: left;
  }

  .delivery-brief article,
  .overview-grid article,
  .copy-card,
  .metrics-grid article {
    min-height: auto;
  }

  .notes-section {
    padding: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

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

  .scroll-progress {
    display: none;
  }
}

/* Official homepage direction: gift / birthday / preorder first. */
.official-page {
  --brand-ink: var(--espresso);
  --brand-ink-2: var(--espresso-2);
  --brand-ground: var(--cream);
  --brand-paper: var(--paper);
  --brand-line: rgba(35, 24, 21, 0.14);
  --brand-line-strong: rgba(35, 24, 21, 0.24);
  --brand-accent: var(--butter);
  --brand-seasonal: var(--matcha);
  --brand-muted: rgba(35, 24, 21, 0.66);
  --type-display: clamp(42px, 4vw, 60px);
  --type-section: clamp(30px, 2.8vw, 38px);
  --type-card-title: 23px;
  --section-space: clamp(70px, 7vw, 96px);
  --gutter: clamp(16px, 2vw, 24px);
  --card-radius: 8px;
  --surface-paper: rgba(255, 250, 242, 0.86);
  --surface-paper-solid: #fffaf2;
  --surface-ink: #231815;
  --photo-bg: #231815;
  --photo-border: rgba(35, 24, 21, 0.14);
  --photo-border-inverse: rgba(245, 240, 232, 0.28);
  --photo-filter: saturate(0.88) contrast(1.04) brightness(0.98);
  --photo-filter-hero: saturate(0.82) contrast(1.04) brightness(0.94);
  --photo-scale: 1.012;
  --photo-overlay: linear-gradient(180deg, rgba(35, 24, 21, 0.02), transparent 48%, rgba(35, 24, 21, 0.2));
  background:
    linear-gradient(180deg, var(--brand-ground) 0%, var(--brand-paper) 46%, var(--brand-ground) 76%, var(--brand-ink) 100%);
}

body.official-page::before {
  background-size: 136px 136px;
  opacity: 0.24;
}

.official-page h1,
.official-page h2,
.official-page h3 {
  letter-spacing: 0;
}

.official-page .site-header {
  grid-template-columns: 52px minmax(0, 1fr) auto;
  gap: clamp(18px, 2vw, 30px);
  min-height: 66px;
  padding: 8px 12px;
  border-color: rgba(245, 240, 232, 0.14);
  background: rgba(35, 24, 21, 0.92);
  box-shadow: 0 18px 50px rgba(10, 7, 6, 0.2);
}

.official-page .brand-link {
  justify-content: center;
  width: 52px;
  min-width: 52px;
  height: 52px;
  padding: 6px;
}

.official-page .brand-logo-lockup {
  display: none;
}

.official-page .brand-logo-mark {
  display: block;
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: none;
}

.official-page .nav-links {
  gap: clamp(12px, 1.35vw, 18px);
  font-size: 13px;
}

.official-page .header-cta {
  min-height: 42px;
  padding-right: 14px;
  font-size: 13px;
}

.official-page .header-cta .icon {
  width: 29px;
  height: 29px;
}

.official-page h2,
.official-page h3 {
  font-weight: 800;
}

.official-page h2 {
  font-size: var(--type-section);
}

.photo-frame {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid var(--photo-border);
  border-radius: var(--card-radius);
  background: var(--photo-bg);
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--photo-position, center);
  filter: var(--photo-filter);
  transform: scale(var(--photo-scale));
  transition: transform 820ms var(--ease-soft), filter 820ms ease;
}

.photo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    var(--photo-overlay),
    linear-gradient(125deg, transparent 0 42%, rgba(255, 253, 248, 0.12) 50%, transparent 58% 100%);
}

.photo-frame--portrait,
.photo-frame--product {
  aspect-ratio: 4 / 5;
}

.photo-frame--story {
  aspect-ratio: 5 / 4;
}

.photo-crop--packaging {
  --photo-position: center 44%;
}

.photo-crop--cakes {
  --photo-position: center 48%;
}

.photo-crop--bread {
  --photo-position: center 52%;
}

.photo-crop--coffee {
  --photo-position: center 46%;
}

.photo-crop--brand-package {
  --photo-position: center 48%;
  --photo-filter: saturate(0.84) contrast(1.02) brightness(0.96);
}

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

.official-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 390px);
  gap: clamp(34px, 4.5vw, 54px);
  align-items: center;
  min-height: 82vh;
  padding: 118px max(24px, calc((100% - 1180px) / 2)) 58px;
  overflow: hidden;
  color: var(--brand-ground);
  background: var(--brand-ink);
}

.official-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(35, 24, 21, 0.94) 0%, rgba(35, 24, 21, 0.78) 43%, rgba(35, 24, 21, 0.38) 74%, rgba(35, 24, 21, 0.18) 100%),
    linear-gradient(180deg, rgba(35, 24, 21, 0.22) 0%, rgba(35, 24, 21, 0.74) 100%),
    var(--official-hero-image, url("assets/images/hero-finished-store.webp")) center / cover no-repeat;
}

.official-hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 106, 0.72), transparent);
  opacity: 0.78;
}

.official-hero-copy,
.hero-showcase {
  position: relative;
  z-index: 2;
}

.official-hero-copy {
  max-width: 720px;
}

.official-hero-copy > * {
  opacity: 0;
  animation: heroCopyIn 760ms var(--ease-out) both;
}

.official-hero-copy > :nth-child(1) {
  animation-delay: 100ms;
}

.official-hero-copy > :nth-child(2) {
  animation-delay: 190ms;
}

.official-hero-copy > :nth-child(3) {
  animation-delay: 280ms;
}

.official-hero-copy > :nth-child(4) {
  animation-delay: 370ms;
}

.official-hero-copy > :nth-child(5) {
  animation-delay: 470ms;
}

.official-hero h1 {
  max-width: 700px;
  margin-bottom: 18px;
  color: var(--brand-ground);
  font-size: var(--type-display);
  font-weight: 800;
  line-height: 1.08;
  text-wrap: balance;
}

.official-hero-copy p:not(.eyebrow) {
  max-width: 600px;
  color: rgba(245, 240, 232, 0.8);
  font-size: 17px;
}

.official-hero .button {
  min-height: 48px;
  padding-right: 18px;
}

.official-hero .button-secondary.dark {
  border-color: rgba(245, 240, 232, 0.34);
  background: rgba(35, 24, 21, 0.44);
  color: var(--cream);
  backdrop-filter: blur(12px);
}

.official-hero .button-secondary.dark .icon {
  background: rgba(245, 240, 232, 0.12);
  color: var(--cream);
}

.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid rgba(245, 240, 232, 0.18);
  border-radius: 999px;
  background: rgba(245, 240, 232, 0.1);
  color: rgba(245, 240, 232, 0.82);
  font-size: 13px;
  font-weight: 900;
}

.hero-trust-row span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--butter);
}

.hero-showcase {
  position: relative;
  display: block;
  justify-self: end;
  width: min(390px, 100%);
  padding: 10px;
  border: 1px solid rgba(245, 240, 232, 0.16);
  border-radius: var(--card-radius);
  background: rgba(35, 24, 21, 0.32);
  box-shadow: 0 34px 90px rgba(10, 7, 6, 0.32);
  backdrop-filter: blur(8px);
  animation: reservePanelIn 820ms var(--ease-soft) 420ms both;
}

.showcase-photo {
  --photo-border: var(--photo-border-inverse);
  --photo-filter: var(--photo-filter-hero);
  --photo-overlay: linear-gradient(180deg, rgba(35, 24, 21, 0.02), transparent 48%, rgba(35, 24, 21, 0.22));
}

.hero-showcase:hover .showcase-photo img {
  transform: scale(1.065);
  filter: saturate(0.92) contrast(1.06) brightness(0.98);
}

.showcase-card {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  overflow: hidden;
  min-height: 122px;
  padding: 16px;
  border: 1px solid rgba(245, 240, 232, 0.24);
  border-radius: var(--card-radius);
  background: rgba(255, 250, 242, 0.94);
  color: var(--brand-ink);
  box-shadow: 0 18px 46px rgba(10, 7, 6, 0.22);
  backdrop-filter: blur(16px);
}

.showcase-card.mini-program {
  top: 16px;
  right: 16px;
  bottom: auto;
  left: auto;
  width: min(212px, calc(100% - 32px));
  min-height: auto;
}

.showcase-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, transparent 0 34%, rgba(255, 253, 248, 0.66) 48%, transparent 64% 100%);
  opacity: 0;
  transform: translateX(-42%);
  animation: reserveSheen 5.8s ease-in-out 2s infinite;
}

.showcase-card span,
.scene-card span,
.order-card span,
.product-tile span,
.store-panel span,
.venture-card span,
.venture-tab {
  color: var(--matcha);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.showcase-card strong {
  position: relative;
  display: block;
  margin: 8px 0;
  font-size: 20px;
  line-height: 1.12;
}

.showcase-card small {
  position: relative;
  color: var(--ink-soft);
}

.scene-strip {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: var(--content);
  margin: -20px auto 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 250, 242, 0.94);
  box-shadow: 0 18px 46px rgba(35, 24, 21, 0.12);
  backdrop-filter: blur(18px);
}

.scene-strip a {
  position: relative;
  display: grid;
  gap: 4px;
  min-height: 112px;
  padding: 20px;
  border-right: 1px solid var(--line);
  transition: background 220ms ease, padding-left 220ms var(--ease-out);
}

.scene-strip a:last-child {
  border-right: 0;
}

.scene-strip a:hover {
  padding-left: 30px;
  background: var(--white);
}

.scene-strip span {
  color: var(--butter);
  font-weight: 900;
}

.scene-strip strong {
  font-size: 20px;
}

.scene-strip small {
  color: var(--ink-soft);
}

.reserve-section,
.order-section,
.menu-section,
.news-section,
.store-section,
.venture-section {
  width: var(--content);
  margin: 0 auto;
  padding: var(--section-space) 0;
}

.official-page .section-heading p:not(.eyebrow) {
  max-width: 720px;
  margin: 0 auto;
  color: var(--ink-soft);
  font-size: 17px;
}

.reserve-grid {
  display: grid;
  grid-template-columns: 1.04fr 0.72fr 0.72fr;
  grid-auto-rows: 278px;
  gap: 16px;
}

.scene-card,
.order-card,
.product-tile,
.store-card,
.venture-section {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--brand-line);
  border-radius: var(--card-radius);
  background: var(--surface-paper);
  box-shadow: var(--shadow-soft);
}

.scene-card {
  display: grid;
  align-content: end;
  padding: 28px;
  transition: transform 260ms var(--ease-out), box-shadow 260ms ease, border-color 260ms ease, background 260ms ease;
}

.reserve-grid .scene-card:not(.large) {
  align-content: center;
}

.scene-card::before,
.order-card::before,
.product-tile::before,
.store-panel::before,
.venture-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, transparent 0 34%, rgba(255, 253, 248, 0.58) 48%, transparent 64% 100%);
  opacity: 0;
  transform: translateX(-42%);
  transition: opacity 260ms ease, transform 720ms var(--ease-soft);
  pointer-events: none;
}

.scene-card:hover,
.order-card:hover,
.product-tile:hover,
.venture-card:hover {
  transform: translateY(-7px);
  border-color: var(--brand-line-strong);
  background: var(--surface-paper-solid);
  box-shadow: var(--shadow-lift);
}

.scene-card:hover::before,
.order-card:hover::before,
.product-tile:hover::before,
.store-panel:hover::before,
.venture-card:hover::before {
  opacity: 1;
  transform: translateX(42%);
}

.scene-card.large {
  grid-row: span 2;
  padding: 0;
  color: var(--brand-ground);
  background: var(--brand-ink);
}

.scene-card.large::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20, 13, 12, 0.04) 0%, rgba(20, 13, 12, 0.48) 52%, rgba(20, 13, 12, 0.9) 100%),
    linear-gradient(90deg, rgba(20, 13, 12, 0.32), transparent 58%);
}

.scene-card.large img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--photo-position, center);
  filter: var(--photo-filter);
  transform: scale(var(--photo-scale));
  transition: transform 980ms var(--ease-soft), filter 980ms ease;
}

.scene-card.large:hover img {
  transform: scale(1.06);
  filter: saturate(0.92) contrast(1.06) brightness(1);
}

.scene-card.large div {
  position: relative;
  z-index: 2;
  align-self: end;
  width: 100%;
  padding: 34px;
  text-shadow: 0 2px 18px rgba(10, 7, 6, 0.32);
}

.scene-card.large span,
.scene-card.accent span {
  color: var(--butter);
}

.scene-card h3 {
  margin: 10px 0 12px;
  font-size: 29px;
}

.scene-card p,
.order-card p,
.product-tile p,
.store-card p,
.venture-card p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.scene-card.large p,
.scene-card.accent p {
  color: rgba(245, 240, 232, 0.76);
}

.scene-card.accent {
  color: var(--cream);
  background: var(--espresso);
}

.order-section {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 48px;
  align-items: start;
  padding-top: 92px;
}

.order-copy {
  position: sticky;
  top: 118px;
}

.order-copy p:not(.eyebrow) {
  color: var(--ink-soft);
  font-size: 17px;
}

.order-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.order-card {
  min-height: 214px;
  padding: 26px;
  transition: transform 260ms var(--ease-out), box-shadow 260ms ease, border-color 260ms ease, background 260ms ease;
}

.order-card h3 {
  margin-top: 26px;
}

.product-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.product-tile {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 0;
  background: var(--surface-paper-solid);
  transition: transform 260ms var(--ease-out), box-shadow 260ms ease, border-color 260ms ease, background 260ms ease;
}

.product-media {
  border-width: 0 0 1px;
  border-color: var(--brand-line);
  border-radius: var(--card-radius) var(--card-radius) 0 0;
}

.product-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-tile:hover img {
  transform: scale(1.045);
  filter: saturate(0.96) contrast(1.06) brightness(1);
}

.product-tile > div:not(.product-media) {
  display: grid;
  align-content: start;
  padding: 22px;
}

.product-tile h3 {
  margin-top: 8px;
  font-size: var(--type-card-title);
  font-weight: 800;
}

.news-section {
  padding-top: 78px;
}

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

.news-card {
  position: relative;
  display: grid;
  gap: 10px;
  min-height: 230px;
  padding: 26px;
  border: 1px solid var(--brand-line);
  border-radius: var(--card-radius);
  background: var(--surface-paper-solid);
  box-shadow: var(--shadow-soft);
}

.news-card span {
  color: var(--matcha);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.news-card h3 {
  margin: 0;
  font-size: 25px;
}

.news-card p {
  margin: 0;
  color: var(--ink-soft);
}

.news-card time {
  align-self: end;
  color: rgba(35, 24, 21, 0.48);
  font-size: 13px;
  font-weight: 800;
}

.store-section {
  padding-top: 78px;
}

.store-card {
  display: grid;
  grid-template-columns: 0.98fr 1.02fr;
  gap: 36px;
  align-items: center;
  padding: 42px;
  background:
    linear-gradient(90deg, rgba(255, 250, 242, 0.94), rgba(227, 232, 217, 0.68)),
    var(--surface-paper-solid);
}

.store-card h2 {
  max-width: 620px;
}

.store-panel {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(35, 24, 21, 0.12);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.72);
  box-shadow: var(--shadow-soft);
}

.store-panel strong {
  display: block;
  margin: 8px 0 8px;
  font-size: 31px;
  line-height: 1.16;
}

.store-panel small {
  display: block;
  color: var(--ink-soft);
}

.store-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.venture-section {
  width: auto;
  margin: 0;
  padding: 104px max(24px, calc((100% - 1180px) / 2));
  color: var(--brand-ground);
  background:
    linear-gradient(180deg, rgba(35, 24, 21, 0.96), rgba(35, 24, 21, 0.9)),
    url("assets/images/brand-storefront-wide.webp") center / cover no-repeat;
  box-shadow: none;
}

.venture-tab {
  display: inline-flex;
  margin-bottom: 26px;
  padding: 8px 12px;
  border: 1px solid rgba(245, 240, 232, 0.18);
  border-radius: 999px;
  color: var(--butter);
  background: rgba(245, 240, 232, 0.08);
}

.venture-layout {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 48px;
  align-items: start;
}

.venture-copy p:not(.eyebrow) {
  max-width: 520px;
  color: rgba(245, 240, 232, 0.74);
}

.venture-copy .button-secondary.dark {
  margin-top: 18px;
}

.venture-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.venture-card {
  position: relative;
  overflow: hidden;
  min-height: 212px;
  padding: 25px;
  border: 1px solid rgba(245, 240, 232, 0.16);
  border-radius: 8px;
  background: rgba(245, 240, 232, 0.08);
  transition: transform 260ms var(--ease-out), background 260ms ease, border-color 260ms ease;
}

.venture-card:hover {
  border-color: rgba(245, 240, 232, 0.28);
  background: rgba(245, 240, 232, 0.12);
}

.venture-card span {
  color: var(--butter);
}

.venture-card strong {
  display: block;
  margin: 16px 0 10px;
  color: var(--cream);
  font-size: 22px;
  line-height: 1.25;
}

.venture-card p {
  color: rgba(245, 240, 232, 0.72);
}

.official-contact {
  background:
    linear-gradient(180deg, rgba(35, 24, 21, 0.96), rgba(35, 24, 21, 0.92)),
    url("assets/images/brand-storefront-wide.webp") center / cover no-repeat;
}

.official-contact .contact-copy h2,
.official-contact .contact-copy p {
  color: var(--brand-ground);
}

.official-contact .contact-copy h2 {
  max-width: 720px;
  font-size: clamp(34px, 3.2vw, 46px);
  line-height: 1.16;
}

.official-contact .contact-copy > p {
  max-width: 760px;
  color: rgba(245, 240, 232, 0.78);
}

.official-contact .contact-visual {
  aspect-ratio: 4 / 3;
  max-height: 520px;
}

.official-contact .contact-card {
  max-width: 620px;
}

@media (max-width: 1120px) {
  .official-page .brand-link {
    width: 48px;
    min-width: 48px;
    height: 48px;
  }

  .official-page .brand-logo-lockup {
    display: none;
  }

  .official-page .brand-logo-mark {
    width: 38px;
    height: 38px;
  }

  .official-page .nav-links {
    gap: 12px;
    font-size: 13px;
  }

  .official-hero {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-top: 118px;
  }

  .hero-showcase {
    justify-self: start;
    width: min(520px, 100%);
    max-width: 760px;
  }

  .showcase-photo {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .scene-strip,
  .product-strip,
  .news-list,
  .store-card,
  .order-section,
  .venture-layout {
    grid-template-columns: 1fr;
  }

  .reserve-grid,
  .order-grid,
  .venture-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reserve-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    grid-auto-rows: minmax(240px, auto);
    align-items: stretch;
  }

  .scene-card.large {
    grid-row: span 2;
    min-height: 520px;
  }

  .reserve-grid .scene-card.accent {
    grid-column: 1 / -1;
    min-height: 240px;
  }

  .order-copy {
    position: static;
  }
}

@media (max-width: 720px) {
  .official-page .site-header {
    grid-template-columns: 48px auto;
  }

  .official-page .brand-link {
    width: 48px;
    min-width: 48px;
    height: 48px;
  }

  .official-page .brand-logo-mark {
    width: 36px;
    height: 36px;
  }

  .official-hero {
    min-height: auto;
    gap: 22px;
    padding: 100px 14px 38px;
  }

  .official-hero::before {
    background:
      linear-gradient(180deg, rgba(35, 24, 21, 0.84) 0%, rgba(35, 24, 21, 0.7) 46%, rgba(35, 24, 21, 0.2) 100%),
      linear-gradient(90deg, rgba(35, 24, 21, 0.76), rgba(35, 24, 21, 0.28)),
      var(--official-hero-image, url("assets/images/hero-finished-store.webp")) 53% center / cover no-repeat;
  }

  .official-hero h1 {
    margin-bottom: 16px;
    font-size: 34px;
    line-height: 1.08;
  }

  .official-hero-copy p:not(.eyebrow) {
    font-size: 16px;
  }

  .official-hero .hero-actions {
    margin-top: 26px;
  }

  .hero-trust-row {
    gap: 8px;
    margin-top: 20px;
  }

  .hero-trust-row span {
    padding: 7px 10px;
    font-size: 12px;
  }

  .hero-showcase {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    width: 100%;
    padding: 8px;
    animation: reservePanelIn 700ms var(--ease-soft) 420ms both;
  }

  .showcase-photo {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .showcase-card {
    display: none;
  }

  .showcase-card.mini-program {
    display: none;
  }

  .scene-strip {
    grid-template-columns: 1fr;
    width: calc(100% - 28px);
    margin-top: 0;
  }

  .scene-strip a {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .scene-strip a:last-child {
    border-bottom: 0;
  }

  .reserve-section,
  .order-section,
  .menu-section,
  .news-section,
  .store-section,
  .venture-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .reserve-grid,
  .order-grid,
  .product-strip,
  .news-list,
  .venture-grid {
    grid-template-columns: 1fr;
  }

  .reserve-grid {
    grid-auto-rows: auto;
  }

  .scene-card,
  .order-card,
  .venture-card {
    min-height: auto;
  }

  .reserve-grid .scene-card:not(.large) {
    min-height: 220px;
  }

  .scene-card.large {
    grid-row: auto;
    min-height: 420px;
  }

  .reserve-grid .scene-card.accent {
    grid-column: auto;
    min-height: auto;
  }

  .product-tile {
    min-height: auto;
  }

  .product-tile img {
    height: 100%;
  }

  .store-card {
    padding: 26px;
  }

  .official-contact .contact-copy h2 {
    font-size: 31px;
  }

  .store-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .venture-section {
    padding-right: 14px;
    padding-left: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .official-hero-copy > *,
  .hero-showcase {
    animation: none !important;
    opacity: 1;
  }
}
