/* ═════════════════════════════════════════════════════════════
   LINDEN APOTHEKE — Design System
   Type: Fraunces (display) / Inter (UI)
   ═════════════════════════════════════════════════════════════ */

@font-face {
  font-family: 'Fraunces';
  src: url('../assets/fonts/fraunces-var-latin.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../assets/fonts/inter-400-latin.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --pine:        #16382c;
  --pine-deep:   #0f2a20;
  --moss:        #2c5542;
  --sage:        #8faa97;
  --sage-soft:   #b7cbba;
  --cream:       #f4ede0;
  --cream-deep:  #eae1cd;
  --paper:       #faf6ee;
  --amber:       #c08434;
  --amber-soft:  #dcb765;
  --clay:        #b4653a;
  --ink:         #1c2420;
  --ink-soft:    #4d5a52;

  --font-display: 'Fraunces', Georgia, serif;
  --font-ui: 'Inter', -apple-system, 'Segoe UI', sans-serif;

  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --ease-spring: cubic-bezier(.34, 1.45, .5, 1);

  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;

  --shadow-soft: 0 24px 60px -24px rgba(22, 56, 44, .28);
  --shadow-card: 0 10px 34px -14px rgba(22, 56, 44, .22);

  --header-h: 84px;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }
body {
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul, ol { list-style: none; }
::selection { background: var(--amber); color: var(--paper); }
.nobr { white-space: nowrap; }
.br-lg { display: none; }
@media (min-width: 900px) { .br-lg { display: inline; } }

.container { width: min(1200px, calc(100% - 48px)); margin-inline: auto; }
.section { padding: clamp(90px, 12vw, 150px) 0; }
.section--pine { background: var(--pine); color: var(--cream); }
.section--cream { background: var(--cream); }

/* ── Typography ────────────────────────────────────────────── */
.h2 {
  font-family: var(--font-display);
  font-weight: 420;
  font-size: clamp(2.3rem, 4.6vw, 3.7rem);
  line-height: 1.06;
  letter-spacing: -.015em;
  text-wrap: balance;
}
.h2 em, .hero__title em, .cta__title em {
  font-style: italic;
  font-weight: 340;
  color: var(--amber);
}
.section--pine .h2 em { color: var(--amber-soft); }
.lead { font-size: clamp(1.05rem, 1.5vw, 1.2rem); line-height: 1.7; color: var(--ink-soft); }
.section--pine .lead { color: var(--sage-soft); }
.body-text { color: var(--ink-soft); max-width: 52ch; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: 22px;
}
.eyebrow span { width: 34px; height: 1.5px; background: var(--amber); display: inline-block; }
.eyebrow--light { color: var(--sage-soft); }

.section-head { max-width: 720px; margin-bottom: clamp(48px, 6vw, 76px); }
.section-head__note { margin-top: 20px; color: var(--ink-soft); font-size: .98rem; }
.section--pine .section-head__note { color: var(--sage-soft); }
.section-head--split {
  max-width: none;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 40px;
  align-items: end;
}
.section-head--split .section-head__note { margin-top: 0; padding-bottom: 8px; }
@media (max-width: 860px) { .section-head--split { grid-template-columns: 1fr; gap: 16px; } }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 100px;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .01em;
  transition: transform .5s var(--ease-spring), box-shadow .4s ease, background .3s ease, color .3s ease;
  will-change: transform;
  overflow: hidden;
}
.btn svg { transition: transform .4s var(--ease-out); }
.btn:hover svg { transform: translateX(4px); }
.btn--primary { background: var(--pine); color: var(--cream); box-shadow: 0 14px 30px -12px rgba(22,56,44,.5); }
.btn--primary::after {
  content: '';
  position: absolute; inset: 0;
  background: var(--moss);
  border-radius: inherit;
  transform: translateY(101%);
  transition: transform .45s var(--ease-out);
}
.btn--primary:hover::after { transform: translateY(0); }
.btn--primary span, .btn--primary svg { position: relative; z-index: 1; }
.btn--primary:hover { box-shadow: 0 18px 36px -12px rgba(22,56,44,.55); }
.btn--ghost { border: 1.5px solid rgba(22,56,44,.3); color: var(--pine); background: transparent; }
.btn--ghost:hover { border-color: var(--pine); background: rgba(22,56,44,.06); }
.btn--paper { background: var(--paper); color: var(--pine); box-shadow: 0 18px 40px -14px rgba(0,0,0,.35); }
.btn--paper:hover { transform: translateY(-2px) !important; }
.btn--sm { padding: 12px 20px; font-size: .88rem; }
.btn--lg { padding: 20px 36px; font-size: 1.05rem; }
.btn--full { width: 100%; justify-content: center; }

/* ── Preloader ─────────────────────────────────────────────── */
.preloader {
  position: fixed; inset: 0; z-index: 200;
  background: var(--pine);
  display: grid; place-items: center;
  transition: opacity .7s ease, visibility .7s;
}
.preloader.is-done { opacity: 0; visibility: hidden; }
.preloader__inner { display: grid; place-items: center; gap: 18px; color: var(--cream); }
.preloader__leaf, .preloader__vein {
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  animation: draw 1.4s var(--ease-out) forwards;
}
.preloader__vein { animation-delay: .35s; }
@keyframes draw { to { stroke-dashoffset: 0; } }
.preloader__word {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeUp .8s ease .5s forwards;
}
@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

/* ── Custom cursor ─────────────────────────────────────────── */
.cursor, .cursor-dot {
  position: fixed; top: 0; left: 0; z-index: 190;
  pointer-events: none;
  border-radius: 50%;
  opacity: 0;
}
.cursor {
  width: 38px; height: 38px;
  border: 1.5px solid rgba(22,56,44,.45);
  transition: width .3s ease, height .3s ease, border-color .3s ease, background .3s ease;
  transform: translate(-50%, -50%);
}
.cursor-dot { width: 6px; height: 6px; background: var(--amber); transform: translate(-50%, -50%); }
.cursor.is-hover { width: 62px; height: 62px; background: rgba(192,132,52,.12); border-color: var(--amber); }
body.has-cursor .cursor, body.has-cursor .cursor-dot { opacity: 1; }
@media (hover: none), (pointer: coarse) { .cursor, .cursor-dot { display: none; } }

/* ── Header ────────────────────────────────────────────────── */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .4s ease, box-shadow .4s ease, transform .5s var(--ease-out);
}
.header::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(250, 246, 238, .82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  opacity: 0;
  transition: opacity .4s ease;
  border-bottom: 1px solid rgba(22,56,44,.08);
}
.header.is-scrolled::before { opacity: 1; }
.header.is-hidden { transform: translateY(-100%); }
.header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: var(--header-h);
}
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--pine); }
.brand__mark { flex-shrink: 0; transition: transform .5s var(--ease-spring); }
.brand:hover .brand__mark { transform: rotate(-8deg) scale(1.06); }
.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__name { font-family: var(--font-display); font-size: 1.45rem; font-weight: 500; letter-spacing: .01em; }
.brand__sub { font-size: .62rem; font-weight: 600; letter-spacing: .24em; text-transform: uppercase; color: var(--ink-soft); }

.nav { display: flex; gap: 6px; }
.nav__link {
  position: relative;
  padding: 10px 16px;
  font-size: .92rem;
  font-weight: 500;
  color: var(--ink);
  border-radius: 100px;
  transition: color .25s ease, background .25s ease;
}
.nav__link:hover { color: var(--pine); background: rgba(22,56,44,.06); }
.nav__link.is-active { color: var(--paper); background: var(--pine); }

.header__actions { display: flex; align-items: center; gap: 18px; }
.header__status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--moss);
  white-space: nowrap;
}
.header__status-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #3f9d63;
  box-shadow: 0 0 0 0 rgba(63,157,99,.5);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(63,157,99,.45); }
  70% { box-shadow: 0 0 0 8px rgba(63,157,99,0); }
  100% { box-shadow: 0 0 0 0 rgba(63,157,99,0); }
}
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px; height: 44px;
  align-items: center;
  border-radius: 50%;
  border: 1.5px solid rgba(22,56,44,.25);
}
.burger span {
  display: block; width: 18px; height: 2px;
  background: var(--pine);
  border-radius: 2px;
  transition: transform .35s var(--ease-out);
}
.burger.is-open span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.burger.is-open span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

@media (max-width: 1080px) { .header__status { display: none; } }
@media (max-width: 900px) {
  .nav, .header__actions .btn { display: none; }
  .burger { display: inline-flex; }
}

/* ── Mobile menu ───────────────────────────────────────────── */
.mobilemenu {
  position: fixed; inset: 0; z-index: 90;
  background: var(--pine);
  color: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 32px 48px;
  clip-path: circle(0% at calc(100% - 60px) 42px);
  transition: clip-path .7s var(--ease-out);
  visibility: hidden;
}
.mobilemenu.is-open { clip-path: circle(150% at calc(100% - 60px) 42px); visibility: visible; }
.mobilemenu__nav { display: flex; flex-direction: column; gap: 6px; }
.mobilemenu__link {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 8vw, 3.2rem);
  font-weight: 400;
  padding: 8px 0;
  border-bottom: 1px solid rgba(244,237,224,.14);
  transition: padding-left .35s var(--ease-out), color .3s;
}
.mobilemenu__link:hover { padding-left: 14px; color: var(--amber-soft); }
.mobilemenu__meta { margin-top: 40px; color: var(--sage-soft); font-size: .92rem; display: grid; gap: 4px; }
.mobilemenu__tel { font-family: var(--font-display); font-size: 1.5rem; color: var(--cream); margin-top: 10px; }

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: calc(var(--header-h) + clamp(40px, 7vw, 90px)) 0 clamp(60px, 8vw, 110px);
  background:
    radial-gradient(1100px 520px at 88% -8%, rgba(183,203,186,.5), transparent 60%),
    radial-gradient(900px 480px at -10% 30%, rgba(220,183,101,.16), transparent 55%),
    var(--paper);
  overflow: hidden;
}
.hero__grain {
  position: absolute; inset: 0;
  pointer-events: none;
  opacity: .5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .05 0'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: center;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: 26px;
}
.hero__eyebrow-line { width: 42px; height: 1.5px; background: var(--amber); }
.hero__title {
  font-family: var(--font-display);
  font-weight: 430;
  font-size: clamp(3rem, 6.6vw, 5.4rem);
  line-height: 1.02;
  letter-spacing: -.02em;
  color: var(--pine-deep);
  text-wrap: balance;
  margin-bottom: 26px;
}
.hero__lead { max-width: 46ch; font-size: clamp(1rem, 1.35vw, 1.15rem); line-height: 1.75; color: var(--ink-soft); margin-bottom: 36px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 52px; }

.hero__stats { display: flex; gap: clamp(28px, 4vw, 54px); }
.hero__stat dt {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 450;
  color: var(--pine);
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.hero__stat dt i { font-style: normal; font-size: .55em; font-weight: 600; color: var(--amber); }
.hero__stat dd { margin-top: 8px; font-size: .82rem; color: var(--ink-soft); max-width: 15ch; line-height: 1.45; }

.hero__visual { position: relative; }
.hero__frame {
  position: relative;
  border-radius: 999px 999px var(--radius-lg) var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4 / 4.9;
}
.hero__frame img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.04); transition: transform 1.6s var(--ease-out); }
.hero__frame:hover img { transform: scale(1.0); }
.hero__frame::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(22,56,44,.14);
}
.hero__chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(250,246,238,.92);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(22,56,44,.1);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  box-shadow: var(--shadow-card);
  color: var(--pine);
}
.hero__chip strong { display: block; font-size: .86rem; line-height: 1.25; }
.hero__chip span { display: block; font-size: .74rem; color: var(--ink-soft); }
.hero__chip svg { color: var(--amber); flex-shrink: 0; }
.hero__chip--rx { top: 16%; left: -56px; }
.hero__chip--lab { bottom: 12%; right: -40px; }
.hero__badge {
  position: absolute;
  top: -36px; right: 6%;
  color: var(--pine);
  animation: spin 22s linear infinite;
}
.hero__badge-text { font-size: 11.5px; font-weight: 600; letter-spacing: .18em; fill: var(--pine); }
@keyframes spin { to { transform: rotate(360deg); } }
@media (max-width: 1240px) {
  .hero__chip--rx { left: -16px; }
  .hero__chip--lab { right: -12px; }
}
@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { max-width: 520px; margin: 12px auto 0; width: 100%; }
  .hero__chip--rx { top: 8%; left: 6px; }
  .hero__chip--lab { bottom: 6%; right: 6px; }
  .hero__badge { top: -28px; right: -6px; }
}

/* ── Marquee ───────────────────────────────────────────────── */
.marquee {
  background: var(--pine);
  color: var(--cream);
  padding: 18px 0;
  overflow: hidden;
  transform: rotate(-1.2deg) scale(1.02);
  margin: -18px 0 0;
  border-block: 1px solid rgba(244,237,224,.12);
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: 44px;
  width: max-content;
  animation: marquee 34s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track span {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 400;
  letter-spacing: .02em;
  white-space: nowrap;
}
.marquee__track i { font-style: normal; color: var(--amber-soft); font-size: .9rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ── About ─────────────────────────────────────────────────── */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: center;
}
.about__media { position: relative; padding-right: 56px; padding-bottom: 86px; }
.about__photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.about__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease-out); }
.about__photo:hover img { transform: scale(1.045); }
.about__photo--overlap {
  position: absolute;
  right: 0; bottom: 0;
  width: 46%;
  border: 6px solid var(--paper);
}
.about__photo--overlap figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 28px 16px 12px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--cream);
  background: linear-gradient(transparent, rgba(15,42,32,.75));
}
.about__seal {
  position: absolute;
  top: -24px; left: -24px;
  width: 96px; height: 96px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--cream);
  color: var(--pine);
  box-shadow: var(--shadow-card);
}
.about__copy .h2 { margin-bottom: 24px; }
.about__copy .lead { margin-bottom: 18px; }
.about__values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin: 38px 0;
  padding: 30px 0;
  border-block: 1px solid rgba(22,56,44,.14);
}
.about__values strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.14rem;
  font-weight: 500;
  color: var(--pine);
  margin-bottom: 6px;
}
.about__values span { font-size: .84rem; color: var(--ink-soft); line-height: 1.5; display: block; }
.about__signature { display: flex; align-items: center; gap: 18px; }
.about__signature svg { color: var(--pine); flex-shrink: 0; }
.signature-path { stroke-dasharray: 600; stroke-dashoffset: 600; }
.about__signature.is-inview .signature-path { animation: draw 2.2s var(--ease-out) .2s forwards; }
.about__signature span { font-size: .88rem; font-weight: 600; color: var(--pine); }
.about__signature i { font-style: italic; font-weight: 400; color: var(--ink-soft); }
@media (max-width: 900px) {
  .about__grid { grid-template-columns: 1fr; }
  .about__media { max-width: 560px; }
}

/* ── Services ──────────────────────────────────────────────── */
.services { position: relative; overflow: hidden; }
.services::before {
  content: '';
  position: absolute;
  top: -180px; right: -180px;
  width: 560px; height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(183,203,186,.16), transparent 65%);
  pointer-events: none;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-card {
  position: relative;
  background: rgba(244,237,224,.05);
  border: 1px solid rgba(244,237,224,.14);
  border-radius: var(--radius-lg);
  padding: 34px 30px 40px;
  transition: transform .5s var(--ease-out), background .4s ease, border-color .4s ease;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(220,183,101,.14), transparent 55%);
  opacity: 0;
  transition: opacity .45s ease;
}
.service-card:hover { transform: translateY(-6px); background: rgba(244,237,224,.08); border-color: rgba(220,183,101,.4); }
.service-card:hover::before { opacity: 1; }
.service-card__icon {
  width: 62px; height: 62px;
  display: grid; place-items: center;
  border-radius: 18px;
  background: rgba(220,183,101,.14);
  color: var(--amber-soft);
  margin-bottom: 24px;
  transition: transform .5s var(--ease-spring), background .35s;
}
.service-card__icon svg { width: 32px; height: 32px; }
.service-card:hover .service-card__icon { transform: rotate(-6deg) scale(1.07); background: rgba(220,183,101,.24); }
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.42rem;
  font-weight: 450;
  margin-bottom: 12px;
}
.service-card p { font-size: .92rem; line-height: 1.65; color: var(--sage-soft); margin-bottom: 20px; }
.service-card__tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--amber-soft);
  border: 1px solid rgba(220,183,101,.4);
  border-radius: 100px;
  padding: 6px 13px;
}
.service-card__link {
  position: absolute;
  top: 30px; right: 26px;
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1.5px solid rgba(244,237,224,.25);
  color: var(--cream);
  transition: background .35s, color .35s, transform .45s var(--ease-spring), border-color .35s;
}
.service-card__link:hover { background: var(--amber-soft); border-color: var(--amber-soft); color: var(--pine-deep); transform: rotate(-38deg); }
@media (max-width: 1000px) { .services__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .services__grid { grid-template-columns: 1fr; } }

/* ── Process ───────────────────────────────────────────────── */
.process__list { counter-reset: steps; }
.process__step {
  display: grid;
  grid-template-columns: 130px 1fr auto;
  gap: clamp(20px, 4vw, 56px);
  align-items: center;
  padding: clamp(30px, 4vw, 46px) 0;
  border-top: 1px solid rgba(22,56,44,.16);
  transition: padding-left .5s var(--ease-out), background .4s;
}
.process__step:last-child { border-bottom: 1px solid rgba(22,56,44,.16); }
.process__step:hover { padding-left: 18px; }
.process__num {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.4vw, 3.6rem);
  font-weight: 300;
  font-style: italic;
  color: var(--sage);
  transition: color .35s;
}
.process__step:hover .process__num { color: var(--amber); }
.process__body h3 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  font-weight: 450;
  color: var(--pine-deep);
  margin-bottom: 10px;
}
.process__body p { color: var(--ink-soft); max-width: 58ch; font-size: .96rem; }
.process__time {
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--moss);
  background: rgba(143,170,151,.18);
  padding: 9px 16px;
  border-radius: 100px;
  white-space: nowrap;
}
@media (max-width: 760px) {
  .process__step { grid-template-columns: 64px 1fr; }
  .process__time { grid-column: 2; justify-self: start; margin-top: 4px; }
}

/* ── Shelf ─────────────────────────────────────────────────── */
.shelf__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.product {
  background: var(--paper);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 18px -8px rgba(22,56,44,.12);
  transition: transform .5s var(--ease-out), box-shadow .5s ease;
  display: flex;
  flex-direction: column;
}
.product:hover { transform: translateY(-8px); box-shadow: var(--shadow-soft); }
.product__media {
  position: relative;
  aspect-ratio: 1 / 1.04;
  display: grid;
  place-items: center;
}
.product__media--amber { background: linear-gradient(160deg, #efe4cd, #e4d2ae); }
.product__media--pine  { background: linear-gradient(160deg, #dce6de, #bcd0c1); }
.product__media--blush { background: linear-gradient(160deg, #f2ddcf, #e4c3ab); }
.product__media--cream { background: linear-gradient(160deg, #f5eeda, #ead9ab); }
.product__art { width: 52%; filter: drop-shadow(0 18px 22px rgba(22,56,44,.22)); transition: transform .6s var(--ease-spring); }
.product:hover .product__art { transform: translateY(-8px) rotate(-2deg) scale(1.04); }
.product__badge {
  position: absolute;
  top: 16px; left: 16px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 100px;
  background: var(--pine);
  color: var(--cream);
}
.product__badge--pine { background: var(--moss); }
.product__badge--clay { background: var(--clay); }
.product__badge--amber { background: var(--amber); color: var(--pine-deep); }
.product__info { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.product__info h3 { font-family: var(--font-display); font-size: 1.28rem; font-weight: 500; color: var(--pine-deep); }
.product__info > p { font-size: .84rem; color: var(--ink-soft); margin: 6px 0 18px; flex: 1; }
.product__row { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.product__price { font-weight: 700; font-size: 1.06rem; color: var(--pine); }
.product__add {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--pine);
  border: 1.5px solid rgba(22,56,44,.28);
  padding: 9px 16px;
  border-radius: 100px;
  transition: background .3s, color .3s, border-color .3s, transform .4s var(--ease-spring);
}
.product__add:hover { background: var(--pine); border-color: var(--pine); color: var(--cream); }
.product__add:active { transform: scale(.94); }
.product__add.is-added { background: #3f9d63; border-color: #3f9d63; color: #fff; pointer-events: none; }
.shelf__note { text-align: center; margin-top: 44px; font-size: .9rem; color: var(--ink-soft); line-height: 1.7; }
@media (max-width: 1000px) { .shelf__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .shelf__grid { grid-template-columns: 1fr; } }

/* ── Team ──────────────────────────────────────────────────── */
.team__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 40px);
}
.member__photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/4.7;
  box-shadow: var(--shadow-card);
  position: relative;
}
.member__photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(transparent 62%, rgba(15,42,32,.5));
  opacity: 0;
  transition: opacity .5s ease;
}
.member:hover .member__photo::after { opacity: 1; }
.member__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease-out); }
.member:hover .member__photo img { transform: scale(1.05); }
.member__body { padding: 24px 6px 0; }
.member__body h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 500; color: var(--pine-deep); }
.member__role {
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--amber);
  margin: 6px 0 12px;
}
.member__bio { font-size: .92rem; color: var(--ink-soft); line-height: 1.65; margin-bottom: 16px; }
.member__tags { display: flex; flex-wrap: wrap; gap: 8px; }
.member__tags span {
  font-size: .72rem;
  font-weight: 600;
  color: var(--moss);
  background: rgba(143,170,151,.2);
  padding: 6px 13px;
  border-radius: 100px;
}
@media (max-width: 860px) { .team__grid { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; } }

/* ── Testimonials ──────────────────────────────────────────── */
.quotes { position: relative; overflow: hidden; }
.quotes::after {
  content: '';
  position: absolute;
  bottom: -240px; left: -160px;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(220,183,101,.14), transparent 62%);
}
.quotes__inner { max-width: 860px; text-align: center; position: relative; z-index: 1; }
.quotes__mark { color: var(--amber-soft); margin-bottom: 34px; opacity: .9; }
.quotes__viewport { position: relative; min-height: 270px; }
@media (max-width: 640px) { .quotes__viewport { min-height: 360px; } }
.quote {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s ease, transform .65s var(--ease-out);
  pointer-events: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 30px;
}
.quote.is-active { opacity: 1; transform: none; pointer-events: auto; }
.quote p {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.6vw, 1.8rem);
  font-weight: 380;
  line-height: 1.45;
  letter-spacing: -.01em;
  text-wrap: balance;
}
.quote p em { font-style: italic; color: var(--amber-soft); }
.quote footer { display: grid; gap: 3px; }
.quote footer strong { font-size: .95rem; letter-spacing: .02em; }
.quote footer span { font-size: .8rem; color: var(--sage-soft); }
.quotes__nav { display: flex; align-items: center; justify-content: center; gap: 26px; margin-top: 44px; }
.quotes__btn {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1.5px solid rgba(244,237,224,.3);
  color: var(--cream);
  transition: background .3s, color .3s, transform .4s var(--ease-spring), border-color .3s;
}
.quotes__btn:hover { background: var(--amber-soft); border-color: var(--amber-soft); color: var(--pine-deep); transform: scale(1.06); }
.quotes__dots { display: flex; gap: 9px; }
.quotes__dots button {
  width: 8px; height: 8px;
  border-radius: 100px;
  background: rgba(244,237,224,.3);
  transition: width .35s var(--ease-out), background .35s;
}
.quotes__dots button.is-active { width: 26px; background: var(--amber-soft); }

/* ── FAQ ───────────────────────────────────────────────────── */
.faq__grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(44px, 6vw, 100px);
  align-items: start;
}
.faq__head { position: sticky; top: calc(var(--header-h) + 24px); }
.faq__head .h2 { margin-bottom: 20px; }
.faq__head .body-text { margin-bottom: 28px; }
.faq__item {
  border-top: 1px solid rgba(22,56,44,.16);
}
.faq__item:last-child { border-bottom: 1px solid rgba(22,56,44,.16); }
.faq__item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 26px 4px;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.9vw, 1.32rem);
  font-weight: 450;
  color: var(--pine-deep);
  list-style: none;
  transition: color .3s;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--amber); }
.faq__icon {
  position: relative;
  flex-shrink: 0;
  width: 38px; height: 38px;
  border: 1.5px solid rgba(22,56,44,.22);
  border-radius: 50%;
  transition: background .35s, border-color .35s, transform .5s var(--ease-out);
}
.faq__icon::before, .faq__icon::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 13px; height: 1.8px;
  background: var(--pine);
  transform: translate(-50%, -50%);
  transition: transform .45s var(--ease-out), background .3s;
}
.faq__icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq__item[open] .faq__icon { background: var(--pine); border-color: var(--pine); transform: rotate(135deg); }
.faq__item[open] .faq__icon::before, .faq__item[open] .faq__icon::after { background: var(--cream); }
.faq__item[open] .faq__icon::after { transform: translate(-50%, -50%) rotate(0); }
.faq__answer { overflow: hidden; }
.faq__answer p { padding: 0 60px 26px 4px; color: var(--ink-soft); font-size: .95rem; line-height: 1.75; max-width: 62ch; }
@media (max-width: 860px) {
  .faq__grid { grid-template-columns: 1fr; }
  .faq__head { position: static; }
}

/* ── Visit ─────────────────────────────────────────────────── */
.visit__grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(28px, 4vw, 48px);
  align-items: stretch;
}
.visit__map {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  min-height: 420px;
  background: var(--cream-deep);
}
.visit__map .map { width: 100%; height: 100%; object-fit: cover; display: block; position: absolute; inset: 0; }
.map__label { font-family: var(--font-ui); font-size: 12px; font-weight: 600; fill: #8a7d63; letter-spacing: .04em; }
.visit__directions {
  position: absolute;
  bottom: 18px; left: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  font-weight: 600;
  background: rgba(250,246,238,.94);
  color: var(--pine);
  padding: 11px 18px;
  border-radius: 100px;
  box-shadow: var(--shadow-card);
  transition: background .3s, transform .4s var(--ease-spring);
}
.visit__directions:hover { background: var(--pine); color: var(--cream); transform: translateY(-2px); }
.visit__details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.visit__card, .visit__form {
  background: var(--paper);
  border: 1px solid rgba(22,56,44,.1);
  border-radius: var(--radius-md);
  padding: 24px 24px 26px;
  transition: transform .5s var(--ease-out), box-shadow .4s;
}
.visit__card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.visit__card h3, .visit__form h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-ui);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: 14px;
}
.visit__card h3 svg, .visit__form h3 svg { color: var(--amber); }
.visit__card p { font-size: .95rem; color: var(--ink); line-height: 1.65; }
.visit__card a { color: var(--pine); font-weight: 600; border-bottom: 1.5px solid rgba(192,132,52,.5); transition: border-color .3s, color .3s; }
.visit__card a:hover { color: var(--amber); border-color: var(--amber); }
.visit__hint { font-size: .8rem !important; color: var(--ink-soft) !important; margin-top: 10px; }
.visit__hours { width: 100%; border-collapse: collapse; }
.visit__hours th, .visit__hours td { text-align: left; padding: 6px 0; font-size: .92rem; font-weight: 500; }
.visit__hours th { color: var(--ink-soft); font-weight: 500; }
.visit__hours td { text-align: right; color: var(--ink); }
.visit__hours tr:not(:last-child) th, .visit__hours tr:not(:last-child) td { border-bottom: 1px dashed rgba(22,56,44,.14); }
.is-closed { color: var(--clay) !important; }

.visit__form { grid-column: 1 / -1; display: grid; gap: 14px; }
.visit__form label { display: grid; gap: 6px; }
.visit__form label span {
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.visit__form input {
  font: inherit;
  font-size: .94rem;
  color: var(--ink);
  background: var(--cream);
  border: 1.5px solid transparent;
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  transition: border-color .3s, background .3s, box-shadow .3s;
  width: 100%;
}
.visit__form input::placeholder { color: rgba(77,90,82,.55); }
.visit__form input:focus { outline: none; border-color: var(--pine); background: var(--paper); box-shadow: 0 0 0 4px rgba(22,56,44,.08); }
.visit__form input.is-error { border-color: var(--clay); }
.visit__form-status { font-size: .86rem; font-weight: 600; min-height: 1.2em; }
.visit__form-status.is-ok { color: #2f7a4b; }
.visit__form-status.is-err { color: var(--clay); }
@media (max-width: 960px) {
  .visit__grid { grid-template-columns: 1fr; }
  .visit__map { min-height: 340px; }
}
@media (max-width: 560px) { .visit__details { grid-template-columns: 1fr; } }

/* ── CTA banner ────────────────────────────────────────────── */
.cta {
  background: var(--pine-deep);
  color: var(--cream);
  padding: clamp(90px, 11vw, 140px) 0;
  position: relative;
  overflow: hidden;
}
.cta__leaf { position: absolute; inset: 0; pointer-events: none; }
.cta__leaf svg { position: absolute; color: rgba(183,203,186,.16); width: 340px; height: 340px; }
.cta__leaf svg:nth-child(1) { left: -90px; bottom: -120px; transform: rotate(24deg); }
.cta__leaf svg:nth-child(2) { right: -70px; top: -110px; transform: rotate(-140deg); }
.cta__inner { position: relative; text-align: center; display: grid; justify-items: center; }
.cta__title {
  font-family: var(--font-display);
  font-weight: 420;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 1.05;
  letter-spacing: -.015em;
  margin-bottom: 22px;
}
.cta__sub { color: var(--sage-soft); font-size: 1.02rem; line-height: 1.7; margin-bottom: 38px; }

/* ── Footer ────────────────────────────────────────────────── */
.footer { background: var(--pine); color: var(--sage-soft); padding: clamp(60px, 7vw, 90px) 0 0; }
.footer__top {
  display: grid;
  grid-template-columns: 1.5fr .7fr .7fr .9fr;
  gap: clamp(36px, 5vw, 64px);
  padding-bottom: clamp(44px, 5vw, 64px);
  border-bottom: 1px solid rgba(244,237,224,.14);
}
.brand--footer { color: var(--cream); margin-bottom: 20px; }
.brand--footer .brand__sub { color: var(--sage); }
.footer__brand > p { font-size: .95rem; line-height: 1.7; margin-bottom: 30px; }
.footer__news label { display: block; font-size: .82rem; font-weight: 600; color: var(--cream); margin-bottom: 12px; letter-spacing: .02em; }
.footer__news-row {
  display: flex;
  background: rgba(244,237,224,.08);
  border: 1px solid rgba(244,237,224,.2);
  border-radius: 100px;
  padding: 5px;
  transition: border-color .3s;
  max-width: 380px;
}
.footer__news-row:focus-within { border-color: var(--amber-soft); }
.footer__news-row input {
  flex: 1;
  min-width: 0;
  background: none;
  border: 0;
  color: var(--cream);
  font: inherit;
  font-size: .92rem;
  padding: 10px 16px;
}
.footer__news-row input::placeholder { color: rgba(183,203,186,.6); }
.footer__news-row input:focus { outline: none; }
.footer__news-row button {
  width: 44px; height: 44px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--amber-soft);
  color: var(--pine-deep);
  transition: transform .4s var(--ease-spring), background .3s;
}
.footer__news-row button:hover { transform: scale(1.08) rotate(-38deg); }
.footer__news-status { font-size: .82rem; margin-top: 10px; min-height: 1.2em; color: var(--amber-soft); }
.footer__col { display: grid; gap: 12px; align-content: start; }
.footer__col h4 {
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 8px;
}
.footer__col a { font-size: .92rem; width: fit-content; position: relative; transition: color .3s; }
.footer__col a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -3px;
  width: 100%; height: 1.5px;
  background: var(--amber-soft);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .4s var(--ease-out);
}
.footer__col a:hover { color: var(--cream); }
.footer__col a:hover::after { transform: scaleX(1); transform-origin: left; }
.footer__owner { font-size: .78rem; line-height: 1.6; color: rgba(183,203,186,.7); margin-top: 6px; }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 26px 0;
  font-size: .82rem;
}
.footer__motto { font-family: var(--font-display); font-style: italic; color: var(--amber-soft); }
@media (max-width: 900px) { .footer__top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer__top { grid-template-columns: 1fr; } }

/* ── Reveal animations ─────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
  transition-delay: calc(var(--reveal-delay, 0) * 110ms);
}
[data-reveal].is-inview { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1; transform: none; }
}

/* ── Toast ─────────────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 28px; left: 50%;
  transform: translate(-50%, 120px);
  z-index: 150;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--pine-deep);
  color: var(--cream);
  font-size: .9rem;
  font-weight: 500;
  padding: 15px 24px;
  border-radius: 100px;
  box-shadow: 0 20px 50px -16px rgba(0,0,0,.45);
  transition: transform .6s var(--ease-spring);
  pointer-events: none;
  max-width: min(92vw, 480px);
  text-align: center;
}
.toast.is-visible { transform: translate(-50%, 0); }
.toast svg { color: var(--amber-soft); flex-shrink: 0; }
