:root {
  --terra: #d99a6c;
  --terra-light: #e8b995;
  --terra-pale: #f5e8da;
  --terra-deep: #b87848;
  --cream: #faf6f1;
  --warm-white: #fffcf8;
  --ink: #2c2118;
  --ink-soft: #5a4a3a;
  --ink-muted: #9a8878;
  --linen: #ede4d8;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--warm-white);
  color: var(--ink);
  font-weight: 300;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.6rem 4vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,252,248,0.88);
  backdrop-filter: blur(12px);
  transition: padding 0.4s ease;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
}

.logo-mark {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  align-self: flex-start;
  margin-top: -6px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.02em;
}

.logo-sub {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terra);
  font-weight: 400;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 400;
  transition: color 0.3s;
}

.nav-links a:hover { color: var(--terra); }

.nav-cta {
  background: var(--terra) !important;
  color: var(--warm-white) !important;
  padding: 0.65rem 1.4rem !important;
  border-radius: 100px;
  letter-spacing: 0.1em !important;
  transition: background 0.3s, transform 0.2s !important;
}

.nav-cta:hover {
  background: var(--terra-deep) !important;
  transform: translateY(-1px);
}

/* hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  z-index: 101;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}

.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* dropdown */
@media (max-width: 900px) {
  .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255,252,248,0.97);
    backdrop-filter: blur(16px);
    padding: 0 5vw;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    box-shadow: 0 8px 24px rgba(44,33,24,0.08);
  }

  nav.menu-open .nav-links {
    max-height: 360px;
    padding: 1.2rem 5vw 1.8rem;
  }

  .nav-links li {
    border-bottom: 1px solid var(--linen);
  }

  .nav-links li:last-child {
    border-bottom: none;
    padding-top: 1rem;
  }

  .nav-links a {
    display: block;
    padding: 0.9rem 0;
    font-size: 0.82rem;
  }

  .nav-cta {
    background: none !important;
    color: var(--terra) !important;
    padding: 0.9rem 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
  }
}

/* ── HERO ── */
.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10rem 6vw 6rem 8vw;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 1.8rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s forwards;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 300;
  line-height: 1.12;
  color: var(--ink);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.5s forwards;
}

.hero-title em {
  font-style: italic;
  color: var(--terra);
}

.hero-body {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--ink-soft);
  max-width: 38ch;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.7s forwards;
}

.hero-actions {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  opacity: 0;
  animation: fadeUp 0.9s 0.9s forwards;
}

.btn-primary {
  background: var(--terra);
  color: var(--warm-white);
  padding: 1rem 2.2rem;
  border-radius: 100px;
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 400;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
}

.btn-primary:hover {
  background: var(--terra-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(217,154,108,0.35);
}

.btn-ghost {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s;
}

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

.btn-ghost::after {
  content: '→';
  transition: transform 0.3s;
}

.btn-ghost:hover::after { transform: translateX(4px); }

.hero-right {
  position: relative;
  overflow: hidden;
}

.hero-image-wrap {
  position: absolute;
  inset: 0;
  opacity: 0;
  animation: fadeIn 1.2s 0.4s forwards;
}

.hero-image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--warm-white) 0%, transparent 18%);
  z-index: 1;
}

.hero-bg {
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at 60% 40%, rgba(217,154,108,0.22) 0%, transparent 65%),
    radial-gradient(ellipse at 90% 80%, rgba(217,154,108,0.12) 0%, transparent 50%),
    linear-gradient(135deg, var(--terra-pale) 0%, var(--linen) 50%, var(--cream) 100%);
  position: relative;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  animation: floatIn 1.4s ease forwards;
}

.hero-orb-1 {
  width: 340px; height: 340px;
  background: radial-gradient(circle, rgba(217,154,108,0.28) 0%, transparent 70%);
  top: 15%; left: 20%;
  animation-delay: 0.6s;
}

.hero-orb-2 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(217,154,108,0.18) 0%, transparent 70%);
  bottom: 20%; right: 15%;
  animation-delay: 0.9s;
}

.hero-illustration {
  position: absolute;
  width: 72%;
  max-width: 420px;
  top: 50%;
  left: 50%;
  transform: translate(-42%, -50%);
  z-index: 2;
  opacity: 0;
  animation: fadeUp 1.2s 0.8s forwards;
}

.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeIn 1s 1.4s forwards;
}

.scroll-hint span {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--terra), transparent);
  animation: scrollPulse 2s 1.5s infinite;
}

/* ── SECTION SHARED ── */
section { position: relative; }

.section-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 5vw;
}

.section-label {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 1.2rem;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--ink);
}

.section-title em { font-style: italic; color: var(--terra); }

/* ── INTRO BAND ── */
.intro-band {
  background: var(--terra-pale);
  padding: 5rem 0;
}

.intro-band .section-inner {
  display: grid;
  grid-template-columns: 1fr 2px 1fr;
  gap: 4rem;
  align-items: center;
}

.intro-divider {
  background: linear-gradient(to bottom, transparent, var(--terra-light), transparent);
  align-self: stretch;
}

.intro-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 2.5vw, 2.1rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  color: var(--ink);
}

.intro-quote::before {
  content: '\201C';
  font-size: 4rem;
  color: var(--terra-light);
  line-height: 0;
  vertical-align: -1.2rem;
  margin-right: 0.2rem;
}

.intro-text {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--ink-soft);
}

/* ── LEISTUNGEN ── */
.leistungen {
  padding: 9rem 0;
}

.leistungen-header {
  margin-bottom: 5rem;
  max-width: 520px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--linen);
}

.card {
  background: var(--warm-white);
  padding: 3.5rem 2.8rem;
  position: relative;
  overflow: hidden;
  transition: background 0.4s;
  cursor: default;
}

.card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--terra);
  transition: width 0.5s ease;
}

.card:hover::before { width: 100%; }
.card:hover { background: var(--terra-pale); }

.card-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--terra-pale);
  line-height: 1;
  margin-bottom: 1rem;
  transition: color 0.4s;
}

.card:hover .card-num { color: var(--terra-light); }

.card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.card-text {
  font-size: 0.9rem;
  line-height: 1.85;
  color: var(--ink-soft);
}

/* ── ÜBER MICH ── */
.ueber {
  padding: 9rem 0;
  background: var(--cream);
}

.ueber .section-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7vw;
  align-items: center;
}

.ueber-visual {
  position: relative;
  aspect-ratio: 4/5;
}

.portrait-bg {
  position: absolute;
  inset: 0;
  border-radius: 60% 40% 55% 45% / 50% 55% 45% 50%;
  background: linear-gradient(135deg, var(--terra-pale) 0%, var(--linen) 100%);
  animation: morphBlob 10s ease-in-out infinite;
}

.portrait-initials {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(5rem, 10vw, 9rem);
  font-weight: 300;
  color: var(--terra);
  opacity: 0.35;
}

.ueber-deco {
  position: absolute;
  bottom: -2rem; right: -2rem;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: var(--terra);
  opacity: 0.12;
}

.ueber-content .section-label { margin-bottom: 0.8rem; }
.ueber-content .section-title { margin-bottom: 1.8rem; }

.ueber-body {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--ink-soft);
  margin-bottom: 2rem;
}

.credentials {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 2.8rem;
}

.credential {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

.credential::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--terra);
  margin-top: 0.5rem;
  flex-shrink: 0;
}

/* ── ANSATZ ── */
.ansatz {
  padding: 9rem 0;
  overflow: hidden;
}

.ansatz-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 5vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
  align-items: start;
}

.ansatz-sticky {
  position: sticky;
  top: 8rem;
}

.ansatz-body {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--ink-soft);
  margin-top: 1.6rem;
  margin-bottom: 2.5rem;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1.5rem;
  align-items: start;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.6s, transform 0.6s;
}

.step.visible {
  opacity: 1;
  transform: translateX(0);
}

.step-num {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--terra-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--terra);
  font-weight: 500;
  flex-shrink: 0;
  transition: background 0.3s, color 0.3s;
}

.step:hover .step-num { background: var(--terra); color: white; }

.step-content h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.step-content p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--ink-muted);
}

/* ── ONLINE BERATUNG ── */
.online {
  padding: 9rem 0;
  background: var(--ink);
  overflow: hidden;
}

.online-header {
  max-width: 680px;
  margin-bottom: 5rem;
}

.online .section-label { color: var(--terra-light); }
.online .section-title { color: var(--warm-white); margin-bottom: 1.5rem; }

.online-intro {
  font-size: 1rem;
  line-height: 1.9;
  color: rgba(255,252,248,0.65);
}

.online-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.06);
  margin-bottom: 3rem;
}

.online-card {
  background: rgba(255,252,248,0.04);
  padding: 2.5rem 2rem;
  transition: background 0.3s;
}

.online-card:hover { background: rgba(255,252,248,0.07); }

.online-icon {
  color: var(--terra);
  margin-bottom: 1.2rem;
  opacity: 0.85;
}

.online-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--warm-white);
  margin-bottom: 0.7rem;
}

.online-card p {
  font-size: 0.88rem;
  line-height: 1.8;
  color: rgba(255,252,248,0.55);
}

.online-technik {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 2.5rem;
  max-width: 680px;
}

.online-technik-label {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terra-light);
  margin-bottom: 0.8rem;
}

.online-technik p {
  font-size: 0.9rem;
  line-height: 1.85;
  color: rgba(255,252,248,0.5);
}

/* ── KONTAKT ── */
.kontakt {
  padding: 9rem 0;
  background: var(--terra-pale);
}

.kontakt .section-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
  align-items: start;
}

.kontakt-info .section-title { margin-bottom: 1.5rem; }

.kontakt-desc {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--ink-soft);
  margin-bottom: 3rem;
}

.kontakt-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.kontakt-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.kontakt-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--terra);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.kontakt-row-text {
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

.kontakt-row-text strong {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terra-deep);
  margin-bottom: 0.2rem;
  font-weight: 400;
}

/* form */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group.full { grid-column: 1 / -1; }

.form-group label {
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terra-deep);
}

.form-group input,
.form-group textarea,
.form-group select {
  background: var(--warm-white);
  border: none;
  padding: 0.9rem 1.1rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  color: var(--ink);
  font-weight: 300;
  width: 100%;
  outline: none;
  transition: box-shadow 0.3s;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  box-shadow: inset 0 -2px 0 var(--terra);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-submit {
  grid-column: 1 / -1;
  margin-top: 0.5rem;
}

.form-submit button {
  background: var(--terra);
  color: var(--warm-white);
  border: none;
  padding: 1rem 2.5rem;
  border-radius: 100px;
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  font-weight: 400;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
}

.form-submit button:hover {
  background: var(--terra-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(217,154,108,0.4);
}

/* ── FOOTER ── */
footer {
  background: var(--ink);
  color: rgba(255,252,248,0.5);
  padding: 3rem 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}


.footer-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: rgba(255,252,248,0.7);
}

.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footer-links a {
  text-decoration: none;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: rgba(255,252,248,0.4);
  transition: color 0.3s;
}

.footer-links a:hover { color: var(--terra); }

.footer-copy {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes floatIn {
  from { opacity: 0; transform: scale(0.8); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.3); }
}

@keyframes morphBlob {
  0%,100% { border-radius: 60% 40% 55% 45% / 50% 55% 45% 50%; }
  25%  { border-radius: 50% 50% 40% 60% / 60% 45% 55% 40%; }
  50%  { border-radius: 40% 60% 60% 40% / 45% 60% 40% 55%; }
  75%  { border-radius: 55% 45% 45% 55% / 55% 40% 60% 45%; }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hamburger { display: flex; }
  .scroll-hint { display: none; }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-left {
    padding: 8rem 5vw 4rem;
    order: 1;
  }

  .hero-right {
    order: 0;
    height: 50vw;
    min-height: 280px;
  }

  .hero-illustration { width: 60%; }

  .intro-band .section-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .intro-divider { display: none; }

  .cards-grid { grid-template-columns: 1fr; }

  .ueber .section-inner { grid-template-columns: 1fr; }
  .ueber-visual { aspect-ratio: 4/3; max-width: 360px; }

  .ansatz-inner { grid-template-columns: 1fr; }
  .ansatz-sticky { position: static; }

  .online-grid { grid-template-columns: 1fr 1fr; }

  .kontakt .section-inner { grid-template-columns: 1fr; }

  .form-grid { grid-template-columns: 1fr; }
  .form-group { grid-column: auto; }

  footer { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
}

@media (max-width: 560px) {
  nav { padding: 1.2rem 5vw; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-left { padding: 7rem 5vw 3rem; }
  .online-grid { grid-template-columns: 1fr; }
}

/* ── CARD MORE LINK ── */
.card { cursor: pointer; }

.card-more {
  display: inline-block;
  margin-top: 1.8rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terra);
  transition: letter-spacing 0.3s;
}

.card:hover .card-more { letter-spacing: 0.2em; }

/* ── MODAL ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(44, 33, 24, 0.55);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal-overlay.visible { opacity: 1; }
.modal-overlay[hidden] { display: none; }

.modal-box {
  background: var(--warm-white);
  max-width: 620px;
  width: 100%;
  padding: 3.5rem;
  position: relative;
  transform: translateY(24px);
  transition: transform 0.35s ease;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-overlay.visible .modal-box { transform: translateY(0); }

.modal-close {
  position: absolute;
  top: 1.4rem;
  right: 1.4rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ink-muted);
  padding: 0.4rem;
  line-height: 1;
  transition: color 0.2s;
}

.modal-close:hover { color: var(--terra); }

.modal-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--terra-pale);
  line-height: 1;
  margin-bottom: 0.6rem;
}

.modal-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 1.2rem;
  line-height: 1.2;
}

.modal-intro {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--ink-soft);
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--linen);
}

.modal-body {
  margin-bottom: 2.5rem;
}

.modal-body h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.6rem;
  margin-top: 1.4rem;
}

.modal-body h4:first-child { margin-top: 0; }

.modal-body p {
  font-size: 0.9rem;
  line-height: 1.85;
  color: var(--ink-soft);
}

.modal-body ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.8rem;
}

.modal-body ul li {
  font-size: 0.88rem;
  color: var(--ink-soft);
  padding-left: 1.2rem;
  position: relative;
  line-height: 1.6;
}

.modal-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--terra);
}

.modal-cta { display: inline-block; }

@media (max-width: 600px) {
  .modal-box { padding: 2.2rem 1.6rem; }
}
