:root {
  --off-white: #f6f1e8;
  --almond: #efe5d4;
  --terracotta: #d05a3a;
  --terracotta-dark: #ad3f27;
  --forest: #223637;
  --ink: #10191b;
  --sage: #57786e;
  --ochre: #b08a4c;
  --paper: #fbf8f1;
  --line: rgba(34, 54, 55, 0.16);
  --shadow: 0 24px 60px rgba(16, 25, 27, 0.16);
  --radius: 8px;
  --max: 1440px;
}

/* Page-specific compositions: shared brand tokens, different page anatomy. */
.page-about .compact-hero { width:100%; max-width:none; grid-template-columns:minmax(520px,.8fr) minmax(620px,1.2fr); min-height:680px; padding-right:max(32px,calc((100vw - var(--max))/2)); padding-left:max(32px,calc((100vw - var(--max))/2)); background:var(--forest); }
.page-about .compact-hero h1,.page-about .compact-hero>div>p { color:var(--off-white); }
.page-about .compact-hero>img { height:520px; aspect-ratio:16/10; box-shadow:none; }

.page-foldable .compact-hero { grid-template-columns:1fr; min-height:0; padding-top:82px; text-align:center; }
.page-foldable .compact-hero>div { display:grid; justify-items:center; }
.page-foldable .compact-hero h1,.page-foldable .compact-hero>div>p { max-width:980px; }
.page-foldable .compact-hero>img { height:min(54vw,620px); aspect-ratio:2.2/1; object-position:center 58%; }

.page-sample .compact-hero { grid-template-columns:minmax(480px,.68fr) minmax(700px,1.32fr); min-height:720px; }
.page-sample .compact-hero>img { height:580px; aspect-ratio:4/3; }

.page-quality .compact-hero { grid-template-columns:minmax(700px,1.2fr) minmax(470px,.8fr); min-height:690px; }
.page-quality .compact-hero>div { grid-column:2; grid-row:1; }
.page-quality .compact-hero>img { grid-column:1; grid-row:1; height:540px; aspect-ratio:16/10; }

.page-rfq .rfq-page-hero { min-height:350px; grid-template-columns:minmax(720px,1.2fr) minmax(360px,.55fr); padding-top:74px; padding-bottom:54px; }
.page-rfq .brief-layout { background:linear-gradient(to right,var(--paper) 0 67%,var(--off-white) 67% 100%); }

.page-wine .wine-hero { grid-template-columns:minmax(480px,.65fr) minmax(720px,1.35fr); }
.page-wine .wine-hero .subpage-media img { aspect-ratio:16/11; }

.page-cases .case-hero { grid-template-columns:minmax(700px,1.25fr) minmax(420px,.75fr); }
.page-cases .case-hero h1 { max-width:720px; }

.page-resources .resource-hero { grid-template-columns:minmax(640px,1.25fr) minmax(360px,.55fr); }

@media (max-width:980px) {
  .page-about .compact-hero,.page-sample .compact-hero,.page-quality .compact-hero,.page-rfq .rfq-page-hero,.page-wine .wine-hero,.page-cases .case-hero,.page-resources .resource-hero { grid-template-columns:1fr; }
  .page-quality .compact-hero>div,.page-quality .compact-hero>img { grid-column:auto; grid-row:auto; }
}

@media (max-width:640px) {
  .page-about .compact-hero,.page-sample .compact-hero,.page-quality .compact-hero,.page-rfq .rfq-page-hero,.page-wine .wine-hero,.page-cases .case-hero,.page-resources .resource-hero { min-height:0; }
  .page-about .compact-hero { padding-right:14px; padding-left:14px; }
  .page-about .compact-hero>img,.page-sample .compact-hero>img,.page-quality .compact-hero>img,.page-foldable .compact-hero>img { height:auto; }
  .page-foldable .compact-hero { text-align:left; }
  .page-foldable .compact-hero>div { justify-items:start; }
  .page-rfq .brief-layout { background:transparent; }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--off-white);
  color: var(--ink);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

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

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

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

h1,
h2 {
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 0.98;
}

h1 {
  max-width: 820px;
  font-size: clamp(3rem, 4.55vw, 4.85rem);
  line-height: 1.02;
}

h2 {
  font-size: clamp(2.2rem, 3.4vw, 4rem);
}

h3 {
  color: var(--forest);
  font-size: 1rem;
  font-weight: 760;
  line-height: 1.2;
}

.section-shell {
  width: min(var(--max), calc(100% - 64px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 170px 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 84px;
  padding: 12px clamp(28px, 4vw, 72px);
  border-bottom: 1px solid rgba(34, 54, 55, 0.08);
  background: rgba(246, 241, 232, 0.9);
  backdrop-filter: blur(18px);
}

.brand img {
  width: 132px;
  height: auto;
  filter: contrast(1.4) brightness(0.7);
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 1.45vw, 24px);
  color: rgba(16, 25, 27, 0.74);
  font-size: clamp(0.78rem, 0.78vw, 0.9rem);
  font-weight: 650;
  white-space: nowrap;
}

.main-nav a {
  border-bottom: 2px solid transparent;
  padding: 8px 0;
  transition: color 180ms ease, border-color 180ms ease;
}

.main-nav a:hover,
.main-nav a.is-active {
  border-color: var(--terracotta);
  color: var(--terracotta);
}

.header-cta,
.button,
.rfq-form button {
  border: 1px solid var(--terracotta);
  border-radius: 2px;
  background: var(--terracotta);
  color: #fff;
  font-size: 0.93rem;
  font-weight: 760;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.header-cta {
  padding: 16px 18px;
  white-space: nowrap;
}

.header-cta:hover,
.button-primary:hover,
.rfq-form button:hover {
  transform: translateY(-2px);
  border-color: var(--terracotta-dark);
  background: var(--terracotta-dark);
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
}

.button-secondary {
  background: transparent;
  color: var(--terracotta);
}

.button-secondary:hover {
  transform: translateY(-2px);
  background: rgba(208, 90, 58, 0.08);
}

.button-secondary.dark {
  border-color: rgba(239, 229, 212, 0.7);
  color: var(--off-white);
}

.menu-toggle {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(620px, 1.06fr) minmax(500px, 0.94fr);
  gap: clamp(40px, 5vw, 84px);
  min-height: calc(100vh - 84px);
  align-items: center;
  padding: clamp(36px, 5vw, 64px) 0 58px;
}

.hero-copy p {
  max-width: 760px;
  margin-top: 28px;
  color: rgba(16, 25, 27, 0.78);
  font-size: 1.09rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 36px;
}

.trust-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.trust-tags li {
  border: 1px solid rgba(87, 120, 110, 0.32);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--forest);
  font-size: 0.82rem;
  font-weight: 700;
}

.hero-media {
  position: relative;
  min-height: 560px;
}

.media-tile {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(176, 138, 76, 0.22);
  border-radius: var(--radius);
  background: var(--almond);
  box-shadow: var(--shadow);
}

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

.media-tile-large {
  inset: 28px 0 0 auto;
  width: 72%;
  height: 68%;
}

.media-tile-one {
  left: 0;
  top: 0;
  width: 43%;
  height: 42%;
}

.media-tile-two {
  left: 10%;
  bottom: 0;
  width: 48%;
  height: 38%;
}

.risk-band,
.scene-band,
.process-band {
  border-top: 1px solid rgba(34, 54, 55, 0.08);
  border-bottom: 1px solid rgba(34, 54, 55, 0.08);
  background: linear-gradient(180deg, #fbf8f1 0%, var(--off-white) 100%);
}

.split-intro {
  display: grid;
  grid-template-columns: minmax(390px, 0.75fr) minmax(680px, 1.25fr);
  gap: 54px;
  padding: 78px 0;
}

.split-intro > div:first-child p,
.section-heading p,
.evidence-copy p,
.rfq p {
  margin-top: 22px;
  color: rgba(16, 25, 27, 0.7);
}

.risk-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-left: 1px solid var(--line);
}

.risk-list article {
  padding: 8px 26px 10px;
  border-right: 1px solid var(--line);
}

.icon-box {
  display: grid;
  width: 76px;
  height: 76px;
  margin-bottom: 22px;
  place-items: center;
  border: 1px solid rgba(176, 138, 76, 0.55);
  border-radius: 50%;
  color: var(--ochre);
}

.icon-box svg {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.3;
}

.risk-list p,
.mechanism-grid p,
.scene-grid p,
.evidence-grid p,
.process-line p {
  margin-top: 12px;
  color: rgba(16, 25, 27, 0.66);
  font-size: 0.94rem;
}

.mechanism {
  padding: 96px 0;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 34px;
  margin-bottom: 46px;
}

.section-heading h2 {
  max-width: 980px;
}

.section-heading a {
  border-bottom: 1px solid var(--terracotta);
  color: var(--terracotta);
  font-weight: 760;
  white-space: nowrap;
}

.mechanism-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(34, 54, 55, 0.14);
}

.mechanism-grid article {
  min-height: 270px;
  padding: 34px;
  background: var(--paper);
}

.mechanism-grid span {
  display: block;
  margin-bottom: 46px;
  color: var(--ochre);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.2rem;
}

.scene-band {
  padding: 82px 0;
}

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

.scene-grid article img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 4px;
  object-fit: cover;
}

.scene-grid h3 {
  margin-top: 18px;
}

.evidence {
  display: grid;
  grid-template-columns: minmax(420px, 0.82fr) minmax(680px, 1.18fr);
  gap: 58px;
  padding: 94px 0;
}

.evidence-copy {
  border-radius: var(--radius);
  background: var(--forest);
  padding: 48px;
  color: var(--off-white);
}

.evidence-copy h2 {
  color: var(--off-white);
}

.evidence-copy p {
  color: rgba(246, 241, 232, 0.76);
}

.evidence-copy .button {
  margin-top: 34px;
}

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

.evidence-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(251, 248, 241, 0.72);
  padding: 28px;
}

.process-band {
  padding: 86px 0 78px;
}

.process-line {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  margin-top: 46px;
}

.validation-process {
  align-items: stretch;
}

.process-line article {
  position: relative;
  padding-top: 52px;
}

.process-line span {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: var(--sage);
  color: #fff;
  font-weight: 780;
}

.rfq {
  background:
    linear-gradient(90deg, rgba(34, 54, 55, 0.96), rgba(34, 54, 55, 0.78)),
    radial-gradient(circle at 80% 20%, rgba(176, 138, 76, 0.35), transparent 34%),
    var(--forest);
  color: var(--off-white);
}

.rfq-shell {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 420px);
  gap: 56px;
  align-items: center;
  padding: 88px 0;
}

.rfq h2 {
  max-width: 920px;
  color: var(--off-white);
}

.rfq p {
  max-width: 860px;
  color: rgba(246, 241, 232, 0.76);
}

.email-note {
  font-size: 0.92rem;
}

.rfq-form {
  display: grid;
  gap: 16px;
  border: 1px solid rgba(239, 229, 212, 0.18);
  border-radius: var(--radius);
  background: rgba(246, 241, 232, 0.08);
  padding: 24px;
}

.rfq-form label {
  display: grid;
  gap: 8px;
  color: rgba(246, 241, 232, 0.78);
  font-size: 0.82rem;
  font-weight: 720;
}

.rfq-form input,
.rfq-form select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(239, 229, 212, 0.28);
  border-radius: 3px;
  background: rgba(16, 25, 27, 0.24);
  color: var(--off-white);
  font: inherit;
  outline: none;
  padding: 0 14px;
}

.rfq-form input::placeholder {
  color: rgba(246, 241, 232, 0.52);
}

.rfq-form button {
  min-height: 52px;
  cursor: pointer;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 24px clamp(24px, 5vw, 64px);
  background: var(--ink);
  color: rgba(246, 241, 232, 0.7);
  font-size: 0.86rem;
}

.site-footer span:first-child {
  color: var(--off-white);
  font-weight: 820;
}

.subpage-hero {
  display: grid;
  grid-template-columns: minmax(620px, 1fr) minmax(360px, 0.62fr);
  gap: clamp(36px, 5vw, 82px);
  align-items: end;
  padding: 116px 0 72px;
}

.subpage-hero h1 {
  max-width: 900px;
}

.subpage-hero p {
  color: rgba(16, 25, 27, 0.72);
  font-size: 1.06rem;
}

.product-hero {
  align-items: center;
}

.subpage-media {
  overflow: hidden;
  border: 1px solid rgba(176, 138, 76, 0.22);
  border-radius: var(--radius);
  background: var(--almond);
  box-shadow: var(--shadow);
}

.subpage-media img {
  width: 100%;
  aspect-ratio: 1.15 / 1;
  object-fit: cover;
}

.reframe,
.scope-section {
  display: grid;
  grid-template-columns: minmax(420px, 0.82fr) minmax(640px, 1.18fr);
  gap: 56px;
  padding: 94px 0;
}

.reframe p,
.scope-section p {
  color: rgba(16, 25, 27, 0.7);
  font-size: 1.02rem;
}

.reframe p + p {
  margin-top: 18px;
}

.product-risk-list {
  border-left: 0;
  padding-bottom: 82px;
}

.product-risk-list article {
  border-top: 1px solid var(--line);
  padding-top: 28px;
}

.product-risk-list .icon-box {
  border-radius: 50%;
  font-weight: 820;
}

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

.scope-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 28px;
}

.scope-grid p {
  margin-top: 12px;
  font-size: 0.94rem;
}

.eyebrow {
  display: block;
  margin-bottom: 22px;
  color: var(--terracotta);
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brief-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 420px);
  gap: 36px;
  align-items: start;
  padding-top: 88px;
  padding-bottom: 96px;
}

.rfq-page-hero {
  min-height: 430px;
}

.rfq-preparation {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.rfq-preparation-shell {
  display: grid;
  grid-template-columns: minmax(420px, 0.8fr) minmax(640px, 1.2fr);
  gap: 64px;
  align-items: start;
  padding-top: 56px;
  padding-bottom: 56px;
}

.rfq-preparation-shell p,
.form-heading p {
  margin-top: 16px;
  color: rgba(16, 25, 27, 0.68);
}

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

.preparation-list li {
  border-top: 1px solid var(--line);
  padding: 16px 0;
  color: var(--forest);
  font-weight: 680;
}

.brief-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  padding: clamp(24px, 3vw, 42px);
}

.form-heading {
  margin-bottom: 30px;
}

.form-heading h2 {
  font-size: clamp(2rem, 2.8vw, 3.2rem);
}

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

.brief-form label {
  display: grid;
  gap: 8px;
  color: var(--forest);
  font-size: 0.84rem;
  font-weight: 760;
}

.brief-form input,
.brief-form select,
.brief-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(34, 54, 55, 0.18);
  border-radius: 3px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  padding: 0 14px;
}

.brief-form .file-input {
  min-height: 56px;
  padding: 12px 14px;
}

.field-help {
  color: rgba(16, 25, 27, 0.58);
  font-size: 0.78rem;
  font-weight: 500;
}

.brief-form textarea {
  min-height: 128px;
  padding-top: 14px;
  resize: vertical;
}

.brief-form .wide {
  grid-column: 1 / -1;
}

.brief-form button {
  width: 100%;
  min-height: 54px;
  margin-top: 22px;
  border: 1px solid var(--terracotta);
  border-radius: 2px;
  background: var(--terracotta);
  color: #fff;
  cursor: pointer;
  font-weight: 780;
}

.form-note {
  margin-top: 18px;
  color: rgba(16, 25, 27, 0.66);
  font-size: 0.9rem;
}

.brief-aside {
  border-radius: var(--radius);
  background: var(--forest);
  color: var(--off-white);
  padding: 34px;
}

.brief-aside h2 {
  color: var(--off-white);
  font-size: clamp(2rem, 2.6vw, 3rem);
}

.brief-aside ul {
  display: grid;
  gap: 14px;
  margin: 26px 0 30px;
  padding-left: 18px;
  color: rgba(246, 241, 232, 0.8);
}

.next-step-list {
  display: grid;
  gap: 0;
  margin: 28px 0 32px;
  padding: 0;
  list-style: none;
  counter-reset: rfq-step;
}

.next-step-list li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 2px 14px;
  border-top: 1px solid rgba(239, 229, 212, 0.2);
  padding: 18px 0;
  counter-increment: rfq-step;
}

.next-step-list li::before {
  grid-row: 1 / 3;
  content: counter(rfq-step, decimal-leading-zero);
  color: var(--ochre);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
}

.next-step-list strong {
  color: var(--off-white);
}

.next-step-list span {
  color: rgba(246, 241, 232, 0.7);
  font-size: 0.9rem;
}

.contact-routing {
  display: grid;
  margin-bottom: 30px;
  border-top: 1px solid rgba(239, 229, 212, 0.2);
  padding-top: 22px;
}

.contact-routing a {
  color: var(--off-white);
  font-weight: 760;
}

.contact-routing a + span {
  margin-bottom: 16px;
  color: rgba(246, 241, 232, 0.62);
  font-size: 0.82rem;
}

.about-proof {
  display: grid;
  grid-template-columns: minmax(420px, 0.82fr) minmax(640px, 1.18fr);
  gap: 56px;
  align-items: start;
  padding: 24px 0 94px;
}

.about-intro p,
.validation-list p {
  margin-top: 22px;
  color: rgba(16, 25, 27, 0.7);
}

.proof-stack {
  display: grid;
  gap: 1px;
  background: rgba(34, 54, 55, 0.14);
}

.proof-stack article {
  display: grid;
  grid-template-columns: 72px 0.35fr 1fr;
  gap: 24px;
  align-items: start;
  background: var(--paper);
  padding: 28px;
}

.proof-stack span {
  color: var(--ochre);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
}

.proof-stack p {
  color: rgba(16, 25, 27, 0.66);
}

.group-model {
  border-top: 1px solid rgba(34, 54, 55, 0.08);
  border-bottom: 1px solid rgba(34, 54, 55, 0.08);
  background: var(--paper);
  padding: 86px 0;
}

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

.model-grid article {
  min-height: 210px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(246, 241, 232, 0.72);
  padding: 28px;
}

.model-grid p {
  margin-top: 16px;
  color: rgba(16, 25, 27, 0.66);
}

.validation-list {
  display: grid;
  grid-template-columns: minmax(420px, 0.82fr) minmax(640px, 1.18fr);
  gap: 56px;
  padding: 94px 0;
}

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

.validation-list li {
  border-bottom: 1px solid var(--line);
  padding: 0 0 14px;
  color: rgba(16, 25, 27, 0.72);
  font-weight: 650;
}

.cta-panel {
  display: grid;
  gap: 14px;
}

.placeholder-page {
  display: grid;
  min-height: 100vh;
  align-content: center;
  gap: 24px;
  padding: 80px 0;
}

.placeholder-page p {
  max-width: 820px;
  color: rgba(16, 25, 27, 0.72);
  font-size: 1.08rem;
}

.placeholder-page .button {
  width: fit-content;
}

.wine-hero {
  min-height: calc(100vh - 84px);
}

.wine-hero > div:first-child > p {
  max-width: 650px;
  margin-top: 24px;
  color: rgba(16, 25, 27, 0.7);
  font-size: 1.06rem;
}

.wine-checks {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.wine-check-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.wine-check-grid article {
  padding: 58px 38px;
  border-right: 1px solid var(--line);
}

.wine-check-grid article:first-child {
  border-left: 1px solid var(--line);
}

.wine-check-grid span {
  color: var(--ochre);
  font-weight: 760;
}

.wine-check-grid h2 {
  margin-top: 34px;
  font-size: clamp(1.9rem, 2.5vw, 3rem);
}

.wine-check-grid p,
.wine-validation p,
.wine-validation li span,
.wine-rfq p {
  margin-top: 12px;
  color: rgba(16, 25, 27, 0.66);
}

.wine-validation {
  display: grid;
  grid-template-columns: minmax(400px, 0.8fr) minmax(640px, 1.2fr);
  gap: 64px;
  padding-top: 90px;
  padding-bottom: 90px;
}

.wine-validation ol {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 28px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: wine-step;
}

.wine-validation li {
  display: grid;
  border-top: 1px solid var(--line);
  padding: 20px 0;
  counter-increment: wine-step;
}

.wine-validation li::before {
  content: "0" counter(wine-step);
  margin-bottom: 12px;
  color: var(--ochre);
}

.wine-rfq {
  background: var(--forest);
  color: var(--off-white);
}

.wine-rfq-shell {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  padding-top: 72px;
  padding-bottom: 72px;
}

.wine-rfq h2,
.wine-rfq p {
  color: var(--off-white);
}

@media (max-width: 980px) {
  .wine-validation,
  .wine-rfq-shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .wine-hero {
    min-height: 0;
  }

  .wine-check-grid,
  .wine-validation ol {
    grid-template-columns: 1fr;
  }

  .wine-check-grid article,
  .wine-check-grid article:first-child {
    border-right: 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
    padding: 36px 0;
  }

  .wine-validation,
  .wine-rfq-shell {
    padding-top: 58px;
    padding-bottom: 58px;
  }
}

.resource-hero {
  display: grid;
  grid-template-columns: minmax(620px, 1fr) minmax(390px, 0.58fr);
  gap: 80px;
  min-height: calc(100vh - 84px);
  align-items: center;
  padding-top: 56px;
  padding-bottom: 56px;
}

.resource-hero p,
.checklist-preview p,
.resource-cta p {
  margin-top: 18px;
  color: rgba(16, 25, 27, 0.68);
}

.resource-sheet {
  border: 1px solid rgba(176, 138, 76, 0.4);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
  padding: 42px;
}

.resource-sheet > span,
.resource-path-grid > a > span {
  color: var(--ochre);
  font-size: 0.78rem;
  font-weight: 780;
}

.resource-sheet h2 {
  margin-top: 42px;
  font-size: clamp(2rem, 2.8vw, 3.2rem);
}

.resource-sheet ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 18px;
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
}

.resource-sheet li {
  border-top: 1px solid var(--line);
  padding: 12px 0;
  font-size: 0.88rem;
  font-weight: 680;
}

.resource-paths {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.resource-path-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.resource-path-grid > a {
  min-height: 250px;
  border-right: 1px solid var(--line);
  padding: 46px 36px;
}

.resource-path-grid > a:first-child {
  border-left: 1px solid var(--line);
}

.resource-path-grid h2 {
  margin-top: 44px;
  font-size: clamp(1.8rem, 2.3vw, 2.8rem);
}

.resource-path-grid p {
  margin-top: 12px;
  color: rgba(16, 25, 27, 0.64);
}

.checklist-preview {
  display: grid;
  grid-template-columns: minmax(430px, 0.82fr) minmax(640px, 1.18fr);
  gap: 64px;
  padding-top: 90px;
  padding-bottom: 90px;
}

.checklist-preview ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.checklist-preview li {
  border-top: 1px solid var(--line);
  padding: 20px 0;
  color: var(--forest);
  font-weight: 680;
}

.resource-cta {
  background: var(--forest);
  color: var(--off-white);
}

.resource-cta-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding-top: 68px;
  padding-bottom: 68px;
}

.resource-cta h2,
.resource-cta p {
  color: var(--off-white);
}

.compact-hero {
  display: grid;
  grid-template-columns: minmax(610px, 1fr) minmax(470px, 0.72fr);
  gap: clamp(48px, 6vw, 92px);
  min-height: calc(100vh - 84px);
  align-items: center;
  padding-top: 54px;
  padding-bottom: 54px;
}

.compact-hero > div > p {
  max-width: 700px;
  margin-top: 24px;
  color: rgba(16, 25, 27, 0.7);
  font-size: 1.06rem;
}

.compact-hero > img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.image-rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding-top: 28px;
  padding-bottom: 86px;
}

.image-rail figure {
  margin: 0;
}

.image-rail img,
.evidence-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 4px;
  object-fit: cover;
}

.image-rail figcaption {
  margin-top: 12px;
  color: var(--forest);
  font-size: 0.84rem;
  font-weight: 720;
}

.evidence-placeholder {
  display: grid;
  place-items: center;
  border: 1px dashed rgba(87, 120, 110, 0.5);
  background: var(--almond);
  color: rgba(34, 54, 55, 0.68);
  text-align: center;
}

.compact-points {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.compact-point-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.compact-point-grid.four {
  grid-template-columns: repeat(4, 1fr);
}

.compact-point-grid article {
  min-height: 230px;
  border-right: 1px solid var(--line);
  padding: 42px 34px;
}

.compact-point-grid article:first-child {
  border-left: 1px solid var(--line);
}

.compact-point-grid article > span {
  color: var(--ochre);
  font-weight: 760;
}

.compact-point-grid h2 {
  margin-top: 42px;
  font-size: clamp(1.7rem, 2.2vw, 2.7rem);
}

.compact-point-grid p {
  margin-top: 12px;
  color: rgba(16, 25, 27, 0.65);
}

.compact-process {
  display: grid;
  grid-template-columns: minmax(420px, 0.8fr) minmax(640px, 1.2fr);
  gap: 64px;
  padding-top: 88px;
  padding-bottom: 88px;
}

.compact-process > div > p {
  margin-top: 16px;
  color: rgba(16, 25, 27, 0.65);
}

.compact-process ol {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 28px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: compact-step;
}

.compact-process li {
  display: grid;
  border-top: 1px solid var(--line);
  padding: 20px 0;
  counter-increment: compact-step;
}

.compact-process li::before {
  content: "0" counter(compact-step);
  margin-bottom: 10px;
  color: var(--ochre);
}

.compact-process li span {
  margin-top: 4px;
  color: rgba(16, 25, 27, 0.62);
}

.compact-cta {
  background: var(--forest);
  color: var(--off-white);
}

.compact-cta-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding-top: 68px;
  padding-bottom: 68px;
}

.compact-cta h2,
.compact-cta p {
  color: var(--off-white);
}

.compact-cta p {
  margin-top: 12px;
  opacity: 0.72;
}

.about-capability {
  display: grid;
  grid-template-columns: minmax(390px, 0.72fr) minmax(720px, 1.28fr);
  gap: 70px;
  align-items: start;
  padding-top: 90px;
  padding-bottom: 90px;
}

.about-capability-copy > p,
.comparison-heading > p,
.dossier-heading > p {
  margin-top: 16px;
  color: rgba(16, 25, 27, 0.65);
}

.about-capability-copy ol {
  margin: 42px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: about-role;
}

.about-capability-copy li {
  display: grid;
  grid-template-columns: 44px 1fr;
  border-top: 1px solid var(--line);
  padding: 18px 0;
  counter-increment: about-role;
}

.about-capability-copy li::before {
  grid-row: 1 / 3;
  content: "0" counter(about-role);
  color: var(--ochre);
}

.about-capability-copy li span {
  color: rgba(16, 25, 27, 0.62);
}

.about-mosaic {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: repeat(2, 280px);
  gap: 18px;
}

.about-mosaic figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 4px;
}

.about-mosaic .large {
  grid-row: 1 / 3;
}

.about-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-mosaic figcaption,
.comparison-stage figcaption,
.foldable-scene-grid figcaption,
.sample-review figcaption,
.dossier-grid figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  background: rgba(16, 25, 27, 0.82);
  color: #fff;
  padding: 9px 11px;
  font-size: 0.78rem;
  font-weight: 700;
}

.about-proof-placeholder,
.dossier-placeholder {
  display: grid;
  place-items: center;
  border: 1px dashed rgba(87, 120, 110, 0.5);
  background: var(--almond);
  color: rgba(34, 54, 55, 0.68);
  text-align: center;
}

.foldable-comparison {
  padding-top: 88px;
  padding-bottom: 70px;
}

.comparison-heading {
  display: grid;
  grid-template-columns: 1fr minmax(360px, 0.55fr);
  gap: 56px;
  align-items: end;
}

.comparison-stage {
  display: grid;
  grid-template-columns: 1fr 72px 1fr;
  gap: 22px;
  align-items: center;
  margin-top: 46px;
}

.comparison-stage figure {
  position: relative;
  margin: 0;
}

.comparison-stage img,
.comparison-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 4px;
  object-fit: cover;
}

.comparison-placeholder {
  display: grid;
  place-items: center;
  border: 1px dashed rgba(87, 120, 110, 0.5);
  background: var(--almond);
  color: rgba(34, 54, 55, 0.68);
  text-align: center;
}

.comparison-divider {
  color: var(--ochre);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3rem;
  text-align: center;
}

.foldable-scenes {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.foldable-scene-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding-top: 44px;
  padding-bottom: 44px;
}

.foldable-scene-grid figure,
.sample-review figure,
.dossier-grid figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 4px;
}

.foldable-scene-grid img,
.sample-review img,
.dossier-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.foldable-scene-grid img {
  aspect-ratio: 4 / 3;
}

.foldable-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr) 1.2fr;
  gap: 0;
  padding-top: 82px;
  padding-bottom: 82px;
}

.foldable-benefits article,
.foldable-benefits > p {
  display: grid;
  align-content: center;
  border-left: 1px solid var(--line);
  padding: 20px 28px;
}

.foldable-benefits article span {
  margin-top: 8px;
  color: rgba(16, 25, 27, 0.62);
}

.foldable-benefits > p {
  border-right: 1px solid var(--line);
  color: var(--terracotta-dark);
  font-weight: 700;
}

.validation-board {
  background: var(--forest);
  color: var(--off-white);
}

.validation-board-shell {
  padding-top: 76px;
  padding-bottom: 76px;
}

.validation-intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.validation-intro h2,
.validation-intro p {
  color: var(--off-white);
}

.validation-intro p {
  opacity: 0.68;
}

.validation-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 54px 0 0;
  padding: 0;
  list-style: none;
}

.validation-track li {
  position: relative;
  display: grid;
  border-top: 1px solid rgba(246, 241, 232, 0.35);
  padding: 28px 20px 0 0;
}

.validation-track li::before {
  position: absolute;
  top: -6px;
  left: 0;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--terracotta);
  content: "";
}

.validation-track span {
  color: var(--ochre);
  font-size: 0.78rem;
}

.validation-track strong {
  margin-top: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
}

.validation-track small {
  margin-top: 8px;
  color: rgba(246, 241, 232, 0.66);
}

.sample-review {
  display: grid;
  grid-template-columns: 0.85fr 1.1fr 0.85fr;
  gap: 24px;
  padding-top: 88px;
  padding-bottom: 88px;
}

.sample-review figure {
  min-height: 480px;
}

.sample-review-list {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 36px;
}

.sample-review-list h2 {
  font-size: clamp(2rem, 2.8vw, 3.1rem);
}

.sample-review-list ul {
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
}

.sample-review-list li {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding: 16px 0;
}

.sample-review-list li span {
  color: rgba(16, 25, 27, 0.62);
  text-align: right;
}

.quality-dossier {
  padding-top: 88px;
  padding-bottom: 72px;
}

.dossier-heading {
  display: grid;
  grid-template-columns: 1fr minmax(360px, 0.55fr);
  gap: 56px;
  align-items: end;
}

.dossier-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-auto-rows: 420px;
  gap: 18px;
  margin-top: 46px;
}

.document-register {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.document-register-shell {
  display: grid;
  grid-template-columns: minmax(300px, 0.55fr) 1fr auto;
  padding-top: 72px;
  padding-bottom: 72px;
}

.document-register h2 {
  grid-row: 1 / 5;
  font-size: clamp(2rem, 2.7vw, 3rem);
}

.register-row {
  grid-column: 2 / 4;
  display: grid;
  grid-template-columns: 150px 1fr auto;
  gap: 24px;
  border-top: 1px solid var(--line);
  padding: 18px 0;
}

.register-row span {
  color: rgba(16, 25, 27, 0.62);
}

.register-row em {
  color: var(--terracotta-dark);
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 700;
}

@media (max-width: 980px) {
  .resource-hero,
  .checklist-preview {
    grid-template-columns: 1fr;
  }

  .compact-hero,
  .compact-process {
    grid-template-columns: 1fr;
  }

  .about-capability,
  .sample-review {
    grid-template-columns: 1fr;
  }

  .foldable-benefits {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .dossier-grid figure:first-child {
    grid-column: 1 / -1;
  }

  .compact-point-grid.four {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .resource-hero {
    min-height: 0;
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .compact-hero {
    min-height: 0;
    padding-top: 58px;
    padding-bottom: 36px;
  }

  .about-capability,
  .foldable-comparison,
  .sample-review,
  .quality-dossier {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .about-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 300px);
  }

  .about-mosaic .large {
    grid-row: auto;
  }

  .comparison-heading,
  .dossier-heading {
    grid-template-columns: 1fr;
  }

  .comparison-stage {
    grid-template-columns: 1fr;
  }

  .comparison-divider {
    transform: rotate(90deg);
  }

  .foldable-scene-grid,
  .foldable-benefits,
  .validation-track,
  .dossier-grid {
    grid-template-columns: 1fr;
  }

  .foldable-benefits article,
  .foldable-benefits > p {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .validation-intro {
    align-items: flex-start;
    flex-direction: column;
  }

  .validation-track {
    gap: 28px;
  }

  .sample-review figure {
    min-height: 340px;
  }

  .dossier-grid {
    grid-auto-rows: 320px;
  }

  .dossier-grid figure:first-child {
    grid-column: auto;
  }

  .document-register-shell {
    grid-template-columns: 1fr;
  }

  .document-register h2 {
    grid-row: auto;
    margin-bottom: 34px;
  }

  .register-row {
    grid-column: auto;
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .image-rail,
  .compact-point-grid,
  .compact-point-grid.four,
  .compact-process ol {
    grid-template-columns: 1fr;
  }

  .image-rail {
    padding-bottom: 58px;
  }

  .compact-point-grid article,
  .compact-point-grid article:first-child {
    min-height: 0;
    border-right: 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
    padding: 36px 0;
  }

  .compact-process {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .compact-cta-shell {
    align-items: stretch;
    flex-direction: column;
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .resource-path-grid,
  .checklist-preview ul {
    grid-template-columns: 1fr;
  }

  .resource-path-grid > a,
  .resource-path-grid > a:first-child {
    min-height: 0;
    border-right: 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
    padding: 36px 0;
  }

  .checklist-preview {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .resource-cta-shell {
    align-items: stretch;
    flex-direction: column;
    padding-top: 58px;
    padding-bottom: 58px;
  }
}

.case-hero {
  display: grid;
  grid-template-columns: minmax(600px, 1fr) minmax(440px, 0.72fr);
  gap: 72px;
  min-height: calc(100vh - 84px);
  align-items: center;
  padding-top: 54px;
  padding-bottom: 54px;
}

.case-hero p,
.case-standard p,
.case-standard li span,
.case-cta p {
  margin-top: 18px;
  color: rgba(16, 25, 27, 0.68);
}

.case-hero-media {
  position: relative;
}

.case-hero-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.case-hero-media span {
  display: block;
  margin-top: 12px;
  color: rgba(16, 25, 27, 0.56);
  font-size: 0.78rem;
}

.case-types {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.case-type-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.case-type-grid article {
  min-height: 260px;
  border-right: 1px solid var(--line);
  padding: 48px 36px;
}

.case-type-grid article:first-child {
  border-left: 1px solid var(--line);
}

.case-type-grid span {
  color: var(--ochre);
  font-weight: 760;
}

.case-type-grid h2 {
  margin-top: 48px;
  font-size: clamp(1.8rem, 2.3vw, 2.8rem);
}

.case-type-grid p {
  margin-top: 12px;
  color: rgba(16, 25, 27, 0.66);
}

.case-standard {
  display: grid;
  grid-template-columns: minmax(440px, 0.85fr) minmax(640px, 1.15fr);
  gap: 64px;
  padding-top: 90px;
  padding-bottom: 90px;
}

.case-standard ol {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 28px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: case-step;
}

.case-standard li {
  display: grid;
  border-top: 1px solid var(--line);
  padding: 20px 0;
  counter-increment: case-step;
}

.case-standard li::before {
  content: "0" counter(case-step);
  margin-bottom: 10px;
  color: var(--ochre);
}

.case-cta {
  background: var(--forest);
  color: var(--off-white);
}

.case-cta-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding-top: 68px;
  padding-bottom: 68px;
}

.case-cta h2,
.case-cta p {
  color: var(--off-white);
}

@media (max-width: 980px) {
  .case-hero,
  .case-standard {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .case-hero {
    min-height: 0;
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .case-type-grid,
  .case-standard ol {
    grid-template-columns: 1fr;
  }

  .case-type-grid article,
  .case-type-grid article:first-child {
    min-height: 0;
    border-right: 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
    padding: 36px 0;
  }

  .case-standard {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .case-cta-shell {
    align-items: stretch;
    flex-direction: column;
    padding-top: 58px;
    padding-bottom: 58px;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 150px 1fr auto;
  }

  .menu-toggle {
    display: inline-grid;
    width: 42px;
    height: 42px;
    place-items: center;
    justify-self: end;
    border: 1px solid var(--line);
    background: transparent;
    cursor: pointer;
  }

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

  .main-nav {
    position: absolute;
    top: 84px;
    right: 20px;
    display: none;
    width: min(320px, calc(100vw - 40px));
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    box-shadow: var(--shadow);
    padding: 18px;
  }

  .main-nav.is-open {
    display: flex;
  }

  .header-cta {
    display: none;
  }

  .hero,
  .subpage-hero,
  .about-proof,
  .reframe,
  .scope-section,
  .validation-list,
  .split-intro,
  .evidence,
  .brief-layout,
  .rfq-shell {
    grid-template-columns: 1fr;
  }

  .rfq-preparation-shell {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }

  .hero-media {
    min-height: 500px;
  }

  .risk-list,
  .mechanism-grid,
  .scene-grid,
  .model-grid,
  .scope-grid,
  .evidence-grid {
    grid-template-columns: 1fr 1fr;
  }

  .process-line {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .section-shell {
    width: min(100% - 28px, var(--max));
  }

  .site-header {
    min-height: 72px;
    padding: 10px 14px;
  }

  .brand img {
    width: 112px;
  }

  .main-nav {
    top: 72px;
  }

  h1 {
    font-size: 2.42rem;
    line-height: 1.04;
  }

  h2 {
    font-size: 2.06rem;
    line-height: 1.04;
  }

  .hero {
    padding-top: 34px;
  }

  .hero-media {
    min-height: 430px;
  }

  .media-tile-large {
    width: 86%;
    height: 56%;
  }

  .media-tile-one {
    width: 50%;
    height: 34%;
  }

  .media-tile-two {
    left: 0;
    width: 56%;
    height: 32%;
  }

  .actions,
  .section-heading,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .split-intro,
  .mechanism,
  .scene-band,
  .evidence,
  .subpage-hero,
  .about-proof,
  .reframe,
  .scope-section,
  .group-model,
  .validation-list,
  .brief-layout,
  .process-band,
  .rfq-shell {
    padding-top: 58px;
    padding-bottom: 58px;
  }

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

  .preparation-list {
    grid-template-columns: 1fr;
  }

  .risk-list,
  .mechanism-grid,
  .scene-grid,
  .model-grid,
  .scope-grid,
  .evidence-grid,
  .process-line {
    grid-template-columns: 1fr;
  }

  .proof-stack article {
    grid-template-columns: 1fr;
  }

  .risk-list {
    border-left: 0;
  }

  .risk-list article {
    border-right: 0;
    border-top: 1px solid var(--line);
    padding: 24px 0;
  }

  .mechanism-grid article,
  .evidence-copy,
  .evidence-grid article {
    padding: 24px;
  }
}

/* Notion-approved homepage composition. */
.notion-home { background:#f7f3eb; }
.notion-hero { display:grid; grid-template-columns:minmax(540px,.82fr) minmax(650px,1.18fr); gap:56px; min-height:calc(100vh - 84px); align-items:center; padding-top:44px; padding-bottom:44px; }
.notion-hero-copy h1 { max-width:700px; }
.notion-hero-copy>p { max-width:660px; margin-top:24px; color:rgba(16,25,27,.72); font-size:1.05rem; }
.notion-hero-media { overflow:hidden; border-radius:4px; }
.notion-hero-media img { width:100%; height:min(66vh,650px); object-fit:cover; }

.notion-risk { border-top:1px solid var(--line); border-bottom:1px solid var(--line); background:#fbf8f1; }
.notion-risk-shell { display:grid; grid-template-columns:minmax(360px,.72fr) minmax(780px,1.28fr); gap:58px; align-items:center; padding-top:64px; padding-bottom:64px; }
.notion-risk-heading h2 { max-width:500px; font-size:clamp(2.1rem,3vw,3.5rem); }
.notion-risk-grid { display:grid; grid-template-columns:repeat(3,1fr); }
.notion-risk-grid article { min-height:220px; border-left:1px solid var(--line); padding:18px 28px; }
.notion-risk-grid span { display:grid; width:62px; height:62px; place-items:center; border:1px solid var(--ochre); border-radius:50%; color:var(--ochre); font-family:Georgia,"Times New Roman",serif; font-size:1.3rem; }
.notion-risk-grid h3 { margin-top:28px; }
.notion-risk-grid p { margin-top:10px; color:rgba(16,25,27,.64); font-size:.9rem; }

.notion-control { background:var(--forest); color:var(--off-white); }
.notion-control-shell { display:grid; grid-template-columns:minmax(360px,.7fr) minmax(780px,1.3fr); gap:64px; align-items:center; padding-top:72px; padding-bottom:72px; }
.notion-control h2 { max-width:480px; color:var(--off-white); font-size:clamp(2.1rem,3vw,3.5rem); }
.notion-control p { max-width:440px; margin-top:22px; color:rgba(246,241,232,.7); }
.notion-control ol { display:grid; grid-template-columns:repeat(3,1fr); margin:0; padding:0; list-style:none; }
.notion-control li { position:relative; display:grid; justify-items:center; border-top:1px dashed rgba(176,138,76,.6); padding:34px 12px 0; text-align:center; }
.notion-control li>span { position:absolute; top:-30px; display:grid; width:58px; height:58px; place-items:center; border:1px solid var(--ochre); border-radius:50%; background:var(--forest); color:var(--ochre); }
.notion-control strong { margin-top:18px; color:#dbc18d; }
.notion-control small { margin-top:8px; color:rgba(246,241,232,.66); }

.notion-scenes,.notion-evidence { padding-top:68px; padding-bottom:68px; }
.notion-scenes>h2,.notion-evidence h2,.notion-sample h2 { font-size:clamp(2rem,2.7vw,3.1rem); }
.notion-scene-grid,.notion-evidence-grid { display:grid; grid-template-columns:repeat(5,1fr); gap:18px; margin-top:34px; }
.notion-scene-grid figure,.notion-evidence-grid figure { margin:0; }
.notion-scene-grid img { width:100%; aspect-ratio:1/1; object-fit:cover; }
.notion-scene-grid figcaption { display:grid; margin-top:14px; }
.notion-scene-grid figcaption span { margin-top:4px; color:rgba(16,25,27,.62); font-size:.82rem; }
.notion-section-heading { display:flex; align-items:end; justify-content:space-between; gap:30px; }
.notion-section-heading a { border-bottom:1px solid var(--terracotta); color:var(--terracotta); font-weight:720; }
.notion-evidence { border-top:1px solid var(--line); }
.notion-evidence-grid .evidence-placeholder { aspect-ratio:4/3; }
.notion-evidence-grid figcaption { margin-top:12px; color:var(--forest); font-size:.84rem; font-weight:720; }

.notion-sample { border-top:1px solid var(--line); background:#fbf8f1; padding-top:66px; padding-bottom:72px; }
.notion-sample-track { position:relative; display:grid; grid-template-columns:repeat(6,1fr); margin:46px 0 0; padding:0; list-style:none; }
.notion-sample-track::before { position:absolute; top:23px; right:8%; left:8%; border-top:1px dashed rgba(87,120,110,.5); content:""; }
.notion-sample-track li { position:relative; display:grid; justify-items:center; padding:0 14px; text-align:center; }
.notion-sample-track li>span { z-index:1; display:grid; width:48px; height:48px; place-items:center; border-radius:50%; background:var(--sage); color:#fff; font-weight:780; }
.notion-sample-track strong { margin-top:22px; }
.notion-sample-track small { margin-top:8px; color:rgba(16,25,27,.62); }

.notion-rfq { overflow:hidden; background:var(--forest); color:var(--off-white); }
.notion-rfq-shell { display:grid; grid-template-columns:minmax(460px,.85fr) minmax(330px,.55fr) minmax(360px,.6fr); gap:50px; min-height:330px; align-items:center; }
.notion-rfq h2 { color:var(--off-white); font-size:clamp(2.2rem,3.2vw,3.8rem); }
.notion-rfq p { color:rgba(246,241,232,.72); }
.notion-rfq .email-note { margin-top:18px; color:rgba(246,241,232,.62); font-size:.92rem; }
.notion-rfq .email-note a { color:var(--off-white); font-weight:760; }
.notion-rfq .button { margin-top:26px; }
.notion-rfq img { width:100%; height:330px; object-fit:cover; object-position:center; }

@media (max-width:980px) {
  .notion-hero,.notion-risk-shell,.notion-control-shell,.notion-rfq-shell { grid-template-columns:1fr; }
  .notion-hero { min-height:0; }
  .notion-risk-grid { grid-template-columns:repeat(3,1fr); }
  .notion-scene-grid,.notion-evidence-grid { grid-template-columns:repeat(3,1fr); }
  .notion-rfq-shell { padding-top:58px; }
  .notion-rfq img { height:360px; }
}

@media (max-width:640px) {
  .notion-hero { padding-top:42px; }
  .notion-hero-media img { height:auto; aspect-ratio:1/1; }
  .notion-risk-grid,.notion-control ol,.notion-scene-grid,.notion-evidence-grid,.notion-sample-track { grid-template-columns:1fr; }
  .notion-risk-grid article { min-height:0; border-top:1px solid var(--line); border-left:0; padding:26px 0; }
  .notion-control ol { gap:28px; margin-top:34px; }
  .notion-control li { justify-items:start; border-top:0; border-left:1px dashed rgba(176,138,76,.6); padding:0 0 20px 48px; text-align:left; }
  .notion-control li>span { top:0; left:-22px; width:42px; height:42px; }
  .notion-section-heading { align-items:flex-start; flex-direction:column; }
  .notion-sample-track { gap:28px; }
  .notion-sample-track::before { display:none; }
  .notion-sample-track li { grid-template-columns:48px 1fr; justify-items:start; gap:0 16px; text-align:left; }
  .notion-sample-track li>span { grid-row:1/3; }
  .notion-sample-track strong { margin-top:0; }
  .notion-sample-track small { grid-column:2; }
  .notion-rfq-shell { padding-bottom:0; }
}

/* ASKT-inspired homepage brand stage. */
.page-home .site-header {
  min-height: 64px;
  padding-top: 8px;
  padding-bottom: 8px;
  border-bottom-color: rgba(16, 25, 27, 0.08);
  background: rgba(255, 255, 255, 0.94);
}

.page-home .brand img {
  width: 118px;
}

.notion-home {
  background: #fff;
}

.askt-inspired-hero {
  position: relative;
  display: grid;
  width: 100%;
  min-height: clamp(520px, 62svh, 640px);
  grid-template-columns: 1fr;
  place-items: center;
  overflow: hidden;
  padding: 72px clamp(24px, 5vw, 88px) 96px;
  background: #fff;
  text-align: center;
}

.askt-inspired-hero__stage {
  display: grid;
  justify-items: center;
  width: min(1320px, 100%);
}

.askt-inspired-hero__brand-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
}

.askt-inspired-hero__brand-row h1 {
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 11rem;
  font-weight: 400;
  line-height: 0.82;
  letter-spacing: 0;
  white-space: nowrap;
}

.askt-inspired-hero__brand-row span {
  margin-top: 12px;
  border: 1px solid rgba(16, 25, 27, 0.22);
  padding: 7px 10px;
  color: rgba(16, 25, 27, 0.64);
  font-size: 0.7rem;
  font-weight: 760;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.askt-inspired-hero__statement {
  margin-top: 48px;
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1.2;
  white-space: nowrap;
}

.askt-inspired-hero__audience {
  max-width: 920px;
  margin-top: 18px;
  color: rgba(16, 25, 27, 0.62);
  font-size: 0.98rem;
  line-height: 1.65;
}

.askt-inspired-hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-top: 32px;
}

.askt-inspired-hero__actions a,
.askt-inspired-hero__actions button {
  min-height: 42px;
  border: 0;
  border-bottom: 1px solid rgba(16, 25, 27, 0.38);
  border-radius: 0;
  padding: 0 2px;
  background: transparent;
  color: var(--forest);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 760;
  line-height: 1;
  cursor: pointer;
  white-space: nowrap;
  transition: border-color 180ms ease, color 180ms ease;
}

.askt-inspired-hero__actions .askt-inspired-hero__primary {
  border-bottom-color: var(--terracotta);
  color: var(--terracotta);
}

.askt-inspired-hero__actions a:hover,
.askt-inspired-hero__actions button:hover {
  border-bottom-color: var(--terracotta);
  color: var(--terracotta);
}

.askt-inspired-hero__scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  display: grid;
  justify-items: center;
  gap: 5px;
  color: rgba(16, 25, 27, 0.48);
  font-size: 0.68rem;
  font-weight: 720;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.askt-inspired-hero__scroll svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
  transition: transform 180ms ease;
}

.askt-inspired-hero__scroll:hover svg {
  transform: translateY(3px);
}

@media (max-width: 1120px) {
  .askt-inspired-hero__brand-row h1 {
    font-size: 8.5rem;
  }

  .askt-inspired-hero__statement {
    font-size: 1.75rem;
  }
}

@media (max-width: 760px) {
  .page-home .site-header {
    min-height: 60px;
  }

  .askt-inspired-hero {
    min-height: 590px;
    padding: 72px 20px 84px;
  }

  .askt-inspired-hero__brand-row {
    display: grid;
    justify-items: center;
    gap: 16px;
  }

  .askt-inspired-hero__brand-row h1 {
    font-size: 5.5rem;
    line-height: 0.9;
  }

  .askt-inspired-hero__brand-row span {
    margin-top: 0;
  }

  .askt-inspired-hero__statement {
    max-width: 350px;
    margin-top: 38px;
    font-size: 1.6rem;
    white-space: normal;
  }

  .askt-inspired-hero__audience {
    max-width: 350px;
    font-size: 0.9rem;
  }

  .askt-inspired-hero__actions {
    width: min(350px, 100%);
    align-items: stretch;
    flex-direction: column;
    gap: 2px;
    margin-top: 24px;
  }

  .askt-inspired-hero__actions a,
  .askt-inspired-hero__actions button {
    width: 100%;
  }
}

@media (max-width: 390px) {
  .askt-inspired-hero__brand-row h1 {
    font-size: 4.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .askt-inspired-hero__actions a,
  .askt-inspired-hero__actions button,
  .askt-inspired-hero__scroll svg {
    transition: none;
  }
}
.page-home .brand-wordmark {
  display: inline-flex;
  align-items: center;
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
  line-height: 1;
  white-space: nowrap;
}
/* Reference-faithful AI launcher within the homepage opening section. */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  clip-path: inset(50%);
}

.askt-inspired-hero {
  min-height: 533px;
  padding: 78px 16px 56px;
}

.askt-inspired-hero__brand-row {
  position: relative;
  display: inline-block;
}

.askt-inspired-hero__brand-row h1 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 3rem;
  font-weight: 760;
  line-height: 1;
}

.askt-inspired-hero__brand-row span {
  position: absolute;
  bottom: 0;
  left: 100%;
  margin: 0 0 0 6px;
  border: 0;
  padding: 0;
  color: rgba(16, 25, 27, 0.52);
  font-size: 0.68rem;
  font-weight: 600;
  line-height: 1.2;
  text-transform: none;
}

.askt-inspired-hero__statement {
  max-width: 720px;
  margin-top: 24px;
  color: rgba(16, 25, 27, 0.72);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.5rem;
  line-height: 1.34;
  white-space: normal;
}

.askt-inspired-hero__launcher {
  display: grid;
  width: min(768px, 100%);
  min-height: 173px;
  margin-top: 34px;
  border: 1px solid rgba(16, 25, 27, 0.14);
  border-radius: 16px;
  padding: 20px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(16, 25, 27, 0.06);
  text-align: left;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.askt-inspired-hero__launcher:focus-within {
  border-color: rgba(87, 120, 110, 0.6);
  box-shadow: 0 14px 38px rgba(16, 25, 27, 0.1);
}

.askt-inspired-hero__launcher textarea {
  width: 100%;
  min-height: 72px;
  resize: none;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--forest);
  font: inherit;
  font-size: 1rem;
  line-height: 1.5;
}

.askt-inspired-hero__launcher textarea::placeholder {
  color: rgba(16, 25, 27, 0.42);
}

.askt-inspired-hero__launcher-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
}

.askt-inspired-hero__attach,
.askt-inspired-hero__launcher button {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.askt-inspired-hero__attach {
  background: rgba(16, 25, 27, 0.06);
  color: rgba(16, 25, 27, 0.54);
}

.askt-inspired-hero__launcher button {
  background: var(--forest);
  color: #fff;
}

.askt-inspired-hero__attach svg,
.askt-inspired-hero__launcher button svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.askt-inspired-hero__links {
  display: flex;
  gap: 28px;
  margin-top: 18px;
}

.askt-inspired-hero__links a {
  border-bottom: 1px solid rgba(16, 25, 27, 0.26);
  padding-bottom: 3px;
  color: rgba(16, 25, 27, 0.68);
  font-size: 0.78rem;
  font-weight: 720;
  transition: border-color 180ms ease, color 180ms ease;
}

.askt-inspired-hero__links a:hover {
  border-color: var(--terracotta);
  color: var(--terracotta);
}

@media (max-width: 760px) {
  .askt-inspired-hero {
    min-height: 590px;
    padding: 72px 16px 48px;
  }

  .askt-inspired-hero__brand-row {
    display: inline-block;
  }

  .askt-inspired-hero__brand-row h1 {
    font-size: 2.7rem;
  }

  .askt-inspired-hero__brand-row span {
    position: static;
    display: block;
    margin: 7px 0 0;
    text-align: right;
  }

  .askt-inspired-hero__statement {
    max-width: 350px;
    margin-top: 24px;
    font-size: 1.3rem;
  }

  .askt-inspired-hero__launcher {
    min-height: 168px;
    margin-top: 30px;
    padding: 17px;
  }

  .askt-inspired-hero__links {
    align-items: center;
    flex-direction: column;
    gap: 11px;
    margin-top: 18px;
  }
}
/* Keep the expanded navigation readable after adding Design Studio. */
@media (max-width: 1180px) and (min-width: 981px) {
  .site-header {
    grid-template-columns: 150px 1fr;
  }

  .menu-toggle {
    display: inline-grid;
    width: 42px;
    height: 42px;
    place-items: center;
    justify-self: end;
    border: 1px solid var(--line);
    background: transparent;
    cursor: pointer;
  }

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

  .main-nav,
  .page-design-studio .main-nav {
    position: absolute;
    top: 100%;
    right: 20px;
    display: none;
    width: min(320px, calc(100vw - 40px));
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 18px;
    background: var(--paper);
    box-shadow: var(--shadow);
    font-size: 0.8rem;
  }

  .main-nav.is-open,
  .page-design-studio .main-nav.is-open {
    display: flex;
  }

  .header-cta {
    display: none;
  }
}
.askt-inspired-hero__files {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 10px;
}

.askt-inspired-hero__files[hidden],
.askt-inspired-hero__file-error[hidden] {
  display: none;
}

.askt-inspired-hero__file {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(16, 25, 27, 0.12);
  border-radius: 4px;
  padding: 5px 7px 5px 9px;
  background: rgba(87, 120, 110, 0.06);
  color: rgba(16, 25, 27, 0.68);
  font-size: 0.68rem;
}

.askt-inspired-hero__file span {
  max-width: 190px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.askt-inspired-hero__file button {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  padding: 0;
  background: rgba(16, 25, 27, 0.08);
  color: var(--forest);
  cursor: pointer;
  font: inherit;
  line-height: 1;
}

.askt-inspired-hero__file-error {
  margin-top: 8px;
  color: var(--terracotta-dark);
  font-size: 0.68rem;
}

.askt-inspired-hero__launcher.is-busy {
  opacity: 0.72;
  pointer-events: none;
}

@media (max-width: 640px) {
  .askt-inspired-hero__file {
    max-width: 100%;
  }
}
/* First-viewport system: keep the primary message, CTA, and media visible on entry. */
@media (min-width: 1181px) {
  .site-header {
    grid-template-columns: 124px minmax(0, 1fr) auto;
    gap: 16px;
    min-height: 72px;
    padding: 8px clamp(18px, 2.4vw, 36px);
  }

  .brand img { width: 112px; }

  .main-nav {
    gap: clamp(7px, 0.72vw, 13px);
    font-size: clamp(0.68rem, 0.64vw, 0.76rem);
  }

  .header-cta {
    padding: 13px 15px;
    font-size: 0.82rem;
  }
}

@media (min-width: 981px) and (max-width: 1180px) {
  .site-header {
    grid-template-columns: 140px 1fr auto;
    min-height: 72px;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .menu-toggle {
    display: inline-grid;
    width: 42px;
    height: 42px;
    place-items: center;
    justify-self: end;
    border: 1px solid var(--line);
    background: transparent;
    cursor: pointer;
  }

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

  .main-nav {
    position: absolute;
    top: 72px;
    right: 20px;
    display: none;
    width: min(320px, calc(100vw - 40px));
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    box-shadow: var(--shadow);
    padding: 18px;
  }

  .main-nav.is-open { display: flex; }
  .header-cta { display: none; }
}

@media (max-width: 640px) {
  .site-header {
    grid-template-columns: 1fr auto;
    height: 64px;
    min-height: 64px;
    padding: 8px 14px;
  }

  .main-nav { top: 64px; }
}

/* Keep image logos visible without increasing the measured header height. */
.brand img {
  width: auto;
  max-width: 150px;
  max-height: 54px;
  object-fit: contain;
}

@media (max-width: 980px) {
  .brand img {
    max-width: 128px;
    max-height: 48px;
  }
}

@media (max-width: 640px) {
  .brand img {
    max-width: 122px;
    max-height: 46px;
  }
}

/* Dark green sections: keep headings consistently readable. */
:is(
  .home-hero-v3,
  .home-closing--dark,
  .about-film-hero,
  .about-story--dark,
  .about-closing-film,
  .about-hero-v2,
  .about-cta,
  .foldable-motion,
  .cases-closing,
  .quality-hero-v2,
  .sample-path,
  .sample-hero-v2,
  .wine-sample,
  .resources-index,
  .resources-cta,
  .notion-control,
  .notion-rfq,
  .compact-hero,
  .compact-cta,
  .case-cta,
  .rfq-workspace__aside,
  .sustain-register,
  .solutions-path,
  .huvia-ai__panel,
  .huvia-ai__intro
) :is(h1, h2, h3) {
  color: #fff !important;
}
/* Global typography reset: use Inter-style web typography instead of editorial serif headings. */
:root {
  --font-sans: Inter, "Segoe UI", Arial, Helvetica, sans-serif;
}

body,
button,
input,
textarea,
select,
a,
p,
li,
small,
span,
strong,
h1,
h2,
h3,
h4,
h5,
h6,
.site-header,
.global-nav,
.main-nav,
.button,
.home-button {
  font-family: var(--font-sans) !important;
  letter-spacing: 0 !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 680 !important;
  line-height: 1.08 !important;
}
