* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  background: var(--ck-paper);
  color: var(--ck-forest-deep);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

::selection {
  background: var(--ck-terracotta);
  color: var(--ck-paper);
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  z-index: 999;
  transform: translateY(-140%);
  background: var(--ck-terracotta);
  color: var(--ck-paper);
  padding: 10px 14px;
  border-radius: 999px;
  transition: transform 160ms var(--ease-soft);
}

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

.wrap {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.section {
  padding: clamp(68px, 9vw, 118px) 0;
}

.section--paper {
  background: var(--ck-paper);
}

.section--cream {
  background: var(--ck-cream);
}

.section--forest {
  background: var(--ck-forest);
  color: var(--ck-paper);
}

.section--sage {
  background: var(--ck-sage);
  color: var(--ck-paper);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--ck-terracotta);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1,
h2,
h3,
.display {
  margin: 0;
  color: var(--ck-forest);
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0;
}

.section--forest h1,
.section--forest h2,
.section--forest h3,
.section--sage h1,
.section--sage h2,
.section--sage h3 {
  color: var(--ck-paper);
}

h1,
.display {
  font-size: clamp(48px, 8vw, 92px);
  line-height: 1.02;
}

h2 {
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.07;
}

h3 {
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.12;
}

p {
  margin: 0;
}

p + p {
  margin-top: 16px;
}

.lead {
  color: var(--ck-forest);
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 27px);
  line-height: 1.45;
}

.muted {
  color: var(--ck-muted);
}

.text-highlight {
  color: var(--ck-terracotta);
  display: inline;
  background:
    linear-gradient(transparent 64%, rgba(231, 216, 198, 0.95) 64%, rgba(231, 216, 198, 0.95) 92%, transparent 92%);
}

.section--forest .text-highlight,
.section--sage .text-highlight,
.hero--forest .text-highlight {
  color: transparent;
  background: linear-gradient(90deg, var(--ck-terracotta), var(--ck-cream));
  -webkit-background-clip: text;
  background-clip: text;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: end;
  margin-bottom: clamp(36px, 6vw, 66px);
}

.section-head p:last-child {
  max-width: 390px;
  color: var(--ck-muted);
}

.section--forest .section-head p:last-child,
.section--sage .section-head p:last-child {
  color: var(--ck-cream);
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 24px;
  border: 1.5px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: inherit;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
  overflow: hidden;
  transition:
    transform 180ms var(--ease-soft),
    border-color 180ms var(--ease-soft),
    background 180ms var(--ease-soft),
    color 180ms var(--ease-soft);
}

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

.btn:active {
  transform: translateY(0) scale(0.98);
}

.btn--primary {
  background: var(--ck-terracotta);
  color: var(--ck-paper);
}

.btn--primary:hover {
  background: var(--ck-terracotta-bright);
}

.btn--forest {
  background: var(--ck-forest);
  color: var(--ck-paper);
}

.btn--outline {
  border-color: var(--ck-forest);
  color: var(--ck-forest);
}

.btn--outline:hover {
  background: var(--ck-forest);
  color: var(--ck-paper);
}

.btn--cream {
  border-color: var(--ck-cream);
  color: var(--ck-cream);
}

.btn--cream:hover {
  background: var(--ck-cream);
  color: var(--ck-forest);
}

.btn svg {
  transition: transform 180ms var(--ease-soft);
}

.btn:hover svg {
  transform: translateX(4px);
}

.site-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  min-height: var(--nav-h);
  background: rgba(249, 245, 242, 0.94);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(14px);
  transition:
    background 220ms var(--ease-soft),
    border-color 220ms var(--ease-soft),
    box-shadow 220ms var(--ease-soft);
}

.site-nav.nav--dark {
  background: rgba(41, 50, 30, 0.96);
}

.site-nav.is-scrolled {
  border-bottom-color: rgba(220, 211, 196, 0.9);
  box-shadow: 0 8px 24px rgba(41, 50, 30, 0.08);
}

.site-nav.nav--dark.is-scrolled {
  border-bottom-color: rgba(231, 216, 198, 0.18);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
}

.nav-inner {
  width: min(100% - 40px, var(--container));
  min-height: var(--nav-h);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 54px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 36px);
}

.nav-link {
  position: relative;
  color: var(--ck-forest);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 0;
  transition: color 180ms var(--ease-soft);
}

.nav--dark .nav-link,
.nav--dark .menu-toggle {
  color: var(--ck-paper);
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--ck-terracotta);
}

.nav-link.is-active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 2px;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--ck-terracotta);
  transform: translateX(-50%);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--ck-forest);
  padding: 10px;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 24px;
  background: var(--ck-forest);
  color: var(--ck-paper);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition:
    opacity 240ms var(--ease),
    transform 240ms var(--ease);
}

.mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-menu__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-menu__head img {
  height: 54px;
}

.mobile-close {
  border: 0;
  background: transparent;
  color: var(--ck-paper);
  padding: 10px;
}

.mobile-menu__links {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

.mobile-menu__links a {
  border-bottom: 1px solid rgba(231, 216, 198, 0.16);
  color: var(--ck-paper);
  font-family: var(--font-display);
  font-size: clamp(38px, 11vw, 64px);
  line-height: 1.1;
  padding: 14px 0;
}

.mobile-menu__links a.is-active {
  color: var(--ck-terracotta);
}

.mobile-menu__foot {
  color: var(--ck-terracotta);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--nav-h) + 82px) 0 clamp(70px, 9vw, 120px);
}

.hero--forest {
  min-height: 94vh;
  display: flex;
  align-items: center;
  background: var(--ck-forest);
  color: var(--ck-paper);
}

.hero--page {
  background: var(--ck-paper);
}

.hero--cream {
  background: var(--ck-cream);
}

.hero--forest-page {
  background: var(--ck-forest);
  color: var(--ck-paper);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: end;
  z-index: 2;
}

.hero-home {
  width: min(100% - 40px, 980px);
  margin-inline: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-logo {
  width: clamp(280px, 48vw, 520px);
  margin-bottom: 32px;
  animation: riseIn 760ms var(--ease) both;
}

.hero-kicker {
  color: var(--ck-cream);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.26em;
  margin-bottom: 28px;
  text-transform: uppercase;
  animation: fadeIn 700ms 120ms var(--ease) both;
}

.hero-title {
  color: var(--ck-paper);
  max-width: 920px;
  animation: riseIn 760ms 160ms var(--ease) both;
}

.hero-sub {
  max-width: 650px;
  margin: 24px auto 0;
  color: var(--ck-cream);
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.42;
  animation: riseIn 760ms 260ms var(--ease) both;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 38px;
  animation: riseIn 760ms 360ms var(--ease) both;
}

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

.flow-top {
  margin-top: 24px;
}

.footer-action {
  margin-top: 16px;
}

.lead-narrow {
  max-width: 720px;
}

.lead-centered {
  max-width: 760px;
  margin: 24px auto 0;
}

.newsletter-signed {
  color: var(--ck-cream);
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1.45;
}

.lead-cream {
  color: var(--ck-cream);
}

.cards-spaced {
  margin-bottom: 46px;
}

.cream-eyebrow {
  color: var(--ck-cream);
}

.location-feature__body h3 {
  margin-top: 20px;
}

.location-feature__body .lead {
  margin-top: 18px;
}

.hero-meta {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(41, 50, 30, 0.16);
}

.hero--forest-page .hero-meta {
  border-top-color: rgba(231, 216, 198, 0.2);
}

.meta-row {
  padding: 20px 0;
  border-bottom: 1px solid rgba(41, 50, 30, 0.16);
}

.hero--forest-page .meta-row {
  border-bottom-color: rgba(231, 216, 198, 0.2);
}

.meta-label {
  display: block;
  margin-bottom: 6px;
  color: var(--ck-terracotta);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.meta-value {
  color: var(--ck-forest);
  font-family: var(--font-display);
  font-size: 20px;
}

.hero--forest-page .meta-value {
  color: var(--ck-paper);
}

.ambient {
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  pointer-events: none;
  opacity: 0.42;
}

.ambient .string {
  fill: none;
  stroke: var(--ck-cream);
  stroke-width: 1;
  opacity: 0.4;
}

.ambient .bulb {
  transform-origin: center;
  animation: glowPulse 3.8s var(--ease-soft) infinite alternate;
}

.ambient .bulb:nth-child(odd) {
  animation-delay: 700ms;
}

.tagline-band {
  padding: 42px 0;
  background: var(--ck-cream);
  border-block: 1px solid rgba(41, 50, 30, 0.08);
  overflow: hidden;
}

.tagline-track {
  display: flex;
  width: max-content;
  gap: 48px;
  color: var(--ck-terracotta);
  font-size: clamp(18px, 2.3vw, 28px);
  font-weight: 700;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  animation: slowDrift 28s linear infinite;
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(34px, 7vw, 86px);
  align-items: center;
}

.story-copy {
  border-left: 4px solid var(--ck-terracotta);
  padding-left: clamp(22px, 3vw, 34px);
}

.story-copy .lead {
  margin-top: 24px;
}

.image-card {
  position: relative;
  min-height: 440px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--ck-cream);
  color: var(--ck-forest);
  isolation: isolate;
}

.image-card--forest {
  background: var(--ck-forest);
  color: var(--ck-paper);
}

.image-card--sage {
  background: var(--ck-sage);
  color: var(--ck-paper);
}

.image-card--terracotta {
  background: var(--ck-terracotta);
  color: var(--ck-paper);
}

.scene {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.image-caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
}

.image-caption small {
  display: block;
  margin-bottom: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  opacity: 0.72;
  text-transform: uppercase;
}

.image-caption span {
  display: block;
  max-width: 360px;
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.25;
}

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

.card,
.product-card,
.location-card,
.audience-card {
  position: relative;
  border-radius: var(--radius-lg);
  transition:
    transform 220ms var(--ease),
    box-shadow 220ms var(--ease),
    background 220ms var(--ease);
}

.card:hover,
.product-card:hover,
.location-card:hover,
.audience-card:hover {
  transform: translateY(-6px);
}

.card {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card .image-card {
  min-height: 260px;
}

.card-body {
  display: grid;
  gap: 10px;
}

.tag {
  color: var(--ck-terracotta);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.card-title {
  font-size: 30px;
}

.card-copy {
  color: var(--ck-muted);
  font-size: 14px;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ck-terracotta);
  font-size: 13px;
  font-weight: 700;
}

.statement {
  text-align: center;
}

.statement .wrap {
  max-width: 920px;
}

.statement-text {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.08;
}

.figures {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.figure {
  padding: 28px;
  border: 1px solid rgba(231, 216, 198, 0.2);
  border-radius: var(--radius-lg);
  background: rgba(249, 245, 242, 0.04);
}

.figure strong {
  display: block;
  color: var(--ck-terracotta);
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 500;
}

.menu-tabs {
  position: sticky;
  top: calc(var(--nav-h) + 12px);
  z-index: 40;
  display: flex;
  gap: 10px;
  overflow-x: auto;
  margin: 0 0 42px;
  padding: 12px;
  border: 1px solid rgba(220, 211, 196, 0.85);
  border-radius: 999px;
  background: rgba(249, 245, 242, 0.92);
  backdrop-filter: blur(16px);
  scrollbar-width: none;
}

.menu-tabs::-webkit-scrollbar {
  display: none;
}

.menu-tab {
  flex: 0 0 auto;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--ck-forest);
  font-size: 13px;
  font-weight: 700;
  padding: 10px 16px;
  transition:
    background 180ms var(--ease-soft),
    color 180ms var(--ease-soft),
    transform 180ms var(--ease-soft);
}

.menu-tab:hover {
  transform: translateY(-1px);
  background: rgba(159, 83, 36, 0.1);
}

.menu-tab.is-active {
  background: var(--ck-forest);
  color: var(--ck-paper);
}

.menu-category {
  display: grid;
  grid-template-columns: minmax(220px, 0.5fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 62px);
  padding: 40px 0;
  border-top: 1px solid var(--ck-line);
}

.menu-category h2 {
  color: var(--ck-terracotta);
  font-size: clamp(30px, 4vw, 44px);
}

.menu-category--hero {
  margin: 26px 0;
  padding: clamp(28px, 5vw, 48px);
  border: 0;
  border-radius: var(--radius-lg);
  background: var(--ck-sage);
  color: var(--ck-paper);
}

.menu-category--hero h2,
.menu-category--hero .menu-desc,
.menu-category--hero .menu-item-name,
.menu-category--hero .menu-item-desc {
  color: var(--ck-paper);
}

.menu-desc {
  max-width: 430px;
  color: var(--ck-muted);
  margin-top: 14px;
}

.menu-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu-item {
  min-height: 86px;
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(231, 216, 198, 0.56);
}

.menu-category--hero .menu-item {
  background: rgba(249, 245, 242, 0.1);
}

.menu-item-name {
  display: block;
  color: var(--ck-forest);
  font-weight: 700;
}

.menu-item-desc {
  display: block;
  margin-top: 4px;
  color: var(--ck-muted);
  font-size: 13px;
  line-height: 1.45;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.product-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 28px;
  background: var(--ck-cream);
}

.product-card:hover {
  box-shadow: var(--shadow-soft);
}

.product-card--feature {
  grid-column: span 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.78fr);
  gap: 30px;
  background: var(--ck-forest);
  color: var(--ck-paper);
}

.product-card--feature h3,
.product-card--feature .product-list,
.product-card--feature .product-desc {
  color: var(--ck-paper);
}

.product-card--soon {
  background: rgba(231, 216, 198, 0.55);
}

.badge {
  display: inline-flex;
  width: max-content;
  align-items: center;
  border-radius: 999px;
  background: var(--ck-terracotta);
  color: var(--ck-paper);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  padding: 8px 12px;
  text-transform: uppercase;
}

.product-icon {
  width: 42px;
  height: 42px;
  color: var(--ck-terracotta);
  margin-bottom: 20px;
}

.product-name {
  margin-top: 14px;
}

.product-desc {
  color: var(--ck-muted);
  margin: 16px 0 20px;
}

.product-list {
  margin: 0 0 24px;
  padding-left: 18px;
  color: var(--ck-forest);
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 26px;
}

.pill,
.pill-label {
  border-radius: 999px;
  padding: 8px 10px;
  font-size: 11px;
  font-weight: 700;
}

.pill {
  background: rgba(249, 245, 242, 0.8);
  color: var(--ck-forest);
}

.pill-label {
  background: var(--ck-forest);
  color: var(--ck-paper);
}

.product-action {
  margin-top: auto;
}

.about-split {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  gap: clamp(30px, 7vw, 90px);
  align-items: start;
}

.about-copy {
  max-width: 760px;
}

.about-copy p {
  font-size: clamp(18px, 2.1vw, 25px);
  line-height: 1.62;
}

.space-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
}

.space-card,
.audience-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--ck-paper);
}

.space-card--large {
  grid-row: span 2;
}

.space-card .image-card {
  min-height: 280px;
  margin-bottom: 22px;
}

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

.audience-card {
  background: rgba(249, 245, 242, 0.6);
}

.audience-card strong {
  color: var(--ck-terracotta);
}

.location-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--ck-cream);
}

.location-feature__body {
  padding: clamp(28px, 5vw, 58px);
}

.location-feature .image-card {
  height: 100%;
  min-height: 520px;
  border-radius: 0;
}

.location-meta {
  display: grid;
  gap: 12px;
  margin: 26px 0;
  padding: 0;
  list-style: none;
}

.location-meta li {
  padding-left: 22px;
  position: relative;
}

.location-meta li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ck-terracotta);
}

.future-locations {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.location-card {
  padding: 24px;
  background: var(--ck-paper);
  border-radius: var(--radius-lg);
}

.footer {
  background: var(--ck-forest);
  color: var(--ck-paper);
  padding: 76px 0 28px;
}

.footer-signup {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.7fr);
  gap: 28px;
  align-items: end;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(231, 216, 198, 0.16);
  margin-bottom: 44px;
}

.footer-form {
  display: flex;
  gap: 10px;
}

.footer-form input,
.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--ck-line);
  border-radius: 999px;
  background: var(--ck-paper);
  color: var(--ck-forest);
  padding: 14px 16px;
  outline: none;
}

.field textarea {
  min-height: 108px;
  resize: vertical;
  border-radius: 18px;
}

.footer-form input:focus,
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--ck-terracotta);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.3fr) repeat(3, minmax(160px, 0.7fr));
  gap: 30px;
}

.footer-logo {
  width: 180px;
  margin-bottom: 18px;
}

.footer h3 {
  color: var(--ck-paper);
}

.footer-heading {
  color: var(--ck-terracotta);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

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

.footer a {
  color: var(--ck-cream);
}

.footer a:hover {
  color: var(--ck-terracotta);
}

.footer-base {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid var(--ck-terracotta);
  color: var(--ck-sage);
  font-size: 13px;
}

.modal-scrim {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(27, 32, 20, 0.68);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms var(--ease-soft);
}

.modal-scrim.is-open {
  opacity: 1;
  pointer-events: auto;
}

.modal {
  width: min(100%, 560px);
  max-height: min(92vh, 760px);
  overflow: auto;
  border-radius: var(--radius-lg);
  background: var(--ck-paper);
  padding: 32px;
  transform: translateY(20px) scale(0.98);
  transition: transform 220ms var(--ease);
}

.modal-scrim.is-open .modal {
  transform: translateY(0) scale(1);
}

.modal-close {
  float: right;
  border: 0;
  background: transparent;
  color: var(--ck-forest);
  padding: 6px;
}

.modal-sub {
  color: var(--ck-muted);
  margin: 12px 0 22px;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.field {
  display: grid;
  gap: 6px;
}

.field label {
  color: var(--ck-forest);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-error {
  display: none;
  color: var(--ck-terracotta);
  font-size: 13px;
  font-weight: 700;
}

.form-error.is-visible {
  display: block;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 700ms var(--ease),
    transform 700ms var(--ease);
}

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

.steam {
  animation: steamRise 3.8s var(--ease-soft) infinite;
}

.steam:nth-child(2) {
  animation-delay: 600ms;
}

.steam:nth-child(3) {
  animation-delay: 1.1s;
}

.leaf-float {
  transform-origin: center;
  animation: leafFloat 4.6s var(--ease-soft) infinite alternate;
}

.light-dot {
  animation: glowPulse 2.8s var(--ease-soft) infinite alternate;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slowDrift {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes steamRise {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  35% {
    opacity: 0.75;
  }
  100% {
    opacity: 0;
    transform: translateY(-22px);
  }
}

@keyframes glowPulse {
  from {
    opacity: 0.45;
  }
  to {
    opacity: 1;
  }
}

@keyframes leafFloat {
  from {
    transform: translateY(0) rotate(-1deg);
  }
  to {
    transform: translateY(-10px) rotate(2deg);
  }
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

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

  .hero-grid,
  .story-grid,
  .section-head,
  .menu-category,
  .product-card--feature,
  .about-split,
  .location-feature,
  .footer-signup {
    grid-template-columns: 1fr;
  }

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

  .product-card--feature {
    grid-column: span 2;
  }

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

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

/* Motion and structure polish pass. */
.section > .wrap {
  position: relative;
}

.section--paper + .section--cream,
.section--cream + .section--forest,
.section--forest + .section--paper,
.section--paper + .section--paper,
.section--cream + .section--cream {
  border-top: 1px solid rgba(41, 50, 30, 0.08);
}

.section-head {
  padding-top: 2px;
}

.section-head::after {
  content: "";
  grid-column: 1 / -1;
  width: min(100%, 280px);
  height: 1px;
  margin-top: 6px;
  background: linear-gradient(90deg, var(--ck-terracotta), rgba(159, 83, 36, 0));
  transform-origin: left;
  animation: drawRule 900ms var(--ease) both;
}

.hero--forest::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 38%, rgba(231, 216, 198, 0.08), transparent 28%),
    radial-gradient(circle at 18% 82%, rgba(159, 83, 36, 0.1), transparent 24%);
  opacity: 0.7;
  animation: heroBreath 9s var(--ease-soft) infinite alternate;
}

.hero-home,
.hero-grid {
  isolation: isolate;
}

.hero-kicker {
  position: relative;
  width: max-content;
  max-width: 100%;
  margin-inline: auto;
}

.hero-kicker::before,
.hero-kicker::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 34px;
  height: 1px;
  background: rgba(231, 216, 198, 0.44);
}

.hero-kicker::before {
  right: calc(100% + 16px);
}

.hero-kicker::after {
  left: calc(100% + 16px);
}

.text-highlight {
  background-size: 100% 100%, 220% 100%;
  transition: color 220ms var(--ease-soft);
}

.hero--forest .text-highlight,
.section--forest .text-highlight,
.section--sage .text-highlight {
  background-size: 220% 100%;
  animation: highlightDrift 7s var(--ease-soft) infinite alternate;
}

.btn::after {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(110deg, transparent 18%, rgba(249, 245, 242, 0.32) 44%, transparent 64%);
  transform: translateX(-130%);
  transition: transform 520ms var(--ease);
  pointer-events: none;
}

.btn:hover::after {
  transform: translateX(130%);
}

.btn--outline::after,
.btn--cream::after {
  background: linear-gradient(110deg, transparent 18%, rgba(159, 83, 36, 0.16) 44%, transparent 64%);
}

.nav-link::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--ease);
  opacity: 0.35;
}

.nav-link:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.image-card {
  box-shadow: inset 0 0 0 1px rgba(41, 50, 30, 0.08);
}

.image-card .scene {
  transform: scale(1.01);
  transition: transform 900ms var(--ease), filter 900ms var(--ease);
}

.card:hover .scene,
.product-card:hover .scene,
.location-feature:hover .scene,
.space-card:hover .scene {
  transform: scale(1.045) translateY(-4px);
}

.image-caption {
  transform: translateY(0);
  transition: transform 300ms var(--ease), opacity 300ms var(--ease);
}

.card:hover .image-caption,
.product-card:hover .image-caption,
.location-feature:hover .image-caption {
  transform: translateY(-4px);
}

.card,
.product-card,
.location-card,
.audience-card,
.space-card {
  will-change: transform;
}

.card-body,
.product-card,
.location-card,
.audience-card,
.space-card {
  padding-block: 2px;
}

.card {
  gap: 20px;
}

.card-link {
  position: relative;
  width: max-content;
  padding-bottom: 3px;
}

.card-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--ease);
}

.card-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.product-card,
.location-card,
.audience-card,
.space-card {
  padding: clamp(24px, 3vw, 34px);
}

.product-card--feature {
  padding: clamp(28px, 4vw, 44px);
}

.product-card::before,
.location-card::before,
.audience-card::before,
.space-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(159, 83, 36, 0);
  pointer-events: none;
  transition: border-color 240ms var(--ease), inset 240ms var(--ease);
}

.product-card:hover::before,
.location-card:hover::before,
.audience-card:hover::before,
.space-card:hover::before {
  inset: 6px;
  border-color: rgba(159, 83, 36, 0.28);
}

.menu-tabs {
  box-shadow: 0 10px 30px rgba(41, 50, 30, 0.06);
}

.menu-tab {
  position: relative;
  overflow: hidden;
}

.menu-tab::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 6px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transition: transform 180ms var(--ease);
  opacity: 0.28;
}

.menu-tab:hover::after,
.menu-tab.is-active::after {
  transform: scaleX(1);
}

.menu-category {
  position: relative;
}

.menu-category::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 72px;
  height: 1px;
  background: var(--ck-terracotta);
  transform-origin: left;
}

.menu-category--hero::before {
  display: none;
}

.menu-item {
  transition: transform 180ms var(--ease), background 180ms var(--ease), box-shadow 180ms var(--ease);
}

.menu-item:hover {
  transform: translateY(-2px);
  background: rgba(231, 216, 198, 0.78);
  box-shadow: 0 10px 24px rgba(41, 50, 30, 0.08);
}

.menu-category--hero .menu-item:hover {
  background: rgba(249, 245, 242, 0.16);
}

.figures {
  align-items: stretch;
}

.figure {
  position: relative;
  overflow: hidden;
}

.figure::after {
  content: "";
  position: absolute;
  right: -38px;
  bottom: -38px;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(159, 83, 36, 0.34);
  border-radius: 50%;
  animation: slowSpin 18s linear infinite;
}

.footer-signup,
.footer-grid {
  row-gap: 34px;
}

.field input,
.field select,
.field textarea,
.footer-form input {
  transition: border-color 180ms var(--ease), box-shadow 180ms var(--ease), transform 180ms var(--ease);
}

.field input:focus,
.field select:focus,
.field textarea:focus,
.footer-form input:focus {
  box-shadow: 0 0 0 4px rgba(159, 83, 36, 0.12);
}

html.reveal-ready .reveal {
  transition-delay: var(--reveal-delay, 0ms);
}

@keyframes drawRule {
  from {
    transform: scaleX(0);
    opacity: 0;
  }
  to {
    transform: scaleX(1);
    opacity: 1;
  }
}

@keyframes heroBreath {
  from {
    opacity: 0.42;
    transform: scale(1);
  }
  to {
    opacity: 0.78;
    transform: scale(1.04);
  }
}

@keyframes highlightDrift {
  from {
    background-position: 0% 50%;
  }
  to {
    background-position: 100% 50%;
  }
}

@keyframes slowSpin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 980px) {
  .product-card,
  .location-card,
  .audience-card,
  .space-card {
    padding: 26px;
  }

  .menu-category {
    gap: 18px;
  }
}

@media (max-width: 680px) {
  .hero-kicker::before,
  .hero-kicker::after {
    display: none;
  }

  .section {
    padding-block: 68px;
  }

  .product-card,
  .location-card,
  .audience-card,
  .space-card,
  .product-card--feature {
    padding: 22px;
  }

  .image-caption {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .menu-tabs {
    top: calc(var(--nav-h) + 8px);
    padding: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero--forest::before,
  .tagline-track,
  .ambient .bulb,
  .steam,
  .leaf-float,
  .light-dot,
  .figure::after,
  .section-head::after,
  .section--forest .text-highlight,
  .section--sage .text-highlight,
  .hero--forest .text-highlight {
    animation: none !important;
  }
}

@media (max-width: 680px) {
  :root {
    --nav-h: 74px;
  }

  .wrap,
  .nav-inner,
  .hero-home {
    width: min(100% - 32px, var(--container));
  }

  .nav-logo img {
    height: 44px;
  }

  .hero {
    padding-top: calc(var(--nav-h) + 54px);
  }

  .hero--forest {
    min-height: 88vh;
  }

  .hero-actions,
  .footer-form {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .products-grid,
  .cards,
  .audience-grid,
  .menu-list,
  .future-locations,
  .footer-grid,
  .figures,
  .space-grid {
    grid-template-columns: 1fr;
  }

  .product-card--feature {
    grid-column: auto;
  }

  .image-card,
  .location-feature .image-card {
    min-height: 340px;
  }

  .menu-tabs {
    border-radius: 18px;
  }

  .tagline-track {
    animation-duration: 20s;
  }
}

@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;
  }
}

/* Design rescue pass: stronger hierarchy, safer reveal behavior, calmer first view. */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(41, 50, 30, 0.03) 1px, transparent 1px),
    linear-gradient(180deg, rgba(41, 50, 30, 0.022) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(to bottom, transparent, black 18%, black 82%, transparent);
}

.wrap,
.nav-inner,
.hero-home {
  width: min(100% - 48px, var(--container));
}

.site-nav {
  background: rgba(249, 245, 242, 0.97);
}

.site-nav.nav--dark {
  background: rgba(41, 50, 30, 0.98);
}

.nav-logo img {
  height: 46px;
}

.section {
  padding: clamp(76px, 8vw, 112px) 0;
}

h1,
.display {
  font-size: clamp(48px, 6.2vw, 80px);
  line-height: 0.98;
}

h2 {
  font-size: clamp(34px, 4.3vw, 54px);
  line-height: 1.02;
}

h3 {
  font-size: clamp(24px, 2.5vw, 32px);
}

.lead {
  font-size: clamp(20px, 2vw, 26px);
}

.text-highlight {
  background: linear-gradient(transparent 58%, rgba(231, 216, 198, 0.98) 58%, rgba(231, 216, 198, 0.98) 92%, transparent 92%);
}

.hero {
  padding: calc(var(--nav-h) + 72px) 0 clamp(76px, 8vw, 108px);
}

.hero--forest {
  min-height: min(820px, 92vh);
}

.hero-logo {
  width: clamp(132px, 14vw, 190px);
  margin-bottom: 34px;
}

.hero-title {
  max-width: 820px;
}

.hero-title .text-highlight {
  white-space: nowrap;
}

.hero-sub {
  max-width: 620px;
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.38;
}

.hero-logo,
.hero-kicker,
.hero-title,
.hero-sub,
.hero-actions {
  animation: none;
  opacity: 1;
  transform: none;
}

.ambient {
  height: 30%;
  opacity: 0.28;
}

.tagline-band {
  padding: 28px 0;
}

.story-grid {
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 6vw, 74px);
}

.image-card {
  min-height: 400px;
  border-radius: 14px;
}

.image-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 48%;
  background: linear-gradient(to top, rgba(27, 32, 20, 0.5), rgba(27, 32, 20, 0));
  z-index: 1;
  pointer-events: none;
}

.image-card:not(.image-card--forest):not(.image-card--sage):not(.image-card--terracotta)::after {
  background: linear-gradient(to top, rgba(41, 50, 30, 0.2), rgba(41, 50, 30, 0));
}

.image-caption {
  text-shadow: 0 1px 10px rgba(27, 32, 20, 0.22);
}

.card .image-card {
  min-height: 235px;
}

.cards {
  gap: 24px;
}

.card:hover,
.product-card:hover,
.location-card:hover,
.audience-card:hover {
  transform: translateY(-4px);
}

.menu-tabs {
  border-radius: 18px;
}

.menu-category {
  padding: 34px 0;
}

.menu-item {
  min-height: 78px;
  padding: 16px;
}

.footer {
  padding-top: 68px;
}

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

html.reveal-ready .reveal {
  opacity: 0;
  transform: translateY(22px);
}

html.reveal-ready .reveal.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 680px) {
  :root {
    --nav-h: 72px;
  }

  .wrap,
  .nav-inner,
  .hero-home {
    width: min(100% - 36px, var(--container));
  }

  .hero {
    padding-top: calc(var(--nav-h) + 48px);
  }

  .hero--forest {
    min-height: 760px;
  }

  .hero-logo {
    width: 118px;
    margin-bottom: 30px;
  }

  .hero-title {
    font-size: clamp(44px, 15vw, 62px);
  }

  .hero-sub {
    font-size: 23px;
  }

  .ambient {
    height: 22%;
  }

  .tagline-track {
    width: 100%;
    transform: none;
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 18px;
    font-size: 12px;
    letter-spacing: 0.2em;
  }

  .tagline-track span:nth-child(n+4) {
    display: none;
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .story-grid,
  .section-head,
  .menu-category,
  .product-card--feature,
  .about-split,
  .location-feature,
  .footer-signup {
    grid-template-columns: 1fr;
  }

  .products-grid,
  .cards,
  .audience-grid,
  .future-locations,
  .footer-grid,
  .figures,
  .space-grid,
  .menu-list {
    grid-template-columns: 1fr;
  }

  .product-card--feature {
    grid-column: auto;
  }
}

/* Vesper premium motion pass: cinematic structure, tactile depth, calmer page flow. */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 260;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--ck-terracotta), var(--ck-cream));
  transform: scaleX(var(--scroll-progress, 0));
  transform-origin: left;
  pointer-events: none;
}

.site-nav::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1px;
  width: min(100% - 48px, var(--container));
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(159, 83, 36, 0.34), transparent);
  transform: translateX(-50%) scaleX(0.35);
  opacity: 0;
  transition: opacity 260ms var(--ease), transform 260ms var(--ease);
}

.site-nav.is-scrolled::after {
  opacity: 1;
  transform: translateX(-50%) scaleX(1);
}

.hero--page,
.hero--cream,
.hero--forest-page {
  min-height: auto;
  padding-bottom: clamp(56px, 7vw, 82px);
}

.hero--page,
.hero--cream {
  background:
    radial-gradient(circle at 84% 28%, rgba(159, 83, 36, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(249, 245, 242, 0.9), var(--ck-paper));
}

.hero--cream {
  background:
    radial-gradient(circle at 16% 82%, rgba(111, 121, 83, 0.14), transparent 30%),
    linear-gradient(180deg, var(--ck-cream), rgba(249, 245, 242, 0.92));
}

.hero--forest-page::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 22%, rgba(231, 216, 198, 0.08), transparent 28%),
    radial-gradient(circle at 84% 72%, rgba(159, 83, 36, 0.16), transparent 30%);
  animation: heroBreath 10s var(--ease-soft) infinite alternate;
}

.hero--page .hero-grid,
.hero--cream .hero-grid,
.hero--forest-page .hero-grid {
  align-items: center;
}

.hero-meta {
  position: relative;
  border-top: 0;
  padding: clamp(18px, 2.4vw, 28px);
  border-radius: 16px;
  background: rgba(249, 245, 242, 0.62);
  box-shadow: inset 0 0 0 1px rgba(41, 50, 30, 0.08);
}

.hero--forest-page .hero-meta {
  background: rgba(249, 245, 242, 0.045);
  box-shadow: inset 0 0 0 1px rgba(231, 216, 198, 0.16);
}

.meta-row:first-child {
  padding-top: 0;
}

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

.image-card::before,
.product-card::after,
.location-card::after,
.audience-card::after,
.space-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(249, 245, 242, 0.22), transparent 26%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms var(--ease);
}

.image-card:hover::before,
.product-card:hover::after,
.location-card:hover::after,
.audience-card:hover::after,
.space-card:hover::after {
  opacity: 1;
}

.image-caption {
  z-index: 3;
}

.product-card::after,
.location-card::after,
.audience-card::after,
.space-card::after {
  z-index: 1;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(159, 83, 36, 0.12), transparent 30%);
}

.product-card > *,
.location-card > *,
.audience-card > *,
.space-card > * {
  position: relative;
  z-index: 2;
}

.card,
.product-card,
.space-card,
.audience-card,
.location-card {
  box-shadow: 0 1px 0 rgba(41, 50, 30, 0.05);
}

.product-card:hover,
.space-card:hover,
.audience-card:hover,
.location-card:hover {
  box-shadow: 0 18px 44px rgba(41, 50, 30, 0.12);
}

.cards .card:nth-child(2),
.products-grid .product-card:nth-child(3),
.audience-grid .audience-card:nth-child(2n) {
  --reveal-delay: 90ms;
}

.cards .card:nth-child(3),
.products-grid .product-card:nth-child(4),
.audience-grid .audience-card:nth-child(3n) {
  --reveal-delay: 160ms;
}

.menu-category {
  border-top-color: rgba(41, 50, 30, 0.12);
}

.menu-category > div:first-child {
  position: sticky;
  top: 144px;
  align-self: start;
}

.menu-item {
  position: relative;
  overflow: hidden;
}

.menu-item::after {
  content: "";
  position: absolute;
  inset: auto 16px 12px;
  height: 1px;
  background: linear-gradient(90deg, rgba(159, 83, 36, 0.55), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms var(--ease);
}

.menu-item:hover::after {
  transform: scaleX(1);
}

.mobile-menu__links a {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 320ms var(--ease), transform 320ms var(--ease), color 180ms var(--ease-soft);
}

.mobile-menu.is-open .mobile-menu__links a {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.is-open .mobile-menu__links a:nth-child(2) { transition-delay: 50ms; }
.mobile-menu.is-open .mobile-menu__links a:nth-child(3) { transition-delay: 100ms; }
.mobile-menu.is-open .mobile-menu__links a:nth-child(4) { transition-delay: 150ms; }
.mobile-menu.is-open .mobile-menu__links a:nth-child(5) { transition-delay: 200ms; }

.footer {
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(231, 216, 198, 0.12);
  border-radius: 50%;
  animation: slowSpin 26s linear infinite;
}

.footer > .wrap {
  position: relative;
  z-index: 1;
}

@media (max-width: 980px) {
  .menu-category > div:first-child {
    position: static;
  }

  .hero-meta {
    max-width: 680px;
  }
}

@media (max-width: 680px) {
  .scroll-progress {
    height: 2px;
  }

  .hero--page,
  .hero--cream,
  .hero--forest-page {
    padding-bottom: 56px;
  }

  .hero-meta {
    padding: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-progress,
  .site-nav::after,
  .hero--forest-page::before,
  .footer::before {
    animation: none !important;
    transition: none !important;
  }
}

/* Vesper Editorial Kadé system lock: final hierarchy, spacing, focus, and motion rules. */
:root {
  --space-page: clamp(78px, 9vw, 124px);
  --space-page-tight: clamp(54px, 6vw, 82px);
  --card-pad: clamp(24px, 2.6vw, 34px);
  --editorial-border: rgba(41, 50, 30, 0.1);
  --focus-ring: 0 0 0 4px rgba(159, 83, 36, 0.2);
}

body {
  letter-spacing: 0;
}

:focus-visible {
  outline: 2px solid var(--ck-terracotta);
  outline-offset: 4px;
}

.btn:focus-visible,
.menu-tab:focus-visible,
.mobile-close:focus-visible,
.menu-toggle:focus-visible,
.modal-close:focus-visible,
.footer-form input:focus-visible,
.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible {
  outline: 0;
  box-shadow: var(--focus-ring);
}

.section {
  padding-block: var(--space-page);
}

.section--paper,
.section--cream {
  position: relative;
}

.section--paper::before,
.section--cream::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 0%, rgba(159, 83, 36, 0.045), transparent 28%),
    radial-gradient(circle at 92% 78%, rgba(111, 121, 83, 0.045), transparent 24%);
  opacity: 0.8;
}

.section > .wrap {
  z-index: 1;
}

.hero {
  padding-top: calc(var(--nav-h) + clamp(58px, 7vw, 92px));
}

.hero--forest {
  min-height: min(860px, 94vh);
}

.hero--page,
.hero--cream,
.hero--forest-page {
  padding-block: calc(var(--nav-h) + clamp(52px, 7vw, 84px)) var(--space-page-tight);
}

.hero-grid {
  gap: clamp(34px, 7vw, 96px);
}

h1,
.display {
  font-size: clamp(50px, 6vw, 84px);
  line-height: 0.98;
}

h2 {
  font-size: clamp(36px, 4.2vw, 58px);
  line-height: 1.03;
}

.lead {
  max-width: 760px;
}

.hero-sub,
.lead {
  text-wrap: pretty;
}

.hero-title,
.section-head h2,
.statement-text {
  text-wrap: balance;
}

.text-highlight {
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  padding-inline: 0.02em;
}

.hero--forest .text-highlight,
.section--forest .text-highlight,
.section--sage .text-highlight {
  text-shadow: 0 14px 34px rgba(159, 83, 36, 0.16);
}

html.reveal-ready:not(.is-loaded) .hero--forest .hero-kicker,
html.reveal-ready:not(.is-loaded) .hero--forest .hero-logo,
html.reveal-ready:not(.is-loaded) .hero--forest .hero-title,
html.reveal-ready:not(.is-loaded) .hero--forest .hero-sub,
html.reveal-ready:not(.is-loaded) .hero--forest .hero-actions {
  opacity: 0;
  transform: translateY(18px);
}

html.is-loaded .hero--forest .hero-kicker,
html.is-loaded .hero--forest .hero-logo,
html.is-loaded .hero--forest .hero-title,
html.is-loaded .hero--forest .hero-sub,
html.is-loaded .hero--forest .hero-actions {
  animation: vesperHeroIn 760ms var(--ease) both;
}

html.is-loaded .hero--forest .hero-logo { animation-delay: 90ms; }
html.is-loaded .hero--forest .hero-title { animation-delay: 170ms; }
html.is-loaded .hero--forest .hero-sub { animation-delay: 260ms; }
html.is-loaded .hero--forest .hero-actions { animation-delay: 360ms; }

.hero-meta {
  backdrop-filter: blur(18px);
  box-shadow:
    inset 0 0 0 1px rgba(41, 50, 30, 0.08),
    0 18px 50px rgba(41, 50, 30, 0.07);
}

.hero--forest-page .hero-meta {
  box-shadow:
    inset 0 0 0 1px rgba(231, 216, 198, 0.16),
    0 18px 50px rgba(0, 0, 0, 0.16);
}

.section-head {
  align-items: center;
}

.section-head p:last-child {
  justify-self: end;
}

.cards,
.products-grid,
.audience-grid,
.future-locations,
.space-grid {
  gap: clamp(18px, 2.5vw, 30px);
}

.card {
  min-width: 0;
}

.card-body {
  padding: 0 4px 2px;
}

.card-title,
.product-name,
.location-card h3,
.space-card h3 {
  text-wrap: balance;
}

.card-copy,
.product-desc,
.menu-desc,
.location-card p,
.space-card p,
.audience-card p {
  text-wrap: pretty;
}

.image-card,
.product-card,
.location-feature,
.space-card,
.audience-card,
.location-card {
  border-radius: 16px;
}

.product-card,
.space-card,
.audience-card,
.location-card {
  padding: var(--card-pad);
  border: 1px solid rgba(41, 50, 30, 0.08);
}

.product-card--feature {
  border-color: rgba(231, 216, 198, 0.16);
}

.image-caption span {
  max-width: 420px;
}

.menu-tabs {
  gap: 8px;
  margin-bottom: clamp(34px, 5vw, 56px);
  border-color: rgba(41, 50, 30, 0.12);
  box-shadow:
    0 14px 40px rgba(41, 50, 30, 0.08),
    inset 0 0 0 1px rgba(249, 245, 242, 0.72);
}

.menu-tab[aria-selected="true"],
.menu-tab.is-active {
  background: var(--ck-forest);
  color: var(--ck-paper);
}

.menu-category {
  padding-block: clamp(34px, 5vw, 52px);
}

.menu-list {
  gap: 14px;
}

.menu-item {
  border: 1px solid rgba(41, 50, 30, 0.055);
}

.menu-category--hero .menu-item {
  border-color: rgba(249, 245, 242, 0.12);
}

.footer {
  border-top: 1px solid rgba(231, 216, 198, 0.12);
}

.footer-grid {
  align-items: start;
}

.footer p {
  max-width: 340px;
}

.modal {
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
}

.modal-success {
  display: grid;
  gap: 14px;
  min-height: 240px;
  place-content: center;
  text-align: center;
}

@keyframes vesperHeroIn {
  from {
    opacity: 0;
    transform: translateY(18px);
    filter: blur(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@media (max-width: 980px) {
  .section-head p:last-child {
    justify-self: start;
  }

  .hero-grid {
    align-items: start;
  }
}

@media (max-width: 680px) {
  :root {
    --space-page: 68px;
    --space-page-tight: 52px;
    --card-pad: 22px;
  }

  h1,
  .display {
    font-size: clamp(44px, 13.5vw, 60px);
  }

  h2 {
    font-size: clamp(34px, 11vw, 46px);
  }

  .hero--forest {
    min-height: 760px;
  }

  .hero-kicker {
    white-space: normal;
  }

  .hero-actions {
    width: 100%;
    max-width: 260px;
  }

  .menu-tabs {
    border-radius: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html.reveal-ready:not(.is-loaded) .hero--forest .hero-kicker,
  html.reveal-ready:not(.is-loaded) .hero--forest .hero-logo,
  html.reveal-ready:not(.is-loaded) .hero--forest .hero-title,
  html.reveal-ready:not(.is-loaded) .hero--forest .hero-sub,
  html.reveal-ready:not(.is-loaded) .hero--forest .hero-actions {
    opacity: 1;
    transform: none;
  }

  html.is-loaded .hero--forest .hero-kicker,
  html.is-loaded .hero--forest .hero-logo,
  html.is-loaded .hero--forest .hero-title,
  html.is-loaded .hero--forest .hero-sub,
  html.is-loaded .hero--forest .hero-actions {
    animation: none !important;
  }
}
