/* ============================================================
   Der Steuerberater — Premium-edler Look
   Cream + Deep Navy + Bronze-Akzent. Serifige Typografie für
   Headings (Cormorant Garamond), Inter für Fließtext.
   Ziel: Vertrauen, Seriosität, „Kanzlei mit Tradition".
   ============================================================ */

:root {
  /* Paper / Cream-Welt */
  --paper:        #efe9dc;
  --paper-soft:   #f7f3ea;
  --paper-deep:   #e3dccb;
  --surface:      #ffffff;

  /* Navy-Tinte */
  --ink:          #0e1a2b;
  --ink-soft:     #1f2d40;
  --ink-mid:      #41526a;
  --ink-muted:    #7a8294;
  --line:         #d6cdb8;
  --line-soft:    #e6dfcc;

  /* Brand-Akzent: Antique Brass */
  --brass:        #9a7b3f;
  --brass-deep:   #6f562a;
  --brass-soft:   rgba(154, 123, 63, 0.10);
  --brass-glow:   rgba(154, 123, 63, 0.22);

  /* Sekundär: Forest */
  --forest:       #2d4034;
  --forest-soft:  rgba(45, 64, 52, 0.10);

  --shadow-sm: 0 1px 2px rgba(14, 26, 43, 0.06);
  --shadow-md: 0 8px 24px rgba(14, 26, 43, 0.08);
  --shadow-lg: 0 18px 48px rgba(14, 26, 43, 0.12);
  --shadow-xl: 0 28px 72px rgba(14, 26, 43, 0.18);
  --shadow-brass: 0 18px 40px rgba(154, 123, 63, 0.22);

  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 16px;
  --r-pill: 999px;

  --container: 1180px;
  --nav-h: 84px;
  --transition: 280ms cubic-bezier(.22,.61,.36,1);

    --demo-banner-bg: #6f562a;
    --demo-banner-fg: #efe9dc;
    --demo-banner-accent: #d4af37;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  padding-top: var(--nav-h);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', 'Times New Roman', serif;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.005em;
  margin: 0 0 0.5em;
  color: var(--ink);
}
h1 { font-size: clamp(2.6rem, 5.6vw, 4.4rem); font-weight: 500; letter-spacing: -0.015em; }
h2 { font-size: clamp(2rem, 3.6vw, 2.9rem); }
h3 { font-size: clamp(1.3rem, 2.0vw, 1.6rem); }
h4 { font-size: 1.15rem; font-weight: 600; }

h1 em, h2 em, h3 em {
  font-style: italic;
  color: var(--brass-deep);
  font-family: 'Cormorant Garamond', serif;
}

p { margin: 0 0 1em; color: var(--ink-soft); }

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

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

/* ─── EYEBROW ───────────────────────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass-deep);
  margin-bottom: 22px;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--brass);
}

/* ─── BUTTONS ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: var(--r-md);
  font-weight: 600;
  font-size: 0.96rem;
  letter-spacing: 0.01em;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
}
.btn--primary {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.btn--primary:hover {
  background: var(--brass);
  border-color: var(--brass);
  transform: translateY(-1px);
  box-shadow: var(--shadow-brass);
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--ghost:hover {
  background: var(--ink);
  color: var(--paper);
}
.btn--brass {
  background: var(--brass);
  color: white;
  border-color: var(--brass);
}
.btn--brass:hover {
  background: var(--brass-deep);
  border-color: var(--brass-deep);
  transform: translateY(-1px);
}
.btn--xl { padding: 18px 32px; font-size: 1.02rem; }
.btn svg { transition: transform var(--transition); }
.btn:hover svg { transform: translateX(3px); }

/* ─── NAV ───────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(239, 233, 220, 0.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
  z-index: 100;
}
.nav__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.005em;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav__brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1.5px solid var(--brass);
  border-radius: 50%;
  color: var(--brass);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0;
}
.nav__links {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__link {
  font-size: 0.93rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--ink-soft);
  position: relative;
  padding: 6px 0;
  transition: var(--transition);
}
.nav__link:hover { color: var(--ink); }
.nav__link.is-current::after,
.nav__link:hover::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--brass);
}
.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--r-md);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: 1.5px solid var(--ink);
  transition: var(--transition);
}
.nav__cta:hover {
  background: var(--brass);
  border-color: var(--brass);
}
.nav__burger {
  display: none;
  background: transparent;
  border: 0;
  width: 36px;
  height: 36px;
  cursor: pointer;
  position: relative;
}
.nav__burger span {
  position: absolute;
  left: 7px; right: 7px;
  height: 1.5px;
  background: var(--ink);
  transition: var(--transition);
}
.nav__burger span:nth-child(1) { top: 12px; }
.nav__burger span:nth-child(2) { top: 18px; }
.nav__burger span:nth-child(3) { top: 24px; }

/* ─── HERO ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 60px 0 90px;
  overflow: hidden;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 70px;
  align-items: center;
}
.hero__sub {
  font-size: 1.12rem;
  color: var(--ink-soft);
  margin: 18px 0 32px;
  max-width: 540px;
  line-height: 1.7;
}
.hero__cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero__assurance {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}
.hero__assurance-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--ink-mid);
  font-weight: 500;
}
.hero__assurance-item svg {
  width: 18px; height: 18px;
  color: var(--brass);
}

.hero__visual {
  position: relative;
  aspect-ratio: 4/5;
  max-width: 520px;
  margin-left: auto;
  width: 100%;
}
.hero__image {
  position: absolute;
  inset: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  background: var(--paper-deep);
}
.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__image::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 50%;
  background: linear-gradient(180deg, transparent 0%, rgba(14, 26, 43, 0.05) 30%, rgba(14, 26, 43, 0.78) 100%);
  pointer-events: none;
}
.hero__overlay {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  display: flex;
  gap: 14px;
  align-items: stretch;
  z-index: 2;
}
.hero__overlay-card {
  flex: 1;
  background: rgba(247, 243, 234, 0.94);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(154, 123, 63, 0.30);
  border-radius: var(--r-md);
  padding: 14px 16px;
  box-shadow: 0 8px 24px rgba(14, 26, 43, 0.18);
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.hero__overlay-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1;
  color: var(--brass-deep);
  flex-shrink: 0;
}
.hero__overlay-num small {
  font-size: 0.46em;
  margin-left: 1px;
  font-weight: 600;
  color: var(--brass-deep);
  letter-spacing: -0.02em;
}
.hero__overlay-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.hero__overlay-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass-deep);
  font-weight: 600;
  margin-bottom: 2px;
}
.hero__overlay-value {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.02rem;
  color: var(--ink);
  line-height: 1.2;
}

/* ─── SECTIONS ──────────────────────────────────────────────── */
.section {
  padding: 100px 0;
  position: relative;
}
.section--alt   { background: var(--paper-soft); }
.section--paper { background: var(--paper); }
.section--ink   { background: var(--ink); color: var(--paper); }
.section--ink h1, .section--ink h2, .section--ink h3 { color: var(--paper); }
.section--ink p { color: rgba(239, 233, 220, 0.8); }
.section--ink .eyebrow { color: var(--brass); }
.section--ink .eyebrow::before { background: var(--brass); }

.section__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 70px;
}
.section__head .lead {
  font-size: 1.12rem;
  color: var(--ink-mid);
  margin-top: 18px;
}

/* ─── STATS ─────────────────────────────────────────────────── */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 50px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat {
  text-align: center;
  position: relative;
}
.stat:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: var(--line);
}
.stat__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5vw, 3.8rem);
  font-weight: 500;
  color: var(--brass-deep);
  line-height: 1;
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
}
.stat__num small {
  font-size: 0.5em;
  color: var(--ink-mid);
}
.stat__label {
  font-size: 0.86rem;
  color: var(--ink-mid);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
  margin-top: 12px;
}

/* ─── LEISTUNGEN ───────────────────────────────────────────── */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.service {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.service:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brass);
}
.service__image {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--paper-deep);
}
.service__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(.22,.61,.36,1);
}
.service:hover .service__image img { transform: scale(1.04); }
.service__body {
  padding: 32px 30px 36px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.service__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--brass);
  color: var(--brass);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.service__icon svg { width: 20px; height: 20px; }
.service__title {
  margin-bottom: 10px;
}
.service__desc {
  color: var(--ink-soft);
  font-size: 0.95rem;
  flex: 1;
  margin-bottom: 18px;
}
.service__more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--brass-deep);
  border-bottom: 1px solid var(--brass);
  padding-bottom: 2px;
  align-self: flex-start;
  transition: var(--transition);
}
.service__more:hover { gap: 14px; }

/* ─── PROZESS / STEPS ───────────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  position: relative;
}
.step {
  position: relative;
  padding: 36px 26px 30px;
  background: rgba(239, 233, 220, 0.03);
  border: 1px solid rgba(239, 233, 220, 0.12);
  border-radius: var(--r-lg);
}
.step__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.2rem;
  font-weight: 500;
  color: var(--brass);
  line-height: 1;
  margin-bottom: 14px;
}
.step__title { margin-bottom: 8px; }
.step__desc {
  font-size: 0.94rem;
  color: rgba(239, 233, 220, 0.76);
}

/* ─── ABOUT-SPLIT ───────────────────────────────────────────── */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.about-split__media {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.about-split__media img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.about-split__quote {
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 30px;
  background: rgba(14, 26, 43, 0.92);
  backdrop-filter: blur(10px);
  color: var(--paper);
  padding: 20px 24px;
  border-left: 3px solid var(--brass);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.4;
}
.about-split__signature {
  display: block;
  margin-top: 8px;
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 600;
}
.about-split__body h2 { margin-bottom: 24px; }
.about-split__features {
  list-style: none;
  margin: 30px 0 0;
  padding: 0;
}
.about-split__features li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
  color: var(--ink-soft);
}
.about-split__features svg {
  flex-shrink: 0;
  color: var(--brass);
  margin-top: 6px;
}

/* ─── TEAM ──────────────────────────────────────────────────── */
.team {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 36px;
}
.team__card { text-align: left; }
.team__photo {
  aspect-ratio: 4/5;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--paper-deep);
  margin-bottom: 22px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}
.team__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(.22,.61,.36,1);
}
.team__card:hover .team__photo {
  box-shadow: var(--shadow-lg);
}
.team__card:hover .team__photo img { transform: scale(1.03); }
.team__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 500;
  margin-bottom: 4px;
}
.team__role {
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass-deep);
  font-weight: 600;
  margin-bottom: 14px;
}
.team__bio {
  font-size: 0.94rem;
  color: var(--ink-soft);
}

/* ─── TRUST / VORTEILE ──────────────────────────────────────── */
.trust {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 36px;
}
.trust__item {
  display: flex;
  gap: 22px;
  padding: 32px 26px;
  background: var(--paper-soft);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  transition: var(--transition);
}
.trust__item:hover {
  border-color: var(--brass);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.trust__icon {
  flex-shrink: 0;
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1.5px solid var(--brass);
  color: var(--brass);
  display: grid;
  place-items: center;
}
.trust__icon svg { width: 22px; height: 22px; }
.trust__title { margin-bottom: 6px; }
.trust__desc {
  font-size: 0.93rem;
  color: var(--ink-soft);
}

/* ─── CTA-BAND ──────────────────────────────────────────────── */
.cta-band {
  position: relative;
  padding: 100px 0;
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/cta-desk.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.22;
  filter: contrast(1.1);
}
.cta-band__inner {
  position: relative;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.cta-band h2 { color: var(--paper); margin-bottom: 22px; }
.cta-band p {
  color: rgba(239, 233, 220, 0.84);
  font-size: 1.08rem;
  margin-bottom: 36px;
}
.cta-band__row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-band .btn--ghost {
  color: var(--paper);
  border-color: var(--paper);
}
.cta-band .btn--ghost:hover {
  background: var(--paper);
  color: var(--ink);
}

/* ─── FAQ ───────────────────────────────────────────────────── */
.faq {
  max-width: 820px;
  margin: 0 auto;
}
.faq__item {
  border-bottom: 1px solid var(--line);
}
.faq__item:first-child { border-top: 1px solid var(--line); }
.faq__q {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 26px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.faq__q:hover { color: var(--brass-deep); }
.faq__q-icon {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1.5px solid var(--brass);
  color: var(--brass);
  display: grid;
  place-items: center;
  transition: var(--transition);
}
.faq__q-icon svg { width: 14px; height: 14px; transition: transform var(--transition); }
.faq__item.is-open .faq__q-icon svg { transform: rotate(45deg); }
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 320ms ease;
  color: var(--ink-soft);
  font-size: 1rem;
}
.faq__a-inner { padding: 0 0 28px; max-width: 720px; }
.faq__item.is-open .faq__a { max-height: 600px; }

/* ─── KONTAKT ───────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-info {
  background: var(--paper-soft);
  border: 1px solid var(--line);
  padding: 44px 40px;
  border-radius: var(--r-lg);
}
.contact-info__head { margin-bottom: 28px; }
.contact-info__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.contact-info__list li {
  display: flex;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-soft);
  align-items: flex-start;
}
.contact-info__list li:last-child { border-bottom: 0; }
.contact-info__icon {
  flex-shrink: 0;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--brass-soft);
  color: var(--brass-deep);
  display: grid;
  place-items: center;
}
.contact-info__icon svg { width: 17px; height: 17px; }
.contact-info__label {
  display: block;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--brass-deep);
  margin-bottom: 4px;
}
.contact-info__value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.18rem;
  color: var(--ink);
}
.contact-info__value a:hover { color: var(--brass-deep); }

.contact-form {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 44px 40px;
  border-radius: var(--r-lg);
}
.contact-form__head { margin-bottom: 22px; }
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
  color: var(--ink);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 16px;
  background: var(--paper-soft);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  font: inherit;
  color: var(--ink);
  transition: var(--transition);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--brass);
  background: var(--surface);
  box-shadow: 0 0 0 3px var(--brass-soft);
}
.field textarea { min-height: 130px; resize: vertical; }
.field--row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field--check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.86rem;
  color: var(--ink-mid);
}
.field--check input { width: auto; margin-top: 4px; }

/* ─── HEADERLESS PAGE-HEAD ──────────────────────────────────── */
.page-head {
  padding: 70px 0 50px;
  text-align: center;
}
.page-head h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  margin-bottom: 14px;
}
.page-head .lead {
  max-width: 660px;
  margin: 0 auto;
  color: var(--ink-mid);
  font-size: 1.1rem;
}

/* ─── FOOTER ────────────────────────────────────────────────── */
.footer {
  padding: 80px 0 36px;
  background: var(--paper-deep);
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 50px;
}
.footer__brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 16px;
  display: inline-block;
}
.footer__tag {
  font-size: 0.94rem;
  color: var(--ink-mid);
  max-width: 320px;
}
.footer__col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass-deep);
  font-weight: 600;
  margin-bottom: 18px;
}
.footer__col ul { list-style: none; padding: 0; margin: 0; }
.footer__col li { margin-bottom: 10px; font-size: 0.94rem; }
.footer__col a:hover { color: var(--brass-deep); }
.footer__bottom {
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.84rem;
  color: var(--ink-muted);
}

/* ─── COOKIE-BANNER ─────────────────────────────────────────── */
.cookie {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 480px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 24px 28px;
  box-shadow: var(--shadow-xl);
  z-index: 200;
  transform: translateY(150%);
  opacity: 0;
  transition: transform 480ms ease, opacity 320ms ease;
}
.cookie.is-visible {
  transform: translateY(0);
  opacity: 1;
}
.cookie h4 { margin-bottom: 10px; }
.cookie p {
  font-size: 0.9rem;
  margin-bottom: 18px;
  color: var(--ink-soft);
}
.cookie__row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.cookie__row .btn { padding: 10px 18px; font-size: 0.86rem; }
.cookie a { color: var(--brass-deep); border-bottom: 1px solid var(--brass-soft); }

/* ─── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 960px) {
  .hero__inner,
  .about-split,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .hero__visual { max-width: 420px; margin: 0 auto; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 30px 0; }
  .stat:nth-child(2)::after { display: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; }

  .nav__burger { display: block; }
  .nav__cta { display: none; }
  .nav__links {
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--paper-soft);
    flex-direction: column;
    padding: 20px 28px 28px;
    gap: 0;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    display: none;
  }
  .nav__links.is-open { display: flex; }
  .nav__links li {
    border-bottom: 1px solid var(--line-soft);
  }
  .nav__links li:last-child { border-bottom: 0; }
  .nav__link {
    display: block;
    padding: 14px 0;
    font-size: 1rem;
  }
}

@media (max-width: 560px) {
  .container { padding: 0 22px; }
  .section { padding: 70px 0; }
  .hero { padding: 30px 0 60px; }
  .hero__sub { font-size: 1rem; }
  .stats { grid-template-columns: 1fr; }
  .stat::after { display: none !important; }
  .footer__grid { grid-template-columns: 1fr; gap: 30px; }
  .field--row { grid-template-columns: 1fr; }
  .contact-info, .contact-form { padding: 32px 26px; }

  .hero__overlay {
    left: 14px;
    right: 14px;
    bottom: 14px;
    gap: 10px;
  }
  .hero__overlay-card {
    padding: 11px 13px;
    gap: 10px;
  }
  .hero__overlay-num { font-size: 1.85rem; }
  .hero__overlay-label { font-size: 0.58rem; letter-spacing: 0.14em; }
  .hero__overlay-value { font-size: 0.88rem; }
}
