@font-face {
  font-family: "DIN Alternate";
  src: url("../brand/din-alternate-regular-v1.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "DIN Alternate";
  src: url("../brand/din-alternate-medium-v1.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "DIN Alternate";
  src: url("../brand/din-alternate-bold-v1.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Helvetica Neue Condensed";
  src: url("../brand/helvetica-neue-condensed-regular-v1.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Helvetica Neue Condensed";
  src: url("../brand/helvetica-neue-condensed-bold-v1.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Gabriola";
  src: url("../brand/gabriola-latin-v1.woff") format("woff");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0100-017F, U+2000-206F;
}

:root {
  --ink: #1d1d1b;
  --cream: #f4f2f1;
  --paper: #ffffff;
  --sand: #cbc0bb;
  --muted: #53565a;
  --terra: #978b84;
  --terra-dark: #53565a;
  --sage: #53565a;
  --line: rgba(83, 86, 90, .22);
  --line-light: rgba(255, 255, 255, .2);
  --serif: "DIN Alternate", "Arial Narrow", sans-serif;
  --body: "Helvetica Neue Condensed", "Arial Narrow", Arial, sans-serif;
  --script: "Gabriola", cursive;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}
.mbk-landing { overflow: clip; }
.admin-bar .site-header { top: 32px; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }

.eyebrow {
  margin: 0 0 22px;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
  line-height: 1.45;
  text-transform: uppercase;
}
.eyebrow-light { color: rgba(255, 255, 255, .62); }

.topline {
  min-height: 34px;
  padding: 0 clamp(20px, 4vw, 68px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  background: #000;
  color: #fff;
  font-size: 9px;
  letter-spacing: .14em;
  text-align: center;
  text-transform: uppercase;
}
.topline strong { font-weight: 700; }
.topline strong::before { content: "·"; margin-right: 13px; opacity: .7; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 82px;
  padding: 12px clamp(22px, 4vw, 68px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(16px);
}
.brand { display: flex; align-items: center; }
.brand img { width: 92px; height: 62px; object-fit: contain; }
.desktop-nav { display: flex; align-items: center; gap: clamp(20px, 2.4vw, 37px); font-family: var(--serif); font-size: 12px; }
.desktop-nav > a:not(.nav-cta) { position: relative; }
.desktop-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 100%;
  bottom: -6px;
  left: 0;
  height: 1px;
  background: var(--ink);
  transition: right .2s ease;
}
.desktop-nav > a:not(.nav-cta):hover::after { right: 0; }
.mbk-mobile-menu {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  padding: 0;
  display: none;
  opacity: 1;
  visibility: visible;
}
.mbk-mobile-menu summary {
  min-height: 47px;
  padding: 0 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  border: 1px solid var(--ink);
  border-radius: 0 24px 24px 24px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
}
.mbk-mobile-menu summary::-webkit-details-marker { display: none; }
.mbk-mobile-menu-label {
  font-family: var(--serif);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.mbk-mobile-menu-icon { width: 19px; height: 13px; position: relative; display: block; }
.mbk-mobile-menu-icon i {
  position: absolute;
  right: 0;
  left: 0;
  height: 1px;
  display: block;
  background: currentColor;
  transition: top .2s ease, transform .2s ease;
}
.mbk-mobile-menu-icon i:first-child { top: 2px; }
.mbk-mobile-menu-icon i:last-child { top: 10px; }
.mbk-mobile-nav {
  display: none;
  position: absolute;
  top: calc(100% + 1px);
  right: 0;
  width: min(440px, 100vw);
  padding: 13px clamp(22px, 4vw, 42px) 28px;
  flex-direction: column;
  border-left: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 28px 52px rgba(29, 29, 27, .14);
  z-index: 52;
}
.mbk-mobile-nav > a:not(.nav-cta) {
  min-height: 57px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 15px;
}
.mbk-mobile-nav .nav-cta { margin-top: 20px; justify-content: center; }
.mbk-mobile-menu[open] .mbk-mobile-menu-icon i:first-child { top: 6px; transform: rotate(45deg); }
.mbk-mobile-menu[open] .mbk-mobile-menu-icon i:last-child { top: 6px; transform: rotate(-45deg); }
.nav-cta {
  min-height: 47px;
  padding: 0 19px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
  font-weight: 700;
  border-radius: 0 24px 24px 24px;
  transition: background .2s ease, border-color .2s ease;
}
.nav-cta:hover { border-color: var(--terra); background: var(--terra); }

.hero {
  min-height: calc(100vh - 116px);
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(410px, .86fr);
  border-bottom: 1px solid var(--line);
}
.hero-copy {
  padding: clamp(70px, 7.2vw, 120px) clamp(28px, 6vw, 96px) 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero h1 {
  max-width: 900px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(55px, 5.9vw, 94px);
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: .94;
}
.hero h1 em { color: var(--terra); font-family: var(--script); font-size: 1.08em; font-style: normal; font-weight: 500; letter-spacing: 0; }
.hero-lead {
  max-width: 740px;
  margin: 32px 0 0;
  color: #524d47;
  font-size: clamp(17px, 1.42vw, 21px);
  line-height: 1.65;
}
.hero-actions { margin-top: 36px; display: flex; align-items: center; gap: 25px; flex-wrap: wrap; }
.button {
  min-height: 55px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 1px solid;
  border-radius: 0 28px 28px 28px;
  font-family: var(--serif);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { border-color: #000; background: #000; color: #fff; box-shadow: 0 14px 36px rgba(0, 0, 0, .16); }
.button-primary:hover { border-color: var(--terra-dark); background: var(--terra-dark); }
.button-light { border-color: rgba(255,255,255,.72); color: #fff; }
.button-light:hover { background: #fff; color: var(--ink); }
.button span { font-size: 19px; font-weight: 300; }
.text-link { padding-bottom: 4px; border-bottom: 1px solid currentColor; font-family: var(--serif); font-size: 12px; font-weight: 700; }
.hero-assurances { margin-top: 23px; display: flex; gap: 19px; flex-wrap: wrap; color: #7b746c; font-size: 9px; letter-spacing: .07em; text-transform: uppercase; }
.hero-assurances span { display: flex; align-items: center; gap: 7px; }
.hero-assurances span::before { content: "✓"; color: var(--terra); font-size: 10px; }
.brand-claim { margin: 34px 0 0; color: #53565a; font-family: var(--script); font-size: 25px; line-height: 1; }

.hero-visual { position: relative; min-height: 750px; margin: 0; overflow: hidden; background: #c9cbc7; }
.hero-visual > img { width: 100%; height: 100%; object-fit: cover; object-position: 53% 34%; filter: saturate(.55) contrast(.98); }
.hero-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(20,18,16,.58), transparent 47%); pointer-events: none; }
.hero-visual figcaption { position: absolute; z-index: 2; right: 32px; bottom: 31px; left: 32px; display: flex; flex-direction: column; color: #fff; }
.hero-visual figcaption small { margin-bottom: 6px; font-size: 8px; letter-spacing: .18em; text-transform: uppercase; }
.hero-visual figcaption strong { max-width: 470px; font-family: var(--script); font-size: 37px; font-weight: 500; font-style: normal; line-height: 1; }
.hero-seal {
  position: absolute;
  z-index: 3;
  top: 29px;
  right: 29px;
  width: 142px;
  min-height: 132px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.68);
  border-radius: 0 36px 36px 36px;
  background: rgba(29, 29, 27, .32);
  color: #fff;
  text-align: center;
  backdrop-filter: blur(7px);
}
.hero-seal span { font-family: var(--script); font-size: 23px; line-height: .9; }
.hero-seal strong { margin: 2px 0 8px; font-family: var(--script); font-size: 23px; font-weight: 500; line-height: .9; }
.hero-seal small { max-width: 92px; font-size: 7px; letter-spacing: .12em; line-height: 1.3; text-transform: uppercase; }

.belief-strip { min-height: 123px; padding: 28px; display: flex; align-items: center; justify-content: center; gap: 9px; background: var(--ink); color: #fff; text-align: center; }
.belief-strip p, .belief-strip strong { margin: 0; font-family: var(--serif); font-size: clamp(22px, 2.35vw, 35px); font-weight: 400; }
.belief-strip strong { color: var(--sand); font-family: var(--script); font-size: clamp(29px, 3vw, 45px); font-style: normal; }

.proof-strip { display: grid; grid-template-columns: repeat(5, 1fr); border-bottom: 1px solid var(--line); background: var(--cream); }
.proof-strip div { min-height: 134px; padding: 26px clamp(20px, 3vw, 46px); display: flex; flex-direction: column; justify-content: center; border-right: 1px solid var(--line); }
.proof-strip div:last-child { border-right: 0; }
.proof-strip strong { font-family: var(--serif); font-size: clamp(26px, 2.6vw, 39px); font-weight: 400; }
.proof-strip span { margin-top: 7px; color: #776f67; font-size: 9px; letter-spacing: .13em; text-transform: uppercase; }

.problem-section { padding: clamp(90px, 10vw, 158px) clamp(22px, 6vw, 94px); display: grid; grid-template-columns: 1.05fr .67fr; gap: clamp(45px, 8vw, 128px); background: #000; color: #fff; }
.problem-heading h2,
.category-section h2,
.method-intro h2,
.alterations-heading h2,
.comparison-heading h2,
.lead-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -.025em;
}
.problem-heading h2 { max-width: 820px; font-size: clamp(53px, 5.6vw, 88px); line-height: .96; }
.problem-punch { max-width: 790px; margin: 19px 0 0; color: var(--sand); font-family: var(--script); font-size: clamp(35px, 4vw, 62px); font-style: normal; line-height: .95; }
.problem-copy { padding-top: 42px; color: rgba(255,255,255,.66); font-size: 16px; line-height: 1.78; }
.problem-copy p { margin: 0 0 25px; }
.pain-grid { grid-column: 1 / -1; margin-top: 30px; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line-light); border-left: 1px solid var(--line-light); }
.pain-grid article { min-height: 295px; padding: 27px; display: flex; flex-direction: column; border-right: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.pain-grid article > span { color: rgba(255,255,255,.35); font-size: 9px; }
.pain-grid h3 { max-width: 260px; margin: auto 0 18px; font-family: var(--serif); font-size: 29px; font-weight: 500; line-height: 1.05; }
.pain-grid p { margin: 0; color: rgba(255,255,255,.58); font-size: 13px; line-height: 1.68; }

.category-section { padding: clamp(82px, 9vw, 140px) clamp(22px, 6vw, 94px); display: flex; flex-direction: column; align-items: center; background: var(--terra); color: #fff; text-align: center; }
.category-section > p { margin: 0 0 18px; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.category-section h2 { font-size: clamp(43px, 4.6vw, 72px); line-height: 1.01; }
.category-section > strong { max-width: 1120px; margin-top: 7px; font-family: var(--script); font-size: clamp(52px, 5.6vw, 86px); font-weight: 500; font-style: normal; line-height: .9; }
.category-section .button { margin-top: 36px; }

.method-section { padding: clamp(90px, 10vw, 158px) clamp(22px, 6vw, 94px); background: var(--paper); }
.method-intro { display: grid; grid-template-columns: 1.1fr .65fr; gap: clamp(45px, 8vw, 128px); align-items: end; }
.method-intro h2 { font-size: clamp(54px, 5.8vw, 90px); line-height: .95; }
.method-intro > p,
.method-intro > div > p { margin: 0 0 18px; color: #5c5650; font-size: 17px; line-height: 1.75; }
.method-layout { margin-top: 78px; display: grid; grid-template-columns: .9fr 1.1fr; background: var(--sand); }
.method-layout figure { position: relative; min-height: 770px; margin: 0; overflow: hidden; }
.method-layout figure img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.55); }
.method-layout figcaption { position: absolute; right: 25px; bottom: 22px; left: 25px; color: #fff; font-size: 8px; letter-spacing: .17em; text-transform: uppercase; }
.pillar-list { padding: clamp(35px, 5.3vw, 80px); }
.pillar-list article { min-height: 148px; padding: 24px 0; display: grid; grid-template-columns: 55px 1fr; gap: 17px; border-bottom: 1px solid var(--line); }
.pillar-list article:first-child { border-top: 1px solid var(--line); }
.pillar-list article > span { padding-top: 7px; color: #887f75; font-size: 9px; }
.pillar-list small { color: var(--terra-dark); font-family: var(--serif); font-size: 8px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.pillar-list h3 { margin: 4px 0 9px; font-family: var(--serif); font-size: 31px; font-weight: 500; }
.pillar-list p { max-width: 600px; margin: 0; color: #625b54; font-size: 13px; line-height: 1.65; }
.method-note { padding: 34px clamp(25px, 5vw, 78px); display: grid; grid-template-columns: .25fr 1fr; gap: 36px; align-items: center; background: var(--ink); color: #fff; }
.method-note span { color: rgba(255,255,255,.42); font-size: 9px; letter-spacing: .15em; text-transform: uppercase; }
.method-note p { max-width: 920px; margin: 0; font-family: var(--script); font-size: clamp(28px, 3vw, 43px); font-style: normal; line-height: 1.05; }

.alterations-section { padding: clamp(90px, 10vw, 158px) clamp(22px, 6vw, 94px); background: var(--cream); }
.alterations-heading { display: grid; grid-template-columns: .45fr 1.05fr .62fr; gap: clamp(28px, 5vw, 76px); align-items: start; }
.alterations-heading .eyebrow { margin-top: 12px; }
.alterations-heading h2 { font-size: clamp(48px, 5vw, 78px); line-height: 1.01; }
.alterations-heading > p:last-child { margin: 12px 0 0; color: #5e5851; line-height: 1.74; }
.alterations-grid { margin-top: 75px; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.alterations-grid article { min-height: 260px; padding: 27px; display: flex; flex-direction: column; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.alterations-grid article > span { color: #8a8178; font-size: 9px; }
.alterations-grid h3 { margin: auto 0 16px; font-family: var(--serif); font-size: 31px; font-weight: 500; }
.alterations-grid h3 a { color: inherit; text-decoration: none; }
.alterations-grid h3 a:hover { text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 5px; }
.alterations-grid p { margin: 0; color: #625c55; font-size: 13px; line-height: 1.68; }

.comparison-section { padding: clamp(90px, 10vw, 158px) clamp(22px, 6vw, 94px); display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(55px, 8vw, 128px); background: var(--sage); color: #fff; }
.comparison-heading h2 { max-width: 720px; font-size: clamp(50px, 5vw, 79px); line-height: 1; }
.comparison-table { border-top: 1px solid var(--line-light); }
.comparison-header { min-height: 66px; display: grid; grid-template-columns: 1fr 1fr; gap: 42px; align-items: center; border-bottom: 1px solid var(--line-light); color: rgba(255,255,255,.47); font-size: 8px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.comparison-row { position: relative; min-height: 100px; display: grid; grid-template-columns: 1fr 1fr; gap: 42px; align-items: center; border-bottom: 1px solid var(--line-light); }
.comparison-row > div { display: grid; grid-template-columns: 25px 1fr; gap: 10px; align-items: start; }
.comparison-row i { font-size: 18px; font-style: normal; font-weight: 300; }
.comparison-row > div:first-child { color: rgba(255,255,255,.49); }
.comparison-row > div:last-of-type i { color: var(--sand); }
.comparison-row span, .comparison-row strong { font-size: 13px; font-weight: 400; line-height: 1.5; }
.comparison-row small { position: absolute; right: 0; bottom: 8px; color: rgba(255,255,255,.24); font-size: 8px; }

.story-section { display: grid; grid-template-columns: .9fr 1.1fr; background: var(--sand); }
.story-section > figure { position: relative; min-height: 930px; margin: 0; overflow: hidden; }
.story-section > figure img { width: 100%; height: 100%; object-fit: cover; object-position: center 43%; filter: saturate(.55) contrast(.98); }
.story-section > figure::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(18,17,15,.46), transparent 46%); }
.story-section > figure figcaption { position: absolute; z-index: 2; bottom: 29px; left: 31px; color: #fff; font-size: 8px; letter-spacing: .17em; text-transform: uppercase; }
.story-copy { padding: clamp(76px, 9vw, 138px) clamp(30px, 7vw, 108px); display: flex; flex-direction: column; justify-content: center; }
.story-copy h2,
.offer-heading h2,
.fit-heading h2,
.faq-heading h2,
.final-cta h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -.025em;
}
.story-copy h2 { max-width: 830px; font-size: clamp(48px, 4.8vw, 75px); line-height: 1.01; }
.story-copy > p:not(.eyebrow) { max-width: 700px; margin: 29px 0 0; color: #5e5750; font-size: 15px; line-height: 1.75; }
.story-copy blockquote { max-width: 740px; margin: 42px 0 7px; padding: 26px 0 26px 29px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); border-left: 3px solid var(--terra-dark); color: var(--terra-dark); font-family: var(--script); font-size: clamp(31px, 3.2vw, 48px); font-style: normal; line-height: 1.05; }
.story-timeline { margin-top: 46px; display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.story-timeline div { min-height: 111px; padding: 20px; display: grid; grid-template-columns: 61px 1fr; gap: 13px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.story-timeline strong { font-family: var(--serif); font-size: 21px; font-weight: 500; }
.story-timeline span { color: #665f58; font-size: 11px; line-height: 1.55; }

.offer-section { padding: clamp(90px, 10vw, 158px) clamp(22px, 6vw, 94px); background: var(--paper); }
.offer-heading { display: grid; grid-template-columns: .42fr 1.05fr .72fr; gap: clamp(30px, 5vw, 76px); align-items: start; }
.offer-heading .eyebrow { margin-top: 12px; }
.offer-heading h2 { font-size: clamp(48px, 4.9vw, 77px); line-height: 1; }
.offer-punch { grid-column: 2; margin: -46px 0 0; color: var(--terra); font-family: var(--script); font-size: clamp(36px, 3.8vw, 57px); font-style: normal; line-height: .95; }
.offer-heading > p:last-child { grid-column: 3; grid-row: 1 / 3; margin: 12px 0 0; color: #5e5851; line-height: 1.75; }
.offer-grid { margin-top: 83px; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.offer-grid article { min-height: 270px; padding: 27px; display: flex; flex-direction: column; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.offer-grid article > span { color: #8a8178; font-size: 9px; }
.offer-grid article > div { margin-top: auto; }
.offer-grid h3 { margin: 0 0 15px; font-family: var(--serif); font-size: 31px; font-weight: 500; line-height: 1.05; }
.offer-grid p { margin: 0; color: #625c55; font-size: 13px; line-height: 1.68; }
.value-stack { margin-top: 57px; padding: 37px clamp(28px, 5vw, 78px); display: grid; grid-template-columns: 1fr 65px 1fr; gap: 30px; align-items: center; background: var(--ink); color: #fff; }
.value-stack > div { display: flex; flex-direction: column; gap: 9px; }
.value-stack > div:last-child { text-align: right; }
.value-stack small { color: rgba(255,255,255,.4); font-size: 8px; letter-spacing: .15em; text-transform: uppercase; }
.value-stack strong { font-family: var(--serif); font-size: clamp(23px, 2.4vw, 36px); font-weight: 500; line-height: 1.17; }
.value-stack > span { color: var(--sand); font-family: var(--serif); font-size: 39px; text-align: center; }

.fit-section { padding: clamp(90px, 10vw, 158px) clamp(22px, 6vw, 94px); background: var(--terra-dark); color: #fff; }
.fit-heading { display: grid; grid-template-columns: .5fr 1.1fr .62fr; gap: clamp(28px, 5vw, 76px); align-items: start; }
.fit-heading .eyebrow { margin-top: 12px; }
.fit-heading h2 { font-size: clamp(51px, 5.3vw, 83px); line-height: .98; }
.fit-heading > p:last-child { margin: 12px 0 0; font-family: var(--script); font-size: clamp(32px, 3.3vw, 49px); font-style: normal; line-height: 1; }
.fit-columns { margin-top: 72px; display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid rgba(255,255,255,.28); border-left: 1px solid rgba(255,255,255,.28); }
.fit-columns > div { padding: clamp(28px, 4vw, 54px); border-right: 1px solid rgba(255,255,255,.28); border-bottom: 1px solid rgba(255,255,255,.28); }
.fit-columns > div > span { display: inline-flex; margin-bottom: 31px; padding: 9px 12px; border: 1px solid rgba(255,255,255,.42); border-radius: 50px; font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.fit-columns ul { margin: 0; padding: 0; list-style: none; }
.fit-columns li { min-height: 60px; padding: 16px 0; display: grid; grid-template-columns: 26px 1fr; align-items: start; border-bottom: 1px solid rgba(255,255,255,.2); color: rgba(255,255,255,.8); font-size: 14px; line-height: 1.55; }
.fit-columns li::before { content: "✓"; color: #fff; }
.fit-no { background: rgba(43,24,19,.15); }
.fit-no li { color: rgba(255,255,255,.62); }
.fit-no li::before { content: "×"; color: rgba(255,255,255,.62); font-size: 18px; }
.fit-section > .button { margin-top: 38px; }

.lead-section { padding: clamp(88px, 10vw, 154px) clamp(22px, 6vw, 94px); display: grid; grid-template-columns: .88fr 1.12fr; gap: clamp(52px, 9vw, 140px); background: #000; color: #fff; }
.lead-copy { position: sticky; top: 126px; align-self: start; }
.lead-copy h2 { max-width: 750px; font-size: clamp(53px, 5.5vw, 86px); line-height: .97; }
.lead-copy > p:not(.eyebrow) { max-width: 620px; margin: 30px 0 0; color: rgba(255,255,255,.66); font-size: 16px; line-height: 1.75; }
.lead-copy ol { margin: 39px 0 0; padding: 0; border-top: 1px solid var(--line-light); list-style: none; }
.lead-copy li { padding: 18px 0; display: grid; grid-template-columns: 46px 1fr; gap: 12px; border-bottom: 1px solid var(--line-light); }
.lead-copy li span { color: rgba(255,255,255,.36); font-size: 9px; }
.lead-copy li p { margin: 0; color: rgba(255,255,255,.7); font-size: 13px; line-height: 1.55; }

.lead-form { padding: clamp(30px, 4.2vw, 56px); border-radius: 0 46px 46px 46px; background: var(--cream); color: var(--ink); box-shadow: 0 24px 80px rgba(0,0,0,.18); }
.form-heading { padding-bottom: 28px; display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; border-bottom: 1px solid var(--line); }
.form-heading > span { color: var(--terra-dark); font-family: var(--serif); font-size: 8px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.form-heading strong { max-width: 390px; font-family: var(--serif); font-size: clamp(29px, 2.7vw, 42px); font-weight: 500; line-height: 1.05; text-align: right; }
.form-grid { margin-top: 31px; display: grid; grid-template-columns: 1fr 1fr; gap: 22px 18px; }
.form-grid label { display: flex; flex-direction: column; gap: 9px; }
.form-grid label > span { color: var(--muted); font-family: var(--serif); font-size: 8px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  min-height: 49px;
  padding: 12px 0;
  border: 0;
  border-bottom: 1px solid #a99f94;
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 14px;
  transition: border-color .2s ease;
}
.form-grid input:focus, .form-grid select:focus, .form-grid textarea:focus { border-color: var(--terra); }
.form-grid textarea { resize: vertical; }
.form-wide { grid-column: 1 / -1; }
.honeypot { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.consent-row { margin-top: 27px; display: grid; grid-template-columns: 18px 1fr; gap: 11px; align-items: start; cursor: pointer; }
.consent-row input { width: 16px; height: 16px; margin: 1px 0 0; accent-color: var(--terra); }
.consent-row span { color: #655f58; font-size: 10px; line-height: 1.55; }
.consent-row a { border-bottom: 1px solid currentColor; }
.form-submit { width: 100%; min-height: 61px; margin-top: 26px; padding: 0 22px; display: flex; align-items: center; justify-content: space-between; border: 0; border-radius: 0 30px 30px 30px; background: #000; color: #fff; font-family: var(--serif); font-size: 12px; font-weight: 700; cursor: pointer; transition: background .2s ease; }
.form-submit:hover { background: var(--terra-dark); }
.form-submit:disabled { cursor: wait; opacity: .7; }
.form-submit span { font-size: 20px; font-weight: 300; }
.form-status { min-height: 18px; margin: 14px 0 0; font-size: 11px; line-height: 1.5; }
.form-status.success { color: #38644b; }
.form-status.error { color: #8e3c31; }
.form-note { margin: 6px 0 0; color: #807970; font-size: 9px; text-align: center; }

.faq-section { padding: clamp(90px, 10vw, 154px) clamp(22px, 6vw, 94px); display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(54px, 8vw, 128px); background: var(--cream); }
.faq-heading { position: sticky; top: 126px; align-self: start; }
.faq-heading h2 { max-width: 650px; font-size: clamp(49px, 4.9vw, 77px); line-height: 1; }
.faq-heading > p:last-child { max-width: 490px; margin: 27px 0 0; color: #625b54; font-size: 15px; line-height: 1.7; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { min-height: 103px; display: grid; grid-template-columns: 47px 1fr 22px; gap: 17px; align-items: center; list-style: none; cursor: pointer; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary > span { color: #8a8178; font-size: 9px; }
.faq-list summary strong { font-family: var(--serif); font-size: clamp(20px, 2vw, 29px); font-weight: 500; line-height: 1.16; }
.faq-list summary i { font-size: 22px; font-style: normal; font-weight: 300; transition: transform .2s ease; }
.faq-list details[open] summary i { transform: rotate(45deg); }
.faq-list details > p { max-width: 730px; margin: -3px 0 0 64px; padding: 0 37px 30px 0; color: #625c55; font-size: 14px; line-height: 1.72; }

.final-cta { padding: clamp(94px, 11vw, 174px) clamp(22px, 6vw, 94px); display: flex; flex-direction: column; align-items: center; background: var(--paper); text-align: center; }
.final-cta .eyebrow { margin-bottom: 28px; }
.final-cta h2 { max-width: 1080px; font-size: clamp(56px, 6.3vw, 99px); line-height: .94; }
.final-cta > strong { max-width: 1000px; margin-top: 8px; color: var(--terra); font-family: var(--script); font-size: clamp(47px, 5.5vw, 82px); font-weight: 500; font-style: normal; line-height: .9; }
.final-cta .button { margin-top: 43px; }
.final-cta > small { margin-top: 17px; color: #7c746c; font-size: 8px; letter-spacing: .13em; text-transform: uppercase; }

.site-footer { min-height: 245px; padding: 52px clamp(22px, 4vw, 68px) 30px; display: grid; grid-template-columns: 1.15fr .75fr 1fr; gap: 38px; align-items: start; background: #000; color: rgba(255,255,255,.67); font-size: 10px; letter-spacing: .07em; }
.site-footer p { margin: 0; line-height: 1.7; }
.site-footer a { color: #fff; }
.footer-brand { display: flex; align-items: center; gap: 24px; }
.footer-brand img { width: 88px; height: 72px; object-fit: contain; }
.footer-brand > div { display: flex; flex-direction: column; gap: 6px; }
.footer-brand small { color: rgba(255,255,255,.58); font-family: var(--script); font-size: 20px; letter-spacing: 0; line-height: 1; }
.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 22px; }
.footer-links a:hover { text-decoration: underline; }
.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-disclaimer { grid-column: 1 / -1; margin-top: 15px !important; padding-top: 23px; border-top: 1px solid rgba(255,255,255,.13); color: rgba(255,255,255,.38); font-size: 9px; }
.mobile-cta { display: none; }
.cosmonou-mbk-page .mbk-landing { width: 100%; max-width: none; padding: 0; align-items: stretch; }
/* Isolate the managed templates from theme and builder defaults. */
.mbk-landing .topline,
.mbk-landing .site-header,
.mbk-landing .brand,
.mbk-landing .desktop-nav,
.mbk-landing .hero-actions,
.mbk-landing .hero-assurances,
.mbk-landing .belief-strip,
.mbk-landing .footer-brand { display: flex !important; flex-direction: row !important; }
.mbk-landing .site-header,
.mbk-landing .desktop-nav,
.mbk-landing .brand,
.mbk-landing .topline { align-items: center !important; }
.mbk-landing .topline { justify-content: center !important; }
.mbk-landing .site-header { justify-content: space-between !important; }
.mbk-landing .desktop-nav { width: auto !important; }
.mbk-landing .hero-copy,
.mbk-landing .hero-seal,
.mbk-landing .story-copy,
.mbk-landing .footer-contact{ display: flex !important; flex-direction: column !important; }
.mbk-landing .hero,
.mbk-landing .proof-strip,
.mbk-landing .problem-section,
.mbk-landing .pain-grid,
.mbk-landing .method-intro,
.mbk-landing .method-layout,
.mbk-landing .method-note,
.mbk-landing .alterations-heading,
.mbk-landing .alterations-grid,
.mbk-landing .comparison-section,
.mbk-landing .comparison-header,
.mbk-landing .comparison-row,
.mbk-landing .story-section,
.mbk-landing .story-timeline,
.mbk-landing .offer-heading,
.mbk-landing .offer-grid,
.mbk-landing .value-stack,
.mbk-landing .fit-heading,
.mbk-landing .fit-columns,
.mbk-landing .lead-section,
.mbk-landing .faq-section,
.mbk-landing .site-footer { display: grid !important; }
.mbk-landing .category-section,
.mbk-landing .final-cta { display: flex !important; flex-direction: column !important; align-items: center !important; }
.mbk-landing .button-primary,
.mbk-landing .nav-cta,
.mbk-landing .form-submit { border-color: #000 !important; background: #000 !important; color: #fff !important; }
.mbk-landing .button-light { background: transparent !important; color: #fff !important; }
.mbk-landing .text-link{ padding: 0 !important; border: 0 !important; border-radius: 0 !important; background: transparent !important; box-shadow: none !important; }
.mbk-landing .text-link { color: var(--ink) !important; }
.mbk-landing .hero-seal { width: 142px !important; align-items: center !important; justify-content: center !important; }
.mbk-landing .problem-heading h2,
.mbk-landing .comparison-heading h2,
.mbk-landing .fit-heading h2,
.mbk-landing .lead-copy h2,
.mbk-landing .category-section h2 { color: #fff !important; }
.mbk-landing .mobile-cta { display: none !important; }

@media (max-width: 1080px) {
  .mbk-landing .desktop-nav { display: none !important; }
  .mbk-landing .site-header .mbk-mobile-menu { display: block !important; opacity: 1 !important; visibility: visible !important; }
  .mbk-landing .mbk-mobile-menu:not([open]) .mbk-mobile-nav { display: none !important; }
  .mbk-landing .mbk-mobile-menu[open] .mbk-mobile-nav { display: flex !important; }
  .pain-grid { grid-template-columns: repeat(2, 1fr); }
  .alterations-heading { grid-template-columns: .4fr 1.1fr; }
  .alterations-heading > p:last-child { grid-column: 2; }
  .offer-heading { grid-template-columns: .38fr 1.1fr; }
  .offer-punch { grid-column: 2; }
  .offer-heading > p:last-child { grid-column: 2; grid-row: auto; margin-top: 17px; }
  .offer-grid { grid-template-columns: repeat(2, 1fr); }
  .fit-heading { grid-template-columns: .4fr 1.1fr; }
  .fit-heading > p:last-child { grid-column: 2; }
}

@media (max-width: 860px) {
  .admin-bar .site-header { top: 46px; }
  .mbk-landing .belief-strip { flex-direction: column !important; }
  .hero { grid-template-columns: 1fr; }
  .hero-copy { min-height: 730px; }
  .hero-visual { min-height: 700px; }
  .belief-strip { flex-direction: column; gap: 4px; }
  .proof-strip { grid-template-columns: repeat(2, 1fr); }
  .proof-strip div:nth-child(even) { border-right: 0; }
  .proof-strip div:nth-child(-n+4) { border-bottom: 1px solid var(--line); }
  .proof-strip div:last-child { grid-column: 1 / -1; }
  .problem-section,
  .method-intro,
  .comparison-section,
  .lead-section,
  .story-section,
  .faq-section { grid-template-columns: 1fr; }
  .problem-copy { padding-top: 0; }
  .method-layout { grid-template-columns: 1fr; }
  .method-layout figure { min-height: 640px; }
  .alterations-grid { grid-template-columns: repeat(2, 1fr); }
  .lead-copy { position: static; }
  .story-section > figure { min-height: 700px; }
  .faq-heading { position: static; }
}

@media (max-width: 620px) {
  html { scroll-padding-top: 72px; }
  body { padding-bottom: 62px; }
  .topline { min-height: 31px; font-size: 7px; }
  .topline strong { display: none; }
  .site-header { min-height: 70px; }
  .brand img { width: 67px; height: 43px; }
  .mbk-mobile-menu summary { min-height: 42px; padding: 0 14px; }
  .mbk-mobile-nav { width: 100vw; }
  .mbk-mobile-nav .nav-cta { min-height: 44px; padding: 0 14px; font-size: 10px; }
  .hero-copy { min-height: 675px; padding-top: 64px; }
  .hero h1 { font-size: clamp(49px, 14.4vw, 68px); }
  .hero-lead { font-size: 16px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .mbk-landing .hero-actions,
  .mbk-landing .hero-assurances { flex-direction: column !important; }
  .hero-actions .button { text-align: left; }
  .text-link { align-self: flex-start; }
  .hero-assurances { flex-direction: column; gap: 8px; }
  .hero-visual { min-height: 570px; }
  .hero-seal { width: 112px; top: 19px; right: 19px; }
  .belief-strip p, .belief-strip strong { font-size: 21px; }
  .proof-strip div { min-height: 112px; }
  .proof-strip strong { font-size: 25px; }
  .problem-heading h2 { font-size: 51px; }
  .problem-punch { font-size: 31px; }
  .pain-grid { grid-template-columns: 1fr; }
  .pain-grid article { min-height: 235px; }
  .category-section h2, .category-section > strong { font-size: 43px; }
  .method-intro h2 { font-size: 54px; }
  .method-layout { margin-top: 55px; }
  .method-layout figure { min-height: 510px; }
  .pillar-list article { grid-template-columns: 40px 1fr; }
  .method-note { grid-template-columns: 1fr; gap: 10px; }
  .alterations-heading { grid-template-columns: 1fr; gap: 5px; }
  .alterations-heading > p:last-child { grid-column: auto; margin-top: 22px; }
  .alterations-grid { margin-top: 52px; grid-template-columns: 1fr; }
  .alterations-grid article { min-height: 225px; }
  .comparison-header { gap: 20px; }
  .comparison-row { min-height: 128px; gap: 20px; }
  .comparison-row > div { grid-template-columns: 19px 1fr; gap: 6px; }
  .comparison-row span, .comparison-row strong { font-size: 12px; }
  .story-section > figure { min-height: 560px; }
  .story-copy h2 { font-size: 48px; }
  .story-timeline { grid-template-columns: 1fr; }
  .offer-heading,
  .fit-heading { grid-template-columns: 1fr; gap: 5px; }
  .offer-punch,
  .offer-heading > p:last-child,
  .fit-heading > p:last-child { grid-column: auto; }
  .offer-punch { margin: 7px 0 0; }
  .offer-heading > p:last-child,
  .fit-heading > p:last-child { margin-top: 23px; }
  .offer-grid { margin-top: 55px; grid-template-columns: 1fr; }
  .offer-grid article { min-height: 225px; }
  .value-stack { grid-template-columns: 1fr; gap: 20px; }
  .value-stack > div:last-child { text-align: left; }
  .value-stack > span { text-align: left; }
  .fit-columns { margin-top: 53px; grid-template-columns: 1fr; }
  .lead-copy h2 { font-size: 51px; }
  .form-heading { align-items: flex-start; flex-direction: column; }
  .form-heading strong { text-align: left; }
  .form-grid { grid-template-columns: 1fr; }
  .form-wide { grid-column: auto; }
  .faq-list summary { grid-template-columns: 34px 1fr 19px; gap: 10px; }
  .faq-list details > p { margin-left: 44px; padding-right: 5px; }
  .final-cta h2 { font-size: 55px; }
  .final-cta > strong { font-size: 38px; }
  .site-footer { grid-template-columns: 1fr; padding-bottom: 48px; }
  .footer-disclaimer { grid-column: auto; }
  .mobile-cta {
    position: fixed;
    z-index: 60;
    right: 0;
    bottom: 0;
    left: 0;
    min-height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    color: #fff;
    font-family: var(--serif);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .04em;
    box-shadow: 0 -12px 34px rgba(0,0,0,.15);
  }
  .mbk-landing .mobile-cta {
    display: flex !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: #000 !important;
    color: #fff !important;
    box-shadow: 0 -12px 34px rgba(0,0,0,.15) !important;
  }
}

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

/* Shared multi-page system ------------------------------------------------ */
.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 12px 16px;
  transform: translateY(-160%);
  background: #fff;
  color: #000;
  font-family: var(--serif);
  font-size: 12px;
  box-shadow: 0 8px 28px rgba(0,0,0,.18);
}
.skip-link:focus { transform: translateY(0); }
.mbk-site-shell { overflow: clip; }
.mbk-site-page { display: block; }
.mbk-breadcrumbs {
  min-height: 52px;
  padding: 0 clamp(24px, 5.5vw, 88px);
  display: flex;
  align-items: center;
  gap: 9px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--serif);
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.mbk-breadcrumbs a:hover { color: var(--ink); }
.mbk-breadcrumbs [aria-current="page"] { color: var(--ink); }

.page-hero {
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr);
  border-bottom: 1px solid var(--line);
}
.page-hero-copy {
  padding: clamp(76px, 8vw, 128px) clamp(28px, 6vw, 98px) clamp(66px, 7vw, 106px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.page-hero h1 {
  max-width: 900px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(54px, 5.45vw, 88px);
  font-weight: 500;
  letter-spacing: -.04em;
  line-height: .95;
}
.page-lead {
  max-width: 690px;
  margin: 33px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 1.65vw, 24px);
  line-height: 1.42;
}
.page-hero-actions { margin-top: 38px; display: flex; align-items: center; gap: 28px; }
.page-hero-visual { position: relative; min-height: 680px; margin: 0; overflow: hidden; background: var(--cream); }
.page-hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(0,0,0,.34));
  pointer-events: none;
}
.page-hero-visual img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-visual figcaption {
  position: absolute;
  z-index: 1;
  right: clamp(22px, 4vw, 52px);
  bottom: clamp(24px, 4vw, 52px);
  left: clamp(22px, 4vw, 52px);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  color: #fff;
}
.page-hero-visual figcaption small { font-family: var(--serif); font-size: 9px; letter-spacing: .16em; text-transform: uppercase; }
.page-hero-visual figcaption strong { font-family: var(--script); font-size: 28px; font-weight: 500; }
.page-proof { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.page-intro,
.page-card-section,
.collection-section,
.page-quote {
  padding: clamp(88px, 10vw, 158px) clamp(28px, 6vw, 96px);
}
.page-intro {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr);
  gap: clamp(48px, 8vw, 135px);
  background: var(--cream);
}
.page-intro h2,
.section-heading h2{
  max-width: 850px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(43px, 4.4vw, 72px);
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: .98;
}
.page-intro-copy { max-width: 720px; }
.page-intro-copy p { margin: 0; color: var(--muted); font-size: 20px; line-height: 1.55; }
.page-intro-copy p + p { margin-top: 25px; }
.section-heading { max-width: 970px; }
.page-card-section { background: #fff; }
.page-card-grid {
  margin-top: clamp(52px, 7vw, 90px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.page-card-grid article {
  min-height: 310px;
  padding: 31px clamp(22px, 2.4vw, 37px) 36px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.page-card-grid article > span { color: var(--terra); font-family: var(--serif); font-size: 12px; letter-spacing: .12em; }
.page-card-grid h3 { margin: auto 0 18px; font-family: var(--serif); font-size: 25px; font-weight: 500; line-height: 1.04; }
.page-card-grid p { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.52; }

.page-steps-section { padding: clamp(88px, 10vw, 158px) clamp(28px, 6vw, 96px); background: #090909; color: #fff; }
.section-heading-light h2 { color: #fff; }
.page-steps { margin: clamp(55px, 7vw, 92px) 0 0; padding: 0; border-top: 1px solid var(--line-light); list-style: none; }
.page-steps li {
  min-height: 98px;
  padding: 24px 0;
  display: grid;
  grid-template-columns: minmax(70px, .2fr) minmax(0, 1.8fr);
  align-items: center;
  gap: 28px;
  border-bottom: 1px solid var(--line-light);
}
.page-steps span { color: var(--sand); font-family: var(--serif); font-size: 13px; letter-spacing: .14em; }
.page-steps p { max-width: 890px; margin: 0; font-size: clamp(18px, 1.7vw, 24px); line-height: 1.42; }
.page-quote { border-bottom: 1px solid var(--line); background: var(--sand); }
.page-quote blockquote {
  max-width: 1120px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 78px);
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: 1;
}

.collection-section { background: #fff; }
.collection-grid { margin-top: clamp(58px, 7vw, 94px); display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; background: var(--line); }
.collection-card { min-height: 420px; display: grid; grid-template-columns: minmax(190px, .82fr) minmax(0, 1.18fr); background: #fff; }
.collection-image { min-height: 420px; overflow: hidden; background: var(--cream); }
.collection-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.collection-card:hover .collection-image img { transform: scale(1.035); }
.collection-card > div { padding: 38px clamp(26px, 3vw, 46px); display: flex; flex-direction: column; }
.collection-card small { color: var(--terra); font-family: var(--serif); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; }
.collection-card h3 { margin: 22px 0 16px; font-family: var(--serif); font-size: 34px; font-weight: 500; line-height: 1; }
.collection-card p { margin: 0; color: var(--muted); font-size: 17px; line-height: 1.5; }
.card-link { margin-top: auto; padding-top: 30px; font-family: var(--serif); font-size: 12px; font-weight: 700; }
.card-link span { margin-left: 9px; }

.page-faq { border-top: 1px solid var(--line); }
.page-final-cta > p:not(.eyebrow) { max-width: 720px; margin: 25px auto 0; color: var(--muted); font-size: 19px; line-height: 1.5; text-align: center; }
.footer-legal { margin-top: 20px !important; color: rgba(255,255,255,.52); font-size: 12px !important; }

/* Direct contact page ----------------------------------------------------- */
.contact-hero {
  padding: clamp(64px, 7vw, 108px) clamp(28px, 6vw, 96px);
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(500px, 1.22fr);
  gap: clamp(52px, 8vw, 128px);
  align-items: start;
  background: #090909;
  color: #fff;
}
.contact-hero-copy { padding-top: clamp(18px, 4vw, 58px); position: sticky; top: 125px; }
.contact-hero h1 {
  max-width: 720px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(58px, 6vw, 96px);
  font-weight: 500;
  letter-spacing: -.04em;
  line-height: .92;
}
.contact-lead { max-width: 620px; margin: 30px 0 0; color: rgba(255,255,255,.7); font-size: 21px; line-height: 1.5; }
.contact-note { max-width: 410px; margin: 34px 0 0; color: rgba(255,255,255,.48); font-family: var(--serif); font-size: 10px; letter-spacing: .12em; line-height: 1.5; text-transform: uppercase; }
.contact-form-panel .lead-form { margin: 0; }
.contact-response {
  padding: clamp(88px, 10vw, 154px) clamp(28px, 6vw, 96px);
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(420px, 1.18fr);
  gap: clamp(52px, 8vw, 132px);
  background: var(--cream);
}
.contact-response h2 { max-width: 700px; margin: 0; font-family: var(--serif); font-size: clamp(46px, 4.8vw, 76px); font-weight: 500; letter-spacing: -.04em; line-height: .96; }
.contact-response-content > p { max-width: 720px; margin: 0; color: var(--muted); font-size: 20px; line-height: 1.55; }
.contact-response-content > p + p { margin-top: 24px; }
.contact-response-points { margin-top: 50px; border-top: 1px solid var(--line); }
.contact-response-points article { padding: 25px 0; display: grid; grid-template-columns: 52px minmax(130px, .52fr) minmax(0, 1fr); gap: 20px; align-items: baseline; border-bottom: 1px solid var(--line); }
.contact-response-points span { color: var(--terra); font-family: var(--serif); font-size: 11px; letter-spacing: .12em; }
.contact-response-points strong { font-family: var(--serif); font-size: 20px; font-weight: 500; }
.contact-response-points p { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.45; }

/* Nutrition editorial page ---------------------------------------------- */
.nutrition-story {
  padding: clamp(90px, 10vw, 160px) clamp(28px, 6vw, 96px);
  display: grid;
  grid-template-columns: minmax(360px, .86fr) minmax(0, 1.14fr);
  gap: clamp(60px, 8vw, 136px);
  align-items: center;
  background: var(--cream);
}
.nutrition-story-copy h2,
.nutrition-families h2,
.nutrition-process h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(46px, 4.7vw, 76px);
  font-weight: 500;
  letter-spacing: -.04em;
  line-height: .96;
}
.nutrition-story-copy > p:not(.eyebrow) { max-width: 660px; margin: 28px 0 0; color: var(--muted); font-size: 19px; line-height: 1.58; }
.nutrition-mosaic { min-height: 680px; display: grid; grid-template-columns: 1.12fr .88fr; gap: 16px; align-items: end; }
.nutrition-image { margin: 0; overflow: hidden; background: #ddd7d3; }
.nutrition-image img { width: 100%; height: 100%; object-fit: cover; }
.nutrition-image-1 { min-height: 680px; }
.nutrition-image-2 { min-height: 440px; margin-bottom: 42px; }
.nutrition-difference { padding: clamp(90px, 10vw, 158px) clamp(28px, 6vw, 96px); background: #090909; color: #fff; }
.nutrition-principles { margin-top: clamp(58px, 7vw, 92px); display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 1px solid var(--line-light); border-left: 1px solid var(--line-light); }
.nutrition-principles article { min-height: 330px; padding: 30px; display: flex; flex-direction: column; border-right: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.nutrition-principles span { color: var(--sand); font-family: var(--serif); font-size: 12px; letter-spacing: .14em; }
.nutrition-principles h3 { margin: auto 0 20px; font-family: var(--serif); font-size: 26px; font-weight: 500; line-height: 1.04; }
.nutrition-principles p { margin: 0; color: rgba(255,255,255,.64); font-size: 16px; line-height: 1.5; }
.nutrition-families { padding: clamp(90px, 10vw, 158px) clamp(28px, 6vw, 96px); background: #fff; }
.nutrition-families-heading { max-width: 980px; }
.nutrition-family-grid { margin-top: clamp(58px, 7vw, 94px); display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.nutrition-family-grid article { min-height: 470px; padding: clamp(34px, 4vw, 58px); display: flex; flex-direction: column; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.nutrition-family-grid small { color: var(--terra); font-family: var(--serif); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; }
.nutrition-family-grid h3 { margin: 30px 0 18px; font-family: var(--serif); font-size: clamp(40px, 4vw, 64px); font-weight: 500; line-height: .95; }
.nutrition-family-grid p { max-width: 610px; margin: 0; color: var(--muted); font-size: 18px; line-height: 1.52; }
.nutrition-family-grid ul { margin: auto 0 0; padding: 38px 0 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px 26px; border-top: 1px solid var(--line); list-style: none; }
.nutrition-family-grid li { color: var(--muted); font-family: var(--serif); font-size: 13px; line-height: 1.35; }
.nutrition-family-grid li::before { content: "→"; margin-right: 9px; color: var(--terra); }
.nutrition-process { padding: clamp(90px, 10vw, 158px) clamp(28px, 6vw, 96px); display: grid; grid-template-columns: minmax(0, .78fr) minmax(420px, 1.22fr); gap: clamp(52px, 8vw, 126px); background: var(--cream); }
.nutrition-process ol { margin: 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.nutrition-process li { min-height: 94px; padding: 24px 0; display: grid; grid-template-columns: 54px 1fr; gap: 20px; align-items: center; border-bottom: 1px solid var(--line); }
.nutrition-process li span { color: var(--terra); font-family: var(--serif); font-size: 11px; letter-spacing: .13em; }
.nutrition-process li p { margin: 0; font-size: 19px; line-height: 1.45; }
.nutrition-quote { padding: clamp(90px, 10vw, 158px) clamp(28px, 8vw, 130px); background: var(--sand); }
.nutrition-quote p { max-width: 1160px; margin: 0; font-family: var(--serif); font-size: clamp(42px, 5.2vw, 82px); letter-spacing: -.04em; line-height: .98; }

/* Sustainability manifesto page ----------------------------------------- */
.sustainability-manifesto { padding: clamp(96px, 11vw, 176px) clamp(28px, 6vw, 96px); display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr); gap: clamp(64px, 10vw, 165px); background: #fff; }
.sustainability-manifesto > div:first-child { position: relative; padding-top: 72px; }
.sustainability-manifesto > div:first-child > span { position: absolute; top: 0; left: 0; color: var(--sand); font-family: var(--serif); font-size: 44px; }
.sustainability-manifesto h2 { max-width: 870px; margin: 0; font-family: var(--serif); font-size: clamp(50px, 5.4vw, 86px); font-weight: 500; letter-spacing: -.045em; line-height: .94; }
.sustainability-copy { align-self: end; padding-bottom: 10px; }
.sustainability-copy p { margin: 0; color: var(--muted); font-size: 21px; line-height: 1.58; }
.sustainability-copy p + p { margin-top: 28px; }
.sustainability-pillar-section { padding: clamp(92px, 10vw, 162px) clamp(28px, 6vw, 96px); display: grid; grid-template-columns: minmax(300px, .68fr) minmax(0, 1.32fr); gap: clamp(58px, 9vw, 150px); background: #090909; color: #fff; }
.sustainability-pillar-section header { position: sticky; top: 135px; align-self: start; }
.sustainability-pillar-section header h2 { margin: 0; color: #fff; font-family: var(--serif); font-size: clamp(47px, 4.7vw, 74px); font-weight: 500; letter-spacing: -.04em; line-height: .96; }
.sustainability-pillar-list { border-top: 1px solid var(--line-light); }
.sustainability-pillar-list article { min-height: 180px; padding: 35px 0; display: grid; grid-template-columns: 60px minmax(160px, .55fr) minmax(0, 1fr); gap: 28px; align-items: start; border-bottom: 1px solid var(--line-light); }
.sustainability-pillar-list span { color: var(--sand); font-family: var(--serif); font-size: 11px; letter-spacing: .14em; }
.sustainability-pillar-list h3 { margin: 0; font-family: var(--serif); font-size: 29px; font-weight: 500; line-height: 1; }
.sustainability-pillar-list p { margin: 0; color: rgba(255,255,255,.64); font-size: 17px; line-height: 1.52; }
.sustainability-practice { min-height: 760px; display: grid; grid-template-columns: minmax(0, 1.06fr) minmax(420px, .94fr); background: var(--cream); }
.sustainability-practice figure { min-height: 760px; margin: 0; overflow: hidden; }
.sustainability-practice figure img { width: 100%; height: 100%; object-fit: cover; }
.sustainability-practice > div { padding: clamp(74px, 8vw, 132px) clamp(34px, 6vw, 96px); }
.sustainability-practice h2 { margin: 0; font-family: var(--serif); font-size: clamp(46px, 4.6vw, 74px); font-weight: 500; letter-spacing: -.04em; line-height: .96; }
.sustainability-practice ol { margin: 58px 0 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.sustainability-practice li { padding: 23px 0; display: grid; grid-template-columns: 48px 1fr; gap: 18px; border-bottom: 1px solid var(--line); }
.sustainability-practice li span { color: var(--terra); font-family: var(--serif); font-size: 11px; letter-spacing: .13em; }
.sustainability-practice li p { margin: 0; color: var(--muted); font-size: 17px; line-height: 1.5; }
.sustainability-statement { padding: clamp(94px, 11vw, 178px) clamp(28px, 8vw, 130px); background: var(--sand); }
.sustainability-statement blockquote { max-width: 1160px; margin: 0; font-family: var(--serif); font-size: clamp(43px, 5.2vw, 82px); letter-spacing: -.04em; line-height: .97; }
.sustainability-statement small { margin-top: 40px; display: block; font-family: var(--serif); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; }

/* Recovered legal pages ------------------------------------------------- */
.legal-hero {
  padding: clamp(86px, 10vw, 154px) clamp(28px, 8vw, 130px) clamp(58px, 7vw, 104px);
  border-bottom: 1px solid var(--line);
  background: var(--cream);
}
.legal-hero h1 {
  max-width: 1050px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(58px, 7vw, 108px);
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: .92;
}
.legal-copy {
  max-width: 1040px;
  margin: 0 auto;
  padding: clamp(72px, 9vw, 138px) clamp(28px, 5vw, 74px);
  color: #4f4943;
  font-size: 17px;
  line-height: 1.72;
}
.legal-copy b {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 500;
  line-height: 1.22;
}
.legal-copy a { color: var(--terra-dark); border-bottom: 1px solid currentColor; }

/* Certificates ---------------------------------------------------------- */
.certificates-hero {
  padding: clamp(92px, 10vw, 160px) clamp(28px, 7vw, 112px);
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(330px, .82fr);
  gap: clamp(58px, 9vw, 150px);
  align-items: end;
  background: #090909;
  color: #fff;
}
.certificates-hero h1 {
  max-width: 920px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(58px, 6.6vw, 104px);
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: .92;
}
.certificates-hero p { max-width: 720px; margin: 34px 0 0; color: rgba(255,255,255,.66); font-size: 20px; line-height: 1.55; }
.certificate-labels { border-top: 1px solid var(--line-light); }
.certificate-labels span { padding: 22px 0; display: block; border-bottom: 1px solid var(--line-light); color: var(--sand); font-family: var(--serif); font-size: 19px; letter-spacing: .08em; }
.certificates-content {
  padding: clamp(92px, 10vw, 162px) clamp(28px, 7vw, 112px);
  display: grid;
  grid-template-columns: minmax(360px, .96fr) minmax(0, 1.04fr);
  gap: clamp(60px, 9vw, 150px);
  align-items: start;
  background: var(--cream);
}
.certificates-copy { color: var(--muted); font-size: 18px; line-height: 1.68; }
.certificates-gallery { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.certificates-gallery figure { min-height: 280px; margin: 0; padding: clamp(25px, 4vw, 54px); display: grid; place-items: center; background: #fff; }
.certificates-gallery img { width: auto; max-width: min(100%, 330px); max-height: 190px; object-fit: contain; }

@media (max-width: 1120px) {
  .page-hero { grid-template-columns: 1fr 42%; }
  .page-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .collection-card { grid-template-columns: 1fr; }
  .collection-image { min-height: 330px; }
  .contact-hero { grid-template-columns: 1fr; }
  .contact-hero-copy { position: static; padding-top: 0; }
  .nutrition-principles { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sustainability-pillar-section { grid-template-columns: 1fr; }
  .sustainability-pillar-section header { position: static; }
  .certificates-hero,
  .certificates-content { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .mbk-breadcrumbs { padding-inline: 22px; }
  .page-hero { grid-template-columns: 1fr; }
  .page-hero-copy { padding: 68px 24px 62px; }
  .page-hero h1 { font-size: clamp(49px, 13vw, 70px); }
  .page-hero-visual { min-height: 590px; }
  .page-proof { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .page-intro { grid-template-columns: 1fr; }
  .collection-grid { grid-template-columns: 1fr; }
  .contact-response,
  .nutrition-story,
  .nutrition-process,
  .sustainability-manifesto,
  .sustainability-practice { grid-template-columns: 1fr; }
  .nutrition-mosaic { min-height: 560px; }
  .nutrition-image-1 { min-height: 560px; }
  .nutrition-image-2 { min-height: 360px; }
  .sustainability-practice figure { min-height: 620px; }
}

@media (max-width: 560px) {
  .page-hero-actions { align-items: flex-start; flex-direction: column; }
  .page-hero-visual { min-height: 520px; }
  .page-hero-visual figcaption { align-items: flex-start; flex-direction: column; }
  .page-proof { grid-template-columns: 1fr; }
  .page-intro,
  .page-card-section,
  .collection-section,
  .page-quote,
  .page-steps-section,
  .contact-hero,
  .contact-response,
  .nutrition-story,
  .nutrition-difference,
  .nutrition-families,
  .nutrition-process,
  .nutrition-quote,
  .sustainability-manifesto,
  .sustainability-pillar-section,
  .sustainability-practice > div,
  .sustainability-statement { padding: 78px 22px; }
  .legal-hero,
  .legal-copy,
  .certificates-hero,
  .certificates-content { padding: 78px 22px; }
  .page-intro-copy p { font-size: 18px; }
  .page-card-grid { grid-template-columns: 1fr; }
  .page-card-grid article { min-height: 245px; }
  .page-steps li { grid-template-columns: 52px 1fr; gap: 14px; }
  .collection-card { min-height: 0; }
  .collection-image { min-height: 310px; }
  .collection-card > div { min-height: 330px; padding: 31px 24px; }
  .page-quote blockquote { font-size: 39px; }
  .contact-form-panel .lead-form { padding: 24px 20px; }
  .contact-response-points article { grid-template-columns: 42px 1fr; }
  .contact-response-points article p { grid-column: 2; }
  .nutrition-mosaic { min-height: 0; grid-template-columns: 1fr; }
  .nutrition-image-1,
  .nutrition-image-2 { min-height: 390px; margin: 0; }
  .nutrition-principles,
  .nutrition-family-grid { grid-template-columns: 1fr; }
  .nutrition-principles article { min-height: 260px; }
  .nutrition-family-grid article { min-height: 430px; padding: 34px 24px; }
  .nutrition-family-grid ul { grid-template-columns: 1fr; }
  .nutrition-process li { grid-template-columns: 42px 1fr; }
  .sustainability-manifesto > div:first-child { padding-top: 64px; }
  .sustainability-pillar-list article { grid-template-columns: 42px 1fr; gap: 15px; }
  .sustainability-pillar-list article p { grid-column: 2; }
  .sustainability-practice figure { min-height: 480px; }
  .sustainability-statement blockquote { font-size: 39px; }
  .certificates-gallery figure { min-height: 190px; padding: 18px 12px; }
}
