/* =========================================================================
   The Garden — thegarden.ge
   Creative studio, Tbilisi. Vanilla CSS, mobile-first.
   ========================================================================= */

/* ---- Design tokens ---------------------------------------------------- */
:root {
  /* Palette (fixed brand system — do not substitute) */
  --paper:       #FAF8F1;
  --paper-2:     #ECEFE1;
  --ink:         #1B2A1D;
  --green-deep:  #1E4D30;
  --green:       #2E6B43;
  --sage:        #6E8350;
  --amber:       #C0703A;
  --wine:        #8C3A2E;

  /* Accessible text variants of sage/amber (WCAG 2.1 AA). The swatch tokens
     above are kept untouched for fills, dots, borders and decoration; these
     hue-matched variants are used ONLY for coloured text so it clears 4.5:1.
     FLAGGED for Adrian's sign-off — see AUDIT_FINDINGS.md.
       --sage-text     on paper 5.87:1 / paper-2 5.35:1
       --amber-text    on paper 5.10:1 / paper-2 4.64:1   (amber text on light)
       --amber-on-dark on ink 6.77:1 / green-deep 4.38:1  (amber text on dark) */
  --sage-text:     #56663e;
  --amber-text:    #9a5a2e;
  --amber-on-dark: #dca271;

  /* Type roles */
  --display: "Bricolage Grotesque", Georgia, serif;
  --body:    "Hanken Grotesk", system-ui, -apple-system, sans-serif;
  --accent:  "Fraunces", Georgia, serif;
  /* Signature element only — clean grotesque that stays quiet at scale */
  --signature-face: "Satoshi", "Hanken Grotesk", system-ui, sans-serif;

  /* Type scale (fluid) */
  --step--1: clamp(0.83rem, 0.79rem + 0.18vw, 0.93rem);
  --step-0:  clamp(1rem, 0.95rem + 0.25vw, 1.15rem);
  --step-1:  clamp(1.2rem, 1.1rem + 0.5vw, 1.5rem);
  --step-2:  clamp(1.5rem, 1.3rem + 1vw, 2.1rem);
  --step-3:  clamp(2rem, 1.6rem + 2vw, 3.2rem);
  --step-4:  clamp(2.6rem, 1.9rem + 3.4vw, 4.6rem);
  --signature: clamp(3rem, 1.7rem + 6vw, 7.5rem);

  /* Space */
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --measure: 64ch;
  --section-y: clamp(4rem, 9vw, 8.5rem);

  /* Detail */
  --line: rgba(27, 42, 29, 0.14);
  --radius: 4px;
  --ease: cubic-bezier(0.2, 0.6, 0.2, 1);
}

/* ---- Reset / base ----------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: var(--step-0);
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; height: auto; }

a { color: inherit; text-decoration: none; }
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
  border-radius: 2px;
}

h1, h2, h3 { font-family: var(--display); font-weight: 600; line-height: 1.04; letter-spacing: -0.02em; margin: 0; }

/* ---- Layout helpers --------------------------------------------------- */
.wrap {
  width: min(100% - (var(--gutter) * 2), 1240px);
  margin-inline: auto;
}

.eyebrow {
  font-family: var(--body);
  font-size: var(--step--1);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: var(--sage-text);
  margin: 0 0 1.25rem;
}

/* Hero eyebrow is a full statement, not a label — let it read as a sentence */
.eyebrow--statement {
  text-transform: none;
  letter-spacing: 0;
  font-size: var(--step-0);
  line-height: 1.4;
  color: var(--green);
  max-width: 34ch;
}

.section-head { max-width: var(--measure); margin-bottom: clamp(2rem, 5vw, 3.5rem); }
.section-head h2 { font-size: var(--step-3); }
.section-head p { color: rgba(27, 42, 29, 0.78); margin: 1rem 0 0; }

/* Visually hidden, still available to assistive tech */
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: var(--paper);
  padding: 0.75rem 1rem;
  z-index: 200;
  border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { left: 0; }

/* ---- Buttons ---------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  min-height: 48px;
  padding: 0.85rem 1.6rem;
  font-family: var(--body);
  font-weight: 600;
  font-size: var(--step-0);
  border-radius: 999px;
  border: 1.5px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
}
.btn:hover { background: var(--green-deep); border-color: var(--green-deep); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--paper); }
.btn .arrow { transition: transform 0.25s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* ---- Nav -------------------------------------------------------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 241, 0.82);
  backdrop-filter: saturate(1.4) blur(10px);
  -webkit-backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease);
}
.nav.is-scrolled { border-bottom-color: var(--line); }
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 68px;
}
.nav__brand {
  display: inline-flex;
  align-items: baseline;
  gap: 0.55rem;
  font-family: var(--display);
  font-weight: 600;
  font-size: var(--step-1);
  letter-spacing: -0.02em;
}
.nav__loc {
  font-family: var(--body);
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage-text);
}
.nav__links { display: flex; align-items: center; gap: clamp(1.2rem, 2.5vw, 2.2rem); list-style: none; margin: 0; padding: 0; }
.nav__links a {
  font-size: var(--step--1);
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 0.4rem 0;
  position: relative;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 1.5px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav__links a:hover::after { transform: scaleX(1); }

/* Presentational separator before the Wine (sub-site) link. The <li> carries
   aria-hidden so assistive tech skips it; the flex gap on .nav__links already
   spaces it like the other items, and the opacity makes it read as a divider
   rather than content. Matches the nav link colour and size. */
.nav__divider {
  font-size: var(--step--1);
  color: var(--ink);
  opacity: 0.35;
  user-select: none;
  pointer-events: none;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 48px; height: 48px;
  padding: 0;
  background: none;
  border: 0;
  cursor: pointer;
}
.nav__toggle span {
  display: block;
  height: 2px; width: 24px;
  background: var(--ink);
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed;
    inset: 68px 0 auto 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 0.5rem var(--gutter) 1.5rem;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
  }
  .nav__links.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .nav__links a { width: 100%; padding: 0.9rem 0; font-size: var(--step-1); border-bottom: 1px solid var(--line); }
  .nav__links a::after { display: none; }
  /* In the stacked mobile menu the pipe makes no sense — each link already has
     its own border-bottom — so hide the divider there. */
  .nav__divider { display: none; }
}

/* ---- Hero ------------------------------------------------------------- */
.hero { padding: clamp(2.5rem, 6vw, 5rem) 0 var(--section-y); }
.hero__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}
@media (min-width: 900px) {
  .hero__top { grid-template-columns: 1.3fr 0.85fr; }
}

/* The signature: three disciplines growing off one stem */
.signature { margin: 0; }
.signature__list {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}
/* the stem */
.signature__list::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 0.55em;
  bottom: 0.55em;
  width: 2px;
  background: linear-gradient(var(--sage), var(--green));
  border-radius: 2px;
}
.signature__item {
  position: relative;
  padding-left: 2.4rem;
  font-family: var(--signature-face);
  font-weight: 900;
  font-size: var(--signature);
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: var(--green-deep);
}
.signature__item + .signature__item { margin-top: 0.08em; }
/* the seed node */
.signature__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 16px; height: 16px;
  background: var(--amber);
  border-radius: 50%;
  box-shadow: 0 0 0 5px var(--paper);
}
.signature__item:nth-child(2)::before { background: var(--green); }
.signature__item:nth-child(3)::before { background: var(--wine); }
.signature__item b { font-weight: 700; }

/* Hero image placeholder — sits in relationship to the signature */
.hero__figure {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--green-deep);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}
.hero__figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 80% at 80% 10%, rgba(110,131,80,0.5), transparent 60%),
    repeating-linear-gradient(135deg, rgba(255,255,255,0.03) 0 2px, transparent 2px 11px);
}
.hero__figure span {
  position: relative;
  z-index: 1;
  font-family: var(--body);
  font-size: var(--step--1);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--paper-2);
  opacity: 0.85;
}

.hero__copy {
  margin-top: clamp(2.5rem, 6vw, 4rem);
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  align-items: end;
}
@media (min-width: 900px) {
  .hero__copy { grid-template-columns: 1.3fr 0.85fr; }
}
.hero__lede { font-size: var(--step-1); line-height: 1.45; max-width: 48ch; margin: 0; color: rgba(27,42,29,0.86); }
.hero__lede strong { color: var(--ink); font-weight: 600; }
.hero__cta-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(1rem, 2.5vw, 1.5rem);
}
.hero__invite { margin: 0; font-size: var(--step-0); line-height: 1.4; color: rgba(27,42,29,0.74); max-width: 30ch; }
.hero__cta { justify-self: start; }
@media (min-width: 900px) {
  .hero__cta-group { align-items: flex-end; text-align: right; }
}

/* ---- Story panel (dark) ---------------------------------------------- */
.story {
  background: var(--green-deep);
  color: var(--paper);
  padding: var(--section-y) 0;
}
.story__quote {
  font-family: var(--accent);
  font-style: italic;
  font-weight: 400;
  font-size: var(--step-3);
  line-height: 1.2;
  letter-spacing: -0.01em;
  max-width: 22ch;
  margin: 0 0 clamp(1.5rem, 4vw, 2.5rem);
  color: var(--paper);
}
.story__quote .amber { color: var(--amber-on-dark); }
.story__body { max-width: 56ch; color: rgba(250,248,241,0.82); font-size: var(--step-1); margin: 0; }
.story__body p { margin: 0 0 1.1rem; }
.story__body p:last-child { margin-bottom: 0; }

/* ---- Three Disciplines ------------------------------------------------ */
.disciplines { padding: var(--section-y) 0; }
.disciplines__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3rem);
}
@media (min-width: 760px) { .disciplines__grid { grid-template-columns: repeat(3, 1fr); } }
.discipline { border-top: 2px solid var(--ink); padding-top: 1.25rem; }
.discipline__mark {
  display: inline-block;
  width: 12px; height: 12px;
  border-radius: 50%;
  margin-bottom: 1rem;
}
.discipline:nth-child(1) .discipline__mark { background: var(--amber); }
.discipline:nth-child(2) .discipline__mark { background: var(--green); }
.discipline:nth-child(3) .discipline__mark { background: var(--wine); }
.discipline h3 { font-size: var(--step-2); margin-bottom: 0.35rem; }
.discipline__role { color: var(--sage-text); font-weight: 600; font-size: var(--step--1); letter-spacing: 0.04em; margin: 0 0 1rem; }
.discipline p { margin: 0; color: rgba(27,42,29,0.8); }

/* ---- How We Work ------------------------------------------------------ */
.how { padding: 0 0 var(--section-y); }
.how__panel {
  background: var(--paper-2);
  border-radius: var(--radius);
  padding: clamp(2rem, 5vw, 4rem);
  display: grid;
  gap: clamp(1.5rem, 4vw, 2.5rem);
}
@media (min-width: 820px) { .how__panel { grid-template-columns: 0.9fr 1.1fr; align-items: center; } }
.how__panel h2 { font-size: var(--step-3); }
.how__panel p { margin: 1rem 0 0; font-size: var(--step-1); color: rgba(27,42,29,0.82); max-width: 48ch; }
.how__panel .eyebrow { color: var(--green); }

/* ---- What We Make ----------------------------------------------------- */
.make { padding: var(--section-y) 0; background: var(--paper-2); }
.make__grid { display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
@media (min-width: 640px) { .make__grid { grid-template-columns: repeat(2, 1fr); } }
.make__cell { background: var(--paper); padding: clamp(1.75rem, 4vw, 2.75rem); }
.make__cell h3 { font-size: var(--step-2); margin-bottom: 0.75rem; }
.make__cell p { margin: 0; color: rgba(27,42,29,0.8); }
.make__cell ul { margin: 1.1rem 0 0; padding: 0; list-style: none; }
.make__cell li { font-size: var(--step--1); color: var(--sage-text); font-weight: 600; letter-spacing: 0.04em; padding: 0.25rem 0; border-top: 1px solid var(--line); }

/* ---- Selected Work ---------------------------------------------------- */
.work { padding: var(--section-y) 0; }
.work__grid { display: grid; grid-template-columns: 1fr; gap: clamp(1.5rem, 3vw, 2rem); }
@media (min-width: 620px) { .work__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .work__grid { grid-template-columns: repeat(3, 1fr); } }

.work-card { display: flex; flex-direction: column; }
.work-card__thumb {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease);
}
.work-card:hover .work-card__thumb { transform: translateY(-4px); }
.work-card__thumb span {
  position: absolute;
  inset: auto auto 1rem 1rem;
  font-family: var(--display);
  font-weight: 700;
  font-size: var(--step-2);
  color: rgba(250,248,241,0.92);
  letter-spacing: -0.02em;
  line-height: 1;
}
/* solid colour placeholders drawn from palette — never gradients */
.work-card:nth-child(1) .work-card__thumb { background: var(--green-deep); }
.work-card:nth-child(2) .work-card__thumb { background: var(--amber); }
.work-card:nth-child(3) .work-card__thumb { background: var(--green); }
.work-card:nth-child(4) .work-card__thumb { background: var(--sage); }
.work-card:nth-child(5) .work-card__thumb { background: var(--wine); }
.work-card:nth-child(6) .work-card__thumb { background: var(--ink); }

.work-card__meta { display: flex; flex-direction: column; align-items: flex-start; gap: 0.6rem; margin-top: 1rem; }
.work-card__meta h3 { font-size: var(--step-1); }
.work-card__tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.work-card__tag {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  white-space: nowrap;
  border: 1.5px solid currentColor;
}
.work-card__tag[data-d="Create"] { color: var(--amber-text); }
.work-card__tag[data-d="Conduct"] { color: var(--green); }
.work-card__tag[data-d="Curate"] { color: var(--wine); }
.work-card__desc { margin: 0.5rem 0 0; color: rgba(27,42,29,0.78); font-size: var(--step-0); }

/* ---- Journal ---------------------------------------------------------- */
.journal { padding: var(--section-y) 0; background: var(--paper-2); }
.journal__head { display: flex; align-items: end; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; margin-bottom: clamp(2rem, 5vw, 3rem); }
.journal__head h2 { font-size: var(--step-3); }
.journal__head > div { max-width: 60ch; }
.journal__intro { margin: 1rem 0 0; color: rgba(27,42,29,0.78); }
.journal__list { display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--line); border-top: 1px solid var(--line); }
.journal__post {
  background: var(--paper-2);
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.4rem;
  padding: clamp(1.5rem, 4vw, 2.25rem) 0;
  transition: padding-left 0.3s var(--ease), background 0.3s var(--ease);
}
@media (min-width: 760px) { .journal__post { grid-template-columns: 0.3fr 1.7fr; gap: 2rem; align-items: baseline; } }
.journal__post:hover { background: var(--paper); padding-left: 1rem; }
.journal__date { font-size: var(--step--1); color: var(--sage-text); font-weight: 600; letter-spacing: 0.06em; }
.journal__post h3 { font-size: var(--step-2); margin-bottom: 0.5rem; }
.journal__excerpt { margin: 0; color: rgba(27,42,29,0.78); max-width: 60ch; }
.journal__cat { color: var(--amber-text); font-weight: 600; font-size: var(--step--1); }

/* ---- Studio (dark) ---------------------------------------------------- */
.studio { background: var(--ink); color: var(--paper); padding: var(--section-y) 0; }
.studio__grid { display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 5vw, 3.5rem); }
@media (min-width: 860px) { .studio__grid { grid-template-columns: 0.8fr 1.2fr; align-items: start; } }
.studio .eyebrow { color: var(--amber-on-dark); }
.studio__portrait {
  aspect-ratio: 1 / 1;
  background: var(--green-deep);
  border-radius: var(--radius);
  max-width: 320px;
  position: relative;
  overflow: hidden;
}
.studio__portrait::after {
  content: "Adrian";
  position: absolute;
  inset: auto 0 1rem 1rem;
  font-family: var(--display);
  font-weight: 700;
  font-size: var(--step-2);
  color: rgba(250,248,241,0.85);
}
.studio__bio h2 { font-size: var(--step-3); margin-bottom: 1.25rem; }
.studio__bio p { color: rgba(250,248,241,0.82); font-size: var(--step-1); margin: 0 0 1.1rem; max-width: 58ch; }
.studio__bio p:last-child { margin-bottom: 0; }

/* ---- Contact ---------------------------------------------------------- */
.contact { padding: var(--section-y) 0; text-align: center; }
.contact .eyebrow { color: var(--green); }
.contact p { max-width: 46ch; margin: 0 auto clamp(2rem, 5vw, 3rem); font-size: var(--step-1); color: rgba(27,42,29,0.82); }
.contact__email {
  display: inline-block;
  font-family: var(--display);
  font-weight: 700;
  font-size: var(--step-4);
  letter-spacing: -0.03em;
  color: var(--green-deep);
  line-height: 1;
  word-break: break-word;
  position: relative;
}
.contact__email::after {
  content: "";
  position: absolute;
  left: 0; bottom: -0.12em;
  width: 100%; height: 3px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.contact__email:hover::after { transform: scaleX(1); }

/* ---- Footer ----------------------------------------------------------- */
.footer { border-top: 1px solid var(--line); padding: clamp(2.5rem, 5vw, 3.5rem) 0; }
.footer__inner { display: flex; flex-wrap: wrap; gap: 1rem 2rem; align-items: center; justify-content: space-between; }
.footer__brand { font-family: var(--display); font-weight: 600; font-size: var(--step-1); }
.footer__copy { color: var(--sage-text); }
.footer__links { display: flex; gap: 1.5rem; list-style: none; margin: 0; padding: 0; font-size: var(--step--1); }
.footer__links a { color: var(--sage-text); font-weight: 600; display: inline-flex; align-items: center; min-height: 44px; }
.footer__links a:hover { color: var(--ink); }

/* ---- Journal post (article) ------------------------------------------ */
.post { padding: clamp(2.5rem, 6vw, 5rem) 0 var(--section-y); }
.post__inner { max-width: 70ch; }

.post__head { margin-bottom: clamp(1.75rem, 4vw, 2.75rem); }
.post__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 0 0 1.1rem;
}
.post__meta time {
  font-size: var(--step--1);
  color: var(--sage-text);
  font-weight: 600;
  letter-spacing: 0.06em;
}
.post__head h1 { font-size: var(--step-4); letter-spacing: -0.03em; }

/* Body prose — Hanken for legibility, Fraunces italic for pull quotes */
.post__body {
  font-size: var(--step-1);
  line-height: 1.65;
  color: rgba(27, 42, 29, 0.86);
}
.post__body > * + * { margin-top: 1.2em; }
.post__body p { margin: 0; }
.post__body h2 { font-size: var(--step-2); margin-top: 2em; }
.post__body h3 { font-size: var(--step-1); margin-top: 1.6em; }
.post__body a {
  color: var(--green);
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 2px;
}
.post__body a:hover { color: var(--green-deep); }
.post__body ul, .post__body ol { margin: 0; padding-left: 1.4rem; }
.post__body li + li { margin-top: 0.4em; }
.post__body blockquote {
  margin: 1.6em 0;
  padding-left: 1.25rem;
  border-left: 2px solid var(--amber);
  font-family: var(--accent);
  font-style: italic;
  font-size: var(--step-2);
  line-height: 1.3;
  color: var(--green-deep);
}
.post__body img { border-radius: var(--radius); margin-top: 1.6em; }

.post__back { margin-top: clamp(2.5rem, 6vw, 4rem); }
.post__back a {
  font-weight: 600;
  font-size: var(--step--1);
  letter-spacing: 0.02em;
  color: var(--sage-text);
  border-bottom: 1.5px solid transparent;
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.post__back a:hover { color: var(--ink); border-bottom-color: var(--amber); }

/* ---- Reveal on scroll (progressive, motion-safe) ---------------------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }
