:root {
  --paper: #fbf8f5;
  --paper-deep: #f3eee7;
  --white: #ffffff;
  --ink: #1d1c19;
  --muted: #5f6059;
  --line: #e7ddd0;
  --olive: #6b7a54;
  --olive-deep: #556540;
  --gold: #c9a96b;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
  --content: 1200px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  color: inherit;
  font: inherit;
}

:where(a, button, input, [tabindex]):focus-visible {
  outline: 3px solid rgba(85, 101, 64, 0.42);
  outline-offset: 3px;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid rgba(231, 221, 208, 0.9);
  background: rgba(251, 248, 245, 0.9);
  backdrop-filter: blur(16px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 30px rgba(74, 67, 54, 0.06);
}

.nav-shell {
  width: min(calc(100% - 48px), var(--content));
  height: 80px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-logo {
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  border-radius: 50%;
  object-fit: cover;
}

.wordmark {
  display: inline-block;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1;
  text-transform: uppercase;
}

.wordmark span {
  color: var(--olive-deep);
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.primary-nav a {
  position: relative;
  padding: 28px 0 25px;
  color: #43433f;
  font-size: 13px;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  height: 1px;
  background: var(--ink);
  content: "";
  opacity: 0;
  transform: scaleX(0.2);
  transition: opacity 180ms ease, transform 180ms ease;
}

.primary-nav a:hover::after,
.primary-nav a.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-contact {
  justify-self: end;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 27px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

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

.button-dark {
  color: var(--white);
  background: #555754;
}

.button-dark:hover {
  background: var(--ink);
}

.button-olive {
  color: var(--white);
  background: var(--olive);
}

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

.button-light {
  border-color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(8px);
}

.button-light:hover {
  background: var(--white);
}

.menu-toggle {
  display: none;
}

.hero {
  min-height: min(860px, 100vh);
  padding: 160px 24px 80px;
  display: grid;
  place-items: center;
  position: relative;
  isolation: isolate;
  text-align: center;
  background: url("assets/pristine-foods-hero.jpeg") center / cover no-repeat;
}

.hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: rgba(250, 247, 240, 0.46);
  backdrop-filter: blur(1.5px);
  content: "";
}

.hero-content {
  width: min(760px, 100%);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--olive);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 500;
}

.hero h1 {
  margin: 0;
  font-size: clamp(48px, 6.2vw, 78px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.hero-copy {
  max-width: 680px;
  margin: 24px auto 31px;
  color: #3e403c;
  font-size: 17px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.value-strip {
  width: min(calc(100% - 48px), var(--content));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
}

.value-strip div {
  padding: 38px 24px;
  border-right: 1px solid var(--line);
}

.value-strip div:first-child {
  border-left: 1px solid var(--line);
}

.value-strip strong,
.value-strip span {
  display: block;
}

.value-strip strong {
  margin-bottom: 5px;
  color: var(--olive-deep);
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
}

.value-strip span {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.section {
  width: min(calc(100% - 48px), var(--content));
  margin: 0 auto;
  padding: 120px 0;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(54px, 8vw, 110px);
}

.image-frame {
  position: relative;
}

.image-frame::before {
  position: absolute;
  z-index: -1;
  top: 18px;
  right: 18px;
  bottom: -18px;
  left: -18px;
  border-radius: 12px;
  background: #e8d9c0;
  content: "";
}

.image-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--line);
  border-radius: 10px;
  object-fit: cover;
}

.home-story .image-frame img {
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
}

.home-story .image-frame {
  width: 100%;
  max-width: 560px;
  justify-self: center;
}

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

.about-page-story {
  padding-top: 120px;
}

.about-story-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  align-items: stretch;
  gap: 0;
  border: 1px solid var(--line);
  background: var(--white);
}

.about-story-media {
  min-height: 780px;
  display: grid;
  grid-template-rows: 1.1fr 0.9fr;
  gap: 2px;
  background: var(--line);
}

.about-story-primary,
.about-story-secondary img {
  min-width: 0;
}

.about-story-primary img,
.about-story-secondary img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(0.88) sepia(0.16);
}

.about-story-secondary {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: 2px;
}

.about-story-panel {
  padding: 90px 74px;
  position: relative;
  background:
    radial-gradient(circle at 85% 15%, rgba(233, 222, 202, 0.48), rgba(233, 222, 202, 0) 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(249, 245, 238, 0.98));
}

.about-story-header {
  margin-bottom: 44px;
}

.about-story-rule {
  width: 54px;
  height: 1px;
  margin-top: 18px;
  display: block;
  background: rgba(107, 122, 84, 0.45);
}

.about-purpose-stack {
  display: grid;
  gap: 0;
}

.about-purpose-card {
  padding: 42px 0;
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  border-top: 1px solid rgba(213, 202, 187, 0.92);
}

.about-purpose-card:first-child {
  padding-top: 0;
  border-top: 0;
}

.about-purpose-card .feature-icon {
  width: 78px;
  height: 78px;
  background: rgba(247, 242, 232, 0.95);
}

.about-purpose-card h2,
.about-purpose-card h3 {
  margin: 4px 0 16px;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.05;
}

.about-purpose-card h3 {
  font-size: clamp(30px, 3.2vw, 42px);
}

.about-purpose-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.about-copy {
  max-width: none;
  margin-top: 34px;
}

.about-copy-intro {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.about-copy-intro p {
  margin: 0;
}

h2 {
  margin: 0 0 25px;
  font-size: clamp(36px, 4.3vw, 55px);
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.about-copy p:not(.eyebrow),
.section-heading > p:last-child,
.product-card p {
  color: var(--muted);
}

.about-copy p:not(.eyebrow) {
  margin: 0 0 18px;
}

.about-copy h3 {
  margin: 34px 0 12px;
  font-size: 24px;
  line-height: 1.2;
}

.about-intro-strip {
  width: min(calc(100% - 48px), var(--content));
  margin: -48px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(10px);
}

.about-intro-strip div {
  padding: 26px 24px;
  border-right: 1px solid var(--line);
}

.about-intro-strip div:last-child {
  border-right: 0;
}

.about-intro-strip strong,
.about-intro-strip span {
  display: block;
}

.about-intro-strip strong {
  margin-bottom: 7px;
  color: var(--olive-deep);
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 500;
}

.about-intro-strip span {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

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

.about-quality-list li {
  padding: 14px 0 14px 26px;
  position: relative;
  border-bottom: 1px solid var(--line);
  color: #494a44;
  font-size: 13px;
}

.about-quality-list li::before {
  width: 10px;
  height: 10px;
  position: absolute;
  top: 18px;
  left: 0;
  border: 1px solid rgba(107, 122, 84, 0.35);
  border-radius: 50%;
  background: rgba(107, 122, 84, 0.12);
  content: "";
}

.text-link {
  display: inline-block;
  margin-top: 10px;
  border-bottom: 1px solid var(--ink);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.text-link span {
  margin-left: 6px;
}

.products {
  width: auto;
  max-width: none;
  padding-right: max(24px, calc((100vw - var(--content)) / 2));
  padding-left: max(24px, calc((100vw - var(--content)) / 2));
  background: var(--paper-deep);
}

.section-heading {
  max-width: 670px;
  margin-bottom: 56px;
}

.section-heading h2 {
  margin-bottom: 16px;
}

.section-heading > p:last-child {
  max-width: 570px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #dacdbd;
  border-bottom: 1px solid #dacdbd;
}

.product-card {
  min-height: 390px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid #dacdbd;
  transition: background 220ms ease, transform 220ms ease;
}

.product-card:first-child {
  border-left: 1px solid #dacdbd;
}

.product-card:hover {
  background: rgba(255, 255, 255, 0.55);
  transform: translateY(-6px);
}

.product-number {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 24px;
}

.product-label {
  margin: 0 0 8px;
  color: var(--olive) !important;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.product-card h3 {
  margin: 0 0 13px;
  font-size: 29px;
}

.product-card p {
  margin: 0;
  font-size: 14px;
}

.product-card > a {
  align-self: flex-start;
  border-bottom: 1px solid var(--ink);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.product-card > a span {
  margin-left: 6px;
}

.section-button {
  margin-top: 42px;
}

.standards-layout {
  width: min(calc(100% - 48px), var(--content));
  margin: 0 auto;
}

.standards-content {
  padding: 0;
}

.standards.section {
  width: auto;
  max-width: none;
  padding: 130px 0 120px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  background: var(--paper);
}

.standards .section-heading {
  max-width: none;
  margin-bottom: 72px;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  align-items: end;
  gap: clamp(50px, 8vw, 130px);
}

.standards .section-heading h2 {
  max-width: 760px;
  margin: 0;
  grid-row: 2;
  font-size: clamp(52px, 6vw, 78px);
  line-height: 1.05;
}

.standards .section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 8px;
  color: var(--olive);
}

.standards .section-heading > p:last-child {
  max-width: 440px;
  margin: 0 0 7px;
  grid-column: 2;
  grid-row: 2;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.standards-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.standards-list article {
  min-height: 275px;
  padding: 30px 30px 34px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
}

.standards-list article:first-child {
  padding-left: 0;
}

.standards-list article:last-child {
  padding-right: 0;
  border-right: 0;
}

.standards-list span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.3;
}

.standards-list h3 {
  max-width: 230px;
  margin: auto 0 14px;
  color: var(--ink);
  font-size: 26px;
  line-height: 1.12;
}

.standards-list p {
  max-width: 235px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.standards-grid,
.purpose-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  border-top: 0;
}

.standards-grid article,
.purpose-grid article {
  min-height: 320px;
  padding: 30px 28px 26px;
  border: 1px solid rgba(221, 211, 196, 0.92);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 243, 236, 0.96));
  box-shadow: 0 16px 40px rgba(94, 78, 58, 0.06);
}

.standards-grid article:first-child,
.purpose-grid article:first-child {
  border-left: 1px solid rgba(221, 211, 196, 0.92);
}

.standards-grid span,
.purpose-grid span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 26px;
}

.standards-grid h3,
.purpose-grid h3 {
  margin: 24px 0 12px;
  font-size: 30px;
  line-height: 1.08;
}

.standards-grid p,
.purpose-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.purpose-grid article {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 8px;
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.purpose-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(199, 169, 107, 0.48);
  box-shadow: 0 22px 48px rgba(94, 78, 58, 0.1);
}

.product-entry-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.product-entry-type {
  margin: 0;
  padding: 8px 12px;
  border: 1px solid rgba(107, 122, 84, 0.18);
  border-radius: 999px;
  color: var(--olive-deep) !important;
  font-size: 10px !important;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
  background: rgba(107, 122, 84, 0.07);
}

.product-entry-footer {
  margin-top: 26px;
  padding-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-top: 1px solid rgba(221, 211, 196, 0.92);
}

.product-entry-footer strong,
.product-entry-footer em {
  font-style: normal;
}

.product-entry-footer strong {
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
}

.product-entry-footer em {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.inner-page {
  padding-top: 80px;
}

.page-hero {
  min-height: 530px;
  padding: 110px 24px 80px;
  display: grid;
  place-items: center;
  text-align: center;
  background: var(--paper-deep);
}

.page-hero-copy {
  width: min(760px, 100%);
}

.page-hero h1 {
  margin: 0 0 22px;
  font-family: var(--serif);
  font-size: clamp(50px, 7vw, 82px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.04;
}

.page-hero-copy > p:last-child {
  max-width: 620px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 17px;
}

.about-page-hero {
  background: linear-gradient(rgba(251, 248, 245, 0.72), rgba(251, 248, 245, 0.72)), url("assets/about-hero-background.jpeg") center / cover;
}

.about-page-hero .page-hero-copy {
  width: min(700px, 100%);
}

.about-page-hero h1 {
  color: #21201c;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(42px, 5.8vw, 68px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.12;
}

.about-page-hero .page-hero-copy > p:last-child {
  max-width: 640px;
  color: #5f6059;
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.8;
}

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

.legal-content {
  padding-top: 95px;
}

.legal-document {
  width: min(calc(100% - 48px), 860px);
  margin: 0 auto;
}

.legal-document h2,
.legal-document h3 {
  color: var(--ink);
}

.legal-document h2 {
  margin: 0 0 22px;
  font-family: var(--serif);
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.legal-document h3 {
  margin: 44px 0 12px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.legal-document p,
.legal-document li {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.legal-document p {
  margin: 0 0 18px;
}

.legal-document ul {
  margin: 0 0 18px;
  padding-left: 22px;
}

.product-detail {
  width: min(calc(100% - 48px), var(--content));
  margin: 0 auto;
  padding: 110px 0;
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) minmax(340px, 0.9fr);
  align-items: center;
  gap: 55px;
  border-bottom: 1px solid var(--line);
}

.product-detail-number {
  align-self: start;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 25px;
}

.product-detail h2 {
  margin-bottom: 18px;
}

.product-detail > div:nth-child(2) > p:not(.eyebrow) {
  color: var(--muted);
}

.clean-list {
  margin: 25px 0 0;
  padding: 0;
  list-style: none;
}

.clean-list li {
  padding: 10px 0;
  border-top: 1px solid var(--line);
  color: #484943;
  font-size: 13px;
}

.product-visual {
  min-height: 430px;
  padding: 35px;
  display: flex;
  align-items: flex-end;
  border-radius: 12px;
}

.product-visual span {
  color: var(--white);
  font-family: var(--serif);
  font-size: 38px;
  line-height: 1.1;
}

.product-visual-oils {
  background: linear-gradient(145deg, #bfa16a, #79643b);
}

.product-visual-tofu {
  background: linear-gradient(145deg, #dfd4bf, #9b8c71);
}

.product-visual-kombucha {
  background: linear-gradient(145deg, #b87861, #704437);
}

.compact-contact {
  margin-top: 0;
}

.purpose-section {
  padding-top: 20px;
}

.about-detail-band {
  margin-top: 58px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  border-top: 0;
}

.about-detail-band article {
  min-height: 235px;
  padding: 34px 30px 30px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(221, 211, 196, 0.92);
  border-radius: 10px;
  background:
    radial-gradient(circle at 100% 0%, rgba(233, 222, 202, 0.5), rgba(233, 222, 202, 0) 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 242, 235, 0.98));
  box-shadow: 0 18px 44px rgba(94, 78, 58, 0.07);
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.about-detail-band article:first-child {
  border-left: 1px solid rgba(221, 211, 196, 0.92);
}

.about-detail-band article::before {
  width: 3px;
  position: absolute;
  top: 22px;
  bottom: 22px;
  left: 0;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(107, 122, 84, 0.92), rgba(201, 169, 107, 0.62));
  content: "";
}

.about-detail-band article:hover {
  transform: translateY(-4px);
  border-color: rgba(199, 169, 107, 0.45);
  box-shadow: 0 24px 52px rgba(94, 78, 58, 0.12);
}

.about-detail-step {
  margin-bottom: 28px;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.about-detail-step .feature-icon {
  width: 64px;
  height: 64px;
  background: rgba(247, 242, 232, 0.95);
}

.about-detail-step .eyebrow {
  margin-bottom: 8px;
}

.about-detail-band h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.1;
}

.about-detail-band p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.manifesto {
  padding: 130px 24px;
  text-align: center;
  background: var(--paper-deep);
}

.manifesto > div {
  width: min(850px, 100%);
  margin: 0 auto;
}

.manifesto h2 {
  margin-bottom: 24px;
}

.about-feature-grid {
  margin: 48px 0 54px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  text-align: left;
}

.about-feature-grid article {
  min-height: 220px;
  padding: 30px 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.45);
}

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

.feature-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(107, 122, 84, 0.25);
  border-radius: 50%;
  color: var(--olive);
}

.feature-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.about-feature-grid h3 {
  margin: 52px 0 0;
  font-size: 20px;
  line-height: 1.25;
}

.manifesto blockquote {
  margin: 0 0 38px;
  font-family: var(--serif);
  font-size: clamp(35px, 5vw, 58px);
  line-height: 1.2;
}

.contact {
  padding: 130px 24px;
  text-align: center;
  background: var(--white);
}

.contact-inner {
  width: min(750px, 100%);
  margin: 0 auto;
}

.contact h2 {
  margin-bottom: 15px;
}

.contact-inner > p:not(.eyebrow) {
  margin: 0 0 30px;
  color: var(--muted);
}

.site-footer {
  padding: 78px 24px;
  border-top: 1px solid var(--line);
}

.footer-grid {
  width: min(100%, var(--content));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
}

.footer-brand .wordmark {
  margin-bottom: 20px;
  font-size: 17px;
}

.footer-brand p {
  max-width: 360px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.footer-grid h3 {
  margin: 0 0 17px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-grid > div:not(.footer-brand) a,
.footer-grid > div:not(.footer-brand) .footer-item {
  display: block;
  margin: 8px 0;
  color: var(--muted);
  font-size: 13px;
}

.footer-grid a:hover {
  color: var(--olive);
}

.reveal {
  --reveal-delay: 0ms;
  opacity: 0;
  filter: blur(3px);
  transform: translateY(18px);
  transition:
    opacity 800ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay),
    filter 800ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay),
    transform 900ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay),
    background 220ms ease,
    box-shadow 220ms ease;
  will-change: opacity, filter, transform;
}

.reveal.visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
  will-change: auto;
}

.reveal-media {
  clip-path: inset(0 0 7% 0 round 10px);
  transform: translateY(18px) scale(0.985);
  transition:
    opacity 850ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay),
    filter 850ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay),
    transform 1000ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay),
    clip-path 1000ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay);
}

.reveal-media.visible {
  clip-path: inset(0 0 0 0 round 10px);
  transform: translateY(0) scale(1);
}

.product-card.reveal.visible:hover {
  transform: translateY(-6px);
}

@media (max-width: 820px) {
  .nav-shell {
    width: min(calc(100% - 40px), var(--content));
    grid-template-columns: 1fr auto;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
    padding: 0;
    display: grid;
    place-content: center;
    gap: 6px;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle span {
    width: 24px;
    height: 1px;
    display: block;
    background: var(--ink);
    transition: transform 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .primary-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    height: calc(100dvh - 80px);
    padding: 70px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background: var(--paper);
    overflow-y: auto;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .primary-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .primary-nav a {
    padding: 16px;
    font-family: var(--serif);
    font-size: 31px;
  }

  .primary-nav a::after {
    display: none;
  }

  .nav-contact {
    display: none;
  }

  .hero {
    min-height: 760px;
  }

  .two-column {
    grid-template-columns: 1fr;
    gap: 70px;
  }

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

  .about-intro-strip {
    grid-template-columns: 1fr;
    margin-top: 0;
  }

  .about-intro-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .about-intro-strip div:last-child {
    border-bottom: 0;
  }

  .value-strip div:nth-child(3) {
    border-left: 1px solid var(--line);
  }

  .about-copy {
    max-width: none;
  }

  .about-story-layout {
    grid-template-columns: 1fr;
  }

  .about-story-media {
    min-height: 680px;
  }

  .about-story-panel {
    padding: 64px 40px;
  }

  .about-copy-intro {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .product-grid {
    grid-template-columns: 1fr;
    border-bottom: 0;
  }

  .product-card,
  .product-card:first-child {
    min-height: 310px;
    border-right: 1px solid #dacdbd;
    border-bottom: 1px solid #dacdbd;
    border-left: 1px solid #dacdbd;
  }

  .standards-layout {
    width: min(calc(100% - 64px), var(--content));
  }

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

  .standards-list article {
    min-height: 240px;
    border-bottom: 1px solid var(--line);
  }

  .standards-list article:nth-child(2) {
    border-right: 0;
  }

  .standards-list article:nth-child(3),
  .standards-list article:nth-child(4) {
    border-bottom: 0;
  }

  .standards-list article:nth-child(3) {
    padding-left: 0;
  }

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

  .about-detail-band {
    grid-template-columns: 1fr;
  }

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

  .standards-grid article:nth-child(3),
  .purpose-grid article:nth-child(3) {
    border-left: 1px solid var(--line);
  }

  .about-detail-band article {
    border-left: 1px solid rgba(221, 211, 196, 0.92);
  }

  .about-feature-grid article:nth-child(3),
  .about-feature-grid article:nth-child(5) {
    border-left: 1px solid var(--line);
  }

  .product-detail {
    grid-template-columns: 45px 1fr;
    gap: 30px;
  }

  .product-visual {
    grid-column: 2;
  }
}

@media (max-width: 560px) {
  .brand {
    gap: 7px;
  }

  .brand-logo {
    width: 42px;
    height: 42px;
  }

  .wordmark,
  .footer-brand .wordmark {
    font-size: 15px;
  }

  .hero {
    min-height: 700px;
    padding-right: 20px;
    padding-left: 20px;
    background-position: 48% center;
  }

  .hero .eyebrow {
    display: none;
  }

  .hero-copy {
    font-size: 15px;
  }

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

  .section {
    width: min(calc(100% - 40px), var(--content));
    padding: 90px 0;
  }

  .value-strip {
    width: calc(100% - 40px);
    grid-template-columns: 1fr;
  }

  .about-intro-strip {
    width: calc(100% - 40px);
  }

  .about-story-media {
    min-height: 540px;
    grid-template-rows: 0.95fr 0.85fr;
  }

  .about-story-secondary {
    grid-template-columns: 1fr 1fr;
  }

  .about-story-panel {
    padding: 44px 24px;
  }

  .about-purpose-card {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .about-purpose-card .feature-icon {
    width: 68px;
    height: 68px;
  }

  .value-strip div,
  .value-strip div:first-child,
  .value-strip div:nth-child(3) {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    border-left: 1px solid var(--line);
  }

  .products {
    width: auto;
    padding-right: 20px;
    padding-left: 20px;
  }

  .image-frame::before {
    top: 12px;
    right: 12px;
    bottom: -12px;
    left: -12px;
  }

  .product-card {
    padding: 26px;
  }

  .standards-layout {
    width: calc(100% - 40px);
  }

  .standards.section {
    padding: 90px 0 84px;
  }

  .standards .section-heading {
    margin-bottom: 48px;
    display: block;
  }

  .standards .section-heading h2 {
    margin-bottom: 24px;
    font-size: 46px;
  }

  .standards .section-heading > p:last-child {
    font-size: 14px;
  }

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

  .standards-list article {
    min-height: 0;
    padding: 26px 0 28px;
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .standards-list article:nth-child(3) {
    border-bottom: 1px solid var(--line);
  }

  .standards-list article:nth-child(4) {
    border-bottom: 0;
  }

  .standards-list h3 {
    margin: 0 0 8px;
  }

  .standards-list p {
    grid-column: 2;
  }

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

  .about-feature-grid {
    grid-template-columns: 1fr;
  }

  .standards-grid article,
  .standards-grid article:first-child,
  .standards-grid article:nth-child(3),
  .purpose-grid article,
  .purpose-grid article:first-child,
  .purpose-grid article:nth-child(3) {
    min-height: 0;
    border-right: 1px solid rgba(221, 211, 196, 0.92);
    border-bottom: 1px solid rgba(221, 211, 196, 0.92);
    border-left: 1px solid rgba(221, 211, 196, 0.92);
  }

  .about-detail-band article,
  .about-detail-band article:first-child {
    min-height: 0;
    border-right: 1px solid rgba(221, 211, 196, 0.92);
    border-bottom: 1px solid rgba(221, 211, 196, 0.92);
    border-left: 1px solid rgba(221, 211, 196, 0.92);
  }

  .about-feature-grid article,
  .about-feature-grid article:first-child,
  .about-feature-grid article:nth-child(3),
  .about-feature-grid article:nth-child(5) {
    min-height: 200px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    border-left: 1px solid var(--line);
  }

  .page-hero {
    min-height: 500px;
    overflow: hidden;
  }

  .page-hero-copy {
    min-width: 0;
  }

  .page-hero h1 {
    overflow-wrap: anywhere;
  }

  .product-detail {
    width: calc(100% - 40px);
    padding: 80px 0;
    grid-template-columns: 1fr;
  }

  .product-detail-number,
  .product-visual {
    grid-column: 1;
  }

  .product-visual {
    min-height: 330px;
  }

  .contact {
    padding: 95px 20px;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    filter: none;
    transform: none;
  }

  .reveal-media,
  .reveal-media.visible {
    clip-path: none;
    transform: none;
  }
}
