:root {
  --forest-950: #0b211b;
  --forest-900: #102e26;
  --forest-800: #15392f;
  --forest-700: #1d4a3d;
  --sage-500: #78947c;
  --sage-200: #dbe4d8;
  --sage-100: #edf2e9;
  --cream-50: #fbfaf5;
  --cream-100: #f5f0e5;
  --paper: #fffdf8;
  --terracotta-600: #ad4f36;
  --terracotta-500: #c26748;
  --gold-500: #b68a4a;
  --ink-900: #1a211d;
  --ink-700: #465149;
  --ink-500: #6d756f;
  --white: #ffffff;
  --border: rgba(21, 57, 47, 0.14);
  --shadow-sm: 0 12px 30px rgba(18, 44, 35, 0.08);
  --shadow-lg: 0 30px 80px rgba(17, 47, 38, 0.16);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --container: 1180px;
  --font-display: "Libre Caslon Display", Georgia, "Times New Roman", serif;
  --font-body: "DM Sans", Inter, Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream-50);
  color: var(--ink-900);
  font-family: var(--font-body);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

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

button {
  font: inherit;
}

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

h1,
h2,
h3 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

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

.section-shell {
  position: relative;
  padding: 104px 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--white);
  color: var(--forest-900);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.announcement-bar {
  position: relative;
  z-index: 30;
  background: var(--forest-950);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.announcement-inner {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.announcement-divider {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--terracotta-500);
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid transparent;
  background: rgba(251, 250, 245, 0.92);
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--border);
  box-shadow: 0 8px 26px rgba(16, 46, 38, 0.06);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(21, 57, 47, 0.18);
  border-radius: 50%;
  background: var(--paper);
}

.brand-mark svg {
  width: 31px;
  fill: none;
  stroke: var(--forest-800);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-name {
  color: var(--forest-900);
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.025em;
}

.brand-subtitle {
  margin-top: 7px;
  color: var(--ink-500);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

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

.primary-nav > a:not(.nav-cta) {
  position: relative;
  color: var(--ink-700);
  font-size: 0.92rem;
  font-weight: 600;
}

.primary-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--terracotta-500);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.primary-nav > a:not(.nav-cta):hover::after,
.primary-nav > a:not(.nav-cta):focus-visible::after {
  transform: scaleX(1);
}

.nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--forest-800);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 700;
  transition: background-color 180ms ease, transform 180ms ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--forest-700);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 1.5px;
  background: var(--forest-900);
  transition: transform 180ms ease, opacity 180ms ease;
}

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

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

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

.hero {
  overflow: hidden;
  padding-top: 82px;
  background:
    radial-gradient(circle at 8% 16%, rgba(194, 103, 72, 0.11), transparent 28%),
    radial-gradient(circle at 95% 12%, rgba(120, 148, 124, 0.18), transparent 34%),
    var(--cream-50);
}

.hero::before {
  position: absolute;
  top: 80px;
  left: -170px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(21, 57, 47, 0.09);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  display: grid;
  align-items: center;
  gap: 72px;
  grid-template-columns: minmax(0, 0.96fr) minmax(440px, 1.04fr);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 18px;
  color: var(--terracotta-600);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 1px;
  background: currentColor;
  content: "";
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 28px;
  color: var(--forest-950);
  font-family: var(--font-display);
  font-size: clamp(3.45rem, 6vw, 6rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.99;
}

.hero-lead {
  max-width: 640px;
  margin-bottom: 34px;
  color: var(--ink-700);
  font-size: 1.08rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-bottom: 50px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.91rem;
  font-weight: 700;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button svg,
.text-link svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transition: transform 180ms ease;
}

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

.button:hover svg,
.button:focus-visible svg,
.text-link:hover svg,
.text-link:focus-visible svg {
  transform: translateX(3px);
}

.button--primary {
  background: var(--terracotta-600);
  color: var(--white);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: #99432e;
}

.button--secondary {
  border-color: rgba(21, 57, 47, 0.2);
  background: rgba(255, 255, 255, 0.58);
  color: var(--forest-900);
}

.button--secondary:hover,
.button--secondary:focus-visible {
  border-color: var(--forest-700);
  background: var(--white);
}

.hero-stats {
  display: grid;
  max-width: 660px;
  margin: 0;
  gap: 0;
  grid-template-columns: repeat(3, 1fr);
}

.hero-stats div {
  padding: 0 24px;
  border-left: 1px solid var(--border);
}

.hero-stats div:first-child {
  padding-left: 0;
  border-left: 0;
}

.hero-stats dt {
  margin-bottom: 4px;
  color: var(--forest-900);
  font-family: var(--font-display);
  font-size: 1.7rem;
  line-height: 1.2;
}

.hero-stats dd {
  margin: 0;
  color: var(--ink-500);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.045em;
  line-height: 1.45;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  min-height: 630px;
}

.hero-image-wrap {
  position: absolute;
  inset: 16px 0 38px 40px;
  overflow: hidden;
  border-radius: 160px 160px 28px 28px;
  background: var(--sage-100);
  box-shadow: var(--shadow-lg);
}

.hero-image-wrap::after {
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 146px 146px 20px 20px;
  content: "";
  pointer-events: none;
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 43% center;
  transform: scale(1.025);
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12, 35, 29, 0.02) 40%, rgba(12, 35, 29, 0.44) 100%),
    linear-gradient(90deg, rgba(245, 240, 229, 0.1), transparent 38%);
}

.floating-card {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 220px;
  padding: 15px 18px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 16px;
  background: rgba(255, 253, 248, 0.9);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(18px);
}

.floating-card--top {
  top: 78px;
  left: 0;
}

.floating-card--bottom {
  right: -18px;
  bottom: 68px;
}

.floating-card strong,
.floating-card small {
  display: block;
}

.floating-card strong {
  color: var(--forest-900);
  font-size: 0.84rem;
}

.floating-card small {
  margin-top: 3px;
  color: var(--ink-500);
  font-size: 0.71rem;
}

.floating-icon {
  display: grid;
  width: 41px;
  height: 41px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 12px;
  background: var(--sage-100);
  color: var(--forest-800);
}

.floating-icon--warm {
  background: #f5e3d9;
  color: var(--terracotta-600);
}

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

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

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

.capability-item {
  display: grid;
  min-height: 180px;
  align-items: start;
  gap: 18px;
  padding: 40px 40px 36px;
  border-left: 1px solid var(--border);
  grid-template-columns: auto 1fr;
}

.capability-item:first-child {
  padding-left: 0;
  border-left: 0;
}

.capability-item:last-child {
  padding-right: 0;
}

.capability-number {
  color: var(--terracotta-500);
  font-family: var(--font-display);
  font-size: 1.08rem;
}

.capability-item h2 {
  margin-bottom: 10px;
  color: var(--forest-900);
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 400;
}

.capability-item p {
  margin-bottom: 0;
  color: var(--ink-500);
  font-size: 0.88rem;
  line-height: 1.72;
}

.story {
  background: var(--cream-50);
}

.story-grid {
  display: grid;
  gap: 90px;
  grid-template-columns: 1.04fr 0.96fr;
}

.story-heading h2,
.section-intro h2,
.why-panel h2,
.cta h2 {
  margin-bottom: 0;
  color: var(--forest-950);
  font-family: var(--font-display);
  font-size: clamp(2.55rem, 4.3vw, 4.2rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.story-copy {
  align-self: end;
  padding-top: 48px;
}

.story-copy p {
  color: var(--ink-700);
  font-size: 1rem;
  line-height: 1.85;
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  color: var(--terracotta-600);
  font-size: 0.9rem;
  font-weight: 700;
}

.products {
  border-top: 1px solid rgba(21, 57, 47, 0.08);
  background: var(--paper);
}

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

.section-intro h2 {
  max-width: 750px;
}

.product-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(12, 1fr);
}

.product-card {
  position: relative;
  display: flex;
  min-height: 290px;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 30px;
  border: 1px solid rgba(21, 57, 47, 0.11);
  border-radius: var(--radius-md);
  background: var(--cream-100);
  isolation: isolate;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.product-card::before,
.product-card::after {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  content: "";
}

.product-card::before {
  top: -90px;
  right: -60px;
  width: 230px;
  height: 230px;
  background: rgba(255, 255, 255, 0.48);
}

.product-card::after {
  right: 28px;
  bottom: 18px;
  width: 92px;
  height: 92px;
  border: 1px solid rgba(21, 57, 47, 0.09);
}

.product-card:hover,
.product-card:focus-visible {
  border-color: rgba(21, 57, 47, 0.28);
  box-shadow: var(--shadow-sm);
  transform: translateY(-5px);
}

.product-card:nth-child(1),
.product-card:nth-child(2),
.product-card:nth-child(3) {
  grid-column: span 4;
}

.product-card:nth-child(4),
.product-card:nth-child(5) {
  min-height: 250px;
  grid-column: span 6;
}

.product-card--seaweed {
  background: #e8efe3;
}

.product-card--tea {
  background: #f2ead8;
}

.product-card--jerky {
  background: #f3e3dc;
}

.product-card--pantry {
  background: #ece7dc;
}

.product-card--frozen {
  background: #e4edf0;
}

.product-icon {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border: 1px solid rgba(21, 57, 47, 0.11);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.44);
  color: var(--forest-800);
}

.product-icon svg {
  width: 48px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.product-card-copy {
  display: flex;
  max-width: 80%;
  flex-direction: column;
}

.product-kicker {
  margin-bottom: 7px;
  color: var(--terracotta-600);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-card strong {
  color: var(--forest-950);
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
}

.product-card small {
  margin-top: 8px;
  color: var(--ink-700);
  font-size: 0.82rem;
  line-height: 1.55;
}

.product-arrow {
  position: absolute;
  top: 26px;
  right: 28px;
  color: var(--forest-700);
  font-size: 1.2rem;
  transition: transform 220ms ease;
}

.product-card:hover .product-arrow,
.product-card:focus-visible .product-arrow {
  transform: translate(3px, -3px);
}

.text-link--mobile {
  display: none;
}

.why-us {
  overflow: hidden;
  background: var(--forest-950);
  color: var(--white);
}

.why-us::before {
  position: absolute;
  top: -180px;
  left: -100px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  content: "";
}

.why-grid {
  position: relative;
  display: grid;
  gap: 100px;
  grid-template-columns: 0.86fr 1.14fr;
}

.eyebrow--light {
  color: #e5b899;
}

.why-panel h2 {
  color: var(--white);
}

.why-panel > p:not(.eyebrow) {
  max-width: 520px;
  margin: 28px 0 32px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.98rem;
  line-height: 1.85;
}

.button--light {
  background: var(--cream-100);
  color: var(--forest-950);
}

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

.why-list article {
  display: grid;
  gap: 24px;
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  grid-template-columns: auto 1fr;
}

.why-list article:first-child {
  padding-top: 8px;
  border-top: 0;
}

.why-index {
  color: #e5b899;
  font-family: var(--font-display);
  font-size: 1.15rem;
}

.why-list h3 {
  margin-bottom: 8px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 400;
}

.why-list p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.63);
  font-size: 0.87rem;
  line-height: 1.75;
}

.cta {
  background: var(--cream-50);
}

.cta-box {
  position: relative;
  display: flex;
  min-height: 320px;
  align-items: center;
  justify-content: space-between;
  gap: 64px;
  overflow: hidden;
  padding: 58px 66px;
  border: 1px solid rgba(21, 57, 47, 0.12);
  border-radius: var(--radius-lg);
  background: var(--sage-100);
}

.cta-box::before {
  position: absolute;
  top: -110px;
  right: -70px;
  width: 330px;
  height: 330px;
  border: 70px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  content: "";
}

.cta-box > * {
  position: relative;
}

.cta h2 {
  max-width: 760px;
  font-size: clamp(2.35rem, 4vw, 3.7rem);
}

.cta .button {
  flex: 0 0 auto;
}

.site-footer {
  padding: 82px 0 24px;
  background: #091c17;
  color: rgba(255, 255, 255, 0.68);
}

.footer-grid {
  display: grid;
  gap: 80px;
  padding-bottom: 64px;
  grid-template-columns: 1.6fr 0.7fr 1fr;
}

.brand--footer .brand-mark {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
}

.brand--footer .brand-mark svg {
  stroke: #e5b899;
}

.brand--footer .brand-name {
  color: var(--white);
}

.brand--footer .brand-subtitle {
  color: rgba(255, 255, 255, 0.48);
}

.footer-brand > p {
  max-width: 410px;
  margin-top: 24px;
  margin-bottom: 0;
  font-size: 0.91rem;
  line-height: 1.8;
}

.footer-nav,
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-nav h2,
.footer-contact h2 {
  margin-bottom: 12px;
  color: var(--white);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-nav a,
.footer-contact a {
  font-size: 0.88rem;
  transition: color 180ms ease;
}

.footer-nav a:hover,
.footer-nav a:focus-visible,
.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: var(--white);
}

.footer-contact address {
  margin-bottom: 7px;
  font-size: 0.88rem;
  font-style: normal;
  line-height: 1.75;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.72rem;
  letter-spacing: 0.035em;
}

.footer-bottom p {
  margin-bottom: 0;
}

:focus-visible {
  outline: 3px solid rgba(194, 103, 72, 0.4);
  outline-offset: 4px;
}

@media (max-width: 1020px) {
  .section-shell {
    padding: 88px 0;
  }

  .primary-nav {
    gap: 21px;
  }

  .hero-grid {
    gap: 48px;
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.9fr);
  }

  .hero h1 {
    font-size: clamp(3.2rem, 6vw, 4.8rem);
  }

  .hero-visual {
    min-height: 560px;
  }

  .floating-card--bottom {
    right: -4px;
  }

  .capability-item {
    padding-inline: 26px;
  }

  .story-grid,
  .why-grid {
    gap: 60px;
  }

  .cta-box {
    padding: 52px;
  }
}

@media (max-width: 820px) {
  .announcement-desktop,
  .announcement-divider--desktop {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .primary-nav {
    position: fixed;
    z-index: 19;
    /* JS sets this to the live bottom edge of the sticky title bar. */
    top: var(--mobile-menu-top, 122px);
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px 20px 40px;
    border-top: 1px solid var(--border);
    background: var(--cream-50);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

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

  /* Mobile menu fix: remove the backdrop-filter containing block while
     the menu is open so the fixed navigation fills the viewport below
     the announcement bar and header. */
  body.nav-open .site-header {
    background: var(--cream-50);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  body.nav-open .primary-nav {
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .primary-nav > a:not(.nav-cta) {
    padding: 17px 4px;
    border-bottom: 1px solid var(--border);
    font-family: var(--font-display);
    font-size: 1.7rem;
    font-weight: 400;
  }

  .primary-nav > a:not(.nav-cta)::after {
    display: none;
  }

  .nav-cta {
    margin-top: 22px;
    padding: 16px 20px;
    text-align: center;
  }

  .hero {
    padding-top: 58px;
  }

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

  .hero-copy {
    max-width: 720px;
  }

  .hero-visual {
    min-height: 600px;
    margin-top: 10px;
  }

  .hero-image-wrap {
    inset: 12px 30px 34px;
  }

  .floating-card--top {
    top: 74px;
    left: 0;
  }

  .floating-card--bottom {
    right: 0;
  }

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

  .capability-item,
  .capability-item:first-child,
  .capability-item:last-child {
    min-height: auto;
    padding: 30px 0;
    border-top: 1px solid var(--border);
    border-left: 0;
  }

  .capability-item:first-child {
    border-top: 0;
  }

  .story-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .story-copy {
    max-width: 680px;
    padding-top: 0;
  }

  .product-card:nth-child(1),
  .product-card:nth-child(2),
  .product-card:nth-child(3),
  .product-card:nth-child(4),
  .product-card:nth-child(5) {
    grid-column: span 6;
  }

  .product-card:last-child {
    grid-column: 1 / -1;
  }

  .why-grid {
    gap: 46px;
  }

  .why-panel {
    max-width: 680px;
  }

  .cta-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-grid {
    gap: 50px;
    grid-template-columns: 1.5fr 0.8fr;
  }

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

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

  .section-shell {
    padding: 74px 0;
  }

  .announcement-inner {
    gap: 10px;
    font-size: 0.64rem;
    letter-spacing: 0.06em;
  }

  .nav-wrap {
    min-height: 74px;
  }

  .brand-mark {
    width: 41px;
    height: 41px;
  }

  .brand-name {
    font-size: 1.22rem;
  }

  .brand-subtitle {
    font-size: 0.56rem;
  }

  .primary-nav {
    top: var(--mobile-menu-top, 112px);
  }

  .hero {
    padding-top: 48px;
  }

  .eyebrow {
    font-size: 0.66rem;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 4.2rem);
  }

  .hero-lead {
    font-size: 0.98rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .hero-stats {
    gap: 18px;
    grid-template-columns: 1fr;
  }

  .hero-stats div,
  .hero-stats div:first-child {
    display: grid;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    border-top: 1px solid var(--border);
    border-left: 0;
    grid-template-columns: 120px 1fr;
  }

  .hero-stats dd {
    max-width: 180px;
  }

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

  .hero-image-wrap {
    inset: 0 8px 20px;
    border-radius: 110px 110px 22px 22px;
  }

  .hero-image-wrap::after {
    border-radius: 96px 96px 15px 15px;
  }

  .floating-card {
    min-width: 0;
    padding: 12px 13px;
  }

  .floating-card--top {
    top: 44px;
    left: 0;
  }

  .floating-card--bottom {
    right: 0;
    bottom: 38px;
  }

  .floating-card small {
    display: none;
  }

  .floating-icon {
    width: 36px;
    height: 36px;
  }

  .capability-item {
    grid-template-columns: 36px 1fr;
  }

  .story-heading h2,
  .section-intro h2,
  .why-panel h2,
  .cta h2 {
    font-size: clamp(2.5rem, 12vw, 3.35rem);
  }

  .section-intro {
    margin-bottom: 34px;
  }

  .text-link--desktop {
    display: none;
  }

  .text-link--mobile {
    display: inline-flex;
    margin-top: 28px;
  }

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

  .product-card:nth-child(1),
  .product-card:nth-child(2),
  .product-card:nth-child(3),
  .product-card:nth-child(4),
  .product-card:nth-child(5),
  .product-card:last-child {
    min-height: 245px;
    grid-column: auto;
  }

  .product-card {
    padding: 25px;
  }

  .why-list article {
    gap: 16px;
    grid-template-columns: 30px 1fr;
  }

  .cta-box {
    min-height: auto;
    gap: 36px;
    padding: 38px 28px;
    border-radius: 26px;
  }

  .cta-box::before {
    right: -145px;
  }

  .footer-grid {
    gap: 42px;
    padding-bottom: 50px;
    grid-template-columns: 1fr;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 6px;
  }
}

@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;
  }
}

/* Products page */
.products-hero {
  overflow: hidden;
  padding-top: 72px;
  background:
    radial-gradient(circle at 7% 15%, rgba(194, 103, 72, 0.12), transparent 26%),
    radial-gradient(circle at 96% 10%, rgba(120, 148, 124, 0.2), transparent 34%),
    var(--cream-50);
}

.products-hero::before {
  position: absolute;
  top: 94px;
  right: -190px;
  width: 390px;
  height: 390px;
  border: 1px solid rgba(21, 57, 47, 0.09);
  border-radius: 50%;
  content: "";
}

.products-hero-grid {
  display: grid;
  align-items: center;
  gap: 80px;
  grid-template-columns: minmax(0, 0.93fr) minmax(430px, 1.07fr);
}

.products-hero-copy h1 {
  max-width: 720px;
  margin-bottom: 25px;
  color: var(--forest-900);
  font-family: var(--font-display);
  font-size: clamp(3.6rem, 6.5vw, 6.3rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.96;
}

.products-hero-lead {
  max-width: 660px;
  margin-bottom: 34px;
  color: var(--ink-700);
  font-size: 1.05rem;
  line-height: 1.82;
}

.products-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-bottom: 36px;
}

.products-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.products-hero-meta span {
  padding: 8px 12px;
  border: 1px solid rgba(21, 57, 47, 0.14);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.7);
  color: var(--ink-700);
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.products-collage {
  position: relative;
  min-height: 610px;
}

.products-collage::before {
  position: absolute;
  inset: 30px 60px 50px 28px;
  border-radius: var(--radius-lg);
  background: var(--sage-100);
  content: "";
  transform: rotate(-2deg);
}

.products-collage-card {
  position: absolute;
  overflow: hidden;
  margin: 0;
  border: 8px solid var(--paper);
  border-radius: 26px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.products-collage-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.products-collage-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(11, 33, 27, 0.76));
  content: "";
}

.products-collage-card figcaption {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 19px;
  left: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--white);
}

.products-collage-card figcaption span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.products-collage-card figcaption strong {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
}

.products-collage-card--main {
  z-index: 1;
  top: 42px;
  left: 0;
  width: 68%;
  height: 360px;
  transform: rotate(-2.4deg);
}

.products-collage-card--tea {
  z-index: 3;
  top: 0;
  right: 0;
  width: 42%;
  height: 260px;
  transform: rotate(3deg);
}

.products-collage-card--jerky {
  z-index: 2;
  right: 20px;
  bottom: 24px;
  width: 58%;
  height: 310px;
  transform: rotate(1.7deg);
}

.product-overview {
  background: var(--paper);
}

.product-overview-grid {
  display: grid;
  gap: 100px;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}

.product-overview h2,
.product-categories h2,
.product-services h2,
.external-catalog h2 {
  margin-bottom: 0;
  color: var(--forest-900);
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 4.8vw, 4.8rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.04;
}

.product-overview-copy {
  padding-top: 34px;
}

.product-overview-copy p {
  color: var(--ink-700);
  line-height: 1.9;
}

.product-overview-lead {
  color: var(--forest-800) !important;
  font-size: 1.13rem;
}

.product-categories {
  background: var(--cream-100);
}

.product-categories-intro {
  align-items: end;
  margin-bottom: 64px;
}

.product-categories-intro > p {
  max-width: 500px;
  margin-bottom: 8px;
  color: var(--ink-700);
  line-height: 1.78;
}

.category-showcase {
  display: grid;
  gap: 28px;
}

.category-feature {
  display: grid;
  min-height: 500px;
  overflow: hidden;
  border: 1px solid rgba(21, 57, 47, 0.12);
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
}

.category-feature--reverse .category-feature-image {
  order: 2;
}

.category-feature-image {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  background: var(--sage-100);
}

.category-feature-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 62%, rgba(11, 33, 27, 0.1));
  content: "";
}

.category-feature--reverse .category-feature-image::after {
  background: linear-gradient(270deg, transparent 62%, rgba(11, 33, 27, 0.1));
}

.category-feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.category-feature:hover .category-feature-image img {
  transform: scale(1.025);
}

.category-index {
  position: absolute;
  z-index: 2;
  top: 24px;
  left: 24px;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  background: rgba(16, 46, 38, 0.85);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  backdrop-filter: blur(8px);
}

.category-feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px 54px;
}

.category-kicker {
  margin-bottom: 13px;
  color: var(--terracotta-600);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.category-feature h3,
.secondary-category-card h3,
.product-service-list h3 {
  margin-bottom: 18px;
  color: var(--forest-900);
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 4vw, 3.8rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.04;
}

.category-feature-copy > p:not(.category-kicker) {
  margin-bottom: 29px;
  color: var(--ink-700);
  line-height: 1.82;
}

.category-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.category-tags li,
.secondary-category-tags span {
  padding: 8px 11px;
  border: 1px solid rgba(21, 57, 47, 0.13);
  border-radius: 999px;
  background: var(--sage-100);
  color: var(--forest-800);
  font-size: 0.69rem;
  font-weight: 700;
}

.secondary-category-grid {
  display: grid;
  gap: 28px;
  margin-top: 28px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.secondary-category-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  padding: 48px;
  border: 1px solid rgba(21, 57, 47, 0.12);
  border-radius: var(--radius-lg);
  background: var(--paper);
}

.secondary-category-card::before {
  position: absolute;
  right: -90px;
  bottom: -90px;
  width: 270px;
  height: 270px;
  border-radius: 50%;
  background: rgba(120, 148, 124, 0.12);
  content: "";
}

.secondary-category-card--frozen {
  background: var(--forest-900);
  color: var(--white);
}

.secondary-category-card--frozen::before {
  background: rgba(255, 255, 255, 0.06);
}

.secondary-category-icon {
  display: grid;
  width: 70px;
  height: 70px;
  margin-bottom: 50px;
  place-items: center;
  border-radius: 20px;
  background: var(--sage-100);
  color: var(--forest-800);
}

.secondary-category-card--frozen .secondary-category-icon {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.secondary-category-icon svg {
  width: 40px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.secondary-category-number {
  position: absolute;
  top: 49px;
  right: 49px;
  color: var(--ink-500);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.secondary-category-card--frozen .secondary-category-number {
  color: rgba(255, 255, 255, 0.48);
}

.secondary-category-card h3 {
  max-width: 470px;
  font-size: clamp(2.35rem, 3.6vw, 3.5rem);
}

.secondary-category-card--frozen h3 {
  color: var(--white);
}

.secondary-category-card > p:not(.category-kicker) {
  position: relative;
  z-index: 1;
  max-width: 530px;
  margin-bottom: 26px;
  color: var(--ink-700);
  line-height: 1.8;
}

.secondary-category-card--frozen > p:not(.category-kicker) {
  color: rgba(255, 255, 255, 0.68);
}

.secondary-category-tags {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.secondary-category-card--frozen .secondary-category-tags span {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
}

.product-services {
  background: var(--forest-950);
  color: var(--white);
}

.product-services-grid {
  display: grid;
  align-items: start;
  gap: 100px;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.product-services h2 {
  color: var(--white);
}

.product-services-heading > p:not(.eyebrow) {
  max-width: 610px;
  margin: 25px 0 31px;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.85;
}

.product-service-list {
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.product-service-list article {
  display: grid;
  gap: 28px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  grid-template-columns: 48px 1fr;
}

.product-service-list article > span {
  color: var(--terracotta-500);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.product-service-list h3 {
  margin-bottom: 9px;
  color: var(--white);
  font-size: 1.7rem;
}

.product-service-list p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.59);
  line-height: 1.75;
}

.external-catalog {
  background: var(--cream-50);
}

.external-catalog-card {
  position: relative;
  display: grid;
  align-items: center;
  gap: 80px;
  min-height: 330px;
  overflow: hidden;
  padding: 60px 64px;
  border: 1px solid rgba(21, 57, 47, 0.12);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 92% 15%, rgba(194, 103, 72, 0.13), transparent 30%),
    var(--sage-100);
  grid-template-columns: minmax(0, 1fr) auto;
}

.external-catalog-card::after {
  position: absolute;
  right: 12%;
  bottom: -130px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(21, 57, 47, 0.08);
  border-radius: 50%;
  content: "";
}

.external-catalog-copy {
  position: relative;
  z-index: 1;
}

.external-catalog-copy p:not(.eyebrow) {
  max-width: 740px;
  margin: 22px 0 0;
  color: var(--ink-700);
  line-height: 1.8;
}

.external-catalog-actions {
  position: relative;
  z-index: 1;
  display: flex;
  min-width: 250px;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

@media (max-width: 1020px) {
  .products-hero-grid {
    gap: 46px;
    grid-template-columns: minmax(0, 0.95fr) minmax(390px, 1.05fr);
  }

  .products-collage {
    min-height: 560px;
  }

  .product-overview-grid,
  .product-services-grid {
    gap: 60px;
  }

  .category-feature-copy {
    padding: 45px 38px;
  }

  .secondary-category-card {
    padding: 40px;
  }

  .external-catalog-card {
    gap: 50px;
    padding: 52px 48px;
  }
}

@media (max-width: 820px) {
  .products-hero {
    padding-top: 58px;
  }

  .products-hero-grid,
  .product-overview-grid,
  .product-services-grid,
  .external-catalog-card {
    grid-template-columns: 1fr;
  }

  .products-collage {
    min-height: 580px;
  }

  .product-overview-copy {
    padding-top: 0;
  }

  .product-categories-intro {
    align-items: flex-start;
  }

  .product-categories-intro > p {
    max-width: 650px;
  }

  .category-feature,
  .category-feature--reverse {
    grid-template-columns: 1fr;
  }

  .category-feature--reverse .category-feature-image {
    order: 0;
  }

  .category-feature-image {
    min-height: 390px;
  }

  .category-feature-image::after,
  .category-feature--reverse .category-feature-image::after {
    background: linear-gradient(180deg, transparent 65%, rgba(11, 33, 27, 0.08));
  }

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

  .product-services-heading {
    max-width: 720px;
  }

  .external-catalog-actions {
    min-width: 0;
  }
}

@media (max-width: 620px) {
  .products-hero-copy h1 {
    font-size: clamp(3rem, 14vw, 4.2rem);
  }

  .products-hero-actions .button {
    width: 100%;
  }

  .products-collage {
    min-height: 470px;
  }

  .products-collage::before {
    inset: 24px 20px 34px;
  }

  .products-collage-card {
    border-width: 5px;
    border-radius: 19px;
  }

  .products-collage-card--main {
    top: 35px;
    width: 74%;
    height: 245px;
  }

  .products-collage-card--tea {
    width: 43%;
    height: 185px;
  }

  .products-collage-card--jerky {
    right: 4px;
    bottom: 25px;
    width: 67%;
    height: 225px;
  }

  .products-collage-card figcaption {
    right: 13px;
    bottom: 12px;
    left: 13px;
  }

  .products-collage-card figcaption strong {
    font-size: 0.92rem;
  }

  .products-collage-card figcaption span {
    display: none;
  }

  .product-categories-intro {
    margin-bottom: 38px;
  }

  .category-feature {
    min-height: 0;
    border-radius: var(--radius-md);
  }

  .category-feature-image {
    min-height: 285px;
  }

  .category-feature-copy {
    padding: 35px 25px 38px;
  }

  .category-feature h3,
  .secondary-category-card h3 {
    font-size: 2.45rem;
  }

  .secondary-category-card {
    min-height: 0;
    padding: 34px 25px 38px;
    border-radius: var(--radius-md);
  }

  .secondary-category-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 38px;
  }

  .secondary-category-number {
    top: 37px;
    right: 26px;
  }

  .product-service-list article {
    gap: 16px;
    grid-template-columns: 34px 1fr;
  }

  .external-catalog-card {
    min-height: 0;
    gap: 38px;
    padding: 40px 26px;
    border-radius: var(--radius-md);
  }

  .external-catalog-actions .button {
    width: 100%;
  }
}

/* About page */
.about-hero {
  overflow: hidden;
  padding-top: 72px;
  background:
    radial-gradient(circle at 7% 10%, rgba(194, 103, 72, 0.11), transparent 28%),
    radial-gradient(circle at 95% 8%, rgba(120, 148, 124, 0.18), transparent 33%),
    var(--cream-50);
}

.about-hero-grid {
  display: grid;
  align-items: center;
  gap: 76px;
  grid-template-columns: minmax(0, 0.94fr) minmax(420px, 1.06fr);
}

.about-hero-copy h1 {
  max-width: 720px;
  margin-bottom: 25px;
  color: var(--forest-900);
  font-family: var(--font-display);
  font-size: clamp(3.65rem, 6.6vw, 6.35rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.97;
}

.about-hero-lead {
  max-width: 670px;
  margin-bottom: 34px;
  color: var(--ink-700);
  font-size: 1.04rem;
  line-height: 1.84;
}

.about-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.about-hero-visual {
  position: relative;
  min-height: 610px;
}

.about-hero-image {
  position: absolute;
  inset: 12px 34px 42px 34px;
  overflow: hidden;
  border-radius: 220px 220px 28px 28px;
  background: var(--sage-100);
  box-shadow: var(--shadow-lg);
}

.about-hero-image::after {
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 208px 208px 20px 20px;
  content: "";
}

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

.about-hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 35, 28, 0.06), rgba(10, 35, 28, 0.32));
}

.about-location-card,
.about-experience-card {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(21, 57, 47, 0.1);
  background: rgba(255, 253, 248, 0.96);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
}

.about-location-card {
  right: 0;
  bottom: 68px;
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 290px;
  padding: 17px 20px;
  border-radius: 18px;
}

.about-location-card strong,
.about-location-card small {
  display: block;
}

.about-location-card strong {
  color: var(--forest-900);
  font-size: 0.86rem;
}

.about-location-card small {
  margin-top: 2px;
  color: var(--ink-500);
  font-size: 0.68rem;
  line-height: 1.4;
}

.about-location-icon {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--sage-100);
  color: var(--forest-800);
}

.about-location-icon svg {
  width: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.about-experience-card {
  top: 54px;
  left: 0;
  width: 150px;
  padding: 20px;
  border-radius: 22px;
}

.about-experience-card strong,
.about-experience-card span {
  display: block;
}

.about-experience-card strong {
  margin-bottom: 4px;
  color: var(--terracotta-600);
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 400;
  line-height: 1;
}

.about-experience-card span {
  color: var(--ink-700);
  font-size: 0.72rem;
  line-height: 1.45;
}

.about-intro {
  background: var(--paper);
}

.about-intro-grid {
  display: grid;
  gap: 100px;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}

.about-intro-heading h2,
.about-principles h2,
.about-process h2,
.about-mission blockquote {
  color: var(--forest-900);
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.04;
}

.about-intro-heading h2,
.about-principles h2,
.about-process h2 {
  font-size: clamp(2.7rem, 4.8vw, 4.8rem);
}

.about-intro-copy {
  padding-top: 34px;
}

.about-intro-copy p {
  color: var(--ink-700);
  line-height: 1.9;
}

.about-intro-lead {
  color: var(--forest-800) !important;
  font-size: 1.12rem;
}

.about-fact-row {
  display: grid;
  gap: 16px;
  margin-top: 38px;
  padding-top: 26px;
  border-top: 1px solid var(--border);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-fact-row span,
.about-fact-row strong {
  display: block;
}

.about-fact-row span {
  margin-bottom: 4px;
  color: var(--ink-500);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.about-fact-row strong {
  color: var(--forest-900);
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 400;
}

.about-principles {
  background: var(--cream-100);
}

.about-principles-intro {
  align-items: end;
  margin-bottom: 58px;
}

.about-principles-intro > p {
  max-width: 480px;
  color: var(--ink-700);
  line-height: 1.8;
}

.principle-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.principle-card {
  position: relative;
  min-height: 370px;
  padding: 38px 34px;
  overflow: hidden;
  border: 1px solid rgba(21, 57, 47, 0.11);
  border-radius: var(--radius-md);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}

.principle-card::before {
  position: absolute;
  right: -90px;
  bottom: -100px;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: rgba(120, 148, 124, 0.09);
  content: "";
}

.principle-number {
  position: absolute;
  top: 30px;
  right: 30px;
  color: var(--ink-500);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.principle-icon {
  display: grid;
  width: 66px;
  height: 66px;
  margin-bottom: 68px;
  place-items: center;
  border-radius: 20px;
  background: var(--sage-100);
  color: var(--forest-800);
}

.principle-icon svg {
  width: 39px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.principle-card h3 {
  margin-bottom: 14px;
  color: var(--forest-900);
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

.principle-card p {
  margin-bottom: 0;
  color: var(--ink-700);
  line-height: 1.75;
}

.about-process {
  background: var(--forest-950);
  color: var(--white);
}

.about-process-grid {
  display: grid;
  align-items: start;
  gap: 100px;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
}

.about-process h2 {
  max-width: 580px;
  margin-bottom: 24px;
  color: var(--white);
}

.about-process-copy > p:not(.eyebrow) {
  max-width: 560px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.85;
}

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

.process-list li {
  display: grid;
  gap: 20px;
  padding: 25px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  grid-template-columns: 46px 1fr;
}

.process-list li:first-child {
  padding-top: 0;
}

.process-list > li > span {
  color: var(--terracotta-500);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.process-list h3 {
  margin-bottom: 8px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 400;
}

.process-list p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.7;
}

.about-mission {
  background: var(--paper);
}

.about-mission-grid {
  display: grid;
  align-items: center;
  gap: 90px;
  grid-template-columns: 260px minmax(0, 1fr);
}

.about-mission-label {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
}

.mission-seal {
  display: grid;
  width: 140px;
  height: 140px;
  place-items: center;
  border-radius: 50%;
  background: var(--sage-100);
  color: var(--forest-800);
}

.mission-seal svg {
  width: 98px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.about-mission blockquote {
  max-width: 800px;
  margin: 0 0 28px;
  font-size: clamp(2.55rem, 4.9vw, 4.8rem);
}

.about-mission-copy p {
  max-width: 730px;
  color: var(--ink-700);
  line-height: 1.9;
}

/* Careers page */
.career-hero {
  overflow: hidden;
  padding-top: 72px;
  background:
    radial-gradient(circle at 3% 9%, rgba(194, 103, 72, 0.12), transparent 30%),
    radial-gradient(circle at 94% 8%, rgba(120, 148, 124, 0.18), transparent 35%),
    var(--cream-50);
}

.career-hero-grid {
  display: grid;
  align-items: center;
  gap: 76px;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.86fr);
}

.career-hero-copy h1 {
  max-width: 720px;
  margin-bottom: 25px;
  color: var(--forest-900);
  font-family: var(--font-display);
  font-size: clamp(3.65rem, 6.5vw, 6.2rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.97;
}

.career-hero-lead {
  max-width: 650px;
  margin-bottom: 34px;
  color: var(--ink-700);
  font-size: 1.03rem;
  line-height: 1.82;
}

.career-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.career-hero-panel {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  padding: 52px 48px;
  border-radius: 32px;
  background: var(--forest-900);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.career-hero-panel::before,
.career-hero-panel::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.career-hero-panel::before {
  top: -95px;
  right: -80px;
  width: 250px;
  height: 250px;
  border: 28px solid rgba(255, 255, 255, 0.04);
}

.career-hero-panel::after {
  right: -170px;
  bottom: -170px;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.career-panel-mark {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 70px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  color: var(--gold-500);
}

.career-panel-mark svg {
  width: 27px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.career-panel-kicker {
  margin-bottom: 17px;
  color: #d8bc8c;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.career-hero-panel h2 {
  max-width: 430px;
  margin-bottom: 50px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(2.55rem, 4vw, 3.8rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.career-panel-facts {
  display: grid;
  gap: 14px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.career-panel-facts span,
.career-panel-facts strong {
  display: block;
}

.career-panel-facts span {
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.44);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.career-panel-facts strong {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
}

.career-intro {
  background: var(--paper);
}

.career-intro-grid {
  display: grid;
  gap: 100px;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.career-intro h2,
.job-listings h2,
.application-copy h2,
.career-next h2 {
  color: var(--forest-900);
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 4.8vw, 4.75rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.04;
}

.career-intro-copy {
  padding-top: 30px;
}

.career-intro-copy > p {
  color: var(--ink-700);
  line-height: 1.9;
}

.career-value-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 28px;
}

.career-value-row span {
  padding: 8px 11px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--forest-800);
  font-size: 0.68rem;
  font-weight: 700;
}

.job-listings {
  background: var(--cream-100);
}

.job-listings-intro {
  align-items: end;
  margin-bottom: 42px;
}

.job-listings-intro > p {
  max-width: 480px;
  color: var(--ink-700);
  line-height: 1.8;
}

.job-sample-notice {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
  padding: 17px 20px;
  border: 1px solid rgba(182, 138, 74, 0.3);
  border-radius: 12px;
  background: #fbf3df;
}

.job-sample-icon {
  display: grid;
  width: 23px;
  height: 23px;
  flex: 0 0 23px;
  place-items: center;
  border-radius: 50%;
  background: var(--gold-500);
  color: var(--white);
  font-size: 0.74rem;
  font-weight: 700;
}

.job-sample-notice strong {
  color: var(--forest-900);
  font-size: 0.82rem;
}

.job-sample-notice p {
  margin: 3px 0 0;
  color: var(--ink-700);
  font-size: 0.72rem;
  line-height: 1.55;
}

.job-card {
  overflow: hidden;
  border: 1px solid rgba(21, 57, 47, 0.12);
  border-radius: 28px;
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}

.job-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 42px 46px;
  border-bottom: 1px solid var(--border);
}

.job-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 13px;
}

.job-badges span {
  padding: 6px 9px;
  border-radius: 999px;
  background: var(--sage-100);
  color: var(--forest-800);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.job-badges span:first-child {
  background: #fbe9e2;
  color: var(--terracotta-600);
}

.job-card h3 {
  margin-bottom: 8px;
  color: var(--forest-900);
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4.2vw, 4.2rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1;
}

.job-location {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 0;
  color: var(--ink-500);
  font-size: 0.78rem;
}

.job-location svg {
  width: 15px;
  fill: none;
  stroke: var(--terracotta-500);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.job-card-body {
  padding: 44px 46px 34px;
}

.job-section {
  padding: 30px 0;
  border-bottom: 1px solid var(--border);
}

.job-section:first-child {
  padding-top: 0;
}

.job-section:last-child {
  border-bottom: 0;
}

.job-section h4 {
  margin-bottom: 13px;
  color: var(--forest-900);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.job-section p {
  color: var(--ink-700);
  line-height: 1.8;
}

.job-section a {
  color: var(--terracotta-600);
  font-weight: 700;
}

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

.job-duty-list li {
  position: relative;
  padding-left: 18px;
  color: var(--ink-700);
  line-height: 1.65;
}

.job-duty-list li::before {
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--terracotta-500);
  content: "";
}

.job-requirement-box {
  margin: 20px 0;
  padding: 25px 28px;
  border: 0;
  border-radius: 12px;
  background: var(--sage-100);
}

.job-requirement-box p {
  margin-bottom: 0;
}

.job-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 22px 46px;
  background: var(--forest-950);
  color: rgba(255, 255, 255, 0.68);
}

.job-card-footer p {
  margin-bottom: 0;
  font-size: 0.67rem;
  line-height: 1.6;
}

.job-posting-meta {
  flex: 0 0 auto;
  text-align: right;
}

.career-application {
  overflow: hidden;
  background: var(--forest-950);
  color: var(--white);
}

.application-grid {
  display: grid;
  align-items: center;
  gap: 76px;
  grid-template-columns: minmax(0, 0.85fr) minmax(520px, 1.15fr);
}

.application-copy h2 {
  max-width: 540px;
  margin-bottom: 22px;
  color: var(--white);
}

.application-copy > p:not(.eyebrow):not(.application-privacy-note) {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.84;
}

.application-contact-card {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 28px 0 20px;
  padding: 15px 17px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.05);
}

.application-contact-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: rgba(194, 103, 72, 0.17);
  color: #e4b08e;
}

.application-contact-icon svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.application-contact-card span,
.application-contact-card a {
  display: block;
}

.application-contact-card span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.application-contact-card a {
  color: var(--white);
  font-weight: 700;
}

.application-privacy-note {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.44);
  font-size: 0.68rem;
  line-height: 1.7;
}

.career-next {
  background: var(--paper);
}

.career-next-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding: 46px 52px;
  border: 1px solid rgba(21, 57, 47, 0.09);
  border-radius: 28px;
  background: var(--sage-100);
}

.career-next h2 {
  max-width: 680px;
  font-size: clamp(2.35rem, 4vw, 3.8rem);
}

/* Shared forms */
.career-form,
.contact-form {
  padding: 34px;
  border-radius: 22px;
  background: var(--paper);
  color: var(--ink-900);
  box-shadow: var(--shadow-lg);
}

.form-honeypot {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.form-row {
  display: grid;
  gap: 18px;
}

.form-row--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-field {
  display: block;
  margin-bottom: 17px;
}

.form-field > span {
  display: block;
  margin-bottom: 7px;
  color: var(--forest-900);
  font-size: 0.68rem;
  font-weight: 700;
}

.form-field em {
  color: var(--terracotta-600);
  font-style: normal;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(21, 57, 47, 0.18);
  border-radius: 10px;
  outline: 0;
  background: #fffefa;
  color: var(--ink-900);
  font: inherit;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.form-field input,
.form-field select {
  min-height: 47px;
  padding: 0 13px;
}

.form-field textarea {
  min-height: 150px;
  padding: 13px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--terracotta-500);
  box-shadow: 0 0 0 3px rgba(194, 103, 72, 0.13);
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 1px 0 20px;
  color: var(--ink-700);
  font-size: 0.68rem;
  line-height: 1.5;
}

.form-consent input {
  width: 15px;
  height: 15px;
  margin: 2px 0 0;
  accent-color: var(--terracotta-600);
}

.form-submit {
  width: 100%;
}

.form-required-note {
  margin: 12px 0 0;
  color: var(--ink-500);
  font-size: 0.62rem;
  text-align: center;
}

.form-required-note span {
  color: var(--terracotta-600);
}

.form-success-main {
  display: flex;
  min-height: calc(100vh - 240px);
  align-items: center;
  background:
    radial-gradient(circle at 12% 10%, rgba(194, 103, 72, 0.1), transparent 30%),
    radial-gradient(circle at 90% 12%, rgba(120, 148, 124, 0.18), transparent 36%),
    var(--cream-50);
}

.form-success {
  width: 100%;
}

.form-success-box {
  max-width: 760px;
  padding: 70px 58px;
  border: 1px solid var(--border);
  border-radius: 30px;
  background: var(--paper);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.form-success-icon {
  display: grid;
  width: 78px;
  height: 78px;
  margin: 0 auto 25px;
  place-items: center;
  border-radius: 50%;
  background: var(--sage-100);
  color: var(--forest-800);
}

.form-success-icon svg {
  width: 52px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.form-success-box h1 {
  margin-bottom: 19px;
  color: var(--forest-900);
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
}

.form-success-box > p:not(.eyebrow) {
  max-width: 590px;
  margin-right: auto;
  margin-left: auto;
  color: var(--ink-700);
  line-height: 1.8;
}

.form-success-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.footer-bottom--standalone {
  min-height: 105px;
  align-items: center;
  padding-top: 0;
  border-top: 0;
}

/* Contact page */
.contact-hero {
  overflow: hidden;
  padding-top: 70px;
  background:
    radial-gradient(circle at 5% 12%, rgba(194, 103, 72, 0.11), transparent 28%),
    radial-gradient(circle at 95% 12%, rgba(120, 148, 124, 0.19), transparent 34%),
    var(--cream-50);
}

.contact-hero-grid {
  display: grid;
  align-items: center;
  gap: 84px;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.72fr);
}

.contact-hero-copy h1 {
  max-width: 770px;
  margin-bottom: 26px;
  color: var(--forest-900);
  font-family: var(--font-display);
  font-size: clamp(3.7rem, 6.7vw, 6.4rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.97;
}

.contact-hero-lead {
  max-width: 670px;
  color: var(--ink-700);
  font-size: 1.05rem;
  line-height: 1.84;
}

.contact-details-card {
  position: relative;
  overflow: hidden;
  padding: 44px 40px;
  border-radius: 30px;
  background: var(--forest-900);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.contact-details-card::before {
  position: absolute;
  top: -90px;
  right: -85px;
  width: 230px;
  height: 230px;
  border: 26px solid rgba(255, 255, 255, 0.04);
  border-radius: 50%;
  content: "";
}

.contact-details-kicker {
  margin-bottom: 13px;
  color: #d8bc8c;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-details-card h2 {
  max-width: 400px;
  margin-bottom: 34px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(2.45rem, 4vw, 3.7rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.06;
}

.contact-detail-list {
  display: grid;
}

.contact-detail-item {
  display: grid;
  align-items: center;
  gap: 15px;
  padding: 19px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  grid-template-columns: 44px 1fr;
}

.contact-detail-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  color: #dfb78f;
}

.contact-detail-icon svg {
  width: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.contact-detail-item span:not(.contact-detail-icon),
.contact-detail-item address,
.contact-detail-item a {
  display: block;
}

.contact-detail-item span:not(.contact-detail-icon) {
  margin-bottom: 3px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.contact-detail-item address,
.contact-detail-item a {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.13rem;
  font-style: normal;
  line-height: 1.4;
}

.contact-main {
  background: var(--paper);
}

.contact-main-grid {
  display: grid;
  align-items: start;
  gap: 90px;
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
}

.contact-form-intro {
  position: sticky;
  top: 150px;
}

.contact-form-intro h2 {
  margin-bottom: 21px;
  color: var(--forest-900);
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.03;
}

.contact-form-intro > p:not(.eyebrow) {
  max-width: 500px;
  color: var(--ink-700);
  line-height: 1.85;
}

.contact-response-note {
  display: grid;
  gap: 13px;
  max-width: 500px;
  margin-top: 28px;
  padding: 17px 18px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--sage-100);
  grid-template-columns: 39px 1fr;
}

.contact-response-note > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: var(--paper);
  color: var(--forest-800);
}

.contact-response-note svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.contact-response-note p {
  margin-bottom: 0;
  color: var(--ink-700);
  font-size: 0.73rem;
  line-height: 1.55;
}

.contact-response-note strong {
  color: var(--forest-900);
}

.contact-form {
  border: 1px solid rgba(21, 57, 47, 0.1);
  box-shadow: var(--shadow-sm);
}

@media (max-width: 1020px) {
  .about-hero-grid,
  .career-hero-grid,
  .contact-hero-grid {
    gap: 48px;
  }

  .about-intro-grid,
  .career-intro-grid,
  .about-process-grid,
  .application-grid,
  .contact-main-grid {
    gap: 58px;
  }

  .application-grid,
  .contact-main-grid {
    grid-template-columns: minmax(0, 0.8fr) minmax(470px, 1.2fr);
  }
}

@media (max-width: 820px) {
  .about-hero-grid,
  .career-hero-grid,
  .contact-hero-grid,
  .about-intro-grid,
  .career-intro-grid,
  .about-process-grid,
  .application-grid,
  .contact-main-grid {
    grid-template-columns: 1fr;
  }

  .about-hero-visual {
    min-height: 590px;
    margin-top: 12px;
  }

  .about-intro-copy,
  .career-intro-copy {
    padding-top: 0;
  }

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

  .principle-card {
    min-height: 300px;
  }

  .principle-icon {
    margin-bottom: 45px;
  }

  .about-mission-grid {
    gap: 40px;
    grid-template-columns: 1fr;
  }

  .about-mission-label {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .career-hero-panel {
    min-height: 470px;
  }

  .application-grid {
    align-items: start;
  }

  .contact-form-intro {
    position: static;
  }

  .contact-details-card {
    max-width: 650px;
  }
}

@media (max-width: 600px) {
  .about-hero,
  .career-hero,
  .contact-hero {
    padding-top: 48px;
  }

  .about-hero-copy h1,
  .career-hero-copy h1,
  .contact-hero-copy h1 {
    font-size: clamp(3rem, 14.5vw, 4.25rem);
  }

  .about-hero-actions,
  .career-hero-actions,
  .form-success-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .about-hero-visual {
    min-height: 470px;
  }

  .about-hero-image {
    inset: 0 8px 30px;
    border-radius: 120px 120px 22px 22px;
  }

  .about-experience-card {
    top: 20px;
    left: 0;
    width: 125px;
    padding: 15px;
  }

  .about-experience-card strong {
    font-size: 2.25rem;
  }

  .about-location-card {
    right: 0;
    bottom: 22px;
    max-width: 245px;
  }

  .about-fact-row,
  .career-panel-facts {
    gap: 20px;
    grid-template-columns: 1fr;
  }

  .principle-card {
    padding: 30px 26px;
  }

  .about-process-grid {
    gap: 52px;
  }

  .process-list li {
    grid-template-columns: 34px 1fr;
  }

  .mission-seal {
    width: 105px;
    height: 105px;
  }

  .mission-seal svg {
    width: 72px;
  }

  .career-hero-panel,
  .contact-details-card {
    min-height: auto;
    padding: 36px 28px;
    border-radius: 25px;
  }

  .career-panel-mark {
    margin-bottom: 45px;
  }

  .career-panel-facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .job-card-header,
  .job-card-footer,
  .career-next-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .job-card-header,
  .job-card-body,
  .job-card-footer {
    padding-right: 25px;
    padding-left: 25px;
  }

  .job-apply-button {
    width: 100%;
  }

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

  .job-posting-meta {
    text-align: left;
  }

  .career-form,
  .contact-form {
    padding: 26px 20px;
    border-radius: 18px;
  }

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

  .career-next-box {
    padding: 34px 26px;
  }

  .contact-main-grid {
    gap: 46px;
  }

  .contact-details-card h2 {
    font-size: 2.65rem;
  }

  .contact-detail-item address,
  .contact-detail-item a {
    font-size: 1rem;
  }

  .form-success-box {
    padding: 50px 24px;
    border-radius: 24px;
  }
}
