:root {
  --ink: #17352d;
  --ink-soft: #49675f;
  --pine-950: #0b2922;
  --pine-900: #10372f;
  --pine-800: #174a3e;
  --pine-700: #1f5d4d;
  --pine-500: #4f8b73;
  --sage-100: #eaf2ed;
  --sage-50: #f5f8f6;
  --cream: #fbfaf5;
  --snow: #ffffff;
  --gold: #d7a44a;
  --gold-light: #f0ce82;
  --violet: #6e5e9a;
  --line: rgba(23, 53, 45, 0.14);
  --shadow-sm: 0 10px 30px rgba(19, 52, 43, 0.08);
  --shadow-md: 0 24px 70px rgba(12, 44, 36, 0.13);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 34px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body,
button,
a,
input,
textarea {
  font-family: "DM Sans", Arial, sans-serif;
}

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

a {
  color: inherit;
}

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

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

h1,
h2,
h3,
.brand-copy,
.button {
  font-family: "Manrope", "DM Sans", sans-serif;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(3.2rem, 7vw, 6.65rem);
  line-height: 0.96;
  letter-spacing: -0.065em;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 4.1vw, 3.65rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

h3 {
  line-height: 1.25;
  letter-spacing: -0.025em;
}

p:last-child {
  margin-bottom: 0;
}

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 9999;
  padding: 10px 14px;
  color: #fff;
  background: var(--pine-950);
  border-radius: 8px;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

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

.legal-strip {
  color: rgba(255, 255, 255, 0.82);
  background: var(--pine-950);
  font-size: 0.78rem;
}

.legal-strip__inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
}

.legal-strip p {
  margin: 0;
}

.legal-strip__badge {
  display: inline-flex;
  padding: 2px 7px;
  color: var(--pine-950);
  background: var(--gold-light);
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 250, 245, 0.93);
  border-bottom: 1px solid rgba(23, 53, 45, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  gap: 34px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: var(--pine-700);
  background: var(--sage-100);
  border-radius: 16px;
}

.brand-mark svg {
  width: 40px;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.04;
  letter-spacing: -0.025em;
}

.brand-copy strong {
  font-size: 1.05rem;
  font-weight: 800;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--ink-soft);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.desktop-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 29px;
}

.desktop-nav a {
  position: relative;
  color: var(--ink-soft);
  font-size: 0.91rem;
  font-weight: 700;
  text-decoration: none;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: var(--gold);
  transition: right 0.25s ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--ink);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  right: 0;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  color: #fff;
  background: var(--pine-700);
  border: 1px solid transparent;
  border-radius: 999px;
  box-shadow: 0 9px 20px rgba(31, 93, 77, 0.16);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition: transform 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.button:hover,
.button:focus-visible {
  background: var(--pine-900);
  box-shadow: 0 13px 26px rgba(16, 55, 47, 0.22);
  transform: translateY(-2px);
}

.button--small {
  min-height: 44px;
  padding: 11px 19px;
  font-size: 0.82rem;
}

.button--light {
  color: var(--pine-950);
  background: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
}

.button--light:hover,
.button--light:focus-visible {
  color: var(--pine-950);
  background: var(--gold-light);
}

.mobile-menu {
  display: none;
  margin-left: auto;
  position: relative;
}

.mobile-menu summary {
  width: 44px;
  height: 44px;
  display: grid;
  align-content: center;
  gap: 5px;
  padding: 10px;
  list-style: none;
  cursor: pointer;
  background: var(--sage-100);
  border-radius: 12px;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu summary span {
  width: 22px;
  height: 2px;
  background: var(--pine-900);
  border-radius: 999px;
}

.mobile-menu nav {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  width: 240px;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-md);
}

.mobile-menu nav a {
  display: block;
  padding: 11px 12px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
}

.mobile-menu nav a:hover {
  background: var(--sage-100);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 82px 0 90px;
  background:
    linear-gradient(115deg, rgba(245, 248, 246, 0.96), rgba(251, 250, 245, 0.88)),
    radial-gradient(circle at 12% 10%, rgba(79, 139, 115, 0.15), transparent 35%);
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(23, 53, 45, 0.16), transparent);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  align-items: center;
  gap: 78px;
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--pine-700);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 28px;
  height: 2px;
  background: var(--gold);
}

.eyebrow--dark {
  color: var(--pine-700);
}

.hero-lead {
  max-width: 660px;
  margin-bottom: 34px;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px;
}

.text-link {
  color: var(--pine-800);
  font-weight: 800;
  text-decoration: none;
}

.text-link span {
  display: inline-block;
  margin-left: 8px;
  transition: transform 0.2s ease;
}

.text-link:hover span {
  transform: translateX(5px);
}

.hero-points {
  max-width: 650px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 52px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.hero-points div {
  display: grid;
  gap: 4px;
}

.hero-points strong {
  color: var(--pine-700);
  font-family: "Manrope", sans-serif;
  font-size: 1.08rem;
}

.hero-points span {
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.hero-art {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(180deg, #173d46 0%, #244e4d 48%, #102f29 100%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 46% 46% 30px 30px;
  box-shadow: var(--shadow-md);
}

.hero-art::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 76% 18%, rgba(240, 206, 130, 0.34), transparent 16%),
    radial-gradient(circle at 35% 8%, rgba(192, 221, 204, 0.18), transparent 35%);
}

.sun-disc {
  position: absolute;
  top: 78px;
  right: 78px;
  width: 95px;
  height: 95px;
  background: linear-gradient(145deg, #f7df9c, #d69f3d);
  border-radius: 50%;
  box-shadow: 0 0 50px rgba(240, 206, 130, 0.4);
}

.aurora {
  position: absolute;
  z-index: 0;
  width: 430px;
  height: 150px;
  opacity: 0.26;
  border-radius: 50%;
  filter: blur(28px);
  transform: rotate(-15deg);
}

.aurora--one {
  top: 30px;
  left: -90px;
  background: #8eddbf;
}

.aurora--two {
  top: 140px;
  right: -180px;
  background: #a28ee1;
}

.mountain {
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: 0;
  clip-path: polygon(0 100%, 0 74%, 16% 53%, 27% 67%, 47% 24%, 61% 55%, 73% 37%, 100% 76%, 100% 100%);
}

.mountain--back {
  height: 70%;
  bottom: 90px;
  opacity: 0.55;
  background: #71928e;
}

.mountain--mid {
  height: 58%;
  bottom: 55px;
  background: #365e58;
  clip-path: polygon(0 100%, 0 74%, 18% 58%, 31% 73%, 51% 26%, 64% 59%, 76% 43%, 100% 72%, 100% 100%);
}

.mountain--front {
  height: 44%;
  background: #0d3028;
  clip-path: polygon(0 100%, 0 77%, 18% 53%, 32% 72%, 48% 42%, 61% 66%, 77% 39%, 100% 67%, 100% 100%);
}

.seed-emblem {
  position: absolute;
  left: 50%;
  top: 44%;
  z-index: 4;
  width: 162px;
  height: 162px;
  transform: translate(-50%, -50%);
}

.seed-emblem::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 50%;
  box-shadow: inset 0 0 45px rgba(255, 255, 255, 0.07), 0 20px 50px rgba(2, 20, 16, 0.25);
  backdrop-filter: blur(8px);
}

.seed-emblem__seed {
  position: absolute;
  left: 50%;
  top: 49%;
  width: 44px;
  height: 70px;
  background: linear-gradient(140deg, #e2bd6b, #8f612c);
  border-radius: 70% 30% 65% 35% / 60% 38% 62% 40%;
  box-shadow: inset -7px -7px 12px rgba(83, 47, 16, 0.25), 0 12px 24px rgba(0, 0, 0, 0.23);
  transform: translate(-50%, -50%) rotate(30deg);
}

.seed-emblem__seed::after {
  content: "";
  position: absolute;
  left: 17px;
  top: 7px;
  width: 2px;
  height: 55px;
  background: rgba(83, 47, 16, 0.45);
  border-radius: 999px;
  transform: rotate(-12deg);
}

.seed-emblem__leaf {
  position: absolute;
  top: 42px;
  width: 52px;
  height: 31px;
  background: #79ad84;
}

.seed-emblem__leaf--left {
  left: 27px;
  border-radius: 90% 8% 90% 8%;
  transform: rotate(18deg);
}

.seed-emblem__leaf--right {
  right: 24px;
  border-radius: 8% 90% 8% 90%;
  transform: rotate(-25deg);
}

.hero-art__caption {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 5;
  padding: 17px 20px;
  color: #fff;
  background: rgba(8, 41, 34, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  backdrop-filter: blur(12px);
}

.hero-art__caption small,
.hero-art__caption strong {
  display: block;
}

.hero-art__caption small {
  margin-bottom: 3px;
  color: var(--gold-light);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-art__caption strong {
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  pointer-events: none;
}

.hero-glow--one {
  left: -180px;
  top: 90px;
  width: 340px;
  height: 340px;
  background: rgba(79, 139, 115, 0.13);
}

.hero-glow--two {
  right: -80px;
  bottom: -150px;
  width: 420px;
  height: 420px;
  background: rgba(215, 164, 74, 0.1);
}

.trust-band {
  color: #fff;
  background: var(--pine-900);
}

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

.trust-item {
  min-height: 104px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-item:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-icon {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  flex: 0 0 35px;
  color: var(--gold-light);
  border: 1px solid rgba(240, 206, 130, 0.34);
  border-radius: 50%;
}

.trust-item div {
  display: grid;
  gap: 2px;
}

.trust-item strong {
  font-family: "Manrope", sans-serif;
  font-size: 0.9rem;
}

.trust-item small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.75rem;
}

.section {
  padding: 108px 0;
}

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

.section-heading {
  margin-bottom: 52px;
}

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.75fr);
  align-items: end;
  gap: 72px;
}

.section-heading--split h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.section-heading--split > p {
  color: var(--ink-soft);
  line-height: 1.8;
}

.section-heading--center {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.section-heading--center .eyebrow {
  justify-content: center;
}

.section-heading--center > p:last-child {
  max-width: 650px;
  margin-inline: auto;
  color: var(--ink-soft);
}

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

.product-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.product-card__visual {
  position: relative;
  min-height: 245px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.product-card__visual::before,
.product-card__visual::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.product-card__visual::before {
  width: 210px;
  height: 210px;
  background: rgba(255, 255, 255, 0.12);
}

.product-card__visual::after {
  width: 130px;
  height: 130px;
  border: 1px solid rgba(255, 255, 255, 0.26);
}

.product-card--violet .product-card__visual {
  background: linear-gradient(145deg, #675b91, #30294f);
}

.product-card--gold .product-card__visual {
  background: linear-gradient(145deg, #bf9347, #644a22);
}

.product-card--green .product-card__visual {
  background: linear-gradient(145deg, #4f8065, #244332);
}

.product-card__tag {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 4;
  padding: 6px 10px;
  color: #fff;
  background: rgba(7, 28, 23, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.seed-cluster {
  position: relative;
  z-index: 3;
  width: 150px;
  height: 115px;
}

.seed-cluster i {
  position: absolute;
  width: 40px;
  height: 58px;
  background: linear-gradient(145deg, #e6c77c, #92642f);
  border-radius: 65% 35% 65% 35% / 60% 38% 62% 40%;
  box-shadow: inset -6px -7px 10px rgba(80, 44, 16, 0.27), 0 10px 16px rgba(0, 0, 0, 0.2);
}

.seed-cluster i::after {
  content: "";
  position: absolute;
  left: 16px;
  top: 7px;
  width: 2px;
  height: 43px;
  background: rgba(82, 49, 20, 0.45);
  border-radius: 999px;
  transform: rotate(-10deg);
}

.seed-cluster i:nth-child(1) { left: 10px; top: 38px; transform: rotate(-45deg); }
.seed-cluster i:nth-child(2) { left: 42px; top: 4px; transform: rotate(-15deg) scale(1.1); }
.seed-cluster i:nth-child(3) { right: 21px; top: 18px; transform: rotate(26deg); }
.seed-cluster i:nth-child(4) { left: 57px; bottom: 0; transform: rotate(22deg) scale(.94); }
.seed-cluster i:nth-child(5) { right: 1px; bottom: 2px; transform: rotate(55deg) scale(.82); }

.product-card__body {
  padding: 28px 28px 30px;
}

.product-card__code {
  margin-bottom: 8px;
  color: var(--pine-500);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.product-card h3 {
  margin-bottom: 12px;
  font-size: 1.45rem;
}

.product-card__body > p:not(.product-card__code) {
  min-height: 78px;
  margin-bottom: 20px;
  color: var(--ink-soft);
  font-size: 0.91rem;
}

.product-card__body a {
  color: var(--pine-700);
  font-size: 0.86rem;
  font-weight: 800;
  text-decoration: none;
}

.product-card__body a span {
  display: inline-block;
  margin-left: 7px;
  transition: transform 0.2s ease;
}

.product-card__body a:hover span {
  transform: translateX(4px);
}

.notice-card {
  margin-top: 28px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  color: #5d532f;
  background: #fff8e6;
  border: 1px solid rgba(181, 139, 45, 0.22);
  border-radius: 14px;
  font-size: 0.82rem;
}

.notice-card__icon {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  flex: 0 0 25px;
  color: #fff;
  background: var(--gold);
  border-radius: 50%;
  font-weight: 800;
}

.notice-card p {
  margin: 0;
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1fr);
  align-items: center;
  gap: 90px;
}

.story-visual__frame {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  background: #214b46;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.story-sky {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 18%, rgba(241, 210, 137, 0.75) 0 7%, transparent 7.5%),
    linear-gradient(180deg, #76979a 0%, #d2d8c8 52%, #7f9987 100%);
}

.story-range {
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: 0;
  clip-path: polygon(0 100%, 0 78%, 17% 53%, 31% 73%, 49% 30%, 62% 63%, 78% 42%, 100% 76%, 100% 100%);
}

.story-range--one {
  height: 67%;
  bottom: 88px;
  opacity: 0.8;
  background: #718985;
}

.story-range--two {
  height: 52%;
  bottom: 30px;
  background: #3d665a;
}

.story-forest {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 185px;
  background:
    linear-gradient(120deg, transparent 47%, #173c33 48% 54%, transparent 55%) 0 12px / 45px 90px repeat-x,
    linear-gradient(60deg, transparent 47%, #173c33 48% 54%, transparent 55%) 20px 5px / 45px 90px repeat-x,
    linear-gradient(180deg, transparent 0 70%, #173c33 71% 100%);
}

.story-badge {
  position: absolute;
  left: 26px;
  bottom: 26px;
  padding: 15px 18px;
  color: #fff;
  background: rgba(9, 43, 35, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  backdrop-filter: blur(10px);
}

.story-badge strong,
.story-badge span {
  display: block;
}

.story-badge strong {
  font-family: "Manrope", sans-serif;
  font-size: 1.05rem;
}

.story-badge span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.72rem;
}

.story-copy > p:not(.eyebrow) {
  color: var(--ink-soft);
}

.story-list {
  display: grid;
  gap: 12px;
  margin-top: 32px;
}

.story-list > div {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 14px 0;
  border-top: 1px solid rgba(23, 53, 45, 0.13);
}

.story-list span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: 0 0 38px;
  color: var(--pine-800);
  background: rgba(255, 255, 255, 0.68);
  border-radius: 50%;
  font-family: "Manrope", sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
}

.story-list p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.91rem;
}

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

.value-card {
  min-height: 290px;
  padding: 30px 25px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
}

.value-card__number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 48px;
  color: var(--pine-700);
  background: var(--sage-100);
  border-radius: 50%;
  font-family: "Manrope", sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
}

.value-card h3 {
  margin-bottom: 13px;
  font-size: 1.08rem;
}

.value-card p {
  color: var(--ink-soft);
  font-size: 0.87rem;
}

.section--journal {
  color: #fff;
  background:
    radial-gradient(circle at 12% 18%, rgba(215, 164, 74, 0.16), transparent 22%),
    linear-gradient(135deg, var(--pine-950), #17483d);
}

.section--journal .eyebrow {
  color: var(--gold-light);
}

.journal-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(430px, 1.22fr);
  gap: 90px;
}

.journal-intro p:not(.eyebrow) {
  max-width: 510px;
  margin-bottom: 29px;
  color: rgba(255, 255, 255, 0.68);
}

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

.article-list article {
  display: grid;
  grid-template-columns: 95px 1fr;
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.article-list article > span {
  color: var(--gold-light);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.article-list h3 {
  margin-bottom: 8px;
  font-size: 1.18rem;
}

.article-list p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.87rem;
}

.faq-section {
  background: #fff;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: 90px;
}

.faq-intro {
  color: var(--ink-soft);
}

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

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

.faq-list summary {
  position: relative;
  padding: 23px 45px 23px 0;
  list-style: none;
  cursor: pointer;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 50%;
  color: var(--pine-700);
  font-size: 1.35rem;
  transform: translateY(-50%);
}

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

.faq-list details p {
  max-width: 710px;
  padding: 0 35px 22px 0;
  color: var(--ink-soft);
  font-size: 0.91rem;
}

.cta-section {
  padding: 0 0 108px;
  background: #fff;
}

.cta-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  align-items: center;
  gap: 60px;
  padding: 58px 64px;
  color: #fff;
  background:
    radial-gradient(circle at 92% 15%, rgba(240, 206, 130, 0.2), transparent 28%),
    linear-gradient(135deg, #10372f, #1f5d4d);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.cta-card::before {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -90px;
  width: 250px;
  height: 250px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  box-shadow: 0 0 0 35px rgba(255, 255, 255, 0.03), 0 0 0 70px rgba(255, 255, 255, 0.025);
}

.cta-card .eyebrow {
  color: var(--gold-light);
}

.cta-card h2 {
  max-width: 700px;
  margin-bottom: 15px;
  font-size: clamp(1.9rem, 3.2vw, 3.1rem);
}

.cta-card__copy > p:last-child {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.68);
}

.cta-card__actions {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: start;
  gap: 18px;
}

.cta-phone {
  display: grid;
  text-decoration: none;
}

.cta-phone small {
  color: rgba(255, 255, 255, 0.58);
}

.cta-phone strong {
  font-family: "Manrope", sans-serif;
  font-size: 1.22rem;
}

.site-footer {
  color: #fff;
  background: #09251f;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.55fr 0.65fr 1fr 1.15fr;
  gap: 52px;
  padding-top: 76px;
  padding-bottom: 68px;
}

.brand--footer .brand-mark {
  color: var(--gold-light);
  background: rgba(255, 255, 255, 0.08);
}

.brand--footer .brand-copy small {
  color: rgba(255, 255, 255, 0.52);
}

.footer-brand > p {
  max-width: 300px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.86rem;
}

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

.footer-column h3 {
  margin-bottom: 10px;
  color: var(--gold-light);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-column a,
.footer-column p {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.82rem;
  text-decoration: none;
}

.footer-column a:hover {
  color: #fff;
}

.footer-column--legal p {
  line-height: 1.75;
}

.footer-bottom {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p,
.footer-bottom a {
  margin: 0;
  color: rgba(255, 255, 255, 0.47);
  font-size: 0.74rem;
  text-decoration: none;
}

.footer-bottom div {
  display: flex;
  gap: 22px;
}

.footer-bottom a:hover {
  color: #fff;
}

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

@media (max-width: 1100px) {
  .desktop-nav {
    gap: 19px;
  }

  .hero-grid {
    gap: 46px;
  }

  .trust-item {
    padding-inline: 18px;
  }

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

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

  .footer-column--legal {
    grid-column: 1 / -1;
    max-width: 760px;
  }
}

@media (max-width: 900px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .hero {
    padding-top: 62px;
  }

  .hero-grid,
  .story-grid,
  .journal-grid,
  .faq-grid,
  .cta-card {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 55px;
  }

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

  .hero-art {
    min-height: 500px;
    max-width: 650px;
    width: 100%;
    margin-inline: auto;
  }

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

  .trust-item:nth-child(2) {
    border-right: none;
  }

  .trust-item:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .section-heading--split {
    grid-template-columns: 1fr;
    gap: 25px;
  }

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

  .product-card:last-child {
    grid-column: 1 / -1;
    max-width: calc(50% - 12px);
  }

  .story-grid {
    gap: 52px;
  }

  .story-visual {
    order: 2;
  }

  .story-visual__frame {
    max-width: 650px;
    min-height: 500px;
  }

  .journal-grid,
  .faq-grid {
    gap: 48px;
  }

  .cta-card {
    gap: 32px;
  }

  .footer-grid {
    grid-template-columns: 1.3fr 0.7fr 1fr;
    gap: 35px;
  }
}

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

  .legal-strip__inner {
    padding-block: 7px;
    align-items: flex-start;
    text-align: left;
  }

  .header-inner {
    min-height: 72px;
  }

  .brand-mark {
    width: 45px;
    height: 45px;
    border-radius: 13px;
  }

  .brand-mark svg {
    width: 35px;
  }

  .brand-copy strong {
    font-size: 0.96rem;
  }

  .brand-copy small {
    font-size: 0.64rem;
  }

  .hero {
    padding: 50px 0 65px;
  }

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

  h2 {
    font-size: clamp(2rem, 10vw, 2.75rem);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .hero-points {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .hero-points div {
    grid-template-columns: 60px 1fr;
    align-items: center;
  }

  .hero-art {
    min-height: 425px;
    border-radius: 36% 36% 24px 24px;
  }

  .sun-disc {
    top: 55px;
    right: 42px;
    width: 74px;
    height: 74px;
  }

  .seed-emblem {
    width: 138px;
    height: 138px;
  }

  .hero-art__caption {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .trust-grid,
  .card-grid,
  .value-grid {
    grid-template-columns: 1fr;
  }

  .trust-item,
  .trust-item:first-child,
  .trust-item:nth-child(2) {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .trust-item:last-child {
    border-bottom: none;
  }

  .section {
    padding: 78px 0;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .product-card:last-child {
    grid-column: auto;
    max-width: none;
  }

  .product-card__body > p:not(.product-card__code) {
    min-height: auto;
  }

  .story-visual__frame {
    min-height: 420px;
  }

  .value-card {
    min-height: auto;
  }

  .value-card__number {
    margin-bottom: 28px;
  }

  .article-list article {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .cta-section {
    padding-bottom: 78px;
  }

  .cta-card {
    padding: 40px 27px;
    border-radius: 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    padding-top: 60px;
    padding-bottom: 48px;
  }

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

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

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