@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Fraunces:opsz,wght@9..144,500;9..144,600;9..144,700&display=swap');

:root {
  --forest-950: #062f22;
  --forest-900: #093c2a;
  --forest-800: #0c5136;
  --forest-700: #166246;
  --leaf-600: #6f9830;
  --leaf-500: #88ad3c;
  --sage-300: #c7d6bd;
  --sage-200: #dde8d5;
  --sage-100: #edf2e8;
  --parchment: #f8f4e9;
  --paper: #fffdf8;
  --sand: #e8ddc7;
  --brass: #bd8a35;
  --brass-light: #dfbd78;
  --ink: #193129;
  --copy: #506158;
  --line: rgba(12, 81, 54, 0.15);
  --shadow-soft: 0 18px 50px rgba(6, 47, 34, 0.09);
  --shadow-tight: 0 8px 24px rgba(6, 47, 34, 0.12);
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', 'Segoe UI', sans-serif;
  --container: 1220px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  min-width: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.58;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

img {
  object-fit: cover;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

h1,
h2,
h3,
h4,
p,
ul,
ol {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  line-height: 1.08;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.45rem, 4.4vw, 4rem);
  letter-spacing: -0.045em;
}

h2 {
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  letter-spacing: -0.035em;
}

h3 {
  font-size: clamp(1.12rem, 1.8vw, 1.42rem);
  letter-spacing: -0.025em;
}

p {
  color: var(--copy);
}

::selection {
  color: var(--paper);
  background: var(--forest-700);
}

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

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: #fff;
  background: var(--forest-900);
  transform: translateY(-160%);
}

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

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

.section {
  padding: clamp(54px, 6.5vw, 82px) 0;
}

.section--compact {
  padding: clamp(38px, 4.5vw, 58px) 0;
}

.section--sage {
  background: var(--sage-100);
}

.section--parchment {
  background: var(--parchment);
}

.section--forest {
  color: var(--paper);
  background: var(--forest-950);
}

.section--forest p {
  color: rgba(255, 253, 248, 0.72);
}

.section-intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 36px;
  margin-bottom: 32px;
}

.section-intro > div:first-child {
  max-width: 780px;
}

.section-intro h2,
.section-intro p:last-child {
  margin-bottom: 0;
}

.section-intro p:last-child {
  max-width: 540px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--forest-700);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.kicker::before {
  width: 24px;
  height: 1px;
  background: currentColor;
  content: '';
}

.section--forest .kicker,
.dark-panel .kicker {
  color: var(--brass-light);
}

.display-accent {
  color: var(--forest-700);
}

.lead {
  max-width: 680px;
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  line-height: 1.65;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 10px 17px;
  border: 1px solid var(--forest-800);
  border-radius: 3px 18px 3px 18px;
  color: #fff;
  background: var(--forest-800);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover {
  border-color: var(--forest-950);
  background: var(--forest-950);
  transform: translateY(-2px);
}

.button--light {
  color: var(--forest-900);
  border-color: rgba(255, 255, 255, 0.85);
  background: var(--paper);
}

.button--light:hover {
  color: var(--paper);
  border-color: var(--brass);
  background: var(--brass);
}

.button--outline {
  color: var(--forest-800);
  background: transparent;
}

.button--outline:hover {
  color: #fff;
}

.button--brass {
  color: var(--forest-950);
  border-color: var(--brass-light);
  background: var(--brass-light);
}

.button--brass:hover {
  color: #fff;
  border-color: var(--brass);
  background: var(--brass);
}

.button svg,
.text-link svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--forest-700);
  font-size: 0.88rem;
  font-weight: 700;
}

.text-link:hover {
  color: var(--brass);
}

/* Header */
.utility-bar {
  color: rgba(255, 255, 255, 0.86);
  background: var(--forest-950);
  font-size: 0.73rem;
}

.utility-bar__inner {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.utility-list,
.social-list,
.footer-links,
.contact-list,
.plain-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.utility-list {
  display: flex;
  align-items: center;
  gap: 24px;
}

.utility-list li,
.utility-right {
  display: flex;
  align-items: center;
  gap: 7px;
}

.utility-list svg,
.utility-right svg {
  width: 13px;
  height: 13px;
  fill: currentColor;
}

.social-list {
  display: flex;
  align-items: center;
  gap: 8px;
}

.social-list a {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  font-size: 0.62rem;
  font-weight: 700;
}

.social-list a:hover {
  color: var(--forest-950);
  background: #fff;
}

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  background: rgba(255, 253, 248, 0.96);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(15px);
  transition: box-shadow 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 28px rgba(6, 47, 34, 0.08);
}

.navbar {
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}

.brand img {
  width: 68px;
  height: 68px;
  max-height: 68px;
  object-fit: contain;
  border-radius: 8px;
  display: block;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.3vw, 34px);
}

.site-nav > a:not(.button) {
  position: relative;
  padding: 24px 0 22px;
  color: #30483f;
  font-size: 0.72rem;
  font-weight: 700;
}

.site-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: 15px;
  left: 0;
  height: 2px;
  background: var(--leaf-500);
  content: '';
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav > a:not(.button):hover,
.site-nav > a[aria-current='page'] {
  color: var(--forest-800);
}

.site-nav > a:not(.button):hover::after,
.site-nav > a[aria-current='page']::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 42px;
  padding: 9px;
  border: 1px solid var(--line);
  background: var(--paper);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--forest-900);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded='true'] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded='true'] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded='true'] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Home hero */
.home-hero {
  position: relative;
  display: grid;
  min-height: 520px;
  align-items: center;
  overflow: hidden;
  background: var(--parchment);
  isolation: isolate;
}

.home-hero::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  background: url('../assets/images/hero-unani.png') 61% center / cover no-repeat;
  content: '';
}

.home-hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgba(248, 244, 233, 0.99) 0%, rgba(248, 244, 233, 0.96) 27%, rgba(248, 244, 233, 0.65) 44%, rgba(248, 244, 233, 0) 67%);
  content: '';
}

.home-hero__content {
  width: min(520px, 45vw);
  padding: 54px 0 74px;
}

.home-hero h1 {
  margin-bottom: 14px;
  color: var(--forest-900);
  font-size: clamp(2.65rem, 4.2vw, 4rem);
}

.home-hero .lead {
  max-width: 540px;
  margin-bottom: 16px;
  color: #466056;
  font-weight: 600;
}

.hero-description {
  max-width: 470px;
  margin-bottom: 22px;
  color: #5a6d63;
  font-size: 0.82rem;
  line-height: 1.58;
}

.hero-note {
  display: flex;
  max-width: 400px;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  color: #617168;
  font-size: 0.79rem;
}

.hero-note::before {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border: 1px solid var(--sage-300);
  border-radius: 50%;
  background: radial-gradient(circle at 62% 38%, var(--leaf-500) 0 12%, transparent 13%), linear-gradient(135deg, transparent 46%, var(--forest-700) 47% 52%, transparent 53%);
  content: '';
}

/* Proof strip */
.proof-wrap {
  position: relative;
  z-index: 2;
  margin-top: -34px;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  overflow: hidden;
  background: rgba(255, 253, 248, 0.98);
  border: 1px solid rgba(12, 81, 54, 0.1);
  border-radius: 6px 34px 6px 34px;
  box-shadow: var(--shadow-soft);
}

.proof-item {
  min-height: 112px;
  padding: 18px 14px 15px;
  text-align: center;
}

.proof-item + .proof-item {
  border-left: 1px solid var(--line);
}

.proof-icon,
.category-icon,
.value-icon,
.benefit-icon {
  display: grid;
  width: 34px;
  height: 34px;
  margin: 0 auto 8px;
  place-items: center;
  color: var(--forest-700);
}

.proof-icon svg,
.category-icon svg,
.value-icon svg,
.benefit-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.proof-item strong {
  display: block;
  margin-bottom: 5px;
  color: var(--forest-900);
  font-family: var(--font-display);
  font-size: 0.95rem;
}

.proof-item small {
  display: block;
  color: #68766f;
  font-size: 0.7rem;
  line-height: 1.45;
}

/* About block */
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 1.45fr 0.72fr;
  gap: 28px;
  align-items: stretch;
}

.image-frame {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  border-radius: 4px 42px 4px 4px;
}

.image-frame img {
  width: 100%;
  height: 100%;
}

.image-frame::after {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50% 50% 4px 50%;
  content: '';
}

.about-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px 8px;
}

.about-copy h2 {
  margin-bottom: 14px;
}

.about-copy p {
  margin-bottom: 17px;
}

.micro-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 4px 0 20px;
}

.micro-feature {
  color: #5b6e64;
  font-size: 0.7rem;
  font-weight: 600;
  line-height: 1.35;
}

.micro-feature span {
  display: block;
  width: 23px;
  height: 23px;
  margin-bottom: 8px;
  border: 1px solid var(--sage-300);
  border-radius: 50%;
  background: radial-gradient(circle, var(--leaf-500) 0 18%, transparent 20%);
}

.purpose-panel {
  padding: 25px 21px;
  color: #fff;
  background: var(--forest-900);
  border-radius: 36px 4px 4px 4px;
}

.purpose-item + .purpose-item {
  padding-top: 18px;
  margin-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.purpose-item h3 {
  margin-bottom: 7px;
  color: var(--brass-light);
  font-family: var(--font-body);
  font-size: 0.88rem;
  letter-spacing: 0;
}

.purpose-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.74rem;
  line-height: 1.55;
}

/* Product categories */
.category-rail {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  border-block: 1px solid var(--line);
}

.category-card {
  position: relative;
  min-height: 138px;
  padding: 18px 10px 16px;
  text-align: center;
}

.category-card + .category-card {
  border-left: 1px solid var(--line);
}

.category-card:hover {
  background: var(--sage-100);
}

.category-icon {
  width: 43px;
  height: 43px;
  margin-bottom: 8px;
}

.category-card strong {
  display: block;
  color: var(--forest-900);
  font-family: var(--font-display);
  font-size: 1rem;
  line-height: 1.25;
}

.category-card small {
  color: #738078;
  font-size: 0.67rem;
}

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

.product-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
}

.product-card:nth-child(2),
.product-card:nth-child(6) {
  border-radius: 0 28px 0 0;
}

.product-card:nth-child(3),
.product-card:nth-child(7) {
  border-radius: 0 0 0 28px;
}

.product-visual {
  position: relative;
  height: 175px;
  overflow: hidden;
  background: #f4ede0;
}

.product-visual img {
  width: 100%;
  height: 100%;
  object-position: var(--focus, center);
  transform: scale(var(--scale, 1.5));
}

.product-visual::after {
  position: absolute;
  inset: auto 0 0;
  height: 50%;
  background: linear-gradient(transparent, rgba(248, 244, 233, 0.72));
  content: '';
}

.product-badge {
  position: absolute;
  z-index: 1;
  top: 13px;
  left: 13px;
  padding: 5px 9px;
  color: var(--forest-800);
  background: rgba(255, 253, 248, 0.9);
  border: 1px solid rgba(12, 81, 54, 0.14);
  font-size: 0.62rem;
  font-weight: 700;
}

.product-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: start;
  padding: 17px;
}

.product-card h3 {
  margin-bottom: 8px;
  color: var(--forest-900);
  font-size: 1.08rem;
}

.product-card p {
  margin-bottom: 20px;
  font-size: 0.78rem;
  line-height: 1.55;
}

.product-card .text-link {
  margin-top: auto;
}

.product-card[hidden] {
  display: none;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 34px;
}

.filter-button {
  padding: 9px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #53665d;
  background: transparent;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
}

.filter-button:hover,
.filter-button.is-active {
  color: #fff;
  border-color: var(--forest-800);
  background: var(--forest-800);
}

/* Capabilities */
.capability-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper);
}

.why-panel {
  position: relative;
  padding: 30px 27px;
  overflow: hidden;
  background: var(--parchment);
}

.why-panel::after {
  position: absolute;
  right: -25px;
  bottom: -50px;
  width: 190px;
  height: 190px;
  border: 35px solid rgba(111, 152, 48, 0.1);
  border-radius: 60% 40% 65% 35%;
  content: '';
  transform: rotate(35deg);
}

.why-panel h2 {
  margin-bottom: 20px;
  font-size: 1.65rem;
}

.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 25px;
  color: #52665c;
  font-size: 0.8rem;
}

.check-list li + li {
  margin-top: 9px;
}

.check-list li::before {
  position: absolute;
  top: 0.32em;
  left: 0;
  display: grid;
  width: 15px;
  height: 15px;
  place-items: center;
  color: #fff;
  background: var(--forest-700);
  border-radius: 50%;
  content: '✓';
  font-size: 0.55rem;
}

.capability-card {
  position: relative;
  min-height: 285px;
  overflow: hidden;
  border-left: 1px solid var(--line);
}

.capability-card img {
  width: 100%;
  height: 100%;
  filter: saturate(0.88);
}

.capability-card::after {
  position: absolute;
  inset: 42% 0 0;
  background: linear-gradient(transparent, rgba(6, 47, 34, 0.95));
  content: '';
}

.capability-card__copy {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 26px 24px;
  color: #fff;
}

.capability-card h3 {
  margin-bottom: 7px;
  font-size: 1.28rem;
}

.capability-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  line-height: 1.5;
}

/* Certification and metrics */
.certification-band {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 0.48fr) 2.4fr;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid var(--line);
}

.cert-copy {
  padding: 22px 24px;
  background: var(--parchment);
}

.cert-copy h2 {
  margin-bottom: 8px;
  font-size: 1.45rem;
}

.cert-copy p {
  margin: 0;
  font-size: 0.75rem;
}

.seal {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 10px;
  border-left: 1px solid var(--line);
  text-align: center;
}

.seal__mark {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 8px;
  place-items: center;
  border: 2px solid var(--forest-700);
  border-radius: 50%;
  color: var(--forest-700);
  box-shadow: inset 0 0 0 4px var(--paper), inset 0 0 0 5px var(--sage-300);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
}

.seal small {
  max-width: 88px;
  color: #64736b;
  font-size: 0.62rem;
  line-height: 1.3;
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--forest-800);
}

.metric {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 25px 17px;
  color: #fff;
  text-align: center;
}

.metric + .metric {
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.metric strong {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2.15rem);
  line-height: 1;
}

.metric span {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.62rem;
  line-height: 1.3;
}

/* Heritage */
.heritage-panel {
  position: relative;
  display: grid;
  min-height: 340px;
  grid-template-columns: 0.85fr 1.3fr 0.85fr;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--forest-950);
}

.heritage-panel::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--forest-950) 0 23%, transparent 45% 55%, var(--forest-950) 77% 100%), url('../assets/images/heritage.png') center / cover no-repeat;
  content: '';
  opacity: 0.8;
}

.heritage-quote,
.heritage-copy {
  position: relative;
  z-index: 1;
  padding: 30px;
}

.heritage-quote {
  text-align: center;
}

.heritage-quote blockquote {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: clamp(1.18rem, 1.8vw, 1.55rem);
  line-height: 1.3;
}

.heritage-quote cite {
  color: var(--brass-light);
  font-size: 0.74rem;
  font-style: normal;
}

.heritage-copy {
  grid-column: 3;
}

.heritage-copy h2 {
  margin-bottom: 15px;
  font-size: 1.55rem;
}

.heritage-copy p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
}

.heritage-copy .text-link {
  color: var(--brass-light);
}

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

.news-card {
  display: grid;
  min-height: 290px;
  grid-template-rows: 145px 1fr;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.news-card__image {
  position: relative;
  overflow: hidden;
  background: var(--sage-200);
}

.news-card__image img {
  width: 100%;
  height: 100%;
  transition: transform 350ms ease;
}

.news-card:hover .news-card__image img {
  transform: scale(1.035);
}

.news-card__date {
  position: absolute;
  bottom: 0;
  left: 0;
  display: grid;
  min-width: 62px;
  min-height: 62px;
  place-content: center;
  color: #fff;
  background: var(--forest-800);
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1;
  text-align: center;
}

.news-card__date small {
  display: block;
  margin-top: 4px;
  font-family: var(--font-body);
  font-size: 0.58rem;
  letter-spacing: 0.06em;
}

.news-card__body {
  padding: 22px 4px 18px;
}

.news-card__body small {
  color: var(--leaf-600);
  font-size: 0.69rem;
  font-weight: 700;
}

.news-card h3 {
  margin: 9px 0 10px;
  font-size: 1.25rem;
}

.news-card p {
  margin: 0;
  font-size: 0.76rem;
  line-height: 1.55;
}

/* Partner banner */
.partner-banner {
  position: relative;
  display: grid;
  min-height: 220px;
  grid-template-columns: 1fr 0.8fr;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--forest-800);
  border-radius: 4px 38px 4px 4px;
}

.partner-banner::after {
  position: absolute;
  right: -80px;
  width: 54%;
  height: 130%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  content: '';
}

.partner-banner__copy {
  position: relative;
  z-index: 1;
  padding: 34px 44px;
}

.partner-banner h2 {
  margin-bottom: 13px;
  font-size: 1.9rem;
}

.partner-banner p {
  max-width: 600px;
  margin-bottom: 23px;
  color: rgba(255, 255, 255, 0.74);
}

.partner-products {
  position: absolute;
  z-index: 1;
  right: -10px;
  bottom: -18%;
  width: 49%;
  height: 140%;
  mix-blend-mode: screen;
  object-fit: cover;
  object-position: center;
  opacity: 0.62;
}

/* Contact preview */
.contact-preview {
  display: grid;
  grid-template-columns: 0.9fr 1.2fr 1.1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.contact-details,
.contact-form-wrap,
.map-panel {
  min-height: 390px;
  padding: 30px;
}

.contact-details {
  position: relative;
  overflow: hidden;
  background: var(--parchment);
}

.contact-details::after {
  position: absolute;
  right: -45px;
  bottom: -45px;
  width: 180px;
  height: 220px;
  border-radius: 85% 15% 85% 15%;
  background: rgba(111, 152, 48, 0.13);
  content: '';
  transform: rotate(35deg);
}

.contact-details h3,
.contact-form-wrap h3 {
  margin-bottom: 24px;
  font-size: 1.5rem;
}

.contact-list li {
  display: grid;
  grid-template-columns: 25px 1fr;
  gap: 10px;
  color: #506158;
  font-size: 0.78rem;
}

.contact-list li + li {
  margin-top: 18px;
}

.contact-list svg {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  fill: none;
  stroke: var(--forest-700);
  stroke-width: 1.8;
}

.contact-list strong {
  display: block;
  margin-bottom: 2px;
  color: var(--ink);
}

.contact-form-wrap {
  border-left: 1px solid var(--line);
  background: #fff;
}

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

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  color: #43584e;
  font-size: 0.7rem;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 13px;
  border: 1px solid rgba(12, 81, 54, 0.18);
  border-radius: 2px;
  color: var(--ink);
  background: #fff;
  outline: none;
}

.field textarea {
  min-height: 118px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--leaf-600);
  box-shadow: 0 0 0 3px rgba(111, 152, 48, 0.13);
}

.form-status {
  grid-column: 1 / -1;
  padding: 12px 14px;
  color: var(--forest-900);
  background: var(--sage-100);
  border-left: 3px solid var(--leaf-600);
  font-size: 0.78rem;
}

.map-panel {
  position: relative;
  overflow: hidden;
  padding: 0;
  border-left: 1px solid var(--line);
  background-color: #e9eee9;
  background-image:
    linear-gradient(28deg, transparent 49%, rgba(12, 81, 54, 0.14) 50%, transparent 51%),
    linear-gradient(98deg, transparent 49%, rgba(12, 81, 54, 0.1) 50%, transparent 51%),
    linear-gradient(158deg, transparent 49%, rgba(189, 138, 53, 0.12) 50%, transparent 51%);
  background-size: 110px 110px, 150px 150px, 190px 190px;
}

.map-panel::before,
.map-panel::after {
  position: absolute;
  border: 1px solid rgba(12, 81, 54, 0.16);
  border-radius: 50%;
  content: '';
}

.map-panel::before {
  width: 330px;
  height: 330px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.map-panel::after {
  width: 180px;
  height: 180px;
  right: -50px;
  bottom: -50px;
}

.map-marker {
  position: absolute;
  z-index: 2;
  top: 47%;
  left: 50%;
  width: 32px;
  height: 32px;
  background: var(--forest-800);
  border: 7px solid var(--paper);
  border-radius: 50% 50% 50% 0;
  box-shadow: var(--shadow-tight);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.map-label {
  position: absolute;
  z-index: 2;
  top: calc(47% + 35px);
  left: 50%;
  width: max-content;
  max-width: 80%;
  padding: 8px 12px;
  color: var(--forest-900);
  background: rgba(255, 253, 248, 0.94);
  box-shadow: var(--shadow-tight);
  font-size: 0.7rem;
  font-weight: 700;
  transform: translateX(-50%);
}

/* Footer */
.site-footer {
  color: rgba(255, 255, 255, 0.72);
  background: var(--forest-950);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.45fr 0.8fr 1fr 1fr 1.25fr;
  gap: 36px;
  padding: 64px 0 48px;
}

.footer-brand img {
  width: 68px;
  height: 68px;
  object-fit: contain;
  margin-bottom: 18px;
  padding: 4px;
  background: #fff;
  border-radius: 12px;
}

.footer-brand p {
  max-width: 280px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.76rem;
}

.footer-column h3 {
  margin-bottom: 19px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.77rem;
  letter-spacing: 0.03em;
}

.footer-links li + li {
  margin-top: 8px;
}

.footer-links a,
.footer-links li {
  color: rgba(255, 255, 255, 0.63);
  font-size: 0.72rem;
}

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

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.footer-contact li + li {
  margin-top: 11px;
}

.footer-contact svg {
  flex: 0 0 auto;
  width: 14px;
  height: 14px;
  margin-top: 3px;
  fill: none;
  stroke: var(--brass-light);
  stroke-width: 1.8;
}

.footer-bottom {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.66rem;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
}

.footer-legal {
  display: flex;
  gap: 18px;
}

/* Interior heroes */
.page-hero {
  position: relative;
  display: grid;
  min-height: 390px;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: var(--forest-950);
  isolation: isolate;
}

.page-hero::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  background-image: var(--hero-image);
  background-position: var(--hero-position, center);
  background-size: cover;
  content: '';
}

.page-hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 47, 34, 0.94) 0%, rgba(6, 47, 34, 0.77) 44%, rgba(6, 47, 34, 0.18) 78%), linear-gradient(0deg, rgba(6, 47, 34, 0.55), transparent 65%);
  content: '';
}

.page-hero__content {
  max-width: 760px;
  padding: 75px 0 54px;
}

.breadcrumb {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.72rem;
}

.breadcrumb a:hover {
  color: var(--brass-light);
}

.page-hero h1 {
  margin-bottom: 19px;
  font-size: clamp(2.65rem, 5vw, 4.4rem);
}

.page-hero p {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
}

/* About page */
.story-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(50px, 8vw, 100px);
  align-items: center;
}

.story-media {
  position: relative;
}

.story-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 110px 4px 4px 4px;
}

.story-stamp {
  position: absolute;
  right: -28px;
  bottom: 34px;
  display: grid;
  width: 124px;
  height: 124px;
  place-content: center;
  color: #fff;
  background: var(--forest-800);
  border: 8px solid var(--paper);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1.05;
  text-align: center;
}

.story-stamp small {
  display: block;
  margin-top: 5px;
  font-family: var(--font-body);
  font-size: 0.57rem;
}

.story-copy h2 {
  margin-bottom: 24px;
}

.story-copy p:last-of-type {
  margin-bottom: 28px;
}

.values-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 70px;
  align-items: start;
}

.values-statement {
  position: sticky;
  top: 130px;
}

.values-statement h2 {
  margin-bottom: 20px;
}

.value-list {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.value-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 26px;
  padding: 31px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.value-row__number {
  color: var(--brass-light);
  font-family: var(--font-display);
  font-size: 2rem;
}

.value-row h3 {
  margin-bottom: 8px;
  color: #fff;
}

.value-row p {
  margin: 0;
  font-size: 0.84rem;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.timeline::before {
  position: absolute;
  top: 18px;
  right: 0;
  left: 0;
  height: 1px;
  background: var(--sage-300);
  content: '';
}

.timeline-item {
  position: relative;
  padding-top: 56px;
}

.timeline-item::before {
  position: absolute;
  top: 11px;
  left: 0;
  width: 15px;
  height: 15px;
  background: var(--paper);
  border: 4px solid var(--forest-700);
  border-radius: 50%;
  content: '';
}

.timeline-item time {
  color: var(--leaf-600);
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
}

.timeline-item h3 {
  margin: 8px 0;
  font-size: 1.2rem;
}

.timeline-item p {
  font-size: 0.78rem;
}

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

.leader-card {
  padding: 34px 30px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.leader-initials {
  display: grid;
  width: 72px;
  height: 72px;
  margin-bottom: 26px;
  place-items: center;
  color: var(--forest-800);
  background: var(--sage-100);
  border-radius: 50% 50% 6px 50%;
  font-family: var(--font-display);
  font-size: 1.6rem;
}

.leader-card h3 {
  margin-bottom: 5px;
}

.leader-card small {
  color: var(--leaf-600);
  font-size: 0.72rem;
  font-weight: 700;
}

.leader-card p {
  margin: 18px 0 0;
  font-size: 0.8rem;
}

/* Product page */
.product-family-showcase {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.product-family-showcase img {
  width: 100%;
  border-radius: 4px 58px 4px 4px;
  box-shadow: var(--shadow-soft);
}

.quality-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  counter-reset: quality;
}

.quality-step {
  position: relative;
  padding: 34px 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  counter-increment: quality;
}

.quality-step:first-child {
  border-left: 0;
}

.quality-step::before {
  display: block;
  margin-bottom: 42px;
  color: var(--brass-light);
  content: '0' counter(quality);
  font-family: var(--font-display);
  font-size: 1.7rem;
}

.quality-step h3 {
  color: #fff;
}

.quality-step p {
  margin: 0;
  font-size: 0.78rem;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 70px;
  align-items: start;
}

.faq-list details {
  border-top: 1px solid var(--line);
}

.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 23px 48px 23px 0;
  color: var(--forest-900);
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 600;
  list-style: none;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 24px;
  right: 3px;
  width: 24px;
  height: 24px;
  color: #fff;
  background: var(--forest-800);
  border-radius: 50%;
  content: '+';
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 23px;
  text-align: center;
}

.faq-list details[open] summary::after {
  content: '−';
}

.faq-list details p {
  max-width: 700px;
  padding-right: 50px;
  margin-bottom: 23px;
  font-size: 0.85rem;
}

/* Career page */
.culture-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
}

.culture-photo {
  min-height: 560px;
  overflow: hidden;
  border-radius: 4px 80px 4px 4px;
}

.culture-photo img {
  width: 100%;
  height: 100%;
}

.culture-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 55px;
  color: #fff;
  background: var(--forest-900);
}

.culture-copy h2 {
  margin-bottom: 20px;
}

.culture-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.culture-quote {
  padding-top: 28px;
  margin-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--brass-light);
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.35;
}

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

.benefit {
  padding: 16px 0;
}

.benefit-icon {
  width: 48px;
  height: 48px;
  margin: 0 0 20px;
}

.benefit h3 {
  margin-bottom: 10px;
  font-size: 1.22rem;
}

.benefit p {
  font-size: 0.8rem;
}

.roles-list {
  border-top: 1px solid var(--line);
}

.role-row {
  display: grid;
  grid-template-columns: 1.8fr 0.8fr 0.8fr auto;
  gap: 24px;
  align-items: center;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}

.role-row h3 {
  margin: 0;
  font-size: 1.18rem;
}

.role-row span {
  color: #68776f;
  font-size: 0.75rem;
}

.role-row .button {
  min-height: 40px;
  padding: 10px 15px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.16);
}

.process-step {
  padding: 36px 28px;
  background: var(--forest-950);
}

.process-step strong {
  display: block;
  margin-bottom: 48px;
  color: var(--brass-light);
  font-family: var(--font-display);
  font-size: 1.5rem;
}

.process-step h3 {
  color: #fff;
}

.process-step p {
  margin-bottom: 0;
  font-size: 0.77rem;
}

/* News page */
.featured-story {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  overflow: hidden;
  background: var(--forest-900);
}

.featured-story__image {
  min-height: 520px;
}

.featured-story__image img {
  width: 100%;
  height: 100%;
}

.featured-story__copy {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  padding: 60px;
  color: #fff;
}

.featured-story__copy h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.featured-story__copy p {
  color: rgba(255, 255, 255, 0.72);
}

.featured-story__meta {
  margin-bottom: 20px;
  color: var(--brass-light);
  font-size: 0.72rem;
  font-weight: 700;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.media-card {
  border-bottom: 1px solid var(--line);
}

.media-card__image {
  height: 250px;
  overflow: hidden;
}

.media-card__image img {
  width: 100%;
  height: 100%;
  transition: transform 350ms ease;
}

.media-card:hover img {
  transform: scale(1.035);
}

.media-card__body {
  padding: 24px 0 26px;
}

.media-card__meta {
  color: var(--leaf-600);
  font-size: 0.7rem;
  font-weight: 700;
}

.media-card h3 {
  margin: 10px 0;
  font-size: 1.4rem;
}

.media-card p {
  font-size: 0.8rem;
}

.press-kit {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 60px;
}

.press-assets {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.press-asset {
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.press-asset strong {
  display: block;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.press-asset small {
  color: rgba(255, 255, 255, 0.55);
}

/* Contact page */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.contact-card {
  padding: 34px;
  border-top: 3px solid var(--leaf-600);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.contact-card h3 {
  margin-bottom: 16px;
}

.contact-card p,
.contact-card a {
  font-size: 0.8rem;
}

.contact-card a {
  display: block;
  color: var(--forest-700);
  font-weight: 700;
}

.contact-card a + a {
  margin-top: 5px;
}

.full-contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: start;
}

.full-contact-form {
  padding: clamp(30px, 5vw, 56px);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.full-contact-form h2 {
  margin-bottom: 12px;
}

.full-contact-form > p {
  margin-bottom: 32px;
}

.contact-aside {
  padding: 42px;
  color: #fff;
  background: var(--forest-900);
}

.contact-aside h2 {
  margin-bottom: 20px;
  font-size: 2rem;
}

.contact-aside > p {
  color: rgba(255, 255, 255, 0.7);
}

.contact-aside .contact-list {
  padding-top: 28px;
  margin-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-aside .contact-list li,
.contact-aside .contact-list strong {
  color: rgba(255, 255, 255, 0.78);
}

.contact-aside .contact-list svg {
  stroke: var(--brass-light);
}

.map-large {
  min-height: 520px;
}

/* Utility compositions */
.split-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.split-feature__media {
  min-height: 520px;
}

.split-feature__media img {
  width: 100%;
  height: 100%;
}

.split-feature__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(44px, 7vw, 90px);
  color: #fff;
  background: var(--forest-900);
}

.split-feature__copy h2 {
  margin-bottom: 22px;
}

.split-feature__copy p {
  color: rgba(255, 255, 255, 0.72);
}

.split-feature__copy .button {
  align-self: start;
  margin-top: 10px;
}

.centered-intro {
  max-width: 760px;
  margin: 0 auto 50px;
  text-align: center;
}

.centered-intro .kicker {
  justify-content: center;
}

.centered-intro h2 {
  margin-bottom: 20px;
}

.centered-intro p {
  margin-bottom: 0;
}

.centered-intro .kicker::before {
  display: none;
}

.cta-panel {
  position: relative;
  padding: clamp(48px, 8vw, 90px);
  overflow: hidden;
  color: #fff;
  background: var(--forest-800);
  border-radius: 4px 58px 4px 4px;
}

.cta-panel::after {
  position: absolute;
  top: -100px;
  right: -70px;
  width: 360px;
  height: 360px;
  border: 70px solid rgba(255, 255, 255, 0.07);
  border-radius: 50% 48% 58% 42%;
  content: '';
}

.cta-panel__content {
  position: relative;
  z-index: 1;
  max-width: 740px;
}

.cta-panel h2 {
  margin-bottom: 18px;
}

.cta-panel p {
  color: rgba(255, 255, 255, 0.72);
}

.empty-note {
  padding: 20px;
  border: 1px dashed var(--sage-300);
  color: #65756c;
  background: var(--sage-100);
  font-size: 0.78rem;
}

@media (max-width: 1120px) {
  .utility-list li:nth-child(3) {
    display: none;
  }

  .brand img {
    width: 64px;
    height: 64px;
    max-height: 64px;
  }

  .site-nav {
    gap: 17px;
  }

  .site-nav > a:not(.button) {
    font-size: 0.72rem;
  }

  .site-nav .button {
    padding-inline: 14px;
  }

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

  .proof-item:nth-child(4) {
    border-left: 0;
  }

  .proof-item:nth-child(n + 4) {
    border-top: 1px solid var(--line);
  }

  .about-grid {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .purpose-panel {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }

  .purpose-item + .purpose-item {
    padding: 0 0 0 28px;
    margin: 0;
    border-top: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.15);
  }

  .category-rail {
    grid-template-columns: repeat(4, 1fr);
  }

  .category-card:nth-child(5) {
    border-left: 0;
  }

  .category-card:nth-child(n + 5) {
    border-top: 1px solid var(--line);
  }

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

  .why-panel {
    grid-column: 1 / -1;
  }

  .certification-band {
    grid-template-columns: 1fr repeat(3, 0.45fr);
  }

  .metric-strip {
    grid-column: 1 / -1;
    min-height: 130px;
  }

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

  .contact-preview {
    grid-template-columns: 0.8fr 1.2fr;
  }

  .map-panel {
    min-height: 350px;
    grid-column: 1 / -1;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

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

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

@media (max-width: 900px) {
  .utility-bar {
    display: none;
  }

  .site-header {
    backdrop-filter: none;
  }

  .navbar {
    min-height: 72px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    z-index: 999;
    top: 72px;
    right: 0;
    bottom: 0;
    display: flex;
    width: min(390px, 88%);
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 32px;
    background: var(--paper);
    box-shadow: -20px 0 50px rgba(6, 47, 34, 0.16);
    overflow-y: auto;
    overscroll-behavior: contain;
    pointer-events: none;
    transform: translateX(110%);
    visibility: hidden;
    transition: transform 220ms ease, visibility 0s linear 220ms;
  }

  .site-nav.is-open {
    pointer-events: auto;
    transform: translateX(0);
    visibility: visible;
    transition-delay: 0s;
  }

  .site-nav > a:not(.button) {
    padding: 17px 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--font-display);
    font-size: 1.4rem;
  }

  .site-nav > a:not(.button)::after {
    display: none;
  }

  .site-nav .button {
    margin-top: 24px;
  }

  .home-hero {
    min-height: 690px;
    align-items: end;
  }

  .home-hero::before {
    background-position: 63% center;
  }

  .home-hero::after {
    background: linear-gradient(90deg, rgba(248, 244, 233, 0.98) 0%, rgba(248, 244, 233, 0.9) 46%, rgba(248, 244, 233, 0.28) 100%);
  }

  .home-hero__content {
    width: min(600px, 78vw);
    padding: 75px 0 120px;
  }

  .home-hero h1 {
    font-size: clamp(3.2rem, 10vw, 5.4rem);
  }

  .about-grid,
  .values-layout,
  .product-family-showcase,
  .culture-grid,
  .featured-story,
  .press-kit,
  .full-contact-grid,
  .story-grid,
  .split-feature {
    grid-template-columns: 1fr;
  }

  .values-statement {
    position: static;
  }

  .heritage-panel {
    grid-template-columns: 1fr 0.8fr 1fr;
  }

  .heritage-quote,
  .heritage-copy {
    padding: 30px;
  }

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

  .timeline,
  .quality-steps,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .quality-step:nth-child(3) {
    border-left: 0;
  }

  .quality-step:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }

  .leadership-grid,
  .contact-cards {
    grid-template-columns: 1fr;
  }

  .roles-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    border-top: 0;
  }

  .role-row {
    grid-template-columns: 1fr;
    gap: 9px;
    padding: 25px;
    border: 1px solid var(--line);
  }

  .featured-story__image {
    min-height: 400px;
  }

  .product-family-showcase img {
    order: -1;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 68px 0;
  }

  .section-intro {
    display: block;
    margin-bottom: 32px;
  }

  .section-intro p:last-child {
    margin-top: 18px;
  }

  .brand img {
    width: 62px;
    height: 62px;
    max-height: 62px;
  }

  .home-hero {
    min-height: 690px;
  }

  .home-hero::before {
    background-position: 69% center;
  }

  .home-hero::after {
    background: linear-gradient(0deg, rgba(248, 244, 233, 1) 0%, rgba(248, 244, 233, 0.97) 36%, rgba(248, 244, 233, 0.32) 100%);
  }

  .home-hero__content {
    width: 100%;
    padding: 295px 0 94px;
  }

  .home-hero h1 {
    margin-bottom: 16px;
    font-size: clamp(2.8rem, 14vw, 4.2rem);
  }

  .home-hero .lead {
    font-size: 0.95rem;
  }

  .hero-note {
    display: none;
  }

  .proof-wrap {
    margin-top: -24px;
  }

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

  .proof-item {
    min-height: 135px;
    padding-inline: 10px;
  }

  .proof-item:nth-child(3),
  .proof-item:nth-child(5) {
    border-left: 0;
  }

  .proof-item:nth-child(4) {
    border-left: 1px solid var(--line);
  }

  .proof-item:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .about-grid {
    gap: 20px;
  }

  .image-frame {
    min-height: 340px;
  }

  .about-copy {
    padding: 20px 0;
  }

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

  .purpose-panel {
    display: block;
  }

  .purpose-item + .purpose-item {
    padding: 22px 0 0;
    margin-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-left: 0;
  }

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

  .category-card:nth-child(odd) {
    border-left: 0;
  }

  .category-card:nth-child(even) {
    border-left: 1px solid var(--line);
  }

  .category-card:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .product-grid,
  .news-grid,
  .media-grid,
  .benefit-grid,
  .contact-preview,
  .roles-list {
    grid-template-columns: 1fr;
  }

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

  .why-panel {
    grid-column: auto;
  }

  .capability-card {
    min-height: 330px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

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

  .cert-copy,
  .metric-strip {
    grid-column: 1 / -1;
  }

  .seal:first-of-type {
    border-left: 0;
  }

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

  .metric:nth-child(3) {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-left: 0;
  }

  .metric:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
  }

  .heritage-panel {
    min-height: 650px;
    grid-template-columns: 1fr;
    align-content: space-between;
  }

  .heritage-panel::before {
    background: linear-gradient(0deg, var(--forest-950) 0 17%, transparent 46% 57%, var(--forest-950) 90% 100%), url('../assets/images/heritage.png') center / cover no-repeat;
  }

  .heritage-copy {
    grid-column: 1;
  }

  .partner-banner {
    min-height: 470px;
    grid-template-columns: 1fr;
    align-items: start;
  }

  .partner-banner__copy {
    padding: 38px 28px;
  }

  .partner-products {
    right: -20%;
    bottom: -27%;
    width: 100%;
    height: 74%;
  }

  .contact-details,
  .contact-form-wrap,
  .map-panel {
    min-height: auto;
    padding: 28px;
  }

  .contact-form-wrap,
  .map-panel {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .map-panel {
    min-height: 330px;
  }

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

  .field--full {
    grid-column: auto;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 34px 22px;
  }

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    padding: 20px 0;
  }

  .page-hero {
    min-height: 470px;
  }

  .page-hero h1 {
    max-width: 100%;
    font-size: clamp(2.65rem, 13vw, 4rem);
    overflow-wrap: anywhere;
  }

  .story-stamp {
    right: 12px;
    bottom: 12px;
  }

  .value-row {
    grid-template-columns: 55px 1fr;
  }

  .timeline,
  .quality-steps,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .timeline::before {
    top: 0;
    bottom: 0;
    left: 7px;
    width: 1px;
    height: auto;
  }

  .timeline-item {
    padding: 0 0 24px 40px;
  }

  .timeline-item::before {
    top: 7px;
  }

  .quality-step,
  .quality-step:nth-child(3) {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-left: 0;
  }

  .quality-step:first-child {
    border-top: 0;
  }

  .culture-copy,
  .featured-story__copy,
  .contact-aside {
    padding: 34px 28px;
  }

  .culture-photo {
    min-height: 420px;
  }

  .role-row {
    padding: 22px;
  }

  .press-assets {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .navbar {
    min-height: 68px;
  }

  .brand img {
    width: 56px;
    height: 56px;
    max-height: 56px;
  }

  .site-nav {
    top: 68px;
    width: 100%;
    padding: 24px;
  }

  .home-hero {
    min-height: 660px;
  }

  .home-hero__content {
    padding: 270px 0 76px;
  }

  .home-hero h1 {
    font-size: clamp(2.55rem, 12.5vw, 3.35rem);
  }

  .button-row .button {
    min-height: 46px;
  }

  .proof-item {
    min-height: 128px;
  }

  .page-hero {
    min-height: 450px;
  }

  .page-hero__content {
    padding: 58px 0 42px;
  }

  .page-hero h1 {
    font-size: clamp(2.5rem, 12.5vw, 3.15rem);
  }

  .page-hero p {
    font-size: 0.96rem;
  }

  .story-media img {
    border-radius: 72px 4px 4px 4px;
  }

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

  .seal,
  .seal:first-of-type {
    min-height: 128px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .metric-strip {
    grid-template-columns: 1fr 1fr;
  }

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

  .footer-brand {
    grid-column: auto;
  }

  .footer-links a,
  .footer-links li {
    overflow-wrap: anywhere;
  }

  .footer-legal {
    flex-wrap: wrap;
  }

  .cta-panel {
    padding: 38px 24px;
    border-radius: 4px 38px 4px 4px;
  }

  .faq-list summary {
    padding-right: 40px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
