/* =========================================================
   Barbara Binder — Psychotherapie
   Clean · minimal · botanical
   ========================================================= */

:root {
  /* Palette */
  --cream:      #fbfaf6;
  --paper:      #f3f1e9;
  --tint:       #eef1e9;
  --ink:        #283228;
  --ink-soft:   #4d574c;
  --green:      #38503f;
  --green-deep: #2c3f32;
  --green-700:  #3f5a47;
  --sage:       #8aa088;
  --sage-soft:  #c4d0bd;
  --line:       #e3e1d7;
  --line-green: rgba(56, 80, 63, .16);
  --white:      #ffffff;

  /* Type */
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --display: "Cormorant Garamond", Georgia, serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Rhythm */
  --maxw: 1160px;
  --gutter: clamp(1.25rem, 5vw, 4rem);
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 18px 50px -28px rgba(40, 56, 42, .42);
  --shadow-soft: 0 10px 30px -20px rgba(40, 56, 42, .35);
  --ease: cubic-bezier(.22, .61, .36, 1);
}

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

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: 1.1; margin: 0; letter-spacing: -.01em; }

.skip-link {
  position: absolute; left: 50%; top: -60px; transform: translateX(-50%);
  background: var(--green); color: #fff; padding: .6rem 1.2rem; border-radius: 0 0 12px 12px;
  z-index: 200; transition: top .2s;
}
.skip-link:focus { top: 0; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--green); --fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  background: var(--bg); color: var(--fg);
  font-family: var(--sans); font-weight: 500; font-size: .95rem; letter-spacing: .01em;
  padding: .8rem 1.5rem; border-radius: 100px; border: 1px solid transparent;
  cursor: pointer; transition: transform .35s var(--ease), background .25s, box-shadow .35s, color .25s;
  box-shadow: var(--shadow-soft);
}
.btn:hover { background: var(--green-deep); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn:active { transform: translateY(0); }
.btn--small { padding: .58rem 1.15rem; font-size: .88rem; }
.btn--lg { padding: .95rem 1.9rem; font-size: 1rem; }
.btn--full { width: 100%; }
.btn--ghost { background: transparent; color: var(--green); border-color: var(--line-green); box-shadow: none; }
.btn--ghost:hover { background: rgba(56,80,63,.06); color: var(--green-deep); }

/* ---------- Nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .4s var(--ease), box-shadow .4s, padding .4s var(--ease);
  padding: 1.35rem 0;
}
.nav__inner {
  width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter);
  display: flex; align-items: center; gap: 1.5rem;
}
.nav.is-scrolled {
  padding: .55rem 0;
  background: rgba(251, 250, 246, .85);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  box-shadow: 0 1px 0 var(--line);
}

.brand { display: inline-flex; align-items: center; gap: .65rem; margin-right: auto; }
.brand__name {
  font-family: var(--serif); font-size: 1.5rem; color: var(--green-deep); letter-spacing: -.01em;
  transition: font-size .4s var(--ease);
}
.nav.is-scrolled .brand__name { font-size: 1.2rem; }
.brand__leaf { width: 32px; height: 32px; flex: none; transition: width .4s var(--ease), height .4s var(--ease); }
.nav.is-scrolled .brand__leaf { width: 25px; height: 25px; }
.brand__leaf path:first-child { fill: var(--green); }
.brand__leaf path:last-child { fill: none; stroke: var(--cream); stroke-width: 1.4; }

.nav__links { display: flex; gap: 1.7rem; }
.nav__links a {
  font-size: .94rem; color: var(--ink-soft); position: relative; padding: .2rem 0;
  transition: color .25s;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 1.5px; width: 0;
  background: var(--green); transition: width .3s var(--ease);
}
.nav__links a:hover { color: var(--green-deep); }
.nav__links a:hover::after { width: 100%; }

.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__toggle span { width: 24px; height: 2px; background: var(--green-deep); border-radius: 2px; transition: transform .3s, opacity .3s; }
.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); }

.nav__mobile {
  display: none; flex-direction: column; gap: .25rem;
  background: var(--cream); border-top: 1px solid var(--line);
  padding: 1rem var(--gutter) 1.5rem;
}
.nav__mobile a { padding: .75rem .25rem; font-size: 1.05rem; color: var(--ink); border-bottom: 1px solid var(--line); }
.nav__mobile .btn { margin-top: .8rem; border-bottom: 0; color: #fff; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100svh; display: grid; align-items: center;
  padding: 8rem 0 5rem;
  background:
    radial-gradient(120% 90% at 85% 5%, rgba(138,160,136,.20), transparent 55%),
    radial-gradient(90% 70% at 5% 95%, rgba(196,208,189,.30), transparent 55%),
    var(--cream);
  overflow: hidden;
}
.hero__inner { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); position: relative; z-index: 2; }
.hero__grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: clamp(2rem, 6vw, 5rem); align-items: center; }

.hero__media { position: relative; justify-self: center; }
.hero__portrait {
  position: relative; width: min(380px, 80vw); aspect-ratio: 1 / 1;
  border-radius: 50%; overflow: hidden;
  box-shadow: var(--shadow); border: 6px solid rgba(255, 255, 255, .65);
}
.hero__portrait img { width: 100%; height: 100%; object-fit: cover; }
.hero__media::before {
  content: ""; position: absolute; inset: -14px; border-radius: 50%;
  border: 1px solid var(--sage-soft); z-index: -1;
}

.hero__eyebrow {
  font-size: clamp(1rem, 1.8vw, 1.35rem); letter-spacing: .18em; text-transform: uppercase;
  color: var(--green-700); margin: 0 0 1.2rem; font-weight: 600;
}
.hero__eyebrow sup { text-transform: none; }
.hero__title {
  font-family: var(--display);
  font-size: clamp(2rem, 4.4vw, 3.4rem); color: var(--green-deep);
  font-weight: 500; font-style: italic; letter-spacing: 0; line-height: 1.1;
  margin: 0 0 1.6rem;
}
.hero__lead { max-width: 36rem; font-size: clamp(1.05rem, 2vw, 1.22rem); color: var(--ink-soft); margin: 0 0 2.4rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .9rem; margin-bottom: 2.2rem; }
.hero__meta { font-size: .92rem; color: var(--sage); letter-spacing: .02em; }

/* Floating leaves */
.hero__leaves, .method__leaves { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.leaf path:first-child { fill: var(--sage); opacity: .9; }
.leaf path:last-child { fill: none; stroke: var(--cream); stroke-width: 2; stroke-linecap: round; }
.hero .leaf { position: absolute; opacity: .5; animation: float 14s ease-in-out infinite; }
.leaf--1 { width: 200px; top: 8%;  right: 6%;  animation-delay: 0s;   transform: rotate(18deg); }
.leaf--2 { width: 120px; top: 60%; right: 14%; animation-delay: -3s;  opacity: .35; transform: rotate(-22deg); }
.leaf--3 { width: 90px;  bottom: 12%; left: 8%; animation-delay: -6s; opacity: .4; transform: rotate(40deg); }
.leaf--4 { width: 150px; top: 22%; left: -2%;  animation-delay: -9s;  opacity: .25; transform: rotate(-8deg); }

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(var(--r, 0deg)); }
  50%      { transform: translateY(-22px) rotate(var(--r, 0deg)); }
}
.leaf--1 { --r: 18deg; } .leaf--2 { --r: -22deg; } .leaf--3 { --r: 40deg; } .leaf--4 { --r: -8deg; }

.hero__scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 2;
  width: 26px; height: 42px; border: 1.5px solid var(--sage); border-radius: 14px;
}
.hero__scroll span {
  position: absolute; left: 50%; top: 8px; width: 4px; height: 8px; margin-left: -2px;
  background: var(--green); border-radius: 4px; animation: scrolldot 1.8s var(--ease) infinite;
}
@keyframes scrolldot { 0% { opacity: 0; transform: translateY(0); } 40% { opacity: 1; } 80% { opacity: 0; transform: translateY(14px); } 100% { opacity: 0; } }

/* ---------- Sections ---------- */
.section { padding: clamp(4.5rem, 10vw, 8rem) 0; position: relative; }
.section--tint { background: var(--tint); }
.section--green { background: var(--green); color: #fff; }
.section--green .section__title, .section__title--light { color: #fff; }

.eyebrow {
  font-size: .78rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--green-700); font-weight: 600; margin: 0 0 .9rem;
  display: inline-flex; align-items: center; gap: .6rem;
}
.eyebrow::before { content: ""; width: 22px; height: 1px; background: var(--sage); }
.eyebrow--light { color: var(--sage-soft); }
.eyebrow--light::before { background: var(--sage-soft); }

.section__title { font-size: clamp(1.9rem, 4.2vw, 3rem); color: var(--green-deep); font-weight: 300; margin-bottom: 1.6rem; }

.prose p { color: var(--ink-soft); margin: 0 0 1.1rem; max-width: 40rem; }
.prose--center { max-width: 44rem; margin-inline: auto; text-align: center; }
.prose--center p { max-width: none; }
.prose__sign { font-family: var(--serif); font-style: italic; font-size: 1.2rem; color: var(--green-700); }

.minihead {
  font-family: var(--sans); font-size: .8rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--green-700); font-weight: 600; margin: 0 0 .9rem;
}
.list { list-style: none; margin: 0; padding: 0; }
.list li { position: relative; padding-left: 1.5rem; margin-bottom: .7rem; color: var(--ink-soft); font-size: .96rem; }
.list li::before {
  content: ""; position: absolute; left: 0; top: .5em; width: 10px; height: 10px;
  background: var(--sage); border-radius: 0 60% 0 60%; transform: rotate(45deg);
}

/* ---------- About ---------- */
.about__grid { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); gap: clamp(2rem, 6vw, 5rem); align-items: start; }
.about__media { position: sticky; top: 6rem; }
.portrait {
  position: relative; aspect-ratio: 4/5; border-radius: var(--radius); overflow: hidden;
  background: linear-gradient(160deg, var(--paper), var(--sage-soft));
  display: grid; place-items: center; box-shadow: var(--shadow);
}
.portrait img { width: 100%; height: 100%; object-fit: cover; }
.portrait__leaf { width: 46%; opacity: .5; }
.portrait__leaf path:first-child { fill: var(--green); }
.portrait__leaf path:last-child { fill: none; stroke: var(--paper); stroke-width: 2; }
.portrait__hint { position: absolute; bottom: 1rem; font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--green-700); opacity: .65; }

.about__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; margin-top: 2.6rem; padding-top: 2.4rem; border-top: 1px solid var(--line); }

/* ---------- Schwerpunkte ---------- */
.focus__grid {
  list-style: none; margin: 2.5rem 0 0; padding: 0;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: .85rem;
}
.focus__grid li {
  background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 1.1rem 1.2rem 1.1rem 2.7rem; position: relative; font-size: 1rem; color: var(--ink);
  transition: transform .3s var(--ease), box-shadow .3s, border-color .3s;
}
.focus__grid li::before {
  content: ""; position: absolute; left: 1.1rem; top: 1.5rem; width: 12px; height: 12px;
  background: var(--sage); border-radius: 0 60% 0 60%; transform: rotate(45deg); transition: background .3s;
}
.focus__grid li:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); border-color: var(--sage-soft); }
.focus__grid li:hover::before { background: var(--green); }
.focus__grid a { color: inherit; display: block; margin: -1.1rem -1.2rem -1.1rem -2.7rem; padding: 1.1rem 1.2rem 1.1rem 2.7rem; }

/* ---------- Angebot ---------- */
.offer__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.4rem; margin-top: 2.6rem; }
.card {
  background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2.2rem 1.9rem; transition: transform .35s var(--ease), box-shadow .35s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card__icon { width: 40px; height: 40px; margin-bottom: 1.1rem; }
.card__icon path:first-child { fill: var(--sage); }
.card__icon path:last-child { fill: none; stroke: var(--cream); stroke-width: 3; }
.card h3 { font-size: 1.4rem; color: var(--green-deep); margin-bottom: .7rem; }
.card p { color: var(--ink-soft); font-size: .96rem; margin: 0; }

.offer__meta { display: grid; grid-template-columns: minmax(260px, .9fr) minmax(0, 1.1fr); gap: 1.6rem; margin-top: 1.4rem; align-items: stretch; }
.pricecard {
  background: var(--green); color: #fff; border-radius: var(--radius); padding: 2.2rem 2rem;
  display: flex; flex-direction: column; gap: 1rem; box-shadow: var(--shadow);
}
.pricecard__label { font-size: .78rem; letter-spacing: .2em; text-transform: uppercase; color: var(--sage-soft); }
.pricecard__price { font-family: var(--serif); font-size: 2.8rem; font-weight: 300; line-height: 1; }
.pricecard__price small { font-size: 1rem; color: var(--sage-soft); }

.pricecard__refund {
  display: grid; gap: .1rem; padding-top: .9rem;
  border-top: 1px solid rgba(255, 255, 255, .16);
}
.pricecard__refund-head { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--sage-soft); }
.pricecard__refund-amount { font-family: var(--serif); font-weight: 400; font-size: 1.25rem; line-height: 1.2; color: #fff; }
.pricecard__refund-note { font-size: .82rem; color: rgba(255, 255, 255, .72); }
.pricecard p { color: rgba(255,255,255,.82); font-size: .92rem; margin: 0; }
.pricecard .btn { --bg: #fff; --fg: var(--green-deep); margin-top: auto; color: var(--green-deep); }
.pricecard .btn:hover { background: var(--cream); color: var(--green-deep); }

.offer__more { margin-top: 3rem; padding-top: 2.4rem; border-top: 1px solid var(--line); }
.offer__more .minihead { margin-bottom: 1.4rem; }
.offer__more-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.4rem; }
.offer__more-item { position: relative; padding-left: 1.6rem; }
.offer__more-item::before {
  content: ""; position: absolute; left: 0; top: .45rem; width: 12px; height: 12px;
  background: var(--sage); border-radius: 0 60% 0 60%; transform: rotate(45deg);
}
.offer__more-item h4 { font-family: var(--serif); font-weight: 400; font-size: 1.2rem; color: var(--green-deep); margin: 0 0 .35rem; }
.offer__more-item p { color: var(--ink-soft); font-size: .95rem; margin: 0; }

.quote {
  margin: 0; padding: 2.2rem 2rem 2.2rem 3rem; border-radius: var(--radius);
  background: var(--tint); border-left: 3px solid var(--sage);
  font-family: var(--serif); font-size: clamp(1.15rem, 2.2vw, 1.5rem); font-style: italic;
  color: var(--green-700); line-height: 1.45; display: flex; align-items: center;
}

/* ---------- Methode ---------- */
.method { background: var(--paper); text-align: center; overflow: hidden; }
.method__inner { position: relative; z-index: 2; }
.method__inner .eyebrow { justify-content: center; }
.method__lead { font-family: var(--serif); font-style: italic; font-size: clamp(1.2rem, 2.5vw, 1.6rem); color: var(--sage); margin: -.4rem 0 1.8rem; }
.method__leaves .leaf { position: absolute; opacity: .25; }
.method__leaves .leaf:nth-child(1) { width: 220px; top: -40px; left: -50px; transform: rotate(30deg); }
.method__leaves .leaf:nth-child(2) { width: 180px; bottom: -50px; right: -40px; transform: rotate(-130deg); }

/* ---------- FAQ ---------- */
.faq__list { max-width: 44rem; margin: 2rem auto 0; display: grid; gap: .65rem; }
.faq__item {
  background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius-sm);
  transition: box-shadow .3s var(--ease), border-color .3s;
}
.faq__item[open] { border-color: var(--sage-soft); box-shadow: var(--shadow-soft); }
.faq__question {
  font-family: var(--serif); font-size: 1.15rem; color: var(--green-deep);
  padding: 1.2rem 2.8rem 1.2rem 1.4rem; cursor: pointer; position: relative;
  list-style: none; font-weight: 400;
}
.faq__question::-webkit-details-marker { display: none; }
.faq__question::marker { display: none; content: ""; }
.faq__question::after {
  content: "+"; position: absolute; right: 1.2rem; top: 50%; transform: translateY(-50%);
  font-family: var(--sans); font-size: 1.4rem; color: var(--sage); font-weight: 300;
  transition: transform .3s var(--ease);
}
.faq__item[open] .faq__question::after { content: "−"; }
.faq__answer { padding: 0 1.4rem 1.4rem; }
.faq__answer p { color: var(--ink-soft); margin: 0; font-size: .96rem; }

/* ---------- Callback ---------- */
.callback {
  background:
    radial-gradient(110% 80% at 90% 10%, rgba(138,160,136,.35), transparent 60%),
    var(--green);
}
.callback__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.callback__text { color: rgba(255,255,255,.85); font-size: 1.08rem; max-width: 30rem; margin: 0 0 1.6rem; }
.callback__points { list-style: none; margin: 0 0 1.8rem; padding: 0; display: grid; gap: .6rem; }
.callback__points li { position: relative; padding-left: 1.8rem; color: rgba(255,255,255,.9); }
.callback__points li::before {
  content: ""; position: absolute; left: 0; top: .45em; width: 12px; height: 12px;
  background: var(--sage-soft); border-radius: 0 60% 0 60%; transform: rotate(45deg);
}
.callback__alt { color: rgba(255,255,255,.7); font-size: .95rem; }
.callback__alt a { color: #fff; font-weight: 500; border-bottom: 1px solid rgba(255,255,255,.4); }

.callback__form {
  background: var(--cream); color: var(--ink); border-radius: var(--radius);
  padding: clamp(1.6rem, 4vw, 2.6rem); box-shadow: var(--shadow); display: grid; gap: 1.1rem;
}
.field { display: grid; gap: .4rem; }
.field label { font-size: .85rem; font-weight: 500; color: var(--green-700); letter-spacing: .01em; }
.field__opt { color: var(--sage); font-weight: 400; }
.field input, .field select, .field textarea {
  font-family: var(--sans); font-size: 1rem; color: var(--ink);
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: .8rem .95rem; transition: border-color .25s, box-shadow .25s; width: 100%;
}
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--sage); box-shadow: 0 0 0 3px rgba(138,160,136,.25);
}
.field input.is-invalid, .field select.is-invalid { border-color: #b4533f; box-shadow: 0 0 0 3px rgba(180,83,63,.15); }
.field__error { color: #b4533f; font-size: .8rem; min-height: 0; }
.field__error:not(:empty) { min-height: 1rem; }

.checkbox { display: grid; grid-template-columns: auto 1fr; gap: .65rem; align-items: start; font-size: .85rem; color: var(--ink-soft); cursor: pointer; }
.checkbox input { width: 18px; height: 18px; margin-top: .15rem; accent-color: var(--green); }

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form__status { margin: .3rem 0 0; font-size: .92rem; text-align: center; min-height: 1.2rem; }
.form__status.is-success { color: var(--green-deep); font-weight: 500; }
.form__status.is-error { color: #b4533f; }

/* ---------- Kontakt ---------- */
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 4.5rem); align-items: center; }
.contact__lead { color: var(--ink-soft); margin-bottom: 2rem; max-width: 30rem; }
.contact__list { margin: 0 0 2rem; display: grid; gap: 1.3rem; }
.contact__list div { display: grid; gap: .2rem; }
.contact__list dt { font-size: .76rem; letter-spacing: .16em; text-transform: uppercase; color: var(--sage); font-weight: 600; }
.contact__list dd { margin: 0; font-size: 1.1rem; color: var(--ink); }
.contact__list a { border-bottom: 1px solid var(--line-green); transition: border-color .25s, color .25s; }
.contact__list a:hover { color: var(--green); border-color: var(--green); }
.contact__map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4/3; background: var(--tint); }
.contact__map #map { width: 100%; height: 100%; }
.map-marker { background: none !important; border: none !important; }

/* ---------- Blog teaser ---------- */
.blog__lead { color: var(--ink-soft); max-width: 38rem; margin: 0 0 2.6rem; }
.blog__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.6rem; }
.postcard { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform .35s var(--ease), box-shadow .35s; }
.postcard:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.postcard__link { display: block; height: 100%; }
.postcard__body { padding: 2rem; display: flex; flex-direction: column; gap: .6rem; min-width: 0; }
.postcard__body::before { content: ""; display: block; width: 30px; height: 2px; background: var(--sage); margin-bottom: .4rem; }
.postcard__meta { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--sage); margin: 0; }
.postcard__title { font-size: 1.5rem; line-height: 1.2; color: var(--green-deep); margin: 0; overflow-wrap: break-word; hyphens: auto; }
.postcard__excerpt {
  color: var(--ink-soft); font-size: .96rem; margin: 0;
  display: -webkit-box; -webkit-line-clamp: 4; line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden;
}
.postcard__more { margin-top: auto; padding-top: .6rem; color: var(--green); font-weight: 500; font-size: .95rem; }

/* ---------- Article page ---------- */
.article { padding-top: 8rem; }
.breadcrumb { font-size: .85rem; color: var(--sage); margin-bottom: 1.6rem; }
.breadcrumb a { color: var(--green-700); border-bottom: 1px solid var(--line-green); }
.breadcrumb a:hover { color: var(--green); }
.article__header { max-width: 46rem; margin: 0 auto 2.4rem; text-align: center; }
.article__meta { font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--sage); margin: 0 0 1rem; }
.article__title { font-family: var(--display); font-style: italic; font-weight: 500; font-size: clamp(2.2rem, 5.5vw, 3.6rem); color: var(--green-deep); line-height: 1.08; }
.article__hero { max-width: 64rem; margin: 0 auto 3rem; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 16/9; background: var(--tint); }
.article__hero img { width: 100%; height: 100%; object-fit: cover; }
.article__body { max-width: 44rem; margin: 0 auto; }
.article__body p { color: var(--ink-soft); font-size: 1.08rem; margin: 0 0 1.3rem; }
.article__body h2 { font-size: clamp(1.4rem, 3vw, 1.9rem); color: var(--green-deep); font-weight: 400; margin: 2.6rem 0 .9rem; }
.article__lead { font-size: 1.2rem !important; color: var(--ink) !important; }
.article__cta { max-width: 44rem; margin: 3rem auto 0; padding: 2.2rem; background: var(--tint); border-radius: var(--radius); text-align: center; }
.article__cta h3 { font-family: var(--display); font-style: italic; font-size: 1.7rem; color: var(--green-deep); margin: 0 0 1rem; }
.article__back { display: inline-flex; align-items: center; gap: .4rem; margin-top: 3rem; color: var(--green-700); font-weight: 500; }
.article__back:hover { color: var(--green); }

/* ---------- Legal pages ---------- */
.legal { padding-top: 8rem; }
.legal__container { max-width: 46rem; }
.legal__title { font-family: var(--display); font-style: italic; font-weight: 500; font-size: clamp(2.2rem, 5vw, 3.2rem); color: var(--green-deep); margin-bottom: 1rem; }
.legal__intro { color: var(--ink-soft); font-size: 1.08rem; margin: 0 0 2.4rem; }
.legal h2 { font-size: clamp(1.2rem, 2.6vw, 1.5rem); color: var(--green-deep); font-weight: 400; margin: 2.2rem 0 .6rem; }
.legal p { color: var(--ink-soft); margin: 0 0 1rem; }
.legal a { color: var(--green-700); border-bottom: 1px solid var(--line-green); }
.legal a:hover { color: var(--green); }
.legal ul { margin: 0 0 1.2rem; padding-left: 1.2rem; color: var(--ink-soft); }
.legal li { margin-bottom: .5rem; }
.legal__placeholder { display: inline-block; background: rgba(180, 83, 63, .1); color: #8a4030; padding: .1rem .45rem; border-radius: 6px; font-size: .92em; }
.legal__note { margin-top: 2.4rem; padding: 1.2rem 1.4rem; background: var(--tint); border-left: 3px solid var(--sage); border-radius: var(--radius-sm); font-size: .92rem; color: var(--ink-soft); }

/* ---------- Footer ---------- */
.footer { background: var(--green-deep); color: rgba(255,255,255,.78); padding: 3.5rem 0; }
.footer__inner { display: grid; gap: 1rem; text-align: center; place-items: center; }
.footer__brand { display: inline-flex; align-items: center; gap: .55rem; font-family: var(--serif); font-size: 1.2rem; color: #fff; }
.footer__brand .brand__leaf path:first-child { fill: var(--sage-soft); }
.footer__brand .brand__leaf path:last-child { stroke: var(--green-deep); }
.footer__meta { font-size: .88rem; margin: 0; max-width: 40rem; }
.footer__links { display: flex; gap: 1.5rem; flex-wrap: wrap; justify-content: center; }
.footer__links a { font-size: .9rem; transition: color .25s; }
.footer__links a:hover { color: #fff; }
.footer__copy { font-size: .82rem; color: rgba(255,255,255,.55); margin: .3rem 0 0; }
sup { font-size: .6em; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero .leaf, .hero__scroll span { animation: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .nav__links, .nav .btn--small { display: none; }
  .nav__toggle { display: flex; }
  .nav__mobile.is-open { display: flex; }
  .about__grid, .offer__meta, .callback__grid, .contact__grid { grid-template-columns: 1fr; }
  .hero__grid { grid-template-columns: 1fr; text-align: center; }
  .hero__lead { margin-inline: auto; }
  .hero__cta { justify-content: center; }
  .hero__eyebrow::before, .hero__eyebrow { }
  .hero__media { order: -1; margin-bottom: 1rem; }
  .hero__portrait { width: min(260px, 64vw); }
  .about__media { position: static; max-width: 360px; }
  .about__cols { grid-template-columns: 1fr; gap: 1.8rem; }
  .contact__map { aspect-ratio: 16/10; }
}
@media (max-width: 520px) {
  .about__cols { gap: 1.6rem; }
  .hero__cta .btn { flex: 1 1 100%; }
  .leaf--1, .leaf--4 { display: none; }
}
