/* ============================================================
   KÖKLÜ SERAMİK — Bitki Kapları Atölyesi
   Design language: "SERA" — botanical greenhouse / leaf-journal.
   Fresh, light, living. Organic blobs, sprout motifs, a stem that
   grows as you scroll, terracotta-pot accents, dappled cream light.
   Type: Fraunces (organic display) · Mulish (fresh sans body)
         Fraunces italic (botanical labels / kickers)
   ============================================================ */

:root {
  /* dappled cream light */
  --cream:    #F4F0E6;
  --cream-2:  #ECE6D5;
  --cream-3:  #E4DCC7;
  --paper:    #FBFAF5;   /* card surface */
  /* deep green inks (text) */
  --ink:      #243024;
  --ink-2:    #2E3A2C;
  --ink-soft: #41503D;
  --muted:    #5C6553;
  /* botanical greens */
  --green:    #3B6B4A;
  --green-deep: #2F5D3F;
  --green-700: #234A33;   /* rich greenhouse band */
  --green-900: #1B3A28;
  --sage:     #93A487;
  --sage-soft:#C6CFB8;
  --mist:     #E3EAD7;    /* pale leaf wash */
  /* terracotta pot — decorative / large only (limited contrast) */
  --terra:    #C2724A;
  --terra-deep: #A85C38;
  --terra-soft: #E6C3AC;
  /* lines, soft */
  --line:     rgba(36,48,36,.13);
  --line-2:   rgba(36,48,36,.22);
  /* legacy aliases so the size-slider JS keeps working */
  --ox:       var(--green-deep);
  --paper-3:  var(--sage-soft);

  --header-h: 74px;
  --maxw: 1240px;
  --gut: clamp(18px, 4.4vw, 60px);
  --r-sm: 12px;
  --r-md: 20px;
  --r-lg: 30px;
  --r-blob: 42% 58% 56% 44% / 52% 44% 56% 48%;
  --shadow: 0 18px 40px -22px rgba(35,74,51,.4);
  --shadow-soft: 0 10px 26px -18px rgba(35,74,51,.45);
  --ease: cubic-bezier(.22,.68,.28,1);
  --ease-2: cubic-bezier(.4,0,.2,1);
  interpolate-size: allow-keywords;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: calc(var(--header-h) + 18px);
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
html, body { overflow-x: hidden; max-width: 100vw; margin: 0; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: 'Mulish', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-weight: 450;
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  /* soft dappled light, no hard grid */
  background-image:
    radial-gradient(60vw 50vw at 88% -6%, rgba(147,164,135,.20), transparent 60%),
    radial-gradient(48vw 44vw at -6% 14%, rgba(194,114,74,.10), transparent 58%);
  background-attachment: fixed;
}

h1, h2, h3, h4 { margin: 0 0 .5em; color: var(--ink); }

/* display: organic Fraunces, sentence case, soft */
.display, h1, h2 {
  font-family: 'Fraunces', 'Mulish', serif;
  font-weight: 560;
  font-optical-sizing: auto;
  letter-spacing: -.012em;
  line-height: 1.02;
}
h3, h4 { font-family: 'Mulish', sans-serif; }

p { margin: 0 0 1.1em; }
a { color: var(--green-deep); text-decoration: none; transition: color .18s var(--ease-2); }
a:hover { color: var(--green-900); }
strong, b { font-weight: 800; color: var(--ink); }
img { max-width: 100%; height: auto; display: block; }

/* botanical accent word: soft hand-drawn leaf underline, wrap-safe */
.leaf-word {
  color: var(--green-deep);
  background-image: linear-gradient(transparent 62%, rgba(147,164,135,.55) 62% 92%, transparent 92%);
  background-repeat: no-repeat;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  padding: 0 .04em;
}
.terra-word { color: var(--terra-deep); }

.container {
  width: 100%; max-width: var(--maxw);
  margin-inline: auto;
  padding-left: var(--gut); padding-right: var(--gut);
}

/* botanical kicker (replaces index numbers / coord eyebrows) */
.kicker {
  display: inline-flex; align-items: center; gap: .5em;
  font-family: 'Fraunces', serif; font-style: italic; font-weight: 500;
  font-size: 1.04rem; color: var(--green-deep);
  margin: 0 0 .9em; letter-spacing: .002em;
}
.kicker .sprout { width: 20px; height: 20px; color: var(--green); flex: 0 0 auto; }
.kicker.on-dark { color: var(--sage-soft); }
.kicker.on-dark .sprout { color: var(--mist); }

/* sections */
.section { padding: clamp(56px, 8.5vw, 116px) 0; position: relative; }
.section.tint { background: var(--cream-2); }
.section.tint-3 { background: var(--cream-3); }
.section.leaf { background: var(--mist); }

.section-head { max-width: 760px; margin-bottom: clamp(30px, 5vw, 56px); }
.section-head h2 {
  font-size: clamp(2rem, 5.4vw, 3.7rem); line-height: 1.02;
}
.section-head p { color: var(--ink-soft); font-size: 1.08rem; max-width: 60ch; margin-top: .5em; }
.lead { font-size: clamp(1.1rem, 2.1vw, 1.34rem); color: var(--ink-soft); line-height: 1.5; }

/* focus */
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible, summary:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--green); outline-offset: 3px; border-radius: 6px;
}

.skip-link {
  position: absolute; left: 14px; top: -64px; z-index: 2000;
  background: var(--green-deep); color: #fff; padding: 11px 18px; border-radius: 0 0 12px 12px;
  font-weight: 800;
  transition: top .2s var(--ease-2);
}
.skip-link:focus { top: 0; color: #fff; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 1080;
  background: rgba(244,240,230,.82);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .26s var(--ease-2), background .26s var(--ease-2), border-color .26s var(--ease-2);
}
.site-header.is-scrolled {
  background: rgba(244,240,230,.94);
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px -22px rgba(35,74,51,.6);
}
.header-inner {
  height: var(--header-h); display: flex; align-items: center;
  justify-content: space-between; gap: 18px;
}
.brand {
  display: inline-flex; align-items: center; gap: 11px;
  color: var(--green-deep); line-height: 1;
}
.brand:hover { color: var(--green-deep); }
.brand .brand-mark { width: 38px; height: 38px; flex: 0 0 auto; }
.brand .bt {
  display: flex; flex-direction: column;
  font-family: 'Fraunces', serif; font-weight: 600;
  font-size: 1.32rem; letter-spacing: -.01em; color: var(--ink);
}
.brand .bt b { color: var(--green-deep); font-weight: 600; }
.brand .bt small {
  font-family: 'Mulish', sans-serif; font-size: .62rem; font-weight: 700;
  letter-spacing: .18em; color: var(--muted); text-transform: uppercase; margin-top: 3px;
}

.nav-desktop { display: none; }
.nav-desktop ul {
  list-style: none; display: flex; align-items: center;
  gap: clamp(10px, 1.6vw, 22px); margin: 0; padding: 0;
}
.nav-desktop a {
  position: relative; color: var(--ink-2);
  font-weight: 700; font-size: .95rem; padding: 8px 2px;
}
.nav-desktop a::after {
  content: ""; position: absolute; left: 2px; right: 2px; bottom: 2px;
  height: 8px; border-radius: 8px; background: var(--sage-soft);
  transform: scaleX(0); transform-origin: left; z-index: -1;
  transition: transform .28s var(--ease);
}
.nav-desktop a:hover { color: var(--green-deep); }
.nav-desktop a:hover::after, .nav-desktop a.is-active::after { transform: scaleX(1); }
.nav-desktop a.is-active { color: var(--green-deep); }

.nav-cta {
  background: var(--green-deep); color: #fff !important;
  padding: 11px 20px !important; border-radius: 999px;
  box-shadow: 0 8px 18px -10px rgba(35,74,51,.8);
}
.nav-desktop .nav-cta::after { display: none; }
.nav-cta:hover, .nav-cta:focus-visible {
  background: var(--green-900); color: #fff !important;
}

.nav-toggle {
  position: relative; z-index: 1100; width: 50px; height: 50px;
  border: 1.5px solid var(--line-2); background: var(--paper); border-radius: 14px;
  display: inline-flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 5px; cursor: pointer; padding: 0;
  box-shadow: var(--shadow-soft);
}
.nav-toggle span {
  width: 22px; height: 2px; border-radius: 2px; background: var(--green-deep);
  transition: transform .3s var(--ease), opacity .2s var(--ease-2);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 1024px) {
  .nav-desktop { display: block; }
  .nav-toggle { display: none; }
}

/* ============================================================
   MOBILE DRAWER
   ============================================================ */
.drawer-backdrop {
  position: fixed; inset: 0; background: rgba(27,58,40,.5);
  opacity: 0; visibility: hidden; z-index: 1040;
  -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px);
  transition: opacity .24s var(--ease-2), visibility .24s var(--ease-2);
}
.drawer-backdrop.is-open { opacity: 1; visibility: visible; }
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(380px, 92vw);
  background: var(--green-700); color: #fff; z-index: 1050;
  transform: translateX(100%); transition: transform .34s var(--ease);
  padding: calc(var(--header-h) + 22px) 28px 32px;
  display: flex; flex-direction: column; gap: 4px; overflow-y: auto;
  border-top-left-radius: 26px; border-bottom-left-radius: 26px;
}
.drawer.is-open { transform: translateX(0); }
.drawer .drawer-eyebrow {
  font-family: 'Fraunces', serif; font-style: italic; font-size: 1.05rem;
  color: var(--sage-soft); margin: 0 0 16px;
}
.drawer a {
  color: #fff; font-family: 'Fraunces', serif; font-weight: 540;
  font-size: 1.42rem; padding: 13px 4px;
  border-bottom: 1px solid rgba(255,255,255,.14);
  display: flex; align-items: center; gap: 12px;
  transition: color .2s var(--ease-2), padding-left .2s var(--ease-2);
}
.drawer a::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--sage); flex: 0 0 auto;
}
.drawer a:hover, .drawer a.is-active { color: var(--sage-soft); padding-left: 10px; }
.drawer a.drawer-cta {
  margin-top: 22px; background: var(--terra-deep); color: #fff !important;
  border: none; border-radius: 999px; justify-content: center; padding: 16px;
  font-size: 1.12rem; box-shadow: 0 12px 22px -12px rgba(0,0,0,.5);
}
.drawer a.drawer-cta::before { display: none; }
.drawer a.drawer-cta:hover { background: #8f4c2e; color: #fff !important; padding-left: 16px; }
@media (min-width: 1024px) { .drawer, .drawer-backdrop { display: none; } }

main { padding-top: var(--header-h); }

/* ============================================================
   BUTTONS — soft, rounded, living
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Mulish', sans-serif; font-weight: 800;
  font-size: .98rem; letter-spacing: .005em;
  padding: 14px 26px; cursor: pointer; border: none; border-radius: 999px;
  position: relative; transition: transform .22s var(--ease),
    background .2s var(--ease-2), color .2s var(--ease-2), box-shadow .24s var(--ease-2);
}
.btn svg { width: 18px; height: 18px; transition: transform .25s var(--ease); }
.btn-primary { background: var(--green-deep); color: #fff; box-shadow: 0 14px 26px -14px rgba(35,74,51,.85); }
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--green-900); color: #fff; transform: translateY(-2px);
  box-shadow: 0 20px 30px -16px rgba(35,74,51,.9);
}
.btn-primary:hover svg { transform: translateX(4px); }
.btn-ghost { background: transparent; color: var(--green-deep); box-shadow: inset 0 0 0 2px var(--sage); }
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: var(--green-deep); color: #fff; box-shadow: inset 0 0 0 2px var(--green-deep);
  transform: translateY(-2px);
}
.btn-ghost:hover svg { transform: translateX(4px); }
.btn-block { width: 100%; justify-content: center; }
@media (min-width: 560px) { .btn-auto { width: auto; } }

/* inline leaf-link (variety) */
.leaf-link {
  font-weight: 800; font-size: .98rem; color: var(--green-deep);
  display: inline-flex; align-items: center; gap: 9px; padding-bottom: 3px;
  box-shadow: inset 0 -2px 0 var(--sage);
  transition: box-shadow .22s var(--ease-2), color .2s var(--ease-2);
}
.leaf-link svg { width: 17px; height: 17px; transition: transform .22s var(--ease); }
.leaf-link:hover { color: var(--green-900); box-shadow: inset 0 -10px 0 var(--sage-soft); }
.leaf-link:hover svg { transform: translateX(4px); }

/* ============================================================
   HERO — organic split, blob photo, floating leaves, spores
   ============================================================ */
.hero { position: relative; padding: clamp(20px, 4vw, 46px) 0 0; overflow: hidden; }
.hero-canvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 0;
}
.hero .container { position: relative; z-index: 1; }
.hero-grid {
  display: grid; grid-template-columns: 1fr; gap: clamp(30px, 5vw, 48px);
  padding: clamp(20px, 4vw, 46px) 0 clamp(44px, 7vw, 84px); align-items: center;
}
@media (min-width: 940px) { .hero-grid { grid-template-columns: 1.05fr .95fr; } }

.hero h1 {
  font-size: clamp(2.3rem, 7vw, 4.9rem); line-height: 1.0; margin: .2em 0 .34em;
  font-weight: 540; letter-spacing: -.018em;
}
/* gentle word rise */
.kin { display: inline-block; overflow: hidden; vertical-align: bottom; padding-bottom: .04em; }
.kin > span {
  display: inline-block; transform: translateY(110%);
  transition: transform .85s var(--ease); transition-delay: calc(var(--k, 0) * 95ms);
}
.is-lit .kin > span, html.no-js .kin > span { transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .kin > span { transform: none !important; } }

.hero-sub { font-size: clamp(1.08rem, 2.1vw, 1.32rem); color: var(--ink-soft); max-width: 46ch; line-height: 1.5; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px 18px; margin-top: 30px; align-items: center; }

/* soft sage spec chips (replaces bordered spec table) */
.hero-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: 999px; padding: 9px 16px 9px 12px;
  font-weight: 700; font-size: .9rem; color: var(--ink-2);
  box-shadow: var(--shadow-soft);
}
.chip svg { width: 17px; height: 17px; color: var(--green); flex: 0 0 auto; }
.chip b { color: var(--green-deep); font-weight: 800; }

/* hero visual: blobbed photo + floating leaves */
.hero-visual { position: relative; }
.hero-photo {
  position: relative; margin: 0; overflow: hidden;
  border-radius: var(--r-blob); aspect-ratio: 4 / 5;
  box-shadow: var(--shadow); background: var(--mist);
  border: 6px solid var(--paper);
}
.hero-photo img {
  width: 100%; height: 112%; object-fit: cover; object-position: center;
  transform: translateY(var(--py, 0));
}
.hero-photo figcaption {
  position: absolute; left: 14px; bottom: 14px; z-index: 2;
  background: rgba(251,250,245,.92); color: var(--green-deep);
  font-family: 'Fraunces', serif; font-style: italic; font-size: .9rem;
  padding: 7px 14px; border-radius: 999px; box-shadow: var(--shadow-soft);
}
.hero-leaf {
  position: absolute; z-index: 3; color: var(--green); pointer-events: none;
}
.hero-leaf.l1 { top: -16px; left: -14px; width: clamp(54px, 9vw, 84px); color: var(--terra); transform: rotate(-18deg); animation: sway 7s ease-in-out infinite; }
.hero-leaf.l2 { bottom: 6%; right: -16px; width: clamp(60px, 10vw, 96px); color: var(--green); animation: sway 9s ease-in-out infinite reverse; }
.hero-leaf svg { width: 100%; height: auto; filter: drop-shadow(0 8px 14px rgba(35,74,51,.25)); }
@keyframes sway { 0%,100% { transform: rotate(-8deg) translateY(0); } 50% { transform: rotate(6deg) translateY(-8px); } }

/* ============================================================
   GROW STATS — light garden row on a stem (not a dark 2x2 band)
   ============================================================ */
.grow-stats { background: var(--mist); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.grow-stats .container {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(22px, 4vw, 40px);
  padding-block: clamp(40px, 6vw, 64px);
}
@media (min-width: 760px) { .grow-stats .container { grid-template-columns: repeat(4, 1fr); } }
.gstat { text-align: center; position: relative; }
.gstat .sprout-ic { width: 30px; height: 30px; color: var(--green); margin: 0 auto 8px; }
.gstat .num {
  font-family: 'Fraunces', serif; font-weight: 600;
  font-size: clamp(2.3rem, 5.4vw, 3.3rem); line-height: 1; color: var(--green-deep);
  display: inline-flex; align-items: baseline;
}
.gstat .num .suffix { color: var(--terra-deep); }
.gstat p {
  margin: .6em 0 0; color: var(--ink-soft); font-weight: 600; font-size: .92rem;
}

/* ============================================================
   VITRIN — soft planter cards (plant + pot), size slider
   ============================================================ */
.vitrin-grid { display: grid; grid-template-columns: 1fr; gap: clamp(22px, 3vw, 30px); }
@media (min-width: 640px) { .vitrin-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .vitrin-grid { grid-template-columns: repeat(3, 1fr); } }

.pot-card {
  background: var(--paper); border-radius: var(--r-lg);
  display: flex; flex-direction: column; min-width: 0; overflow: hidden;
  box-shadow: var(--shadow-soft); border: 1px solid var(--line);
  transform-style: preserve-3d; will-change: transform;
  transition: box-shadow .3s var(--ease), transform .2s var(--ease-2);
}
.pot-card:hover { box-shadow: 0 28px 50px -26px rgba(35,74,51,.6); }
.pot-card .pot-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 18px 0;
}
.pot-card .pot-head .tag {
  font-weight: 800; font-size: .76rem; letter-spacing: .02em;
  color: var(--green-deep); background: var(--mist); padding: 5px 12px; border-radius: 999px;
}
.pot-card .pot-head .tag.out { color: #7a3a1c; background: var(--terra-soft); }

.pot-stage {
  position: relative; margin: 14px 16px 0; border-radius: var(--r-md); aspect-ratio: 1 / 1;
  overflow: hidden; background: var(--mist); display: grid; place-items: center;
}
.pot-stage .pot-photo {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 1; transform: scale(1.05);
  transition: transform .6s var(--ease), filter .5s var(--ease-2);
}
.pot-card:hover .pot-photo, .pot-card:focus-within .pot-photo { transform: scale(1); }
.pot-stage .pot-big {
  position: relative; z-index: 2;
  font-family: 'Fraunces', serif; font-weight: 600; font-size: clamp(2.2rem, 6vw, 3rem);
  color: #fff; text-shadow: 0 4px 18px rgba(27,58,40,.55);
  pointer-events: none; transition: opacity .4s var(--ease-2);
}
.pot-card:hover .pot-big, .pot-card:focus-within .pot-big { opacity: 0; }
.pot-art {
  position: absolute; z-index: 2; bottom: 8%; right: 8%; width: 26%; height: auto;
  color: var(--mist); transform-origin: bottom center;
  transition: transform .2s var(--ease-2); opacity: 0;
}

.pot-body { padding: 18px; display: flex; flex-direction: column; gap: 9px; flex: 1 1 auto; }
.pot-body h3 { font-family: 'Fraunces', serif; font-weight: 600; font-size: 1.34rem; margin: 0; letter-spacing: -.01em; }
.pot-body .desc { color: var(--ink-soft); font-size: .95rem; margin: 0; }

.size-control { margin-top: 4px; border-top: 1px solid var(--line); padding-top: 15px; }
.size-control label {
  display: flex; justify-content: space-between; align-items: center;
  font-weight: 700; font-size: .82rem; color: var(--muted); margin-bottom: 11px;
}
.size-control .size-val {
  color: var(--green-deep); font-weight: 800; font-size: 1rem;
  font-family: 'Fraunces', serif;
}
.size-control input[type="range"] {
  width: 100%; -webkit-appearance: none; appearance: none; height: 6px; border-radius: 999px;
  background: linear-gradient(90deg, var(--green-deep) 0%, var(--green-deep) 50%, var(--sage-soft) 50%);
  cursor: pointer; margin: 0;
}
.size-control input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none; width: 22px; height: 22px;
  background: var(--paper); border: 4px solid var(--green-deep); border-radius: 50%;
  box-shadow: 0 4px 10px -3px rgba(35,74,51,.6);
}
.size-control input[type="range"]::-moz-range-thumb {
  width: 22px; height: 22px; background: var(--paper); border: 4px solid var(--green-deep); border-radius: 50%;
}
.pot-foot { margin-top: auto; padding-top: 14px; display: flex; align-items: baseline; justify-content: space-between; gap: 10px; }
.pot-price { font-family: 'Fraunces', serif; font-weight: 600; font-size: 1.42rem; color: var(--green-deep); }
.pot-price small { display: block; font-family: 'Mulish', sans-serif; font-size: .68rem; color: var(--muted); font-weight: 600; }

/* ============================================================
   reveal helpers
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[style*="--i"] { transition-delay: calc(var(--i) * 80ms); }
.clip-reveal { clip-path: inset(0 0 100% 0 round var(--r-blob)); transition: clip-path 1s var(--ease); }
.clip-reveal.is-in { clip-path: inset(0 0 0 0 round var(--r-blob)); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .clip-reveal { clip-path: none !important; transition: none !important; }
  .hero-leaf, .hero-photo img { animation: none !important; transform: none !important; }
  .grow-steps::before { transform: scaleY(1) !important; }
}
html.no-js .reveal { opacity: 1; transform: none; }
html.no-js .clip-reveal { clip-path: none; }
html.no-js .kin > span { transform: none; }

/* ============================================================
   BOYUT — which pot for which plant (growing circles)
   ============================================================ */
.guide-grid { display: grid; grid-template-columns: 1fr; gap: clamp(16px, 2.4vw, 24px); }
@media (min-width: 560px) { .guide-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .guide-grid { grid-template-columns: repeat(4, 1fr); } }
.guide-card {
  padding: 26px 24px 28px; border-radius: var(--r-md); background: var(--paper);
  border: 1px solid var(--line); box-shadow: var(--shadow-soft);
  display: flex; flex-direction: column; gap: 10px;
  transition: transform .26s var(--ease), box-shadow .26s var(--ease);
}
.guide-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.guide-card .ring-row { display: flex; align-items: flex-end; gap: 14px; min-height: 96px; }
.guide-ring {
  border-radius: 50%; flex: 0 0 auto; display: grid; place-items: center;
  background: radial-gradient(circle at 50% 30%, var(--mist), var(--sage-soft));
  border: 2px solid var(--sage);
}
.guide-card:nth-child(1) .guide-ring { width: 44px; height: 44px; }
.guide-card:nth-child(2) .guide-ring { width: 62px; height: 62px; }
.guide-card:nth-child(3) .guide-ring { width: 80px; height: 80px; }
.guide-card:nth-child(4) .guide-ring { width: 96px; height: 96px; border-color: var(--terra); }
.guide-ring svg { width: 46%; height: 46%; color: var(--green-deep); }
.guide-card .ro { font-family: 'Fraunces', serif; font-weight: 600; font-size: 1.1rem; color: var(--green-deep); }
.guide-card h3 { font-family: 'Fraunces', serif; font-weight: 600; font-size: 1.2rem; margin: 6px 0 0; }
.guide-card p { font-size: .92rem; color: var(--ink-soft); margin: 0; }

/* ============================================================
   DRENAJ — technical split, friendly drop icons
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr; gap: clamp(30px, 5vw, 56px); align-items: center; }
@media (min-width: 940px) { .split { grid-template-columns: 1.02fr .98fr; } .split.rev > :first-child { order: 2; } }
.tech-list { list-style: none; margin: 24px 0 0; padding: 0; display: grid; gap: 14px; }
.tech-list li {
  display: grid; grid-template-columns: auto 1fr; gap: 4px 18px; align-items: start;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 18px 20px; box-shadow: var(--shadow-soft); min-width: 0;
}
.tech-list .ic {
  grid-row: span 2; width: 46px; height: 46px; border-radius: 14px;
  background: var(--mist); color: var(--green-deep); display: grid; place-items: center;
}
.tech-list .ic svg { width: 24px; height: 24px; }
.tech-list h4 { font-family: 'Mulish', sans-serif; font-weight: 800; font-size: 1.06rem; margin: 0; align-self: center; }
.tech-list p { margin: 0; font-size: .94rem; color: var(--ink-soft); grid-column: 2; }

.drenaj-visual {
  position: relative; border-radius: var(--r-blob); overflow: hidden;
  background: var(--mist); aspect-ratio: 3 / 4; box-shadow: var(--shadow);
  border: 6px solid var(--paper);
}
.drenaj-visual .drenaj-photo { width: 100%; height: 100%; object-fit: cover; }
.drenaj-visual figcaption {
  position: absolute; left: 14px; bottom: 14px; background: rgba(251,250,245,.92); color: var(--green-deep);
  font-family: 'Fraunces', serif; font-style: italic; font-size: .9rem; padding: 7px 14px;
  border-radius: 999px; z-index: 3; box-shadow: var(--shadow-soft);
}
.drenaj-visual .drop {
  position: absolute; left: 50%; top: 22%; width: 10px; height: 13px; background: var(--green);
  border-radius: 0 60% 60% 60%; transform: rotate(45deg); opacity: 0; z-index: 2;
  animation: dropFall 3.4s var(--ease-2) infinite;
}
.drenaj-visual .drop.d2 { left: 57%; animation-delay: 1.1s; }
.drenaj-visual .drop.d3 { left: 46%; animation-delay: 2.2s; }
@keyframes dropFall {
  0% { opacity: 0; transform: rotate(45deg) translateY(-8px); }
  25% { opacity: .9; }
  70% { opacity: .7; transform: rotate(45deg) translateY(36px); }
  100% { opacity: 0; transform: rotate(45deg) translateY(52px); }
}
@media (prefers-reduced-motion: reduce) { .drenaj-visual .drop { animation: none; opacity: .5; } }

/* ============================================================
   SET — "sera" greenhouse band (rich green, organic blob)
   ============================================================ */
.sera { background: var(--green-700); color: #fff; position: relative; overflow: hidden; }
.sera .blob {
  position: absolute; right: -8%; top: -20%; width: 56vw; max-width: 640px; aspect-ratio: 1;
  background: radial-gradient(circle at 40% 40%, rgba(147,164,135,.34), rgba(147,164,135,0) 64%);
  border-radius: var(--r-blob); pointer-events: none; z-index: 0;
  animation: breathe 9s ease-in-out infinite;
}
@keyframes breathe { 0%,100% { transform: scale(.96); opacity: .75; } 50% { transform: scale(1.06); opacity: 1; } }
@media (prefers-reduced-motion: reduce) { .sera .blob { animation: none; } }
.sera .container { position: relative; z-index: 1; }
.sera .kicker { color: var(--sage-soft); }
.sera h2, .sera h3 { color: #fff; }
.set-wrap { display: grid; grid-template-columns: 1fr; gap: clamp(28px, 5vw, 52px); align-items: center; }
@media (min-width: 880px) { .set-wrap { grid-template-columns: 1.1fr .9fr; } }
.set-copy h2 { font-size: clamp(1.9rem, 5vw, 3.2rem); }
.set-copy p { color: rgba(255,255,255,.84); }
.set-includes { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 12px; }
.set-includes li {
  display: flex; align-items: center; gap: 14px; color: rgba(255,255,255,.94); font-size: 1rem;
}
.set-includes .lic { width: 30px; height: 30px; border-radius: 50%; background: rgba(255,255,255,.12);
  display: grid; place-items: center; flex: 0 0 auto; }
.set-includes svg { width: 17px; height: 17px; color: var(--sage-soft); }
.set-panel {
  background: var(--paper); color: var(--ink); border-radius: var(--r-lg);
  padding: 32px; box-shadow: var(--shadow); position: relative;
}
.set-panel .ks { font-family: 'Fraunces', serif; font-style: italic; font-size: 1rem; color: var(--green-deep); }
.set-panel .set-price {
  font-family: 'Fraunces', serif; font-weight: 600; font-size: clamp(2.8rem, 8vw, 4rem);
  color: var(--green-deep); line-height: 1; margin: 8px 0;
}
.set-panel .set-price small { display: block; font-family: 'Mulish', sans-serif; font-size: .8rem; color: var(--muted); font-weight: 600; margin-top: 4px; }
.set-panel p { color: var(--ink-soft); font-size: .92rem; margin: 8px 0 0; }
.set-panel .btn { margin-top: 22px; }

/* ============================================================
   PRICING — seed-packet plan cards
   ============================================================ */
.plans-grid { display: grid; grid-template-columns: 1fr; gap: clamp(18px, 2.4vw, 26px); align-items: stretch; }
@media (min-width: 880px) { .plans-grid { grid-template-columns: repeat(3, 1fr); } }
.plan {
  padding: 30px 28px; border-radius: var(--r-lg); background: var(--paper);
  border: 1px solid var(--line); box-shadow: var(--shadow-soft);
  display: flex; flex-direction: column; min-width: 0;
  transition: transform .26s var(--ease), box-shadow .26s var(--ease);
}
.plan:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.plan.is-featured { background: var(--green-700); color: #fff; box-shadow: 0 26px 50px -22px rgba(35,74,51,.85); }
.plan.is-featured h3, .plan.is-featured .plan-price { color: #fff; }
.plan.is-featured .plan-price small, .plan.is-featured ul li { color: rgba(255,255,255,.86); }
.plan.is-featured ul li svg { color: var(--sage-soft); }
.plan.is-featured ul li.excl { color: rgba(255,255,255,.55); }
.plan .plan-top { display: flex; justify-content: space-between; align-items: center; min-height: 30px; }
.plan .pidx { font-family: 'Fraunces', serif; font-style: italic; font-size: 1rem; color: var(--green-deep); }
.plan.is-featured .pidx { color: var(--sage-soft); }
.plan .ribbon {
  font-weight: 800; font-size: .72rem; letter-spacing: .02em;
  background: var(--terra-deep); color: #fff; padding: 5px 13px; border-radius: 999px;
}
.plan h3 { font-family: 'Fraunces', serif; font-weight: 600; font-size: 1.4rem; margin: 16px 0 2px; }
.plan .plan-price { font-family: 'Fraunces', serif; font-weight: 600; font-size: 2.1rem; color: var(--green-deep); margin: 8px 0; }
.plan .plan-price small { font-size: .78rem; color: var(--muted); font-weight: 600; font-family: 'Mulish', sans-serif; }
.plan ul { list-style: none; padding: 0; margin: 14px 0; display: grid; gap: 12px; flex: 1 1 auto; }
.plan ul li { display: flex; gap: 12px; align-items: flex-start; font-size: .95rem; color: var(--ink-soft); }
.plan ul li svg { width: 18px; height: 18px; flex: 0 0 auto; margin-top: 3px; color: var(--green); }
.plan ul li.excl { color: var(--muted); }
.plan ul li.excl svg { color: var(--terra); }
.plan .plan-note { font-size: .84rem; color: var(--muted); margin: 6px 0 18px; font-style: italic; font-family: 'Fraunces', serif; }
.plan.is-featured .plan-note { color: rgba(255,255,255,.66); }

/* ============================================================
   PROCESS — growing stem timeline
   ============================================================ */
.process-photo { margin: 0 0 38px; border-radius: var(--r-blob); overflow: hidden; aspect-ratio: 16 / 7; max-height: 430px; box-shadow: var(--shadow); border: 6px solid var(--paper); }
.process-photo img { width: 100%; height: 100%; object-fit: cover; }
.grow-steps { position: relative; display: grid; gap: 0; padding-left: 8px; }
.grow-steps::before {
  content: ""; position: absolute; left: 25px; top: 12px; bottom: 30px; width: 3px; border-radius: 3px;
  background: linear-gradient(var(--green), var(--sage));
  transform: scaleY(0); transform-origin: top; transition: transform 1.3s var(--ease);
}
.grow-steps.is-in::before { transform: scaleY(1); }
@media (min-width: 700px) { .grow-steps::before { left: 33px; } }
.step {
  display: grid; grid-template-columns: 52px 1fr; gap: 4px 22px;
  padding: 18px 0 22px; align-items: start; position: relative;
}
@media (min-width: 700px) { .step { grid-template-columns: 70px 150px 1fr; } }
.step .node {
  width: 50px; height: 50px; border-radius: 50%; background: var(--paper);
  border: 3px solid var(--green); display: grid; place-items: center;
  font-family: 'Fraunces', serif; font-weight: 600; font-size: 1.1rem; color: var(--green-deep);
  grid-row: span 3; z-index: 1; box-shadow: 0 6px 14px -8px rgba(35,74,51,.6);
}
@media (min-width: 700px) { .step .node { width: 60px; height: 60px; } }
.step .when { font-family: 'Fraunces', serif; font-style: italic; font-size: .96rem; color: var(--green-deep); align-self: center; grid-column: 2; }
.step h3 { font-family: 'Mulish', sans-serif; font-weight: 800; font-size: 1.12rem; margin: 0; grid-column: 2; }
.step p { color: var(--ink-soft); margin: 6px 0 0; font-size: .95rem; grid-column: 2; }
@media (min-width: 700px) { .step h3, .step p { grid-column: 3; } .step .when { grid-column: 2; grid-row: span 3; } }

/* ============================================================
   REVIEWS — soft quote cards
   ============================================================ */
.reviews-grid { display: grid; grid-template-columns: 1fr; gap: clamp(18px, 2.4vw, 26px); }
@media (min-width: 760px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }
.review {
  padding: 28px 26px; border-radius: var(--r-lg); background: var(--paper);
  border: 1px solid var(--line); box-shadow: var(--shadow-soft);
  display: flex; flex-direction: column; min-width: 0;
}
.review .qm { font-family: 'Fraunces', serif; color: var(--sage); font-size: 3rem; line-height: .5; height: 26px; }
.review blockquote { margin: 0; }
.review blockquote p { font-size: 1.04rem; color: var(--ink); line-height: 1.5; }
.review .who { margin-top: auto; padding-top: 16px; border-top: 1px solid var(--line); }
.review .who strong { font-family: 'Fraunces', serif; font-weight: 600; display: block; color: var(--ink); }
.review .who span { font-size: .84rem; color: var(--muted); }

/* ============================================================
   NOTES — atölye log
   ============================================================ */
.notes-list { display: grid; gap: 14px; max-width: 820px; }
.note-row {
  display: grid; grid-template-columns: auto 1fr; gap: 18px; align-items: center;
  padding: 16px 20px; background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r-md); box-shadow: var(--shadow-soft);
}
@media (max-width: 520px) { .note-row { grid-template-columns: 1fr; gap: 6px; } }
.note-row time {
  font-family: 'Fraunces', serif; font-style: italic; color: var(--green-deep); font-size: .96rem;
  white-space: nowrap;
}
.note-row p { margin: 0; color: var(--ink-soft); font-size: .98rem; }

/* ============================================================
   FAQ — soft accordion
   ============================================================ */
.faq-list { display: grid; gap: 14px; max-width: 880px; }
.faq-item { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-md); box-shadow: var(--shadow-soft); overflow: hidden; }
.faq-item > summary {
  list-style: none; cursor: pointer; display: flex; justify-content: space-between;
  align-items: center; gap: 16px; padding: 20px 22px;
  font-family: 'Fraunces', serif; font-weight: 600; font-size: 1.1rem; color: var(--ink);
}
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item > summary .chev {
  flex: 0 0 auto; width: 30px; height: 30px; border-radius: 50%; background: var(--mist); color: var(--green-deep);
  display: grid; place-items: center; transition: transform .3s var(--ease), background .2s; padding: 6px;
}
.faq-item[open] > summary .chev { transform: rotate(45deg); background: var(--green-deep); color: #fff; }
.faq-item > .answer { height: 0; overflow: hidden; color: var(--ink-soft); transition: height .36s var(--ease-2); }
.faq-item[open] > .answer { height: auto; }
.faq-item > .answer p { margin: 0 22px 22px; max-width: 80ch; }
@media (prefers-reduced-motion: reduce) { .faq-item > .answer { transition: none; } }

/* ============================================================
   CTA closer
   ============================================================ */
.closer-card {
  background: var(--green-700); color: #fff; border-radius: var(--r-lg);
  padding: clamp(32px, 6vw, 64px); position: relative; overflow: hidden; box-shadow: var(--shadow);
}
.closer-card .blob {
  position: absolute; left: -10%; bottom: -30%; width: 50vw; max-width: 520px; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(194,114,74,.3), transparent 64%); border-radius: var(--r-blob); z-index: 0;
}
.closer-card > * { position: relative; z-index: 1; }
.closer-card .kicker { color: var(--sage-soft); }
.closer .big { font-size: clamp(2.1rem, 6vw, 4.2rem); line-height: 1.02; margin: 0 0 .35em; color: #fff; }
.closer-row { display: flex; flex-wrap: wrap; gap: 20px 40px; align-items: flex-end; justify-content: space-between; }
.closer-row p { color: rgba(255,255,255,.86); font-size: 1.06rem; max-width: 48ch; margin: 0; }
.closer-card .btn-ghost { color: #fff; box-shadow: inset 0 0 0 2px rgba(255,255,255,.6); }
.closer-card .btn-ghost:hover { background: #fff; color: var(--green-deep); box-shadow: inset 0 0 0 2px #fff; }

/* ============================================================
   FORM
   ============================================================ */
.form-card { background: var(--paper); border-radius: var(--r-lg); padding: clamp(24px, 4vw, 40px); box-shadow: var(--shadow-soft); border: 1px solid var(--line); }
.form-card h2 { font-family: 'Fraunces', serif; font-weight: 600; }
.form-grid { display: grid; grid-template-columns: 1fr; gap: 18px; margin-top: 8px; }
@media (min-width: 620px) { .form-grid { grid-template-columns: 1fr 1fr; } .form-grid .full { grid-column: 1 / -1; } }
.field { display: flex; flex-direction: column; gap: 7px; min-width: 0; }
.field label, .field > span { font-weight: 800; font-size: .82rem; color: var(--ink-2); }
.field input, .field select, .field textarea {
  font-family: 'Mulish', sans-serif; font-size: 1rem; color: var(--ink);
  background: var(--cream); border: 1.5px solid var(--line-2); border-radius: 14px;
  padding: 13px 15px; width: 100%;
  transition: border-color .2s var(--ease-2), box-shadow .2s var(--ease-2), background .2s;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--green); background: var(--paper);
  box-shadow: 0 0 0 4px rgba(147,164,135,.35);
}
.field.kvkk { flex-direction: row; align-items: flex-start; gap: 11px; }
.field input[type="checkbox"] {
  appearance: auto; -webkit-appearance: auto; width: 20px; height: 20px;
  min-width: 20px; min-height: 20px; padding: 0; border: 0; margin: 2px 0 0;
  accent-color: var(--green-deep); flex: 0 0 auto;
}
.field.kvkk span { font-weight: 500; font-size: .92rem; color: var(--ink-soft); }
.field.kvkk a { text-decoration: underline; }

/* ============================================================
   CONTACT cards
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: clamp(16px, 2.2vw, 22px); }
@media (min-width: 560px) { .contact-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 920px) { .contact-grid { grid-template-columns: repeat(3, 1fr); } }
.contact-card {
  padding: 26px 24px; border-radius: var(--r-md); background: var(--paper);
  border: 1px solid var(--line); box-shadow: var(--shadow-soft);
  display: flex; flex-direction: column; gap: 8px; min-width: 0;
  transition: transform .24s var(--ease), box-shadow .24s var(--ease);
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.contact-card .ic { width: 48px; height: 48px; border-radius: 14px; background: var(--mist); color: var(--green-deep); display: grid; place-items: center; margin-bottom: 4px; }
.contact-card .ic svg { width: 24px; height: 24px; }
.contact-card h3 { font-family: 'Fraunces', serif; font-weight: 600; font-size: 1.16rem; margin: 4px 0 0; }
.contact-card a, .contact-card span.val { font-weight: 700; color: var(--ink); word-break: break-word; overflow-wrap: anywhere; }
.contact-card a:hover { color: var(--green-deep); }
.contact-card .sub { color: var(--muted); font-size: .86rem; }

/* hours */
.hours-grid { display: grid; gap: 8px; max-width: 560px; }
.hours-row {
  display: flex; justify-content: space-between; gap: 16px; padding: 13px 18px;
  background: var(--paper); border: 1px solid var(--line); border-radius: 14px;
}
.hours-row.today { background: var(--green-deep); color: #fff; border-color: var(--green-deep); }
.hours-row.today .day, .hours-row.today .time { color: #fff; }
.hours-row .day { font-weight: 800; font-size: .94rem; }
.hours-row .time { color: var(--ink-soft); font-weight: 600; font-size: .94rem; }

/* ============================================================
   TEAM / VALUES / ABOUT STATS
   ============================================================ */
.team-grid { display: grid; grid-template-columns: 1fr; gap: clamp(16px, 2.2vw, 24px); }
@media (min-width: 700px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }
.member {
  padding: 28px 26px; border-radius: var(--r-md); background: var(--paper); border: 1px solid var(--line);
  box-shadow: var(--shadow-soft); display: flex; flex-direction: column; gap: 6px; min-width: 0;
}
.member .avatar {
  width: 64px; height: 64px; border-radius: 50%; background: var(--mist); color: var(--green-deep);
  display: grid; place-items: center; font-family: 'Fraunces', serif; font-weight: 600; font-size: 1.5rem;
  margin-bottom: 10px; border: 2px solid var(--sage);
}
.member h3 { font-family: 'Fraunces', serif; font-weight: 600; font-size: 1.22rem; margin: 0; }
.member .role { font-family: 'Fraunces', serif; font-style: italic; color: var(--green-deep); font-size: .96rem; }
.member p { color: var(--ink-soft); font-size: .93rem; margin: 8px 0 0; }

.val-grid { display: grid; grid-template-columns: 1fr; gap: clamp(16px, 2.2vw, 24px); }
@media (min-width: 700px) { .val-grid { grid-template-columns: repeat(3, 1fr); } }
.val-card { padding: 28px 26px; border-radius: var(--r-md); background: var(--paper); border: 1px solid var(--line); box-shadow: var(--shadow-soft); display: flex; flex-direction: column; gap: 8px; }
.val-card .ic { width: 48px; height: 48px; border-radius: 14px; background: var(--mist); color: var(--green-deep); display: grid; place-items: center; }
.val-card .ic svg { width: 24px; height: 24px; }
.val-card h3 { font-family: 'Fraunces', serif; font-weight: 600; font-size: 1.2rem; margin: 4px 0 0; }
.val-card p { color: var(--ink-soft); font-size: .93rem; margin: 0; }

.about-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.about-stats .as { padding: 22px 20px; border-radius: var(--r-md); background: var(--mist); }
.about-stats .as .num { font-family: 'Fraunces', serif; font-weight: 600; font-size: 2.4rem; color: var(--green-deep); line-height: 1; }
.about-stats .as p { font-weight: 600; font-size: .88rem; color: var(--ink-soft); margin: 6px 0 0; }
.divider-leaf { display: flex; align-items: center; gap: 14px; color: var(--sage); margin: 22px 0 0; }
.divider-leaf::before, .divider-leaf::after { content: ""; height: 2px; flex: 1; background: var(--line); border-radius: 2px; }
.divider-leaf svg { width: 24px; height: 24px; }

/* ============================================================
   GENERIC page hero + doc
   ============================================================ */
.page-hero {
  background: var(--green-700); color: #fff; position: relative; overflow: hidden;
  padding: clamp(52px, 9vw, 104px) 0 clamp(38px, 5vw, 58px);
  border-bottom-left-radius: 36px; border-bottom-right-radius: 36px;
}
.page-hero .blob { position: absolute; right: -6%; top: -34%; width: 44vw; max-width: 480px; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(147,164,135,.32), transparent 64%); border-radius: var(--r-blob); z-index: 0; }
.page-hero .container { position: relative; z-index: 1; }
.page-hero .kicker { color: var(--sage-soft); }
.page-hero h1 { color: #fff; font-size: clamp(2.3rem, 7vw, 4.6rem); line-height: 1.02; }
.page-hero .lead { color: rgba(255,255,255,.85); max-width: 64ch; }
.page-hero .meta-line { font-family: 'Fraunces', serif; font-style: italic; color: var(--sage-soft); font-size: 1rem; }

.doc { padding: clamp(44px, 6vw, 80px) 0; }
.doc-body { max-width: 820px; line-height: 1.78; }
.doc-body > p:first-of-type { font-size: 1.1rem; color: var(--ink); }
.doc-body h2 {
  font-family: 'Fraunces', serif; font-weight: 600; font-size: 1.6rem;
  margin-top: 1.9em; margin-bottom: .5em; padding-top: .7em; border-top: 1px solid var(--line);
}
.doc-body h3 { font-family: 'Mulish', sans-serif; font-weight: 800; font-size: 1.16rem; margin-top: 1.5em; margin-bottom: .4em; }
.doc-body p, .doc-body li { color: var(--ink-soft); }
.doc-body p { margin-bottom: 1.15em; }
.doc-body ul, .doc-body ol { padding-left: 1.3em; }
.doc-body li { margin-bottom: .5em; }
.doc-body a { word-break: break-word; overflow-wrap: anywhere; text-decoration: underline; }

/* tables */
.table-scroll {
  display: block; width: 100%; max-width: 100%; min-width: 0;
  overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 20px 0;
  border: 1px solid var(--line); border-radius: var(--r-md);
}
.table-scroll > table { margin: 0 !important; min-width: 480px; width: 100%; border-collapse: collapse; }
:where(*:has(> .table-scroll), *:has(> * > .table-scroll), *:has(> * > * > .table-scroll)) { min-width: 0; }
.table-scroll th, .table-scroll td { text-align: left; padding: 13px 18px; border-bottom: 1px solid var(--line); font-size: .93rem; }
.table-scroll th { background: var(--green-700); color: #fff; font-weight: 800; font-size: .82rem; }
.table-scroll td { color: var(--ink-soft); }
.table-scroll tbody tr:nth-child(even) { background: var(--mist); }
.table-scroll tr:last-child td { border-bottom: none; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--green-900); color: rgba(255,255,255,.82);
  padding: clamp(52px, 7vw, 84px) 0 32px; position: relative; overflow: hidden;
  border-top-left-radius: 40px; border-top-right-radius: 40px; margin-top: clamp(20px, 4vw, 40px);
}
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 36px; position: relative; z-index: 1; }
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.7fr 1fr 1fr; } }
.site-footer .brand { color: #fff; }
.site-footer .brand .bt { color: #fff; }
.site-footer .brand .bt b { color: var(--sage-soft); }
.site-footer .brand .bt small { color: rgba(255,255,255,.55); }
.site-footer .f-about { color: rgba(255,255,255,.7); font-size: .95rem; max-width: 46ch; margin-top: 16px; }
.footer-col h4 { font-family: 'Fraunces', serif; font-weight: 600; color: #fff; font-size: 1.1rem; margin-bottom: 16px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.footer-col a, .footer-col li { color: rgba(255,255,255,.74); font-size: .94rem; }
.footer-col a:hover { color: var(--sage-soft); }
.footer-meta {
  margin-top: 40px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.15);
  display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between;
  font-size: .85rem; color: rgba(255,255,255,.6); position: relative; z-index: 1;
}
.footer-meta a { color: rgba(255,255,255,.66); }
.footer-meta a:hover { color: var(--sage-soft); }

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed; bottom: 16px; left: 16px; right: 16px; max-width: 540px; margin: 0 auto;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-md);
  box-shadow: 0 24px 50px -16px rgba(27,58,40,.5);
  padding: 22px; transform: translateY(150%); opacity: 0;
  transition: transform .34s var(--ease), opacity .24s var(--ease-2); z-index: 9999;
}
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; }
@media (min-width: 640px) { .cookie-banner { left: 24px; right: auto; max-width: 410px; } }
.cookie-banner h2 { font-family: 'Fraunces', serif; font-weight: 600; font-size: 1.16rem; margin: 0 0 6px; }
.cookie-banner p { font-size: .9rem; color: var(--ink-soft); margin: 0 0 16px; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.cookie-actions button {
  flex: 1 1 0; min-width: 0; min-height: 48px; border-radius: 999px;
  font-family: 'Mulish', sans-serif; font-weight: 800; font-size: .9rem; cursor: pointer;
  border: 1.5px solid transparent; padding: 0 16px;
  transition: background .2s var(--ease-2), color .2s var(--ease-2), transform .2s var(--ease-2), box-shadow .2s;
}
.cookie-actions [data-consent="accept"] { background: var(--green-deep); color: #fff; box-shadow: 0 10px 20px -10px rgba(35,74,51,.8); }
.cookie-actions [data-consent="accept"]:hover { background: var(--green-900); transform: translateY(-2px); }
.cookie-actions [data-consent="reject"] { background: var(--cream-2); color: var(--ink); border-color: var(--line-2); }
.cookie-actions [data-consent="reject"]:hover { background: var(--cream-3); transform: translateY(-2px); }
.cookie-actions [data-consent="settings"] { background: transparent; color: var(--green-deep); border-color: transparent; flex-basis: 100%; min-height: 38px; text-decoration: underline; }
.cookie-actions [data-consent="settings"]:hover { color: var(--green-900); }
@media (max-width: 400px) {
  .cookie-actions [data-consent="accept"], .cookie-actions [data-consent="reject"] { flex: 1 1 100%; }
}

/* ============================================================
   misc
   ============================================================ */
.center { text-align: center; }
.mt-32 { margin-top: 34px; }
.muted { color: var(--muted); font-style: italic; font-family: 'Fraunces', serif; font-size: .95rem; }

.scroll-progress { position: fixed; top: 0; left: 0; height: 4px; width: 0; z-index: 9998; pointer-events: none;
  background: linear-gradient(90deg, var(--green), var(--sage), var(--terra)); transition: width 80ms linear; border-radius: 0 4px 4px 0; }

@media (max-width: 640px) {
  body { font-size: 16px; }
}

/* guards: drawer/header CTA color stays legible */
.drawer a.nav-cta, .drawer .nav-cta, .drawer a.drawer-cta,
.mobile-menu a.nav-cta, nav[class*=mobile] a.nav-cta { color: #fff !important; }
.nav-desktop a.nav-cta, header a.nav-cta, .site-header a.nav-cta { padding: 11px 20px; }

/* header-cta-padding-guard v1 */
.nav-desktop a.nav-cta, header a.nav-cta, .site-header a.nav-cta {
  padding: 10px 18px;
}

/* drawer-cta-color-guard v1 */
.drawer a.nav-cta, .drawer .nav-cta, .mobile-menu a.nav-cta, nav[class*=mobile] a.nav-cta {
  color: #fff !important;
}

/* table-scroll ancestor guard v1 */
.table-scroll{max-width:100%}
:where(*:has(> .table-scroll), *:has(> * > .table-scroll), *:has(> * > * > .table-scroll)){min-width:0}
