:root {
  --ink: #11110f;
  --paper: #f3f0e8;
  --paper2: #e9e4d9;
  --gold: #a7864b;
  --muted: #6e6a61;
  --white: #fbfaf7;
  --line: rgba(17, 17, 15, 0.14);
  --stage: #171714;
  --serif: Georgia, "Times New Roman", Times, serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1.05rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }
a:hover { color: var(--gold); }

p { margin: 0; }
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.08;
  margin: 0;
  letter-spacing: -0.02em;
}

h2 { font-size: clamp(2.2rem, 4.6vw, 4.4rem); }
h3 { font-size: clamp(1.4rem, 2.2vw, 2.05rem); }

.wrap { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.muted { color: var(--muted); }

.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}

.skip {
  position: absolute;
  left: 12px;
  top: -48px;
  background: var(--ink);
  color: var(--white);
  padding: 8px 14px;
  z-index: 100;
}
.skip:focus { top: 12px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border: 1px solid var(--ink);
  padding: 14px 22px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
  background: var(--ink);
  color: var(--white);
}
.btn:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }
.btn.ghost { background: transparent; color: var(--ink); }
.btn.ghost:hover { background: var(--ink); color: var(--white); }
.btn.light { background: var(--white); color: var(--ink); border-color: var(--white); }
.btn.light:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }

/* Header */
header.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto 0;
  background: rgba(243, 240, 232, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

nav.primary {
  height: 80px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  margin-right: auto;
  display: flex;
  align-items: center;
  color: var(--ink);
}
.brand:hover { color: var(--ink); }
.brand img {
  height: 46px;
  width: auto;
}

.navlinks {
  display: flex;
  gap: 22px;
  align-items: center;
  font-size: 0.74rem;
  letter-spacing: 0.06em;
}

.navlinks a:hover { color: var(--gold); }

.nav-cta {
  padding: 10px 14px;
  border: 1px solid var(--ink);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.67rem;
  letter-spacing: 0.1em;
}
.nav-cta:hover {
  background: var(--ink);
  color: var(--white);
}

.menu {
  display: none;
  border: 0;
  background: none;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  color: var(--ink);
  padding: 6px;
}

/* Hero */
.hero {
  min-height: 100svh;
  padding-top: 80px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  padding: clamp(72px, 10vw, 140px) max(24px, calc((100vw - 1180px) / 2)) 72px max(24px, calc((100vw - 1180px) / 2));
  padding-right: clamp(32px, 6vw, 96px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero h1 {
  font-size: clamp(2.8rem, 6.2vw, 6.4rem);
  max-width: 920px;
  letter-spacing: -0.04em;
}

.hero .lead {
  font-family: var(--serif);
  font-size: clamp(1.12rem, 1.7vw, 1.42rem);
  max-width: 640px;
  margin: 28px 0 34px;
  color: #393730;
  line-height: 1.45;
}

.hero-art {
  position: relative;
  min-height: 560px;
  margin: 0;
  background: var(--stage);
  overflow: hidden;
}
.hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 18%;
}
.quote-mark {
  position: absolute;
  right: 8%;
  top: 14%;
  font-family: var(--serif);
  font-size: 13rem;
  color: rgba(167, 134, 75, 0.42);
  line-height: 1;
}
.stage {
  position: absolute;
  inset: auto 9% 8% 9%;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  padding-top: 20px;
  color: #e9e4d9;
}
.stage strong {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
}
.stage span {
  display: block;
  color: #a9a59c;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-top: 8px;
}

/* Sections */
section.block { padding: 110px 0; border-bottom: 1px solid var(--line); }

.section-head {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 48px;
  margin-bottom: 64px;
  align-items: end;
}
.section-head p {
  max-width: 700px;
  font-size: 1.08rem;
  color: var(--muted);
}

.pedigree {
  background: var(--ink);
  color: var(--white);
  padding: 48px 0;
}
.pedigree .wrap {
  display: grid;
  grid-template-columns: 0.34fr 1.66fr;
  gap: 40px;
  align-items: start;
}
.pedigree p {
  font-family: var(--serif);
  font-size: clamp(1.12rem, 2vw, 1.55rem);
  line-height: 1.5;
  color: #ded9cf;
}
.pedigree b { color: #fff; font-weight: 400; }

.why-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: start;
}
.why-copy {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.3vw, 2.05rem);
  line-height: 1.32;
  color: #2c2a24;
}
.points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 36px;
}
.points div { border-top: 1px solid var(--ink); padding-top: 14px; }
.points strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.32rem;
  font-weight: 400;
  margin-bottom: 8px;
}
.points p { color: var(--muted); font-size: 0.95rem; }

.method { background: var(--paper2); }
.method-grid,
.curr-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.curr-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.card {
  background: var(--paper2);
  padding: 36px;
  min-height: 300px;
}
.card .num {
  font-family: var(--serif);
  font-size: 3.4rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 42px;
}
.card h3 { margin-bottom: 16px; }
.card p { color: var(--muted); }

.curr-item {
  background: var(--paper);
  padding: 28px 26px;
  min-height: 0;
}
.curr-item h3 {
  font-size: 1.28rem;
  margin-bottom: 10px;
}
.curr-item p { color: var(--muted); font-size: 0.95rem; }

.formats { background: var(--stage); color: var(--white); }
.formats .section-head p { color: #bcb7ad; }
.format-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.format-grid .format:nth-child(3) {
  grid-column: 1 / -1;
  min-height: 0;
}
.format {
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 44px;
  display: flex;
  flex-direction: column;
  min-height: 520px;
}
.format .tag {
  font-size: 0.7rem;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: #c7a667;
  margin-bottom: 32px;
}
.format h3 { font-size: clamp(2rem, 3vw, 2.55rem); margin-bottom: 12px; }
.format .subtitle {
  font-family: var(--serif);
  font-style: italic;
  color: #c8c3ba;
  font-size: 1.06rem;
  margin-bottom: 32px;
}
.format dt {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #c7a667;
  margin-top: 22px;
}
.format dd { margin: 7px 0 0; color: #d0ccc4; }
.format .note {
  margin-top: auto;
  padding-top: 32px;
  color: #9f9a91;
  font-style: italic;
}

.pilot {
  margin-top: 22px;
  border: 1px solid rgba(167, 134, 75, 0.45);
  padding: 28px 36px;
  display: grid;
  grid-template-columns: 0.4fr 1.6fr;
  gap: 28px;
  align-items: center;
}
.pilot h3 { font-size: 1.7rem; }
.pilot p { color: #c8c3ba; }

.bio-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 72px;
}
.portrait {
  min-height: 640px;
  background: var(--stage);
  position: relative;
  overflow: hidden;
}
.portrait img {
  width: 100%;
  height: 100%;
  min-height: 640px;
  object-fit: cover;
  object-position: 50% 18%;
  display: block;
}
.portrait::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 38%;
  background: linear-gradient(180deg, transparent, rgba(17, 17, 15, 0.55));
  pointer-events: none;
}
.portrait figcaption {
  position: absolute;
  left: 28px;
  bottom: 24px;
  color: #e9e4d9;
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  z-index: 1;
}
.bio-copy blockquote {
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.4vw, 2.2rem);
  line-height: 1.28;
  margin: 22px 0 32px;
  border-left: 2px solid var(--gold);
  padding-left: 24px;
}
.bio-copy p { color: #4f4b43; margin-bottom: 18px; }
.bio-copy a.ext { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }


.lieder { background: var(--paper2); }
.lieder-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.lieder-grid p { color: #4f4b43; margin-bottom: 16px; }
.lieder-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.lieder-list li {
  border-top: 1px solid var(--line);
  padding: 14px 0;
  font-family: var(--serif);
  font-size: 1.15rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: start;
}
.contact-grid .lead {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  color: #393730;
  margin: 18px 0 28px;
  max-width: 36ch;
}
.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 32px;
}
.contact-card h3 { margin-bottom: 16px; }
.contact-card p { color: var(--muted); }
.contact-card a { color: var(--ink); }
.contact-card a:hover { color: var(--gold); }

footer.site-footer {
  background: var(--stage);
  color: #aaa69d;
  padding: 58px 0 34px;
  font-size: 0.86rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 0.9fr;
  gap: 40px;
}
.footer-brand img {
  height: 42px;
  width: auto;
  filter: invert(1);
  margin-bottom: 16px;
}
.footer-grid strong { color: #fff; font-weight: 600; display: block; margin-bottom: 8px; }
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 12px; }
.footer-links a:hover { color: #fff; }
.legal {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 40px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  color: #8d8980;
}

/* Legal pages */
.legal-page { padding: 140px 0 90px; }
.legal-page h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); margin: 12px 0 28px; }
.legal-page h2 { font-size: 1.7rem; margin: 36px 0 12px; }
.legal-page p, .legal-page li { color: #4f4b43; max-width: 72ch; }
.legal-page ul { padding-left: 1.2em; }
.legal-page li { margin: 6px 0; }
.legal-page address { font-style: normal; margin: 12px 0 20px; }

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

::selection { background: rgba(167, 134, 75, 0.28); }

@media (max-width: 920px) {
  .navlinks {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 24px 24px;
    gap: 16px;
  }
  .navlinks.open { display: flex; }
  .menu { display: block; }
  .hero { grid-template-columns: 1fr; }
  .hero-art { min-height: 46vh; }
  .section-head,
  .pedigree .wrap,
  .bio-grid,
  .why-grid,
  .format-grid,
  .lieder-grid,
  .contact-grid,
  .pilot { grid-template-columns: 1fr; }
  .method-grid, .curr-grid, .points { grid-template-columns: 1fr; }
  .card, .format { min-height: auto; }
  .portrait { min-height: 420px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .legal { flex-direction: column; }
}

@media (max-width: 600px) {
  .wrap { width: min(100% - 32px, 1180px); }
  section.block { padding: 78px 0; }
  .hero-copy { padding-top: 88px; padding-right: 24px; }
  .hero h1 { font-size: 2.7rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .format, .card { padding: 28px; }
  .brand img { height: 38px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn { transition: none; }
}


.format-photo {
  margin: 8px 0 28px;
  overflow: hidden;
}
.format-photo img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: 50% 45%;
  display: block;
}

.probe-photos {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 48px;
}
.probe-photos figure {
  margin: 0;
  overflow: hidden;
  background: var(--stage);
}
.probe-photos img {
  width: 100%;
  height: auto;
  aspect-ratio: 1.86 / 1;
  object-fit: cover;
  object-position: 50% 50%;
  display: block;
}
.probe-photos figcaption {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--muted);
  margin-top: 10px;
}

.offer-hero {
  padding: 140px 0 72px;
  border-bottom: 1px solid var(--line);
}
.offer-hero h1 { font-size: clamp(2.6rem, 5.4vw, 5.2rem); margin: 14px 0 22px; max-width: 18ch; }
.offer-hero .lead {
  font-family: var(--serif);
  font-size: clamp(1.12rem, 1.7vw, 1.42rem);
  max-width: 46ch;
  color: #393730;
  line-height: 1.45;
  margin-bottom: 32px;
}
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }
.offer-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}
.offer-copy p { max-width: 58ch; }
.offer-dl { margin: 28px 0 0; }
.offer-dl dt {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-top: 18px;
}
.offer-dl dd { margin: 6px 0 0; max-width: 58ch; }
.related { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 12px; }
.related a {
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  font-family: var(--serif);
  font-size: 1.2rem;
}
@media (max-width: 920px) {
  .offer-grid { grid-template-columns: 1fr; }
  .probe-photos { grid-template-columns: 1fr; }
  .probe-photos img, .format-photo img { height: 280px; }
}
