@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500&family=Outfit:wght@300;400;500;600&display=swap");

:root {
  --ink: #1a1612;
  --ink-soft: #5c5348;
  --navy: #2a2118;
  --navy-2: #3d3226;
  --navy-deep: #16110c;
  --paper: #f4efe4;
  --paper-2: #e8dfce;
  --cream: #faf6ee;
  --wine: #8b4a2a;
  --wine-2: #a85c36;
  --gold: #c9a15b;
  --gold-2: #ddc07a;
  --line: rgba(26, 22, 18, 0.1);
  --line-strong: rgba(26, 22, 18, 0.18);
  --shadow: 0 18px 50px rgba(22, 17, 12, 0.12);
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Outfit", system-ui, sans-serif;
  --wrap: 1180px;
  --header: 76px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--sans);
  font-weight: 400;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

p {
  margin: 0 0 1em;
}

p:last-child {
  margin-bottom: 0;
}

.skip {
  position: absolute;
  left: 12px;
  top: -48px;
  background: var(--gold);
  color: var(--navy-deep);
  padding: 8px 12px;
  z-index: 80;
}

.skip:focus {
  top: 12px;
}

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

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--wine);
  margin-bottom: 14px;
}

.kicker::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.kicker.light {
  color: var(--gold-2);
}

.lead {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 500;
  line-height: 1.45;
  color: var(--ink);
}

.muted {
  color: var(--ink-soft);
}

.topbar {
  background: var(--navy-deep);
  color: rgba(250, 246, 238, 0.72);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 8px 0;
}

.topbar .wrap {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(250, 246, 238, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  height: var(--header);
}

.site-header.is-stuck {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px rgba(22, 17, 12, 0.06);
}

.site-header .wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img,
.brand svg {
  width: 42px;
  height: 48px;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-copy strong {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.brand-copy span {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 8px 10px;
  color: var(--ink-soft);
  position: relative;
}

.nav a:hover,
.nav a.is-active {
  color: var(--navy);
}

.nav a.is-active::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 2px;
  height: 1px;
  background: var(--gold);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line-strong);
  background: transparent;
  border-radius: 2px;
  padding: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  background: var(--navy);
  margin: 5px auto;
}

.nav-drawer {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.3s var(--ease);
}

.btn-gold {
  background: var(--gold);
  color: var(--navy-deep);
}

.btn-gold:hover {
  background: var(--gold-2);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(250, 246, 238, 0.28);
  color: var(--cream);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-line {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}

.btn-line:hover {
  background: var(--navy);
  color: var(--cream);
}

.hero {
  position: relative;
  background:
    radial-gradient(1200px 500px at 80% -10%, rgba(201, 161, 91, 0.18), transparent 55%),
    linear-gradient(165deg, var(--navy-deep) 0%, var(--navy) 58%, #4a3828 100%);
  color: var(--cream);
  overflow: hidden;
}

.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='.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.045'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: 88px 0 92px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: end;
}

.hero h1 {
  font-size: clamp(2.4rem, 5.6vw, 4.8rem);
  font-weight: 600;
  max-width: 14ch;
  margin: 0 0 22px;
}

.hero .lead {
  color: rgba(250, 246, 238, 0.82);
  max-width: 42ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-aside {
  border-left: 1px solid rgba(201, 161, 91, 0.35);
  padding: 8px 0 8px 32px;
}

.hero-aside p {
  font-size: 15px;
  color: rgba(250, 246, 238, 0.72);
}

.hero-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 36px;
}

.hero-meta b {
  display: block;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  color: var(--gold);
}

.hero-meta span {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(250, 246, 238, 0.55);
}

.section {
  padding: 88px 0;
}

.section-head {
  max-width: 720px;
  margin-bottom: 42px;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 14px;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.chapters {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.chapter {
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 28px 26px 24px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  transition: 0.35s var(--ease);
}

.chapter:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(201, 161, 91, 0.55);
}

.chapter em {
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.chapter h3 {
  font-size: 28px;
  margin: 14px 0 12px;
}

.chapter p {
  color: var(--ink-soft);
  font-size: 14.5px;
  flex: 1;
}

.chapter span {
  margin-top: 18px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
}

.band {
  background: var(--navy);
  color: var(--cream);
}

.band h2,
.band .lead {
  color: var(--cream);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(250, 246, 238, 0.12);
  border: 1px solid rgba(250, 246, 238, 0.12);
}

.stat {
  background: var(--navy);
  padding: 32px 28px;
}

.stat b {
  display: block;
  font-family: var(--serif);
  font-size: 34px;
  color: var(--gold);
}

.stat span {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  color: rgba(250, 246, 238, 0.7);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  border: 1px solid var(--line-strong);
  padding: 10px 14px;
  font-size: 13px;
  background: var(--cream);
}

.page-hero {
  background:
    linear-gradient(180deg, rgba(22, 17, 12, 0.08), transparent 70%),
    var(--paper);
  padding: 64px 0 28px;
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  max-width: 16ch;
}

.prose {
  font-size: 17px;
  max-width: 68ch;
}

.prose h2 {
  font-size: 32px;
  margin: 1.4em 0 0.5em;
}

.prose h3 {
  font-size: 24px;
  margin: 1.2em 0 0.45em;
}

.prose a {
  color: var(--wine);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.card {
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 28px;
}

.card h3 {
  font-size: 26px;
  margin-bottom: 10px;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.list-clean {
  list-style: none;
  margin: 0;
  padding: 0;
}

.list-clean li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 12px;
  align-items: baseline;
}

.list-clean li::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--gold);
  flex: 0 0 7px;
  transform: rotate(45deg);
  position: relative;
  top: -1px;
}

.quote {
  margin: 0;
  padding: 28px 32px;
  border-left: 2px solid var(--gold);
  background: var(--cream);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.4vw, 1.8rem);
  font-weight: 500;
  line-height: 1.35;
}

.flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.flow article {
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 28px 24px;
}

.flow b {
  display: block;
  font-family: var(--serif);
  font-size: 42px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 12px;
}

.flow h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.answer {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 22px;
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 28px;
}

.answer b {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--wine);
}

.answer small {
  display: block;
  margin-top: 6px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--ink-soft);
}

.source {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.source time {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--wine);
}

.source h3 {
  font-size: 22px;
}

.source a {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 36px;
}

.monogram {
  width: 100%;
  max-width: 340px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 70% 20%, rgba(201, 161, 91, 0.22), transparent 46%),
    var(--navy);
  color: var(--cream);
  border: 1px solid var(--line);
}

.monogram strong {
  font-family: var(--serif);
  font-size: clamp(4rem, 8vw, 6rem);
  font-weight: 600;
  color: var(--gold);
}

label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 8px;
  color: var(--ink-soft);
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  background: var(--cream);
  padding: 12px 14px;
  color: var(--ink);
  outline: none;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
}

.form-row {
  margin-bottom: 16px;
}

.form-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-status {
  margin-top: 12px;
  font-size: 14px;
}

.form-status.is-error {
  color: var(--wine);
}

.form-status.is-ok {
  color: #3d5a3a;
}

.kfz-hp {
  position: absolute;
  left: -9999px;
  height: 0;
  overflow: hidden;
}

.site-footer {
  background: var(--navy-deep);
  color: rgba(250, 246, 238, 0.72);
  padding: 56px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(250, 246, 238, 0.1);
}

.site-footer h2,
.site-footer h3 {
  color: var(--cream);
}

.site-footer h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

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

.footer-links a {
  display: block;
  margin-bottom: 6px;
}

.legal {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 18px;
  font-size: 12px;
  color: rgba(250, 246, 238, 0.45);
}

html.js [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: 0.8s var(--ease);
}

html.js [data-reveal].is-in {
  opacity: 1;
  transform: none;
}

@media (max-width: 1180px) {
  .hero-inner,
  .split,
  .chapters,
  .stats,
  .grid-2,
  .grid-3,
  .flow,
  .contact-grid,
  .footer-grid,
  .answer,
  .source {
    grid-template-columns: 1fr;
  }

  .hero-aside {
    border-left: 0;
    border-top: 1px solid rgba(201, 161, 91, 0.35);
    padding: 28px 0 0;
  }

  .nav {
    display: none;
  }

  .nav-toggle {
    display: inline-block;
  }

  .nav-drawer {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: var(--header) 0 auto 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    padding: 12px 24px 24px;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    z-index: 39;
    box-shadow: var(--shadow);
  }

  .nav-drawer.is-open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .nav-drawer a {
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    font-size: 16px;
  }

  .brand-copy span {
    display: none;
  }
}

@media (max-width: 640px) {
  .wrap {
    width: min(var(--wrap), calc(100% - 28px));
  }

  .hero-inner,
  .section {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .form-two,
  .hero-meta {
    grid-template-columns: 1fr;
  }
}

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

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
