:root {
  color-scheme: light;
  --tomato: #c73b2e;
  --tomato-deep: #9d291f;
  --green: #4c6b3a;
  --green-deep: #243316;
  --green-black: #13210d;
  --green-soft: #e9f3df;
  --green-pale: #f1f8ea;
  --cream: #fffdf9;
  --paper: #f6f1e3;
  --ink: #3a3a33;
  --muted: #79786c;
  --line: #e4ddca;
  --gold: #d4a23a;
  --lime: #84c414;
  --shadow: 0 30px 70px rgba(36, 51, 22, 0.18);
  --soft-shadow: 0 16px 34px rgba(36, 51, 22, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 7% 20%, rgba(132, 196, 20, 0.22), transparent 26%),
    radial-gradient(circle at 96% 78%, rgba(132, 196, 20, 0.22), transparent 25%),
    linear-gradient(180deg, #f5fbef 0%, #eef8e7 48%, #f8fcf4 100%);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.48;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

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

img,
svg {
  display: block;
}

button,
input {
  font: inherit;
}

.loading {
  display: grid;
  min-height: 100vh;
  place-items: center;
  color: var(--green-deep);
  font-family: "Zilla Slab", Georgia, serif;
  font-size: 28px;
  font-weight: 700;
}

.loading.error {
  color: var(--tomato);
}

.page-shell {
  width: min(1240px, calc(100% - 44px));
  margin: 48px auto;
  overflow: hidden;
  border: 1px solid rgba(36, 51, 22, 0.08);
  border-radius: 28px;
  background: var(--cream);
  box-shadow: var(--shadow);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 23px;
  border: 0;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 850;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease;
  white-space: nowrap;
}

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

.btn-primary {
  background: var(--lime);
  color: var(--green-black);
}

.btn-primary:hover {
  background: #74ad10;
}

.btn-light {
  background: rgba(255, 253, 249, 0.92);
  color: var(--green-deep);
}

.site-nav {
  display: grid;
  grid-template-columns: minmax(230px, 0.52fr) minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  min-height: 94px;
  padding: 10px 54px;
  border-bottom: 1px solid rgba(36, 51, 22, 0.08);
  background: rgba(255, 253, 249, 0.94);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 280px;
}

.brand-lockup img {
  width: clamp(210px, 18vw, 280px);
  height: auto;
  object-fit: contain;
}

.site-nav--desktop-logo-size--small .brand-lockup img {
  width: clamp(180px, 15vw, 230px);
}

.site-nav--desktop-logo-size--large .brand-lockup img {
  width: clamp(250px, 22vw, 360px);
}

.site-nav--desktop-logo--center {
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 14px 28px;
  padding-top: 18px;
  padding-bottom: 18px;
}

.site-nav--desktop-logo--center .brand-lockup {
  grid-column: 1 / -1;
  justify-self: center;
  max-width: 380px;
}

.site-nav--desktop-logo--center .nav-links {
  grid-column: 1 / 3;
  grid-row: 2;
  justify-content: flex-start;
}

.site-nav--desktop-logo--center .nav-action {
  grid-column: 3;
  grid-row: 2;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3.4vw, 42px);
  color: var(--green-deep);
  font-size: 12px;
  font-weight: 800;
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--lime);
  content: "";
  opacity: 0;
  transform: scaleX(0.5);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.nav-links a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-action {
  justify-self: end;
  padding: 10px 17px;
  border-radius: 999px;
  background: var(--green-pale);
  color: var(--green-deep);
  font-size: 12px;
  font-weight: 850;
}

.hero {
  --hero-min-height: 615px;
  padding: 0;
  background: #fff;
}

.hero-height--compact {
  --hero-min-height: 500px;
}

.hero-height--tall {
  --hero-min-height: 730px;
}

.hero-main {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(290px, 0.9fr);
  min-height: var(--hero-min-height);
}

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

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

.hero-photo-panel > img,
.hero-tile img,
.proof-tile img,
.how-photo img,
.product-image img,
.blog-image img,
.shop-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(19, 33, 13, 0.86), rgba(19, 33, 13, 0.46) 53%, rgba(19, 33, 13, 0.1)),
    linear-gradient(0deg, rgba(19, 33, 13, 0.6), transparent 48%);
}

.hero-copy {
  position: absolute;
  z-index: 2;
  bottom: 82px;
  left: clamp(32px, 5vw, 68px);
  max-width: 690px;
  color: #fffdf9;
}

.hero-seal {
  width: 104px;
  height: 104px;
  margin-bottom: 20px;
  object-fit: contain;
  opacity: 0.86;
}

.hero-copy h1 {
  margin: 0;
  font-family: "Zilla Slab", Georgia, serif;
  font-size: clamp(50px, 6vw, 78px);
  font-weight: 700;
  line-height: 0.9;
  text-transform: uppercase;
}

.hero-copy h1 span {
  display: block;
}

.hero-copy h1 span:last-child {
  color: #f7ece5;
}

.hero-copy p {
  max-width: 520px;
  margin: 21px 0 26px;
  color: rgba(255, 253, 249, 0.84);
  font-size: clamp(15px, 1.7vw, 18px);
}

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

.hero-meta {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 28px;
  left: clamp(32px, 5vw, 68px);
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  color: rgba(255, 253, 249, 0.84);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.hero-meta strong {
  max-width: 220px;
  color: #fff;
  text-align: right;
}

.hero-side-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--green-black);
}

.hero-tile {
  position: relative;
  overflow: hidden;
  min-height: 100%;
}

.hero-tile::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(19, 33, 13, 0.1), rgba(19, 33, 13, 0.62)),
    radial-gradient(circle at center, transparent 28%, rgba(19, 33, 13, 0.45));
  content: "";
}

.hero-tile span {
  position: absolute;
  z-index: 1;
  right: 26px;
  bottom: 32px;
  left: 26px;
  color: #fffdf9;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 5px;
  text-align: center;
  text-transform: uppercase;
}

.hero-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 54px 24px;
  background: #fff;
}

.hero-featured {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--green-deep);
  font-size: 13px;
}

.hero-featured span {
  color: var(--muted);
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.hero-featured strong {
  font-family: "Zilla Slab", Georgia, serif;
  font-size: 20px;
}

.hero-featured em {
  color: var(--tomato);
  font-style: normal;
  font-weight: 850;
}

.category-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.category-chips span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--green-pale);
  color: var(--green-deep);
  font-size: 12px;
  font-weight: 800;
}

.section {
  padding: 76px 54px;
}

.section-size--compact {
  padding-top: 52px;
  padding-bottom: 52px;
}

.section-size--tall {
  padding-top: 108px;
  padding-bottom: 108px;
}

.section-head {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) auto;
  gap: 30px;
  align-items: start;
  margin-bottom: 34px;
}

.section-head > span {
  color: var(--muted);
  font-family: Oswald, "Arial Narrow", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.section-head h2 {
  max-width: 680px;
  margin: 0;
  color: var(--green);
  font-family: "Zilla Slab", Georgia, serif;
  font-size: clamp(34px, 4.5vw, 58px);
  font-weight: 700;
  line-height: 0.98;
}

.section-head p {
  max-width: 610px;
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.section-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 17px;
  border-radius: 999px;
  background: var(--lime);
  color: var(--green-black);
  font-size: 12px;
  font-weight: 850;
  white-space: nowrap;
}

.about-section {
  background: #fff;
}

.proof-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.08fr 1.08fr 0.8fr;
  gap: 18px;
  align-items: end;
}

.proof-stat,
.proof-tile {
  min-height: 176px;
  border-radius: 16px;
  box-shadow: var(--soft-shadow);
}

.proof-stat {
  display: grid;
  align-content: center;
  padding: 24px;
  background: #fff;
  color: var(--green);
}

.proof-stat strong {
  font-family: "Zilla Slab", Georgia, serif;
  font-size: 48px;
  line-height: 1;
}

.proof-stat span {
  margin-top: 6px;
  color: var(--green-deep);
  font-size: 13px;
  font-weight: 850;
}

.proof-tile {
  position: relative;
  overflow: hidden;
  min-height: 196px;
}

.proof-tile::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(19, 33, 13, 0.72));
  content: "";
}

.proof-tile div {
  position: absolute;
  z-index: 1;
  right: 18px;
  bottom: 17px;
  left: 18px;
  color: #fffdf9;
}

.proof-tile strong {
  display: block;
  font-family: "Zilla Slab", Georgia, serif;
  font-size: 34px;
  line-height: 1;
}

.proof-tile span {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  font-weight: 800;
}

.proof-dark {
  background: var(--green);
}

.stand-section {
  background: linear-gradient(180deg, #fff, var(--green-pale));
}

.share-section {
  background:
    radial-gradient(circle at 88% 15%, rgba(212, 162, 58, 0.2), transparent 30%),
    linear-gradient(180deg, #fff, var(--paper));
}

.stand-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1fr);
  gap: 22px;
}

.stand-card,
.stand-stock,
.accordion-item,
.product-card,
.blog-card,
.shop-card,
.join-card {
  border: 1px solid rgba(36, 51, 22, 0.08);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.stand-card {
  padding: 28px;
  background:
    radial-gradient(circle at 90% 12%, rgba(212, 162, 58, 0.26), transparent 34%),
    var(--green-deep);
  color: #fffdf9;
}

.stand-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.12);
  color: #eff9e7;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.stand-status span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--lime);
  box-shadow: 0 0 0 5px rgba(132, 196, 20, 0.18);
}

.muted-status span {
  background: var(--gold);
}

.stand-card h3 {
  margin: 22px 0 4px;
  font-family: "Zilla Slab", Georgia, serif;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 0.98;
}

.stand-time {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 22px;
  font-weight: 850;
}

.stand-card p {
  margin: 0;
  color: rgba(255, 253, 249, 0.78);
}

.payment-card {
  margin-top: 28px;
  padding: 18px;
  border-radius: 15px;
  background: rgba(255, 253, 249, 0.1);
}

.payment-card span {
  display: block;
  color: rgba(255, 253, 249, 0.7);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.payment-card strong {
  display: block;
  margin-top: 4px;
  color: #fff;
  font-size: 18px;
}

.stand-stock {
  display: grid;
  grid-template-columns: minmax(210px, 0.68fr) minmax(0, 1fr);
  gap: 24px;
  padding: 28px;
}

.stand-stock h3 {
  margin: 0 0 9px;
  color: var(--green);
  font-family: "Zilla Slab", Georgia, serif;
  font-size: 31px;
  line-height: 1.05;
}

.stand-stock p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.stock-list {
  display: grid;
  gap: 10px;
}

.stock-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 15px;
  border-radius: 12px;
  background: var(--green-pale);
}

.stock-row strong,
.stock-row em {
  display: block;
}

.stock-row strong {
  color: var(--green-deep);
  font-size: 14px;
}

.stock-row em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
}

.stock-row b {
  color: var(--tomato);
  font-size: 14px;
  white-space: nowrap;
}

.how-section {
  background: #fff;
}

.how-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1fr);
  gap: 26px;
  align-items: stretch;
}

.how-photo {
  overflow: hidden;
  min-height: 430px;
  border-radius: 18px;
  box-shadow: var(--soft-shadow);
}

.accordion-list {
  display: grid;
  gap: 12px;
  align-content: start;
}

.accordion-item {
  overflow: hidden;
  background: var(--green-pale);
  box-shadow: none;
}

.accordion-item.active {
  background: var(--green);
  color: #fffdf9;
}

.accordion-item button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  min-height: 58px;
  padding: 0 20px;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-size: 15px;
  font-weight: 850;
  text-align: left;
}

.accordion-item b {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.76);
  color: var(--green-deep);
}

.accordion-item p {
  display: none;
  margin: 0;
  padding: 0 20px 20px;
  color: rgba(255, 253, 249, 0.82);
  font-size: 14px;
}

.accordion-item.active p {
  display: block;
}

.product-section {
  background: linear-gradient(180deg, var(--green-pale), #fff);
}

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

.product-card {
  overflow: hidden;
  min-width: 0;
  border-radius: 15px;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(36, 51, 22, 0.15);
}

.product-image {
  position: relative;
  display: block;
  overflow: hidden;
  height: 178px;
}

.product-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(19, 33, 13, 0.08), rgba(19, 33, 13, 0.34));
  content: "";
}

.product-image span {
  position: absolute;
  z-index: 1;
  top: 10px;
  left: 10px;
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--tomato);
  color: #fff;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.product-body {
  padding: 16px;
}

.product-kicker {
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.product-body h3 {
  margin: 8px 0 5px;
  color: var(--green-deep);
  font-size: 17px;
  line-height: 1.12;
}

.product-body p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.product-body .disclaimer {
  margin-top: 9px;
  color: #8e8674;
  font-size: 11px;
  font-style: italic;
}

.product-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 14px;
}

.product-foot strong {
  color: var(--green);
  font-size: 16px;
}

.product-foot a {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--lime);
  color: var(--green-black);
  font-size: 11px;
  font-weight: 850;
  white-space: nowrap;
}

.shop-section {
  background:
    radial-gradient(circle at 12% 16%, rgba(212, 162, 58, 0.16), transparent 27%),
    linear-gradient(180deg, #fff, var(--paper));
}

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

.shop-card {
  overflow: hidden;
  min-width: 0;
}

.shop-image {
  position: relative;
  display: grid;
  height: 230px;
  place-items: center;
  overflow: hidden;
  background: var(--green-pale);
}

.shop-image img {
  padding: 18px;
  object-fit: contain;
}

.shop-image span,
.blog-image span {
  position: absolute;
  z-index: 1;
  top: 12px;
  left: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--green-deep);
  color: #fffdf9;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.shop-body {
  padding: 18px;
}

.shop-body h3 {
  margin: 8px 0 7px;
  color: var(--green-deep);
  font-family: "Zilla Slab", Georgia, serif;
  font-size: 26px;
  line-height: 1;
}

.shop-body p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.shop-note {
  margin-top: 10px !important;
  color: #8e8674 !important;
  font-size: 11px !important;
  font-style: italic;
}

.blog-section {
  background: #fff;
}

.blog-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  gap: 16px;
}

.blog-card {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  min-width: 0;
  overflow: hidden;
}

.blog-card--feature {
  grid-row: span 2;
  grid-template-columns: 1fr;
}

.blog-image {
  position: relative;
  min-height: 210px;
  overflow: hidden;
}

.blog-card--feature .blog-image {
  min-height: 330px;
}

.blog-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(19, 33, 13, 0.06), rgba(19, 33, 13, 0.26));
  content: "";
}

.blog-body {
  display: grid;
  align-content: center;
  padding: 22px;
}

.blog-body time {
  color: var(--tomato);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.blog-body h3 {
  margin: 9px 0 8px;
  color: var(--green-deep);
  font-family: "Zilla Slab", Georgia, serif;
  font-size: clamp(25px, 3vw, 38px);
  line-height: 1;
}

.blog-body p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.join-section {
  background: #fff;
}

.join-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1fr);
  gap: 26px;
  align-items: center;
  padding: 36px;
  background:
    radial-gradient(circle at 12% 80%, rgba(132, 196, 20, 0.2), transparent 26%),
    var(--green-deep);
  color: #fffdf9;
}

.join-card img {
  width: 92px;
  height: 92px;
  margin-bottom: 16px;
  border-radius: 50%;
  object-fit: cover;
}

.join-card h2 {
  margin: 0;
  font-family: "Zilla Slab", Georgia, serif;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 0.98;
}

.join-card p {
  max-width: 520px;
  margin: 13px 0 0;
  color: rgba(255, 253, 249, 0.78);
}

.sms-line {
  font-size: 13px;
  font-weight: 800;
}

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

.join-form label {
  display: grid;
  gap: 7px;
  color: rgba(255, 253, 249, 0.78);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.join-form input {
  width: 100%;
  min-height: 50px;
  padding: 0 16px;
  border: 1px solid rgba(255, 253, 249, 0.16);
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.96);
  color: var(--ink);
  outline: none;
}

.join-form button {
  grid-column: 1 / -1;
  width: fit-content;
  min-width: 190px;
}

.form-message {
  grid-column: 1 / -1;
  min-height: 21px;
  margin: 0;
  color: var(--gold);
  font-weight: 850;
}

footer {
  padding: 42px 54px 48px;
  border-top: 1px solid var(--line);
  background: var(--cream);
  color: var(--muted);
  text-align: center;
  font-size: 13px;
}

footer img {
  width: 118px;
  height: 118px;
  margin: 0 auto 14px;
  object-fit: contain;
}

footer p {
  margin: 7px auto 0;
}

.footer-lockup {
  color: var(--tomato);
  font-family: Oswald, "Arial Narrow", sans-serif;
  font-weight: 700;
  letter-spacing: 2.3px;
  text-transform: uppercase;
}

.footer-disclaimer {
  max-width: 680px;
  color: #8f887a;
  font-size: 12px;
  font-style: italic;
}

.blog-page,
.blog-post {
  padding: 76px 54px;
}

.blog-hero,
.blog-post header {
  max-width: 780px;
  margin-bottom: 38px;
}

.blog-hero span,
.blog-post header span,
.back-link {
  color: var(--tomato);
  font-family: Oswald, "Arial Narrow", sans-serif;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.blog-hero h1,
.blog-post h1 {
  margin: 9px 0 14px;
  color: var(--green-deep);
  font-family: "Zilla Slab", Georgia, serif;
  font-size: clamp(44px, 7vw, 78px);
  line-height: 0.95;
}

.blog-hero p,
.blog-post header p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

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

.blog-grid--index .blog-card,
.blog-grid--index .blog-card--feature {
  grid-row: auto;
  grid-template-columns: 0.9fr 1fr;
}

.blog-post header img {
  width: 100%;
  height: clamp(280px, 48vw, 520px);
  margin-top: 28px;
  border-radius: 22px;
  object-fit: cover;
  box-shadow: var(--soft-shadow);
}

.post-body {
  max-width: 760px;
}

.post-body section {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.post-body h2,
.post-cta h2 {
  margin: 0 0 8px;
  color: var(--green-deep);
  font-family: "Zilla Slab", Georgia, serif;
  font-size: 30px;
  line-height: 1;
}

.post-body p,
.post-cta p {
  margin: 0;
  color: var(--muted);
}

.post-cta {
  max-width: 760px;
  margin-top: 34px;
  padding: 28px;
  border-radius: 22px;
  background: var(--green-pale);
}

.post-cta .btn {
  margin-top: 18px;
}

@media (max-width: 1040px) {
  .page-shell {
    width: min(100% - 28px, 1240px);
    margin: 28px auto;
  }

  .site-nav {
    grid-template-columns: minmax(220px, 1fr) auto;
    padding: 12px 28px;
  }

  .site-nav--desktop-logo--center {
    grid-template-columns: 1fr auto;
  }

  .site-nav--desktop-logo--center .brand-lockup {
    grid-column: 1 / -1;
  }

  .site-nav--desktop-logo--center .nav-links {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .site-nav--desktop-logo--center .nav-action {
    grid-column: 2;
    grid-row: 3;
  }

  .nav-links {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero-main,
  .stand-layout,
  .stand-stock,
  .how-layout,
  .join-card {
    grid-template-columns: 1fr;
  }

  .hero-main {
    min-height: auto;
  }

  .hero-photo-panel {
    min-height: var(--hero-min-height);
  }

  .hero-side-grid {
    min-height: 310px;
  }

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

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

  .blog-card,
  .blog-card--feature {
    grid-row: auto;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  body {
    background: var(--cream);
  }

  .page-shell {
    width: 100%;
    margin: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .site-nav {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 14px 18px;
  }

  .site-nav--desktop-logo--center {
    grid-template-columns: 1fr;
  }

  .site-nav--desktop-logo--center .brand-lockup,
  .site-nav--desktop-logo--center .nav-links,
  .site-nav--desktop-logo--center .nav-action {
    grid-column: 1;
  }

  .site-nav--desktop-logo--center .nav-action {
    grid-row: auto;
  }

  .brand-lockup {
    max-width: min(240px, 74vw);
  }

  .site-nav--mobile-logo--left .brand-lockup {
    justify-self: start;
  }

  .site-nav--mobile-logo--center .brand-lockup {
    justify-self: center;
  }

  .site-nav--mobile-logo--center .nav-links {
    justify-content: center;
    text-align: center;
  }

  .site-nav--mobile-logo--center .nav-action {
    justify-self: center;
  }

  .brand-lockup img,
  .site-nav--mobile-logo-size--standard .brand-lockup img {
    width: clamp(190px, 58vw, 230px);
  }

  .site-nav--mobile-logo-size--small .brand-lockup img {
    width: clamp(165px, 52vw, 210px);
  }

  .site-nav--mobile-logo-size--large .brand-lockup img {
    width: clamp(220px, 76vw, 290px);
  }

  .nav-links {
    width: 100%;
    gap: 18px;
    font-size: 11px;
  }

  .nav-action {
    justify-self: start;
  }

  .hero-photo-panel {
    min-height: var(--hero-min-height);
  }

  .hero-copy {
    right: 22px;
    bottom: 96px;
    left: 22px;
  }

  .hero-copy h1 {
    font-size: clamp(44px, 15vw, 64px);
  }

  .hero-copy p {
    font-size: 15px;
  }

  .hero-seal {
    width: 84px;
    height: 84px;
    margin-bottom: 14px;
  }

  .hero-meta {
    right: 22px;
    bottom: 22px;
    left: 22px;
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .hero-meta strong {
    text-align: left;
  }

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

  .hero-tile {
    min-height: 230px;
  }

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

  .category-chips {
    justify-content: flex-start;
  }

  .section {
    padding: 56px 18px;
  }

  .section-size--compact {
    padding-top: 38px;
    padding-bottom: 38px;
  }

  .section-size--tall {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .section-head {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .section-head h2 {
    font-size: clamp(32px, 10vw, 44px);
  }

  .proof-grid,
  .product-grid,
  .blog-grid,
  .shop-grid,
  .join-form {
    grid-template-columns: 1fr;
  }

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

  .stand-card,
  .stand-stock,
  .join-card {
    padding: 24px;
  }

  .how-photo {
    min-height: 310px;
  }

  .product-image {
    height: 220px;
  }

  .join-form button {
    width: 100%;
  }

  footer {
    padding: 38px 18px;
  }

  .blog-page,
  .blog-post {
    padding: 56px 18px;
  }

  .blog-grid--index,
  .blog-grid--index .blog-card,
  .blog-grid--index .blog-card--feature {
    grid-template-columns: 1fr;
  }
}

.editor-mode {
  scroll-behavior: smooth;
}

.editor-mode body {
  cursor: crosshair;
}

.editor-mode [data-editor-target],
.editor-mode [data-editor-product],
.editor-mode [data-editor-hero-tile],
.editor-mode [data-editor-blog-post],
.editor-mode [data-editor-shop-item] {
  position: relative;
}

.editor-mode [data-editor-target]::before,
.editor-mode [data-editor-product]::before,
.editor-mode [data-editor-hero-tile]::before,
.editor-mode [data-editor-blog-post]::before,
.editor-mode [data-editor-shop-item]::before {
  position: absolute;
  inset: 8px;
  z-index: 20;
  border: 2px dashed rgba(132, 196, 20, 0.72);
  border-radius: 18px;
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.editor-mode [data-editor-target]::after,
.editor-mode [data-editor-product]::after,
.editor-mode [data-editor-hero-tile]::after,
.editor-mode [data-editor-blog-post]::after,
.editor-mode [data-editor-shop-item]::after {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 21;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(14, 16, 23, 0.92);
  color: #f6f1e3;
  content: "Click to edit";
  font-family: "Proxima Nova Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  opacity: 0;
  pointer-events: none;
  text-transform: uppercase;
  transition: opacity 160ms ease;
}

.editor-mode [data-editor-target]:hover::before,
.editor-mode [data-editor-target]:hover::after,
.editor-mode [data-editor-product]:hover::before,
.editor-mode [data-editor-product]:hover::after,
.editor-mode [data-editor-hero-tile]:hover::before,
.editor-mode [data-editor-hero-tile]:hover::after,
.editor-mode [data-editor-blog-post]:hover::before,
.editor-mode [data-editor-blog-post]:hover::after,
.editor-mode [data-editor-shop-item]:hover::before,
.editor-mode [data-editor-shop-item]:hover::after,
.editor-mode .is-editor-selected::before,
.editor-mode .is-editor-selected::after {
  opacity: 1;
}

.editor-mode .is-editor-selected::before {
  border-color: #d4a23a;
  box-shadow: 0 0 0 9999px rgba(14, 16, 23, 0.08);
}

.editor-mode [data-editor-product].is-editor-selected::before {
  inset: 4px;
  border-radius: 14px;
}

.editor-mode [data-editor-hero-tile].is-editor-selected::before {
  inset: 5px;
  border-radius: 18px;
}

/* Lead capture consent line */
.join-form .consent-line {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.8rem;
  line-height: 1.35;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}
.join-form .consent-line input[type="checkbox"] {
  width: auto;
  margin-top: 0.15rem;
  flex: 0 0 auto;
}
