/*! Salem Experience Design signature block | salemexperiencedesign.com */
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Sora:wght@500;600;700;800&display=swap");

:root {
  --bg: #f4f7f2;
  --bg-soft: #eaf0e9;
  --panel: rgba(255, 255, 255, 0.9);
  --panel-strong: #f8fbf7;
  --surface: #ffffff;
  --surface-alt: #eef3ed;
  --text: #102018;
  --muted: #5f6d63;
  --line: rgba(16, 32, 24, 0.08);
  --leaf: #3f6d50;
  --leaf-bright: #79a06e;
  --olive: #73806d;
  --clay: #c8b9aa;
  --sand: #dfe7d9;
  --shadow: 0 18px 48px rgba(70, 86, 73, 0.08);
  --radius-xl: 30px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: min(1180px, calc(100vw - 2rem));
  --motion-ease-luxury: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: auto;
  scroll-padding-top: calc(var(--header-offset, 88px) + 4px);
}

main[id],
section[id] {
  scroll-margin-top: calc(var(--header-offset, 88px) + 4px);
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  overflow-x: hidden;
  background:
    radial-gradient(circle at top left, rgba(121, 160, 110, 0.12), transparent 30%),
    radial-gradient(circle at top right, rgba(200, 185, 170, 0.14), transparent 24%),
    linear-gradient(180deg, #f7faf6 0%, #edf3ec 38%, #f9fbf8 100%);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(16, 32, 24, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 32, 24, 0.028) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.12), transparent 80%);
  pointer-events: none;
}

body::after {
  content: "";
  position: fixed;
  inset: auto -12vw -24vh auto;
  width: min(48vw, 620px);
  height: min(48vw, 620px);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(121, 160, 110, 0.15) 0%, rgba(121, 160, 110, 0.08) 30%, transparent 72%);
  opacity: 0.42;
  pointer-events: none;
}

.page-transition-scrim {
  position: fixed;
  inset: 0;
  z-index: 80;
  pointer-events: none;
  background:
    radial-gradient(circle at 78% 20%, rgba(121, 160, 110, 0.1), transparent 28%),
    linear-gradient(135deg, rgba(248, 251, 247, 0.62), rgba(237, 243, 236, 0.54));
  opacity: 0;
  transform: translateY(8px);
  transform-origin: bottom center;
  transition:
    opacity 150ms var(--motion-ease-luxury),
    transform 160ms var(--motion-ease-luxury);
}

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

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

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

.container {
  width: var(--container);
  margin: 0 auto;
}

#site-header {
  position: sticky;
  top: 0;
  z-index: 30;
}

#site-header.is-scrolled .site-header {
  background: rgba(248, 251, 247, 0.92);
  border-bottom-color: rgba(16, 32, 24, 0.08);
  box-shadow: 0 14px 28px rgba(70, 86, 73, 0.08);
}

.site-header {
  position: relative;
  z-index: 1;
  backdrop-filter: blur(18px);
  background: rgba(248, 251, 247, 0.84);
  border-bottom: 1px solid rgba(16, 32, 24, 0.06);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brandmark {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.brandmark img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(61, 80, 66, 0.12));
}

.brandmark span {
  display: grid;
  gap: 0.2rem;
}

.brandmark strong {
  font-size: 0.98rem;
  line-height: 1;
}

.brandmark em {
  color: var(--muted);
  font-style: normal;
  font-size: 0.8rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-nav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.75rem;
  min-height: 44px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.95rem;
  transition:
    color 220ms ease,
    background-color 220ms ease,
    box-shadow 220ms ease;
}

.site-nav__link:hover,
.site-nav__link.is-active {
  color: var(--text);
}

.site-nav__link.is-active {
  background: rgba(121, 160, 110, 0.12);
  box-shadow: inset 0 0 0 1px rgba(63, 109, 80, 0.08);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.88);
  color: var(--text);
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: currentColor;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 50px;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

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

.button--solid {
  background: linear-gradient(135deg, var(--leaf) 0%, #507d61 100%);
  color: #f7faf6;
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(63, 109, 80, 0.18);
}

.button--ghost {
  border-color: rgba(16, 32, 24, 0.1);
  background: rgba(255, 255, 255, 0.8);
  color: var(--text);
}

.button--small {
  min-height: 44px;
  padding: 0.7rem 1rem;
  font-size: 0.92rem;
}

.site-nav .button.is-active {
  box-shadow:
    0 14px 30px rgba(63, 109, 80, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.28);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 5rem 0 2.4rem;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero::before {
  width: 620px;
  height: 620px;
  right: -140px;
  top: -160px;
  background: radial-gradient(circle, rgba(121, 160, 110, 0.12), transparent 70%);
}

.hero::after {
  width: 520px;
  height: 520px;
  left: -180px;
  bottom: -220px;
  background: radial-gradient(circle, rgba(200, 185, 170, 0.12), transparent 70%);
}

.hero__grid,
.split-layout,
.cta-band,
.contact-layout,
.legal-layout {
  display: grid;
  gap: 1.5rem;
}

.hero__grid {
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  align-items: stretch;
}

.hero-copy,
.hero-panel,
.card,
.panel,
.quote-card,
.form-card,
.legal-card,
.detail-card,
.step-card,
.metric-card,
.faq-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 24%),
    var(--panel);
  box-shadow: var(--shadow);
}

[data-reveal] {
  --reveal-progress: 1;
  --reveal-distance: 28px;
  will-change: transform, opacity;
  transform-origin: center center;
  backface-visibility: hidden;
  opacity: 1;
  transform: none;
  transition:
    opacity 220ms ease-out,
    transform 260ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

body.has-scroll-reveal [data-reveal] {
  opacity: calc(0.16 + (var(--reveal-progress) * 0.84));
  transform: translate3d(0, calc((1 - var(--reveal-progress)) * var(--reveal-distance)), 0);
}

[data-reveal="hero"] {
  --reveal-distance: 20px;
}

[data-reveal="section"] {
  --reveal-distance: 30px;
}

.hero-copy {
  position: relative;
  padding: clamp(2rem, 3vw, 3rem);
  overflow: hidden;
}

.hero-copy::after {
  content: "";
  position: absolute;
  inset: auto -120px -90px auto;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(121, 160, 110, 0.08), transparent 68%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1.2rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(121, 160, 110, 0.1);
  color: #44624d;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--leaf-bright);
  box-shadow: 0 0 12px rgba(154, 199, 100, 0.8);
}

.hero h1,
.page-hero h1,
.section-heading h2,
.site-footer h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.045em;
}

.hero h1,
.page-hero h1 {
  font-size: 5.4rem;
}

.hero p,
.page-hero p,
.section-heading p,
.card p,
.panel p,
.site-footer p {
  color: var(--muted);
}

.lead {
  max-width: 55ch;
  margin: 1.25rem 0 1.8rem;
  font-size: 1.06rem;
  line-height: 1.75;
  color: #4f6055;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.05rem;
  margin-top: 1.6rem;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.pill,
.micro-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border-radius: 999px;
  border: 1px solid rgba(16, 32, 24, 0.08);
  background: rgba(255, 255, 255, 0.82);
}

.pill {
  padding: 0.75rem 0.95rem;
  font-size: 0.9rem;
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #4f6055;
  font-weight: 700;
}

.hero-meta span::before {
  content: "";
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: rgba(72, 128, 88, 0.62);
  box-shadow: 0 0 0 4px rgba(72, 128, 88, 0.08);
  flex: 0 0 auto;
}

.micro-pill {
  padding: 0.45rem 0.75rem;
  font-size: 0.78rem;
  color: var(--muted);
}

.hero-panel {
  display: grid;
  gap: 1rem;
  padding: 1.2rem;
}

.seal-card {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 380px;
  padding: 1.4rem;
  border-radius: calc(var(--radius-xl) - 6px);
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 38%, rgba(121, 160, 110, 0.14), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(241, 246, 239, 0.92));
}

.seal-card::before {
  content: "";
  position: absolute;
  inset: 12% 9%;
  border-radius: 50%;
  border: 1px solid rgba(63, 109, 80, 0.09);
}

.seal-card img {
  width: min(320px, 72%);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(66, 86, 72, 0.16));
}

.hero--atmospheric {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.hero-atmosphere {
  position: absolute;
  inset: 1.2rem max(1rem, calc((100vw - 1180px) / 2)) 1.2rem auto;
  z-index: -1;
  width: min(48vw, 650px);
  border-radius: clamp(32px, 5vw, 72px);
  overflow: hidden;
  opacity: 0.44;
  filter: saturate(0.72);
  mask-image: linear-gradient(90deg, transparent 0%, #000 20%, #000 78%, transparent 100%);
}

.hero-atmosphere::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 24% 24%, rgba(248, 251, 247, 0.7), transparent 40%),
    linear-gradient(90deg, rgba(244, 247, 242, 0.78), rgba(244, 247, 242, 0.36) 42%, rgba(244, 247, 242, 0.76));
}

.hero-atmosphere img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 40%;
  transform: scale(1.08);
}

.cultivation-ledger {
  position: relative;
  align-self: start;
  display: grid;
  grid-template-rows: auto repeat(3, auto);
  align-content: start;
  gap: 1px;
  overflow: hidden;
  min-height: 0;
  border: 1px solid rgba(16, 32, 24, 0.08);
  border-radius: clamp(28px, 4vw, 44px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(248, 251, 247, 0.54)),
    rgba(255, 255, 255, 0.36);
  box-shadow: 0 24px 70px rgba(70, 86, 73, 0.09);
  backdrop-filter: blur(14px);
}

.cultivation-ledger::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border-radius: inherit;
  background:
    radial-gradient(circle at top right, rgba(121, 160, 110, 0.22), transparent 36%),
    linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.56) 74%);
  pointer-events: none;
}

.cultivation-ledger__mark {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 0.78rem;
  min-height: 190px;
  margin: 0;
  padding: clamp(1.25rem, 2.5vw, 2rem);
  text-align: center;
}

.cultivation-ledger__mark img {
  width: clamp(120px, 13vw, 180px);
  height: clamp(120px, 13vw, 180px);
  object-fit: contain;
  filter: drop-shadow(0 18px 30px rgba(61, 80, 66, 0.16));
}

.cultivation-ledger__mark figcaption {
  display: grid;
  gap: 0.25rem;
}

.cultivation-ledger__mark figcaption strong {
  max-width: none;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.15rem, 1.6vw, 1.55rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.cultivation-ledger__mark figcaption span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.cultivation-ledger div {
  position: relative;
  display: grid;
  gap: 0.3rem;
  padding: clamp(0.9rem, 1.6vw, 1.18rem);
  border-top: 1px solid rgba(16, 32, 24, 0.08);
  background: rgba(248, 251, 247, 0.68);
}

.cultivation-ledger div:first-child {
  border-top: 0;
}

.cultivation-ledger span,
.proof-band__facts dt,
.cultivation-surface__intro span,
.process-ledger__item span {
  color: var(--leaf);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.cultivation-ledger strong {
  max-width: 26ch;
  font-family: "Sora", sans-serif;
  font-size: clamp(1rem, 1.35vw, 1.28rem);
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.proof-band {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.36fr);
  gap: clamp(1.4rem, 4vw, 4rem);
  align-items: end;
  margin-top: 2rem;
  min-height: 430px;
  padding: clamp(1.7rem, 5vw, 4rem);
  overflow: hidden;
  border: 1px solid rgba(16, 32, 24, 0.08);
  border-radius: clamp(28px, 4vw, 56px);
  background:
    linear-gradient(120deg, rgba(248, 251, 247, 0.94) 0%, rgba(248, 251, 247, 0.82) 46%, rgba(248, 251, 247, 0.38) 100%),
    rgba(255, 255, 255, 0.72);
  box-shadow: 0 28px 90px rgba(70, 86, 73, 0.11);
}

.proof-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("../images/cultivation-greenhouse-row.jpg");
  background-size: cover;
  background-position: 52% 48%;
  filter: saturate(0.8) contrast(1.03);
  transform: scale(1.04);
}

.proof-band::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.88), transparent 34%),
    linear-gradient(90deg, rgba(248, 251, 247, 0.95), rgba(248, 251, 247, 0.78) 46%, rgba(248, 251, 247, 0.36));
}

.proof-band__copy {
  display: grid;
  gap: 1rem;
  max-width: 620px;
}

.proof-band__copy h3,
.cultivation-surface__intro h3,
.process-ledger__item h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  letter-spacing: -0.05em;
  line-height: 1;
}

.proof-band__copy h3 {
  max-width: 13ch;
  font-size: clamp(2.25rem, 5vw, 5rem);
}

.proof-band__copy p,
.cultivation-surface__intro p,
.process-ledger__item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.78;
}

.proof-band__facts {
  display: grid;
  gap: 1px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(16, 32, 24, 0.08);
  border-radius: 24px;
  background: rgba(16, 32, 24, 0.08);
  box-shadow: 0 18px 46px rgba(70, 86, 73, 0.08);
}

.proof-band__facts div {
  padding: 1rem;
  background: rgba(248, 251, 247, 0.82);
  backdrop-filter: blur(12px);
}

.proof-band__facts dd {
  margin: 0.35rem 0 0;
  color: var(--text);
  font-weight: 800;
}

.story-kicker {
  display: grid;
  gap: 0.8rem;
  padding: clamp(1.2rem, 2.3vw, 1.7rem);
  border-left: 3px solid var(--leaf);
  border-radius: 0 24px 24px 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0));
}

.story-kicker span {
  color: var(--leaf);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.story-kicker strong {
  max-width: 48ch;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.18;
  letter-spacing: -0.035em;
}

.text-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 0.4rem;
  min-height: 44px;
  color: var(--leaf);
  font-weight: 800;
}

.text-link::after {
  content: "";
  width: 1.6rem;
  height: 1px;
  background: currentColor;
  transition: width 180ms ease;
}

.text-link:hover::after {
  width: 2.25rem;
}

.cultivation-surface {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(340px, 0.65fr);
  gap: clamp(1.4rem, 4vw, 4rem);
  align-items: end;
  min-height: 680px;
  padding: clamp(1.6rem, 4vw, 4rem);
  overflow: hidden;
  border: 1px solid rgba(16, 32, 24, 0.08);
  border-radius: clamp(30px, 5vw, 68px);
  background:
    linear-gradient(125deg, rgba(248, 251, 247, 0.95), rgba(248, 251, 247, 0.78) 48%, rgba(248, 251, 247, 0.28)),
    rgba(255, 255, 255, 0.7);
  box-shadow: 0 32px 96px rgba(70, 86, 73, 0.13);
}

.cultivation-surface::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("../images/cultivation-plant-row.jpg");
  background-size: cover;
  background-position: 36% 50%;
  filter: saturate(0.76) contrast(1.04);
  transform: scale(1.04);
}

.cultivation-surface::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 12% 16%, rgba(255, 255, 255, 0.92), transparent 34%),
    linear-gradient(90deg, rgba(248, 251, 247, 0.95), rgba(248, 251, 247, 0.78) 45%, rgba(248, 251, 247, 0.36) 100%);
}

.cultivation-surface__intro {
  display: grid;
  gap: 1rem;
  max-width: 690px;
}

.cultivation-surface__intro h3 {
  max-width: 13ch;
  font-size: clamp(2.4rem, 5vw, 5.7rem);
}

.process-ledger {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(16, 32, 24, 0.08);
  border-radius: clamp(24px, 3vw, 36px);
  background: rgba(16, 32, 24, 0.08);
  box-shadow: 0 24px 70px rgba(70, 86, 73, 0.11);
}

.process-ledger__item {
  display: grid;
  gap: 0.8rem;
  padding: clamp(1.2rem, 2.5vw, 2rem);
  background: rgba(248, 251, 247, 0.84);
  backdrop-filter: blur(14px);
}

.process-ledger__item h3 {
  font-size: clamp(1.45rem, 2.6vw, 2.35rem);
}

.panel-stack {
  display: grid;
  gap: 1rem;
}

.metric-card,
.detail-card,
.step-card {
  padding: 1.35rem;
}

.metric-card strong,
.detail-card strong,
.step-card strong {
  display: block;
  margin-bottom: 0.7rem;
  font-size: 1.2rem;
}

.metric-card strong {
  font-size: 2.1rem;
  color: var(--leaf);
}

.section {
  position: relative;
  padding: 2.4rem 0;
}

.section::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 clamp(1rem, 3vw, 2.5rem);
  width: 1px;
  background: linear-gradient(180deg, transparent 0%, rgba(121, 160, 110, 0.14) 18%, transparent 100%);
  opacity: 0.38;
  pointer-events: none;
}

.section-heading {
  display: grid;
  gap: 0.9rem;
  margin-bottom: 1.5rem;
}

.section-heading h2 {
  font-size: 3.55rem;
}

.section-heading p {
  max-width: 64ch;
  line-height: 1.75;
}

.section-grid {
  display: grid;
  gap: 1.2rem;
}

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

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

.card,
.panel,
.quote-card,
.form-card,
.legal-card,
.faq-card {
  padding: 1.6rem;
}

.card--link {
  display: block;
  min-height: 100%;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.card--link:hover {
  transform: translateY(-2px);
  border-color: rgba(63, 109, 80, 0.22);
  box-shadow: 0 22px 54px rgba(70, 86, 73, 0.12);
}

.card h3,
.panel h3,
.legal-card h3,
.faq-card h3,
.form-card h3 {
  margin: 0 0 0.8rem;
  font-size: 1.25rem;
}

.card p,
.panel p,
.legal-card p,
.faq-card p,
.form-card p {
  margin: 0;
  line-height: 1.75;
}

.split-layout {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: start;
}

.copy-stack {
  display: grid;
  gap: 1rem;
}

.copy-stack p {
  margin: 0;
  color: var(--muted);
  line-height: 1.82;
}

.quote-card blockquote {
  margin: 0 0 1rem;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.quote-card cite {
  color: var(--leaf);
  font-style: normal;
}

.steps {
  display: grid;
  gap: 1rem;
}

.step-card span {
  display: inline-flex;
  margin-bottom: 0.8rem;
  color: var(--leaf);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.feature-list,
.plain-list {
  display: grid;
  gap: 0.9rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.feature-list li,
.plain-list li {
  position: relative;
  padding-left: 1.2rem;
  color: var(--muted);
  line-height: 1.7;
}

.feature-list li::before,
.plain-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--leaf-bright);
}

.cta-band {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  padding: 1.8rem;
  margin-top: 1.4rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at top right, rgba(121, 160, 110, 0.12), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.6), transparent 28%),
    var(--panel);
}

.cta-band h3,
.page-hero h1 {
  margin: 0 0 0.8rem;
}

.cta-band p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.page-hero {
  padding: 4rem 0 1.4rem;
}

.page-hero__panel {
  padding: clamp(2rem, 3vw, 3rem);
  border-radius: calc(var(--radius-xl) + 4px);
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at right top, rgba(121, 160, 110, 0.12), transparent 34%),
    radial-gradient(circle at left bottom, rgba(200, 185, 170, 0.1), transparent 30%),
    var(--panel);
  box-shadow: var(--shadow);
}

.page-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.05rem;
  margin-top: 1.4rem;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.page-hero__meta .pill {
  min-height: 0;
  width: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #4f6055;
  font-weight: 800;
  justify-content: flex-start;
  text-align: left;
}

.page-hero__meta .pill::before {
  content: "";
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: rgba(72, 128, 88, 0.62);
  box-shadow: 0 0 0 4px rgba(72, 128, 88, 0.08);
  flex: 0 0 auto;
}

.contact-layout {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: start;
}

.contact-button-row {
  margin: 1.2rem 0;
}

.form-card form {
  display: grid;
  gap: 1rem;
  margin-top: 1.2rem;
}

.field {
  display: grid;
  gap: 0.45rem;
}

.field label {
  font-size: 0.88rem;
  color: var(--leaf);
}

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(16, 32, 24, 0.12);
  background: rgba(255, 255, 255, 0.94);
  color: var(--text);
}

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

.microcopy,
.form-status {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.92rem;
}

.form-status {
  min-height: 1.6em;
}

.contact-channel {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.contact-channel:last-child {
  border-bottom: 0;
}

.contact-channel strong {
  display: block;
  margin-bottom: 0.35rem;
}

.contact-channel span {
  color: var(--muted);
  font-size: 0.92rem;
}

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

.site-footer {
  margin-top: 2.6rem;
  padding: 2.6rem 0 2rem;
  border-top: 1px solid var(--line);
  background: rgba(247, 250, 246, 0.94);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr;
  gap: 1.5rem;
}

.footer-kicker {
  margin: 0 0 0.8rem;
  color: var(--leaf);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.73rem;
}

.site-footer h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 0.8rem;
}

.footer-links {
  display: grid;
  gap: 0.7rem;
}

.footer-links a,
.footer-links span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 44px;
  color: var(--muted);
}

.site-footer__legal {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.6rem;
  margin-top: 1.6rem;
  border-top: 1px solid var(--line);
}

.site-footer__legal p {
  margin: 0;
  max-width: 68ch;
  line-height: 1.7;
}

.site-footer__legal-right {
  display: grid;
  gap: 0.9rem;
  justify-items: end;
}

.footer-meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-meta a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.footer-credit {
  color: var(--muted);
  font-size: 0.92rem;
  text-align: right;
}

.footer-credit a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--leaf);
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(239, 244, 237, 0.76);
  backdrop-filter: blur(14px);
}

.age-gate[hidden] {
  display: none;
}

.age-gate__panel {
  width: min(560px, 100%);
  padding: 2rem;
  border-radius: calc(var(--radius-xl) + 6px);
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at top right, rgba(121, 160, 110, 0.12), transparent 35%),
    var(--panel-strong);
  box-shadow: var(--shadow);
  text-align: center;
}

.age-gate__panel img {
  width: 92px;
  margin: 0 auto 1rem;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(61, 80, 66, 0.12));
}

.age-gate__panel h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  letter-spacing: -0.04em;
}

.age-gate__panel p {
  color: var(--muted);
  line-height: 1.8;
}

.age-gate__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.island-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

code {
  padding: 0.1rem 0.35rem;
  border-radius: 6px;
  background: rgba(16, 32, 24, 0.06);
}

@media (max-width: 980px) {
  .section::before {
    left: 1rem;
  }

  .hero__grid,
  .split-layout,
  .section-grid--3,
  .section-grid--2,
  .proof-band,
  .cultivation-surface,
  .cta-band,
  .site-footer__grid,
  .contact-layout,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .proof-band,
  .cultivation-surface {
    min-height: auto;
  }

  .hero-atmosphere {
    inset: auto 1rem 1rem 1rem;
    width: auto;
    height: 42%;
    opacity: 0.32;
    mask-image: linear-gradient(180deg, transparent 0%, #000 28%, transparent 100%);
  }

  .site-footer__legal {
    flex-direction: column;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 4rem;
  }

  .section-heading h2 {
    font-size: 2.9rem;
  }
}

@media (max-width: 760px) {
  :root {
    --container: min(100% - 1.15rem, 1180px);
    --radius-xl: 24px;
    --radius-lg: 20px;
  }

  body {
    background:
      radial-gradient(circle at top left, rgba(121, 160, 110, 0.1), transparent 28%),
      linear-gradient(180deg, #f7faf6 0%, #edf3ec 42%, #f9fbf8 100%);
  }

  body.has-scroll-reveal [data-reveal] {
    opacity: calc(0.62 + (var(--reveal-progress) * 0.38));
    transform: translate3d(0, calc((1 - var(--reveal-progress)) * 10px), 0);
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0.65rem;
    left: 0.65rem;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border-radius: 22px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 180ms ease,
      transform 220ms ease,
      visibility 0s linear 220ms;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition:
      opacity 180ms ease,
      transform 220ms ease,
      visibility 0s linear 0s;
  }

  .site-nav__link {
    min-height: 46px;
    padding: 0.78rem 0.9rem;
  }

  .site-nav .button {
    min-height: 48px;
    width: 100%;
  }

  .hero {
    padding: 1.2rem 0 0.8rem;
  }

  .page-hero {
    padding: 1.4rem 0 0.8rem;
  }

  .hero__grid,
  .section-grid,
  .split-layout,
  .contact-layout,
  .legal-layout,
  .steps {
    gap: 0.85rem;
  }

  .hero-copy,
  .cultivation-ledger,
  .proof-band,
  .cultivation-surface,
  .process-ledger,
  .page-hero__panel,
  .card,
  .panel,
  .quote-card,
  .form-card,
  .legal-card,
  .faq-card,
  .cta-band {
    border-radius: 22px;
  }

  .hero-copy,
  .page-hero__panel,
  .card,
  .panel,
  .form-card,
  .legal-card,
  .step-card,
  .cta-band {
    padding: 1.25rem;
  }

  .cultivation-ledger {
    min-height: auto;
    grid-template-rows: auto;
  }

  .cultivation-ledger__mark {
    min-height: 172px;
    padding: 1.25rem;
  }

  .cultivation-ledger__mark img {
    width: 128px;
    height: 128px;
  }

  .cultivation-ledger div,
  .process-ledger__item,
  .proof-band__facts div {
    padding: 1rem;
  }

  .proof-band {
    gap: 1.4rem;
    min-height: 0;
    padding: 1.25rem;
  }

  .proof-band::after,
  .cultivation-surface::after {
    background:
      radial-gradient(circle at 12% 16%, rgba(255, 255, 255, 0.94), transparent 38%),
      linear-gradient(180deg, rgba(248, 251, 247, 0.94), rgba(248, 251, 247, 0.78) 55%, rgba(248, 251, 247, 0.52));
  }

  .cultivation-surface {
    gap: 1.4rem;
    min-height: 0;
    padding: 1.25rem;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.45rem, 12vw, 3.2rem);
    line-height: 0.96;
  }

  .section-heading h2,
  .site-footer h2 {
    font-size: clamp(2rem, 9vw, 2.5rem);
    line-height: 1.05;
  }

  .proof-band__copy h3,
  .cultivation-surface__intro h3 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .process-ledger__item h3,
  .card h3,
  .panel h3,
  .legal-card h3,
  .faq-card h3,
  .form-card h3 {
    font-size: 1.18rem;
  }

  .button-row {
    width: 100%;
  }

  .button-row .button {
    flex: 1 1 100%;
    justify-content: center;
    min-height: 48px;
    text-align: center;
  }

  .lead {
    margin: 1rem 0 1.25rem;
    font-size: 1rem;
    line-height: 1.68;
  }

  .hero-meta {
    gap: 0.55rem 0.85rem;
    margin-top: 1rem;
  }

  .pill {
    min-height: 44px;
    padding: 0.65rem 0.8rem;
    justify-content: center;
    text-align: center;
  }

  .section {
    padding: 1.25rem 0;
  }

  .section-heading {
    gap: 0.65rem;
    margin-bottom: 0.9rem;
  }

  .section-heading p,
  .copy-stack p,
  .card p,
  .panel p,
  .legal-card p,
  .faq-card p,
  .form-card p,
  .cta-band p,
  .proof-band__copy p,
  .cultivation-surface__intro p,
  .process-ledger__item p {
    line-height: 1.62;
  }

  .feature-list,
  .plain-list {
    gap: 0.7rem;
  }

  .feature-list li,
  .plain-list li {
    line-height: 1.55;
  }

  .field input,
  .field textarea,
  .field select {
    min-height: 48px;
    border-radius: 14px;
    font-size: 16px;
  }

  .field textarea {
    min-height: 132px;
  }

  .site-footer {
    margin-top: 1.4rem;
    padding: 1.8rem 0 1.5rem;
  }

  .site-footer__grid {
    gap: 1.2rem;
  }

  .footer-links {
    gap: 0.65rem;
  }

  .brandmark span {
    display: none;
  }
}

@media (max-width: 420px) {
  :root {
    --container: min(100% - 0.75rem, 1180px);
  }

  .site-header__inner {
    padding: 0.55rem 0;
  }

  .brandmark img {
    width: 50px;
    height: 50px;
  }

  .hero {
    padding-top: 0.85rem;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.05rem, 11.5vw, 2.48rem);
  }

  .section-heading h2,
  .site-footer h2 {
    font-size: clamp(1.78rem, 9vw, 2.1rem);
  }

  .pill {
    width: 100%;
  }

  .hero-copy,
  .page-hero__panel,
  .card,
  .panel,
  .form-card,
  .legal-card,
  .step-card,
  .cta-band,
  .proof-band,
  .cultivation-surface {
    padding: 1rem;
  }

  .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-transition-scrim {
    display: none;
  }

  [data-reveal] {
    transform: none !important;
    opacity: 1 !important;
    transition: none !important;
  }
}

@media (prefers-reduced-motion: no-preference) {
  body.page-transition-ready #site-header,
  body.page-transition-ready main,
  body.page-transition-ready #site-footer {
    animation: ai-page-arrive 260ms var(--motion-ease-luxury) both;
  }

  body.page-transition-ready #site-header {
    animation-duration: 220ms;
  }

  body.page-transition-ready #site-footer {
    animation-delay: 20ms;
  }

  body.page-is-leaving {
    cursor: progress;
  }

  body.page-is-leaving .page-transition-scrim {
    opacity: 0.72;
    transform: translateY(0);
  }

  body.page-is-leaving #site-header,
  body.page-is-leaving main,
  body.page-is-leaving #site-footer {
    opacity: 0.82;
    transform: translateY(-2px);
    transition:
      opacity 120ms var(--motion-ease-luxury),
      transform 140ms var(--motion-ease-luxury);
  }

  body.page-is-leaving a,
  body.page-is-leaving button {
    pointer-events: none;
  }

  @keyframes ai-page-arrive {
    0% {
      opacity: 0;
      transform: translateY(8px);
    }

    72% {
      opacity: 1;
    }

    100% {
      opacity: 1;
      transform: none;
    }
  }

}
