:root {
  --ink: #090b0a;
  --carbon: #141715;
  --forest: #101914;
  --navy: #121614;
  --paper: #f2f3ee;
  --white: #ffffff;
  --mist: #e7e9e4;
  --line: rgba(9, 11, 10, 0.15);
  --muted: #626762;
  --signal: #dfff52;
  --signal-soft: #efffb8;
  --gold: var(--signal);
  --yellow: var(--signal);
  --sans: "Avenir Next", Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --serif: "Iowan Old Style", Baskerville, Georgia, "Times New Roman", serif;
  --content: min(1280px, calc(100vw - 64px));
  --header-height: 88px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 112px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.58;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
a { color: inherit; }
img { display: block; width: 100%; }
button { font: inherit; }
h1, h2, h3 { text-wrap: balance; }
p { text-wrap: pretty; }

.skip-link {
  position: fixed;
  left: 18px;
  top: -70px;
  z-index: 200;
  border-radius: 999px;
  background: var(--signal);
  color: var(--ink);
  padding: 12px 18px;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}
.skip-link:focus { top: 14px; }

/* Unified navigation */
.site-header,
.site-header.is-light {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  color: var(--white);
  background: rgba(9, 11, 10, .94);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.nav {
  width: var(--content);
  height: var(--header-height);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 178px minmax(0, 1fr) auto;
  align-items: center;
  gap: 26px;
}
.brand {
  flex: 0 0 auto;
  text-decoration: none;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.brand span { color: var(--signal); }
.brand[href="/"] {
  display: block;
  width: 170px;
  height: 58px;
  overflow: hidden;
  color: transparent;
  font-size: 0;
  background: url("/assets/mindmill-horizontal-reverse.png") center / contain no-repeat;
}
.desktop-nav { height: 100%; display: flex; align-items: stretch; justify-content: center; gap: 2px; }
.nav-item { position: relative; display: flex; align-items: stretch; }
.nav-primary,
.nav-chevron {
  position: relative;
  display: inline-flex;
  align-items: center;
  border: 0;
  color: rgba(255, 255, 255, .82);
  background: transparent;
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  white-space: nowrap;
}
.nav-primary { padding: 0 5px 0 10px; }
.nav-single { padding: 0 10px; }
.nav-chevron { width: 24px; padding: 0; cursor: pointer; }
.nav-chevron::after {
  content: "";
  width: 5px;
  height: 5px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  opacity: .65;
}
.nav-primary::before {
  content: "";
  position: absolute;
  inset: auto 8px 0;
  height: 3px;
  background: var(--signal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}
.nav-item:hover .nav-primary,
.nav-item:focus-within .nav-primary,
.nav-item.is-current .nav-primary,
.nav-item:hover .nav-chevron,
.nav-item:focus-within .nav-chevron,
.nav-single:hover,
.nav-single.is-current { color: var(--white); }
.nav-item:hover .nav-primary::before,
.nav-item:focus-within .nav-primary::before,
.nav-item.is-current .nav-primary::before,
.nav-single.is-current::before,
.nav-single:hover::before { transform: scaleX(1); }

.dropdown {
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  width: 348px;
  padding: 12px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 0;
  border-radius: 0 0 22px 22px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}
.dropdown-right { left: auto; right: 0; }
.dropdown-wide { width: 390px; }
.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown,
.nav-item[data-open="true"] .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-label {
  margin: 0;
  padding: 10px 12px 12px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.dropdown-link {
  display: grid;
  gap: 2px;
  padding: 13px 12px;
  border-top: 1px solid var(--line);
  border-radius: 10px;
  text-decoration: none;
  transition: background .18s ease;
}
.dropdown-link:hover,
.dropdown-link:focus-visible { background: var(--white); outline: none; }
.dropdown-link strong { font-size: 14px; line-height: 1.3; }
.dropdown-link span { color: var(--muted); font-size: 12px; line-height: 1.4; }

.menu-button {
  display: none;
  align-items: center;
  gap: 10px;
  border: 0;
  color: var(--white);
  background: transparent;
  padding: 10px 0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.menu-icon { position: relative; width: 20px; height: 12px; }
.menu-icon::before,
.menu-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 1.5px;
  background: currentColor;
  transition: transform .2s ease, top .2s ease;
}
.menu-icon::before { top: 1px; }
.menu-icon::after { top: 9px; }
.menu-button[aria-expanded="true"] .menu-icon::before { top: 5px; transform: rotate(45deg); }
.menu-button[aria-expanded="true"] .menu-icon::after { top: 5px; transform: rotate(-45deg); }
.mobile-panel { display: none; }

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 13px 24px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible,
.nav-primary:focus-visible,
.nav-chevron:focus-visible,
.mobile-nav-row a:focus-visible,
.mobile-direct:focus-visible { outline: 3px solid var(--signal); outline-offset: 3px; }
.button.light { background: var(--white); color: var(--ink); border-color: var(--white); }
.button.dark { background: var(--ink); color: var(--white); border-color: var(--ink); }
.button.gold,
.site-header .nav > .button { background: var(--signal); color: var(--ink); border-color: var(--signal); }
.button.outline-light { color: var(--white); background: transparent; border-color: rgba(255, 255, 255, .6); }
.button.outline-light:hover { background: var(--white); color: var(--ink); border-color: var(--white); }
.button.small { min-height: 42px; padding: 10px 18px; font-size: 10px; }

/* Hero system */
.hero {
  min-height: 100svh;
  color: var(--white);
  background: var(--ink);
  display: grid;
  align-items: end;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 7, 6, .94) 0%, rgba(5, 7, 6, .68) 45%, rgba(5, 7, 6, .08) 82%), linear-gradient(0deg, rgba(5, 7, 6, .72), transparent 58%);
}
.hero-media { position: absolute; inset: 0; height: 100%; object-fit: cover; object-position: 68% 32%; }
.hero-inner {
  width: var(--content);
  margin: 0 auto;
  padding: 178px 0 54px;
  position: relative;
  z-index: 2;
}
.eyebrow,
.section-label {
  display: inline-block;
  margin: 0 0 26px;
  color: var(--signal);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  line-height: 1.35;
  text-transform: uppercase;
}
.section.white .section-label,
.image-story-content .section-label,
.legal-copy .section-label { color: #4c5900; }
.display,
.section-title,
.image-story-content h2,
.cta-band h2,
.product-hero h1 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -.045em;
}
.display {
  max-width: 820px;
  margin: 0;
  font-size: clamp(3.8rem, 5.8vw, 5.15rem);
  line-height: .96;
}
.hero-copy {
  max-width: 650px;
  margin: 34px 0 0;
  font-size: clamp(1.08rem, 1.7vw, 1.35rem);
  line-height: 1.5;
  color: rgba(255, 255, 255, .82);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.hero-foot {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 68px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .28);
  color: rgba(255, 255, 255, .7);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

/* Core sections */
.section { padding: clamp(86px, 10vw, 136px) 0; }
.section-inner { width: var(--content); margin: 0 auto; }
.section.dark { background: var(--ink); color: var(--white); }
.section.white { background: var(--white); }
.section.navy { background: var(--navy); color: var(--white); }
.section.forest { background: var(--forest); color: var(--white); }
.section-title {
  max-width: 1000px;
  margin: 0;
  font-size: clamp(2.8rem, 4.6vw, 4.75rem);
  line-height: .99;
}
.section-copy {
  max-width: 670px;
  margin: 30px 0 0;
  font-size: clamp(1.04rem, 1.5vw, 1.23rem);
  color: var(--muted);
}
.dark .section-copy,
.navy .section-copy,
.forest .section-copy { color: rgba(255, 255, 255, .7); }
.lede-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr);
  gap: 9vw;
  align-items: end;
}
.lede-note { max-width: 430px; margin: 0; font-size: 1.15rem; color: rgba(255, 255, 255, .68); }

.image-story {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: stretch;
  background: var(--white);
}
.image-story figure { margin: 0; min-height: 660px; overflow: hidden; background: var(--mist); }
.image-story img { height: 100%; object-fit: cover; }
.image-story-content { padding: clamp(64px, 8vw, 120px); display: flex; flex-direction: column; justify-content: center; }
.image-story-content h2 { margin: 0; font-size: clamp(3rem, 4.8vw, 5rem); line-height: .97; }
.image-story-content p { max-width: 570px; color: var(--muted); font-size: 1.12rem; }

.pathways {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 54px;
}
.pathway {
  min-height: 560px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  color: var(--white);
  background: var(--ink);
  text-decoration: none;
}
.pathway::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0, 0, 0, .9), rgba(0, 0, 0, .04) 72%); }
.pathway img { height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.pathway:hover img { transform: scale(1.035); }
.pathway-content { position: absolute; z-index: 2; inset: auto 30px 30px; }
.pathway-kicker,
.content-card .card-kicker { color: var(--signal); font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.section.white .content-card .card-kicker { color: #4c5900; }
.pathway h3 { margin: 12px 0 10px; font-family: var(--serif); font-size: 2.35rem; line-height: 1; font-weight: 500; letter-spacing: -.035em; }
.pathway p { margin: 0; color: rgba(255, 255, 255, .72); font-size: .96rem; }
.pathway-text { padding: 38px; background: var(--carbon); display: flex; flex-direction: column; justify-content: flex-end; }
.pathway-text::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 82% 15%, rgba(223,255,82,.22), transparent 38%); }
.pathway-text::after { display: none; }

.feature-list { margin: 54px 0 0; border-top: 1px solid currentColor; }
.feature-row {
  display: grid;
  grid-template-columns: 72px 1fr 1fr;
  gap: 30px;
  align-items: start;
  padding: 32px 0;
  border-bottom: 1px solid currentColor;
}
.feature-row .number { color: var(--signal); font-size: 11px; font-weight: 800; letter-spacing: .12em; }
.section.white .feature-row .number { color: #4c5900; }
.feature-row h3 { margin: 0; font-family: var(--serif); font-weight: 500; font-size: clamp(1.7rem, 2.6vw, 2.7rem); line-height: 1.05; letter-spacing: -.035em; }
.feature-row p { margin: 0; opacity: .68; }

.cta-band { padding: clamp(96px, 12vw, 156px) 0; background: var(--ink); color: var(--white); border-top: 1px solid rgba(255,255,255,.1); }
.cta-band .section-inner { display: flex; justify-content: space-between; gap: 54px; align-items: end; }
.cta-band h2 { max-width: 860px; margin: 0; font-size: clamp(3.2rem, 5.7vw, 5.7rem); line-height: .96; }

.footer { background: #050605; color: var(--white); padding: 64px 0 30px; border-top: 1px solid rgba(255,255,255,.1); }
.footer-grid { width: var(--content); margin: 0 auto; display: grid; grid-template-columns: minmax(260px, 1fr) repeat(3, auto); gap: 64px; }
.footer a { color: rgba(255,255,255,.7); text-decoration: none; }
.footer a:hover { color: var(--white); }
.footer .brand[href="/"],
.footer .brand[href="/golf/"] { width: 210px; height: 72px; margin-bottom: 12px; background: url("/assets/mindmill-horizontal-reverse.png") center / contain no-repeat; color: transparent; font-size: 0; }
.footer p { max-width: 350px; color: rgba(255,255,255,.58); }
.footer-links { display: grid; gap: 10px; align-content: start; font-size: 13px; }
.footer-links strong { margin-bottom: 4px; color: var(--white); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; }
.footer-meta { width: var(--content); margin: 54px auto 0; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.42); font-size: 11px; display: flex; justify-content: space-between; gap: 20px; }

/* Interior pages */
.page-hero {
  min-height: 680px;
  padding: calc(var(--header-height) + 112px) 0 96px;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  background: radial-gradient(circle at 82% 16%, rgba(223,255,82,.16), transparent 29%), var(--ink);
}
.page-hero .section-title { max-width: 1080px; }
.page-hero .section-copy { color: rgba(255,255,255,.7); }
.page-hero.with-image {
  min-height: 84svh;
  position: relative;
  overflow: hidden;
  background: var(--ink);
}
.page-hero.with-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(4,7,6,.94), rgba(4,7,6,.6) 55%, rgba(4,7,6,.12)); }
.page-hero.with-image img { position: absolute; inset: 0; height: 100%; object-fit: cover; object-position: center 30%; }
.page-hero.with-image img[src*="seth-studio."] { object-position: center 10%; }
.page-hero.psychedelic-hero img { object-position: center 54%; }
.page-hero.with-image .section-inner { position: relative; z-index: 2; }
.page-hero.music-hero img { top: var(--header-height); height: calc(100% - var(--header-height)); object-position: 70% top !important; }
.page-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }

.two-up { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; margin-top: 54px; }
.three-up { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 16px; margin-top: 54px; }
.content-card {
  padding: clamp(30px, 4vw, 46px);
  border: 0;
  border-radius: 24px;
  background: var(--mist);
}
.dark .content-card,
.navy .content-card,
.forest .content-card { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); }
.content-card h3 { margin: 18px 0 12px; font-family: var(--serif); font-size: clamp(1.75rem, 2.8vw, 2.8rem); line-height: 1.02; font-weight: 500; letter-spacing: -.035em; }
.content-card p { color: var(--muted); }
.dark .content-card p,
.navy .content-card p,
.forest .content-card p { color: rgba(255,255,255,.68); }
.content-card .button { margin-top: 14px; }

.pillars { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 0 48px; margin-top: 56px; border-top: 1px solid var(--line); }
.pillar { display: grid; grid-template-columns: 48px 1fr; gap: 16px; padding: 30px 0; border-bottom: 1px solid var(--line); }
.pillar-number { color: var(--ink); font-size: 11px; font-weight: 800; letter-spacing: .1em; }
.pillar h3 { margin: 0 0 7px; font-family: var(--serif); font-size: 1.55rem; line-height: 1.05; font-weight: 500; letter-spacing: -.025em; }
.pillar p { margin: 0; color: var(--muted); }
.dark .pillars,
.forest .pillars,
.navy .pillars { border-color: rgba(255,255,255,.22); }
.dark .pillar,
.forest .pillar,
.navy .pillar { border-color: rgba(255,255,255,.22); }
.dark .pillar-number,
.forest .pillar-number,
.navy .pillar-number { color: var(--signal); }
.dark .pillar p,
.forest .pillar p,
.navy .pillar p { color: rgba(255,255,255,.68); }

.quote-block { padding: clamp(86px, 10vw, 136px) 0; background: var(--ink); color: var(--white); border-top: 1px solid rgba(255,255,255,.1); }
.quote-block blockquote { width: var(--content); max-width: 1040px; margin: 0 auto; font-family: var(--serif); font-size: clamp(2.8rem, 4.7vw, 5.1rem); font-weight: 500; line-height: 1; letter-spacing: -.04em; }
.quote-block cite { display: block; margin-top: 32px; color: var(--signal); font-size: 10px; font-style: normal; font-weight: 800; letter-spacing: .14em; line-height: 1.5; text-transform: uppercase; }

.product-hero {
  min-height: 94svh;
  padding-top: var(--header-height);
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(440px, 1.1fr);
  background: var(--ink);
  color: var(--white);
}
.product-hero-copy {
  padding: clamp(74px, 8vw, 132px) max(32px, calc((100vw - 1240px) / 2));
  padding-right: clamp(46px, 7vw, 100px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: radial-gradient(circle at 20% 0%, rgba(223,255,82,.13), transparent 34%);
}
.product-hero h1 { margin: 0; font-size: clamp(3.6rem, 5.4vw, 5.5rem); line-height: .96; }
.product-hero-copy > p:not(.eyebrow):not(.product-price) { max-width: 620px; font-size: 1.16rem; color: rgba(255,255,255,.7); }
.product-price { margin: 30px 0 0; color: var(--signal); font-size: 11px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.product-hero-media { min-height: 680px; overflow: hidden; }
.product-hero-media img { height: 100%; object-fit: cover; }
.product-hero-media img[src*="journal-cover."] { object-position: center 48%; }
.product-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 54px; }
.product-gallery figure { margin: 0; overflow: hidden; border-radius: 24px; background: var(--mist); aspect-ratio: 1; }
.product-gallery img { height: 100%; object-fit: cover; transition: transform .5s ease; }
.product-gallery figure:hover img { transform: scale(1.025); }
.footnote { color: var(--muted); font-size: .88rem; }
.footer-disclaimer { max-width: 760px; margin: 18px 0 0; color: rgba(255,255,255,.48); font-size: 11px; line-height: 1.55; }

.visual-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 16px;
  margin-top: 54px;
}
.visual-grid figure { margin: 0; min-height: 520px; overflow: hidden; border-radius: 24px; background: var(--mist); }
.visual-grid figure:last-child { min-height: 440px; margin-top: 72px; }
.visual-grid img { height: 100%; object-fit: cover; }
.image-story--product figure { background: var(--paper); }
.image-story--product img { object-position: center; }

/* Editorial storytelling */
.proof-strip {
  background: var(--signal);
  color: var(--ink);
}
.proof-strip-inner {
  width: var(--content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.proof-point {
  padding: 26px 30px;
  border-left: 1px solid rgba(9,11,10,.22);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  line-height: 1.45;
  text-transform: uppercase;
}
.proof-point:last-child { border-right: 1px solid rgba(9,11,10,.22); }

.editorial-grid {
  display: grid;
  grid-template-columns: minmax(0, .84fr) minmax(0, 1.16fr);
  gap: clamp(44px, 8vw, 112px);
  align-items: center;
}
.editorial-copy { max-width: 620px; }
.editorial-copy .section-title { font-size: clamp(2.7rem, 4.3vw, 4.5rem); }
.editorial-copy > p:not(.section-label) { color: var(--muted); font-size: 1.1rem; }
.dark .editorial-copy > p:not(.section-label),
.forest .editorial-copy > p:not(.section-label),
.navy .editorial-copy > p:not(.section-label) { color: rgba(255,255,255,.7); }
.editorial-media {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 14px;
  align-items: end;
}
.editorial-media figure { margin: 0; min-height: 600px; overflow: hidden; border-radius: 26px; background: var(--mist); }
.editorial-media figure:last-child { min-height: 420px; margin-bottom: -70px; }
.editorial-media img { height: 100%; object-fit: cover; }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 58px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.dark .process-steps,
.forest .process-steps,
.navy .process-steps { border-color: rgba(255,255,255,.22); }
.process-step { padding: 30px 28px 34px; border-left: 1px solid var(--line); }
.process-step:last-child { border-right: 1px solid var(--line); }
.dark .process-step,
.forest .process-step,
.navy .process-step { border-color: rgba(255,255,255,.22); }
.process-step span { color: #4c5900; font-size: 10px; font-weight: 800; letter-spacing: .14em; }
.dark .process-step span,
.forest .process-step span,
.navy .process-step span { color: var(--signal); }
.process-step h3 { margin: 16px 0 10px; font-family: var(--serif); font-size: 1.65rem; line-height: 1.04; font-weight: 500; letter-spacing: -.025em; }
.process-step p { margin: 0; color: var(--muted); font-size: .94rem; }
.dark .process-step p,
.forest .process-step p,
.navy .process-step p { color: rgba(255,255,255,.68); }

.story-chapters { margin-top: 60px; border-top: 1px solid var(--line); }
.story-chapter {
  display: grid;
  grid-template-columns: 150px minmax(0, .8fr) minmax(340px, 1.2fr);
  gap: 40px;
  align-items: start;
  padding: 48px 0;
  border-bottom: 1px solid var(--line);
}
.story-chapter .chapter-number { color: #4c5900; font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.story-chapter h3 { margin: 0; font-family: var(--serif); font-size: clamp(2rem, 3.2vw, 3.4rem); line-height: 1; font-weight: 500; letter-spacing: -.035em; }
.story-chapter p { margin: 0; color: var(--muted); }

.image-ribbon {
  display: grid;
  grid-template-columns: 1.2fr .8fr 1fr;
  min-height: 520px;
  background: var(--ink);
}
.image-ribbon figure { margin: 0; overflow: hidden; }
.image-ribbon figure:nth-child(2) { border-left: 8px solid var(--paper); border-right: 8px solid var(--paper); }
.image-ribbon img { height: 100%; object-fit: cover; }

.statement-band { padding: clamp(70px, 8vw, 110px) 0; background: var(--signal); color: var(--ink); }
.statement-band blockquote { width: var(--content); max-width: 1100px; margin: 0 auto; font-family: var(--serif); font-size: clamp(2.5rem, 4.7vw, 4.9rem); line-height: 1; letter-spacing: -.04em; }
.statement-band cite { display: block; margin-top: 26px; font-family: var(--sans); font-size: 10px; font-style: normal; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }

.media-card { min-height: 330px; display: flex; flex-direction: column; }
.media-card .button { margin-top: auto; align-self: flex-start; }
.text-link { font-weight: 800; text-underline-offset: 4px; }

.subnav { position: sticky; top: var(--header-height); z-index: 30; background: rgba(255,255,255,.96); color: var(--ink); border-bottom: 1px solid var(--line); backdrop-filter: blur(14px); }
.subnav-inner { width: var(--content); margin: 0 auto; display: flex; gap: 8px; align-items: center; padding: 10px 0; overflow-x: auto; scrollbar-width: none; }
.subnav-inner::-webkit-scrollbar { display: none; }
.subnav a { flex: 0 0 auto; border-radius: 999px; padding: 9px 13px; text-decoration: none; font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.subnav a:hover,
.subnav a:focus-visible { background: var(--mist); outline: none; }
.subnav a:first-child { color: var(--ink); background: var(--signal); }

.clean-list { list-style: none; padding: 0; margin: 32px 0 0; }
.clean-list li { padding: 18px 0; border-bottom: 1px solid var(--line); }
.dark .clean-list li,
.navy .clean-list li,
.forest .clean-list li { border-color: rgba(255,255,255,.16); }
.legal-copy { max-width: 820px; padding-top: var(--header-height); }
.legal-copy h2 { margin: 54px 0 12px; font-size: 2rem; font-weight: 800; letter-spacing: -.035em; }
.legal-copy p,
.legal-copy li { color: var(--muted); }

[data-reveal] { opacity: 1; transform: none; transition: opacity .65s ease, transform .65s cubic-bezier(.2,.7,.2,1); }
[data-reveal][data-visible="true"] { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
  [data-reveal] { opacity: 1; transform: none; }
}

/* Frames own their geometry; photographs fill the frame independently of intrinsic size. */
.image-story figure, .editorial-media figure, .visual-grid figure,
.image-ribbon figure, .product-hero-media, .product-gallery figure { position: relative; }
.image-story figure > img, .editorial-media figure > img, .visual-grid figure > img,
.image-ribbon figure > img, .product-hero-media > img, .product-gallery figure > img,
.pathway > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: var(--focus, center); }
.image-ribbon figure { min-height: 400px; }
.content-card { background: #f6f7f1; border: 1px solid var(--line); }
.testimonials { border-top: 1px solid var(--line); }
.testimonial-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px; margin-top: 36px; }
.testimonial-grid blockquote { margin: 0; padding: 28px 0; border-top: 1px solid var(--line); }
.testimonial-grid blockquote p { margin: 0; font-family: var(--serif); font-size: clamp(1.45rem, 2.2vw, 2rem); line-height: 1.35; }
.testimonial-grid cite { display: block; margin-top: 20px; font-style: normal; font-size: 13px; color: var(--muted); }
.testimonial-grid blockquote:only-child { grid-column: 1 / -1; max-width: 900px; }
.homepage-testimonials .section-title { max-width: 760px; }
.homepage-testimonials .testimonial-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.recovery-photo { grid-column: 2 / -1; margin: 0; }
.recovery-photo img { max-height: 560px; object-fit: contain; }
.recovery-photo figcaption { margin-top: 12px; color: var(--muted); font-size: 13px; }
:focus-visible { outline: 3px solid #708000; outline-offset: 4px; }
@media (max-width: 560px) {
  .testimonial-grid { grid-template-columns: 1fr; }
  .recovery-photo { grid-column: 1; }
  .image-ribbon figure { min-height: 380px; }
}
@media (max-width: 1100px) {
  .homepage-testimonials .testimonial-grid { grid-template-columns: 1fr; }
}

@media (max-width: 1160px) {
  .nav { gap: 18px; }
  .brand[href="/"] { width: 128px; }
  .nav-primary { padding-inline: 4px; font-size: 9px; letter-spacing: .045em; }
  .nav-chevron { width: 18px; }
  .site-header .nav > .button { padding-inline: 15px; }
}

@media (max-width: 1100px) {
  :root { --content: min(760px, calc(100% - 36px)); --header-height: 72px; }
  .nav { height: var(--header-height); grid-template-columns: 1fr auto; }
  .brand[href="/"] { width: 142px; height: 48px; }
  .desktop-nav,
  .nav > .button { display: none; }
  .menu-button { display: inline-flex; }
  .mobile-panel {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100vw;
    height: calc(100svh - var(--header-height));
    padding: 16px 18px 34px;
    color: var(--white);
    background: var(--ink);
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  }
  .mobile-panel[data-open="true"] { opacity: 1; visibility: visible; transform: translateY(0); }
  .mobile-nav-group,
  .mobile-direct { border-bottom: 1px solid rgba(255,255,255,.15); }
  .mobile-nav-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .mobile-nav-row > a,
  .mobile-direct {
    display: block;
    flex: 1;
    padding: 20px 2px;
    color: var(--white);
    text-decoration: none;
    font-family: var(--serif);
    font-size: clamp(1.35rem, 5vw, 1.8rem);
    font-weight: 500;
    letter-spacing: -.02em;
  }
  .mobile-nav-row button { width: 52px; min-height: 58px; border: 0; color: var(--signal); background: transparent; font-size: 1.5rem; cursor: pointer; }
  .mobile-nav-links { display: grid; padding: 0 0 20px; }
  .mobile-nav-links[hidden] { display: none; }
  .mobile-nav-links a { padding: 9px 2px; color: rgba(255,255,255,.7); text-decoration: none; font-size: 15px; }
  .mobile-panel > .button { width: 100%; margin-top: 26px; }

  .hero-inner { padding-top: 136px; }
  .display { font-size: clamp(3.7rem, 11vw, 5.6rem); }
  .hero-foot { flex-direction: column; }
  .lede-grid,
  .image-story,
  .footer-grid { grid-template-columns: 1fr; }
  .image-story figure { min-height: 540px; }
  .pathways { grid-template-columns: 1fr; }
  .visual-grid { grid-template-columns: 1fr; }
  .visual-grid figure:last-child { margin-top: 0; }
  .two-up,
  .three-up,
  .pillars { grid-template-columns: 1fr; }
  .pathway { min-height: 520px; }
  .feature-row { grid-template-columns: 42px 1fr; }
  .feature-row p { grid-column: 2; }
  .cta-band .section-inner { align-items: flex-start; flex-direction: column; }
  .product-hero { min-height: auto; grid-template-columns: 1fr; }
  .product-hero-copy { padding: 112px 24px 72px; }
  .product-hero-media { min-height: 600px; }
  .footer-grid { gap: 38px; }
  .proof-strip-inner { grid-template-columns: 1fr; }
  .proof-point { border-right: 1px solid rgba(9,11,10,.22); border-bottom: 1px solid rgba(9,11,10,.22); }
  .editorial-grid { grid-template-columns: 1fr; }
  .editorial-media { margin-bottom: 58px; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .story-chapter { grid-template-columns: 80px 1fr; }
  .story-chapter p { grid-column: 2; }
  .image-ribbon { min-height: 860px; grid-template-columns: 1fr 1fr; }
  .image-ribbon figure:first-child { grid-column: 1 / -1; }
  .image-ribbon figure:nth-child(2) { border: 0; border-right: 4px solid var(--paper); border-top: 8px solid var(--paper); }
  .image-ribbon figure:nth-child(3) { border-left: 4px solid var(--paper); border-top: 8px solid var(--paper); }
}

@media (max-width: 560px) {
  :root { --content: calc(100% - 32px); }
  body { font-size: 16px; }
  .hero { min-height: 880px; }
  .hero-media { object-position: 62% 30%; }
  .hero-inner { padding-bottom: 34px; }
  .display { font-size: clamp(3.25rem, 14vw, 4.6rem); }
  .hero-actions,
  .page-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button,
  .page-actions .button,
  .cta-band .button { width: 100%; }
  .hero-foot { margin-top: 44px; }
  .section { padding: 78px 0; }
  .section-title { font-size: clamp(2.6rem, 11vw, 4rem); }
  .page-hero { min-height: 620px; padding-bottom: 72px; }
  .page-hero.psychedelic-hero img { object-position: 60% center; }
  .page-hero.psychedelic-hero::after { background: linear-gradient(90deg, rgba(4,7,6,.95), rgba(4,7,6,.66) 62%, rgba(4,7,6,.22)); }
  .image-story figure { min-height: 430px; }
  .image-story-content { padding: 72px 24px; }
  .pathway { min-height: 470px; }
  .footer .brand[href="/"],
  .footer .brand[href="/golf/"] { width: 185px; height: 64px; }
  .product-hero h1 { font-size: clamp(3.45rem, 15vw, 5rem); }
  .product-hero-media { min-height: 430px; }
  .product-gallery { grid-template-columns: 1fr; }
  .quote-block blockquote { font-size: clamp(2.4rem, 11vw, 4rem); }
  .footer-meta { flex-direction: column; }
  .editorial-media { grid-template-columns: 1fr; margin-bottom: 0; }
  .editorial-media figure,
  .editorial-media figure:last-child { min-height: 430px; margin: 0; }
  .process-steps { grid-template-columns: 1fr; }
  .process-step,
  .process-step:last-child { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .story-chapter { grid-template-columns: 1fr; gap: 16px; }
  .story-chapter p { grid-column: 1; }
  .image-ribbon { min-height: 1080px; grid-template-columns: 1fr; }
  .image-ribbon figure:first-child { grid-column: auto; }
  .image-ribbon figure:nth-child(2),
  .image-ribbon figure:nth-child(3) { border: 0; border-top: 8px solid var(--paper); }
}
