/* ─────────────────────────────────────────────────────────────────────
   andreas remenyi · psychologische beratung
   vertrauensvolle praxis · analoge ruhe (v3)
   ───────────────────────────────────────────────────────────────────── */

@import url("https://fonts.googleapis.com/css2?family=Source+Serif+4:opsz,wght@8..60,300..600&family=IBM+Plex+Sans:wght@300;400;500;600&display=swap");

:root {
  /* palette — paper + stone + muted olive · ruhig, klassisch */
  --paper: #F4EFE6;
  --paper-soft: #ECE5D7;
  --stone: #D9CCB6;
  --stone-deep: #B8A88A;

  --ink: #2A2520;
  --ink-mid: #463E36;
  --ink-soft: #6B6157;
  --ink-mute: #978C7E;

  /* removed all green/olive — brown family only */
  --olive: #6B5A45;          /* deep warm umber (was forest green) */
  --olive-soft: #8F7A5E;     /* light umber */
  --ochre: #A18256;
  --umber: #6B5A45;
  --sienna: #9C5C3D;          /* optional warm red-brown accent */

  --line: rgba(42, 37, 32, 0.16);
  --line-soft: rgba(42, 37, 32, 0.08);

  /* typography — classical proportions, large body for accessibility */
  --serif: "Source Serif 4", "Iowan Old Style", Georgia, serif;
  --sans: "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* type scale — modest 1.25 ratio, generous body */
  --t-xs: 0.8125rem;     /* 13px — eyebrow, meta */
  --t-sm: 0.9375rem;     /* 15px — secondary body */
  --t-base: 1.125rem;    /* 18px — body, accessible */
  --t-md: 1.3125rem;     /* 21px — lede */
  --t-lg: 1.625rem;      /* 26px — subhead */
  --t-xl: 2rem;          /* 32px — section title */
  --t-2xl: 2.625rem;     /* 42px — page title small */
  --t-3xl: clamp(2.5rem, 4.5vw, 3.75rem);  /* hero secondary */
  --t-4xl: clamp(3rem, 6vw, 5rem);          /* hero primary */

  /* spacing — 4px grid */
  --s-1: 0.25rem;
  --s-2: 0.5rem;
  --s-3: 0.75rem;
  --s-4: 1rem;
  --s-6: 1.5rem;
  --s-8: 2rem;
  --s-12: 3rem;
  --s-16: 4rem;
  --s-20: 5rem;
  --s-24: 6rem;
  --s-32: 8rem;

  /* layout */
  --container: 1200px;
  --container-narrow: 760px;
  --container-text: 640px;
  --pad-x: clamp(1.25rem, 3.5vw, 2.5rem);

  /* motion */
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
img, svg { display: block; max-width: 100%; height: auto; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }

body {
  font-family: var(--sans);
  font-size: var(--t-base);
  line-height: 1.65;
  color: var(--ink-mid);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "kern";
  position: relative;
  overflow-x: hidden;
}

/* ─── PERSISTENT IRIS BACKGROUND ───
   Fixed across all pages. Rotation wird per Scroll-Position aus JS gesteuert
   (--iris-rotation), kein CSS-transition — die Schwere kommt aus der
   kleinen Rotation pro großem Scroll-Weg, nicht aus Easing. */
body::before {
  content: "";
  position: fixed;
  top: 50%;
  left: -22%;
  width: min(1280px, 130vh);
  aspect-ratio: 1;
  background-image: url("logo-iris-ink.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
  z-index: 0;
  opacity: 0.22;
  /* transform-origin am visuellen Iris-Mittelpunkt
     (analytisch ermittelt: centroid bei 47.7%/51% des PNGs) */
  transform: translateY(-50%) scale(var(--iris-scale, 1));
  transform-origin: 47.7% 51%;
  /* langes ease — wirkt schwer und lebendig (Paul: schon sehr gelungen) */
  transition: transform 1800ms cubic-bezier(.4, 0, .2, 1);
  will-change: transform;
}

/* Scroll-triggered breathing — atmet auf während scroll, ruhig im Stillstand */
body.is-breathing::before {
  --iris-scale: 1.035;
}

/* ─── LOADING SCREEN ───
   Erste-Anzeige zentriert Iris in der Mitte, drehend, mit Sun-Ray-Flash.
   Fadet nach kurzer Zeit aus, dann gleitet die Iris an ihre fixierte
   Position links. Nach erstem Laden in der Session deaktiviert. */
.loader {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--paper);
  display: grid;
  place-items: center;
  pointer-events: none;
  opacity: 1;
  transition: opacity 600ms cubic-bezier(.4,0,.2,1) 200ms;
}
.loader.is-hidden { opacity: 0; }
.loader.is-removed { display: none; }

.loader__mark {
  width: min(280px, 40vmin);
  aspect-ratio: 1;
  background-image: url("logo-iris-ink.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  animation: loader-iris 1600ms cubic-bezier(.22,.61,.36,1) forwards;
  position: relative;
}
.loader__mark::before {
  /* sun-ray flash */
  content: "";
  position: absolute;
  inset: -25%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244,239,230,0) 30%, rgba(161, 130, 86, 0.18) 50%, rgba(244,239,230,0) 75%);
  animation: loader-flash 1600ms ease-out forwards;
}

@keyframes loader-iris {
  0%   { opacity: 0; transform: scale(0.88); }
  40%  { opacity: 1; transform: scale(1.04); }
  72%  { opacity: 1; transform: scale(0.98); }
  100% { opacity: 1; transform: scale(1); }
}
@keyframes loader-flash {
  0%   { opacity: 0; transform: scale(0.85); }
  40%  { opacity: 1; transform: scale(1.05); }
  100% { opacity: 0; transform: scale(1.18); }
}

@media (prefers-reduced-motion: reduce) {
  .loader__mark { animation: none; opacity: 1; transform: none; }
  .loader__mark::before { animation: none; opacity: 0; }
  .loader { transition: opacity 200ms linear; }
}
/* push real content above the bg */
.site-header, main, .site-footer, .slogans, .hub-interlude { position: relative; z-index: 1; }

@media (max-width: 960px) {
  body::before {
    left: -55%;
    width: min(800px, 100vw);
    opacity: 0.10;
  }
}
@media (prefers-reduced-motion: reduce) {
  body::before { transition: none; }
}

::selection { background: var(--olive); color: var(--paper); }

/* skip link */
.skip {
  position: absolute;
  left: -9999px;
}
.skip:focus {
  left: var(--s-4); top: var(--s-4);
  background: var(--ink);
  color: var(--paper);
  padding: var(--s-3) var(--s-6);
  z-index: 200;
}

/* ────────────── layout ────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}
.container--narrow { max-width: var(--container-narrow); }
.container--text { max-width: var(--container-text); }

/* ────────────── header ────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--paper);
  border-bottom: 1px solid var(--line-soft);
  padding-block: var(--s-4);
  transition: background-color 280ms var(--ease), border-color 280ms var(--ease);
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-8);
}

.wordmark {
  font-family: var(--serif);
  font-size: var(--t-md);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.005em;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: opacity 220ms var(--ease);
}
.wordmark:hover { opacity: 0.78; }
.wordmark:hover .wordmark__mark { transform: rotate(8deg); }
.wordmark__mark {
  width: 48px;
  height: 48px;
  display: inline-block;
  flex-shrink: 0;
  transition: transform 380ms var(--ease);
}
.wordmark { font-size: var(--t-lg); gap: 0.625rem; }
.wordmark__given {
  color: var(--ink-soft);
  font-weight: 400;
  font-style: italic;
}

.site-footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--serif);
  font-size: var(--t-lg);
  color: var(--paper);
  text-decoration: none;
  transition: opacity 220ms var(--ease);
}
.site-footer__brand:hover { opacity: 0.78; }
.site-footer__brand:hover .site-footer__brand-mark { transform: scale(1.08); }
.site-footer__brand-mark {
  width: 48px;
  height: 48px;
  display: inline-block;
  flex-shrink: 0;
  transition: transform 380ms cubic-bezier(.22,.61,.36,1);
}

.nav {
  display: flex;
  align-items: center;
  gap: var(--s-8);
}
.nav__link {
  font-family: var(--sans);
  font-size: 0.9375rem;
  font-weight: 400;
  color: var(--ink-mid);
  padding-block: var(--s-2);
  border-bottom: 1px solid transparent;
  transition: color 180ms var(--ease), border-color 180ms var(--ease);
}
.nav__link:hover { color: var(--ink); }
.nav__link[aria-current="page"] {
  color: var(--ink);
  border-bottom-color: var(--ochre);
}

.nav__phone {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.nav__phone:hover { color: var(--olive); }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
}
.nav-toggle__bar {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--ink);
  position: relative;
}
.nav-toggle__bar::before,
.nav-toggle__bar::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 1.5px;
  background: var(--ink);
}
.nav-toggle__bar::before { top: -7px; }
.nav-toggle__bar::after  { top:  7px; }

/* ────────────── typography ────────────── */
.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--olive);
}

.title {
  font-family: var(--serif);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.08;
  letter-spacing: -0.015em;
}
.title--xl { font-size: var(--t-4xl); font-weight: 400; }
.title--lg { font-size: var(--t-3xl); }
.title--md { font-size: var(--t-2xl); }
.title--sm { font-size: var(--t-xl); }
.title--xs { font-size: var(--t-lg); }

.title em {
  font-style: italic;
  font-weight: 400;
  color: var(--olive);
}

.lede {
  font-family: var(--sans);
  font-size: var(--t-md);
  line-height: 1.55;
  color: var(--ink-mid);
  font-weight: 300;
  max-width: 36em;
}

.body {
  color: var(--ink-mid);
  font-size: var(--t-base);
  line-height: 1.7;
  max-width: 36em;
}
.body p + p { margin-top: var(--s-4); }
.body--wide { max-width: 44em; }

h1, h2, h3, h4 { color: var(--ink); font-weight: 400; }

/* Quiet-quote — eine einheitliche zurückhaltende italic-Treatment-Klasse
   für stille Aussagen innerhalb von body-Text. Statt Größe oder Gewicht
   zu boosten, signalisiert sie nur über italic + dunkleren Farbton. */
.quiet-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05em;
  line-height: 1.5;
  color: var(--ink);
  margin-top: var(--s-6);
  max-width: 56ch;
}

/* ────────────── buttons ────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-3);
  padding: var(--s-3) var(--s-8);
  font-family: var(--sans);
  font-size: 0.975rem;
  font-weight: 500;
  letter-spacing: 0.005em;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  min-width: 180px;
  min-height: 48px;
  transition: background 180ms var(--ease), color 180ms var(--ease), border-color 180ms var(--ease);
}
.btn:hover {
  background: var(--olive);
  border-color: var(--olive);
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--ghost:hover {
  background: var(--ink);
  color: var(--paper);
}
.btn__arrow {
  width: 14px;
  height: 1.5px;
  background: currentColor;
  position: relative;
  display: inline-block;
}
.btn__arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: -3.5px;
  width: 8px;
  height: 8px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: rotate(45deg);
}

/* ────────────── sections ────────────── */
.section {
  padding-block: var(--s-32);
}
.section--tight { padding-block: var(--s-20); }
.section--soft { background: var(--paper-soft); }
.section--stone { background: var(--stone); }
.section--ink {
  background: var(--ink);
  color: var(--paper-soft);
}
.section--ink h1, .section--ink h2, .section--ink h3, .section--ink h4 { color: var(--paper); }
.section--ink .title, .section--ink .title em { color: var(--paper); }
.section--ink .title em { color: var(--stone); font-style: italic; }
.section--ink .eyebrow { color: var(--ochre); }
.section--ink .body { color: rgba(244, 239, 230, 0.82); }
.section--ink .lede { color: rgba(244, 239, 230, 0.78); }

.section__head {
  margin-bottom: var(--s-12);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-4);
}
.section__head .title { max-width: 20ch; }

/* ────────────── hero ────────────── */
.hero {
  padding-top: var(--s-16);
  padding-bottom: var(--s-20);
  position: relative;
}
.hero > .container { position: relative; z-index: 1; }
.hero__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--s-16);
  align-items: end;
}
.hero__lede { display: flex; flex-direction: column; gap: var(--s-6); }
.hero__title { margin-top: var(--s-2); }
.hero__sub { margin-top: var(--s-2); }
.hero__cta {
  margin-top: var(--s-6);
  display: flex;
  gap: var(--s-4);
  flex-wrap: wrap;
}

.hero__meta {
  display: flex;
  flex-direction: column;
  gap: var(--s-6);
  padding-top: var(--s-12);
  padding-left: var(--s-8);
  border-left: 1px solid var(--line);
  font-size: var(--t-sm);
}
.hero__meta-block {
  display: flex;
  flex-direction: column;
  gap: var(--s-1);
}
.hero__meta-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink-mute);
  margin-bottom: var(--s-1);
}
.hero__meta-value {
  font-family: var(--serif);
  font-size: var(--t-md);
  color: var(--ink);
  font-weight: 400;
  line-height: 1.3;
}
.hero__meta-value--phone {
  font-weight: 500;
}
.hero__meta-note {
  font-size: var(--t-sm);
  color: var(--ink-soft);
  font-style: italic;
}

/* ────────────── media (echte Fotos) ────────────── */
.media {
  position: relative;
  overflow: hidden;
  background: var(--stone);
}
.media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.media--portrait { aspect-ratio: 4 / 5; }
.media--square   { aspect-ratio: 1 / 1; }
.media--wide     { aspect-ratio: 16 / 10; }
.media--tall     { aspect-ratio: 3 / 4; }
.media--hero     { aspect-ratio: 16 / 11; }

.media__caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: var(--s-3) var(--s-4);
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--paper);
  background: linear-gradient(180deg, transparent 0%, rgba(42, 37, 32, 0.78) 100%);
  display: flex;
  justify-content: flex-end;
}

/* placeholder fallback (kept for sections that still need it) */
.placeholder {
  position: relative;
  background: var(--stone);
  overflow: hidden;
}
.placeholder__hint {
  position: absolute;
  inset: auto 0 0 0;
  padding: var(--s-3) var(--s-4);
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--ink-mid);
  background: rgba(244, 239, 230, 0.86);
  border-top: 1px solid var(--line);
}
.placeholder--portrait { aspect-ratio: 4 / 5; }
.placeholder--square   { aspect-ratio: 1 / 1; }
.placeholder--wide     { aspect-ratio: 16 / 10; }

/* ────────────── slogan strip — ink-dark mit Atemraum (early dark introduction) ────────────── */
.slogans {
  background: var(--ink);
  color: var(--paper-soft);
}
.slogans__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-12) var(--s-20);
  padding-block: var(--s-24);
  padding-inline: var(--pad-x);
  max-width: 1080px;
  margin-inline: auto;
}
.slogan {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  padding-block: var(--s-2);
}
.slogan__label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--ochre);
  font-weight: 500;
}
.slogan__text {
  font-family: var(--serif);
  font-size: var(--t-xl);
  color: var(--paper);
  line-height: 1.2;
  letter-spacing: -0.015em;
  font-weight: 400;
}
.slogan__text em {
  font-style: italic;
  color: var(--stone);
  font-weight: 400;
}

@media (max-width: 720px) {
  .slogans__inner {
    grid-template-columns: 1fr;
    gap: var(--s-10);
    padding-block: var(--s-16);
  }
}

/* ────────────── full-bleed photo section (no gaps) ────────────── */
.bleed {
  width: 100%;
  margin: 0;
  display: block;
}
.bleed__img {
  width: 100%;
  height: clamp(360px, 50vh, 560px);
  object-fit: cover;
  display: block;
}

/* ────────────── hairline list (replaces card grid) ────────────── */
.list {
  border-top: 1px solid var(--line);
}
.list__item {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: var(--s-8);
  padding-block: var(--s-8);
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.list__num,
.list__label {
  font-family: var(--serif);
  font-size: var(--t-md);
  color: var(--olive);
  font-style: italic;
  font-weight: 400;
  line-height: 1.2;
}
.list__title {
  font-family: var(--serif);
  font-size: var(--t-lg);
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: var(--s-3);
  font-weight: 400;
}
.list__body {
  color: var(--ink-mid);
  max-width: 56ch;
  line-height: 1.65;
}

/* ────────────── topic chips (themen) — quiet list ────────────── */
.themen {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3) var(--s-6);
  max-width: 56em;
  padding-block: var(--s-4);
}
.themen__chip {
  font-family: var(--serif);
  font-size: var(--t-lg);
  color: var(--ink);
  letter-spacing: -0.01em;
  font-weight: 400;
}
.themen__sep {
  color: var(--ochre);
  font-family: var(--serif);
  font-size: var(--t-lg);
  align-self: center;
}

/* ────────────── topic clusters (ausgestaltete Themen-Karten) ────────────── */
.themen-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-10) var(--s-12);
  padding-top: var(--s-4);
  border-top: 1px solid var(--line);
}
.themen-cluster {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  padding-block: var(--s-3);
}
.themen-cluster__title {
  font-family: var(--serif);
  font-size: var(--t-lg);
  color: var(--ink);
  letter-spacing: -0.015em;
  font-weight: 400;
  line-height: 1.15;
}
.themen-cluster__body {
  color: var(--ink-soft);
  font-size: 0.975rem;
  line-height: 1.65;
  max-width: 38em;
}

@media (max-width: 720px) {
  .themen-grid { grid-template-columns: 1fr; gap: var(--s-8); }
}

/* ────────────── two-col patterns ────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-16);
  align-items: start;
}
.split--media-left .split__media { order: -1; }
.split--text-narrow .split__text { max-width: 36em; }

/* ────────────── locations ────────────── */
.location {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: var(--s-16);
  padding-block: var(--s-16);
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.location:last-of-type { border-bottom: 0; }
.location--reverse .location__media { order: 2; }
.location__detail { display: flex; flex-direction: column; gap: var(--s-3); }
.location__name {
  font-family: var(--serif);
  font-size: var(--t-md);
  color: var(--olive);
  font-style: italic;
  margin-bottom: var(--s-2);
}
.location__addr {
  font-family: var(--serif);
  font-size: var(--t-lg);
  color: var(--ink);
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.01em;
}
.location__meta {
  margin-top: var(--s-4);
  font-size: var(--t-sm);
  color: var(--ink-soft);
  line-height: 1.65;
}
.location__cta {
  margin-top: var(--s-6);
  align-self: flex-start;
}

/* ────────────── contact ────────────── */
.contact-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-16);
  align-items: start;
}
.contact-channels { display: flex; flex-direction: column; gap: 0; }
.contact-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: var(--s-6);
  padding-block: var(--s-6);
  border-top: 1px solid var(--line);
  align-items: baseline;
}
.contact-row:last-of-type { border-bottom: 1px solid var(--line); }
.contact-row__label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink-mute);
}
.contact-row__value {
  font-family: var(--serif);
  font-size: var(--t-lg);
  color: var(--ink);
  letter-spacing: -0.01em;
}
.contact-row__value a:hover { color: var(--olive); }
.contact-row__hint {
  display: block;
  font-family: var(--sans);
  font-size: var(--t-sm);
  color: var(--ink-soft);
  margin-top: var(--s-1);
  font-style: italic;
}

/* form */
.form { display: flex; flex-direction: column; gap: var(--s-6); }
.form-field { display: flex; flex-direction: column; gap: var(--s-2); }
.form-field label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink-mute);
}
.form-field input,
.form-field textarea {
  font-family: var(--sans);
  font-size: var(--t-base);
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding-block: var(--s-3);
  transition: border-color 180ms var(--ease);
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--olive);
}
.form-field textarea { min-height: 140px; resize: vertical; line-height: 1.6; }
.form-note {
  font-size: var(--t-sm);
  color: var(--ink-soft);
  line-height: 1.6;
  font-style: italic;
}

/* ────────────── pull quote ────────────── */
.pull {
  padding-block: var(--s-24);
}
.pull__quote {
  font-family: var(--serif);
  font-size: var(--t-2xl);
  font-weight: 400;
  font-style: italic;
  line-height: 1.25;
  color: var(--ink);
  max-width: 22ch;
  letter-spacing: -0.015em;
}
.pull__attr {
  margin-top: var(--s-6);
  font-size: var(--t-sm);
  letter-spacing: 0.04em;
  color: var(--ink-soft);
}

/* ────────────── testimonials grid (3 simple quotes) ────────────── */
.feedback {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-12);
  padding-top: var(--s-8);
  border-top: 1px solid var(--line);
}
.feedback__item {
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
}
.feedback__quote {
  font-family: var(--serif);
  font-size: var(--t-lg);
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.35;
  letter-spacing: -0.008em;
}
.feedback__attr {
  font-family: var(--sans);
  font-size: var(--t-sm);
  color: var(--ink-mute);
  letter-spacing: 0.02em;
}

/* ────────────── footer ────────────── */
.site-footer {
  background: var(--ink);
  color: var(--paper-soft);
  padding-block: var(--s-16);
}
/* if previous section was already ink, merge edges seamlessly */
.section--ink + .site-footer {
  padding-top: var(--s-8);
}
.site-footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--s-12);
  margin-bottom: var(--s-16);
}
.site-footer__brand {
  font-family: var(--serif);
  font-size: var(--t-lg);
  color: var(--paper);
  font-weight: 400;
}
.site-footer__brand-tag {
  font-family: var(--sans);
  font-size: var(--t-sm);
  margin-top: var(--s-3);
  color: rgba(244, 239, 230, 0.65);
  max-width: 28em;
  line-height: 1.65;
}
.site-footer h4 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ochre);
  margin-bottom: var(--s-4);
  font-weight: 500;
}
.site-footer ul { list-style: none; display: flex; flex-direction: column; gap: var(--s-2); }
.site-footer a {
  color: var(--paper-soft);
  font-size: 0.95rem;
  transition: color 180ms var(--ease);
  font-family: var(--sans);
}
.site-footer a:hover { color: var(--ochre); }
.site-footer__legal {
  padding-top: var(--s-8);
  border-top: 1px solid rgba(244, 239, 230, 0.12);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--s-4);
  font-size: 0.85rem;
  color: rgba(244, 239, 230, 0.5);
}

/* ────────────── reveal (passive — no JS-driven hiding) ────────────── */
.reveal { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .nav__link, .btn, .placeholder, .site-header {
    transition: none !important;
  }
}

/* ────────────── responsive ────────────── */
@media (max-width: 960px) {
  :root {
    --t-base: 1.0625rem;  /* still 17px for older audience */
  }
  .hero__grid {
    grid-template-columns: 1fr;
    gap: var(--s-12);
  }
  .hero__meta {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-left: 0;
    padding-top: var(--s-8);
  }
  .split { grid-template-columns: 1fr; gap: var(--s-8); }
  .split--media-left .split__media { order: 0; }
  .location { grid-template-columns: 1fr; gap: var(--s-6); padding-block: var(--s-12); }
  .location--reverse .location__media { order: 0; }
  .contact-block { grid-template-columns: 1fr; }
  .feedback { grid-template-columns: 1fr; gap: var(--s-10); }
  .site-footer__inner { grid-template-columns: 1fr 1fr; gap: var(--s-8); }
  .site-footer__inner > *:first-child { grid-column: span 2; }
}

@media (max-width: 720px) {
  .nav-toggle { display: inline-flex; }
  .nav { display: none; }
  .nav.is-open {
    display: flex;
    position: fixed;
    inset: 0;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: var(--s-6);
    padding: var(--s-12);
    background: var(--paper);
    z-index: 99;
  }
  .nav.is-open .nav__link {
    font-family: var(--serif);
    font-size: var(--t-xl);
    border-bottom: 0;
  }
  .nav.is-open .nav__phone {
    font-size: var(--t-lg);
  }
  .list__item { grid-template-columns: 64px 1fr; gap: var(--s-4); }
  .contact-row { grid-template-columns: 1fr; gap: var(--s-2); }
}

body.nav-open { overflow: hidden; }
