/* ============================================================
   AURELIA — Modern Botanical Apothecary & Pharmacy
   Concept demo for Talbawy Studios
   Art direction: "Botanical Atelier" — warm ivory canvas,
   deep botanical green, amber/gold accents, editorial serif.
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  /* Palette */
  --bone:        #f6f1e7;  /* warm ivory base */
  --bone-2:      #efe7d8;  /* deeper ivory */
  --bone-3:      #e7dcc8;  /* card / panel */
  --paper:       #fbf8f1;  /* lifted surface */
  --green:       #2f4a3a;  /* deep botanical green */
  --green-2:     #213528;  /* darker green */
  --green-deep:  #16241b;  /* near-black green */
  --sage:        #8aa192;  /* soft sage */
  --sage-2:      #b9c8ba;  /* pale sage */
  --amber:       #c79a4e;  /* refined amber/gold (accents/decoration on light) */
  --amber-2:     #e2bd78;  /* light amber (eyebrows/labels on DARK bg, 9:1) */
  --amber-glow:  #f0d39b;
  --amber-ink:   #8a5e22;  /* deep amber for small labels on LIGHT bg (≈5.4:1 on --bone) */
  --ink:         #1c2620;  /* primary text on light */
  --ink-soft:    #4b5750;  /* secondary text */
  --line:        rgba(47, 74, 58, 0.16);
  --line-soft:   rgba(47, 74, 58, 0.08);

  /* Type */
  --display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Hanken Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Rhythm */
  --maxw: 1240px;
  --gutter: clamp(1.25rem, 4vw, 4rem);
  --radius: 14px;
  --radius-lg: 22px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);

  --shadow-sm: 0 1px 2px rgba(22, 36, 27, 0.06), 0 6px 18px rgba(22, 36, 27, 0.06);
  --shadow-md: 0 18px 50px rgba(22, 36, 27, 0.14);
  --shadow-lg: 0 40px 90px rgba(22, 36, 27, 0.22);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: hidden; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  font-family: var(--sans);
  background: var(--bone);
  color: var(--ink);
  line-height: 1.6;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ---------- Accessibility ---------- */
:focus-visible {
  outline: 2.5px solid var(--amber);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 999;
  background: var(--green);
  color: var(--bone);
  padding: 0.7rem 1.1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  transition: top 0.25s var(--ease);
}
.skip-link:focus { top: 1rem; }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

/* ---------- Layout primitives ---------- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: clamp(4rem, 9vw, 8.5rem); }
.section--tight { padding-block: clamp(3rem, 6vw, 5.5rem); }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--amber-ink);
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
}
.eyebrow--center { justify-content: center; }
.eyebrow--center::after {
  content: "";
  width: 26px;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
}

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.01em;
  color: var(--green-2);
}

.display-xl { font-size: clamp(2.9rem, 8.5vw, 6.5rem); }
.display-lg { font-size: clamp(2.4rem, 6vw, 4.4rem); }
.display-md { font-size: clamp(1.9rem, 4vw, 3rem); }
.display-sm { font-size: clamp(1.5rem, 3vw, 2.1rem); }

.lede {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  color: var(--ink-soft);
  max-width: 56ch;
  line-height: 1.7;
}

.muted { color: var(--ink-soft); }
.italic-serif { font-family: var(--display); font-style: italic; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.7rem;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: transform 0.4s var(--ease), background 0.4s var(--ease),
              color 0.4s var(--ease), box-shadow 0.4s var(--ease);
  will-change: transform;
}
.btn .arrow { transition: transform 0.4s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

.btn--primary {
  background: var(--green);
  color: var(--bone);
  box-shadow: 0 12px 30px rgba(47, 74, 58, 0.28);
}
.btn--primary:hover {
  background: var(--green-2);
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(47, 74, 58, 0.34);
}

.btn--amber {
  background: linear-gradient(180deg, var(--amber-2), var(--amber));
  color: var(--green-deep);
  box-shadow: 0 12px 30px rgba(199, 154, 78, 0.4);
}
.btn--amber:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(199, 154, 78, 0.5);
}

.btn--ghost {
  border: 1px solid var(--line);
  color: var(--green-2);
  background: rgba(255,255,255,0.25);
}
.btn--ghost:hover {
  background: var(--green);
  color: var(--bone);
  border-color: var(--green);
  transform: translateY(-2px);
}

.textlink {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  color: var(--green-2);
  position: relative;
}
.textlink::after {
  content: "";
  position: absolute;
  left: 0; bottom: -3px;
  width: 100%; height: 1.5px;
  background: var(--amber);
  transform: scaleX(0.0);
  transform-origin: left;
  transition: transform 0.45s var(--ease);
}
.textlink:hover::after { transform: scaleX(1); }
.textlink .arrow { transition: transform 0.4s var(--ease); }
.textlink:hover .arrow { transform: translateX(4px); }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.5s var(--ease), box-shadow 0.5s var(--ease),
              backdrop-filter 0.5s var(--ease), padding 0.4s var(--ease);
  padding-block: 1.15rem;
}
.site-header.is-scrolled {
  background: rgba(246, 241, 231, 0.82);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  box-shadow: 0 1px 0 var(--line-soft), 0 10px 30px rgba(22,36,27,0.06);
  padding-block: 0.75rem;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--green-2);
}
.brand .mark {
  width: 34px; height: 34px;
  flex: none;
}
.brand .mark svg { width: 100%; height: 100%; }
.brand small {
  display: block;
  font-family: var(--sans);
  font-size: 0.55rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--amber-ink); /* deep amber: ≥4.5:1 on ivory header */
  font-weight: 600;
  margin-top: -2px;
}
/* Brand tagline lives on the dark footer here — use light amber for contrast */
.footer-brand .brand small { color: var(--amber-2); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.nav-links a {
  padding: 0.55rem 0.95rem;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--ink);
  border-radius: 999px;
  position: relative;
  transition: color 0.3s var(--ease), background 0.3s var(--ease);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 50%; bottom: 6px;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--amber);
  transform: translateX(-50%) scale(0);
  transition: transform 0.35s var(--ease);
}
.nav-links a:hover { color: var(--green-2); }
.nav-links a[aria-current="page"] { color: var(--green-2); font-weight: 600; }
.nav-links a[aria-current="page"]::after { transform: translateX(-50%) scale(1); }

.nav-cta { display: inline-flex; align-items: center; gap: 0.75rem; }

/* Cart indicator (demo — no checkout) */
.cart-btn {
  position: relative;
  width: 44px; height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.4);
  color: var(--green-2);
  display: grid; place-items: center;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.cart-btn:hover { border-color: var(--green); background: rgba(255,255,255,0.65); transform: translateY(-1px); }
.cart-btn.is-bumped { animation: cart-bump 0.4s var(--ease); }
@keyframes cart-bump {
  0% { transform: scale(1); }
  40% { transform: scale(1.12); }
  100% { transform: scale(1); }
}
@media (prefers-reduced-motion: reduce) { .cart-btn.is-bumped { animation: none; } }
.cart-count {
  position: absolute;
  top: -6px; right: -6px;
  min-width: 19px; height: 19px;
  padding: 0 5px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--amber-2), var(--amber));
  color: var(--green-deep);
  font-size: 0.66rem;
  font-weight: 700;
  line-height: 19px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(199,154,78,0.5);
}
.cart-count[hidden] { display: none; }

.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  border-radius: 12px;
  border: 1px solid var(--line);
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.4);
}
.nav-toggle span {
  position: relative;
  width: 20px; height: 2px;
  background: var(--green-2);
  border-radius: 2px;
  transition: background 0.3s var(--ease);
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0; width: 20px; height: 2px;
  background: var(--green-2);
  border-radius: 2px;
  transition: transform 0.35s var(--ease), top 0.35s var(--ease);
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(82vw, 340px);
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 0.4rem;
    padding: 5rem 1.75rem 2rem;
    background: var(--green-deep);
    transform: translateX(102%);
    transition: transform 0.55s var(--ease);
    box-shadow: var(--shadow-lg);
  }
  .nav-links.is-open { transform: translateX(0); }
  .nav-links a {
    color: var(--bone);
    font-size: 1.4rem;
    font-family: var(--display);
    padding: 0.7rem 0.5rem;
    border-bottom: 1px solid rgba(246,241,231,0.08);
    border-radius: 0;
  }
  .nav-links a::after { display: none; }
  .nav-links a[aria-current="page"] { color: var(--amber-2); }
  .nav-cta .btn { display: none; }
  .nav-overlay {
    position: fixed; inset: 0;
    background: rgba(22, 36, 27, 0.45);
    backdrop-filter: blur(3px);
    opacity: 0; visibility: hidden;
    transition: opacity 0.4s var(--ease), visibility 0.4s var(--ease);
    z-index: 90;
  }
  .nav-overlay.is-open { opacity: 1; visibility: visible; }
}

/* ============================================================
   CONCEPT BADGE
   ============================================================ */
.concept-badge {
  position: fixed;
  right: clamp(0.75rem, 2vw, 1.5rem);
  bottom: clamp(0.75rem, 2vw, 1.5rem);
  z-index: 200;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.95rem;
  background: rgba(22, 36, 27, 0.92);
  color: var(--bone);
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.03em;
  font-weight: 500;
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(226, 189, 120, 0.25);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.concept-badge:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.concept-badge .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--amber-2);
  box-shadow: 0 0 0 0 rgba(226,189,120,0.6);
  animation: pulse 2.6s var(--ease-soft) infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(226,189,120,0.55); }
  70% { box-shadow: 0 0 0 8px rgba(226,189,120,0); }
  100% { box-shadow: 0 0 0 0 rgba(226,189,120,0); }
}
@media (prefers-reduced-motion: reduce) { .concept-badge .dot { animation: none; } }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: clamp(7rem, 14vh, 10rem);
  padding-bottom: clamp(3rem, 8vh, 6rem);
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 85% 0%, rgba(199,154,78,0.16), transparent 55%),
    radial-gradient(90% 80% at 0% 100%, rgba(138,161,146,0.22), transparent 60%),
    linear-gradient(180deg, var(--bone) 0%, var(--bone-2) 100%);
}

.hero-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  width: 100%;
}
@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

.hero-copy { max-width: 38rem; }
.hero h1 { margin-top: 1.4rem; }
.hero h1 .shimmer {
  background: linear-gradient(100deg, var(--amber) 0%, var(--amber-2) 30%, var(--green) 70%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
}
.hero .lede { margin-top: 1.6rem; }
.hero-actions {
  margin-top: 2.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}
.hero-trust {
  margin-top: 2.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem 2.2rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
}
.hero-trust .stat .num {
  font-family: var(--display);
  font-size: 2rem;
  color: var(--green-2);
  line-height: 1;
}
.hero-trust .stat .lbl {
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 0.35rem;
}

/* Hero visual — stacked, parallax botanical frames */
.hero-visual {
  position: relative;
  aspect-ratio: 4 / 4.6;
  perspective: 1200px;
}
.hero-frame {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  will-change: transform;
}
.hero-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-frame--main {
  inset: 0 0 12% 14%;
  z-index: 2;
}
.hero-frame--accent {
  width: 46%;
  aspect-ratio: 3/4;
  left: -2%;
  bottom: 0;
  z-index: 3;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--bone);
}
.hero-leaf {
  position: absolute;
  z-index: 4;
  color: var(--green);
  opacity: 0.9;
  filter: drop-shadow(0 10px 20px rgba(22,36,27,0.2));
  will-change: transform;
}
.hero-leaf--1 { top: -3%; right: 4%; width: 90px; }
.hero-leaf--2 { bottom: 6%; right: -4%; width: 64px; color: var(--amber); }

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(0.5px);
  pointer-events: none;
  z-index: 1;
  will-change: transform;
}
.hero-tag {
  position: absolute;
  z-index: 5;
  top: 12%;
  right: -3%;
  background: rgba(251,248,241,0.92);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.75rem 1rem;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.7rem;
  max-width: 200px;
}
.hero-tag .ico {
  width: 34px; height: 34px;
  border-radius: 10px;
  background: linear-gradient(180deg, var(--amber-2), var(--amber));
  display: grid; place-items: center;
  color: var(--green-deep);
  flex: none;
}
.hero-tag .t { font-size: 0.8rem; line-height: 1.3; }
.hero-tag .t strong { display: block; color: var(--green-2); font-weight: 700; }
.hero-tag .t span { color: var(--ink-soft); font-size: 0.72rem; }

@media (max-width: 940px) {
  .hero-visual { aspect-ratio: 4/3.4; max-width: 30rem; margin-inline: auto; width: 100%; }
  .hero-tag { right: 0; }
}
@media (max-width: 520px) {
  .hero-tag { display: none; }
  .hero-leaf--1 { width: 64px; }
}

/* Floating ambient particles (canvas-free, CSS) */
.spore {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--amber-glow), var(--amber) 70%);
  opacity: 0.5;
  pointer-events: none;
  z-index: 2;
  animation: drift linear infinite;
}
@keyframes drift {
  0%   { transform: translateY(0) translateX(0) scale(1); opacity: 0; }
  10%  { opacity: 0.55; }
  90%  { opacity: 0.4; }
  100% { transform: translateY(-90vh) translateX(30px) scale(0.4); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) { .spore { display: none; } }

/* ============================================================
   MARQUEE / TICKER
   ============================================================ */
.ticker {
  background: var(--green-deep);
  color: var(--bone);
  padding-block: 1.1rem;
  overflow: hidden;
  position: relative;
}
.ticker::before, .ticker::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0; width: 80px;
  z-index: 2;
}
.ticker::before { left: 0; background: linear-gradient(90deg, var(--green-deep), transparent); }
.ticker::after { right: 0; background: linear-gradient(270deg, var(--green-deep), transparent); }
.ticker-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: scroll-x 32s linear infinite;
}
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  font-family: var(--display);
  font-style: italic;
  font-size: 1.35rem;
  white-space: nowrap;
  color: var(--bone);
}
.ticker-item span { color: var(--amber-2); }
.ticker-item .sep { color: var(--sage); font-style: normal; }
@keyframes scroll-x {
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; flex-wrap: wrap; justify-content: center; }
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  transition-delay: var(--delay, 0ms);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}
[data-reveal="scale"] { transform: translateY(30px) scale(0.96); }
[data-reveal="left"] { transform: translateX(-36px); }
[data-reveal="right"] { transform: translateX(36px); }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.sec-head {
  max-width: 60rem;
}
.sec-head--center { text-align: center; margin-inline: auto; }
.sec-head h2 { margin-top: 1.1rem; }
.sec-head .lede { margin-top: 1.1rem; }
.sec-head--center .lede { margin-inline: auto; }

.split-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

/* ============================================================
   PILLARS / FEATURE CARDS
   ============================================================ */
.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}
.pillar {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease),
              border-color 0.5s var(--ease);
}
.pillar::after {
  content: "";
  position: absolute;
  inset: auto -40% -60% auto;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(199,154,78,0.16), transparent 70%);
  opacity: 0;
  transition: opacity 0.6s var(--ease);
}
.pillar:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--line);
}
.pillar:hover::after { opacity: 1; }
.pillar .pico {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(160deg, var(--green), var(--green-2));
  color: var(--amber-2);
  display: grid; place-items: center;
  margin-bottom: 1.4rem;
  box-shadow: 0 10px 24px rgba(47,74,58,0.25);
}
.pillar h3 { font-size: 1.55rem; margin-bottom: 0.5rem; }
.pillar p { color: var(--ink-soft); font-size: 0.96rem; }

/* ============================================================
   PRODUCT GRID
   ============================================================ */
.category-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
}
.chip {
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--green-2);
  background: rgba(255,255,255,0.4);
  transition: all 0.4s var(--ease);
}
.chip:hover { border-color: var(--green); transform: translateY(-1px); }
.chip.is-active {
  background: var(--green);
  color: var(--bone);
  border-color: var(--green);
  box-shadow: 0 8px 20px rgba(47,74,58,0.25);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  gap: clamp(1.1rem, 2.5vw, 1.75rem);
}
.product {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.55s var(--ease), box-shadow 0.55s var(--ease),
              border-color 0.55s var(--ease);
}
.product:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--line);
}
/* Filtered-out cards: keep [hidden] authoritative over .product{display:flex} */
.product[hidden] { display: none !important; }
.product-media {
  position: relative;
  aspect-ratio: 4/4.4;
  overflow: hidden;
  background: var(--bone-3);
}
.product-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.1s var(--ease);
}
.product:hover .product-media img { transform: scale(1.07); }
.product-cat {
  position: absolute;
  top: 0.9rem; left: 0.9rem;
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--green-deep);
  background: rgba(251,248,241,0.92);
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}
.product-fav {
  position: absolute;
  top: 0.8rem; right: 0.8rem;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(251,248,241,0.9);
  backdrop-filter: blur(6px);
  display: grid; place-items: center;
  color: var(--green-2);
  transform: translateY(-6px);
  opacity: 0;
  transition: all 0.45s var(--ease);
}
.product:hover .product-fav { transform: none; opacity: 1; }
.product-fav:hover { background: var(--green); color: var(--amber-2); }
.product-fav svg path { transition: fill 0.3s var(--ease), stroke 0.3s var(--ease); }
/* Saved (favorited) state — filled amber heart, persists even before hover */
.product-fav[aria-pressed="true"] {
  transform: none;
  opacity: 1;
  color: var(--amber);
  background: rgba(199,154,78,0.16);
}
.product-fav[aria-pressed="true"]:hover { background: var(--green); color: var(--amber-2); }
.product-fav[aria-pressed="true"] svg path { fill: currentColor; stroke: currentColor; }
.product-fav.is-bumped { animation: cart-bump 0.4s var(--ease); }
@media (prefers-reduced-motion: reduce) { .product-fav.is-bumped { animation: none; } }
.product-body {
  padding: 1.3rem 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-body h3 {
  font-size: 1.4rem;
  margin-bottom: 0.2rem;
}
.product-note {
  font-size: 0.85rem;
  color: var(--ink-soft);
  line-height: 1.5;
  margin-bottom: 1rem;
}
.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.2rem;
}
.product-tags li {
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--sage);
  border: 1px solid var(--line-soft);
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
}
.product-foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--line-soft);
}
.product-price {
  font-family: var(--display);
  font-size: 1.5rem;
  color: var(--green-2);
}
.product-price small {
  font-family: var(--sans);
  font-size: 0.7rem;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
  margin-left: 0.2rem;
}
.add-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--green-2);
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  transition: all 0.4s var(--ease);
}
.add-btn:hover { background: var(--green); color: var(--amber-2); border-color: var(--green); }

/* ============================================================
   FEATURE SPLIT (image + text)
   ============================================================ */
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.feature--rev .feature-media { order: 2; }
@media (max-width: 860px) {
  .feature { grid-template-columns: 1fr; }
  .feature--rev .feature-media { order: 0; }
}
.feature-media {
  position: relative;
  border-radius: var(--radius-lg);
}
.feature-media .frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/4.6;
}
.feature-media .frame img { width: 100%; height: 100%; object-fit: cover; }
.feature-media .badge-float {
  position: absolute;
  bottom: -1.4rem; left: -1.4rem;
  background: var(--green-deep);
  color: var(--bone);
  border-radius: 18px;
  padding: 1.2rem 1.4rem;
  box-shadow: var(--shadow-lg);
  max-width: 220px;
  border: 1px solid rgba(226,189,120,0.2);
}
.feature-media .badge-float .big {
  font-family: var(--display);
  font-size: 2.4rem;
  line-height: 1;
  color: var(--amber-2);
}
.feature-media .badge-float .small {
  font-size: 0.78rem;
  color: var(--sage-2);
  margin-top: 0.4rem;
}
@media (max-width: 520px) {
  .feature-media .badge-float { left: 0.8rem; bottom: -1rem; padding: 0.9rem 1rem; }
  .feature-media .badge-float .big { font-size: 1.9rem; }
}
.feature-list {
  margin-top: 1.8rem;
  display: grid;
  gap: 1.1rem;
}
.feature-list li {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}
.feature-list .tick {
  flex: none;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(199,154,78,0.16);
  color: var(--amber);
  display: grid; place-items: center;
  margin-top: 2px;
}
.feature-list .tx strong { display: block; color: var(--green-2); font-weight: 700; }
.feature-list .tx span { font-size: 0.92rem; color: var(--ink-soft); }

/* ============================================================
   SERVICES (care page)
   ============================================================ */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}
.svc {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.svc:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.svc-media { aspect-ratio: 16/10; overflow: hidden; }
.svc-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.svc:hover .svc-media img { transform: scale(1.06); }
.svc-body { padding: 1.6rem 1.6rem 1.8rem; display: flex; flex-direction: column; flex: 1; }
.svc-num {
  font-family: var(--display);
  font-size: 0.95rem;
  color: var(--amber-ink);
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}
.svc h3 { font-size: 1.65rem; margin-bottom: 0.6rem; }
.svc p { color: var(--ink-soft); font-size: 0.94rem; margin-bottom: 1.2rem; }
.svc .textlink { margin-top: auto; }

/* Steps / process */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  counter-reset: step;
}
.step {
  position: relative;
  padding-top: 2.5rem;
}
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  position: absolute;
  top: 0; left: 0;
  font-family: var(--display);
  font-size: 2.4rem;
  color: var(--sage);
  opacity: 0.6;
}
.step .bar {
  height: 2px;
  background: var(--line);
  margin-bottom: 1.2rem;
  position: relative;
  overflow: hidden;
}
.step .bar::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 0;
  background: var(--amber);
  transition: width 1.2s var(--ease) var(--delay, 0ms);
}
.step.is-visible .bar::after { width: 100%; }
.step h3 { font-size: 1.3rem; margin-bottom: 0.4rem; }
.step p { font-size: 0.9rem; color: var(--ink-soft); }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(120% 120% at 90% 10%, rgba(199,154,78,0.22), transparent 55%),
    linear-gradient(160deg, var(--green) 0%, var(--green-deep) 100%);
  color: var(--bone);
  border-radius: clamp(20px, 4vw, 34px);
  padding: clamp(3rem, 7vw, 6rem) clamp(1.5rem, 5vw, 5rem);
  text-align: center;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(120deg, transparent, rgba(226,189,120,0.12), transparent);
  pointer-events: none;
}
.cta-band h2 { color: var(--bone); }
.cta-band .lede { color: var(--sage-2); margin-inline: auto; margin-top: 1.1rem; }
.cta-band .hero-actions { justify-content: center; }
.cta-leaf {
  position: absolute;
  color: rgba(226,189,120,0.14);
  z-index: 0;
}
.cta-leaf--1 { top: -30px; left: -10px; width: 180px; transform: rotate(-15deg); }
.cta-leaf--2 { bottom: -40px; right: -20px; width: 220px; transform: rotate(160deg); }
.cta-band .wrap-inner { position: relative; z-index: 2; max-width: 44rem; margin-inline: auto; }

/* ============================================================
   TESTIMONIAL
   ============================================================ */
.quote {
  text-align: center;
  max-width: 50rem;
  margin-inline: auto;
}
.quote .mark {
  font-family: var(--display);
  font-size: 5rem;
  line-height: 0.5;
  color: var(--amber);
  display: block;
  margin-bottom: 1rem;
}
.quote blockquote {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3.4vw, 2.6rem);
  line-height: 1.3;
  color: var(--green-2);
  font-weight: 500;
}
.quote .cite {
  margin-top: 1.8rem;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.quote .cite strong { color: var(--green-2); }

/* ============================================================
   ABOUT / STORY
   ============================================================ */
.story-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.story-stats .s .n {
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  color: var(--green-2);
  line-height: 1;
}
.story-stats .s .l {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 0.5rem;
}

.values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.value {
  border-top: 2px solid var(--line);
  padding-top: 1.4rem;
  transition: border-color 0.5s var(--ease);
}
.value:hover { border-color: var(--amber); }
.value h3 { font-size: 1.45rem; margin-bottom: 0.5rem; }
.value p { font-size: 0.92rem; color: var(--ink-soft); }

.team {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
/* The craft (atelier showcase — product/process imagery, honestly captioned) */
.craft { text-align: left; }
.craft-media {
  position: relative;
  aspect-ratio: 4/4.6;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 1.1rem;
  box-shadow: var(--shadow-sm);
}
.craft-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(22, 36, 27, 0.55) 0%, rgba(22, 36, 27, 0.12) 38%, transparent 64%);
  opacity: 0;
  transition: opacity 0.6s var(--ease);
}
.craft:hover .craft-media::after { opacity: 1; }
.craft-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.craft:hover .craft-media img { transform: scale(1.06); }
.craft-tag {
  position: absolute;
  left: 0.9rem;
  bottom: 0.9rem;
  z-index: 1;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-deep);
  background: rgba(246, 241, 231, 0.92);
  border: 1px solid rgba(199, 154, 78, 0.45);
  padding: 0.34rem 0.7rem;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}
.craft figcaption { padding-right: 0.4rem; }
.craft h3 { font-size: 1.5rem; line-height: 1.1; }
.craft .craft-note { font-size: 0.92rem; color: var(--ink-soft); margin-top: 0.45rem; }

/* Makers line — names the registered team without faking headshots */
.makers {
  margin-top: clamp(2.4rem, 5vw, 3.4rem);
  padding: clamp(1.6rem, 4vw, 2.4rem) clamp(1.4rem, 4vw, 2.6rem);
  text-align: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--paper), var(--bone-2));
}
.makers-eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber-ink);
  margin-bottom: 0.9rem;
}
.makers-line {
  font-family: var(--display);
  font-size: clamp(1.3rem, 3.4vw, 1.85rem);
  font-weight: 500;
  line-height: 1.4;
  color: var(--ink);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.2rem 0.7rem;
}
.makers-dot { color: var(--amber); }
.makers-foot { font-size: 0.92rem; color: var(--ink-soft); margin-top: 0.9rem; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 3vw, 2.4rem);
}
.field { margin-bottom: 1.2rem; }
.field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--green-2);
  margin-bottom: 0.5rem;
}
.field input, .field select, .field textarea {
  width: 100%;
  font: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--bone);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease);
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--green);
  background: var(--paper);
  box-shadow: 0 0 0 3px rgba(47,74,58,0.12);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 480px) { .field-row { grid-template-columns: 1fr; } }
.form-note { font-size: 0.78rem; color: var(--ink-soft); margin-top: 0.5rem; }
.form-success {
  display: none;
  margin-top: 1rem;
  padding: 0.9rem 1.1rem;
  border-radius: 12px;
  background: rgba(47,74,58,0.1);
  border: 1px solid var(--line);
  color: var(--green-2);
  font-size: 0.9rem;
}
.form-success.is-shown { display: block; }

.contact-detail {
  display: grid;
  gap: 1.5rem;
}
.contact-row {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line-soft);
}
.contact-row:last-child { border-bottom: none; }
.contact-row .ico {
  flex: none;
  width: 46px; height: 46px;
  border-radius: 12px;
  background: linear-gradient(160deg, var(--green), var(--green-2));
  color: var(--amber-2);
  display: grid; place-items: center;
}
.contact-row .meta .k { font-size: 0.74rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 0.2rem; }
.contact-row .meta .v { font-size: 1.05rem; color: var(--green-2); font-weight: 600; }
.contact-row .meta .v a:hover { color: var(--amber-ink); }
.contact-row .meta small { display: block; color: var(--ink-soft); font-size: 0.85rem; font-weight: 400; margin-top: 0.15rem; }

.hours {
  margin-top: 0.5rem;
}
.hours li {
  display: flex;
  justify-content: space-between;
  padding: 0.55rem 0;
  border-bottom: 1px dashed var(--line-soft);
  font-size: 0.92rem;
}
.hours li:last-child { border-bottom: none; }
.hours li span:first-child { color: var(--ink-soft); }
.hours li span:last-child { color: var(--green-2); font-weight: 600; }
.hours li.today span:last-child { color: var(--amber-ink); }

/* ============================================================
   PAGE HERO (interior pages)
   ============================================================ */
.page-hero {
  position: relative;
  padding-top: clamp(8rem, 16vh, 12rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
  overflow: hidden;
  background:
    radial-gradient(100% 80% at 80% 0%, rgba(199,154,78,0.14), transparent 55%),
    linear-gradient(180deg, var(--bone) 0%, var(--bone-2) 100%);
}
.page-hero .crumbs {
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  margin-bottom: 1.4rem;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.page-hero .crumbs a:hover { color: var(--green-2); }
.page-hero .crumbs .sep { color: var(--sage); }
.page-hero h1 { max-width: 18ch; }
.page-hero .lede { margin-top: 1.4rem; }
.page-hero-leaf {
  position: absolute;
  right: -40px; top: 20%;
  width: 280px;
  color: rgba(47,74,58,0.06);
  z-index: 0;
}
.page-hero .wrap { position: relative; z-index: 2; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--green-deep);
  color: var(--sage-2);
  padding-top: clamp(3.5rem, 7vw, 6rem);
  position: relative;
  overflow: hidden;
}
.footer-leaf {
  position: absolute;
  bottom: -60px; left: -40px;
  width: 360px;
  color: rgba(226,189,120,0.05);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(246,241,231,0.08);
  position: relative;
  z-index: 2;
}
@media (max-width: 820px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 480px) { .footer-top { grid-template-columns: 1fr; } }
.footer-brand .brand { color: var(--bone); }
.footer-brand p { margin-top: 1.2rem; max-width: 30ch; font-size: 0.92rem; color: var(--sage-2); }
.footer-social { display: flex; gap: 0.6rem; margin-top: 1.4rem; }
.footer-social a {
  width: 40px; height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(246,241,231,0.14);
  display: grid; place-items: center;
  color: var(--sage-2);
  transition: all 0.4s var(--ease);
}
.footer-social a:hover { background: var(--amber); color: var(--green-deep); border-color: var(--amber); transform: translateY(-2px); }
.footer-col h4 {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber-2);
  margin-bottom: 1.2rem;
  font-weight: 600;
}
.footer-col ul { display: grid; gap: 0.7rem; }
.footer-col a { font-size: 0.92rem; color: var(--sage-2); transition: color 0.3s var(--ease); }
.footer-col a:hover { color: var(--bone); }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  padding-block: 1.8rem;
  font-size: 0.82rem;
  color: var(--sage);
  position: relative;
  z-index: 2;
}
.footer-bottom a { color: var(--amber-2); }
.footer-bottom a:hover { color: var(--bone); text-decoration: underline; }
.footer-disclaimer {
  background: rgba(0,0,0,0.18);
  padding: 1rem 0;
  position: relative;
  z-index: 2;
}
.footer-disclaimer .wrap { font-size: 0.78rem; color: var(--sage); line-height: 1.6; }
.footer-disclaimer strong { color: var(--amber-2); }

/* Newsletter */
.news-form { display: flex; gap: 0.5rem; margin-top: 1rem; max-width: 320px; }
.news-form input {
  flex: 1; min-width: 0;
  background: rgba(246,241,231,0.07);
  border: 1px solid rgba(246,241,231,0.16);
  border-radius: 999px;
  padding: 0.7rem 1rem;
  color: var(--bone);
  font: inherit; font-size: 0.88rem;
}
.news-form input::placeholder { color: var(--sage); }
.news-form input:focus { outline: none; border-color: var(--amber); }
.news-form button {
  flex: none;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--amber);
  color: var(--green-deep);
  display: grid; place-items: center;
  transition: all 0.4s var(--ease);
}
.news-form button:hover { background: var(--amber-2); transform: translateX(2px); }

/* ============================================================
   MISC HELPERS
   ============================================================ */
.bg-paper { background: var(--paper); }
.bg-bone2 { background: var(--bone-2); }
.bg-green { background: var(--green-deep); color: var(--bone); }
.bg-green h2, .bg-green h3 { color: var(--bone); }
.bg-green .lede, .bg-green p { color: var(--sage-2); }

.divider-leaf {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  color: var(--sage);
  margin-block: 0.5rem;
}
.divider-leaf::before, .divider-leaf::after {
  content: "";
  height: 1px;
  flex: 1;
  max-width: 120px;
  background: var(--line);
}
.divider-leaf svg { width: 26px; color: var(--amber); }

/* Parallax helper */
[data-parallax] { will-change: transform; }
@media (prefers-reduced-motion: reduce) {
  [data-parallax] { transform: none !important; }
}

.mb-0 { margin-bottom: 0; }
.mt-l { margin-top: clamp(2rem, 4vw, 3.5rem); }
