:root {
  --aubergine: #70566d;
  --aubergine-deep: #4f3e4d;
  --forest: #587061;
  --moss: #82957e;
  --lime: #dfe6d5;
  --cream: #f3efe7;
  --paper: #faf8f3;
  --coral: #ca927c;
  --terracotta: #b87962;
  --ink: #343033;
  --muted: #777173;
  --line: rgba(52, 48, 51, .12);
  --shell: min(1180px, calc(100vw - 40px));
  --serif: "Lora", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  opacity: .18;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.23'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.shell { width: var(--shell); margin-inline: auto; }
.section { padding: 120px 0; }
.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;
  left: 16px;
  top: -100px;
  z-index: 2000;
  padding: 12px 18px;
  color: #fff;
  background: var(--aubergine);
  border-radius: 999px;
  text-decoration: none;
  transition: top .2s;
}
.skip-link:focus { top: 12px; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 20px;
  color: var(--aubergine);
  font-size: .73rem;
  font-weight: 600;
  letter-spacing: .15em;
  line-height: 1.2;
  text-transform: uppercase;
}
.eyebrow > span {
  width: 28px;
  height: 1px;
  background: currentColor;
}
.eyebrow-light { color: var(--forest); }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.02; }
h2 { margin-bottom: 0; font-size: clamp(2.7rem, 5.8vw, 5.15rem); letter-spacing: -.045em; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .02em;
  line-height: 1;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-3px); }
.button svg { width: 19px; height: 19px; fill: currentColor; }
.button-primary {
  color: #fff;
  background: var(--aubergine);
  box-shadow: 0 10px 26px rgba(68, 34, 79, .2);
}
.button-primary:hover { box-shadow: 0 14px 32px rgba(68, 34, 79, .28); }
.button-secondary {
  color: var(--aubergine-deep);
  background: rgba(255, 255, 255, .52);
  border-color: rgba(112, 86, 109, .28);
  box-shadow: 0 8px 22px rgba(79, 62, 77, .06);
}
.button-secondary:hover { background: #fff; border-color: rgba(112, 86, 109, .48); }
.button-dark { color: #fff; background: var(--aubergine-deep); }
.button-route { color: var(--aubergine-deep); background: transparent; border-color: rgba(112, 86, 109, .3); }
.button-route:hover { background: rgba(112, 86, 109, .08); }
.button-light { color: var(--aubergine); background: var(--paper); }
.button-small { min-height: 44px; padding: 0 19px; font-size: .76rem; }
.button-small svg { width: 16px; height: 16px; }
.button.is-disabled { opacity: .4; pointer-events: none; box-shadow: none; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-block: 6px;
  border-bottom: 1px solid currentColor;
  font-size: .82rem;
  font-weight: 600;
  text-decoration: none;
}
.text-link span { transition: transform .2s; }
.text-link:hover span { transform: translateY(3px); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  color: var(--ink);
  border-bottom: 1px solid transparent;
  transition: background .25s, border-color .25s, box-shadow .25s;
}
.site-header.is-scrolled {
  background: rgba(251, 247, 236, .92);
  border-color: var(--line);
  box-shadow: 0 8px 30px rgba(35, 29, 31, .05);
  backdrop-filter: blur(14px);
}
.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.brand img {
  width: 188px;
  height: auto;
  object-fit: contain;
}
.site-nav { display: flex; align-items: center; gap: 20px; }
.site-nav > a:not(.button) {
  position: relative;
  font-size: .8rem;
  font-weight: 500;
  text-decoration: none;
}
.site-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  inset: auto 0 -7px;
  height: 1px;
  background: var(--aubergine);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s;
}
.site-nav > a:not(.button):hover::after { transform: scaleX(1); transform-origin: left; }
.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: 820px;
  padding: 145px 0 80px;
  overflow: hidden;
  background: linear-gradient(135deg, #fbfaf6 0%, #f3f0e9 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(500px, 1.1fr);
  align-items: center;
  gap: 40px;
}
.hero-copy { position: relative; z-index: 3; padding: 30px 0; }
.hero h1 {
  max-width: 680px;
  margin-bottom: 27px;
  font-size: clamp(3.75rem, 6.3vw, 6.15rem);
  letter-spacing: -.062em;
}
.hero h1 em, .story h2 em {
  color: var(--aubergine);
  font-weight: 500;
}
.hero-lead {
  max-width: 590px;
  margin-bottom: 32px;
  color: #5f5658;
  font-size: 1.08rem;
  line-height: 1.7;
}
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 24px; }
.hero-socials {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 36px;
}
.hero-socials-label {
  flex-basis: 100%;
  margin-bottom: 2px;
  color: var(--muted);
  font-size: .59rem;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.social-pill {
  min-height: 39px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 13px;
  color: var(--ink);
  background: rgba(255, 255, 255, .45);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .68rem;
  font-weight: 600;
  line-height: 1.1;
  text-decoration: none;
  transition: background .2s, border-color .2s, transform .2s;
}
.social-pill:hover { background: #fff; border-color: rgba(112, 86, 109, .28); transform: translateY(-2px); }
.social-pill svg { width: 15px; height: 15px; flex: 0 0 auto; fill: var(--aubergine); }
.social-pill small { margin-left: 3px; color: var(--muted); font-size: .61rem; font-weight: 400; }
.social-instagram { background: #f6edf1; border-color: rgba(112, 86, 109, .15); }

.hero-art {
  position: relative;
  align-self: center;
  min-height: 470px;
  padding: 14px;
  background: rgba(255, 255, 255, .45);
  border: 1px solid rgba(52, 48, 51, .09);
  border-radius: 34px 34px 9px 34px;
  box-shadow: 0 24px 60px rgba(68, 62, 64, .12);
}
.hero-art picture { display: block; height: 100%; min-height: 440px; overflow: hidden; border-radius: 24px 24px 5px 24px; }
.hero-art img { width: 100%; height: 100%; min-height: 440px; object-fit: cover; object-position: 50% center; }
.photo-note {
  position: absolute;
  left: 32px;
  bottom: 32px;
  min-width: 175px;
  margin: 0;
  padding: 12px 16px;
  color: var(--ink);
  background: rgba(250, 248, 243, .88);
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(35, 31, 33, .12);
  backdrop-filter: blur(10px);
}
.photo-note span { display: block; font-size: .55rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; opacity: .65; }
.photo-note strong { display: block; margin-top: 2px; font-family: var(--serif); font-size: 1.15rem; font-weight: 500; }
.hero-orbit {
  position: absolute;
  border: 1px solid rgba(68, 34, 79, .11);
  border-radius: 50%;
  pointer-events: none;
}
.hero-orbit-one { width: 430px; height: 430px; left: -315px; top: 170px; opacity: .45; }
.hero-orbit-two { display: none; }

.garden-ticker {
  overflow: hidden;
  padding: 14px 0;
  color: var(--cream);
  background: var(--aubergine);
  border-block: 1px solid var(--aubergine-deep);
  font-family: var(--serif);
  font-size: .86rem;
  letter-spacing: .03em;
  white-space: nowrap;
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 34s linear infinite;
}
.ticker-group {
  min-width: 100vw;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 20px;
  padding-inline: 20px;
}
.garden-ticker span { flex: 0 0 auto; margin-inline: 12px; }
.garden-ticker i { color: var(--coral); font-style: normal; }
@keyframes ticker { to { transform: translateX(-50%); } }

.catalog { background: var(--cream); }
.section-heading {
  display: grid;
  grid-template-columns: 1.45fr .55fr;
  align-items: end;
  gap: 60px;
  margin-bottom: 47px;
}
.section-heading h2 { max-width: 780px; }
.section-heading > p {
  max-width: 370px;
  margin: 0 0 6px;
  color: var(--muted);
  font-size: .9rem;
}
.filter-row { display: flex; gap: 9px; margin-bottom: 28px; overflow-x: auto; scrollbar-width: none; }
.filter-row::-webkit-scrollbar { display: none; }
.filter-chip {
  flex: 0 0 auto;
  padding: 10px 17px;
  color: var(--muted);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  font-size: .75rem;
  font-weight: 500;
  transition: color .2s, background .2s, border-color .2s;
}
.filter-chip:hover, .filter-chip.is-active { color: #fff; background: var(--aubergine); border-color: var(--aubergine); }
.catalog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.category-card {
  position: relative;
  min-height: 500px;
  padding: 0 26px 28px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(35, 29, 31, .12);
  border-radius: 3px;
  transition: transform .28s ease, box-shadow .28s ease, opacity .25s;
}
.category-card:hover { transform: translateY(-7px) rotate(-.35deg); box-shadow: 0 18px 38px rgba(35, 29, 31, .09); }
.category-card.is-hidden { display: none; }
.card-number {
  position: absolute;
  right: 21px;
  top: 14px;
  z-index: 3;
  color: #fff;
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-shadow: 0 1px 8px rgba(0, 0, 0, .55);
}
.card-cream { background: #fbf8f1; }
.card-purple { color: var(--ink); background: #f3edf2; }
.card-green { color: var(--ink); background: #edf2ed; }
.card-coral { background: #f7eee9; }
.card-lime { background: #f1f3ea; }
.card-paper { background: #ede6d6; }

/* Journal preview */
.journal-preview { background: var(--paper); }
.journal-preview-grid {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: clamp(40px, 7vw, 100px);
  align-items: center;
}
.journal-preview-copy h2 { max-width: 470px; }
.journal-preview-copy > p:last-child { max-width: 430px; margin: 27px 0 0; color: var(--muted); }
.journal-card {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  min-height: 430px;
  overflow: hidden;
  color: var(--ink);
  background: #f0eae1;
  border: 1px solid var(--line);
  border-radius: 4px 28px 4px 4px;
  text-decoration: none;
  transition: transform .3s ease, box-shadow .3s ease;
}
.journal-card:hover { transform: translateY(-6px); box-shadow: 0 24px 52px rgba(52, 48, 51, .11); }
.journal-card > img { width: 100%; height: 100%; object-fit: cover; }
.journal-card-copy { display: flex; flex-direction: column; justify-content: flex-end; padding: 38px; }
.journal-card-copy > span { margin-bottom: 15px; color: var(--aubergine); font-size: .65rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.journal-card-copy h2,
.journal-card-copy h3 { margin-bottom: 17px; font-size: clamp(1.8rem, 2.5vw, 2.65rem); letter-spacing: -.035em; }
.journal-card-copy p { color: var(--muted); font-size: .86rem; }
.journal-card-copy b { display: flex; justify-content: space-between; margin-top: 28px; padding-top: 17px; border-top: 1px solid var(--line); font-size: .75rem; }
.journal-card-copy i { font-style: normal; transition: transform .2s; }
.journal-card:hover i { transform: translate(3px, -3px); }

/* Journal and article pages */
.journal-page { padding-top: 78px; }
.journal-masthead { padding: 105px 0 80px; background: var(--cream); }
.journal-masthead-inner { display: grid; grid-template-columns: 1.25fr .75fr; align-items: end; gap: 70px; }
.journal-masthead h1 { max-width: 760px; margin-bottom: 0; font-size: clamp(3.4rem, 7vw, 6.8rem); letter-spacing: -.055em; }
.journal-masthead p:last-child { max-width: 430px; margin: 0 0 10px; color: var(--muted); }
.journal-list { padding: 80px 0 120px; }
.journal-list-grid { display: grid; gap: 24px; }
.journal-list .journal-card { max-width: 920px; }
.journal-list .journal-card:nth-child(even) { margin-left: auto; }

.article-page { padding-top: 78px; }
.article-hero { padding: 82px 0 55px; background: var(--cream); }
.article-kicker { margin-bottom: 22px; color: var(--aubergine); font-size: .7rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.article-hero h1 { max-width: 970px; margin-bottom: 30px; font-size: clamp(3.25rem, 7.2vw, 7rem); letter-spacing: -.055em; }
.article-standfirst { max-width: 750px; color: var(--muted); font-family: var(--serif); font-size: clamp(1.25rem, 2.2vw, 1.75rem); line-height: 1.48; }
.article-meta { display: flex; flex-wrap: wrap; gap: 10px 22px; margin: 35px 0 0; color: var(--muted); font-size: .72rem; }
.article-cover { width: var(--shell); height: min(64vw, 650px); margin: 0 auto; overflow: hidden; border-radius: 5px 5px 34px 5px; }
.article-cover img { width: 100%; height: 100%; object-fit: cover; }
.quick-read { padding: 85px 0; background: #e8ede3; }
.quick-read-heading { display: grid; grid-template-columns: .5fr 1.5fr; gap: 45px; align-items: end; margin-bottom: 40px; }
.quick-read-heading > p { margin: 0 0 8px; color: var(--forest); font-size: .68rem; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; }
.quick-read-heading h2 { max-width: 720px; font-size: clamp(2.6rem, 5vw, 4.8rem); }
.quick-read-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(88,112,97,.28); border-bottom: 1px solid rgba(88,112,97,.28); }
.quick-read-grid article { position: relative; min-height: 285px; padding: 34px 34px 30px 0; }
.quick-read-grid article + article { padding-left: 34px; border-left: 1px solid rgba(88,112,97,.28); }
.quick-read-grid span { color: var(--forest); font-size: .62rem; font-weight: 600; letter-spacing: .12em; }
.quick-read-grid h3 { margin: 45px 0 15px; font-size: clamp(1.7rem, 2.5vw, 2.5rem); }
.quick-read-grid p { margin: 0; color: #555e57; font-size: .88rem; line-height: 1.7; }
.quick-read-line { margin: 25px 0 0; color: var(--forest); font-family: var(--serif); font-size: clamp(1.1rem, 2vw, 1.45rem); }
.article-layout { display: grid; grid-template-columns: 190px minmax(0, 720px); justify-content: center; gap: 65px; padding: 90px 0 115px; }
.article-aside { position: sticky; top: 115px; align-self: start; }
.article-aside span { display: block; margin-bottom: 13px; color: var(--aubergine); font-size: .63rem; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; }
.article-aside a { display: block; padding: 7px 0; color: var(--muted); font-size: .72rem; line-height: 1.35; text-decoration: none; }
.article-aside a:hover { color: var(--aubergine); }
.article-body { min-width: 0; }
.article-body > p:first-child::first-letter { float: left; margin: 7px 10px 0 0; color: var(--aubergine); font-family: var(--serif); font-size: 4.7rem; line-height: .72; }
.article-body p, .article-body li { color: #514c4f; font-size: 1.03rem; line-height: 1.85; }
.article-body h2 { margin: 78px 0 25px; font-size: clamp(2.35rem, 4.6vw, 4rem); }
.article-body h3 { margin: 40px 0 15px; font-size: 1.6rem; line-height: 1.25; }
.article-body a { color: var(--aubergine); text-underline-offset: 3px; }
.article-note { margin: 45px 0; padding: 28px 30px; background: var(--lime); border-left: 4px solid var(--forest); border-radius: 0 14px 14px 0; }
.article-note strong { display: block; margin-bottom: 7px; color: var(--forest); font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; }
.article-note p { margin: 0; font-size: .92rem; }
.soil-table { width: 100%; margin: 35px 0; border-collapse: collapse; font-size: .88rem; }
.soil-table th, .soil-table td { padding: 18px 14px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--line); }
.soil-table th { color: var(--aubergine); font-size: .67rem; letter-spacing: .1em; text-transform: uppercase; }
.soil-table td:first-child { font-family: var(--serif); font-size: 1.08rem; }
.article-cta { margin-top: 70px; padding: 38px; color: var(--paper); background: var(--aubergine); border-radius: 4px 24px 4px 4px; }
.article-cta h2 { margin: 0 0 16px; font-size: clamp(2rem, 4vw, 3.4rem); }
.article-cta p { color: rgba(255,255,255,.76); }
.article-sources { margin-top: 60px; padding-top: 28px; border-top: 1px solid var(--line); }
.article-sources h3 { margin-top: 0; font-family: var(--sans); font-size: .7rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.article-sources li { margin-bottom: 8px; font-size: .78rem; line-height: 1.5; }
.related-reading { margin-top: 65px; padding: 30px; background: #f0eae1; border: 1px solid var(--line); border-radius: 4px 20px 4px 4px; }
.related-reading > span { color: var(--aubergine); font-size: .63rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.related-reading h3 { margin: 15px 0 12px; font-size: clamp(1.6rem, 3vw, 2.4rem); }
.related-reading p { margin-bottom: 18px; font-size: .88rem; }
.related-reading a { font-size: .78rem; font-weight: 600; }
.planting-steps { margin: 35px 0; padding: 0; list-style: none; counter-reset: planting-step; }
.planting-steps li { position: relative; min-height: 82px; padding: 0 0 25px 70px; counter-increment: planting-step; border-bottom: 1px solid var(--line); }
.planting-steps li + li { padding-top: 25px; }
.planting-steps li::before { content: counter(planting-step, decimal-leading-zero); position: absolute; left: 0; top: 3px; color: var(--aubergine); font-family: var(--serif); font-size: 1.35rem; }
.planting-steps li + li::before { top: 28px; }
.planting-rule { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin: 40px 0; overflow: hidden; background: var(--line); border: 1px solid var(--line); border-radius: 4px 18px 4px 4px; }
.planting-rule div { padding: 25px; background: var(--cream); }
.planting-rule strong { display: block; margin-bottom: 8px; color: var(--aubergine); font-family: var(--serif); font-size: 1.35rem; }
.planting-rule span { color: var(--muted); font-size: .78rem; line-height: 1.5; }
.plant-comparison { margin: 38px 0 48px; overflow-x: auto; border: 1px solid var(--line); border-radius: 4px 20px 4px 4px; }
.plant-comparison table { width: 100%; min-width: 620px; border-collapse: collapse; background: var(--paper); }
.plant-comparison th,
.plant-comparison td { padding: 18px 20px; border-bottom: 1px solid var(--line); color: #514c4f; font-size: .83rem; line-height: 1.5; text-align: left; vertical-align: top; }
.plant-comparison thead th { color: var(--paper); background: var(--forest); font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; }
.plant-comparison tbody th { width: 25%; color: var(--aubergine); background: var(--cream); font-weight: 600; }
.plant-comparison tbody tr:last-child th,
.plant-comparison tbody tr:last-child td { border-bottom: 0; }
.comparison-figure { width: var(--shell); margin: 0 auto; }
.comparison-figure .article-cover { width: 100%; margin: 0; }
.comparison-cover { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; background: var(--paper); }
.comparison-cover > div { position: relative; min-width: 0; overflow: hidden; }
.comparison-cover img { display: block; width: 100%; height: 100%; object-fit: cover; }
.comparison-cover > div:first-child img { object-position: center 36%; }
.comparison-cover > div:last-child img { object-position: center; }
.comparison-cover span { position: absolute; bottom: 18px; left: 18px; padding: 9px 13px; color: var(--paper); background: rgba(45, 37, 43, .82); border-radius: 999px; font-size: .68rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; backdrop-filter: blur(7px); }
.comparison-figure figcaption { padding: 11px 4px 0; color: var(--muted); font-size: .65rem; line-height: 1.5; }
.card-photo { height: 235px; margin: 0 -26px 23px; overflow: hidden; background: #ddd8ce; }
.card-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.category-card:hover .card-photo img { transform: scale(1.035); }
.card-copy { position: relative; z-index: 3; margin-top: auto; }
.card-copy > p {
  margin-bottom: 9px;
  font-size: .63rem;
  font-weight: 600;
  letter-spacing: .15em;
  line-height: 1.2;
  text-transform: uppercase;
  opacity: .72;
}
.card-copy h3 { margin-bottom: 12px; font-size: 2rem; letter-spacing: -.025em; }
.card-copy > span { display: block; margin-bottom: 19px; font-size: .78rem; line-height: 1.55; opacity: .76; }
.card-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid currentColor;
  font-size: .72rem;
  font-weight: 600;
  text-decoration: none;
  opacity: .88;
}
.card-link b { font-size: 1rem; font-weight: 400; transition: transform .2s; }
.card-link:hover b { transform: translate(3px, -3px); }
.marketplace-card { justify-content: flex-end; padding-top: 24px; }
.marketplace-mark {
  position: absolute;
  left: 27px;
  top: 28px;
  width: 62px;
  height: 62px;
  display: grid;
  place-content: center;
  color: var(--paper);
  background: #3266c9;
  border-radius: 50%;
  font-family: Arial, sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
}

.finder { color: var(--ink); background: #e5ebe3; }
.finder-shell { display: grid; grid-template-columns: .72fr 1.28fr; gap: 95px; align-items: start; }
.finder-intro { position: sticky; top: 120px; }
.finder-intro h2 { max-width: 510px; margin-bottom: 25px; }
.finder-intro > p:not(.eyebrow) { max-width: 440px; color: var(--muted); font-size: .92rem; }
.finder-doodle { position: relative; width: 190px; height: 130px; margin: 35px 0 0 25px; }
.finder-doodle::before { content: ""; position: absolute; left: 50%; bottom: 5px; width: 2px; height: 100px; background: var(--forest); transform: rotate(-8deg); }
.finder-doodle span { position: absolute; left: 50%; bottom: 43px; width: 50px; height: 30px; background: var(--forest); border-radius: 100% 0 100% 0; transform-origin: left bottom; }
.finder-doodle span:nth-child(1) { transform: rotate(-155deg); }
.finder-doodle span:nth-child(2) { bottom: 67px; transform: rotate(-25deg) scale(.82); }
.finder-doodle span:nth-child(3) { bottom: 80px; transform: rotate(-145deg) scale(.68); }
.finder-doodle span:nth-child(4) { bottom: 99px; transform: rotate(-41deg) scale(.52); }
.finder-doodle span:nth-child(5) { bottom: 7px; left: 19px; width: 142px; height: 1px; background: rgba(88, 112, 97, .35); border-radius: 0; transform: rotate(2deg); }
.plant-finder { padding: 8px 0 0; }
.plant-finder fieldset { margin: 0 0 44px; padding: 0 0 44px; border: 0; border-bottom: 1px solid rgba(52, 48, 51, .12); }
.plant-finder legend { margin-bottom: 21px; font-family: var(--serif); font-size: 1.35rem; }
.plant-finder legend span { display: inline-grid; place-content: center; width: 28px; height: 28px; margin-right: 10px; color: #fff; background: var(--forest); border-radius: 50%; font-family: var(--sans); font-size: .68rem; font-weight: 600; vertical-align: 3px; }
.choice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; }
.choice-grid input { position: absolute; opacity: 0; pointer-events: none; }
.choice-grid label span {
  min-height: 66px;
  display: grid;
  place-content: center;
  padding: 12px 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, .48);
  border: 1px solid rgba(88, 112, 97, .22);
  border-radius: 4px;
  cursor: pointer;
  font-size: .73rem;
  line-height: 1.2;
  text-align: center;
  transition: color .18s, background .18s, border-color .18s, transform .18s;
}
.choice-grid label:hover span { border-color: var(--forest); transform: translateY(-2px); }
.choice-grid input:focus-visible + span { outline: 3px solid rgba(88, 112, 97, .24); outline-offset: 2px; }
.choice-grid input:checked + span { color: #fff; background: var(--forest); border-color: var(--forest); font-weight: 600; }
.finder-result { display: flex; align-items: center; justify-content: space-between; gap: 25px; }
.finder-result p { max-width: 280px; margin: 0; color: var(--muted); font-size: .73rem; line-height: 1.45; }

.visit { background: var(--paper); }
.visit-card { display: grid; grid-template-columns: .85fr 1.15fr; min-height: 620px; background: var(--lime); border: 1px solid var(--line); }
.visit-copy { padding: 66px 58px; }
.visit-copy h2 { margin-bottom: 24px; }
.visit-copy > p:not(.eyebrow) { max-width: 510px; margin-bottom: 35px; color: #526346; font-size: .91rem; }
.visit-copy address { display: grid; gap: 18px; margin-bottom: 35px; font-style: normal; }
.visit-copy address > div { display: flex; align-items: flex-start; gap: 14px; }
.visit-copy address svg { flex: 0 0 auto; width: 19px; height: 19px; margin-top: 3px; fill: var(--aubergine); }
.visit-copy address span { display: grid; color: #526346; font-size: .76rem; }
.visit-copy address strong { color: var(--ink); font-size: .83rem; }
.visit-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 25px; }
.map-wrap { position: relative; min-height: 500px; overflow: hidden; background: #d5d0c2; }
.map-wrap::after { content: ""; position: absolute; inset: 0; pointer-events: none; box-shadow: inset 0 0 0 1px rgba(35, 29, 31, .12); }
.map-wrap iframe { width: 100%; height: 100%; min-height: 620px; border: 0; filter: sepia(.18) saturate(.65) contrast(.95); }
.map-label {
  position: absolute;
  left: 25px;
  bottom: 25px;
  z-index: 3;
  min-width: 166px;
  padding: 13px 18px;
  color: var(--paper);
  background: var(--aubergine);
  box-shadow: 0 10px 28px rgba(35, 29, 31, .22);
  text-decoration: none;
}
.map-label span { display: block; font-size: .57rem; letter-spacing: .12em; text-transform: uppercase; opacity: .7; }
.map-label strong { font-family: var(--serif); font-size: 1.2rem; font-weight: 500; }

.story { background: var(--cream); border-top: 1px solid var(--line); }
.story-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 115px; align-items: start; }
.story h2 { max-width: 680px; }
.story-copy { padding-top: 36px; }
.story-copy p { color: var(--muted); font-size: .9rem; }
.story-copy .story-lead { color: var(--ink); font-family: var(--serif); font-size: 1.65rem; line-height: 1.35; }
.social-links { margin-top: 35px; border-top: 1px solid var(--line); }
.social-links a { display: flex; justify-content: space-between; padding: 13px 2px; border-bottom: 1px solid var(--line); font-size: .76rem; font-weight: 600; text-decoration: none; }
.social-links a span { transition: transform .2s; }
.social-links a:hover span { transform: translate(3px, -3px); }

.faq { background: var(--paper); }
.faq-grid { display: grid; grid-template-columns: .65fr 1.35fr; gap: 100px; }
.faq-grid h2 { max-width: 420px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 23px 0;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.25rem;
  list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { flex: 0 0 auto; color: var(--aubergine); font-family: var(--sans); font-size: 1.2rem; font-weight: 400; transition: transform .25s; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 710px; margin: -4px 0 25px; color: var(--muted); font-size: .84rem; }

.final-cta { padding: 70px 0; color: var(--paper); background: #776175; }
.final-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 45px; }
.final-cta p { margin-bottom: 8px; color: var(--lime); font-size: .68rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.final-cta h2 { max-width: 720px; font-size: clamp(2.3rem, 4.3vw, 4rem); }
.final-cta .button { flex: 0 0 auto; }

.site-footer { padding: 75px 0 24px; color: rgba(251, 247, 236, .78); background: #4b3e49; }
.footer-grid { display: grid; grid-template-columns: 130px 1.2fr .8fr; gap: 50px; align-items: start; }
.footer-brand img { width: 95px; height: 95px; padding: 3px; background: var(--cream); border-radius: 50%; }
.site-footer p { max-width: 390px; margin: 11px 0 7px; color: var(--paper); font-family: var(--serif); font-size: 1.5rem; line-height: 1.25; }
.site-footer address { color: rgba(251, 247, 236, .48); font-size: .72rem; font-style: normal; }
.footer-nav { display: grid; gap: 10px; padding-top: 12px; }
.footer-nav a { width: fit-content; font-size: .73rem; text-decoration: none; }
.footer-nav a:hover { color: var(--lime); }
.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  margin-top: 35px;
  padding-top: 19px;
  border-top: 1px solid rgba(251, 247, 236, .14);
  color: rgba(251, 247, 236, .35);
  font-size: .61rem;
  letter-spacing: .05em;
}

.floating-actions {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  display: grid;
  justify-items: end;
  gap: 9px;
}
.floating-actions a {
  min-height: 51px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 18px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 999px;
  font-size: .71rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}
.floating-actions a:hover { transform: translateY(-3px); }
.floating-actions svg { width: 19px; height: 19px; fill: currentColor; }
.floating-direction {
  color: var(--aubergine-deep) !important;
  background: rgba(250, 248, 243, .94);
  border-color: rgba(112, 86, 109, .18) !important;
  box-shadow: 0 10px 26px rgba(79, 62, 77, .16);
  backdrop-filter: blur(9px);
}
.floating-direction:hover { box-shadow: 0 13px 30px rgba(79, 62, 77, .21); }
.floating-whatsapp { background: #4b8f68; box-shadow: 0 10px 26px rgba(46, 99, 68, .22); }
.floating-whatsapp:hover { box-shadow: 0 13px 30px rgba(46, 99, 68, .3); }

.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.reveal-delay { transition-delay: .12s; }
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1060px) {
  .hero-grid { grid-template-columns: minmax(0, .95fr) minmax(430px, 1.05fr); }
  .hero h1 { font-size: clamp(3.7rem, 7.1vw, 5.7rem); }
  .catalog-grid { grid-template-columns: repeat(2, 1fr); }
  .finder-shell { gap: 55px; }
  .visit-card { grid-template-columns: 1fr 1fr; }
  .visit-copy { padding: 53px 42px; }
}

@media (max-width: 820px) {
  :root { --shell: min(100% - 32px, 680px); }
  .section { padding: 90px 0; }
  .site-header { background: rgba(251, 247, 236, .92); backdrop-filter: blur(14px); }
  .header-inner { min-height: 70px; }
  .brand img { width: 166px; height: auto; }
  .menu-toggle {
    width: 44px;
    height: 44px;
    display: grid;
    place-content: center;
    gap: 7px;
    background: transparent;
    border: 0;
    cursor: pointer;
  }
  .menu-toggle > span:not(.sr-only) { width: 23px; height: 1px; background: var(--ink); transition: transform .2s; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(2) { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-4px) rotate(-45deg); }
  .site-nav {
    position: absolute;
    inset: 70px 0 auto;
    display: grid;
    gap: 0;
    padding: 8px 16px 18px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 16px 24px rgba(35, 29, 31, .08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity .2s, visibility .2s, transform .2s;
  }
  .site-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .site-nav > a:not(.button) { padding: 15px 3px; border-bottom: 1px solid var(--line); }
  .site-nav .button { margin-top: 13px; }

  .hero { min-height: auto; padding-top: 118px; }
  .hero-grid { grid-template-columns: 1fr; gap: 10px; }
  .hero-copy { padding: 5px 0; }
  .hero h1 { max-width: 650px; font-size: clamp(3.5rem, 12vw, 5.8rem); }
  .hero-art { min-height: 500px; width: min(680px, 100%); margin: 20px auto 0; }
  .hero-art picture, .hero-art img { min-height: 470px; }
  .section-heading { grid-template-columns: 1fr; gap: 22px; }
  .finder-shell, .story-grid, .faq-grid { grid-template-columns: 1fr; gap: 52px; }
  .journal-preview-grid, .journal-masthead-inner { grid-template-columns: 1fr; gap: 40px; }
  .quick-read-heading { grid-template-columns: 1fr; gap: 15px; }
  .quick-read-grid { grid-template-columns: 1fr; }
  .quick-read-grid article { min-height: auto; padding: 28px 0; }
  .quick-read-grid article + article { padding-left: 0; border-top: 1px solid rgba(88,112,97,.28); border-left: 0; }
  .quick-read-grid h3 { margin-top: 18px; }
  .article-layout { grid-template-columns: 1fr; }
  .article-aside { position: static; display: none; }
  .planting-rule { grid-template-columns: 1fr; }
  .finder-intro { position: static; }
  .finder-doodle { display: none; }
  .visit-card { grid-template-columns: 1fr; }
  .map-wrap, .map-wrap iframe { min-height: 440px; }
  .story-copy { padding-top: 0; }
  .final-cta-inner { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 600px) {
  :root { --shell: calc(100vw - 28px); }
  .section { padding: 76px 0; }
  h2 { font-size: clamp(2.65rem, 13vw, 4rem); }
  .eyebrow { font-size: .64rem; }
  .brand img { width: 150px; }
  .hero { padding-bottom: 54px; }
  .hero h1 { font-size: clamp(3.4rem, 16vw, 5.2rem); }
  .hero-lead { font-size: .95rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 15px; }
  .hero .button { width: 100%; }
  .hero-socials { display: grid; grid-template-columns: 1fr 1fr; margin-top: 30px; }
  .hero-socials-label, .social-instagram { grid-column: 1 / -1; }
  .social-pill { justify-content: center; }
  .hero-art { min-height: 410px; margin-top: 12px; padding: 8px; border-radius: 24px 24px 8px 24px; }
  .hero-art picture, .hero-art img { min-height: 392px; border-radius: 18px 18px 4px 18px; }
  .hero-art img { object-position: 60% center; }
  .photo-note { left: 20px; bottom: 20px; }
  .garden-ticker { font-size: .77rem; }
  .catalog-grid { grid-template-columns: 1fr; }
  .category-card { min-height: 450px; }
  .journal-card { grid-template-columns: 1fr; }
  .journal-card > img { height: 260px; }
  .journal-card-copy { padding: 28px; }
  .journal-masthead { padding: 75px 0 60px; }
  .article-hero { padding-top: 65px; }
  .article-hero h1 { font-size: clamp(3rem, 14.5vw, 4.8rem); }
  .article-cover { width: calc(100vw - 18px); height: 72vw; }
  .quick-read { padding: 62px 0; }
  .article-layout { padding: 65px 0 90px; }
  .article-body h2 { margin-top: 60px; }
  .soil-table { display: block; overflow-x: auto; }
  .article-cta { padding: 29px 25px; }
  .card-photo { height: 220px; }
  .choice-grid { grid-template-columns: 1fr; }
  .choice-grid label span { min-height: 53px; }
  .plant-finder fieldset { margin-bottom: 33px; padding-bottom: 33px; }
  .finder-result { align-items: stretch; flex-direction: column; }
  .finder-result p { max-width: none; }
  .finder-result .button { width: 100%; }
  .visit-copy { padding: 43px 27px; }
  .visit-actions { align-items: flex-start; flex-direction: column; gap: 16px; }
  .visit-actions .button { width: 100%; }
  .map-wrap, .map-wrap iframe { min-height: 370px; }
  .story-copy .story-lead { font-size: 1.4rem; }
  .faq-list summary { font-size: 1.08rem; }
  .final-cta { padding: 58px 0; }
  .final-cta .button { width: 100%; }
  .footer-grid { grid-template-columns: 90px 1fr; gap: 25px; }
  .footer-brand img { width: 80px; height: 80px; }
  .footer-nav { grid-column: 1 / -1; grid-template-columns: 1fr 1fr; margin-top: 20px; }
  .footer-bottom { flex-direction: column; gap: 5px; }
  .floating-actions { right: 13px; bottom: 13px; }
  .floating-actions a { min-height: 47px; padding: 0 15px; }
  .floating-actions svg { width: 19px; height: 19px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
