@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700&family=Lora:ital,wght@0,500;0,600;0,700;1,500&family=Raleway:wght@400;500;600;700&display=swap");

:root {
  --forest: #143d32;
  --forest-deep: #0d2a23;
  --forest-mid: #1b5344;
  --leaf: #2d6a4f;
  --leaf-soft: #40916c;
  --gold: #c4a35a;
  --gold-dark: #9a7428;
  --cream: #f6f3ec;
  --paper: #fbfaf6;
  --white: #ffffff;
  --ink: #14241d;
  --muted: #5a6b62;
  --line: #d7e0da;
  --topbar: #eef3ef;
  --danger: #b42318;
  --shadow: 0 16px 40px rgba(20, 61, 50, 0.1);
  --shadow-lg: 0 24px 60px rgba(20, 61, 50, 0.16);
  --radius: 16px;
  --container: 1220px;
  --serif: "Lora", Georgia, serif;
  --display: "Cinzel", "Times New Roman", serif;
  --sans: "Raleway", system-ui, sans-serif;
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 72px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  min-height: 100vh;
  overflow-x: hidden;
  padding-bottom: env(safe-area-inset-bottom);
}

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

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

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

button {
  cursor: pointer;
  border: 0;
  background: none;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -48px;
  background: var(--forest);
  color: #fff;
  padding: 8px 14px;
  z-index: 200;
  border-radius: 8px;
}

.skip-link:focus {
  top: 12px;
}

.announce {
  background: var(--forest-deep);
  color: #f3ead4;
  font-size: 13px;
  font-weight: 600;
  overflow: hidden;
  position: sticky;
  top: 0;
  z-index: 55;
}

.announce-track {
  display: flex;
  width: max-content;
  animation: marquee 38s linear infinite;
}

.announce-group {
  display: flex;
  align-items: center;
  gap: 36px;
  padding: 10px 36px;
  flex-shrink: 0;
}

.announce-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  min-height: 24px;
}

.announce-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.8;
  flex-shrink: 0;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.section {
  padding: 72px 0;
}

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

.kicker {
  display: inline-block;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  color: var(--leaf);
  margin-bottom: 10px;
}

.section-head h2,
.page-hero h1,
.hero-copy h1 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--forest-deep);
  line-height: 1.15;
}

.section-head h2 {
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  max-width: 720px;
}

.section-head p {
  color: var(--muted);
  max-width: 560px;
  margin-top: 8px;
}

.view-all {
  color: var(--forest);
  font-weight: 700;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 200ms ease, gap 200ms ease;
}

.view-all:hover {
  color: var(--leaf);
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  background: var(--forest);
  color: #fff;
  transition: background 200ms ease, transform 200ms ease, box-shadow 200ms ease;
  cursor: pointer;
}

.btn:hover {
  background: var(--forest-mid);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

.btn-ghost {
  background: transparent;
  color: #fff;
  padding: 12px 4px;
  text-decoration: underline;
  text-underline-offset: 6px;
  min-height: auto;
  box-shadow: none;
}

.btn-ghost:hover {
  background: transparent;
  color: var(--gold);
  box-shadow: none;
}

.btn-light {
  background: #fff;
  color: var(--forest);
}

.btn-light:hover {
  background: var(--cream);
}

.btn-whatsapp {
  background: #128c7e;
}

.btn-whatsapp:hover {
  background: #0e7368;
}

.btn-full {
  width: 100%;
}

.icon {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-lg {
  width: 22px;
  height: 22px;
}

/* Top bar */
.topbar {
  background: var(--topbar);
  color: var(--forest);
  font-size: 13px;
  font-weight: 600;
}

.topbar-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 42px;
  gap: 16px;
}

.topbar a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  transition: color 200ms ease;
}

.topbar a:hover {
  color: var(--leaf);
}

.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.topbar-right {
  justify-content: flex-end;
}

.topbar-center {
  text-align: center;
}

.gemini-link {
  color: var(--forest-mid);
}

/* Header */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 44px;
  z-index: 40;
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 108px;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 0;
}

.logo img {
  height: 92px;
  width: auto;
  max-width: 210px;
  object-fit: contain;
  background: transparent;
}

.nav-main {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.nav-main a {
  padding: 10px 12px;
  font-weight: 600;
  font-size: 14px;
  color: var(--forest-deep);
  border-radius: 8px;
  transition: color 200ms ease, background 200ms ease;
}

.nav-main a:hover,
.nav-main a.is-active {
  color: var(--leaf);
  background: var(--cream);
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 4px;
}

.icon-btn {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--forest);
  position: relative;
  transition: background 200ms ease;
}

.icon-btn:hover {
  background: var(--cream);
}

.menu-toggle {
  display: none;
}

.badge-count {
  position: absolute;
  top: 4px;
  right: 2px;
  min-width: 18px;
  height: 18px;
  border-radius: 99px;
  background: var(--forest);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  display: grid;
  place-items: center;
  padding: 0 4px;
}

/* Hero */
.hero {
  position: relative;
  min-height: min(86vh, 760px);
  display: grid;
  align-items: center;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 118%;
  object-fit: cover;
  transform: scale(1.06);
  will-change: transform;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(8, 22, 18, 0.78) 0%, rgba(8, 22, 18, 0.42) 48%, rgba(8, 22, 18, 0.18) 100%),
    linear-gradient(180deg, rgba(8, 22, 18, 0.2), rgba(8, 22, 18, 0.35));
}

.hero-copy {
  padding: 80px 0 72px;
  max-width: 680px;
}

.hero-copy > * {
  animation: rise-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hero-copy > *:nth-child(2) { animation-delay: 0.08s; }
.hero-copy > *:nth-child(3) { animation-delay: 0.16s; }
.hero-copy > *:nth-child(4) { animation-delay: 0.24s; }
.hero-copy > *:nth-child(5) { animation-delay: 0.32s; }

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.hero-copy .kicker {
  color: var(--gold);
}

.hero-copy h1 {
  color: #fff;
  font-size: clamp(2.4rem, 5vw, 4.1rem);
  margin-bottom: 16px;
}

.hero-copy .lead {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 540px;
  margin-bottom: 28px;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 22px;
  margin-bottom: 32px;
}

.hero-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
}

.hero-pill span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.hero-quote {
  position: absolute;
  top: 28px;
  right: 40px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.92);
  max-width: 260px;
  text-align: right;
}

.experience-badge {
  position: absolute;
  right: 7%;
  bottom: 14%;
  width: 168px;
  height: 168px;
  border-radius: 46% 54% 48% 52% / 52% 44% 56% 48%;
  background: radial-gradient(circle at 30% 30%, #3d8a68, #1b5344 62%, #12382c);
  color: #fff;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 22px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  transform: rotate(-6deg);
}

.experience-badge strong {
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.25;
  display: block;
}

.experience-badge span {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  opacity: 0.9;
}

/* Info strip */
.info-strip {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 28px 16px;
}

.info-item svg,
.stat svg,
.hero-pill svg,
.socials svg,
.cat-icon svg {
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.info-item svg {
  width: 42px;
  height: 42px;
  padding: 10px;
  border-radius: 50%;
  background: #fff;
  color: var(--forest);
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(20, 61, 50, 0.08);
}

.info-item h3 {
  font-size: 15px;
  margin-bottom: 4px;
  color: var(--forest-deep);
}

.info-item p {
  color: var(--muted);
  font-size: 13px;
}

/* Categories */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}

.cat-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 22px 16px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.cat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.cat-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--forest);
  display: grid;
  place-items: center;
}

.cat-media {
  width: 132px;
  height: 132px;
  margin: 0 auto 16px;
  border-radius: 50%;
  overflow: hidden;
  border: 6px solid var(--cream);
}

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

.cat-card h3 {
  font-family: var(--serif);
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: var(--forest-deep);
}

.cat-card .shop-now {
  font-size: 13px;
  font-weight: 700;
  color: var(--leaf);
}

/* Products */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.product-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 28px rgba(20, 61, 50, 0.06);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.product-media {
  background: var(--cream);
  aspect-ratio: 4 / 5;
  position: relative;
}

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

.product-body {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.product-body h3 {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--forest-deep);
}

.product-body p {
  color: var(--muted);
  font-size: 14px;
  flex: 1;
}

.price {
  font-weight: 800;
  color: var(--forest);
  font-size: 1.2rem;
}

.price s {
  color: var(--muted);
  font-weight: 500;
  font-size: 0.9rem;
  margin-left: 6px;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.about-photo {
  border-radius: 24px;
  overflow: hidden;
  min-height: 520px;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 520px;
}

.about-copy h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 16px;
  color: var(--forest-deep);
}

.about-copy p {
  color: var(--muted);
  margin-bottom: 28px;
}

.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 28px;
}

.stat {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--cream);
  border-radius: 14px;
  padding: 14px;
}

.stat svg {
  width: 36px;
  height: 36px;
  color: var(--forest);
  flex-shrink: 0;
}

.stat strong {
  display: block;
  font-size: 14px;
  color: var(--forest-deep);
}

.stat span {
  font-size: 12px;
  color: var(--muted);
}

.about-note {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--serif);
  font-style: italic;
  color: var(--leaf);
  letter-spacing: 0.08em;
  position: absolute;
  right: -8px;
  top: 40px;
}

.about-wrap {
  position: relative;
}

/* Impact */
.impact {
  position: relative;
  color: #fff;
  min-height: 420px;
  display: grid;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
}

.impact img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.impact::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 18, 16, 0.82), rgba(8, 18, 16, 0.45) 55%, rgba(8, 18, 16, 0.3));
  z-index: -1;
}

.impact-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  padding: 80px 0;
}

.impact h2 {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.25;
  margin-bottom: 22px;
  max-width: 640px;
}

.impact-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  margin-bottom: 28px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold);
}

.impact-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.6rem;
  text-align: right;
}

/* Testimonials */
.quote-slider {
  position: relative;
}

.quote-nav {
  display: none;
}

.quote-viewport {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}

.quotes {
  display: flex;
  flex-wrap: nowrap;
  gap: 22px;
  width: max-content;
  animation: quote-marquee 32s linear infinite;
}

@media (hover: hover) {
  .quote-slider:hover .quotes,
  .quote-slider:focus-within .quotes {
    animation-play-state: paused;
  }
  .announce:hover .announce-track,
  .announce:focus-within .announce-track {
    animation-play-state: paused;
  }
}

.quote-nav {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--forest);
  font-size: 22px;
  line-height: 1;
  box-shadow: var(--shadow);
  transition: background 200ms ease, color 200ms ease;
}

.quote-nav:hover {
  background: var(--forest);
  color: #fff;
}

.quote-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
  box-shadow: var(--shadow);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.quote-slider .quote-card {
  width: min(360px, 78vw);
  flex-shrink: 0;
}

.quote-slider .quote-card:hover {
  transform: none;
}

.quote-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

@keyframes quote-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.quote-card p {
  font-family: var(--serif);
  font-size: 1.05rem;
  margin-bottom: 22px;
  color: var(--ink);
}

.quote-who {
  display: flex;
  align-items: center;
  gap: 12px;
}

.quote-who img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.quote-who strong {
  display: block;
  font-size: 14px;
}

.quote-who span {
  font-size: 12px;
  color: var(--muted);
}

/* Support banner */
.support-banner {
  background: linear-gradient(120deg, var(--forest-deep), var(--forest-mid));
  color: #fff;
}

.support-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 42px 0;
  flex-wrap: wrap;
}

.support-inner h2 {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 8px;
}

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

/* Footer */
.site-footer {
  background: #0c1f19;
  color: #d7e4dd;
  padding-top: 56px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.9fr 1fr 0.9fr;
  gap: 32px;
  padding-bottom: 40px;
}

.footer-brand img {
  width: auto;
  height: 108px;
  max-width: 200px;
  object-fit: contain;
  background: transparent;
  border-radius: 0;
  padding: 0;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 14px;
  opacity: 0.85;
  margin-bottom: 16px;
}

.socials {
  display: flex;
  gap: 8px;
}

.socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  display: grid;
  place-items: center;
  transition: background 200ms ease;
}

.socials a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.site-footer h3 {
  color: #fff;
  font-size: 15px;
  margin-bottom: 14px;
}

.site-footer ul {
  list-style: none;
}

.site-footer li + li {
  margin-top: 8px;
}

.site-footer a:hover {
  color: var(--gold);
}

.footer-contact li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
}

.footer-art {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 220px;
}

.footer-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 220px;
}

.footer-art span {
  position: absolute;
  left: 16px;
  bottom: 16px;
  font-family: var(--serif);
  font-style: italic;
  color: #fff;
  text-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px 0 22px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 13px;
  opacity: 0.8;
}

/* Drawers / overlays */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 18, 16, 0.48);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease;
  z-index: 70;
}

.overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.drawer,
.search-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: min(420px, 100%);
  height: 100%;
  background: #fff;
  z-index: 80;
  transform: translateX(100%);
  transition: transform 240ms ease;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-lg);
}

.drawer.is-open,
.search-panel.is-open {
  transform: translateX(0);
}

.drawer-head,
.search-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}

.drawer-head h2,
.search-head h2 {
  font-family: var(--serif);
  font-size: 1.3rem;
}

.drawer-body {
  padding: 18px 20px;
  overflow: auto;
  flex: 1;
}

.drawer-foot {
  padding: 16px 20px 22px;
  border-top: 1px solid var(--line);
}

.cart-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 12px;
  margin-bottom: 16px;
}

.cart-item img {
  width: 72px;
  height: 88px;
  object-fit: cover;
  border-radius: 10px;
  background: var(--cream);
}

.qty {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.qty button {
  width: 32px;
  height: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.search-head input {
  width: 100%;
  margin-top: 12px;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0 14px;
  font-size: 16px;
}

.search-hit {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.search-hit img {
  width: 52px;
  height: 64px;
  object-fit: cover;
  border-radius: 8px;
}

.empty {
  color: var(--muted);
  padding: 20px 0;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%) translateY(20px);
  background: var(--forest-deep);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  opacity: 0;
  pointer-events: none;
  z-index: 90;
  transition: opacity 200ms ease, transform 200ms ease;
}

.toast.is-on {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Chat */
.chat-fab,
.wa-fab {
  position: fixed;
  right: 20px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  z-index: 60;
  color: #fff;
  box-shadow: var(--shadow-lg);
}

.wa-fab {
  bottom: 20px;
  background: #25d366;
}

.chat-fab {
  bottom: 86px;
  background: var(--forest);
}

.chat-panel {
  position: fixed;
  right: 20px;
  bottom: 154px;
  width: min(360px, calc(100% - 24px));
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  z-index: 61;
  overflow: hidden;
  display: none;
}

.chat-panel.is-open {
  display: block;
}

.chat-top {
  background: var(--forest);
  color: #fff;
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat-log {
  height: 280px;
  overflow: auto;
  padding: 14px;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bubble {
  max-width: 85%;
  padding: 10px 12px;
  border-radius: 14px;
  font-size: 14px;
}

.bubble.bot {
  background: #fff;
  align-self: flex-start;
}

.bubble.user {
  background: var(--forest);
  color: #fff;
  align-self: flex-end;
}

.chat-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 10px 12px;
}

.chat-quick button {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 600;
}

.chat-form {
  display: flex;
  gap: 8px;
  padding: 10px;
  border-top: 1px solid var(--line);
}

.chat-form input {
  flex: 1;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0 12px;
  font-size: 16px;
}

/* Inner pages */
.page-hero {
  background: var(--cream);
  padding: 48px 0 36px;
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.breadcrumb {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 10px;
}

.form-grid,
.checkout-grid,
.product-layout {
  display: grid;
  gap: 32px;
}

.form-grid {
  grid-template-columns: 1.1fr 0.9fr;
}

.checkout-grid {
  grid-template-columns: 1.1fr 0.9fr;
}

.product-layout {
  grid-template-columns: 0.95fr 1.05fr;
  align-items: start;
  padding: 48px 0 72px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.field label {
  font-weight: 700;
  font-size: 14px;
}

.field input,
.field select,
.field textarea {
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 16px;
  background: #fff;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--forest);
  outline: none;
  box-shadow: 0 0 0 3px rgba(20, 61, 50, 0.15);
}

.form-note {
  margin-top: 10px;
  font-size: 14px;
}

.form-note.ok {
  color: var(--leaf);
}

.form-note.err {
  color: var(--danger);
}

.pay-note {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 16px;
}

.pay-box {
  background: var(--cream);
  border-radius: 12px;
  padding: 14px 16px;
  margin: 8px 0 18px;
}

.pay-box strong {
  display: block;
  color: var(--forest-deep);
  margin-bottom: 6px;
}

.pay-box p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 10px;
}

.pay-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}

.pay-methods li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
  color: var(--forest);
}

.form-note.err {
  color: var(--danger);
}

.card-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.product-gallery {
  background: var(--cream);
  border-radius: 20px;
  overflow: hidden;
}

.product-gallery img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.qty-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 18px 0;
}

.filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.filter-chip {
  min-height: 44px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-weight: 600;
  font-size: 13px;
  color: var(--forest);
}

.filter-chip.is-on,
.filter-chip:hover {
  background: var(--forest);
  color: #fff;
  border-color: var(--forest);
}

.story-grid,
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.legal {
  max-width: 800px;
}

.legal h2 {
  font-family: var(--serif);
  margin: 28px 0 10px;
  font-size: 1.35rem;
}

.legal p,
.legal li {
  color: var(--muted);
  margin-bottom: 10px;
}

.disclaimer {
  font-size: 13px;
  color: var(--muted);
  background: var(--cream);
  border-radius: 12px;
  padding: 14px 16px;
  margin-top: 20px;
}

.account-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.account-tabs button {
  flex: 1;
  min-height: 44px;
  border-radius: 10px;
  font-weight: 700;
  background: var(--cream);
}

.account-tabs button.is-on {
  background: var(--forest);
  color: #fff;
}

.js-ready [data-reveal],
.js-ready .cat-card,
.js-ready .product-card,
.js-ready .info-item,
.js-ready .stat,
.js-ready .section-head,
.js-ready .about-copy,
.js-ready .about-photo,
.js-ready .impact-inner,
.js-ready .support-inner,
.js-ready .card-box,
.js-ready .page-hero,
.js-ready .service-grid article,
.js-ready .filters {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
}

.js-ready .is-in {
  opacity: 1;
  transform: none;
  transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1), transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.js-ready .cat-card:nth-child(2).is-in,
.js-ready .product-card:nth-child(2).is-in,
.js-ready .info-item:nth-child(2).is-in { transition-delay: 0.07s; }
.js-ready .cat-card:nth-child(3).is-in,
.js-ready .product-card:nth-child(3).is-in,
.js-ready .info-item:nth-child(3).is-in { transition-delay: 0.14s; }
.js-ready .cat-card:nth-child(4).is-in,
.js-ready .product-card:nth-child(4).is-in,
.js-ready .info-item:nth-child(4).is-in { transition-delay: 0.21s; }
.js-ready .cat-card:nth-child(5).is-in,
.js-ready .product-card:nth-child(5).is-in { transition-delay: 0.28s; }

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .js-ready [data-reveal],
  .js-ready .cat-card,
  .js-ready .product-card,
  .js-ready .info-item,
  .js-ready .stat,
  .js-ready .section-head,
  .js-ready .about-copy,
  .js-ready .about-photo,
  .js-ready .impact-inner,
  .js-ready .support-inner,
  .js-ready .card-box,
  .js-ready .page-hero,
  .js-ready .service-grid article,
  .js-ready .filters {
    opacity: 1;
    transform: none;
  }
  .hero-media img {
    transform: none;
    will-change: auto;
  }
}

@media (max-width: 1100px) {
  .cat-grid,
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .info-grid,
  .impact-inner,
  .about-grid,
  .form-grid,
  .checkout-grid,
  .product-layout,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .topbar {
    display: none;
  }
  .site-header {
    top: 40px;
  }
  .header-inner {
    grid-template-columns: 44px 1fr auto;
    min-height: 76px;
    gap: 8px;
  }
  .nav-main {
    display: none;
  }
  .menu-toggle {
    display: inline-flex;
  }
  .logo {
    justify-content: center;
  }
  .logo img {
    height: 64px;
    max-width: 148px;
  }
  .hero {
    min-height: 0;
    height: auto;
    display: block;
    overflow: hidden;
    background: var(--forest-deep);
  }
  .hero::after {
    display: block;
    z-index: 1;
    background:
      linear-gradient(
        180deg,
        rgba(8, 22, 18, 0.1) 0%,
        rgba(8, 22, 18, 0.35) 45%,
        rgba(8, 22, 18, 0.88) 100%
      );
  }
  .hero-media {
    position: relative;
    inset: auto;
    z-index: 0;
    width: 100%;
    height: auto;
  }
  .hero-media img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: unset;
    object-position: center center;
    transform: none;
    will-change: auto;
  }
  .hero-quote,
  .experience-badge {
    display: none;
  }
  .hero-copy {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 20px 0 24px;
    max-width: none;
    background: transparent;
  }
  .hero-copy h1 {
    font-size: clamp(1.45rem, 5.5vw, 2rem);
    line-height: 1.2;
    margin-bottom: 8px;
  }
  .hero-copy .lead {
    font-size: 0.9rem;
    line-height: 1.45;
    margin-bottom: 12px;
    max-width: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .hero-pills {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 14px;
  }
  .hero-pill {
    font-size: 11px;
    gap: 8px;
    min-height: 36px;
    padding: 6px 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);
  }
  .hero-pill span {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
  }
  .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 16px;
  }
  .hero-actions .btn {
    width: auto;
    flex: 1 1 auto;
    min-width: min(100%, 180px);
  }
  .hero-actions .btn-ghost {
    width: auto;
    align-self: center;
    color: #fff;
    padding: 8px 4px;
  }
  .section {
    padding: 48px 0;
  }
  .cat-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 14px;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
    grid-template-columns: none;
  }
  .cat-card {
    min-width: min(250px, 78vw);
    scroll-snap-align: start;
  }
  .product-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .story-grid,
  .service-grid,
  .info-grid,
  .stat-grid,
  .about-grid,
  .impact-inner,
  .form-grid,
  .checkout-grid,
  .product-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }
  .about-photo,
  .about-photo img {
    min-height: 260px;
  }
  .quote-viewport {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  }
  .quotes {
    animation: quote-marquee 26s linear infinite;
  }
  .quote-slider .quote-card {
    width: min(280px, 78vw);
  }
  .drawer,
  .search-panel {
    width: 100%;
  }
  .chat-fab,
  .wa-fab {
    width: 50px;
    height: 50px;
    right: 14px;
  }
  .wa-fab {
    bottom: calc(16px + env(safe-area-inset-bottom));
  }
  .chat-fab {
    bottom: calc(74px + env(safe-area-inset-bottom));
  }
  .chat-panel {
    right: 12px;
    left: 12px;
    width: auto;
    bottom: calc(136px + env(safe-area-inset-bottom));
  }
  .support-inner {
    padding: 28px 0;
  }
  .support-inner h2 {
    font-size: 1.4rem;
  }
  .support-actions {
    width: 100%;
  }
  .support-actions .btn {
    flex: 1;
    min-width: 140px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(var(--container), calc(100% - 24px));
  }
  .product-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .product-card {
    border-radius: 14px;
  }
  .product-body {
    padding: 12px 10px 12px;
    gap: 6px;
  }
  .product-body h3 {
    font-size: 0.95rem;
    line-height: 1.25;
  }
  .product-body p {
    font-size: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .price {
    font-size: 1rem;
  }
  .product-body .btn {
    width: 100%;
    min-height: 42px;
    padding: 8px 10px;
    font-size: 12px;
  }
  .announce-group {
    gap: 28px;
    padding: 9px 24px;
  }
  .hero-pills {
    display: none;
  }
  .hero-copy {
    padding: 14px 0 18px;
  }
  .hero-copy .kicker {
    font-size: 11px;
    letter-spacing: 0.16em;
  }
  .hero-copy h1 {
    font-size: 1.35rem;
    margin-bottom: 6px;
  }
  .hero-copy .lead {
    font-size: 0.84rem;
    margin-bottom: 12px;
    -webkit-line-clamp: 2;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }
  .hero-actions .btn {
    width: 100%;
    min-width: 0;
  }
  .info-item {
    padding: 18px 4px;
  }
  .filters {
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 6px;
  }
  .filter-chip {
    flex-shrink: 0;
  }
}
