/* ==========================================================================
   Dratschew - Die beste Pflege
   Designed & developed by PixelUno - https://pixelUno.es
   Unverbindliche Vorschau. Gestaltung, Code und Struktur: (c) PixelUno.
   ========================================================================== */

/* Tokens ------------------------------------------------------------------ */
:root {
  /* Surfaces: warm limestone instead of clinical white */
  --paper:      #fbf8f3;
  --sand:       #f4ede3;
  --sand-deep:  #ebe1d2;
  --night:      #0f1a28;
  --night-2:    #0a121d;

  /* Ink */
  --ink:        #14202f;
  --ink-soft:   #4c5a6c;
  --ink-faint:  #626e80;   /* AA on --paper for small text */
  --on-night:   #eef2f7;
  --on-night-soft: #a9b6c9;

  /* Competence blue - deepened from the pulse in the original logo (#000098) */
  --brand:      #16267a;
  --brand-2:    #2e42b0;
  --brand-tint: #e7e9f6;

  /* Warmth terracotta - the action colour, nothing else */
  --accent:     #b4522f;
  --accent-ink: #9e4527;
  --accent-2:   #c9663f;
  --accent-tint:#f6e6dc;

  --rule:       rgba(20, 32, 47, .13);
  --rule-soft:  rgba(20, 32, 47, .07);
  --rule-night: rgba(238, 242, 247, .16);

  /* Type */
  --display: "Newsreader", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --sans: "Onest", "Segoe UI", system-ui, -apple-system, sans-serif;

  --fs-xs:   .8125rem;
  --fs-sm:   .9375rem;
  --fs-base: clamp(1.0rem, .965rem + .16vw, 1.09rem);
  --fs-lg:   clamp(1.1rem, 1.04rem + .28vw, 1.28rem);
  --fs-xl:   clamp(1.3rem, 1.16rem + .55vw, 1.6rem);
  --fs-2xl:  clamp(1.65rem, 1.36rem + 1.15vw, 2.35rem);
  --fs-3xl:  clamp(2.05rem, 1.6rem + 2.0vw, 3.15rem);
  --fs-4xl:  clamp(2.05rem, 1.5rem + 3.5vw, 4.35rem);

  /* Space */
  --gutter:  clamp(1.25rem, 5vw, 3rem);
  --section: clamp(4.25rem, 8.5vw, 8rem);
  --wrap:    1220px;
  --read:    64ch;

  --radius:   14px;
  --radius-lg: 20px;

  --ease: cubic-bezier(.22, .68, .28, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);

  --shadow-sm: 0 1px 2px rgba(20,32,47,.05), 0 6px 16px -10px rgba(20,32,47,.22);
  --shadow-md: 0 2px 4px rgba(20,32,47,.05), 0 18px 38px -22px rgba(20,32,47,.34);
  --shadow-lg: 0 3px 8px rgba(20,32,47,.06), 0 34px 70px -34px rgba(20,32,47,.42);

  --strip-h: 40px;
  --header-h: 84px;
}

/* 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; } }

body {
  margin: 0;
  padding-top: var(--strip-h);
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: var(--fs-base);
  line-height: 1.68;
  font-feature-settings: "kern" 1;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -.018em;
  margin: 0;
  text-wrap: balance;
}
p, figure, blockquote { margin: 0; }
img, svg { max-width: 100%; display: block; }
/* The picture element is a wrapper, not a box: let the image inside inherit
   the sizing that its real container (figure, media panel, hero) defines. */
picture { display: contents; }
ul, ol { margin: 0; padding: 0; list-style: none; }

a { color: var(--accent-ink); text-decoration-thickness: 1px; text-underline-offset: .18em; }
a:hover { color: var(--accent); }

:focus-visible {
  outline: 2px solid var(--brand-2);
  outline-offset: 3px;
  border-radius: 3px;
}

::selection { background: var(--accent-tint); color: var(--ink); }

.wrap { width: min(100% - (var(--gutter) * 2), var(--wrap)); margin-inline: auto; }
.read { max-width: var(--read); }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: fixed; top: calc(var(--strip-h) + 8px); left: 50%; translate: -50% 0;
  z-index: 200; background: var(--night); color: #fff;
  padding: .7rem 1.2rem; border-radius: 999px; font-size: var(--fs-sm);
  font-weight: 600; text-decoration: none; opacity: 0; pointer-events: none;
}
.skip-link:focus-visible { opacity: 1; pointer-events: auto; color: #fff; }

/* PixelUno preview strip -------------------------------------------------- */
.preview-strip {
  position: fixed; inset: 0 0 auto 0; z-index: 140;
  min-height: 40px;
  background: linear-gradient(90deg, #4c1d95, #6d28d9 55%, #5b21b6);
  color: #f3eeff;
  font-size: .78rem; font-weight: 500; letter-spacing: .035em;
  line-height: 1.3; text-align: center;
  padding: .55rem var(--gutter);
  display: flex; align-items: center; justify-content: center; gap: .6rem;
}
.preview-strip__dot {
  width: .4rem; height: .4rem; border-radius: 50%;
  background: #c4b5fd; flex: none;
}
@media (max-width: 40rem) {
  .preview-strip { font-size: .72rem; letter-spacing: .01em; padding: .5rem .9rem; gap: .45rem; }
  .preview-strip__dot { display: none; }
}

/* Brand mark -------------------------------------------------------------- */
.brand {
  display: grid; grid-template-columns: auto; justify-items: start;
  gap: .1rem; text-decoration: none; color: inherit; flex: none;
  line-height: 1;
}
.brand__name {
  font-family: var(--sans); font-weight: 700;
  font-size: 1.32rem; letter-spacing: -.012em; color: currentColor;
}
.brand__rule {
  display: block; width: 176px; height: 13px; color: var(--brand);
  fill: none; stroke: currentColor; stroke-width: 2.1;
  stroke-linejoin: round; stroke-linecap: round;
}
.brand__sub {
  font-family: var(--sans); font-size: .74rem; font-weight: 500;
  letter-spacing: .17em; text-transform: uppercase; opacity: .72;
}

/* Header ------------------------------------------------------------------ */
.site-header {
  position: fixed; top: var(--strip-h); left: 0; right: 0; z-index: 130;
  color: #fff;
  transition: background .35s var(--ease), color .35s var(--ease),
              box-shadow .35s var(--ease), backdrop-filter .35s var(--ease);
}
.site-header__inner {
  display: flex; align-items: center; gap: clamp(1rem, 3vw, 2.5rem);
  min-height: var(--header-h);
}
.site-header[data-solid="true"] {
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  backdrop-filter: blur(14px) saturate(150%);
  color: var(--ink);
  box-shadow: 0 1px 0 var(--rule), 0 10px 30px -24px rgba(20,32,47,.5);
}
/* Condense by scaling the mark, not by animating box height. */
.site-header .brand { transform-origin: left center; transition: scale .35s var(--ease); }
.site-header .brand__rule { color: #93a5f0; transition: color .35s var(--ease); }
.site-header[data-solid="true"] .brand__rule { color: var(--brand); }
.site-header[data-solid="true"] .brand { scale: .9; }

.mainnav { display: flex; align-items: center; gap: clamp(1rem, 2.2vw, 2rem); margin-left: auto; }
.mainnav a {
  color: inherit; text-decoration: none; font-size: var(--fs-sm); font-weight: 500;
  letter-spacing: .01em; position: relative; padding: .35rem 0;
  transition: opacity .2s var(--ease);
}
.mainnav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: currentColor; scale: 0 1; transform-origin: left;
  transition: scale .35s var(--ease);
}
.mainnav a:hover::after, .mainnav a[aria-current="true"]::after { scale: 1 1; }
.mainnav a:hover { color: inherit; opacity: .78; }

.langs { display: flex; align-items: center; gap: .1rem; font-size: var(--fs-xs); }
.langs a {
  color: inherit; text-decoration: none; padding: .3rem .42rem; border-radius: 4px;
  font-weight: 600; letter-spacing: .06em; opacity: .72;
  transition: opacity .2s var(--ease), background .2s var(--ease);
}
.langs a:hover { opacity: 1; background: color-mix(in srgb, currentColor 12%, transparent); }
.langs a[aria-current="page"] { opacity: 1; }
.langs span { opacity: .32; }

.navtoggle {
  display: none; margin-left: auto; background: none; border: 0; cursor: pointer;
  color: inherit; padding: .6rem; margin-right: -.6rem;
}
.navtoggle svg { width: 26px; height: 26px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; }

/* Icons - one authored set, one stroke weight ----------------------------- */
.icon {
  width: 18px; height: 18px; flex: none;
  fill: none; stroke: currentColor; stroke-width: 1.7;
  stroke-linecap: round; stroke-linejoin: round;
}

/* Buttons ----------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--sans); font-size: var(--fs-sm); font-weight: 600;
  letter-spacing: .005em; text-decoration: none; cursor: pointer;
  padding: .92rem 1.5rem; border-radius: 999px; border: 1px solid transparent;
  transition: background .25s var(--ease), color .25s var(--ease),
              border-color .25s var(--ease), box-shadow .3s var(--ease),
              translate .25s var(--ease);
  min-height: 48px;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn--primary {
  background: var(--accent); color: #fff; border-color: var(--accent);
  box-shadow: 0 2px 3px rgba(120,45,20,.16), 0 14px 26px -16px rgba(120,45,20,.6);
}
.btn--primary:hover {
  background: var(--accent-2); border-color: var(--accent-2); color: #fff;
  translate: 0 -2px;
  box-shadow: 0 3px 5px rgba(120,45,20,.18), 0 20px 34px -18px rgba(120,45,20,.66);
}
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.45); }
.btn--ghost:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.75); color: #fff; translate: 0 -2px; }
.btn--outline { background: transparent; color: var(--ink); border-color: var(--rule); }
.btn--outline:hover { background: var(--sand); border-color: rgba(20,32,47,.28); color: var(--ink); translate: 0 -2px; }
.btn--sm { padding: .62rem 1.05rem; min-height: 42px; font-size: var(--fs-xs); }

.arrowlink {
  display: inline-flex; align-items: center; gap: .5rem;
  font-weight: 600; font-size: var(--fs-sm); text-decoration: none;
  color: var(--accent-ink);
}
.arrowlink svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; transition: translate .3s var(--ease); }
.arrowlink:hover svg { translate: 4px 0; }

/* Sections ---------------------------------------------------------------- */
.band { padding-block: var(--section); }
.band--sand { background: var(--sand); }
.band--night { background: var(--night); color: var(--on-night); }
.band--tight { padding-block: clamp(3rem, 6vw, 5rem); }

.band__head { max-width: min(38rem, 100%); margin-bottom: clamp(2.4rem, 4.5vw, 3.75rem); }
.band__head h2 { font-size: var(--fs-3xl); }
.band__head p {
  margin-top: 1.15rem; color: var(--ink-soft); font-size: var(--fs-lg);
  line-height: 1.6; max-width: 56ch;
}
.band--night .band__head p { color: var(--on-night-soft); }

.pulse-rule {
  display: block; width: 116px; height: 12px; color: var(--brand); margin-bottom: 1.6rem;
  fill: none; stroke: currentColor; stroke-width: 2;
  stroke-linejoin: round; stroke-linecap: round;
}
.band--night .pulse-rule { color: #7f92e8; }

/* Hero -------------------------------------------------------------------- */
.hero { position: relative; isolation: isolate; background: var(--night); }
.hero__media { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 52% 32%; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(to bottom, rgba(11,20,33,.62) 0%, rgba(11,20,33,.18) 12%, rgba(11,20,33,0) 22%),
    linear-gradient(100deg, rgba(11,20,33,.95) 0%, rgba(11,20,33,.86) 30%, rgba(11,20,33,.5) 60%, rgba(11,20,33,.14) 84%, rgba(11,20,33,.05) 100%),
    linear-gradient(to top, rgba(11,20,33,.6) 0%, rgba(11,20,33,0) 34%);
}
.hero__inner {
  display: flex; align-items: flex-end;
  min-height: clamp(600px, 92svh, 900px);
  padding-top: calc(var(--header-h) + 3.5rem);
  padding-bottom: clamp(5.5rem, 10vw, 8rem);
}
.hero__content { max-width: min(44rem, 100%); color: #fff; }
.hero h1 {
  font-size: var(--fs-4xl); color: #fff; font-weight: 500;
  letter-spacing: -.028em; line-height: 1.03;
}
.hero h1 em { font-style: normal; color: #f0b48d; }
.hero__lead {
  margin-top: 1.5rem; font-size: var(--fs-lg); line-height: 1.6;
  color: rgba(255,255,255,.88); max-width: 44ch;
}
.hero__actions { margin-top: 2.25rem; display: flex; flex-wrap: wrap; gap: .8rem; }
.hero__note {
  margin-top: 1.5rem; font-size: var(--fs-sm); color: rgba(255,255,255,.66);
  display: flex; align-items: flex-start; gap: .5rem;
}
.hero__note svg { width: 16px; height: 16px; flex: none; margin-top: .28em; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }

/* Facts bar - raised card overlapping the hero */
.facts {
  position: relative; z-index: 2;
  margin-top: clamp(-4.5rem, -6vw, -3rem);
  margin-bottom: clamp(3.5rem, 7vw, 6rem);
}
.facts__card {
  background: var(--paper); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: grid; grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
}
.facts__item {
  padding: clamp(1.5rem, 2.6vw, 2.1rem) clamp(1.2rem, 2.2vw, 2rem);
  border-right: 1px solid var(--rule-soft);
  display: flex; flex-direction: column;
}
.facts__item:last-child { border-right: 0; }
.facts__value {
  font-family: var(--display); font-size: var(--fs-xl); font-weight: 500;
  color: var(--brand); line-height: 1.15; letter-spacing: -.02em;
}
/* Side by side the labels must share a baseline even when one value wraps. */
@media (min-width: 60rem) { .facts__value { min-height: 2.3em; } }
.facts__label { margin-top: .45rem; font-size: var(--fs-sm); color: var(--ink-soft); line-height: 1.45; }

/* Service detail blocks --------------------------------------------------- */
.service { padding-block: clamp(3.5rem, 7vw, 6rem); border-top: 1px solid var(--rule-soft); scroll-margin-top: calc(var(--strip-h) + 90px); }
.service:first-of-type { border-top: 0; }
.service__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.service--flip .service__media { order: 2; }
.service__media {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md);
  background: var(--sand-deep);
}
.service__media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 3 / 2; }
.service__media img[data-pos="top"] { object-position: 50% 12%; }
.service h2 { font-size: var(--fs-2xl); }
.service__intro { margin-top: 1.15rem; color: var(--ink-soft); font-size: var(--fs-lg); line-height: 1.62; max-width: 46ch; }

.checks { margin-top: 1.9rem; display: grid; gap: .62rem; }
@media (min-width: 60rem) { .checks--two { grid-template-columns: 1fr 1fr; column-gap: 1.75rem; } }
.checks li { display: grid; grid-template-columns: 20px 1fr; gap: .7rem; align-items: start; font-size: var(--fs-sm); line-height: 1.5; }
.checks svg { width: 20px; height: 20px; margin-top: .12rem; color: var(--brand); fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

.highlight {
  margin-top: 1.9rem; padding: 1.15rem 1.35rem; border-radius: var(--radius);
  background: var(--brand-tint); border: 1px solid rgba(22,38,122,.14);
  font-size: var(--fs-sm); line-height: 1.55; color: var(--ink);
}
.highlight strong { color: var(--brand); }

.service__cta { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: .7rem; }

/* About ------------------------------------------------------------------- */
.about { display: grid; grid-template-columns: 5fr 7fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.about__portrait { position: relative; }
.about__portrait img {
  width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 5; object-fit: cover; object-position: 50% 22%;
}
.about h2 { font-size: var(--fs-3xl); }
.about__body { margin-top: 1.35rem; display: grid; gap: 1.05rem; color: var(--ink-soft); max-width: 58ch; }
.about__body strong { color: var(--ink); font-weight: 600; }

.quote {
  margin-top: 2.25rem; padding-left: 1.6rem; border-left: 1px solid var(--brand);
  font-family: var(--display); font-style: italic; font-size: var(--fs-xl);
  line-height: 1.4; color: var(--ink); letter-spacing: -.012em;
}
.quote cite { display: block; margin-top: .7rem; font-family: var(--sans); font-style: normal; font-size: var(--fs-xs); letter-spacing: .12em; text-transform: uppercase; color: var(--ink-faint); }

.vita { margin-top: clamp(3rem, 6vw, 4.5rem); display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.75rem, 3.5vw, 3rem); }
.vita h3 { font-family: var(--sans); font-size: var(--fs-xs); font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-faint); }
.vita ul { margin-top: 1.1rem; border-top: 1px solid var(--rule); }
.vita li { padding: .78rem 0; border-bottom: 1px solid var(--rule-soft); font-size: var(--fs-sm); line-height: 1.5; display: grid; gap: .12rem; }
.vita li span { color: var(--brand); font-weight: 600; font-variant-numeric: tabular-nums; font-size: var(--fs-xs); letter-spacing: .04em; }

/* Process ----------------------------------------------------------------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.75rem, 4vw, 3.25rem); counter-reset: step; }
.step { position: relative; padding-top: 2rem; border-top: 1px solid var(--rule); }
.step__num {
  font-family: var(--display); font-size: clamp(2.6rem, 4.5vw, 3.6rem); font-weight: 400;
  line-height: 1; color: var(--accent); letter-spacing: -.04em; display: block;
}
.step h3 { margin-top: 1rem; font-size: var(--fs-xl); }
.step p { margin-top: .7rem; color: var(--ink-soft); font-size: var(--fs-sm); line-height: 1.6; }

/* Testimonials ------------------------------------------------------------ */
.voices { columns: 3; column-gap: clamp(1.25rem, 2.5vw, 2rem); }
.voice {
  break-inside: avoid; margin-bottom: clamp(1.25rem, 2.5vw, 2rem);
  background: var(--paper); border: 1px solid var(--rule-soft); border-radius: var(--radius);
  padding: clamp(1.35rem, 2.2vw, 1.75rem);
  box-shadow: var(--shadow-sm);
}
.voice p { font-size: var(--fs-sm); line-height: 1.62; color: var(--ink); }
.voice__tr {
  margin-top: .8rem; padding-top: .7rem; border-top: 1px dashed var(--rule-soft);
  font-size: .85rem; line-height: 1.55; color: var(--ink-soft); font-style: italic;
}
.voice__tr b {
  display: block; font-style: normal; font-weight: 700; font-size: .68rem;
  letter-spacing: .12em; text-transform: uppercase; color: var(--ink-faint);
  margin-bottom: .25rem;
}
.voice footer { margin-top: 1.05rem; padding-top: .85rem; border-top: 1px solid var(--rule-soft); display: flex; align-items: baseline; justify-content: space-between; gap: .75rem; }
.voice cite { font-style: normal; font-size: var(--fs-xs); font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--ink); }
.voice small { font-size: .7rem; letter-spacing: .07em; text-transform: uppercase; color: var(--ink-faint); white-space: nowrap; }

.voices__note { margin-top: 2rem; font-size: var(--fs-xs); color: var(--ink-faint); }

/* Journal ----------------------------------------------------------------- */
.journal { border-top: 1px solid var(--rule); }
.journal a {
  display: grid; grid-template-columns: 1fr auto; gap: 1.5rem; align-items: center;
  padding: clamp(1.35rem, 2.6vw, 1.9rem) 0; border-bottom: 1px solid var(--rule-soft);
  text-decoration: none; color: inherit;
  transition: translate .35s var(--ease), background .35s var(--ease);
}
.journal a:hover { translate: .9rem 0; background: linear-gradient(90deg, var(--sand), transparent 70%); }
.journal h3 { font-size: var(--fs-xl); max-width: 34ch; }
.journal p { margin-top: .45rem; color: var(--ink-soft); font-size: var(--fs-sm); max-width: 62ch; }
.journal svg { width: 20px; height: 20px; fill: none; stroke: var(--accent); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; transition: translate .3s var(--ease); }
.journal a:hover svg { translate: 5px 0; }

/* Contact ----------------------------------------------------------------- */
.contact { display: grid; grid-template-columns: 5fr 7fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.contact h2 { font-size: var(--fs-3xl); color: #fff; }
.contact__lead { margin-top: 1.2rem; color: var(--on-night-soft); font-size: var(--fs-lg); line-height: 1.6; max-width: 42ch; }

.channels { margin-top: 2.25rem; border-top: 1px solid var(--rule-night); }
.channels a, .channels div {
  display: grid; grid-template-columns: 22px 1fr; gap: .95rem; align-items: start;
  padding: 1rem 0; border-bottom: 1px solid var(--rule-night);
  text-decoration: none; color: var(--on-night);
  transition: translate .3s var(--ease), color .3s var(--ease);
}
.channels a:hover { translate: .45rem 0; color: #fff; }
.channels svg { width: 22px; height: 22px; margin-top: .18rem; color: #8ea2f2; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.channels b { display: block; font-weight: 600; font-size: var(--fs-base); letter-spacing: -.005em; }
.channels span { display: block; font-size: var(--fs-xs); color: var(--on-night-soft); letter-spacing: .04em; margin-top: .1rem; }

/* Form */
.form {
  background: var(--paper); color: var(--ink); border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 3.2vw, 2.5rem); box-shadow: var(--shadow-lg);
}
.form h3 { font-size: var(--fs-xl); }
.form > p { margin-top: .6rem; color: var(--ink-soft); font-size: var(--fs-sm); }
.form__grid { margin-top: 1.75rem; display: grid; gap: 1.05rem; }
@media (min-width: 46rem) { .form__grid--two { grid-template-columns: 1fr 1fr; } }
.field { display: grid; gap: .4rem; }
.field label { font-size: var(--fs-xs); font-weight: 600; letter-spacing: .05em; text-transform: uppercase; color: var(--ink-soft); }
.field input, .field textarea, .field select {
  font-family: var(--sans); font-size: var(--fs-base); color: var(--ink);
  background: #fff; border: 1px solid var(--rule); border-radius: 10px;
  padding: .82rem .95rem; width: 100%; min-height: 48px;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field textarea { min-height: 120px; resize: vertical; line-height: 1.55; }
.field input::placeholder, .field textarea::placeholder { color: #6b7686; }
.field input:focus-visible, .field textarea:focus-visible, .field select:focus-visible {
  outline: none; border-color: var(--brand-2);
  box-shadow: 0 0 0 3px rgba(46,66,176,.16);
}
.form__foot { margin-top: 1.6rem; display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; }
.form__hint { font-size: var(--fs-xs); color: var(--ink-faint); line-height: 1.5; max-width: 40ch; }

/* Map card */
.mapcard {
  margin-top: 1.5rem; display: block; text-decoration: none;
  border-radius: var(--radius); overflow: hidden; border: 1px solid var(--rule-night);
  background: linear-gradient(145deg, #16273a, #101c2b);
  padding: 1.25rem 1.4rem; color: var(--on-night);
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.mapcard:hover { border-color: rgba(238,242,247,.35); color: #fff; }
.mapcard b { display: block; font-size: var(--fs-sm); font-weight: 600; }
.mapcard span { display: block; font-size: var(--fs-xs); color: var(--on-night-soft); margin-top: .25rem; }

/* Footer ------------------------------------------------------------------ */
.site-footer { background: var(--night-2); color: var(--on-night); padding-block: clamp(3rem, 6vw, 4.5rem) 2rem; }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: clamp(2rem, 4vw, 3.5rem); }
.site-footer .brand { color: #fff; }
.site-footer .brand__rule { color: #7f92e8; }
.footer__claim { margin-top: 1.35rem; font-family: var(--display); font-style: italic; font-size: var(--fs-lg); color: rgba(238,242,247,.82); max-width: 26ch; }
.footer__col h3 { font-family: var(--sans); font-size: var(--fs-xs); font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--on-night-soft); }
.footer__col ul { margin-top: 1.05rem; display: grid; gap: .58rem; }
.footer__col a, .footer__col li { color: var(--on-night); font-size: var(--fs-sm); text-decoration: none; }
.footer__col a:hover { color: #fff; text-decoration: underline; text-underline-offset: .2em; }
.footer__bottom {
  margin-top: clamp(2.5rem, 5vw, 3.5rem); padding-top: 1.5rem; border-top: 1px solid var(--rule-night);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem;
  font-size: var(--fs-xs); color: var(--on-night-soft);
}
.footer__legal { display: flex; flex-wrap: wrap; gap: 1.1rem; }
.footer__legal a { color: var(--on-night-soft); text-decoration: none; }
.footer__legal a:hover { color: #fff; }
.madeby { display: inline-flex; align-items: center; gap: .35rem; }
.madeby__heart { color: #e0705a; }
.madeby a { color: #fff; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.38); }
.madeby a:hover { border-bottom-color: #e0705a; color: #fff; }

/* Mobile action bar ------------------------------------------------------- */
.actionbar { display: none; }

/* Drawer ------------------------------------------------------------------ */
.drawer {
  position: fixed; inset: var(--strip-h) 0 0 0; z-index: 120;
  background: var(--paper); padding: calc(var(--header-h) + 1rem) var(--gutter) 2rem;
  overflow-y: auto;
  translate: 0 -100%; opacity: 0; visibility: hidden;
  /* visibility flips instantly on open and only after the slide on close,
     so the first link is focusable the moment the panel starts moving. */
  transition: translate .45s var(--ease-out), opacity .3s var(--ease), visibility 0s linear .45s;
}
.drawer[data-open="true"] {
  translate: 0 0; opacity: 1; visibility: visible;
  transition: translate .45s var(--ease-out), opacity .3s var(--ease), visibility 0s;
}
.drawer nav { display: grid; gap: .2rem; border-top: 1px solid var(--rule); }
.drawer nav a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.05rem 0; border-bottom: 1px solid var(--rule-soft);
  font-family: var(--display); font-size: var(--fs-xl); color: var(--ink); text-decoration: none;
}
.drawer nav a svg { width: 18px; height: 18px; fill: none; stroke: var(--accent); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.drawer__actions { margin-top: 2rem; display: grid; gap: .7rem; }
.drawer__meta { margin-top: 2rem; font-size: var(--fs-sm); color: var(--ink-soft); display: grid; gap: .4rem; }
.drawer__langs { margin-top: 1.75rem; display: flex; gap: .75rem; font-size: var(--fs-sm); }
.drawer__langs a { color: var(--ink-soft); text-decoration: none; font-weight: 600; letter-spacing: .06em; }
.drawer__langs a[aria-current="page"] { color: var(--accent-ink); }

/* Legal page -------------------------------------------------------------- */
.legal { padding-top: calc(var(--header-h) + clamp(3rem, 6vw, 5rem)); }
.legal h1 { font-size: var(--fs-3xl); }
.legal h2 { font-size: var(--fs-xl); margin-top: 2.75rem; }
.legal p, .legal ul { margin-top: .9rem; color: var(--ink-soft); max-width: 68ch; font-size: var(--fs-sm); line-height: 1.7; }
.legal li { margin-top: .3rem; }
.legal address { font-style: normal; }

/* Reveal ------------------------------------------------------------------ */
.js [data-reveal] { opacity: 0; translate: 0 16px; }
.js [data-reveal][data-revealed="true"] {
  opacity: 1; translate: 0 0;
  transition: opacity .8s var(--ease-out), translate .8s var(--ease-out);
}
.js [data-reveal-delay="1"] { transition-delay: .08s; }
.js [data-reveal-delay="2"] { transition-delay: .16s; }
.js [data-reveal-delay="3"] { transition-delay: .24s; }

/* Hero entrance - the one authored moment on the page */
.js .hero__media img { scale: 1.07; filter: blur(6px); }
.js body[data-ready="true"] .hero__media img {
  scale: 1; filter: blur(0);
  transition: scale 2.4s var(--ease-out), filter 1.2s var(--ease-out);
}
.js .hero__content > * { opacity: 0; translate: 0 20px; }
.js body[data-ready="true"] .hero__content > * {
  opacity: 1; translate: 0 0;
  transition: opacity .9s var(--ease-out), translate .9s var(--ease-out);
}
.js body[data-ready="true"] .hero h1 { transition-delay: .12s; }
.js body[data-ready="true"] .hero__lead { transition-delay: .24s; }
.js body[data-ready="true"] .hero__actions { transition-delay: .34s; }
.js body[data-ready="true"] .hero__note { transition-delay: .44s; }

/* Responsive -------------------------------------------------------------- */
@media (max-width: 74rem) {
  .vita { grid-template-columns: 1fr 1fr; }
  .voices { columns: 2; }
}

@media (max-width: 60rem) {
  :root { --header-h: 72px; }
  .mainnav, .langs { display: none; }
  /* WhatsApp already sits in the fixed action bar down there. */
  .site-header .btn--sm { display: none; }
  .navtoggle { display: block; }
  .brand__name { font-size: 1.16rem; }
  .brand__rule { width: 150px; height: 11px; }
  .brand__sub { font-size: .66rem; letter-spacing: .15em; }
  .facts__card { grid-template-columns: 1fr 1fr; }
  .facts__item:nth-child(2n) { border-right: 0; }
  .facts__item:nth-child(-n+2) { border-bottom: 1px solid var(--rule-soft); }
  .service__grid, .about, .contact { grid-template-columns: 1fr; }
  .service--flip .service__media { order: 0; }
  .steps { grid-template-columns: 1fr; gap: 2rem; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .about__portrait { max-width: 420px; }
}

@media (max-width: 46rem) {
  body { padding-bottom: 72px; }
  /* A phone is far too narrow to crop this photo without cutting faces in
     half, so the picture keeps the top of the screen and the type sits on
     solid night below it. */
  .hero__media { inset: 0 0 auto 0; height: 44%; }
  .hero__media img { object-position: 50% 20%; }
  .hero::after {
    background: linear-gradient(to bottom,
      rgba(15,26,40,.5) 0%, rgba(15,26,40,0) 17%, rgba(15,26,40,0) 28%,
      rgba(15,26,40,.85) 41%, #0f1a28 45%);
  }
  .hero__inner {
    min-height: clamp(640px, 90svh, 820px);
    padding-top: calc(var(--header-h) + 1rem);
    padding-bottom: 3rem;
  }
  .hero__content { max-width: none; }
  .facts { margin-top: -2.5rem; }
  .facts__card { grid-template-columns: 1fr; }
  .facts__item { border-right: 0; border-bottom: 1px solid var(--rule-soft); }
  .facts__item:last-child { border-bottom: 0; }
  .vita, .voices { grid-template-columns: 1fr; columns: 1; }
  .journal a { grid-template-columns: 1fr; gap: .75rem; }
  .journal a svg { justify-self: start; }
  .footer__top { grid-template-columns: 1fr; gap: 2.25rem; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .btn { width: 100%; }
  .hero__actions .btn, .drawer__actions .btn { width: 100%; }
  .service__cta .btn, .form__foot .btn { width: 100%; }

  .actionbar {
    display: grid; grid-template-columns: 1fr 1fr; gap: 0;
    position: fixed; inset: auto 0 0 0; z-index: 125;
    background: color-mix(in srgb, var(--paper) 96%, transparent);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--rule);
    padding-bottom: env(safe-area-inset-bottom);
  }
  .actionbar a {
    display: flex; align-items: center; justify-content: center; gap: .5rem;
    min-height: 60px; text-decoration: none; font-size: var(--fs-sm); font-weight: 600;
    color: var(--ink);
  }
  .actionbar a + a { border-left: 1px solid var(--rule); }
  .actionbar a:first-child { color: var(--accent-ink); }
  .actionbar svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important; animation-iteration-count: 1 !important;
    transition-duration: .001ms !important; scroll-behavior: auto !important;
  }
  .js [data-reveal] { opacity: 1; translate: none; }
  .js .hero__media img { scale: 1; filter: none; }
  .js .hero__content > * { opacity: 1; translate: none; }
}

@media print {
  .preview-strip, .site-header, .drawer, .actionbar, .hero__actions, .form { display: none !important; }
  body { padding-top: 0; background: #fff; color: #000; }
  .band--night, .site-footer, .hero { background: #fff !important; color: #000 !important; }
  .hero::after, .hero__media { display: none !important; }
  .hero h1, .contact h2 { color: #000 !important; }
}
