:root {
  --forest: #1f3b2e;
  --forest-deep: #152a21;
  --forest-soft: #2f5544;
  --terracotta: #c64a4a;
  --warm-beige: #e7dcc7;
  --espresso: #4b3426;
  --cream: #f6f1e6;
  --sage: #8da792;
  --ink: #26322c;
  --muted: #68746d;
  --line: rgba(31, 59, 46, .17);
  --serif: Didot, "Bodoni 72", "Bodoni MT", Georgia, "Times New Roman", serif;
  --sans: Inter, Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  --shadow: 0 28px 70px rgba(47, 42, 34, .13);
  --radius: 22px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

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

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

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 16px;
  color: var(--cream);
  background: var(--forest);
  transform: translateY(-180%);
}

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

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

.container {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(31, 59, 46, .12);
  background: rgba(246, 241, 230, .92);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(1320px, calc(100% - 48px));
  min-height: 82px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand-lockup {
  display: grid;
  grid-template-columns: 39px auto;
  grid-template-rows: 1fr auto;
  column-gap: 11px;
  align-items: center;
  flex: 0 0 auto;
}

.brand-lockup img {
  grid-row: 1 / 3;
  width: 39px;
  height: 41px;
}

.brand-word {
  font-family: var(--serif);
  font-size: 1.82rem;
  line-height: .78;
  letter-spacing: .12em;
  color: var(--forest);
}

.brand-origin {
  margin-top: 6px;
  color: var(--espresso);
  font-size: .57rem;
  line-height: 1;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(16px, 2.3vw, 34px);
  color: #405048;
  font-size: .78rem;
  font-weight: 750;
  letter-spacing: .075em;
  text-transform: uppercase;
}

.site-nav > a:not(.nav-access) {
  position: relative;
  padding-block: 12px;
}

.site-nav > a:not(.nav-access)::after {
  content: "";
  position: absolute;
  right: 100%;
  bottom: 6px;
  left: 0;
  height: 1px;
  background: var(--terracotta);
  transition: right .25s ease;
}

.site-nav > a:not(.nav-access):hover::after { right: 0; }

.nav-access {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 17px;
  color: var(--cream);
  background: var(--forest);
  border: 1px solid var(--forest);
  transition: background .2s ease, color .2s ease;
}

.nav-access:hover {
  color: var(--forest);
  background: transparent;
}

.menu-toggle {
  display: none;
  width: 45px;
  height: 45px;
  border: 1px solid var(--line);
  background: transparent;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 1px;
  background: var(--forest);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 8vw, 120px) 0 0;
  background:
    radial-gradient(circle at 8% 12%, rgba(231, 220, 199, .82), transparent 30%),
    var(--cream);
}

.hero-pattern {
  position: absolute;
  top: 15%;
  right: -8%;
  width: 48vw;
  height: 42vw;
  min-width: 520px;
  min-height: 460px;
  opacity: .18;
  pointer-events: none;
  background-image:
    linear-gradient(30deg, transparent 48%, var(--forest) 49%, var(--forest) 50%, transparent 51%),
    linear-gradient(150deg, transparent 48%, var(--forest) 49%, var(--forest) 50%, transparent 51%);
  background-size: 76px 44px;
  mask-image: linear-gradient(120deg, transparent 12%, #000 76%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(410px, 1.08fr);
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}

.kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 24px;
  color: var(--forest);
  font-size: .72rem;
  font-weight: 750;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.kicker span {
  width: 36px;
  height: 1px;
  background: currentColor;
}

.kicker.terracotta { color: var(--terracotta); }
.kicker.light { color: var(--warm-beige); }

.hero-brand {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 28px;
}

.hero-brand img { width: clamp(66px, 6.5vw, 94px); }

.hero-brand span {
  color: var(--forest);
  font-family: var(--serif);
  font-size: clamp(4rem, 7.2vw, 7.2rem);
  line-height: .72;
  letter-spacing: .1em;
}

.hero h1,
.section-intro h2,
.universe-heading h2,
.story-copy h2,
.space-copy h2,
.access-copy h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.035em;
}

.hero h1 {
  margin: 0;
  color: var(--espresso);
  font-size: clamp(3rem, 5.35vw, 5.8rem);
  line-height: .95;
}

.hero h1 em {
  color: var(--forest);
  font-weight: 400;
}

.hero-lead {
  max-width: 620px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.25vw, 1.14rem);
  line-height: 1.82;
}

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

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 22px;
  border: 1px solid transparent;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .075em;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, color .2s ease, border .2s ease;
}

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

.button-primary {
  color: var(--cream);
  background: var(--forest);
  border-color: var(--forest);
}

.button-primary:hover { background: var(--forest-deep); }

.button-secondary {
  color: var(--forest);
  border-color: rgba(31, 59, 46, .32);
  background: rgba(246, 241, 230, .55);
}

.button-secondary:hover { background: var(--warm-beige); }

.button-cream {
  color: var(--forest);
  background: var(--cream);
}

.brand-mantra {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 38px 0 0;
  color: var(--terracotta);
  font-size: .69rem;
  font-weight: 800;
  letter-spacing: .19em;
  text-transform: uppercase;
}

.brand-mantra i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
}

.hero-media {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  border-radius: 46% 46% 12px 12px;
  background: var(--forest);
  box-shadow: var(--shadow);
}

.hero-media > img {
  width: 100%;
  height: 100%;
  min-height: 640px;
  object-fit: cover;
  object-position: 56% center;
}

.hero-media-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(21, 42, 33, .06) 38%, rgba(21, 42, 33, .86));
}

.experience-note {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 18px;
  padding: 18px 20px;
  color: var(--cream);
  border: 1px solid rgba(246, 241, 230, .28);
  background: rgba(21, 42, 33, .68);
  backdrop-filter: blur(12px);
}

.note-number {
  color: var(--warm-beige);
  font-family: var(--serif);
  font-size: 2.65rem;
  line-height: 1;
}

.experience-note strong,
.experience-note small { display: block; }

.experience-note strong {
  font-size: .76rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.experience-note small {
  margin-top: 4px;
  color: rgba(246, 241, 230, .7);
  font-size: .74rem;
}

.hex-outline {
  position: absolute;
  width: 90px;
  aspect-ratio: 1;
  border: 1px solid rgba(246, 241, 230, .4);
  clip-path: polygon(25% 7%, 75% 7%, 100% 50%, 75% 93%, 25% 93%, 0 50%);
}

.hex-a { top: 28px; right: 24px; }
.hex-b { top: 75px; right: 102px; opacity: .58; }

.family-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  margin-top: clamp(55px, 7vw, 96px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.family-strip span {
  padding: 22px 12px;
  color: var(--forest);
  border-left: 1px solid var(--line);
  font-family: var(--serif);
  font-size: clamp(1rem, 1.5vw, 1.32rem);
  text-align: center;
}

.family-strip span:first-child { border-left: 0; }

.section { padding: clamp(86px, 10vw, 140px) 0; }

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .75fr);
  gap: clamp(36px, 7vw, 98px);
  align-items: end;
  margin-bottom: 58px;
}

.section-intro h2,
.universe-heading h2,
.story-copy h2,
.space-copy h2,
.access-copy h2 {
  margin: 0;
  font-size: clamp(2.8rem, 5vw, 5.25rem);
  line-height: .94;
}

.section-intro > p,
.universe-heading > p:last-child,
.space-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.85;
}

.experiences { background: #fbf7ef; }

.experience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.experience-card {
  position: relative;
  min-height: 400px;
  padding: clamp(28px, 4vw, 48px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(246, 241, 230, .36);
  transition: background .22s ease, transform .22s ease;
}

.experience-card:hover {
  z-index: 2;
  transform: translateY(-4px);
  background: var(--cream);
  box-shadow: var(--shadow);
}

.experience-card.featured {
  color: var(--cream);
  background: var(--forest);
}

.experience-card.featured p { color: rgba(246, 241, 230, .7); }
.experience-card.featured a { color: var(--warm-beige); }

.experience-card.quiet { background: var(--warm-beige); }

.card-index {
  position: absolute;
  top: 34px;
  right: 36px;
  color: var(--terracotta);
  font-family: var(--serif);
  font-size: 1rem;
}

.featured .card-index { color: var(--warm-beige); }

.card-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  color: var(--terracotta);
  border: 1px solid currentColor;
  font-family: var(--serif);
  font-size: 1.55rem;
  clip-path: polygon(25% 7%, 75% 7%, 100% 50%, 75% 93%, 25% 93%, 0 50%);
}

.featured .card-icon { color: var(--warm-beige); }

.coffee-icon {
  background: url('../img/mol-mark.svg') center / 36px no-repeat;
  border-color: var(--forest);
}

.experience-card h3 {
  max-width: 440px;
  margin: 48px 0 16px;
  font-family: var(--serif);
  font-size: clamp(2rem, 3.2vw, 3.25rem);
  font-weight: 400;
  line-height: 1;
}

.experience-card p {
  max-width: 480px;
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.experience-card a,
.coming-label {
  position: absolute;
  bottom: 42px;
  left: clamp(28px, 4vw, 48px);
  color: var(--forest);
  font-size: .75rem;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.experience-card a:hover { color: var(--terracotta); }

.coming-label { color: var(--terracotta); }

.universe {
  position: relative;
  overflow: hidden;
  color: var(--cream);
  background: var(--forest);
}

.universe::after {
  content: "06";
  position: absolute;
  right: -2vw;
  bottom: -11vw;
  color: rgba(246, 241, 230, .03);
  font-family: var(--serif);
  font-size: 34vw;
  line-height: 1;
  pointer-events: none;
}

.universe-heading {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .7fr 1.1fr .8fr;
  gap: 44px;
  align-items: end;
  margin-bottom: 70px;
}

.universe-heading .kicker { align-self: start; }
.universe-heading h2 { grid-column: 2; color: var(--cream); }
.universe-heading > p:last-child { color: rgba(246, 241, 230, .65); }

.product-honeycomb {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.product-cell {
  min-width: 0;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px 20px;
  color: var(--forest);
  clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0 50%);
  text-align: center;
}

.product-cell span {
  margin-bottom: auto;
  font-size: .67rem;
  font-weight: 850;
  letter-spacing: .15em;
}

.product-cell h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.3vw, 2.35rem);
  font-weight: 400;
}

.product-cell p {
  margin: 7px 0 18px;
  font-size: .72rem;
  line-height: 1.35;
}

.product-cell.forest { color: var(--cream); background: var(--forest-soft); border: 1px solid rgba(246,241,230,.3); }
.product-cell.cream { background: var(--cream); }
.product-cell.sage { background: var(--sage); }
.product-cell.beige { background: var(--warm-beige); }
.product-cell.terracotta-cell { color: var(--cream); background: var(--terracotta); }
.product-cell.espresso { color: var(--cream); background: var(--espresso); }

.brand-story {
  color: var(--cream);
  background: var(--forest-deep);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(330px, .7fr) minmax(0, 1.3fr);
  gap: clamp(60px, 9vw, 126px);
  align-items: center;
}

.story-mark {
  position: relative;
  min-height: 510px;
  display: grid;
  place-items: center;
}

.story-mark > img {
  position: relative;
  z-index: 2;
  width: min(270px, 64%);
  filter: drop-shadow(0 22px 38px rgba(0,0,0,.25));
}

.story-rings,
.story-rings i {
  position: absolute;
  inset: 50% auto auto 50%;
  border: 1px solid rgba(231, 220, 199, .2);
  transform: translate(-50%, -50%);
  clip-path: polygon(25% 7%, 75% 7%, 100% 50%, 75% 93%, 25% 93%, 0 50%);
}

.story-rings { width: 470px; height: 470px; }
.story-rings i:nth-child(1) { width: 370px; height: 370px; }
.story-rings i:nth-child(2) { width: 270px; height: 270px; }
.story-rings i:nth-child(3) { width: 170px; height: 170px; }

.story-copy h2 { color: var(--cream); }

.story-lead {
  max-width: 690px;
  margin: 26px 0 0;
  color: rgba(246, 241, 230, .7);
  font-size: 1.05rem;
  line-height: 1.85;
}

.meaning-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 56px;
  border-top: 1px solid rgba(246, 241, 230, .15);
}

.meaning-grid > div {
  padding: 26px 22px 0;
  border-left: 1px solid rgba(246, 241, 230, .15);
}

.meaning-grid > div:first-child { padding-left: 0; border-left: 0; }

.meaning-grid b {
  color: var(--terracotta);
  font-family: var(--serif);
  font-size: .92rem;
}

.meaning-grid h3 {
  margin: 14px 0 10px;
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 400;
}

.meaning-grid p {
  margin: 0;
  color: rgba(246, 241, 230, .58);
  font-size: .82rem;
  line-height: 1.6;
}

.spaces { background: var(--cream); }

.space-grid {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: clamp(44px, 7vw, 96px);
  align-items: center;
}

.space-copy > p { margin-top: 26px; }

.space-list {
  padding: 0;
  margin: 40px 0 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.space-list li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 10px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
  font-size: .9rem;
  font-weight: 700;
}

.space-list span {
  color: var(--terracotta);
  font-family: var(--serif);
  font-weight: 400;
}

.space-image {
  position: relative;
  margin: 0;
  padding: 18px 18px 48px;
  background: #fffaf1;
  box-shadow: var(--shadow);
}

.space-image img {
  width: 100%;
  height: clamp(400px, 48vw, 660px);
  object-fit: cover;
  object-position: center;
}

.space-image figcaption {
  position: absolute;
  right: 18px;
  bottom: 16px;
  left: 18px;
  color: var(--muted);
  font-size: .67rem;
  font-weight: 750;
  letter-spacing: .15em;
  text-align: center;
  text-transform: uppercase;
}

.access-section {
  padding-top: 0;
  background: var(--cream);
}

.access-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(42px, 7vw, 96px);
  align-items: center;
  padding: clamp(42px, 7vw, 82px);
  color: var(--cream);
  background:
    radial-gradient(circle at 84% 15%, rgba(198, 74, 74, .16), transparent 28%),
    var(--forest);
}

.access-copy h2 { color: var(--cream); }

.access-copy > p {
  margin: 25px 0 32px;
  color: rgba(246, 241, 230, .66);
  line-height: 1.8;
}

.role-preview {
  border-top: 1px solid rgba(246, 241, 230, .18);
}

.role-preview > div {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(246, 241, 230, .18);
}

.role-preview span {
  color: var(--terracotta);
  font-family: var(--serif);
}

.role-preview strong {
  font-family: var(--serif);
  font-size: 1.08rem;
  font-weight: 400;
}

.role-preview small {
  color: rgba(246, 241, 230, .52);
  font-size: .72rem;
  text-align: right;
}

.site-footer {
  padding: 66px 0 34px;
  color: rgba(246, 241, 230, .65);
  background: var(--forest-deep);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand img { width: 44px; }

.footer-brand span {
  color: var(--cream);
  font-family: var(--serif);
  font-size: 2.7rem;
  letter-spacing: .12em;
}

.site-footer p {
  margin: 0;
  color: var(--cream);
  font-family: var(--serif);
  font-size: 1.45rem;
  line-height: 1.1;
  text-align: center;
}

.site-footer p strong { color: var(--warm-beige); font-weight: 400; }

.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 22px;
  font-size: .7rem;
  font-weight: 750;
  letter-spacing: .1em;
  text-transform: uppercase;
}

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

.site-footer small {
  grid-column: 1 / -1;
  padding-top: 28px;
  border-top: 1px solid rgba(246, 241, 230, .12);
  font-size: .67rem;
  letter-spacing: .1em;
  text-align: center;
  text-transform: uppercase;
}

@media (max-width: 1040px) {
  .header-inner { width: min(100% - 32px, 1320px); }
  .site-nav { gap: 16px; font-size: .7rem; }
  .brand-origin { display: none; }
  .brand-lockup { grid-template-rows: 1fr; }
  .brand-lockup img { grid-row: 1; }
  .hero-grid { grid-template-columns: .9fr 1.1fr; gap: 36px; }
  .hero-media, .hero-media > img { min-height: 560px; }
  .product-honeycomb { grid-template-columns: repeat(3, 1fr); }
  .product-cell { min-height: 280px; }
  .story-grid { gap: 50px; }
  .story-rings { width: 390px; height: 390px; }
}

@media (max-width: 860px) {
  .container { width: min(100% - 36px, 720px); }
  .header-inner { min-height: 70px; }
  .menu-toggle { display: flex; }
  .site-nav {
    position: fixed;
    inset: 70px 0 auto;
    min-height: calc(100vh - 70px);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 34px 24px;
    color: var(--cream);
    background: var(--forest-deep);
    transform: translateX(100%);
    transition: transform .26s ease;
  }
  .site-nav.is-open { transform: translateX(0); }
  .site-nav > a:not(.nav-access) { padding: 21px 4px; border-bottom: 1px solid rgba(246,241,230,.14); }
  .site-nav > a:not(.nav-access)::after { display: none; }
  .nav-access { margin-top: 24px; justify-content: center; color: var(--forest); background: var(--cream); }
  .hero { padding-top: 74px; }
  .hero-grid,
  .section-intro,
  .universe-heading,
  .story-grid,
  .space-grid,
  .access-card { grid-template-columns: 1fr; }
  .hero-media { min-height: 520px; border-radius: 42% 42% 12px 12px; }
  .hero-media > img { min-height: 520px; }
  .family-strip { grid-template-columns: repeat(3, 1fr); }
  .family-strip span:nth-child(4) { border-left: 0; }
  .section-intro { align-items: start; }
  .universe-heading h2 { grid-column: 1; }
  .universe-heading { gap: 20px; }
  .story-mark { min-height: 430px; }
  .story-rings { width: 410px; height: 410px; }
  .space-image { order: -1; }
  .access-card { width: min(100% - 24px, 720px); padding: 48px 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .site-footer p { text-align: right; }
  .footer-links { grid-column: 1 / -1; justify-content: center; padding-block: 20px; border-block: 1px solid rgba(246,241,230,.12); }
}

@media (max-width: 620px) {
  .container { width: min(100% - 28px, 560px); }
  .brand-word { font-size: 1.55rem; }
  .hero { padding-top: 56px; }
  .hero-copy { text-align: center; }
  .kicker { justify-content: center; }
  .hero-brand { justify-content: center; }
  .hero-brand span { font-size: 4.3rem; }
  .hero h1 { font-size: clamp(2.8rem, 14vw, 4.4rem); }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  .brand-mantra { justify-content: center; font-size: .58rem; }
  .hero-media, .hero-media > img { min-height: 440px; }
  .experience-note { right: 16px; bottom: 16px; left: 16px; }
  .family-strip { width: 100%; grid-template-columns: repeat(2, 1fr); }
  .family-strip span:nth-child(3), .family-strip span:nth-child(5) { border-left: 0; }
  .family-strip span:nth-child(4) { border-left: 1px solid var(--line); }
  .section { padding-block: 78px; }
  .section-intro h2,
  .universe-heading h2,
  .story-copy h2,
  .space-copy h2,
  .access-copy h2 { font-size: clamp(2.65rem, 13vw, 4.15rem); }
  .experience-grid { grid-template-columns: 1fr; }
  .experience-card { min-height: 390px; }
  .product-honeycomb { grid-template-columns: repeat(2, 1fr); }
  .product-cell { min-height: 220px; padding: 21px 15px; }
  .product-cell h3 { font-size: 1.55rem; }
  .story-mark { min-height: 340px; overflow: hidden; }
  .story-rings { width: 350px; height: 350px; }
  .meaning-grid { grid-template-columns: 1fr; }
  .meaning-grid > div { padding: 22px 0; border-left: 0; border-bottom: 1px solid rgba(246,241,230,.15); }
  .role-preview > div { grid-template-columns: 34px 1fr; }
  .role-preview small { grid-column: 2; text-align: left; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-brand { justify-content: center; }
  .site-footer p { text-align: center; }
  .footer-links { flex-wrap: wrap; gap: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
