:root {
  --ink: #18251c;
  --muted: #5d6b62;
  --line: #dfe8df;
  --paper: #fbfcf7;
  --white: #ffffff;
  --leaf: #2f6b45;
  --leaf-dark: #19452b;
  --clay: #9f4c35;
  --gold: #c18b2d;
  --shadow: 0 24px 70px rgba(24, 37, 28, 0.16);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[hidden] {
  display: none !important;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
}

body.drawer-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.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;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 18px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(251, 252, 247, 0.9);
  border-bottom: 1px solid rgba(223, 232, 223, 0.9);
  backdrop-filter: blur(16px);
}

.brand img {
  width: 144px;
  height: 44px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 4vw, 42px);
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.main-nav a:hover {
  color: var(--leaf-dark);
}

.cart-button,
.icon-button {
  border: 0;
  cursor: pointer;
}

.cart-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 8px 14px;
  color: var(--white);
  background: var(--leaf-dark);
  border-radius: 999px;
}

.cart-icon {
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.cart-button strong {
  display: grid;
  min-width: 26px;
  height: 26px;
  place-items: center;
  color: var(--leaf-dark);
  background: var(--gold);
  border-radius: 50%;
}

.hero {
  position: relative;
  display: grid;
  min-height: 82vh;
  align-items: end;
  overflow: hidden;
  padding: 130px clamp(20px, 6vw, 76px) 72px;
  color: var(--white);
}

.hero-media,
.hero-media::after {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media::after {
  content: "";
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(13, 30, 19, 0.88), rgba(13, 30, 19, 0.48) 58%, rgba(13, 30, 19, 0.2)),
    linear-gradient(0deg, rgba(13, 30, 19, 0.44), rgba(13, 30, 19, 0));
}

.hero-content {
  max-width: 770px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1,
.section h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 880px;
  font-size: clamp(2.4rem, 6vw, 5.9rem);
  line-height: 0.98;
}

.hero p:not(.eyebrow) {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.02rem, 2vw, 1.28rem);
  line-height: 1.7;
}

.hero-actions,
.contact-actions,
.drawer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 850;
  letter-spacing: 0;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button.primary {
  color: var(--white);
  background: var(--clay);
  box-shadow: 0 12px 36px rgba(78, 26, 17, 0.25);
}

.button.secondary {
  color: var(--ink);
  background: var(--white);
  border-color: var(--line);
}

.button.whatsapp {
  color: var(--white);
  background: var(--leaf);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-strip div {
  min-height: 106px;
  padding: 24px clamp(18px, 3vw, 34px);
  background: var(--white);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  margin-bottom: 7px;
  font-size: 1rem;
}

.trust-strip span {
  color: var(--muted);
  line-height: 1.5;
}

.section {
  padding: clamp(54px, 7vw, 96px) clamp(18px, 5vw, 72px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(300px, 1fr);
  gap: clamp(28px, 8vw, 100px);
  align-items: end;
  background: var(--paper);
}

.section h2 {
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1.05;
}

.intro > p,
.contact-section p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.feature-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.feature-band article {
  display: grid;
  grid-template-columns: 116px 1fr;
  gap: 22px;
  align-items: center;
  min-height: 170px;
  padding: 24px clamp(18px, 3vw, 34px);
  background: var(--white);
}

.feature-band img {
  width: 116px;
  height: 116px;
  object-fit: contain;
  background: #f6f7f1;
  border-radius: var(--radius);
}

.feature-band span,
.product-meta span,
.dialog-category {
  color: var(--leaf);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.feature-band h3 {
  margin: 8px 0 0;
  font-size: 1.12rem;
  line-height: 1.35;
}

.catalog-section {
  background: var(--white);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.catalog-tools {
  display: grid;
  grid-template-columns: minmax(240px, 360px) 1fr;
  gap: 18px;
  align-items: end;
  margin-bottom: 28px;
}

.search-box span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.search-box input {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  outline: none;
}

.search-box input:focus {
  border-color: var(--leaf);
  box-shadow: 0 0 0 4px rgba(47, 107, 69, 0.11);
}

.filter-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.filter-group button {
  min-height: 40px;
  padding: 9px 13px;
  color: var(--muted);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
}

.filter-group button.is-active {
  color: var(--white);
  background: var(--leaf-dark);
  border-color: var(--leaf-dark);
}

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

.product-card {
  display: grid;
  grid-template-rows: 250px 1fr;
  min-width: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(24, 37, 28, 0.06);
}

.product-image {
  display: grid;
  place-items: center;
  width: 100%;
  padding: 18px;
  background: #f7f8f3;
  border: 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
}

.product-image img {
  width: 100%;
  height: 212px;
  object-fit: contain;
  transition: transform 180ms ease;
}

.product-image:hover img {
  transform: scale(1.04);
}

.product-body {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.product-meta strong,
[data-dialog-price] {
  color: var(--clay);
  font-size: 1rem;
}

.product-body h3 {
  min-height: 54px;
  margin: 0;
  font-size: 1.24rem;
  line-height: 1.25;
}

.product-body p {
  min-height: 70px;
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.add-button {
  width: 100%;
  color: var(--white);
  background: var(--leaf);
}

.order-flow {
  background: var(--paper);
}

.order-flow ol {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: steps;
}

.order-flow li {
  position: relative;
  min-height: 190px;
  padding: 58px 24px 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  line-height: 1.6;
  counter-increment: steps;
}

.order-flow li::before {
  content: counter(steps);
  position: absolute;
  top: 20px;
  left: 24px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: var(--white);
  background: var(--leaf-dark);
  border-radius: 50%;
  font-weight: 900;
}

.order-flow strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
  color: var(--white);
  background: var(--leaf-dark);
}

.contact-section .eyebrow,
.contact-section h2,
.contact-section p {
  color: var(--white);
}

.contact-section .fine-print {
  max-width: 820px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
}

.contact-actions {
  justify-content: flex-end;
  margin-top: 0;
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  justify-content: flex-end;
  background: rgba(13, 30, 19, 0.54);
}

.cart-drawer.is-open {
  display: flex;
}

.drawer-panel {
  display: grid;
  grid-template-rows: auto 1fr auto auto auto;
  width: min(100%, 440px);
  min-height: 100%;
  padding: 22px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-bottom: 1px solid var(--line);
}

.drawer-header h2 {
  margin: 0 0 18px;
  font-size: 1.8rem;
}

.icon-button {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: var(--ink);
  background: var(--paper);
  border-radius: 50%;
  font-size: 1.6rem;
  line-height: 1;
}

.cart-lines {
  overflow: auto;
  padding: 16px 0;
}

.cart-line {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.cart-line img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  background: #f7f8f3;
  border-radius: var(--radius);
}

.cart-line h3 {
  margin: 0 0 6px;
  font-size: 0.98rem;
}

.cart-line span {
  color: var(--muted);
  font-size: 0.88rem;
}

.qty {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.qty button {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 50%;
  cursor: pointer;
}

.cart-empty {
  display: none;
  padding: 30px 0;
  color: var(--muted);
}

.cart-empty.is-visible {
  display: block;
}

.cart-summary {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0 8px;
  border-top: 1px solid var(--line);
  font-size: 1.2rem;
}

.cart-note {
  color: var(--muted);
  font-size: 0.9rem;
}

.checkout-form {
  display: grid;
  gap: 10px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.checkout-form label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.checkout-form input,
.checkout-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px 12px;
  color: var(--ink);
  background: var(--white);
  resize: vertical;
}

.checkout-form input:focus,
.checkout-form textarea:focus {
  border-color: var(--leaf);
  outline: 3px solid rgba(47, 107, 69, 0.12);
}

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

.order-status {
  min-height: 20px;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.order-status.is-error {
  color: var(--clay);
}

.order-status.is-success {
  color: var(--leaf-dark);
}

.drawer-actions {
  margin-top: 18px;
}

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

.product-dialog {
  width: min(940px, calc(100vw - 28px));
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.product-dialog::backdrop {
  background: rgba(13, 30, 19, 0.56);
}

.dialog-close {
  position: absolute;
  top: 14px;
  right: 14px;
}

.dialog-content {
  display: grid;
  grid-template-columns: minmax(240px, 0.85fr) 1fr;
  gap: 30px;
  padding: clamp(22px, 4vw, 42px);
}

.dialog-content > img {
  width: 100%;
  height: 430px;
  object-fit: contain;
  background: #f7f8f3;
  border-radius: var(--radius);
}

.dialog-content h2 {
  margin: 10px 0 10px;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.05;
}

.dialog-content p {
  color: var(--muted);
  line-height: 1.7;
}

.dialog-content dl {
  display: grid;
  gap: 14px;
  margin: 22px 0;
}

.dialog-content dt {
  margin-bottom: 4px;
  font-weight: 900;
}

.dialog-content dd {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(18px, 5vw, 72px);
  color: var(--muted);
  background: var(--white);
  border-top: 1px solid var(--line);
}

.site-footer a {
  font-weight: 800;
  color: var(--leaf-dark);
}

@media (max-width: 1100px) {
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
  }

  .main-nav {
    display: none;
  }

  .hero {
    min-height: 78vh;
    padding-top: 110px;
  }

  .trust-strip,
  .intro,
  .catalog-tools,
  .order-flow ol,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    gap: 0;
  }

  .filter-group {
    justify-content: flex-start;
  }

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

  .contact-actions {
    justify-content: flex-start;
  }

  .dialog-content {
    grid-template-columns: 1fr;
  }

  .dialog-content > img {
    height: 300px;
  }
}

@media (max-width: 560px) {
  .brand img {
    width: 116px;
  }

  .theme-toggle,
  .cart-button {
    padding: 8px 10px;
  }

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

  .hero-actions .button,
  .contact-actions .button {
    width: 100%;
  }

  .feature-band article {
    grid-template-columns: 86px 1fr;
  }

  .feature-band img {
    width: 86px;
    height: 86px;
  }

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

  .product-card {
    grid-template-rows: 230px 1fr;
  }

  .site-footer {
    display: grid;
  }
}

/* 2027 storefront refresh */
:root {
  --ink: #121713;
  --muted: #667066;
  --line: #d8ded4;
  --paper: #f4f1e8;
  --white: #fffdf7;
  --leaf: #2d6e4a;
  --leaf-dark: #173a29;
  --clay: #b64f33;
  --gold: #c79a3c;
  --plum: #342239;
  --blue: #264d63;
  --shadow: 0 28px 80px rgba(18, 23, 19, 0.18);
}

body {
  background:
    linear-gradient(90deg, rgba(18, 23, 19, 0.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(18, 23, 19, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 44px 44px, 44px 44px, auto;
}

.site-header {
  left: clamp(12px, 2vw, 28px);
  right: clamp(12px, 2vw, 28px);
  top: 14px;
  border: 1px solid rgba(255, 253, 247, 0.42);
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.72);
  box-shadow: 0 18px 46px rgba(18, 23, 19, 0.12);
}

.brand img {
  filter: saturate(0.92) contrast(1.08);
}

.main-nav {
  color: rgba(18, 23, 19, 0.72);
}

.main-nav a {
  position: relative;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--clay);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

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

.cart-button {
  min-height: 46px;
  background: var(--ink);
  box-shadow: 0 12px 28px rgba(18, 23, 19, 0.18);
}

.cart-button strong {
  color: var(--ink);
  background: #e7c65e;
}

.hero {
  min-height: min(900px, 92vh);
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.75fr);
  gap: clamp(24px, 5vw, 76px);
  align-items: center;
  padding: 136px clamp(18px, 5vw, 76px) 74px;
  color: var(--white);
  background: #111713;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 140px;
  background: linear-gradient(0deg, var(--paper), rgba(244, 241, 232, 0));
  content: "";
  pointer-events: none;
}

.hero-media {
  opacity: 0.62;
}

.hero-media img {
  filter: saturate(1.12) contrast(1.08);
}

.hero-media::after {
  background:
    linear-gradient(90deg, rgba(18, 23, 19, 0.96), rgba(18, 23, 19, 0.72) 48%, rgba(18, 23, 19, 0.36)),
    linear-gradient(0deg, rgba(18, 23, 19, 0.58), rgba(18, 23, 19, 0.14));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.hero h1 {
  max-width: 820px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 7vw, 7.2rem);
  line-height: 0.9;
}

.hero p:not(.eyebrow) {
  color: rgba(255, 253, 247, 0.82);
}

.hero-showcase {
  position: relative;
  z-index: 1;
  height: min(58vh, 560px);
  min-height: 430px;
}

.hero-product {
  position: absolute;
  display: block;
  object-fit: contain;
  background: rgba(255, 253, 247, 0.92);
  border: 1px solid rgba(255, 253, 247, 0.8);
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.hero-product-main {
  top: 16px;
  left: 5%;
  width: 62%;
  height: 74%;
  padding: 26px;
}

.hero-product-side {
  right: 0;
  bottom: 22%;
  width: 42%;
  height: 42%;
  padding: 20px;
}

.hero-product-tall {
  right: 12%;
  bottom: 0;
  width: 36%;
  height: 44%;
  padding: 18px;
}

.hero-metric {
  position: absolute;
  bottom: 18px;
  left: 0;
  width: min(260px, 54%);
  padding: 18px;
  color: var(--ink);
  background: rgba(231, 198, 94, 0.94);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}

.hero-metric strong,
.hero-metric span {
  display: block;
}

.hero-metric strong {
  font-size: 2.8rem;
  line-height: 0.9;
}

.hero-metric span {
  margin-top: 8px;
  font-size: 0.86rem;
  font-weight: 850;
  line-height: 1.35;
}

.button {
  border-radius: 8px;
  text-transform: none;
}

.button.primary {
  background: var(--clay);
  box-shadow: 0 18px 42px rgba(182, 79, 51, 0.25);
}

.button.secondary {
  background: rgba(255, 253, 247, 0.9);
}

.trust-strip {
  position: relative;
  z-index: 3;
  width: min(1180px, calc(100% - 36px));
  margin: -42px auto 0;
  overflow: hidden;
  border: 1px solid rgba(216, 222, 212, 0.9);
  border-radius: 8px;
  box-shadow: 0 22px 60px rgba(18, 23, 19, 0.12);
}

.trust-strip div {
  min-height: 118px;
  background: rgba(255, 253, 247, 0.96);
}

.trust-strip strong {
  font-size: 1.08rem;
}

.intro {
  position: relative;
  padding-top: clamp(82px, 10vw, 124px);
  background: transparent;
}

.intro::before {
  position: absolute;
  top: 44px;
  left: clamp(18px, 5vw, 72px);
  width: min(420px, 42vw);
  height: 2px;
  background: var(--clay);
  content: "";
}

.section h2 {
  max-width: 880px;
  font-size: clamp(2.2rem, 5vw, 5.2rem);
  line-height: 0.98;
}

.feature-band {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto clamp(24px, 5vw, 58px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 20px 52px rgba(18, 23, 19, 0.08);
}

.feature-band article {
  background: var(--white);
}

.feature-band img {
  background: #f1efe4;
  mix-blend-mode: multiply;
}

.catalog-section {
  position: relative;
  background:
    linear-gradient(180deg, #fffdf7 0%, #fffdf7 72%, #f4f1e8 100%);
}

.section-heading {
  border-bottom: 1px solid var(--line);
  padding-bottom: 22px;
}

.catalog-tools {
  position: sticky;
  top: 92px;
  z-index: 10;
  padding: 14px;
  background: rgba(255, 253, 247, 0.86);
  border: 1px solid rgba(216, 222, 212, 0.88);
  border-radius: 8px;
  backdrop-filter: blur(16px);
  box-shadow: 0 16px 40px rgba(18, 23, 19, 0.08);
}

.search-box input,
.checkout-form input,
.checkout-form textarea {
  border-radius: 8px;
  background: #fffdf7;
}

.filter-group button {
  border-radius: 8px;
}

.product-grid {
  gap: 20px;
}

.product-card {
  position: relative;
  grid-template-rows: 270px 1fr;
  background: #fffdf7;
  border-color: rgba(18, 23, 19, 0.1);
  box-shadow: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.product-card::before {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
  padding: 7px 9px;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
  content: "FarmHouse";
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.product-card:hover {
  border-color: rgba(182, 79, 51, 0.38);
  box-shadow: 0 30px 70px rgba(18, 23, 19, 0.14);
  transform: translateY(-4px);
}

.product-image {
  background:
    linear-gradient(135deg, rgba(199, 154, 60, 0.08), rgba(45, 110, 74, 0.1)),
    #f8f5ea;
}

.product-image img {
  height: 230px;
  mix-blend-mode: multiply;
}

.product-body {
  align-content: start;
  padding: 20px;
}

.product-body h3 {
  min-height: auto;
  font-size: 1.38rem;
}

.product-body p {
  min-height: 76px;
}

.add-button {
  align-self: end;
  background: var(--ink);
}

.add-button:hover {
  background: var(--leaf-dark);
}

.order-flow {
  background:
    linear-gradient(135deg, rgba(38, 77, 99, 0.08), rgba(182, 79, 51, 0.06)),
    var(--paper);
}

.order-flow li {
  background: rgba(255, 253, 247, 0.86);
  box-shadow: 0 18px 46px rgba(18, 23, 19, 0.08);
}

.order-flow li::before {
  border-radius: 8px;
  background: var(--plum);
}

.contact-section {
  background:
    linear-gradient(110deg, rgba(18, 23, 19, 0.96), rgba(23, 58, 41, 0.9)),
    var(--ink);
}

.cart-drawer {
  background: rgba(18, 23, 19, 0.62);
  backdrop-filter: blur(8px);
}

.drawer-panel {
  width: min(100%, 500px);
  background: #fffdf7;
}

.icon-button,
.qty button {
  border-radius: 8px;
}

.checkout-form {
  max-height: 46vh;
  overflow: auto;
  padding-right: 3px;
}

.product-dialog {
  border-radius: 8px;
}

.dialog-content > img {
  background:
    linear-gradient(135deg, rgba(199, 154, 60, 0.08), rgba(45, 110, 74, 0.1)),
    #f8f5ea;
  mix-blend-mode: multiply;
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-showcase {
    order: 2;
    height: 390px;
    min-height: 390px;
  }

  .hero-content {
    order: 1;
  }

  .catalog-tools {
    position: static;
  }
}

@media (max-width: 860px) {
  .site-header {
    left: 10px;
    right: 10px;
  }

  .trust-strip,
  .feature-band {
    width: calc(100% - 24px);
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: auto;
    padding-bottom: 92px;
  }

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

  .hero-showcase {
    display: none;
  }

  .trust-strip {
    margin-top: -56px;
  }

  .catalog-tools {
    padding: 10px;
  }
}

/* Client-facing premium refresh */
:root {
  --ink: #101611;
  --muted: #667164;
  --line: rgba(16, 22, 17, 0.12);
  --paper: #f5f2e8;
  --white: #fffef8;
  --leaf: #237653;
  --leaf-dark: #10291f;
  --clay: #d45132;
  --gold: #e1bd57;
  --acid: #d8ec5a;
  --berry: #5a315f;
  --blue: #21586c;
  --shadow: 0 34px 90px rgba(16, 22, 17, 0.2);
}

body {
  background:
    linear-gradient(90deg, rgba(16, 22, 17, 0.055) 1px, transparent 1px),
    linear-gradient(0deg, rgba(16, 22, 17, 0.045) 1px, transparent 1px),
    var(--paper);
  background-size: 38px 38px, 38px 38px, auto;
}

.site-header {
  left: clamp(10px, 2vw, 24px);
  right: clamp(10px, 2vw, 24px);
  top: 12px;
  padding: 10px 12px 10px 18px;
  border: 1px solid rgba(255, 254, 248, 0.58);
  background: rgba(255, 254, 248, 0.72);
  box-shadow: 0 18px 50px rgba(16, 22, 17, 0.14);
}

.brand img {
  width: 138px;
  height: 46px;
}

.main-nav {
  gap: 10px;
}

.main-nav a {
  min-height: 40px;
  padding: 10px 14px;
  border-radius: 8px;
}

.main-nav a:hover {
  color: var(--ink);
  background: rgba(216, 236, 90, 0.28);
}

.main-nav a::after {
  display: none;
}

.cart-button {
  border-radius: 8px;
  background: var(--ink);
}

.cart-icon {
  font-size: 0;
}

.cart-icon::before {
  content: "Korpa";
  font-size: 0.84rem;
}

.hero {
  min-height: 88vh;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.74fr);
  align-items: center;
  padding: 132px clamp(18px, 5vw, 78px) 88px;
  background:
    linear-gradient(120deg, #0d1410 0%, #13251c 48%, #263031 100%);
}

.hero::before {
  position: absolute;
  inset: 84px clamp(14px, 2.2vw, 30px) 18px;
  border: 1px solid rgba(255, 254, 248, 0.16);
  border-radius: 8px;
  content: "";
  pointer-events: none;
}

.hero::after {
  height: 190px;
  background:
    linear-gradient(0deg, var(--paper) 0%, rgba(245, 242, 232, 0.86) 28%, rgba(245, 242, 232, 0) 100%);
}

.hero-media {
  inset: auto 0 0 auto;
  width: min(54vw, 780px);
  height: 100%;
  opacity: 0.34;
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
}

.hero-media::after {
  background:
    linear-gradient(90deg, rgba(13, 20, 16, 0.94), rgba(13, 20, 16, 0.26)),
    linear-gradient(0deg, rgba(13, 20, 16, 0.66), transparent);
}

.hero-content {
  padding-top: 34px;
}

.eyebrow {
  width: max-content;
  max-width: 100%;
  padding: 7px 10px;
  color: var(--ink);
  background: var(--acid);
  border-radius: 8px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.hero h1 {
  margin-top: 18px;
  max-width: 860px;
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-size: clamp(3.3rem, 7.1vw, 7.3rem);
  line-height: 0.86;
}

.hero p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 254, 248, 0.78);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
}

.hero-showcase {
  height: min(60vh, 560px);
  min-height: 430px;
  transform: rotate(-1deg);
}

.hero-product {
  background:
    linear-gradient(145deg, rgba(255, 254, 248, 0.96), rgba(241, 235, 220, 0.92));
  border: 1px solid rgba(255, 254, 248, 0.9);
  box-shadow:
    0 38px 90px rgba(0, 0, 0, 0.36),
    inset 0 0 0 1px rgba(16, 22, 17, 0.05);
}

.hero-product-main {
  top: 0;
  left: 3%;
  width: 66%;
  height: 78%;
  padding: 30px;
}

.hero-product-side {
  right: 2%;
  bottom: 24%;
  width: 45%;
  height: 41%;
  padding: 20px;
}

.hero-product-tall {
  right: 14%;
  bottom: 1%;
  width: 38%;
  height: 43%;
  padding: 18px;
}

.hero-metric {
  bottom: 8px;
  left: 0;
  width: min(286px, 58%);
  padding: 18px 18px 20px;
  color: var(--ink);
  background: var(--acid);
  border: 1px solid rgba(16, 22, 17, 0.16);
  transform: rotate(1deg);
}

.hero-metric strong {
  font-size: 4.2rem;
  letter-spacing: -0.06em;
}

.button {
  min-height: 50px;
  padding: 13px 18px;
  border-radius: 8px;
}

.button.primary {
  background: var(--clay);
  box-shadow: 0 18px 44px rgba(212, 81, 50, 0.28);
}

.button.secondary {
  color: var(--ink);
  background: rgba(255, 254, 248, 0.88);
}

.trust-strip {
  width: min(1220px, calc(100% - 28px));
  margin-top: -54px;
  border-color: rgba(16, 22, 17, 0.14);
}

.trust-strip div {
  min-height: 124px;
  padding-top: 28px;
}

.trust-strip strong {
  font-size: 1.12rem;
}

.intro {
  grid-template-columns: minmax(320px, 0.86fr) minmax(300px, 0.9fr);
  padding-top: clamp(86px, 10vw, 132px);
}

.intro::before {
  width: min(520px, 48vw);
  background: linear-gradient(90deg, var(--clay), var(--acid));
}

.section h2,
.experience-panel h2 {
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-size: clamp(2.5rem, 5.8vw, 6.1rem);
  line-height: 0.9;
}

.experience-panel {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(360px, 1fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  padding: clamp(52px, 8vw, 108px) clamp(18px, 5vw, 72px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(16, 22, 17, 0.94), rgba(25, 40, 35, 0.96)),
    var(--ink);
}

.experience-panel .eyebrow {
  background: var(--gold);
}

.experience-copy p:not(.eyebrow) {
  max-width: 560px;
  margin: 24px 0 0;
  color: rgba(255, 254, 248, 0.72);
  font-size: 1.05rem;
  line-height: 1.8;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  min-height: 470px;
}

.experience-grid figure {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 430px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 254, 248, 0.16);
  border-radius: 8px;
  background: #efe9d8;
}

.experience-grid figure:nth-child(2),
.experience-grid figure:nth-child(4) {
  transform: translateY(38px);
}

.experience-grid img {
  position: absolute;
  inset: 34px 12px 70px;
  width: calc(100% - 24px);
  height: calc(100% - 104px);
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform 220ms ease;
}

.experience-grid figure:hover img {
  transform: translateY(-8px) scale(1.04);
}

.experience-grid figcaption {
  position: relative;
  z-index: 1;
  min-height: 58px;
  padding: 18px 14px;
  color: var(--ink);
  background: var(--acid);
  font-weight: 900;
}

.feature-band {
  margin-top: clamp(24px, 5vw, 64px);
}

.feature-band article {
  min-height: 188px;
}

.catalog-section {
  background:
    linear-gradient(180deg, #fffef8 0%, #fffef8 68%, rgba(245, 242, 232, 0) 100%);
}

.catalog-tools {
  top: 88px;
  grid-template-columns: minmax(220px, 330px) 1fr;
  background: rgba(255, 254, 248, 0.86);
}

.search-box input,
.checkout-form input,
.checkout-form textarea {
  min-height: 48px;
  border-color: rgba(16, 22, 17, 0.16);
}

.filter-group button {
  color: var(--ink);
  background: #f0ead8;
}

.filter-group button.is-active {
  color: var(--ink);
  background: var(--acid);
  border-color: rgba(16, 22, 17, 0.18);
}

.product-grid {
  gap: 16px;
}

.product-card {
  grid-template-rows: 300px 1fr;
  overflow: visible;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.product-card::before {
  display: none;
}

.product-image {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  border: 1px solid rgba(16, 22, 17, 0.12);
  border-radius: 8px 8px 0 0;
  background:
    linear-gradient(135deg, rgba(216, 236, 90, 0.18), rgba(33, 88, 108, 0.1)),
    #f2ecdc;
}

.product-image::after {
  position: absolute;
  right: 14px;
  bottom: 12px;
  width: 52px;
  height: 4px;
  background: var(--clay);
  content: "";
}

.product-image img {
  height: 252px;
  filter: drop-shadow(0 22px 22px rgba(16, 22, 17, 0.16));
  mix-blend-mode: multiply;
}

.product-body {
  min-height: 292px;
  padding: 18px 18px 20px;
  background: var(--white);
  border: 1px solid rgba(16, 22, 17, 0.12);
  border-top: 0;
  border-radius: 0 0 8px 8px;
}

.product-card:hover {
  transform: translateY(-6px);
}

.product-card:hover .product-body,
.product-card:hover .product-image {
  border-color: rgba(212, 81, 50, 0.34);
}

.product-body h3 {
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-size: 1.52rem;
  line-height: 1.05;
}

.product-meta span,
.dialog-category,
.feature-band span {
  color: var(--blue);
  letter-spacing: 0.04em;
}

.add-button {
  margin-top: auto;
  color: var(--white);
  background: var(--ink);
}

.order-flow {
  background:
    linear-gradient(135deg, rgba(90, 49, 95, 0.11), rgba(216, 236, 90, 0.12)),
    var(--paper);
}

.order-flow li {
  min-height: 210px;
  background: rgba(255, 254, 248, 0.92);
}

.order-flow li::before {
  background: var(--berry);
}

.contact-section {
  background:
    linear-gradient(110deg, rgba(16, 22, 17, 0.97), rgba(16, 41, 31, 0.94)),
    var(--ink);
}

.product-dialog {
  background: var(--white);
}

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-showcase {
    width: min(720px, 100%);
    justify-self: center;
    order: 2;
  }

  .hero-content {
    order: 1;
  }

  .experience-panel,
  .experience-grid {
    grid-template-columns: 1fr;
  }

  .experience-grid {
    grid-template-columns: repeat(4, minmax(150px, 1fr));
    min-height: 360px;
    overflow: auto;
    padding-bottom: 14px;
  }

  .experience-grid figure {
    min-height: 330px;
  }
}

@media (max-width: 860px) {
  .hero {
    min-height: auto;
    padding-top: 116px;
  }

  .hero::before {
    inset: 78px 10px 14px;
  }

  .hero h1 {
    font-size: clamp(3.1rem, 15vw, 5.6rem);
  }

  .trust-strip {
    margin-top: -42px;
  }

  .intro,
  .experience-panel {
    grid-template-columns: 1fr;
  }

  .experience-grid {
    grid-template-columns: repeat(4, 190px);
  }

  .experience-grid figure:nth-child(2),
  .experience-grid figure:nth-child(4) {
    transform: none;
  }
}

@media (max-width: 560px) {
  body {
    background-size: 30px 30px, 30px 30px, auto;
  }

  .site-header {
    padding-left: 12px;
  }

  .brand img {
    width: 116px;
  }

  .hero {
    padding-bottom: 104px;
  }

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

  .hero-product-main {
    left: 0;
    width: 66%;
    height: 72%;
    padding: 18px;
  }

  .hero-product-side {
    right: 0;
    bottom: 26%;
    width: 42%;
    height: 38%;
    padding: 14px;
  }

  .hero-product-tall {
    right: 12%;
    width: 38%;
    height: 38%;
    padding: 12px;
  }

  .hero-metric {
    width: 190px;
    padding: 14px;
  }

  .hero-metric strong {
    font-size: 3rem;
  }

  .section h2,
  .experience-panel h2 {
    font-size: clamp(2.4rem, 13vw, 4rem);
  }

  .experience-grid {
    grid-template-columns: repeat(4, 170px);
  }

  .product-card {
    grid-template-rows: 270px 1fr;
  }

  .product-image {
    min-height: 270px;
  }

  .product-image img {
    height: 224px;
  }

  .product-body {
    min-height: auto;
  }
}

.plain-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.journal-section,
.blog-feature-card,
.blog-article-shell,
.blog-hero {
  padding: 0 clamp(20px, 6vw, 76px);
}

.journal-section {
  margin: 52px 0 0;
}

.journal-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 22px;
}

.journal-header h2,
.blog-feature-copy h2,
.blog-article h2,
.blog-article-head h1,
.blog-hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}

.journal-header h2,
.blog-feature-copy h2,
.blog-article h2,
.blog-article-head h1 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.02;
}

.journal-header-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

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

.journal-card {
  display: grid;
  min-height: 280px;
  background: var(--white);
  border: 1px solid rgba(16, 22, 17, 0.12);
  border-radius: 8px;
  overflow: hidden;
}

.journal-card-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #e9efe5;
}

.journal-card-media img,
.blog-feature-media img,
.blog-article-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.journal-card-body {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 24px;
}

.journal-card-meta,
.blog-inline-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.journal-card h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
  line-height: 1.08;
}

.journal-card p,
.blog-feature-copy p,
.blog-hero p,
.blog-article p,
.blog-article li {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.journal-link {
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  padding: 0 24px;
  color: var(--leaf-dark);
  border-top: 1px solid rgba(16, 22, 17, 0.1);
  font-weight: 800;
}

.journal-card-empty {
  grid-column: 1 / -1;
  min-height: 180px;
}

.blog-page {
  padding-top: 110px;
  padding-bottom: 68px;
}

.blog-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.75fr);
  gap: 28px;
  align-items: end;
}

.blog-hero h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 0.98;
}

.blog-hero-copy {
  display: grid;
  gap: 20px;
}

.blog-hero-meta {
  display: grid;
  gap: 14px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(16, 22, 17, 0.12);
  border-radius: 8px;
}

html[data-theme="dark"] .blog-hero-meta {
  background: #18211b;
  border-color: var(--line);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
}

.blog-count-pill {
  display: inline-flex;
  width: fit-content;
  min-height: 36px;
  align-items: center;
  padding: 0 14px;
  color: var(--white);
  background: var(--leaf-dark);
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
}

.blog-feature-card,
.blog-article-shell {
  margin-top: 34px;
}

.blog-feature-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.88fr);
  min-height: 320px;
  background:
    linear-gradient(135deg, rgba(47, 107, 69, 0.1), rgba(193, 139, 45, 0.08)),
    var(--white);
  border: 1px solid rgba(16, 22, 17, 0.12);
  border-radius: 8px;
}

.blog-feature-media {
  min-height: 100%;
  overflow: hidden;
  background: #dde7d8;
}

.blog-feature-copy,
.blog-article {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 42px);
}

.blog-article {
  background: var(--white);
  border: 1px solid rgba(16, 22, 17, 0.12);
  border-radius: 8px;
}

.blog-article-head {
  display: grid;
  gap: 16px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(16, 22, 17, 0.1);
}

.blog-article-excerpt {
  font-size: 1.1rem;
}

.blog-article-media {
  overflow: hidden;
  aspect-ratio: 16 / 8;
  border-radius: 8px;
  background: #dde7d8;
}

.blog-article-content {
  display: grid;
  gap: 16px;
}

.blog-article-content h2,
.blog-article-content h3,
.blog-article-content h4 {
  margin: 20px 0 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.08;
}

.blog-article-content ul,
.blog-article-content ol {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.blog-listing {
  margin-top: 34px;
}

.blog-empty-state {
  padding: 28px;
  background: var(--white);
  border: 1px solid rgba(16, 22, 17, 0.12);
  border-radius: 8px;
  color: var(--muted);
}

@media (max-width: 1080px) {
  .journal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

@media (max-width: 720px) {
  .journal-header {
    align-items: start;
  }

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

  .journal-header-actions {
    justify-content: start;
  }
}

.product-stock,
.dialog-stock {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  min-height: 30px;
  padding: 6px 10px;
  border: 1px solid rgba(16, 22, 17, 0.12);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
}

.product-stock {
  color: var(--muted);
  background: rgba(239, 242, 235, 0.9);
}

.dialog-stock {
  margin-top: 12px;
  color: var(--muted);
  background: rgba(239, 242, 235, 0.9);
}

.product-stock.is-in,
.dialog-stock.is-in {
  color: #184f36;
  background: rgba(222, 244, 230, 0.9);
  border-color: rgba(24, 79, 54, 0.18);
}

.product-stock.is-low,
.dialog-stock.is-low {
  color: #8d5400;
  background: rgba(255, 238, 208, 0.92);
  border-color: rgba(141, 84, 0, 0.18);
}

.product-stock.is-out,
.dialog-stock.is-out {
  color: #8f3225;
  background: rgba(255, 227, 223, 0.92);
  border-color: rgba(143, 50, 37, 0.16);
}

.product-stock.is-untracked,
.dialog-stock.is-untracked {
  color: #40524a;
  background: rgba(232, 236, 233, 0.92);
  border-color: rgba(64, 82, 74, 0.14);
}

.product-card.is-unavailable {
  opacity: 0.86;
}

.add-button:disabled,
.button:disabled {
  opacity: 0.58;
  cursor: not-allowed;
  filter: saturate(0.72);
}

.catalog-empty {
  grid-column: 1 / -1;
  padding: 28px;
  color: var(--muted);
  background: rgba(239, 242, 235, 0.65);
  border: 1px solid rgba(16, 22, 17, 0.1);
  border-radius: 8px;
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  min-width: 42px;
  width: 42px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: var(--white);
  cursor: pointer;
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.theme-toggle-icon {
  display: none;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.theme-toggle-icon svg {
  width: 100%;
  height: 100%;
}

.theme-toggle[data-next-theme="dark"] [data-theme-icon="moon"],
.theme-toggle[data-next-theme="light"] [data-theme-icon="sun"] {
  display: block;
}

html[data-theme="dark"] {
  color-scheme: dark;
  --ink: #ebf2ec;
  --muted: #a9b7ad;
  --line: #334036;
  --paper: #101612;
  --white: #18211b;
  --leaf: #8fcf45;
  --leaf-dark: #d8efb3;
  --clay: #ffb14f;
  --gold: #f4d06f;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

html[data-theme="dark"] body {
  background: var(--paper);
}

html[data-theme="dark"] .site-header {
  background: rgba(12, 17, 14, 0.92);
  border-bottom-color: rgba(51, 64, 54, 0.92);
}

html[data-theme="dark"] .main-nav a {
  color: var(--muted);
}

html[data-theme="dark"] .main-nav a:hover {
  color: var(--leaf-dark);
}

html[data-theme="dark"] .theme-toggle,
html[data-theme="dark"] .button.secondary,
html[data-theme="dark"] .blog-empty-state,
html[data-theme="dark"] .catalog-empty {
  color: var(--ink);
  background: var(--white);
  border-color: var(--line);
}

html[data-theme="dark"] .cart-button {
  color: #101612;
  background: var(--leaf);
}

html[data-theme="dark"] .cart-button strong {
  color: #101612;
  background: var(--gold);
}

html[data-theme="dark"] .site-footer,
html[data-theme="dark"] .journal-card,
html[data-theme="dark"] .blog-feature-card,
html[data-theme="dark"] .blog-article-shell > article,
html[data-theme="dark"] .blog-feature-article,
html[data-theme="dark"] .product-card,
html[data-theme="dark"] .feature-band article,
html[data-theme="dark"] .contact-panel,
html[data-theme="dark"] .contact-card,
html[data-theme="dark"] .guide-card {
  background: var(--white);
  border-color: var(--line);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
}

html[data-theme="dark"] .journal-card-media,
html[data-theme="dark"] .blog-feature-media,
html[data-theme="dark"] .blog-article-media {
  background: #1d2820;
}

html[data-theme="dark"] .plain-note,
html[data-theme="dark"] .journal-card p,
html[data-theme="dark"] .blog-article-shell p,
html[data-theme="dark"] .blog-feature-card p,
html[data-theme="dark"] .blog-feature-article p {
  color: var(--muted);
}

html[data-theme="dark"] .checkout-form input,
html[data-theme="dark"] .checkout-form textarea,
html[data-theme="dark"] .dialog-content > img {
  background: #1d2820;
  border-color: var(--line);
}

.seo-page {
  padding-top: 88px;
}

.seo-header-cta {
  min-width: 96px;
  justify-content: center;
}

.seo-hero {
  position: relative;
  min-height: 68vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: clamp(72px, 10vw, 126px) clamp(20px, 6vw, 76px) clamp(42px, 7vw, 78px);
  color: #ffffff;
}

.seo-hero-media,
.seo-hero-media::after {
  position: absolute;
  inset: 0;
}

.seo-hero-media {
  z-index: -2;
  background: #17231b;
}

.seo-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.seo-hero-media::after {
  content: "";
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(10, 20, 14, 0.9), rgba(10, 20, 14, 0.58) 58%, rgba(10, 20, 14, 0.18)),
    linear-gradient(0deg, rgba(10, 20, 14, 0.45), rgba(10, 20, 14, 0.04));
}

.seo-hero-copy {
  max-width: 860px;
}

.seo-hero h1 {
  margin: 0;
  max-width: 940px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 5.8vw, 5rem);
  line-height: 1;
  letter-spacing: 0;
}

.seo-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.02rem, 1.7vw, 1.22rem);
  line-height: 1.72;
}

.seo-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.seo-chip-row span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 800;
}

.seo-content {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(34px, 6vw, 72px) 0;
}

.seo-section,
.seo-note {
  margin-top: 18px;
  padding: clamp(22px, 4vw, 34px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(24, 37, 28, 0.08);
}

.seo-section:first-child {
  margin-top: 0;
}

.seo-section h2 {
  margin: 0 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.4vw, 2.35rem);
  line-height: 1.12;
  letter-spacing: 0;
}

.seo-section p,
.seo-note p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

.seo-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.seo-section-head h2 {
  margin-bottom: 0;
}

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

.seo-product-card {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 16px;
  min-height: 148px;
  padding: 12px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.seo-product-image {
  display: block;
  min-height: 124px;
  background: rgba(47, 107, 69, 0.08);
  border-radius: 8px;
  overflow: hidden;
}

.seo-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.seo-product-card h3,
.seo-link-card strong {
  margin: 0;
  font-size: 1rem;
  line-height: 1.25;
}

.seo-product-card p,
.seo-link-card em {
  display: block;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.93rem;
  font-style: normal;
  line-height: 1.55;
}

.seo-product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
}

.seo-product-meta span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.seo-product-meta strong {
  color: var(--clay);
}

.seo-link-card {
  display: grid;
  gap: 6px;
  min-height: 154px;
  padding: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.seo-link-card span {
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.seo-sources ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.7;
}

.seo-sources a {
  color: var(--leaf-dark);
  font-weight: 800;
}

.seo-note {
  border-color: rgba(159, 76, 53, 0.25);
  background: rgba(159, 76, 53, 0.07);
  box-shadow: none;
}

.seo-note strong {
  color: var(--clay);
}

html[data-theme="dark"] .seo-section,
html[data-theme="dark"] .seo-product-card,
html[data-theme="dark"] .seo-link-card {
  background: var(--white);
  border-color: var(--line);
}

html[data-theme="dark"] .seo-product-card,
html[data-theme="dark"] .seo-link-card {
  background: #1d2820;
}

html[data-theme="dark"] .seo-note {
  background: rgba(255, 177, 79, 0.1);
  border-color: rgba(255, 177, 79, 0.28);
}

@media (max-width: 900px) {
  .seo-page {
    padding-top: 82px;
  }

  .seo-product-grid,
  .seo-link-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .seo-hero {
    min-height: 72vh;
    padding: 112px 18px 40px;
  }

  .seo-section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .seo-product-card {
    grid-template-columns: 86px 1fr;
  }

  .seo-product-image {
    min-height: 104px;
  }
}
