:root {
  /* Farben */
  --bg: #F8F5EE;
  --bg-elevated: #F2EEE4;
  --bg-dark: #0A0A0A;
  --bg-anthracite: #1C1C1B;
  --text: #1A1A1A;
  --text-soft: #4A4A48;
  --text-muted: #7A7A75;
  --text-light: #F8F5EE;
  --text-light-soft: #C8C5BD;
  --accent: #A1814E;
  --accent-soft: #B8985F;
  --line: rgba(26, 26, 26, 0.10);
  --line-strong: rgba(26, 26, 26, 0.22);
  --line-dark: rgba(248, 245, 238, 0.12);
  --line-dark-strong: rgba(248, 245, 238, 0.25);

  /* Typo */
  --font-display: 'Fraunces', 'Times New Roman', serif;
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --container: 1280px;
  --container-narrow: 980px;
  --pad-x: clamp(1.5rem, 4vw, 4rem);
  --section-y: clamp(5rem, 10vw, 9rem);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  font-weight: 400;
  overflow-x: hidden;
}

/* Typografie */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.1;
  color: var(--text);
}

h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: -0.025em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 350;
  line-height: 1.08;
}

h3 {
  font-size: clamp(1.4rem, 2vw, 1.75rem);
  font-weight: 450;
}

p { font-feature-settings: "kern" 1, "liga" 1; }

em, i { font-style: italic; font-family: var(--font-display); font-weight: 300; }

a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.25s ease;
}

a:hover { color: var(--accent); }

/* Kleine Helper */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-block;
}

.eyebrow.on-dark { color: var(--accent-soft); }

.section {
  padding: var(--section-y) 0;
  position: relative;
}

.section--dark {
  background: var(--bg-dark);
  color: var(--text-light);
}

.section--dark h1, .section--dark h2, .section--dark h3 {
  color: var(--text-light);
}

.section--anthracite {
  background: var(--bg-anthracite);
  color: var(--text-light);
}

.section--anthracite h1, .section--anthracite h2, .section--anthracite h3 {
  color: var(--text-light);
}

/* ==========================================================================
   NAV
   ========================================================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: background 0.4s ease;
}

.nav.is-scrolled {
  background: var(--bg-dark);
}

.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 1.25rem var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  height: 72px;
  width: auto;
  display: block;
}

.nav__menu {
  display: flex;
  gap: 2.25rem;
  list-style: none;
}

.nav__menu a {
  color: var(--text-light);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  position: relative;
  padding: 0.25rem 0;
}

.nav__menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--accent-soft);
  transition: width 0.3s ease;
}

.nav__menu a:hover::after { width: 100%; }
.nav__menu a:hover { color: var(--accent-soft); }

@media (max-width: 768px) {
  .nav__menu { display: none; }
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  background: var(--bg-dark);
  color: var(--text-light);
  min-height: 100vh;
  padding: 8rem 0 5rem;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(161, 129, 78, 0.10), transparent 60%),
    radial-gradient(ellipse 60% 40% at 100% 100%, rgba(161, 129, 78, 0.08), transparent 60%);
  pointer-events: none;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
  position: relative;
  z-index: 2;
}

@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; }
}

.hero__content { max-width: 640px; }

.hero h1 {
  color: var(--text-light);
  margin: 1.5rem 0 1.75rem;
}

.hero h1 em {
  color: var(--accent-soft);
  font-style: italic;
  font-weight: 300;
}

.hero__sub {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: var(--text-light-soft);
  font-weight: 300;
  line-height: 1.55;
  max-width: 540px;
  margin-bottom: 2.5rem;
}

.hero__sub strong {
  color: var(--text-light);
  font-weight: 500;
}

.hero__cta {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  border-radius: 0;
}

.btn--primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.btn--primary:hover {
  background: var(--accent-soft);
  border-color: var(--accent-soft);
  color: #fff;
  transform: translateY(-1px);
}

.btn--ghost-light {
  color: var(--text-light);
  border-color: rgba(248, 245, 238, 0.3);
}

.btn--ghost-light:hover {
  border-color: var(--text-light);
  color: var(--text-light);
  background: rgba(248, 245, 238, 0.05);
}

.btn--ghost-dark {
  color: var(--text);
  border-color: var(--line-strong);
}

.btn--ghost-dark:hover {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}

.btn .arrow {
  transition: transform 0.3s ease;
  font-family: var(--font-display);
  font-size: 1.05em;
}

.btn:hover .arrow { transform: translateX(4px); }

.hero__portrait {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.hero__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.02);
}

.hero__portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10, 10, 10, 0.35));
  pointer-events: none;
}

.hero__since {
  position: absolute;
  bottom: clamp(2rem, 4vw, 3rem);
  left: 0;
  right: 0;
  padding: 0 var(--pad-x);
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 3;
  color: var(--text-light-soft);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero__since__line {
  flex: 1;
  height: 1px;
  background: var(--line-dark-strong);
}

@media (max-width: 900px) {
  .hero__since { position: relative; bottom: auto; margin-top: 3rem; padding: 0; }
}

/* ==========================================================================
   PITCH
   ========================================================================== */
.pitch {
  padding: var(--section-y) 0;
}

.pitch__inner {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
  text-align: left;
}

.pitch__headline {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 350;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 1.5rem 0 2.5rem;
}

.pitch__headline em {
  color: var(--accent);
  font-weight: 300;
}

.pitch__body {
  font-size: clamp(1.05rem, 1.4vw, 1.18rem);
  line-height: 1.7;
  color: var(--text-soft);
  max-width: 720px;
}

.pitch__body p + p { margin-top: 1.25rem; }

/* ==========================================================================
   LEISTUNGEN
   ========================================================================== */
.services {
  background: var(--bg-elevated);
  padding: var(--section-y) 0;
}

.services__head {
  max-width: 720px;
  margin: 0 auto var(--section-y);
  padding: 0 var(--pad-x);
  text-align: center;
}

.services__head h2 { margin: 1.5rem 0 1rem; }

.services__head p {
  font-size: 1.1rem;
  color: var(--text-soft);
  font-weight: 300;
  font-family: var(--font-display);
  font-style: italic;
}

.services__list {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 clamp(2rem, 5vw, 4rem);
}

.service {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1.5rem, 3vw, 3rem);
  padding: 2rem 0;
  border-top: 1px solid var(--line);
  align-items: start;
}

.service:nth-last-child(-n+2) { border-bottom: 1px solid var(--line); }

@media (max-width: 700px) {
  .services__list { grid-template-columns: 1fr; }
  .service:nth-last-child(-n+2) { border-bottom: none; }
  .service:last-child { border-bottom: 1px solid var(--line); }
}

.service__num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  font-style: italic;
  color: var(--accent);
  line-height: 1;
  min-width: 3rem;
}

.service__body { max-width: 640px; }

.service__title {
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  margin-bottom: 0.75rem;
  font-weight: 450;
}

.service__desc {
  color: var(--text-soft);
  line-height: 1.7;
  font-size: 1.02rem;
}

@media (max-width: 600px) {
  .service { grid-template-columns: 1fr; gap: 1rem; }
}

/* ==========================================================================
   VORGEHEN (anthracite)
   ========================================================================== */
.process { padding: clamp(3.5rem, 6vw, 6rem) 0 var(--section-y); }

.process__head {
  max-width: 720px;
  margin: 0 auto clamp(2.5rem, 4vw, 4rem);
  padding: 0 var(--pad-x);
  text-align: center;
}

.process__head h2 { margin: 0.75rem 0 0.75rem; }

.process__head p {
  color: var(--text-light-soft);
  font-size: 1.1rem;
  font-weight: 300;
  font-family: var(--font-display);
  font-style: italic;
}

.process__steps {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.5rem, 3vw, 3rem);
}

@media (max-width: 900px) {
  .process__steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 580px) {
  .process__steps { grid-template-columns: 1fr; }
}

.step {
  position: relative;
  padding-top: 3rem;
}

.step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 1px;
  background: var(--accent-soft);
}

.step__num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  color: var(--accent-soft);
  margin-bottom: 1rem;
  display: block;
}

.step__title {
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 0.85rem;
  color: var(--text-light);
}

.step__desc {
  color: var(--text-light-soft);
  font-size: 0.97rem;
  line-height: 1.65;
  font-weight: 300;
}

/* ==========================================================================
   ABOUT
   ========================================================================== */
.about { padding: var(--section-y) 0; }

.about__intro-wrap {
  max-width: var(--container);
  margin: 0 auto var(--section-y);
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

@media (max-width: 900px) {
  .about__intro-wrap { grid-template-columns: 1fr; }
  .about__portrait { order: 0; }
}

.about__portrait {
  overflow: hidden;
  position: relative;
  order: 2;
  height: 100%;
  min-height: 480px;
}

.about__intro { order: 1; }

.about__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.05);
}

.about__since {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background: var(--bg);
  padding: 0.75rem 1.25rem;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--text);
  letter-spacing: 0.02em;
}

.about__since strong {
  font-style: normal;
  font-weight: 500;
  color: var(--accent);
  font-family: var(--font-body);
  letter-spacing: 0.05em;
}

.about__intro h2 { margin: 1.5rem 0 1.5rem; }

.about__intro p {
  color: var(--text-soft);
  font-size: 1.05rem;
  line-height: 1.7;
}

.about__intro p + p { margin-top: 1.25rem; }

/* Timeline */
.timeline {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.timeline__head {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}

.timeline__head h3 {
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  font-weight: 350;
}

.timeline__head__line {
  flex: 1;
  height: 1px;
  background: var(--line);
  margin-bottom: 0.5rem;
}

.timeline__entry {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 2rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
}

.timeline__entry:last-child { border-bottom: none; }

@media (max-width: 600px) {
  .timeline__entry { grid-template-columns: 1fr; gap: 0.5rem; }
}

.timeline__year {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 1.05rem;
  color: var(--accent);
  letter-spacing: 0.02em;
  padding-top: 0.25rem;
}

.timeline__role {
  font-family: var(--font-display);
  font-weight: 450;
  font-size: 1.2rem;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.timeline__role span { color: var(--text-muted); font-weight: 350; }

.timeline__desc {
  color: var(--text-soft);
  font-size: 0.98rem;
  line-height: 1.65;
}

/* ==========================================================================
   SHOWCASE (dark)
   ========================================================================== */
.showcase { padding: var(--section-y) 0; }

.showcase__inner {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.showcase h2 {
  margin: 1.5rem 0 2rem;
  max-width: 800px;
}

.showcase h2 em {
  color: var(--accent-soft);
  font-style: italic;
  font-weight: 300;
}

.showcase__intro {
  font-size: clamp(0.97rem, 1.1vw, 1.05rem);
  color: var(--text-light-soft);
  max-width: 760px;
  line-height: 1.7;
  margin-bottom: 1.75rem;
  font-weight: 300;
}

.showcase__intro strong { color: var(--text-light-soft); font-weight: 400; }

.showcase__agents {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin: 3rem 0;
  padding: 2.5rem 0;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

@media (max-width: 700px) { .showcase__agents { grid-template-columns: repeat(2, 1fr); } }

.agent {
  text-align: left;
}

.agent__name {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 1.05rem;
  color: var(--accent-soft);
  margin-bottom: 0.5rem;
}

.agent__role {
  font-size: 0.85rem;
  color: var(--text-light-soft);
  letter-spacing: 0.05em;
  font-weight: 300;
}

.showcase__bridge {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  line-height: 1.65;
  color: var(--text-light-soft);
  max-width: 760px;
  margin-bottom: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line-dark);
}

.showcase__link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--accent-soft);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border-bottom: 1px solid var(--line-dark-strong);
  padding-bottom: 0.5rem;
  transition: all 0.3s ease;
}

.showcase__link:hover {
  color: var(--text-light);
  border-bottom-color: var(--accent-soft);
}

/* ==========================================================================
   AUDIENCE
   ========================================================================== */
.audience { padding: var(--section-y) 0; }

.audience__head {
  max-width: 720px;
  margin: 0 auto var(--section-y);
  padding: 0 var(--pad-x);
  text-align: center;
}

.audience__head h2 { margin: 1.5rem 0 1rem; }

.audience__head p {
  color: var(--text-soft);
  font-size: 1.1rem;
  font-weight: 300;
  font-family: var(--font-display);
  font-style: italic;
}

.audience__grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: 4rem;
}

@media (max-width: 900px) { .audience__grid { grid-template-columns: 1fr; } }

.audience__card {
  padding: 2.5rem 2.25rem;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.audience__card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.audience__card__num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.audience__card__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 450;
  margin-bottom: 1rem;
  line-height: 1.25;
}

.audience__card__desc {
  color: var(--text-soft);
  font-size: 0.97rem;
  line-height: 1.65;
}

.audience__filter {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 3rem var(--pad-x) 0;
  border-top: 1px solid var(--line);
}

.audience__filter h3 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2vw, 1.75rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 1.75rem;
  color: var(--text);
}

.audience__filter ul {
  list-style: none;
  display: grid;
  gap: 1rem;
}

.audience__filter li {
  padding-left: 1.75rem;
  position: relative;
  color: var(--text-soft);
  font-size: 1.05rem;
  line-height: 1.65;
}

.audience__filter li::before {
  content: "·";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-family: var(--font-display);
}

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact {
  background: var(--bg-elevated);
  padding: var(--section-y) 0;
}

.contact__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.contact__head {
  max-width: 720px;
  margin: 0 auto 4rem;
  text-align: center;
}

.contact__head h2 { margin: 1.5rem 0 1.25rem; }

.contact__head p {
  color: var(--text-soft);
  font-size: 1.1rem;
  line-height: 1.65;
  font-weight: 300;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}

@media (max-width: 900px) { .contact__grid { grid-template-columns: 1fr; } }

/* Form */
.form { display: grid; gap: 1.5rem; }

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

@media (max-width: 600px) { .form__row { grid-template-columns: 1fr; } }

.form__group {
  display: grid;
  gap: 0.5rem;
}

.form__group label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.form__group label .required { color: var(--accent); }

.form__group input,
.form__group textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.85rem 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line-strong);
  color: var(--text);
  transition: border-color 0.25s ease;
  resize: vertical;
}

.form__group input:focus,
.form__group textarea:focus {
  outline: none;
  border-bottom-color: var(--accent);
}

.form__group textarea { min-height: 120px; padding: 0.85rem 0; }

.form__check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: var(--text-soft);
  line-height: 1.55;
}

.form__check input[type="checkbox"] {
  margin-top: 0.2rem;
  accent-color: var(--accent);
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

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

.form__honey { display: none !important; }

.form__submit { justify-self: start; margin-top: 0.5rem; }

/* Direct contact */
.direct {
  background: var(--bg);
  padding: 2.5rem 2.25rem;
  border: 1px solid var(--line);
}

.direct__item { margin-bottom: 1.75rem; }
.direct__item:last-child { margin-bottom: 0; }

.direct__label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.direct__value {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1.4;
}

.direct__value a { color: var(--text); }
.direct__value a:hover { color: var(--accent); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: var(--bg-dark);
  color: var(--text-light-soft);
  padding: 5rem 0 2.5rem;
}

.footer__grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  margin-bottom: 4rem;
}

@media (max-width: 700px) { .footer__grid { grid-template-columns: 1fr; gap: 2.5rem; } }

.footer__brand img { height: 76px; width: auto; margin-bottom: 1.25rem; }

.footer__brand p {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 1.05rem;
  line-height: 1.5;
  max-width: 320px;
  color: var(--text-light-soft);
}

.footer__col h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 1.25rem;
}

.footer__col ul { list-style: none; }
.footer__col li { margin-bottom: 0.6rem; font-size: 0.95rem; }
.footer__col a { color: var(--text-light-soft); }
.footer__col a:hover { color: var(--text-light); }

.footer__bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding: 2rem var(--pad-x) 0;
  border-top: 1px solid var(--line-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hero stagger entrance */
.hero__content > * { opacity: 0; transform: translateY(15px); animation: fadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.hero__content > *:nth-child(1) { animation-delay: 0.1s; }
.hero__content > *:nth-child(2) { animation-delay: 0.25s; }
.hero__content > *:nth-child(3) { animation-delay: 0.4s; }
.hero__content > *:nth-child(4) { animation-delay: 0.55s; }

.hero__portrait { opacity: 0; animation: fadeUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards; }
.hero__since { opacity: 0; animation: fadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.7s forwards; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
