@font-face {
  font-family: "Pretendard";
  src: local("Pretendard Variable"), local("Pretendard");
  font-display: swap;
  font-weight: 100 900;
}

:root {
  --forest-950: #10261d;
  --forest-900: #173a2a;
  --forest-800: #22533b;
  --forest-700: #2e684a;
  --brand-500: #3b7a57;
  --brand-600: #326a4b;
  --sage-300: #9bb8a6;
  --mist-100: #edf4ef;
  --accent-300: #d9c7a3;
  --accent-400: #cdb587;
  --sand-100: #f3ebdd;
  --ink-900: #1f2937;
  --ink-700: #46524d;
  --canvas: #f8faf9;
  --white: #fff;
  --danger: #a43f39;
  --success: #216640;
  --line: rgba(31, 41, 55, .16);
  --shadow: 0 18px 55px rgba(16, 38, 29, .12);
  --radius-sm: 6px;
  --radius: 14px;
  --radius-lg: 24px;
  --container: 1200px;
  --section: clamp(4.5rem, 8vw, 8rem);
}

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

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

body {
  margin: 0;
  color: var(--ink-900);
  background: var(--canvas);
  font-family: "Pretendard", "Noto Sans KR", system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  overflow-x: clip;
  word-break: keep-all;
}

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

img {
  object-fit: cover;
}

a {
  color: inherit;
  text-underline-offset: .18em;
}

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

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

:focus-visible {
  outline: 3px solid #f5bf4f;
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: .75rem;
  left: .75rem;
  padding: .8rem 1rem;
  color: var(--white);
  background: var(--forest-950);
  transform: translateY(-160%);
}

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

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

.narrow {
  max-width: 850px;
}

.notice {
  position: relative;
  z-index: 70;
  padding: .48rem 0;
  color: #fff;
  background: var(--forest-950);
  font-size: .78rem;
  line-height: 1.45;
  text-align: center;
}

.notice-short {
  display: none;
}

.site-header {
  position: relative;
  z-index: 60;
  height: 82px;
  border-bottom: 1px solid rgba(31, 41, 55, .08);
  background: rgba(248, 250, 249, .94);
  backdrop-filter: blur(16px);
}

.site-header.is-sticky {
  position: sticky;
  top: 0;
  box-shadow: 0 8px 24px rgba(16, 38, 29, .08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  color: var(--forest-900);
  text-decoration: none;
}

.brand img {
  border-radius: 13px;
}

.brand b,
.brand small {
  display: block;
}

.brand b {
  font-size: 1.08rem;
  letter-spacing: -.03em;
}

.brand small {
  margin-top: -.15rem;
  color: var(--brand-600);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
}

.site-nav,
.site-nav ul {
  display: flex;
  align-items: center;
}

.site-nav {
  gap: 1.35rem;
}

.site-nav ul {
  gap: 1.5rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-nav ul a {
  display: grid;
  min-height: 44px;
  place-items: center;
  font-size: .92rem;
  font-weight: 650;
  text-decoration: none;
}

.site-nav ul a:hover {
  color: var(--brand-600);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 12px;
  border: 0;
  background: transparent;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: var(--forest-900);
  transition: transform .2s ease, opacity .2s ease;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: .72rem 1.25rem;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-weight: 750;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}

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

.button-sm {
  min-height: 44px;
  padding-inline: 1rem;
  color: var(--white);
  background: var(--brand-500);
}

.button-primary {
  color: var(--white);
  background: var(--forest-900);
}

.button-primary:hover {
  background: var(--forest-700);
}

.button-accent {
  color: var(--forest-950);
  background: var(--accent-300);
}

.button-accent:hover {
  background: #ead9b8;
}

.button-outline {
  border-color: var(--forest-700);
  color: var(--forest-900);
  background: transparent;
}

.button-outline:hover {
  color: var(--white);
  background: var(--forest-700);
}

.button-ghost-light {
  border-color: rgba(255, 255, 255, .65);
  color: var(--white);
  background: rgba(255, 255, 255, .06);
}

.button-ghost-light:hover {
  background: rgba(255, 255, 255, .16);
}

.button-wide {
  width: 100%;
}

.hero {
  position: relative;
  min-height: min(780px, calc(100svh - 112px));
  color: var(--white);
  background: var(--forest-900);
  isolation: isolate;
}

.hero-picture {
  position: absolute;
  z-index: -3;
  inset: 0 0 0 43%;
  overflow: hidden;
}

.hero-picture img {
  width: 100%;
  height: 100%;
}

.hero-overlay {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(90deg, var(--forest-950) 0%, #173a2af5 40%, #173a2aad 57%, #173a2a22 82%),
    linear-gradient(0deg, #10261d88, transparent 45%);
}

.hero-lines {
  position: absolute;
  z-index: -1;
  inset: auto auto 4% -10%;
  width: 58%;
  height: 42%;
  opacity: .28;
  background:
    url("/assets/icons/brand-lines.svg") center / contain no-repeat;
}

.hero-content {
  display: flex;
  min-height: inherit;
  max-width: var(--container);
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-block: clamp(5rem, 9vw, 8rem);
}

.eyebrow {
  margin: 0 0 .8rem;
  color: var(--brand-600);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: var(--accent-300);
}

.hero h1,
.page-hero h1,
.landing-hero h1 {
  max-width: 800px;
  margin: 0;
  font-size: clamp(2.8rem, 6.4vw, 6.25rem);
  font-weight: 760;
  letter-spacing: -.065em;
  line-height: .99;
}

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

.hero-copy {
  max-width: 610px;
  margin: 1.65rem 0 1.2rem;
  color: rgba(255, 255, 255, .83);
  font-size: clamp(1.02rem, 1.6vw, 1.22rem);
}

.hero-policy {
  margin: 0 0 1.25rem;
  color: var(--accent-300);
  font-weight: 750;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem 1.4rem;
  padding: 0;
  margin: 1.6rem 0 0;
  color: rgba(255, 255, 255, .74);
  font-size: .86rem;
  list-style: none;
}

.hero-trust li::before {
  margin-right: .5rem;
  color: var(--accent-300);
  content: "—";
}

.hero-disclosure {
  display: block;
  margin-top: 1rem;
  color: rgba(255, 255, 255, .58);
  font-size: .68rem;
}

.policy-band {
  color: var(--forest-950);
  background: var(--accent-300);
}

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

.policy-band .container > div {
  display: grid;
  min-height: 116px;
  grid-template-columns: 40px 1fr;
  align-content: center;
  padding: 1rem clamp(.8rem, 2vw, 1.8rem);
  border-right: 1px solid rgba(16, 38, 29, .2);
}

.policy-band .container > div:last-child {
  border-right: 0;
}

.policy-band .icon {
  width: 30px;
  height: 30px;
  grid-row: 1 / 3;
  margin-top: .2rem;
}

.policy-band b,
.policy-band span {
  display: block;
}

.policy-band b {
  font-size: .88rem;
}

.policy-band span {
  font-size: .78rem;
}

.section {
  padding-block: var(--section);
}

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

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

.section-dark {
  color: var(--white);
  background:
    radial-gradient(circle at 80% -10%, rgba(155, 184, 166, .18), transparent 40%),
    var(--forest-950);
}

.section-dark .eyebrow,
.section-dark .text-link {
  color: var(--accent-300);
}

.section-dark .section-heading > p:last-child {
  color: rgba(255, 255, 255, .7);
}

.section-heading {
  max-width: 760px;
  margin-bottom: clamp(2.1rem, 4vw, 3.8rem);
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.85rem);
  letter-spacing: -.055em;
  line-height: 1.12;
}

.section-heading > p:last-child:not(.eyebrow) {
  max-width: 700px;
  margin: 1rem 0 0;
  color: var(--ink-700);
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(2rem, 8vw, 8rem);
}

.editorial-grid .section-heading {
  margin: 0;
}

.editorial-copy {
  padding-top: 2rem;
  font-size: 1.08rem;
}

.editorial-copy p:first-child::first-letter {
  float: left;
  margin: .08rem .5rem 0 0;
  color: var(--brand-600);
  font-family: Georgia, serif;
  font-size: 3.8rem;
  line-height: .85;
}

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

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

.product-card {
  overflow: clip;
  border: 1px solid rgba(46, 104, 74, .16);
  background: var(--white);
}

.card-media {
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--sage-300);
}

.card-media img {
  width: 100%;
  height: 100%;
  transition: transform .5s ease;
}

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

.product-card-body {
  padding: clamp(1.25rem, 3vw, 2rem);
}

.product-card h3 {
  margin: .75rem 0 .15rem;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  letter-spacing: -.035em;
}

.product-card h3 a {
  text-decoration: none;
}

.product-card h3 a::after {
  position: absolute;
  content: "";
  inset: 0;
}

.product-card {
  position: relative;
}

.product-card .text-link,
.product-card label,
.product-card input {
  position: relative;
  z-index: 2;
}

.scientific {
  margin: 0 0 1rem;
  color: var(--brand-600);
  font-family: Georgia, "Times New Roman", serif;
  font-size: .9rem;
  word-break: break-word;
}

.scientific.large {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
}

.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  color: var(--ink-700);
  font-size: .72rem;
}

.badge {
  padding: .2rem .52rem;
  color: var(--forest-900);
  background: var(--mist-100);
  font-weight: 750;
}

.mini-spec {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .7rem;
  padding: 1rem 0;
  margin: 1.1rem 0;
  border-block: 1px solid var(--line);
}

.mini-spec dt,
.mini-spec dd {
  margin: 0;
}

.mini-spec dt {
  color: var(--ink-700);
  font-size: .72rem;
}

.mini-spec dd {
  font-size: .86rem;
  font-weight: 700;
}

.text-link {
  color: var(--forest-700);
  font-weight: 760;
  text-decoration: none;
}

.center-action {
  margin-top: 3rem;
  text-align: center;
}

.case-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem 1.6rem;
}

.case-card {
  border-top: 1px solid rgba(255, 255, 255, .25);
}

.case-media {
  display: block;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  margin: 1rem 0 1.4rem;
}

.case-media img {
  width: 100%;
  height: 100%;
}

.case-card h3 {
  margin: 0;
  font-size: 1.6rem;
}

.case-card > div {
  padding-right: 1rem;
}

.step-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0;
  margin: 0;
  counter-reset: steps;
  list-style: none;
}

.step-list li {
  min-height: 200px;
  padding: 1.5rem;
  border-top: 1px solid var(--forest-900);
  border-right: 1px solid var(--line);
}

.step-list li:last-child {
  border-right: 0;
}

.step-list span {
  color: var(--brand-500);
  font-size: .78rem;
  font-weight: 850;
}

.step-list h2,
.step-list h3 {
  margin: 2.5rem 0 .6rem;
  font-size: 1.2rem;
}

.step-list p {
  margin: 0;
  color: var(--ink-700);
  font-size: .9rem;
}

.step-list.compact li {
  min-height: 130px;
}

.step-list.compact h2 {
  margin-top: 1.3rem;
  font-size: 1rem;
}

.cta-section {
  padding-block: clamp(3rem, 7vw, 6rem);
  color: var(--white);
  background: var(--forest-700);
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 3rem;
}

.cta-panel h2 {
  max-width: 720px;
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4vw, 4rem);
  letter-spacing: -.05em;
  line-height: 1.08;
}

.cta-panel p {
  max-width: 780px;
  color: rgba(255, 255, 255, .82);
}

.cta-panel .fine {
  font-size: .82rem;
}

.sticky-quote {
  display: none;
}

.site-footer {
  padding: 5rem 0 1.5rem;
  color: rgba(255, 255, 255, .74);
  background: var(--forest-950);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr .7fr 1fr;
  gap: 3rem;
}

.site-footer h2 {
  margin: 0 0 1rem;
  color: var(--white);
  font-size: 1rem;
}

.footer-brand img {
  float: left;
  margin-right: 1rem;
  border-radius: 15px;
}

.footer-brand .eyebrow {
  color: var(--accent-300);
}

.footer-brand h2 {
  margin-bottom: 0;
  font-size: 1.35rem;
}

.footer-brand p:last-child {
  margin-top: .25rem;
}

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

.link-list a,
.site-footer address a {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
}

.site-footer address {
  font-style: normal;
}

.footer-policy {
  padding: 1.5rem;
  margin-top: 3rem;
  border: 1px solid rgba(217, 199, 163, .27);
  color: var(--accent-300);
  font-size: .82rem;
}

.footer-policy p {
  margin: 0;
}

.footer-policy p + p {
  margin-top: .4rem;
  color: rgba(255, 255, 255, .6);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: .6rem 1rem;
  padding-top: 1.5rem;
  font-size: .72rem;
}

.page-hero {
  position: relative;
  min-height: 440px;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}

.page-hero::after {
  position: absolute;
  right: -4%;
  bottom: -34%;
  width: min(52vw, 700px);
  aspect-ratio: 2;
  opacity: .2;
  background: url("/assets/icons/brand-lines.svg") center / contain no-repeat;
  content: "";
}

.page-hero-forest {
  background:
    radial-gradient(circle at 85% 20%, rgba(155, 184, 166, .25), transparent 36%),
    linear-gradient(120deg, var(--forest-950), var(--forest-700));
}

.page-hero-image,
.page-hero-about {
  background:
    linear-gradient(90deg, rgba(16, 38, 29, .97), rgba(23, 58, 42, .72)),
    url("/assets/images/hero/hero-desktop-1440.webp") center 58% / cover;
}

.page-hero .container {
  position: relative;
  z-index: 1;
  padding-block: 4.5rem;
}

.page-hero h1 {
  font-size: clamp(2.6rem, 5.8vw, 5.4rem);
}

.page-hero .container > p:last-child {
  max-width: 750px;
  margin-top: 1.3rem;
  color: rgba(255, 255, 255, .78);
  font-size: 1.08rem;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  margin-bottom: 2.2rem;
  color: rgba(255, 255, 255, .65);
  font-size: .78rem;
}

.breadcrumb a,
.breadcrumb span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
}

.breadcrumb a::after {
  margin-left: .35rem;
  content: "/";
}

.product-hero {
  padding: 2rem 0 clamp(4rem, 7vw, 7rem);
  background:
    linear-gradient(180deg, var(--mist-100), transparent 55%);
}

.product-hero .breadcrumb {
  color: var(--ink-700);
}

.product-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  align-items: center;
  gap: clamp(2rem, 7vw, 7rem);
}

.product-hero-media {
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow);
}

.product-hero-media img {
  width: 100%;
  height: 100%;
}

.image-note {
  margin: .8rem 0 0;
  color: var(--ink-700);
  font-size: .72rem;
}

.product-hero-copy h1 {
  margin: 0 0 .35rem;
  font-size: clamp(2.8rem, 5.5vw, 5.6rem);
  letter-spacing: -.065em;
  line-height: 1;
}

.product-hero-copy .lead {
  margin: 1.4rem 0;
  font-size: 1.12rem;
}

.policy-callout {
  padding: 1rem 1.1rem;
  margin: 1.4rem 0;
  border-left: 4px solid var(--brand-500);
  background: var(--white);
}

.policy-callout b {
  color: var(--forest-700);
}

.policy-callout p {
  margin: .3rem 0 0;
  color: var(--ink-700);
  font-size: .82rem;
}

.spec-band {
  color: var(--white);
  background: var(--forest-900);
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  padding: 0;
  margin-block: 0;
}

.spec-grid > div {
  min-width: 0;
  min-height: 165px;
  padding: 1.5rem 1rem;
  border-right: 1px solid rgba(255, 255, 255, .14);
}

.spec-grid > div:last-child {
  border: 0;
}

.spec-grid .icon {
  width: 30px;
  height: 30px;
  margin-bottom: 1.4rem;
  color: var(--accent-300);
}

.spec-grid dt {
  color: rgba(255, 255, 255, .6);
  font-size: .72rem;
}

.spec-grid dd {
  margin: .25rem 0 0;
  font-size: .86rem;
  font-weight: 700;
}

.split-content,
.growing-grid,
.two-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 7vw, 7rem);
}

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

.fact-list div {
  display: grid;
  grid-template-columns: 145px 1fr;
  gap: 1rem;
  padding-block: 1rem;
  border-bottom: 1px solid var(--line);
}

.fact-list dt {
  color: var(--ink-700);
  font-size: .82rem;
}

.fact-list dd {
  margin: 0;
}

.source-status,
.spacing-card,
.limit-note {
  align-self: start;
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid rgba(46, 104, 74, .2);
  background: var(--mist-100);
}

.source-status h2,
.spacing-card h2,
.limit-note h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  letter-spacing: -.04em;
  line-height: 1.15;
}

.season-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0;
  margin: 0;
  list-style: none;
}

.season-timeline li {
  min-height: 190px;
  padding: 1.5rem;
  border-top: 3px solid var(--brand-500);
  border-right: 1px solid rgba(46, 104, 74, .2);
}

.season-timeline li:last-child {
  border-right: 0;
}

.season-timeline span {
  color: var(--brand-500);
  font-weight: 800;
}

.season-timeline p {
  margin-top: 2.2rem;
}

.feature-list {
  display: grid;
  gap: .8rem;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: grid;
  grid-template-columns: 42px 80px 1fr;
  align-items: center;
  min-height: 70px;
  padding: .75rem 1rem;
  border-bottom: 1px solid var(--line);
}

.feature-list .icon {
  width: 30px;
  height: 30px;
  color: var(--brand-500);
}

.feature-list span {
  color: var(--ink-700);
  font-size: .8rem;
}

.feature-list b {
  font-size: .92rem;
}

.spacing-card {
  color: var(--white);
  background: var(--forest-700);
}

.spacing-card .eyebrow {
  color: var(--accent-300);
}

.spacing-card .density {
  color: var(--accent-300);
  font-size: 1.3rem;
  font-weight: 800;
}

.spacing-visual {
  width: 100%;
  color: var(--accent-300);
  fill: none;
  stroke-width: 2;
}

.care-list,
.warning-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.care-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.care-list span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--white);
  background: var(--brand-500);
  font-size: .78rem;
  font-weight: 800;
}

.care-list p {
  margin: 0;
}

.warning-list li {
  position: relative;
  padding: 1rem 0 1rem 1.3rem;
  border-bottom: 1px solid var(--line);
}

.warning-list li::before {
  position: absolute;
  left: 0;
  color: var(--danger);
  content: "!";
  font-weight: 900;
}

.use-pill-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.use-pill-grid > div {
  min-height: 190px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, .2);
}

.use-pill-grid .icon {
  width: 45px;
  height: 45px;
  color: var(--accent-300);
}

.use-pill-grid p {
  margin-top: 2.2rem;
  font-size: 1.06rem;
  font-weight: 700;
}

.sources-block ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .65rem 2rem;
  padding: 0;
  list-style: none;
}

.sources-block li {
  border-bottom: 1px solid var(--line);
}

.sources-block a {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  color: var(--forest-700);
  font-weight: 700;
}

.sources-block > p {
  color: var(--ink-700);
  font-size: .82rem;
}

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

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

.faq-list summary {
  position: relative;
  padding: 1.35rem 3rem 1.35rem 0;
  font-size: 1.05rem;
  font-weight: 750;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: .8rem;
  color: var(--brand-500);
  content: "+";
  font-size: 1.7rem;
  line-height: 1;
  transform: translateY(-50%);
}

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

.faq-list details > div {
  max-width: 780px;
  padding: 0 3rem 1.4rem 0;
  color: var(--ink-700);
}

.table-scroll {
  max-width: 100%;
  overflow-x: auto;
  border: 1px solid rgba(31, 41, 55, .14);
  background: var(--white);
}

.compare-table {
  width: 100%;
  min-width: 880px;
  border-collapse: collapse;
  font-size: .86rem;
}

.compare-table th,
.compare-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.compare-table thead th {
  color: var(--white);
  background: var(--forest-900);
}

.compare-table tbody th {
  min-width: 190px;
}

.compare-table tbody th a,
.compare-table tbody th small {
  display: block;
}

.compare-table tbody th a {
  color: var(--forest-700);
  font-size: 1rem;
}

.compare-table tbody th small {
  margin-top: .25rem;
  color: var(--ink-700);
  font-family: Georgia, serif;
  font-weight: 400;
}

.case-feature-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  gap: clamp(2rem, 7vw, 7rem);
}

.case-feature:nth-of-type(odd) .case-feature-media {
  order: 2;
}

.case-feature-media {
  display: block;
  overflow: hidden;
  aspect-ratio: 3 / 2;
}

.case-feature-media img {
  width: 100%;
  height: 100%;
}

.case-feature h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  letter-spacing: -.05em;
  line-height: 1.12;
}

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

.check-list li {
  padding: .5rem 0;
}

.check-list li::before {
  display: inline-grid;
  width: 1.35rem;
  height: 1.35rem;
  margin-right: .65rem;
  border-radius: 50%;
  place-items: center;
  color: var(--white);
  background: var(--brand-500);
  content: "✓";
  font-size: .7rem;
}

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

.feature-panels article {
  min-height: 260px;
  padding: 1.5rem;
  border-top: 1px solid var(--forest-900);
  border-right: 1px solid var(--line);
}

.feature-panels article:last-child {
  border-right: 0;
}

.feature-panels .icon {
  width: 40px;
  height: 40px;
  margin-bottom: 3rem;
  color: var(--brand-500);
}

.feature-panels h2 {
  margin: 0;
  font-size: 1.3rem;
}

.feature-panels p {
  color: var(--ink-700);
  font-size: .88rem;
}

.care-calendar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 0;
  margin: 0;
  list-style: none;
}

.care-calendar li {
  min-height: 180px;
  padding: 1.5rem;
  border-top: 1px solid var(--forest-900);
  border-right: 1px solid rgba(31, 41, 55, .14);
  border-bottom: 1px solid rgba(31, 41, 55, .14);
}

.care-calendar time {
  color: var(--brand-600);
  font-size: .8rem;
  font-weight: 800;
}

.care-calendar p {
  margin-top: 2.5rem;
}

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

.value-grid article {
  min-height: 250px;
  padding: 1.3rem;
  border-top: 1px solid rgba(255, 255, 255, .3);
  border-right: 1px solid rgba(255, 255, 255, .14);
}

.value-grid article:last-child {
  border-right: 0;
}

.value-grid span {
  color: var(--accent-300);
  font-size: .72rem;
  font-weight: 800;
}

.value-grid h2 {
  margin-top: 5rem;
  font-size: 1.2rem;
}

.value-grid p {
  color: rgba(255, 255, 255, .65);
  font-size: .86rem;
}

.farm-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.farm-facts > div {
  min-height: 280px;
  padding: clamp(1.5rem, 4vw, 3.5rem);
  border-top: 2px solid var(--forest-700);
  background: var(--white);
}

.farm-facts h2 {
  margin: 0;
  font-size: 2rem;
}

.farm-facts address {
  margin-top: 2rem;
  font-style: normal;
}

.farm-facts a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  color: var(--forest-700);
  font-size: 1.25rem;
  font-weight: 750;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(260px, .65fr) minmax(0, 1.35fr);
  align-items: start;
  gap: clamp(2rem, 7vw, 7rem);
}

.contact-grid > div:first-child {
  position: sticky;
  top: 110px;
}

.contact-card {
  display: grid;
  gap: .5rem;
  padding: 1.4rem;
  margin-top: 2rem;
  color: var(--white);
  background: var(--forest-900);
}

.contact-card h2 {
  margin: 0 0 .7rem;
  font-size: 1.15rem;
}

.contact-card a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--accent-300);
  font-weight: 750;
}

.contact-card p {
  font-size: .78rem;
}

.quote-form {
  position: relative;
  padding: clamp(1.2rem, 4vw, 3rem);
  border: 1px solid rgba(31, 41, 55, .16);
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-status {
  display: none;
  padding: .9rem 1rem;
  margin-bottom: 1.3rem;
  border-left: 4px solid;
}

.form-status:not(:empty) {
  display: block;
}

.form-status[data-kind="error"] {
  border-color: var(--danger);
  color: #6c2925;
  background: #fff2f1;
}

.form-status[data-kind="success"] {
  border-color: var(--success);
  color: #184d31;
  background: #eef9f2;
}

.quote-form fieldset {
  padding: 0;
  margin: 0 0 1.8rem;
  border: 0;
}

.quote-form legend {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-weight: 800;
}

.quote-form legend span,
.optional {
  color: var(--ink-700);
  font-size: .72rem;
  font-weight: 500;
}

.choice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem;
}

.choice {
  position: relative;
}

.choice input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.choice span {
  display: flex;
  min-height: 70px;
  flex-direction: column;
  justify-content: center;
  padding: .7rem 1rem;
  border: 1px solid var(--line);
  cursor: pointer;
}

.choice input:checked + span {
  border-color: var(--brand-500);
  color: var(--forest-900);
  background: var(--mist-100);
  box-shadow: inset 3px 0 var(--brand-500);
}

.choice input:focus-visible + span {
  outline: 3px solid #f5bf4f;
  outline-offset: 2px;
}

.choice small {
  color: var(--ink-700);
  font-size: .68rem;
}

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

.quote-form > label,
.form-grid > label {
  display: block;
  margin-bottom: 1.2rem;
  font-size: .86rem;
  font-weight: 750;
}

.quote-form input[type="text"],
.quote-form input[type="number"],
.quote-form input[type="date"],
.quote-form input[type="tel"],
.quote-form input[type="email"],
.quote-form textarea {
  display: block;
  width: 100%;
  min-height: 50px;
  padding: .72rem .85rem;
  margin-top: .35rem;
  border: 1px solid #9da9a3;
  border-radius: 0;
  background: #fff;
  font-weight: 450;
}

.quote-form textarea {
  resize: vertical;
}

.quote-form input[aria-invalid="true"],
.quote-form textarea[aria-invalid="true"] {
  border-color: var(--danger);
  box-shadow: inset 0 0 0 1px var(--danger);
}

.quote-form small,
.field-help {
  display: block;
  margin: .4rem 0 0;
  color: var(--ink-700);
  font-size: .7rem;
  font-weight: 450;
}

.field-error {
  min-height: 1.2em;
  margin-top: .2rem;
  color: var(--danger);
  font-size: .72rem;
  font-weight: 650;
}

.consent {
  display: grid !important;
  grid-template-columns: 24px 1fr;
  gap: .55rem;
  align-items: start;
}

.consent input {
  width: 22px;
  height: 22px;
  margin: .18rem 0 0;
  accent-color: var(--brand-500);
}

.link-button {
  min-height: 32px;
  padding: 0 .2rem;
  border: 0;
  color: var(--forest-700);
  background: transparent;
  font-weight: 700;
  text-decoration: underline;
  cursor: pointer;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-policy {
  padding: 1rem;
  margin: 1.3rem 0;
  border-left: 4px solid var(--accent-400);
  background: var(--sand-100);
}

.form-policy b {
  color: var(--forest-700);
}

.form-policy p {
  margin: .35rem 0 0;
  font-size: .75rem;
}

.form-alternative {
  margin: 1rem 0 0;
  color: var(--ink-700);
  font-size: .75rem;
  text-align: center;
}

.spinner {
  display: none;
  width: 18px;
  height: 18px;
  margin-left: .6rem;
  border: 2px solid rgba(255, 255, 255, .35);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin .8s linear infinite;
}

.quote-form.is-submitting .spinner {
  display: inline-block;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.dialog {
  width: min(calc(100% - 2rem), 620px);
  padding: 0;
  border: 0;
  color: var(--ink-900);
  background: var(--white);
  box-shadow: 0 40px 100px rgba(0, 0, 0, .35);
}

.dialog::backdrop {
  background: rgba(16, 38, 29, .78);
  backdrop-filter: blur(4px);
}

.dialog > div {
  position: relative;
  padding: clamp(1.5rem, 5vw, 3.5rem);
}

.dialog h2 {
  font-size: 1.8rem;
}

.dialog-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  place-items: center;
  background: var(--mist-100);
  font-size: 1.5rem;
  cursor: pointer;
}

.success-page,
.not-found {
  display: grid;
  min-height: 75svh;
  place-items: center;
  padding-block: var(--section);
  text-align: center;
}

.success-page .container,
.not-found .container {
  max-width: 850px;
}

.success-mark {
  display: grid;
  width: 76px;
  height: 76px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  place-items: center;
  color: var(--white);
  background: var(--brand-500);
  font-size: 2rem;
}

.success-page h1,
.not-found h1 {
  margin: 0;
  font-size: clamp(2.7rem, 6vw, 5rem);
  letter-spacing: -.06em;
  line-height: 1.05;
}

.receipt {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: .8rem 1rem;
  margin: 1rem auto;
  color: var(--forest-900);
  background: var(--mist-100);
}

.receipt[hidden] {
  display: none;
}

.receipt strong {
  font-family: ui-monospace, monospace;
  letter-spacing: .08em;
}

.success-policy {
  max-width: 720px;
  padding: 1rem;
  margin: 1.4rem auto 2.5rem;
  border: 1px solid rgba(46, 104, 74, .2);
}

.success-policy b {
  color: var(--forest-700);
}

.success-policy p {
  margin: .35rem 0 0;
  font-size: .82rem;
}

.success-page .step-list {
  margin-bottom: 2.5rem;
  text-align: left;
}

.success-page .hero-actions,
.not-found .hero-actions {
  justify-content: center;
}

.fine {
  color: var(--ink-700);
  font-size: .75rem;
}

.landing-hero {
  position: relative;
  display: grid;
  min-height: min(760px, calc(100svh - 110px));
  align-items: center;
  color: var(--white);
  background: var(--forest-900);
  overflow: hidden;
  isolation: isolate;
}

.landing-backdrop,
.landing-picture,
.landing-picture img,
.landing-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.landing-backdrop {
  z-index: -2;
}

.landing-picture {
  display: block;
}

.landing-shade {
  z-index: -1;
  background: linear-gradient(90deg, rgba(16, 38, 29, .97) 0%, rgba(16, 38, 29, .84) 48%, rgba(16, 38, 29, .24) 100%);
}

.landing-content {
  padding-block: 5rem;
}

.landing-hero h1 {
  max-width: 790px;
  font-size: clamp(2.8rem, 6vw, 5.8rem);
}

.landing-content > p:not(.eyebrow) {
  max-width: 650px;
  font-size: 1.1rem;
}

.landing-policy {
  display: flex;
  max-width: 680px;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  margin: 1.4rem 0;
  border-left: 4px solid var(--accent-300);
  background: rgba(16, 38, 29, .65);
}

.landing-policy strong {
  color: var(--accent-300);
}

.landing-policy span {
  font-size: .78rem;
}

.landing-content small {
  display: block;
  margin-top: 1rem;
  color: rgba(255, 255, 255, .65);
}

.landing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.landing-grid article {
  display: flex;
  min-height: 280px;
  flex-direction: column;
  padding: clamp(1.3rem, 3vw, 2.5rem);
  border-top: 2px solid var(--forest-700);
  background: var(--white);
}

.landing-grid h2 {
  margin: 0;
  font-size: 1.6rem;
}

.landing-grid h2 a {
  text-decoration: none;
}

.landing-grid b {
  color: var(--forest-700);
  font-size: .82rem;
}

.landing-grid .text-link {
  margin-top: auto;
}

.legal {
  max-width: 850px;
}

.legal h2 {
  margin-top: 2.8rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
  font-size: 1.35rem;
}

.legal p {
  color: var(--ink-700);
}

.error-code {
  margin: 0;
  color: var(--accent-400);
  font-family: Georgia, serif;
  font-size: clamp(7rem, 18vw, 14rem);
  line-height: .8;
}

@media (max-width: 1024px) {
  .site-nav {
    gap: .8rem;
  }

  .site-nav ul {
    gap: .9rem;
  }

  .hero-picture {
    inset-left: 32%;
  }

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

  .spec-grid > div:nth-child(3) {
    border-right: 0;
  }

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

  .value-grid article:nth-child(3) {
    border-right: 0;
  }

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

  .feature-panels article:nth-child(2) {
    border-right: 0;
  }
}

@media (max-width: 820px) {
  :root {
    --section: clamp(3.8rem, 11vw, 6rem);
  }

  body {
    padding-bottom: 66px;
  }

  .notice-full {
    display: none;
  }

  .notice-short {
    display: inline;
  }

  .site-header {
    height: 70px;
  }

  .menu-toggle {
    display: block;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-of-type(2) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] > span:nth-of-type(3) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-of-type(4) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .site-nav {
    position: absolute;
    top: 70px;
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    padding: 1rem;
    border-top: 1px solid var(--line);
    background: var(--canvas);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav ul {
    display: block;
  }

  .site-nav ul a {
    justify-content: start;
    border-bottom: 1px solid var(--line);
  }

  .site-nav .button {
    width: 100%;
    margin-top: 1rem;
  }

  .sticky-quote {
    position: fixed;
    z-index: 55;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    min-height: 66px;
    align-items: center;
    justify-content: space-between;
    gap: .6rem;
    padding: .5rem max(.65rem, env(safe-area-inset-right)) calc(.5rem + env(safe-area-inset-bottom)) max(.65rem, env(safe-area-inset-left));
    color: var(--white);
    background: var(--forest-950);
    box-shadow: 0 -8px 30px rgba(16, 38, 29, .18);
  }

  .sticky-quote span {
    font-size: .72rem;
    font-weight: 750;
  }

  .sticky-quote .button {
    min-height: 46px;
    padding: .65rem .9rem;
    flex: 0 0 auto;
  }

  .hero {
    min-height: 720px;
  }

  .hero-picture {
    inset: 0;
  }

  .hero-picture::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(16, 38, 29, .98) 0%, rgba(16, 38, 29, .62) 65%, rgba(16, 38, 29, .18) 100%);
    content: "";
  }

  .hero-overlay {
    background: linear-gradient(0deg, rgba(16, 38, 29, .98) 0%, rgba(16, 38, 29, .55) 70%, rgba(16, 38, 29, .1));
  }

  .hero-content {
    justify-content: flex-end;
    padding-bottom: 3.5rem;
  }

  .hero h1 {
    font-size: clamp(2.65rem, 12vw, 4.5rem);
  }

  .hero-copy {
    max-width: 560px;
    font-size: .96rem;
  }

  .policy-band .container {
    width: 100%;
    grid-template-columns: 1fr 1fr;
  }

  .policy-band .container > div {
    min-height: 100px;
    border-bottom: 1px solid rgba(16, 38, 29, .2);
  }

  .policy-band .container > div:nth-child(2) {
    border-right: 0;
  }

  .editorial-grid,
  .product-hero-grid,
  .split-content,
  .growing-grid,
  .two-cards,
  .contact-grid,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .contact-grid > div:first-child {
    position: static;
  }

  .product-grid.compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .step-list,
  .season-timeline {
    grid-template-columns: 1fr 1fr;
  }

  .step-list li:nth-child(2),
  .season-timeline li:nth-child(2) {
    border-right: 0;
  }

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

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

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

  .case-feature:nth-of-type(odd) .case-feature-media {
    order: 0;
  }

  .care-calendar {
    grid-template-columns: 1fr 1fr;
  }

  .use-pill-grid {
    grid-template-columns: 1fr;
  }

  .use-pill-grid > div {
    min-height: 150px;
  }

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

  .value-grid article:nth-child(3) {
    border-right: 1px solid rgba(255, 255, 255, .14);
  }

  .value-grid article:nth-child(even) {
    border-right: 0;
  }

  .landing-shade {
    background: linear-gradient(0deg, rgba(16, 38, 29, .97), rgba(16, 38, 29, .56));
  }

  .landing-content {
    align-self: end;
  }
}

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

  .brand img {
    width: 44px;
    height: 44px;
  }

  .brand b {
    font-size: .95rem;
  }

  .hero {
    min-height: min(720px, calc(100svh - 96px));
  }

  .hero-content {
    padding-bottom: 2rem;
  }

  .hero h1,
  .page-hero h1,
  .landing-hero h1 {
    font-size: clamp(2.35rem, 11.5vw, 3.3rem);
  }

  .hero-copy {
    margin: 1rem 0 .7rem;
    line-height: 1.55;
  }

  .hero-policy {
    margin-bottom: .9rem;
    font-size: .84rem;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .button {
    flex: 1 1 150px;
    padding-inline: .75rem;
    font-size: .86rem;
  }

  .hero-trust {
    margin-top: 1rem;
    font-size: .7rem;
  }

  .policy-band .container > div {
    grid-template-columns: 33px 1fr;
    padding: .8rem .65rem;
  }

  .policy-band .icon {
    width: 25px;
    height: 25px;
  }

  .policy-band b {
    font-size: .8rem;
  }

  .policy-band span {
    font-size: .66rem;
  }

  .section-heading h2 {
    font-size: clamp(1.85rem, 9vw, 2.7rem);
  }

  .product-grid,
  .product-grid.compact,
  .case-grid,
  .farm-facts,
  .landing-grid {
    grid-template-columns: 1fr;
  }

  .card-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .step-list,
  .season-timeline {
    grid-template-columns: 1fr;
  }

  .step-list li,
  .season-timeline li {
    min-height: 145px;
    border-right: 0;
  }

  .step-list h2,
  .step-list h3,
  .season-timeline p {
    margin-top: 1.3rem;
  }

  .cta-actions {
    width: 100%;
  }

  .cta-actions .button {
    width: 100%;
  }

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

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

  .footer-bottom {
    flex-direction: column;
  }

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

  .page-hero::after {
    width: 90vw;
  }

  .product-hero {
    padding-top: 1rem;
  }

  .product-hero-copy h1 {
    font-size: clamp(2.5rem, 13vw, 3.7rem);
  }

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

  .spec-grid > div {
    min-height: 145px;
  }

  .spec-grid > div:nth-child(3) {
    border-right: 1px solid rgba(255, 255, 255, .14);
  }

  .spec-grid > div:nth-child(even) {
    border-right: 0;
  }

  .fact-list div {
    grid-template-columns: 1fr;
    gap: .3rem;
  }

  .feature-list li {
    grid-template-columns: 36px 62px 1fr;
    padding-inline: .5rem;
  }

  .sources-block ul,
  .form-grid,
  .choice-grid {
    grid-template-columns: 1fr;
  }

  .feature-panels,
  .care-calendar,
  .value-grid {
    grid-template-columns: 1fr;
  }

  .feature-panels article,
  .care-calendar li,
  .value-grid article {
    min-height: 170px;
    border-right: 0 !important;
  }

  .feature-panels .icon {
    margin-bottom: 1.6rem;
  }

  .value-grid h2 {
    margin-top: 2rem;
  }

  .quote-form {
    margin-inline: -.15rem;
  }

  .landing-hero {
    min-height: 700px;
  }

  .landing-policy {
    align-items: flex-start;
    flex-direction: column;
    gap: .25rem;
  }

  .success-page .step-list {
    grid-template-columns: 1fr 1fr;
  }

  .success-page .step-list li {
    border-right: 1px solid var(--line);
  }

  .success-page .step-list li:nth-child(even) {
    border-right: 0;
  }

  .sticky-quote span {
    max-width: 190px;
  }
}

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

  .brand small {
    display: none;
  }

  .hero h1 {
    font-size: 2.25rem;
  }

  .hero-copy {
    font-size: .84rem;
  }

  .hero-trust {
    display: none;
  }

  .sticky-quote span {
    max-width: 160px;
    font-size: .66rem;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

@media print {
  .notice,
  .site-header,
  .sticky-quote,
  .site-footer,
  .hero-actions {
    display: none !important;
  }

  body {
    padding: 0;
    color: #000;
    background: #fff;
  }
}
