/* =============================================================
   Ev. Friedhof Bad Oldesloe — Design System
   Stil: ruhiges, würdevolles Editorial / "Quiet Luxury"
   Farben & Bildsprache übernommen von friedhof-oldesloe.de
   ============================================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Open+Sans:wght@400;500;600;700&display=swap');

/* ---------- Design Tokens ---------- */
:root {
  /* Marken-Grün (übernommen & vertieft) */
  --green-900: #243027;
  --green-800: #2f4034;
  --green-700: #3a4d3e;
  --green-600: #4a6151;
  --green-500: #5c7765;
  --sage-500:  #9ba77b;  /* Signatur-Salbeigrün der Originalseite */
  --sage-300:  #c2cba9;
  --sage-100:  #e8ecdc;

  /* Pflaume / Aubergine (übernommen) */
  --plum-800:  #321f2c;
  --plum-600:  #523346;  /* Original-Pflaume */
  --plum-400:  #7d6f89;  /* Original gedämpftes Violett */

  /* Magnolien-Rosé & Akzente (übernommen) */
  --rose-500:  #c881a0;  /* Original Altrosa */
  --rose-200:  #ecd3de;
  --gold-500:  #c69248;  /* Original Gold/Ocker */
  --gold-600:  #ab7c33;
  --oxblood:   #8b1603;  /* Original tiefes Rot — sehr sparsam */

  /* Warme Neutraltöne (Papier) */
  --paper:     #faf8f3;
  --paper-2:   #f3eee4;
  --card:      #ffffff;
  --ink:       #2a2530;
  --ink-soft:  #5e5763;
  --ink-mute:  #8a8390;
  --line:      #e7ded0;
  --line-soft: #f0e9dc;

  /* Funktional */
  --ok:        #3f7d4e;
  --shadow-sm: 0 1px 3px rgba(36,48,39,.06), 0 1px 2px rgba(36,48,39,.04);
  --shadow-md: 0 6px 20px -6px rgba(36,48,39,.16), 0 2px 6px rgba(36,48,39,.06);
  --shadow-lg: 0 24px 60px -18px rgba(36,48,39,.30), 0 8px 20px -8px rgba(36,48,39,.14);

  /* Maße */
  --container: 1200px;
  --radius:    14px;
  --radius-sm: 10px;
  --radius-lg: 22px;
  --ease:      cubic-bezier(.22,.61,.36,1);

  /* Typo */
  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans:  'Open Sans', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  --header-h: 80px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--header-h) + 16px); }
body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -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; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 3px solid var(--gold-500); outline-offset: 3px; border-radius: 4px; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 1.1; color: var(--green-900); letter-spacing: -0.01em; }
.display { font-size: clamp(2.6rem, 6vw, 4.6rem); font-weight: 500; line-height: 1.04; }
h2.section-title { font-size: clamp(2rem, 4vw, 3.1rem); }
h3 { font-size: clamp(1.35rem, 2.4vw, 1.75rem); }
p { color: var(--ink-soft); }
.lead { font-size: clamp(1.1rem, 1.6vw, 1.3rem); line-height: 1.6; color: var(--ink-soft); }
strong { color: var(--ink); font-weight: 600; }
em { color: var(--green-700); }

/* ---------- Layout helpers ---------- */
.container { width: min(100% - 2.6rem, var(--container)); margin-inline: auto; }
.container--narrow { width: min(100% - 2.6rem, 820px); margin-inline: auto; }
.section { padding: clamp(4rem, 9vw, 8rem) 0; }
.section--tight { padding: clamp(3rem, 6vw, 5rem) 0; }
.bg-paper-2 { background: var(--paper-2); }
.bg-sage { background: var(--sage-100); }
.center { text-align: center; }
.stack > * + * { margin-top: 1.1rem; }

/* Eyebrow / Kicker */
.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--sans); font-size: .8rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--green-600);
}
.eyebrow::before { content: ""; width: 28px; height: 1.5px; background: var(--gold-500); display: inline-block; }
.eyebrow.center { justify-content: center; }
.section-head { max-width: 760px; }
.section-head.center { margin-inline: auto; }
.section-head .lead { margin-top: 1rem; }
.section-head h2 { margin-top: 1rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .95rem 1.7rem; border-radius: 999px;
  font-family: var(--sans); font-weight: 600; font-size: .98rem;
  letter-spacing: .01em; line-height: 1;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
  border: 1.5px solid transparent; white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--green-800); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--green-900); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--gold { background: var(--gold-500); color: #2a1f08; }
.btn--gold:hover { background: var(--gold-600); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--ghost { background: transparent; color: var(--green-900); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--green-700); background: #fff; transform: translateY(-2px); }
.btn--light { background: rgba(255,255,255,.16); color: #fff; border-color: rgba(255,255,255,.4); backdrop-filter: blur(4px); }
.btn--light:hover { background: #fff; color: var(--green-900); transform: translateY(-2px); }
.btn--block { width: 100%; }
.btn--sm { padding: .7rem 1.2rem; font-size: .9rem; }
.link-arrow { display: inline-flex; align-items: center; gap: .45rem; font-weight: 600; color: var(--green-700); transition: gap .25s var(--ease), color .25s var(--ease); }
.link-arrow svg { width: 17px; height: 17px; transition: transform .25s var(--ease); }
.link-arrow:hover { color: var(--gold-600); }
.link-arrow:hover svg { transform: translateX(4px); }

/* ---------- Top utility bar ---------- */
.topbar {
  background: var(--green-900); color: rgba(255,255,255,.85);
  font-size: .82rem; letter-spacing: .02em;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 1rem; min-height: 40px; padding-block: .35rem; flex-wrap: wrap; }
.topbar a { color: rgba(255,255,255,.85); transition: color .2s; display: inline-flex; align-items: center; gap: .4rem; }
.topbar a:hover { color: #fff; }
.topbar svg { width: 15px; height: 15px; opacity: .8; }
.topbar .topbar-meta { display: flex; gap: 1.5rem; flex-wrap: wrap; }
@media (max-width: 720px){ .topbar .topbar-meta { display: none; } }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250,248,243,.86); backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid transparent;
  transition: background .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.site-header.scrolled { border-color: var(--line); box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; min-height: var(--header-h); }
.brand { display: flex; align-items: center; gap: .8rem; flex-shrink: 0; }
.brand-mark { width: 44px; height: 44px; flex-shrink: 0; }
.brand-text { line-height: 1.05; }
.brand-text b { font-family: var(--serif); font-weight: 600; font-size: 1.32rem; color: var(--green-900); letter-spacing: 0; display: block; }
.brand-text span { font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--green-600); font-weight: 600; }
.nav-links { display: flex; align-items: center; gap: .35rem; }
.nav-links > li > a {
  display: inline-block; padding: .55rem .85rem; border-radius: 999px;
  font-size: .95rem; font-weight: 600; color: var(--green-800);
  transition: background .2s, color .2s;
}
.nav-links > li > a:hover { background: var(--sage-100); color: var(--green-900); }
.nav-links > li > a[aria-current="page"] { color: var(--gold-600); }
.nav-actions { display: flex; align-items: center; gap: .6rem; }

/* Cart button */
.cart-btn { position: relative; display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px; border-radius: 999px; border: 1.5px solid var(--line); background: #fff; transition: border-color .2s, transform .2s; }
.cart-btn:hover { border-color: var(--green-700); transform: translateY(-1px); }
.cart-btn svg { width: 21px; height: 21px; color: var(--green-800); }
.cart-count {
  position: absolute; top: -6px; right: -6px; min-width: 21px; height: 21px; padding: 0 5px;
  background: var(--gold-500); color: #2a1f08; border-radius: 999px;
  font-size: .72rem; font-weight: 700; display: none; align-items: center; justify-content: center;
  border: 2px solid var(--paper);
}
.cart-count.show { display: inline-flex; }

/* Burger */
.burger { display: none; width: 46px; height: 46px; border-radius: 12px; border: 1.5px solid var(--line); background: #fff; }
.burger span { display: block; width: 20px; height: 2px; background: var(--green-900); margin: 4px auto; border-radius: 2px; transition: transform .3s var(--ease), opacity .2s; }
.burger[aria-expanded="true"] span:nth-child(1){ transform: translateY(6px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2){ opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3){ transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 1040px){
  .nav-links, .nav-actions .btn-desktop { display: none; }
  .burger { display: block; }
}

/* Mobile drawer */
.mobile-nav {
  position: fixed; inset: 0; z-index: 200; visibility: hidden;
}
.mobile-nav[aria-hidden="false"] { visibility: visible; }
.mobile-nav .scrim { position: absolute; inset: 0; background: rgba(36,48,39,.5); opacity: 0; transition: opacity .3s var(--ease); }
.mobile-nav[aria-hidden="false"] .scrim { opacity: 1; }
.mobile-nav .panel {
  position: absolute; top: 0; right: 0; height: 100%; width: min(88%, 380px);
  background: var(--paper); padding: 1.5rem; overflow-y: auto;
  transform: translateX(100%); transition: transform .35s var(--ease);
  display: flex; flex-direction: column; gap: .3rem;
}
.mobile-nav[aria-hidden="false"] .panel { transform: translateX(0); }
.mobile-nav .panel .m-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.mobile-nav .panel a.m-link { padding: .9rem .4rem; font-weight: 600; color: var(--green-800); border-bottom: 1px solid var(--line-soft); font-size: 1.05rem; }
.mobile-nav .panel a.m-link:hover { color: var(--gold-600); }
.mobile-nav .panel .m-cta { margin-top: 1.2rem; }
.icon-btn { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 10px; color: var(--green-900); }
.icon-btn:hover { background: var(--sage-100); }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: clamp(580px, 88vh, 880px); display: flex; align-items: flex-end; overflow: hidden; }
.hero-slides { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.6s var(--ease); transform: scale(1.06);
}
.hero-slide.active { opacity: 1; animation: kenburns 9s ease-out forwards; }
@keyframes kenburns { from { transform: scale(1.02); } to { transform: scale(1.12); } }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(20,28,22,.30) 0%, rgba(20,28,22,.05) 30%, rgba(20,28,22,.45) 78%, rgba(20,28,22,.72) 100%);
}
.hero-inner { position: relative; z-index: 2; padding-block: clamp(2.5rem, 6vw, 5.5rem); color: #fff; }
.hero-inner .eyebrow { color: #fff; }
.hero-inner .eyebrow::before { background: var(--gold-500); }
.hero h1 { color: #fff; max-width: 16ch; margin-top: 1.1rem; text-shadow: 0 2px 30px rgba(0,0,0,.3); }
.hero p.lead { color: rgba(255,255,255,.92); max-width: 52ch; margin-top: 1.4rem; text-shadow: 0 1px 12px rgba(0,0,0,.35); }
.hero-cta { display: flex; gap: .9rem; margin-top: 2rem; flex-wrap: wrap; }
.hero-dots { display: flex; gap: .5rem; margin-top: 2.6rem; }
.hero-dots button { width: 32px; height: 4px; border-radius: 999px; background: rgba(255,255,255,.4); transition: background .3s; }
.hero-dots button.active { background: #fff; }

/* Quick info strip under hero */
.quickbar { background: var(--green-900); color: #fff; }
.quickbar .container { display: grid; grid-template-columns: repeat(3, 1fr); }
.quickbar .qi { display: flex; align-items: center; gap: .9rem; padding: 1.3rem 1.5rem; border-right: 1px solid rgba(255,255,255,.12); }
.quickbar .qi:last-child { border-right: 0; }
.quickbar .qi svg { width: 26px; height: 26px; color: var(--sage-500); flex-shrink: 0; }
.quickbar .qi b { display: block; font-family: var(--sans); font-weight: 700; font-size: .95rem; color: #fff; }
.quickbar .qi span { font-size: .85rem; color: rgba(255,255,255,.7); }
@media (max-width: 760px){ .quickbar .container { grid-template-columns: 1fr; } .quickbar .qi { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); } .quickbar .qi:last-child{ border-bottom: 0; } }

/* ---------- Intro / split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split.reverse .split-media { order: 2; }
@media (max-width: 880px){ .split { grid-template-columns: 1fr; } .split.reverse .split-media { order: 0; } }
.split-media { position: relative; }
.split-media img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); aspect-ratio: 4/3.2; object-fit: cover; }
.split-media .badge-float {
  position: absolute; bottom: -22px; left: -22px; background: #fff; border-radius: var(--radius);
  padding: 1.1rem 1.3rem; box-shadow: var(--shadow-md); display: flex; align-items: center; gap: .8rem; max-width: 78%;
}
.split-media .badge-float .num { font-family: var(--serif); font-size: 2.4rem; line-height: 1; color: var(--green-800); font-weight: 600; }
.split-media .badge-float .lbl { font-size: .82rem; color: var(--ink-soft); line-height: 1.3; }
@media (max-width: 880px){ .split-media .badge-float { left: 16px; } }

.signature-quote { font-family: var(--serif); font-size: clamp(1.5rem, 3vw, 2.2rem); font-style: italic; line-height: 1.35; color: var(--green-800); }
.signature-quote + .quote-by { margin-top: 1rem; font-size: .9rem; color: var(--ink-mute); letter-spacing: .04em; }

/* ---------- Feature cards (Magnolienhain etc.) ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; margin-top: 3rem; }
@media (max-width: 920px){ .feature-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; } }
.feature-card { background: var(--card); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line-soft); transition: transform .35s var(--ease), box-shadow .35s var(--ease); display: flex; flex-direction: column; }
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.feature-card .media { aspect-ratio: 3/2.3; overflow: hidden; }
.feature-card .media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.feature-card:hover .media img { transform: scale(1.07); }
.feature-card .body { padding: 1.6rem 1.6rem 1.8rem; flex: 1; display: flex; flex-direction: column; align-items: flex-start; }
.feature-card .body h3 { margin-bottom: .55rem; }
.feature-card .body p { font-size: .96rem; margin-bottom: 1.1rem; }
.feature-card .body .link-arrow { margin-top: auto; }

/* ---------- Grabarten grid ---------- */
.grave-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; margin-top: 3rem; }
@media (max-width: 920px){ .grave-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px){ .grave-grid { grid-template-columns: 1fr; } }
.grave-card { position: relative; border-radius: var(--radius); overflow: hidden; min-height: 280px; display: flex; align-items: flex-end; box-shadow: var(--shadow-sm); isolation: isolate; }
.grave-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform .8s var(--ease); }
.grave-card::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(20,28,22,0) 30%, rgba(20,28,22,.82) 100%); }
.grave-card:hover img { transform: scale(1.08); }
.grave-card .gc-body { padding: 1.4rem; color: #fff; }
.grave-card .gc-body h3 { color: #fff; font-size: 1.4rem; }
.grave-card .gc-body p { color: rgba(255,255,255,.85); font-size: .9rem; margin-top: .35rem; }
.grave-card .gc-tag { position: absolute; top: 1rem; left: 1rem; background: rgba(255,255,255,.92); color: var(--green-800); font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: .35rem .7rem; border-radius: 999px; }

/* ---------- Grabpflege teaser band ---------- */
.cta-band { position: relative; overflow: hidden; border-radius: 0; }
.cta-band-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.1fr .9fr; gap: 3rem; align-items: center; }
@media (max-width: 880px){ .cta-band-inner { grid-template-columns: 1fr; } }

/* Mini product previews on home */
.mini-products { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.mini-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.mini-card .media { aspect-ratio: 4/3; overflow: hidden; }
.mini-card img { width: 100%; height: 100%; object-fit: cover; }
.mini-card .mc-body { padding: .9rem 1rem 1.1rem; }
.mini-card .mc-body h4 { font-family: var(--sans); font-size: .98rem; font-weight: 700; color: var(--green-900); }
.mini-card .mc-body .price { color: var(--gold-600); font-weight: 700; font-size: .92rem; margin-top: .2rem; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; margin-top: 3rem; counter-reset: step; }
@media (max-width: 820px){ .steps { grid-template-columns: 1fr; max-width: 540px; margin-inline: auto; } }
.step { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem 1.7rem; position: relative; }
.step .step-num { counter-increment: step; font-family: var(--serif); font-size: 1.1rem; font-weight: 600; width: 46px; height: 46px; border-radius: 999px; background: var(--sage-100); color: var(--green-800); display: flex; align-items: center; justify-content: center; margin-bottom: 1.1rem; }
.step .step-num::before { content: counter(step, decimal-leading-zero); }
.step h3 { font-size: 1.25rem; margin-bottom: .5rem; }
.step p { font-size: .94rem; }

/* ---------- Shop ---------- */
.shop-hero { position: relative; min-height: clamp(360px, 52vh, 520px); display: flex; align-items: center; overflow: hidden; }
.shop-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.shop-hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(95deg, rgba(36,48,39,.82) 0%, rgba(36,48,39,.45) 55%, rgba(36,48,39,.2) 100%); }
.shop-hero .container { color: #fff; padding-block: 2rem; }
.shop-hero h1 { color: #fff; max-width: 18ch; }
.shop-hero p { color: rgba(255,255,255,.9); max-width: 50ch; margin-top: 1rem; }
.crumbs { font-size: .82rem; color: rgba(255,255,255,.75); margin-bottom: 1rem; display: flex; gap: .5rem; align-items: center; }
.crumbs a:hover { color: #fff; }

.shop-tabs { display: flex; gap: .5rem; flex-wrap: wrap; justify-content: center; margin-top: 2.2rem; }
.shop-tab { padding: .6rem 1.2rem; border-radius: 999px; border: 1.5px solid var(--line); font-weight: 600; font-size: .92rem; color: var(--green-800); background: #fff; transition: all .2s; }
.shop-tab:hover { border-color: var(--green-600); }
.shop-tab.active { background: var(--green-800); color: #fff; border-color: var(--green-800); }

.shop-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; margin-top: 2.6rem; }
@media (max-width: 980px){ .shop-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px){ .shop-grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; } }

.product-card { background: #fff; border: 1px solid var(--line-soft); border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; box-shadow: var(--shadow-sm); transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.product-card .media { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.product-card .media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.product-card:hover .media img { transform: scale(1.06); }
.product-card .season-tag { position: absolute; top: .9rem; left: .9rem; background: rgba(255,255,255,.94); color: var(--green-800); font-size: .72rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; padding: .35rem .75rem; border-radius: 999px; display: inline-flex; align-items: center; gap: .35rem; }
.product-card .season-tag i { width: 8px; height: 8px; border-radius: 999px; display: inline-block; }
.product-card .body { padding: 1.4rem 1.4rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.product-card .body h3 { font-size: 1.5rem; }
.product-card .body .subtitle { font-size: .82rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--green-600); margin-bottom: .5rem; }
.product-card .body p { font-size: .93rem; margin-top: .5rem; }
.product-card .feat { margin-top: 1rem; display: flex; flex-direction: column; gap: .45rem; }
.product-card .feat li { display: flex; gap: .55rem; align-items: flex-start; font-size: .88rem; color: var(--ink-soft); }
.product-card .feat svg { width: 17px; height: 17px; color: var(--ok); flex-shrink: 0; margin-top: 2px; }
.product-card .foot { margin-top: auto; padding-top: 1.3rem; }
.product-card .price-row { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; margin-bottom: 1rem; }
.product-card .price { font-family: var(--serif); font-size: 1.9rem; font-weight: 600; color: var(--green-900); line-height: 1; }
.product-card .price small { font-family: var(--sans); font-size: .8rem; font-weight: 600; color: var(--ink-mute); }
.product-card .price .pre { font-size: .85rem; color: var(--ink-mute); font-family: var(--sans); font-weight: 600; }
.product-card .unit { font-size: .82rem; color: var(--ink-mute); }

.qty { display: inline-flex; align-items: center; border: 1.5px solid var(--line); border-radius: 999px; overflow: hidden; }
.qty button { width: 36px; height: 40px; font-size: 1.2rem; color: var(--green-800); transition: background .2s; }
.qty button:hover { background: var(--sage-100); }
.qty input { width: 38px; text-align: center; border: 0; font-weight: 700; color: var(--ink); font-size: .95rem; -moz-appearance: textfield; }
.qty input::-webkit-outer-spin-button, .qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.add-row { display: flex; gap: .7rem; align-items: stretch; }
.add-row .btn { flex: 1; }
.added-flash { color: var(--ok); font-size: .85rem; font-weight: 600; display: flex; align-items: center; gap: .4rem; height: 0; opacity: 0; overflow: hidden; transition: opacity .3s, height .3s, margin .3s; }
.added-flash.show { height: 1.2rem; opacity: 1; margin-top: .7rem; }
.added-flash svg { width: 16px; height: 16px; }

/* highlighted product */
.product-card.featured { border-color: var(--gold-500); box-shadow: 0 0 0 1px var(--gold-500), var(--shadow-md); }
.product-card .ribbon { position: absolute; top: .9rem; right: .9rem; background: var(--gold-500); color: #2a1f08; font-size: .72rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; padding: .35rem .75rem; border-radius: 999px; }

/* ---------- Cart drawer ---------- */
.cart-drawer { position: fixed; inset: 0; z-index: 300; visibility: hidden; }
.cart-drawer[aria-hidden="false"] { visibility: visible; }
.cart-drawer .scrim { position: absolute; inset: 0; background: rgba(36,48,39,.55); opacity: 0; transition: opacity .3s var(--ease); }
.cart-drawer[aria-hidden="false"] .scrim { opacity: 1; }
.cart-drawer .panel { position: absolute; top: 0; right: 0; height: 100%; width: min(94%, 440px); background: var(--paper); display: flex; flex-direction: column; transform: translateX(100%); transition: transform .35s var(--ease); }
.cart-drawer[aria-hidden="false"] .panel { transform: translateX(0); }
.cart-head { display: flex; align-items: center; justify-content: space-between; padding: 1.3rem 1.4rem; border-bottom: 1px solid var(--line); }
.cart-head h3 { font-size: 1.4rem; }
.cart-items { flex: 1; overflow-y: auto; padding: 1rem 1.4rem; display: flex; flex-direction: column; gap: 1rem; }
.cart-empty { text-align: center; color: var(--ink-mute); padding: 3rem 1rem; }
.cart-empty svg { width: 54px; height: 54px; margin: 0 auto 1rem; color: var(--sage-300); }
.cart-item { display: grid; grid-template-columns: 64px 1fr auto; gap: .9rem; align-items: center; padding-bottom: 1rem; border-bottom: 1px solid var(--line-soft); }
.cart-item img { width: 64px; height: 64px; border-radius: 10px; object-fit: cover; }
.cart-item .ci-name { font-weight: 700; font-size: .92rem; color: var(--green-900); }
.cart-item .ci-meta { font-size: .8rem; color: var(--ink-mute); }
.cart-item .ci-price { font-weight: 700; color: var(--green-800); font-size: .92rem; white-space: nowrap; }
.cart-item .ci-remove { font-size: .78rem; color: var(--ink-mute); text-decoration: underline; margin-top: .2rem; }
.cart-item .ci-remove:hover { color: var(--oxblood); }
.cart-foot { padding: 1.3rem 1.4rem; border-top: 1px solid var(--line); background: #fff; }
.cart-total { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: .3rem; }
.cart-total .t-label { font-weight: 600; }
.cart-total .t-val { font-family: var(--serif); font-size: 1.7rem; font-weight: 600; color: var(--green-900); }
.cart-note { font-size: .8rem; color: var(--ink-mute); margin-bottom: 1rem; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem,5vw,4rem); align-items: start; }
@media (max-width: 880px){ .contact-grid { grid-template-columns: 1fr; } }
.contact-info .ci-row { display: flex; gap: 1rem; padding: 1.1rem 0; border-bottom: 1px solid var(--line); }
.contact-info .ci-row svg { width: 24px; height: 24px; color: var(--green-600); flex-shrink: 0; }
.contact-info .ci-row b { display: block; color: var(--green-900); font-size: 1rem; }
.contact-info .ci-row span, .contact-info .ci-row a { color: var(--ink-soft); font-size: .95rem; }
.contact-info .ci-row a:hover { color: var(--green-700); }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.6rem, 3vw, 2.4rem); box-shadow: var(--shadow-sm); }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-weight: 600; font-size: .9rem; color: var(--green-900); margin-bottom: .45rem; }
.field label .req { color: var(--oxblood); }
.field input, .field select, .field textarea {
  width: 100%; padding: .85rem 1rem; border: 1.5px solid var(--line); border-radius: 10px;
  font: inherit; font-size: .98rem; color: var(--ink); background: var(--paper); transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--green-600); box-shadow: 0 0 0 3px rgba(74,97,81,.15); }
.field textarea { resize: vertical; min-height: 120px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
@media (max-width: 520px){ .field-row { grid-template-columns: 1fr; } }
.form-hint { font-size: .8rem; color: var(--ink-mute); margin-top: .35rem; }
.form-success { display: none; background: var(--sage-100); border: 1px solid var(--sage-300); color: var(--green-800); padding: 1rem 1.2rem; border-radius: 10px; font-size: .92rem; margin-bottom: 1rem; align-items: center; gap: .6rem; }
.form-success.show { display: flex; }

/* ---------- Footer ---------- */
.site-footer { background: var(--green-900); color: rgba(255,255,255,.72); padding: clamp(3.5rem, 7vw, 5.5rem) 0 0; margin-top: 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2.5rem; padding-bottom: 3rem; }
@media (max-width: 900px){ .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 540px){ .footer-grid { grid-template-columns: 1fr; } }
.footer-brand .brand-text b { color: #fff; }
.footer-brand .brand-text span { color: var(--sage-500); }
.footer-brand p { color: rgba(255,255,255,.6); font-size: .92rem; margin-top: 1.1rem; max-width: 34ch; }
.site-footer h4 { font-family: var(--sans); font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; color: var(--sage-500); margin-bottom: 1.1rem; font-weight: 700; }
.site-footer .f-links li { margin-bottom: .6rem; }
.site-footer .f-links a { color: rgba(255,255,255,.72); font-size: .94rem; transition: color .2s; }
.site-footer .f-links a:hover { color: #fff; }
.site-footer .f-contact div { display: flex; gap: .6rem; margin-bottom: .8rem; font-size: .92rem; align-items: flex-start; }
.site-footer .f-contact svg { width: 17px; height: 17px; color: var(--sage-500); flex-shrink: 0; margin-top: 3px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 1.5rem 0; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .85rem; color: rgba(255,255,255,.55); }
.footer-bottom a { color: rgba(255,255,255,.7); }
.footer-bottom a:hover { color: #fff; }
.footer-bottom .fb-links { display: flex; gap: 1.4rem; flex-wrap: wrap; }
.proposal-note { background: var(--gold-500); color: #2a1f08; font-size: .82rem; text-align: center; padding: .55rem 1rem; font-weight: 600; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
  .hero-slide.active { animation: none; }
}

/* utilities */
.mt-0 { margin-top: 0; }
.divider-leaf { display: flex; align-items: center; justify-content: center; gap: 1rem; color: var(--sage-500); margin: 0 auto; }
.divider-leaf::before, .divider-leaf::after { content: ""; height: 1px; width: 60px; background: var(--line); }
.divider-leaf svg { width: 22px; height: 22px; }
