:root {
  --paper: #f4f1e9;
  --surface: #fffdf8;
  --ink: #17211d;
  --muted: #64706a;
  --line: #d8ddd5;
  --green: #204d3a;
  --lime: #d9f275;
  --clay: #e8a47d;
  --sage: #9cbea5;
  --sky: #9bc8df;
  --sun: #efca67;
  --berry: #d49ab0;
  --shadow: 0 18px 60px rgba(23, 33, 29, 0.08);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.55;
}
a {
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
.shell {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(244, 241, 233, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(23, 33, 29, 0.08);
}
.nav {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  text-decoration: none;
  font-size: 1.08rem;
  font-weight: 900;
  letter-spacing: -0.04em;
}
.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 29px;
  height: 29px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--green);
  color: var(--lime);
  font-size: 0.85rem;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 0.9rem;
  font-weight: 700;
}
.nav-links a {
  text-decoration: none;
}
.nav-links a:hover {
  color: var(--green);
}
.nav-cta {
  padding: 10px 16px;
  border: 1px solid var(--ink);
  border-radius: 999px;
}
.menu-button {
  display: none;
  border: 0;
  background: none;
  font: inherit;
  font-weight: 800;
}
.hero {
  padding: 82px 0 58px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 54px;
  align-items: center;
}
.kicker {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 900;
  color: var(--green);
}
h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.04;
  letter-spacing: -0.04em;
  margin: 0;
}
h1 {
  font-size: clamp(3.3rem, 7vw, 6.8rem);
  max-width: 820px;
}
h2 {
  font-size: clamp(2.3rem, 4vw, 4rem);
}
h3 {
  font-size: 1.55rem;
}
.hero-copy {
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 620px;
  margin: 26px 0 31px;
}
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
  border-radius: 999px;
  background: var(--green);
  color: white;
  text-decoration: none;
  font-weight: 800;
  border: 1px solid var(--green);
}
.button.secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.button.light {
  background: var(--surface);
  color: var(--ink);
  border-color: transparent;
}
.hero-art {
  position: relative;
  min-height: 440px;
}
.orbit {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(32, 77, 58, 0.22);
  border-radius: 50%;
  animation: spin 28s linear infinite;
}
.orbit:before,
.orbit:after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: var(--green);
}
.orbit:before {
  width: 15px;
  height: 15px;
  left: 14%;
  top: 8%;
}
.orbit:after {
  width: 10px;
  height: 10px;
  right: 7%;
  bottom: 20%;
  background: var(--clay);
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.art-card {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  border-radius: 26px;
  box-shadow: var(--shadow);
  font-weight: 850;
}
.art-card strong {
  font-family: Georgia, serif;
  font-size: 1.7rem;
  line-height: 1;
}
.art-card.one {
  width: 230px;
  height: 260px;
  left: 8%;
  top: 12%;
  background: var(--lime);
  transform: rotate(-7deg);
}
.art-card.two {
  width: 205px;
  height: 225px;
  right: 4%;
  top: 2%;
  background: var(--sky);
  transform: rotate(9deg);
}
.art-card.three {
  width: 230px;
  height: 190px;
  right: 12%;
  bottom: 1%;
  background: var(--surface);
  transform: rotate(-3deg);
}
.art-index {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
}
.section {
  padding: 86px 0;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 28px;
  margin-bottom: 34px;
}
.section-heading p {
  max-width: 470px;
  margin: 0;
  color: var(--muted);
}
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.category-card {
  min-height: 230px;
  padding: 25px;
  border-radius: 24px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.category-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.category-card.clay {
  background: var(--clay);
}
.category-card.ink {
  background: #283631;
  color: white;
}
.category-card.sage {
  background: var(--sage);
}
.category-card.sky {
  background: var(--sky);
}
.category-card.sun {
  background: var(--sun);
}
.category-card.berry {
  background: var(--berry);
}
.category-icon {
  font-size: 1.65rem;
}
.category-card p {
  margin: 0.6rem 0 0;
  max-width: 260px;
  font-size: 0.93rem;
}
.card-arrow {
  align-self: flex-end;
  border: 1px solid currentColor;
  border-radius: 50%;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
}
.guide-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.guide-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 25px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  min-height: 280px;
}
.guide-card .meta,
.product-card .meta {
  display: flex;
  gap: 8px;
  align-items: center;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.guide-card h3 {
  font-size: 2rem;
  margin: 26px 0 13px;
}
.guide-card p {
  color: var(--muted);
  margin: 0 0 26px;
}
.text-link {
  margin-top: auto;
  font-weight: 900;
  text-decoration: none;
}
.text-link:hover {
  text-decoration: underline;
}
.product-strip {
  background: var(--green);
  color: white;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.product-card {
  background: #2c5c47;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.product-visual {
  height: 180px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  font-family: Georgia, serif;
  font-size: 4rem;
}
.product-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-body {
  padding: 23px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-card h3 {
  margin: 14px 0 10px;
}
.product-card p {
  color: #cddbd4;
  font-size: 0.92rem;
}
.product-note {
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.78rem;
  color: #cddbd4;
}
.product-card .button {
  margin-top: 18px;
  background: var(--lime);
  border-color: var(--lime);
  color: var(--ink);
  width: 100%;
}
.product-card .shopping-button {
  background: var(--surface);
  border-color: var(--surface);
  color: var(--ink);
}
.affiliate-inline-disclosure {
  margin: 12px 2px 0;
  color: #dbe8df !important;
  font-size: 0.72rem !important;
  line-height: 1.4;
}
.article-products .affiliate-inline-disclosure {
  color: var(--muted) !important;
}
.disclosure {
  font-size: 0.78rem;
  color: #cddbd4;
  margin-top: 28px;
}
.mission {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: start;
}
.mission-copy {
  font-size: 1.2rem;
}
.principles {
  display: grid;
  gap: 13px;
}
.principle {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 15px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}
.principle b {
  font-family: Georgia, serif;
  font-size: 1.15rem;
}
.newsletter {
  background: var(--lime);
  border-radius: 28px;
  padding: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.newsletter p {
  margin: 10px 0 0;
  max-width: 580px;
}
.site-footer {
  padding: 54px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  border-top: 1px solid var(--line);
  padding-top: 35px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.85rem;
}
.footer-note {
  color: var(--muted);
  font-size: 0.78rem;
  margin-top: 30px;
}
.page-hero {
  padding: 78px 0 55px;
}
.page-hero h1 {
  font-size: clamp(3rem, 6vw, 5.5rem);
}
.page-hero p {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.12rem;
}
.article {
  width: min(760px, calc(100% - 40px));
  margin: 0 auto;
  padding: 20px 0 90px;
}
.article .lede {
  font-size: 1.25rem;
  color: var(--muted);
}
.article h2 {
  font-size: 2rem;
  margin-top: 48px;
}
.article p {
  font-size: 1.05rem;
}
.article-products {
  margin-top: 55px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}
.article-products .product-grid {
  grid-template-columns: repeat(2, 1fr);
}
.article-products .product-card {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--line);
}
.article-products .product-card p,
.article-products .product-note {
  color: var(--muted);
}
.article-products .product-note {
  border-color: var(--line);
}
.article-products .product-visual {
  background: #e7ebe3;
}
.article-products .product-card .button {
  background: var(--green);
  border-color: var(--green);
  color: white;
}
.legal {
  width: min(760px, calc(100% - 40px));
  margin: 0 auto;
  padding: 70px 0 100px;
}
.legal h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
}
.legal h2 {
  font-size: 1.8rem;
  margin-top: 42px;
}
.legal p,
.legal li {
  color: #46534d;
}
.pill {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: #e3e8df;
  font-size: 0.75rem;
  font-weight: 850;
  text-decoration: none;
}
.empty-state {
  grid-column: 1/-1;
  padding: 35px;
  border: 1px dashed currentColor;
  border-radius: 20px;
  text-align: center;
}
.filter-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.filter-button {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 999px;
  padding: 9px 14px;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 800;
  cursor: pointer;
}
.filter-button.active {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
}
@media (max-width: 850px) {
  .hero-grid,
  .mission {
    grid-template-columns: 1fr;
  }
  .hero-art {
    min-height: 380px;
    max-width: 500px;
    width: 100%;
    margin: auto;
  }
  .category-grid,
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 75px;
    left: 0;
    right: 0;
    background: var(--paper);
    padding: 24px 20px;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
  }
  .nav-links.open {
    display: flex;
  }
  .menu-button {
    display: block;
  }
  .newsletter {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media (max-width: 560px) {
  .shell {
    width: min(100% - 28px, 1180px);
  }
  .hero {
    padding-top: 50px;
  }
  h1 {
    font-size: 3.15rem;
  }
  .hero-art {
    min-height: 330px;
  }
  .art-card.one {
    width: 185px;
    height: 215px;
  }
  .art-card.two {
    width: 165px;
    height: 190px;
  }
  .art-card.three {
    width: 190px;
    height: 155px;
  }
  .category-grid,
  .guide-grid,
  .product-grid,
  .article-products .product-grid {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 64px 0;
  }
  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }
  .newsletter {
    padding: 32px 24px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .guide-card {
    min-height: 240px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .orbit {
    animation: none;
  }
}
