/* =========================================================
   Nænsomt – Premium Iced Tea  ·  styles.css
   Design system: botanical, warm, premium, Scandinavian minimal luxury
   All colors defined as CSS custom properties at :root.
   ========================================================= */
/* ── Reset & Box Model ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
img, svg { display: block; max-width: none; }
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; background: none; border: none; font: inherit; }
/* ── Design Tokens ── */
:root {
  /* ---- Palette ---- */
  --off-white:       #f8f4ef;       /* warm parchment */
  --cream:           #f2ece3;       /* slightly deeper parchment */
  --bone:            #e8e0d5;       /* subtle border tone */
  --clay:            #c8b8a2;       /* earth accent */
  --sage:            #8a9e85;       /* botanical green */
  --sage-deep:       #5e7a59;       /* deeper green */
  --moss:            #3d5c38;       /* dark botanical green */
  --umber:           #6b4f3a;       /* warm dark brown text */
  --bark:            #3d2b1f;       /* deepest text / headings */
  --ink:             #2a1f17;       /* near-black */
  /* ---- Tea Colors (the stars of the show) ---- */
  --tea-red:         #9b1c2e;       /* deep ruby hibiscus */
  --tea-amber-dark:  #c45e1a;       /* rooibos amber-red */
  --tea-peach:       #c8833a;       /* black tea warm amber */
  --tea-green-gold:  #b8a040;       /* green tea golden */
  /* ---- Petal / decoration colors ---- */
  --petal-red:       #d43c54;
  --petal-center:    #f9c7c0;
  --citrus-fill:     #f0a040;
  --citrus-stroke:   #a86020;
  --peach-fill:      #e08040;
  --peach-stroke:    #a05020;
  --leaf-deco:       #6a9e60;
  --lemongrass-color:#8aaa50;
  /* ---- Bottle ---- */
  --bottle-body:     rgba(248, 244, 239, 0.55);
  --bottle-highlight:rgba(255,255,255,0.9);
  --cap-dark:        #3d2b1f;
  --label-bg:        #ffffff;
  --leaf-vein:       rgba(255,255,255,0.6);
  /* ---- Typography ---- */
  --font-display:    Georgia, "Times New Roman", Times, serif;
  --font-body:       system-ui, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
  --font-mono:       "Courier New", Courier, monospace;
  --text-xs:    0.75rem;
  --text-sm:    0.875rem;
  --text-base:  1rem;
  --text-md:    1.125rem;
  --text-lg:    1.25rem;
  --text-xl:    1.5rem;
  --text-2xl:   2rem;
  --text-3xl:   2.75rem;
  --text-4xl:   3.5rem;
  --text-5xl:   4.5rem;
  /* ---- Spacing ---- */
  --sp-1:  0.25rem;
  --sp-2:  0.5rem;
  --sp-3:  0.75rem;
  --sp-4:  1rem;
  --sp-6:  1.5rem;
  --sp-8:  2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;
  --sp-32: 8rem;
  /* ---- Layout ---- */
  --max-width:     1180px;
  --section-py:    var(--sp-24);
  --card-radius:   1.25rem;
  --border-radius: 0.625rem;
  /* ---- Shadows ---- */
  --shadow-sm:  0 1px 4px rgba(61,43,31,0.06);
  --shadow-md:  0 4px 16px rgba(61,43,31,0.10);
  --shadow-lg:  0 12px 40px rgba(61,43,31,0.14);
  --shadow-xl:  0 24px 60px rgba(61,43,31,0.18);
  /* ---- Transitions ---- */
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --dur-fast:   180ms;
  --dur-base:   280ms;
  --dur-slow:   500ms;
  /* ---- Nav height ---- */
  --nav-h: 4.5rem;
}
/* =========================================================
   BASE
   ========================================================= */
body {
  font-family: var(--font-body);
  background-color: var(--off-white);
  color: var(--bark);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
/* Skip link for keyboard users */
.skip-link {
  position: absolute;
  top: -3rem;
  left: 1rem;
  background: var(--moss);
  color: var(--off-white);
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--border-radius);
  font-size: var(--text-sm);
  z-index: 9999;
  transition: top var(--dur-fast);
}
.skip-link:focus { top: 0.5rem; }
/* =========================================================
   TYPOGRAPHY UTILITIES
   ========================================================= */
.section-eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin-bottom: var(--sp-4);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(var(--text-2xl), 4vw, var(--text-4xl));
  font-weight: 400;
  line-height: 1.2;
  color: var(--bark);
  margin-bottom: var(--sp-6);
}
.section-sub {
  font-size: var(--text-md);
  color: var(--umber);
  max-width: 54ch;
  line-height: 1.75;
}
.section-sub em { font-style: italic; color: var(--sage-deep); }
.section-header {
  text-align: center;
  margin-bottom: var(--sp-16);
}
.section-header .section-sub { margin: 0 auto; }
/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 0.75rem 1.75rem;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: all var(--dur-base) var(--ease-smooth);
  outline-offset: 3px;
}
.btn:focus-visible {
  outline: 2px solid var(--sage-deep);
}
/* Primary: dark bark */
.btn--primary {
  background-color: var(--bark);
  color: var(--off-white);
  box-shadow: 0 2px 10px rgba(42,31,23,0.25);
}
.btn--primary:hover {
  background-color: var(--moss);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(42,31,23,0.28);
}
.btn--primary:active { transform: translateY(0); }
/* Ghost: outlined sage */
.btn--ghost {
  background-color: transparent;
  color: var(--bark);
  border: 1.5px solid var(--clay);
}
.btn--ghost:hover {
  border-color: var(--bark);
  background-color: rgba(61,43,31,0.04);
}
/* Nav shop button */
.btn--nav {
  background-color: var(--sage-deep);
  color: var(--off-white);
  padding: 0.55rem 1.25rem;
  font-size: var(--text-sm);
}
.btn--nav:hover {
  background-color: var(--moss);
}
/* =========================================================
   LAYOUT UTILITIES
   ========================================================= */
.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--section-py) var(--sp-6);
}
/* =========================================================
   SCROLL REVEAL ANIMATION
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity var(--dur-slow) var(--ease-smooth),
    transform var(--dur-slow) var(--ease-smooth);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
/* Staggered children inside a parent with data-stagger */
[data-stagger] .reveal:nth-child(2) { transition-delay: 100ms; }
[data-stagger] .reveal:nth-child(3) { transition-delay: 200ms; }
[data-stagger] .reveal:nth-child(4) { transition-delay: 300ms; }
/* =========================================================
   HEADER / NAV
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  background-color: rgba(248, 244, 239, 0.92);
  backdrop-filter: saturate(150%) blur(12px);
  -webkit-backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid var(--bone);
  transition: box-shadow var(--dur-base);
}
.site-header.scrolled {
  box-shadow: var(--shadow-md);
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--sp-6);
  height: 100%;
  display: flex;
  align-items: center;
  gap: var(--sp-8);
}
.nav-links {
  display: flex;
  gap: var(--sp-8);
  align-items: center;
}
.nav-link {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--umber);
  letter-spacing: 0.01em;
  position: relative;
  padding-bottom: 2px;
  transition: color var(--dur-fast);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background-color: var(--sage-deep);
  transition: width var(--dur-base) var(--ease-smooth);
}
.nav-link:hover { color: var(--bark); }
.nav-link:hover::after { width: 100%; }
.nav-link:focus-visible {
  outline: 2px solid var(--sage-deep);
  outline-offset: 3px;
  border-radius: 2px;
}
/* Hamburger (mobile) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.25rem;
  height: 2.25rem;
  padding: 4px;
  border-radius: 6px;
  transition: background var(--dur-fast);
}
.nav-toggle:hover { background: var(--bone); }
.nav-toggle:focus-visible {
  outline: 2px solid var(--sage-deep);
  outline-offset: 2px;
}
.hamburger-bar {
  display: block;
  width: 100%;
  height: 1.5px;
  background-color: var(--bark);
  border-radius: 2px;
  transition: transform var(--dur-base), opacity var(--dur-fast);
  transform-origin: center;
}
.nav-toggle[aria-expanded="true"] .hamburger-bar:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .hamburger-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle[aria-expanded="true"] .hamburger-bar:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}
/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--cream);
  /* Subtle crosshatch paper texture using gradients */
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 28px,
      rgba(61,43,31,0.028) 28px,
      rgba(61,43,31,0.028) 29px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 28px,
      rgba(61,43,31,0.018) 28px,
      rgba(61,43,31,0.018) 29px
    ),
    radial-gradient(ellipse 80% 70% at 80% 50%, rgba(138,158,133,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 10% 80%, rgba(184,160,64,0.08) 0%, transparent 60%),
    linear-gradient(160deg, var(--cream) 0%, var(--off-white) 60%, #ede6db 100%);
}
.hero-texture {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 72% 30%, rgba(155,28,46,0.06) 0%, transparent 45%),
    radial-gradient(circle at 20% 70%, rgba(94,122,89,0.08) 0%, transparent 40%);
  pointer-events: none;
}
/* Botanical leaves decoration */
.hero-botanical {
  position: absolute;
  right: 0;
  top: 0;
  width: 45%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}
.leaf {
  position: absolute;
  color: var(--sage);
  --leaf-vein: rgba(255,255,255,0.5);
}
.leaf--l1 {
  width: clamp(120px, 18vw, 260px);
  top: -5%;
  right: 8%;
  opacity: 0.18;
  transform: rotate(-22deg);
  color: var(--sage-deep);
}
.leaf--l2 {
  width: clamp(80px, 12vw, 180px);
  top: 30%;
  right: 2%;
  opacity: 0.12;
  transform: rotate(15deg);
  color: var(--moss);
}
.leaf--l3 {
  width: clamp(100px, 16vw, 220px);
  bottom: 5%;
  right: 20%;
  opacity: 0.10;
  transform: rotate(-35deg);
  color: var(--sage);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--sp-20) var(--sp-6);
  max-width: 680px;
  padding-left: max(var(--sp-6), calc((100vw - var(--max-width)) / 2 + var(--sp-6)));
}
.hero-eyebrow {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin-bottom: var(--sp-6);
  border-bottom: 1px solid var(--clay);
  padding-bottom: var(--sp-2);
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(var(--text-3xl), 6vw, var(--text-5xl));
  font-weight: 400;
  line-height: 1.1;
  color: var(--bark);
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-6);
}
.hero-headline em {
  font-style: italic;
  color: var(--sage-deep);
}
.hero-sub {
  font-size: var(--text-md);
  color: var(--umber);
  line-height: 1.8;
  max-width: 52ch;
  margin-bottom: var(--sp-10);
}
.hero-cta-group {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
  align-items: center;
}
/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: var(--sp-8);
  left: 50%;
  transform: translateX(-50%);
}
.scroll-line {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--clay), transparent);
  margin: 0 auto;
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50%       { transform: scaleY(0.6); opacity: 0.4; }
}
/* =========================================================
   PRODUCTS SECTION
   ========================================================= */
.products {
  background-color: var(--off-white);
  position: relative;
}
/* Subtle gradient band to separate from hero */
.products::before {
  content: '';
  display: block;
  height: 6px;
  background: linear-gradient(90deg, transparent, var(--bone), var(--clay), var(--bone), transparent);
  opacity: 0.6;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr));
  gap: var(--sp-8);
}
/* ── Product Card ── */
.product-card {
  background-color: var(--cream);
  border: 1px solid var(--bone);
  border-radius: var(--card-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    box-shadow var(--dur-base) var(--ease-smooth),
    transform var(--dur-base) var(--ease-smooth);
}
.product-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}
/* Visual area: tinted background to make tea pop */
.product-visual {
  padding: var(--sp-8) var(--sp-6) var(--sp-6);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: var(--card-radius) var(--card-radius) 0 0;
}
/* Each variant has a distinct background that frames its tea color */
.product-card--red    .product-visual { background: linear-gradient(160deg, #f5e8e6 0%, #edddd6 100%); }
.product-card--amber  .product-visual { background: linear-gradient(160deg, #f5ece0 0%, #edddd0 100%); }
.product-card--peach  .product-visual { background: linear-gradient(160deg, #f5ede0 0%, #eedfd0 100%); }
.product-card--green  .product-visual { background: linear-gradient(160deg, #eef0e4 0%, #e4e6d8 100%); }
.bottle-svg {
  width: clamp(80px, 18vw, 120px);
  height: auto;
  filter: drop-shadow(0 8px 20px rgba(42,31,23,0.22));
  transition: transform var(--dur-slow) var(--ease-smooth);
}
.product-card:hover .bottle-svg {
  transform: translateY(-6px) scale(1.02);
}
/* Product info area */
.product-info {
  padding: var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  flex: 1;
}
.product-name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 400;
  color: var(--bark);
  line-height: 1.3;
}
/* Colour badges */
.product-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 2px 10px;
  border-radius: 100px;
  width: fit-content;
}
.product-badge--red   { background: rgba(155,28,46,0.12);  color: var(--tea-red); }
.product-badge--amber { background: rgba(196,94,26,0.12);  color: var(--tea-amber-dark); }
.product-badge--peach { background: rgba(200,131,58,0.12); color: var(--tea-peach); }
.product-badge--green { background: rgba(184,160,64,0.12); color: #7a6c20; }
/* Ingredient list */
.ingredient-list {
  margin: var(--sp-2) 0;
  padding-left: var(--sp-4);
  list-style: disc;
  font-size: var(--text-sm);
  color: var(--umber);
  line-height: 1.9;
  flex: 1;
}
.ingredient-list li::marker { color: var(--clay); }
/* ── Accordion ── */
.accordion {
  border-top: 1px solid var(--bone);
  padding-top: var(--sp-3);
  margin-top: auto;
}
.accordion-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--sage-deep);
  letter-spacing: 0.02em;
  padding: var(--sp-1) 0;
  transition: color var(--dur-fast);
}
.accordion-toggle:hover { color: var(--moss); }
.accordion-toggle:focus-visible {
  outline: 2px solid var(--sage-deep);
  outline-offset: 3px;
  border-radius: 4px;
}
.accordion-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: transform var(--dur-base) var(--ease-smooth);
}
.accordion-toggle[aria-expanded="true"] .accordion-icon {
  transform: rotate(180deg);
}
.accordion-body {
  padding-top: var(--sp-4);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
/* 'hidden' attribute override for smooth animation */
.accordion-body[hidden] { display: none; }
.accordion-body.is-open { display: flex; animation: fadeSlideIn var(--dur-base) var(--ease-smooth); }
@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.tasting-note,
.culture-note {
  font-size: var(--text-sm);
  color: var(--umber);
  line-height: 1.75;
}
.tasting-note strong,
.culture-note strong { color: var(--bark); font-weight: 600; }
.culture-note em { color: var(--sage-deep); font-style: italic; }
/* =========================================================
   CULTURE SECTION
   ========================================================= */
.culture {
  background-color: var(--bark);
  color: var(--off-white);
  position: relative;
  overflow: hidden;
}
/* Subtle leaf texture overlay */
.culture::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 60% 60% at 90% 10%, rgba(138,158,133,0.14) 0%, transparent 70%),
    radial-gradient(ellipse 50% 70% at 5% 90%, rgba(94,122,89,0.10) 0%, transparent 60%);
  pointer-events: none;
}
.culture .section-inner { position: relative; z-index: 1; }
.culture .section-eyebrow { color: var(--clay); }
.culture .section-title   { color: var(--off-white); }
.culture .section-sub     { color: rgba(232,224,213,0.8); }
/* ── Craft Timeline ── */
.craft-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  margin-bottom: var(--sp-16);
}
/* vertical connecting line */
.craft-timeline::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 19px;
  width: 1px;
  height: calc(100% - 28px);
  background: linear-gradient(to bottom, var(--sage), rgba(94,122,89,0.1));
}
.timeline-step {
  display: flex;
  gap: var(--sp-6);
  padding-bottom: var(--sp-10);
  position: relative;
}
.timeline-step:last-child { padding-bottom: 0; }
.timeline-marker {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(94,122,89,0.25);
  border: 1.5px solid var(--sage);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.timeline-marker svg {
  width: 22px;
  height: 22px;
  color: var(--sage);
}
.timeline-content h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 400;
  color: var(--off-white);
  margin-bottom: var(--sp-2);
  margin-top: var(--sp-2);
}
.timeline-content p {
  font-size: var(--text-sm);
  color: rgba(232,224,213,0.78);
  line-height: 1.8;
  max-width: 58ch;
}
/* ── Culture Quote ── */
.culture-quote {
  border-left: 2px solid var(--sage);
  padding: var(--sp-6) var(--sp-8);
  background: rgba(94,122,89,0.10);
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  max-width: 680px;
  margin: 0 auto;
}
.culture-quote p {
  font-family: var(--font-display);
  font-size: clamp(var(--text-lg), 2.5vw, var(--text-2xl));
  font-style: italic;
  color: var(--off-white);
  line-height: 1.5;
  margin-bottom: var(--sp-3);
}
.culture-quote footer {
  font-size: var(--text-sm);
  color: var(--clay);
  letter-spacing: 0.05em;
}
/* =========================================================
   ECOLOGY & FAIRTRADE
   ========================================================= */
.ecology {
  background: linear-gradient(170deg, var(--off-white) 0%, var(--cream) 100%);
}
.ecology-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 250px), 1fr));
  gap: var(--sp-6);
}
.ecology-card {
  background: var(--off-white);
  border: 1px solid var(--bone);
  border-radius: var(--card-radius);
  padding: var(--sp-8);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  transition:
    box-shadow var(--dur-base) var(--ease-smooth),
    transform var(--dur-base) var(--ease-smooth);
}
.ecology-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.ecology-icon {
  width: 48px;
  height: 48px;
  color: var(--sage-deep);
}
.ecology-icon svg {
  width: 100%;
  height: 100%;
}
.ecology-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 400;
  color: var(--bark);
}
.ecology-desc {
  font-size: var(--text-sm);
  color: var(--umber);
  line-height: 1.8;
}
/* =========================================================
   CONTACT SECTION
   ========================================================= */
.contact {
  background-color: var(--cream);
  border-top: 1px solid var(--bone);
}
.contact-inner {
  max-width: 680px;
}
.contact-inner .section-header {
  text-align: left;
}
.contact-inner .section-sub { margin: 0; }
/* ── Form ── */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
  margin-top: var(--sp-10);
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.form-group label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--bark);
  letter-spacing: 0.02em;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  background: var(--off-white);
  border: 1.5px solid var(--bone);
  border-radius: var(--border-radius);
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--bark);
  line-height: 1.6;
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--clay);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--sage-deep);
  box-shadow: 0 0 0 3px rgba(94,122,89,0.15);
}
.form-group input.is-invalid,
.form-group textarea.is-invalid {
  border-color: var(--tea-red);
  box-shadow: 0 0 0 3px rgba(155,28,46,0.10);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-error {
  font-size: var(--text-xs);
  color: var(--tea-red);
  min-height: 1.2em;
  display: block;
}
.form-actions {
  display: flex;
  justify-content: flex-start;
}
/* Success state */
.form-success {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  background: rgba(94,122,89,0.12);
  border: 1px solid rgba(94,122,89,0.3);
  border-radius: var(--border-radius);
  padding: var(--sp-4) var(--sp-6);
  margin-top: var(--sp-2);
}
.form-success[hidden] { display: none; }
.form-success.is-visible { display: flex; animation: fadeSlideIn var(--dur-base) var(--ease-smooth); }
.form-success svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--sage-deep);
}
.form-success p {
  font-size: var(--text-sm);
  color: var(--moss);
  font-weight: 500;
}
.contact-mailto {
  margin-top: var(--sp-6);
  font-size: var(--text-sm);
  color: var(--umber);
}
.mailto-link {
  color: var(--sage-deep);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.mailto-link:hover { color: var(--moss); }
.mailto-link:focus-visible {
  outline: 2px solid var(--sage-deep);
  outline-offset: 3px;
  border-radius: 2px;
}
/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background-color: var(--ink);
  color: rgba(232,224,213,0.75);
  padding: var(--sp-12) 0;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--sp-6);
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-8);
  align-items: flex-start;
  justify-content: space-between;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--off-white);
  display: block;
  margin-bottom: var(--sp-2);
}
.footer-tagline {
  font-size: var(--text-sm);
  color: rgba(200,184,162,0.65);
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2) var(--sp-6);
  align-items: center;
}
.footer-nav a {
  font-size: var(--text-sm);
  color: rgba(200,184,162,0.75);
  transition: color var(--dur-fast);
}
.footer-nav a:hover { color: var(--off-white); }
.footer-nav a:focus-visible {
  outline: 1px solid var(--clay);
  outline-offset: 3px;
  border-radius: 2px;
}
.footer-copy {
  font-size: var(--text-xs);
  color: rgba(200,184,162,0.45);
  width: 100%;
}
/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 768px) {
  :root {
    --section-py: var(--sp-16);
    --nav-h: 4rem;
  }
  /* Nav – mobile */
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(248,244,239,0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--bone);
    padding: var(--sp-4) 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--dur-base) var(--ease-smooth), padding var(--dur-fast);
    /* hidden by default */
    pointer-events: none;
    opacity: 0;
  }
  .nav-links.is-open {
    max-height: 300px;
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links li { width: 100%; }
  .nav-link {
    display: block;
    padding: var(--sp-3) var(--sp-6);
    font-size: var(--text-base);
  }
  .nav-link::after { display: none; }
  .btn--nav { display: none; }
  /* Hero */
  .hero-content {
    max-width: 100%;
    padding: var(--sp-16) var(--sp-6);
  }
  .hero-botanical { width: 60%; opacity: 0.6; }
  /* Products */
  .product-grid { grid-template-columns: 1fr; }
  /* Culture timeline */
  .craft-timeline::before { left: 19px; }
  /* Ecology grid */
  .ecology-grid { grid-template-columns: 1fr 1fr; }
  /* Footer */
  .footer-inner { flex-direction: column; gap: var(--sp-6); }
  .footer-nav   { flex-direction: column; align-items: flex-start; gap: var(--sp-2); }
}
@media (max-width: 480px) {
  .hero-headline { font-size: var(--text-3xl); }
  .ecology-grid  { grid-template-columns: 1fr; }
  .hero-cta-group { flex-direction: column; align-items: flex-start; }
  .hero-botanical { display: none; }
}
/* High-contrast / forced-colors compatibility */
@media (forced-colors: active) {
  .btn--primary, .btn--ghost, .btn--nav { border: 2px solid ButtonText; }
}
/* =========================================================
   LOGO
   ========================================================= */
.nav-logo {
  display: flex;
  align-items: center;
  height: 100%;
  margin-right: auto;
}
.nav-logo-image {
  height: 26px;
  width: auto;
  display: block;
}