/* ============================================
   Filler Immobilien – Relaunch
   Design tokens
   ============================================ */
:root {
  --ink: #0A141F;
  --ink-2: #0E1B29;
  --ink-3: #16283B;
  --paper: #F2F0EA;
  --paper-2: #E9E6DD;
  --white: #FBFAF7;

  --text-dark-hi: #EDF2F6;
  --text-dark-lo: #93A5B5;
  --text-light-hi: #131F2B;
  --text-light-lo: #55616C;

  --blue: #2B5D87;
  --blue-deep: #1B3E5C;
  --sky: #7FB2DE;
  --sky-soft: #A8CBE8;

  --line-dark: rgba(237, 242, 246, 0.14);
  --line-light: rgba(19, 31, 43, 0.14);

  --font-display: 'Fraunces', 'Iowan Old Style', Georgia, serif;
  --font-body: 'Work Sans', -apple-system, 'Segoe UI', sans-serif;

  --step--1: clamp(0.8rem, 0.77rem + 0.15vw, 0.88rem);
  --step-0: clamp(1rem, 0.95rem + 0.25vw, 1.14rem);
  --step-1: clamp(1.25rem, 1.15rem + 0.5vw, 1.55rem);
  --step-2: clamp(1.6rem, 1.4rem + 1vw, 2.2rem);
  --step-3: clamp(2.1rem, 1.7rem + 2vw, 3.3rem);
  --step-4: clamp(2.8rem, 2rem + 4vw, 5.2rem);
  --step-hero: clamp(3rem, 1.4rem + 8.6vw, 9rem);

  --gutter: clamp(1.25rem, 4vw, 4rem);
  --max-width: 1400px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ============================================
   Reset
   ============================================ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; }
body { min-height: 100dvh; overflow-x: clip; }
img, picture, svg { display: block; max-width: 100%; }
input, button, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; padding: 0; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
address { font-style: normal; }

/* ============================================
   Base
   ============================================ */
body {
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.65;
  color: var(--text-dark-hi);
  background: var(--ink);
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.015em;
}
h2 { font-size: var(--step-4); }
h2 em, h1 em, .gallery-item--cta em, .contact-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--sky);
}
.section-light h2 em { color: var(--blue); }

p { max-width: 60ch; }

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75em;
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 1.5rem;
}
.eyebrow::before {
  content: '';
  width: 2.2em;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}
.section-light .eyebrow { color: var(--blue); }

.section-dark { background: var(--ink); color: var(--text-dark-hi); }
.section-dark p { color: var(--text-dark-lo); }
.section-dark h2, .section-dark h3 { color: var(--text-dark-hi); }
.section-light { background: var(--paper); color: var(--text-light-hi); }
.section-light p { color: var(--text-light-lo); }
.section-light h2, .section-light h3 { color: var(--text-light-hi); }

a:focus-visible, button:focus-visible, summary:focus-visible,
input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--sky);
  outline-offset: 3px;
}
.section-light a:focus-visible, .section-light summary:focus-visible {
  outline-color: var(--blue);
}

.skip-link {
  position: fixed;
  top: -100px;
  left: 1rem;
  z-index: 300;
  background: var(--sky);
  color: var(--ink);
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  font-weight: 600;
}
.skip-link:focus { top: 1rem; }

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

/* ============================================
   Buttons
   ============================================ */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8em 1.7em;
  font-weight: 600;
  font-size: var(--step--1);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 100px;
  overflow: hidden;
  transition: color 0.35s var(--ease), border-color 0.35s var(--ease), transform 0.35s var(--ease);
}
.btn-lg { padding: 1.05em 2.2em; }
.btn span { position: relative; z-index: 1; }
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--sky-soft);
  transform: translateY(101%);
  transition: transform 0.45s var(--ease);
}
.btn:hover::after, .btn:focus-visible::after { transform: translateY(0); }
.btn-solid {
  background: var(--sky);
  color: var(--ink);
}
.btn-solid:hover { color: var(--ink); }
.btn-ghost {
  border: 1px solid var(--line-dark);
  color: var(--text-dark-hi);
}
.btn-ghost:hover, .btn-ghost:focus-visible { color: var(--ink); border-color: var(--sky-soft); }

/* ============================================
   Loader
   ============================================ */
.loader { display: none; }
html.anim .loader {
  display: block;
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
}
.loader-panel {
  position: absolute;
  left: 0;
  width: 100%;
  height: 50.5%;
  background: var(--paper);
}
.loader-panel--top { top: 0; }
.loader-panel--bottom { bottom: 0; }
.loader-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  font-size: clamp(1.6rem, 4vw, 3rem);
  color: var(--text-light-hi);
}
.loader-word { display: block; overflow: hidden; }
.loader-word span {
  display: block;
  transform: translateY(110%);
  font-weight: 600;
  letter-spacing: 0.02em;
}
.loader-word--serif span {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  color: var(--blue);
}
.loader-count {
  position: absolute;
  right: clamp(1.5rem, 4vw, 4rem);
  bottom: clamp(1.2rem, 4vh, 3rem);
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1;
  color: var(--blue);
}
.loader-year {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: clamp(4.5rem, 16vh, 9rem);
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--text-light-lo);
  opacity: 0;
}
.loader-year em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.9em;
  letter-spacing: 0;
  color: var(--blue);
  vertical-align: -0.12em;
  padding-inline: 0.12em;
}

/* ============================================
   Header
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: transform 0.5s var(--ease), background-color 0.4s, backdrop-filter 0.4s;
}
.site-header.is-hidden { transform: translateY(-100%); }
.site-header.is-scrolled {
  background: rgba(10, 20, 31, 0.82);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-dark);
}
.header-bar {
  max-width: var(--max-width);
  margin-inline: auto;
  padding: 0.7rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.brand img { height: 76px; width: auto; }

.main-nav ul {
  display: flex;
  gap: 2.2rem;
}
.main-nav a {
  font-size: var(--step--1);
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text-dark-hi);
  opacity: 0.85;
  transition: opacity 0.25s;
}
.main-nav a:hover { opacity: 1; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}
.header-phone {
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-dark-hi);
  opacity: 0.85;
  transition: opacity 0.25s;
}
.header-phone:hover { opacity: 1; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  width: 44px;
  height: 44px;
  align-items: center;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--text-dark-hi);
  transition: transform 0.35s var(--ease), opacity 0.35s;
}
.nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(4.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4.5px) rotate(-45deg); }

/* ============================================
   Hero
   ============================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(7rem, 14vh, 10rem) 0 clamp(3rem, 8vh, 6rem);
  background: var(--ink);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: -12%;
  background:
    radial-gradient(120% 90% at 80% -10%, rgba(43, 93, 135, 0.4), transparent 60%),
    radial-gradient(80% 60% at 10% 110%, rgba(27, 62, 92, 0.35), transparent 60%);
  z-index: 0;
}
html.anim .hero::before {
  animation: hero-drift 16s ease-in-out infinite alternate;
}
@keyframes hero-drift {
  from { transform: translate3d(-1.5%, -1%, 0) scale(1); }
  to { transform: translate3d(1.5%, 1.5%, 0) scale(1.08); }
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
}
.hero-inner, .hero-scrollhint { position: relative; z-index: 1; }
.char { display: inline-block; }
.hero-inner {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.hero-eyebrow {
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 2rem;
}
.hero-title {
  font-size: var(--step-hero);
  color: var(--text-dark-hi);
  margin-bottom: clamp(2rem, 5vh, 3.5rem);
}
.line { display: block; overflow: hidden; padding-block: 0.06em; }
.line-inner { display: block; }
html.anim .line-inner { transform: translateY(115%); }

.hero-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}
.hero-sub {
  color: var(--text-dark-lo);
  max-width: 46ch;
  font-size: var(--step-0);
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
html.anim [data-hero-fade] { opacity: 0; }

.hero-scrollhint {
  position: absolute;
  right: var(--gutter);
  top: 38vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  color: var(--text-dark-lo);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}
.hero-scrollhint-line {
  width: 1px;
  height: 64px;
  background: var(--line-dark);
  position: relative;
  overflow: hidden;
}
.hero-scrollhint-line::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--sky);
  animation: scrollhint 2.2s var(--ease) infinite;
}
@keyframes scrollhint {
  0% { transform: translateY(-100%); }
  55% { transform: translateY(0); }
  100% { transform: translateY(100%); }
}

/* ============================================
   Signature image reveal
   ============================================ */
.reveal-stage { background: var(--ink); }
.reveal-pin {
  height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.reveal-frame {
  position: relative;
  width: 100%;
  height: 100%;
}
.reveal-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
html.anim .reveal-frame {
  clip-path: inset(18% 26% 18% 26% round 6px);
}
html.anim .reveal-frame img {
  animation: kenburns 26s ease-in-out infinite alternate;
}
@keyframes kenburns {
  from { transform: scale(1.1) translate3d(-1%, 0, 0); }
  to { transform: scale(1.22) translate3d(1%, -1%, 0); }
}
.reveal-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s var(--ease);
}
.reveal-video.is-ready { opacity: 1; }

.reveal-credit {
  position: absolute;
  top: 0.9rem;
  right: var(--gutter);
  z-index: 2;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(251, 250, 247, 0.55);
  text-shadow: 0 1px 4px rgba(10, 20, 31, 0.5);
}

.reveal-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem var(--gutter);
  font-size: var(--step--1);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  background: linear-gradient(transparent, rgba(10, 20, 31, 0.65));
}

/* ============================================
   Marquee
   ============================================ */
.marquee {
  overflow: hidden;
  padding: clamp(1.6rem, 4vh, 3rem) 0;
  background: var(--ink);
  border-block: 1px solid var(--line-dark);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 1.2em;
  width: max-content;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.8rem, 4.5vw, 3.6rem);
  letter-spacing: 0.01em;
  color: rgba(237, 242, 246, 0.4);
  white-space: nowrap;
}
html.anim .marquee-track { animation: marquee 36s linear infinite; }
.marquee-track i {
  font-style: normal;
  color: var(--sky);
  font-size: 0.5em;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ============================================
   Manifest
   ============================================ */
.manifest { padding: clamp(7rem, 16vh, 12rem) 0; }
.manifest-text {
  font-family: var(--font-display);
  font-size: var(--step-3);
  line-height: 1.28;
  letter-spacing: -0.01em;
  color: var(--text-light-hi);
  max-width: 24em;
}
.manifest-text .w { opacity: 1; }
html.anim .manifest-text .w { opacity: 0.13; }

/* ============================================
   About
   ============================================ */
.about { padding-bottom: clamp(6rem, 14vh, 10rem); }
.about-grid {
  display: grid;
  grid-template-columns: minmax(280px, 5fr) 7fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}
.about-media { position: sticky; top: 12vh; }
.about-photo {
  overflow: hidden;
  border-radius: 6px;
}
.about-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
html.anim [data-clip] { clip-path: inset(0 0 100% 0); }
html.anim [data-clip] img { transform: scale(1.15); }
.about-photo-caption {
  margin-top: 1rem;
  font-size: var(--step--1);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light-lo);
}
.about-body h2 { margin-bottom: 1.8rem; }
.about-body p + p { margin-top: 1.2rem; }

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--line-light);
}
.stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: var(--step-3);
  color: var(--blue);
  line-height: 1;
}
.stat-label {
  display: block;
  margin-top: 0.6rem;
  font-size: var(--step--1);
  color: var(--text-light-lo);
  letter-spacing: 0.04em;
}

/* ============================================
   Services
   ============================================ */
.services {
  position: relative;
  padding: clamp(6rem, 14vh, 10rem) 0;
}
.section-head { margin-bottom: clamp(3rem, 7vh, 5rem); }
.service-list { border-top: 1px solid var(--line-dark); }
.service-row { border-bottom: 1px solid var(--line-dark); }
.service-row a {
  position: relative;
  display: grid;
  grid-template-columns: minmax(180px, 1fr) 2fr auto;
  align-items: center;
  gap: clamp(1rem, 4vw, 4rem);
  padding: clamp(1.8rem, 4vh, 3rem) 0.5rem;
  transition: padding-left 0.45s var(--ease);
}
.service-row a:hover { padding-left: 1.8rem; }
.service-row a > * { min-width: 0; }
.service-row h3 {
  font-size: var(--step-3);
  overflow-wrap: break-word;
  hyphens: manual;
  transition: color 0.35s;
}
.service-row a:hover h3 { color: var(--sky); }
.service-row p {
  font-size: var(--step--1);
  color: var(--text-dark-lo);
  max-width: 44ch;
}
.service-arrow {
  font-size: var(--step-2);
  color: var(--sky);
  transform: translateX(-10px);
  opacity: 0;
  transition: transform 0.4s var(--ease), opacity 0.4s;
}
.service-row a:hover .service-arrow { transform: translateX(0); opacity: 1; }

.service-thumb {
  display: none;
  position: fixed;
  z-index: 90;
  top: 0;
  left: 0;
  width: 300px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 6px;
  pointer-events: none;
  opacity: 0;
}
@media (hover: hover) and (pointer: fine) {
  html.anim .service-thumb { display: block; }
}

/* ============================================
   Process
   ============================================ */
.process { padding: clamp(6rem, 14vh, 10rem) 0; background: var(--ink-2); }
.process-grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: start;
}
.process-sticky { position: sticky; top: 14vh; }
.process-sticky h2 { margin-bottom: 1.6rem; }

.process-steps {
  counter-reset: step;
  position: relative;
  padding-left: clamp(1.6rem, 3vw, 2.6rem);
}
.process-steps::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--line-dark);
}
.process-steps::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--sky);
  transform-origin: top;
  transform: scaleY(var(--progress, 0));
}
.process-step { padding: clamp(1.8rem, 4vh, 3rem) 0; }
.process-step + .process-step { border-top: 1px solid var(--line-dark); }
.process-num {
  display: block;
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--sky);
  margin-bottom: 0.9rem;
}
.process-step h3 { font-size: var(--step-2); margin-bottom: 0.8rem; }
.process-step p { font-size: var(--step--1); }

/* ============================================
   Mistakes (häufigste Fehler)
   ============================================ */
.mistakes { padding: clamp(6rem, 14vh, 10rem) 0; }
.mistakes .section-head p { margin-top: 1rem; }
.mistakes-list {
  border-top: 1px solid var(--line-light);
}
.mistakes-item {
  display: grid;
  grid-template-columns: minmax(70px, 130px) 1fr;
  gap: clamp(1rem, 3vw, 3rem);
  padding: clamp(1.6rem, 4vh, 2.6rem) 0.3rem;
  border-bottom: 1px solid var(--line-light);
}
.mistakes-num {
  font-family: var(--font-display);
  font-size: var(--step-3);
  font-style: italic;
  line-height: 1;
  color: var(--blue);
  opacity: 0.55;
}
.mistakes-item h3 {
  font-size: var(--step-1);
  margin-bottom: 0.6rem;
}
.mistakes-item p { font-size: var(--step--1); }
.mistakes-cta {
  margin-top: 2.5rem;
  font-size: var(--step-0);
  color: var(--text-light-hi);
}
.mistakes-cta a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* ============================================
   Founder quote
   ============================================ */
.founder-quote {
  margin: 2.2rem 0 0;
  padding-left: 1.4rem;
  border-left: 2px solid var(--blue);
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--step-1);
  line-height: 1.45;
  color: var(--text-light-hi);
  max-width: 34em;
}

/* ============================================
   Gallery (horizontal)
   ============================================ */
.gallery { padding-top: clamp(6rem, 14vh, 10rem); overflow: clip; }
.gallery-head { margin-bottom: clamp(2.5rem, 6vh, 4rem); }
.gallery-pin { padding-bottom: clamp(5rem, 12vh, 9rem); }
.gallery-track {
  display: flex;
  align-items: stretch;
  gap: clamp(1.2rem, 3vw, 2.5rem);
  padding-inline: var(--gutter);
  width: max-content;
}
.gallery-item {
  width: clamp(300px, 42vw, 620px);
  flex-shrink: 0;
}
.gallery-media {
  overflow: hidden;
  border-radius: 6px;
  aspect-ratio: 4 / 3;
}
.gallery-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.gallery-item:hover .gallery-media img { transform: scale(1.05); }
.gallery-item figcaption {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.2rem;
}
.gallery-tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--sky);
  padding: 0.35em 0.9em;
  border-radius: 100px;
}
.gallery-item h3 { font-size: var(--step-1); }
.gallery-item figcaption p { font-size: var(--step--1); color: var(--text-dark-lo); }
.gallery-item--cta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 2rem;
  border: 1px solid var(--line-dark);
  border-radius: 6px;
  padding: clamp(2rem, 4vw, 3.5rem);
}
.gallery-item--cta p {
  font-family: var(--font-display);
  font-size: var(--step-3);
  line-height: 1.1;
  color: var(--text-dark-hi);
}

/* ============================================
   Voices
   ============================================ */
.voices { padding: clamp(6rem, 14vh, 10rem) 0 clamp(4rem, 10vh, 7rem); }
.voice-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 4vw, 4rem);
  margin-top: 1rem;
}
.voice blockquote {
  font-family: var(--font-display);
  font-size: var(--step-1);
  line-height: 1.4;
  color: var(--text-light-hi);
}
.voice figcaption {
  margin-top: 1.4rem;
  font-size: var(--step--1);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light-lo);
}

/* ============================================
   Places
   ============================================ */
.places { padding: clamp(4rem, 10vh, 7rem) 0; }
.places-grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}
.places-grid h2 { margin-bottom: 1.4rem; }
.place-list { border-top: 1px solid var(--line-light); }
.place-list li { border-bottom: 1px solid var(--line-light); }
.place-list a, .place-list li.place-static {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.3rem 0.3rem;
  transition: padding-left 0.4s var(--ease);
}
.place-name {
  font-family: var(--font-display);
  font-size: var(--step-2);
  color: var(--text-light-hi);
}
.place-note {
  font-size: var(--step--1);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light-lo);
  white-space: nowrap;
}
.place-list a:hover { padding-left: 1.2rem; }
.place-list a:hover .place-name { color: var(--blue); }
.place-list a:hover .place-note { color: var(--blue); }

/* ============================================
   FAQ
   ============================================ */
.faq { padding: clamp(4rem, 10vh, 7rem) 0 clamp(6rem, 14vh, 10rem); }
.faq-grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}
.faq-list { border-top: 1px solid var(--line-light); }
.faq-list details { border-bottom: 1px solid var(--line-light); }
.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.4rem 0.3rem;
  font-family: var(--font-display);
  font-size: var(--step-1);
  color: var(--text-light-hi);
  cursor: pointer;
  list-style: none;
  transition: color 0.3s;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary:hover { color: var(--blue); }
.faq-list summary span {
  font-family: var(--font-body);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--blue);
  transition: transform 0.35s var(--ease);
}
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p {
  padding: 0 0.3rem 1.6rem;
  font-size: var(--step--1);
}

/* ============================================
   Contact
   ============================================ */
.contact {
  padding: clamp(7rem, 16vh, 12rem) 0 clamp(5rem, 10vh, 8rem);
  background:
    radial-gradient(90% 70% at 85% 0%, rgba(43, 93, 135, 0.3), transparent 60%),
    var(--ink);
}
.contact-title {
  font-size: var(--step-4);
  margin-bottom: clamp(3rem, 8vh, 5.5rem);
}
.contact-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: start;
}
.contact-rail > p { margin-bottom: 2.2rem; }
.contact-line {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 1.1rem 0;
  border-top: 1px solid var(--line-dark);
  font-family: var(--font-display);
  font-size: var(--step-1);
  color: var(--text-dark-hi);
  transition: color 0.3s;
}
a.contact-line:hover { color: var(--sky); }
.contact-line span {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dark-lo);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}
.field { display: flex; flex-direction: column; gap: 0.45rem; }
.field > span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dark-lo);
}
.field input, .field select, .field textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-dark);
  padding: 0.55rem 0.1rem;
  color: var(--text-dark-hi);
  border-radius: 0;
  transition: border-color 0.3s;
}
.field select { appearance: none; }
.field select option { color: var(--text-light-hi); background: var(--white); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-bottom-color: var(--sky);
}
.field textarea { resize: vertical; min-height: 90px; }

.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

.consent {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  font-size: var(--step--1);
  color: var(--text-dark-lo);
  max-width: 60ch;
}
.consent a { text-decoration: underline; text-underline-offset: 3px; }
.consent input {
  margin-top: 0.3em;
  accent-color: var(--sky);
  width: 1.05em;
  height: 1.05em;
  flex-shrink: 0;
}
.contact-form .btn { align-self: flex-start; margin-top: 0.5rem; }
.form-status { font-size: var(--step--1); color: var(--sky); min-height: 1.4em; }
.form-status.is-error { color: #E8A9A0; }

/* ============================================
   Footer
   ============================================ */
.site-footer { border-top: 1px solid var(--line-dark); }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding-block: clamp(3rem, 7vh, 5rem);
}
.footer-brand img { margin-bottom: 1.2rem; }
.footer-brand p { font-size: var(--step--1); max-width: 32ch; }
.footer-heading {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dark-lo);
  margin-bottom: 1.1rem;
}
.footer-grid a, .footer-address {
  display: block;
  padding: 0.28rem 0;
  font-size: var(--step--1);
  color: var(--text-dark-hi);
  opacity: 0.85;
  transition: opacity 0.25s, color 0.25s;
}
.footer-grid a:hover { opacity: 1; color: var(--sky); }
.footer-legal {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-block: 1.4rem;
  border-top: 1px solid var(--line-dark);
  font-size: var(--step--1);
  color: var(--text-dark-lo);
}
.footer-legal a {
  color: var(--text-dark-lo);
  margin-left: 1.5rem;
  transition: color 0.25s;
}
.footer-legal a:hover { color: var(--text-dark-hi); }

/* ============================================
   Reveal defaults (JS-gated)
   ============================================ */
html.anim [data-reveal] {
  opacity: 0;
  transform: translateY(40px);
}

/* ============================================
   Legal pages
   ============================================ */
.legal-nav a {
  font-size: var(--step--1);
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text-dark-hi);
  opacity: 0.85;
}
.legal-nav a:hover { opacity: 1; }
.legal-page {
  background: var(--paper);
  color: var(--text-light-hi);
  padding: clamp(9rem, 18vh, 12rem) 0 clamp(4rem, 10vh, 7rem);
}
.legal-page h1 { font-size: var(--step-3); }
.legal-page h2 {
  font-size: var(--step-1);
  margin: 2.2em 0 0.6em;
}
.legal-page p { color: var(--text-light-lo); }
.legal-page p + p { margin-top: 0.8em; }
.legal-page a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }
.legal-note {
  margin-top: 1.5rem;
  padding: 1rem 1.2rem;
  border: 1px solid var(--line-light);
  border-radius: 6px;
  font-size: var(--step--1);
  color: var(--text-light-lo);
  max-width: 62ch;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
  .about-grid, .process-grid, .places-grid, .faq-grid, .contact-grid {
    grid-template-columns: 1fr;
  }
  .about-media { position: static; max-width: 440px; }
  .process-sticky { position: static; margin-bottom: 1rem; }
  .voice-list { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .service-row a { grid-template-columns: 1fr; gap: 0.6rem; }
  .service-arrow { display: none; }
}

@media (max-width: 820px) {
  .main-nav {
    position: fixed;
    inset: 0;
    z-index: -1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ink);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--ease);
  }
  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
  }
  .main-nav ul {
    flex-direction: column;
    align-items: center;
    gap: 1.6rem;
  }
  .main-nav a {
    font-family: var(--font-display);
    font-size: var(--step-2);
    letter-spacing: 0;
  }
  .nav-toggle { display: flex; }
  .brand img { height: 58px; }
  .header-phone { display: none; }
  .site-header .btn-solid { display: none; }
  .hero-scrollhint { display: none; }
  html.anim .reveal-frame { clip-path: inset(12% 8% 12% 8% round 6px); }
  .field-row { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-legal { flex-direction: column; }
  .footer-legal a { margin-left: 0; margin-right: 1.5rem; }
}

/* ============================================
   Reduced motion
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
