/* ============================================================
   IMPULS Hamburg – Jin Shin Jyutsu
   Design-System v2 · Orange-Gelb · Modern
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,700;1,400;1,500&family=Inter:wght@300;400;500;600&display=swap');

/* ── Tokens ─────────────────────────────────────────────────── */
:root {
  /* Primärpalette: Orange-Gelb */
  --c-sun:        #F5C842;   /* helles Sonnengelb */
  --c-amber:      #F0A020;   /* warmes Amber */
  --c-orange:     #E07818;   /* kräftiges Orange */
  --c-orange-dk:  #C05C08;   /* dunkles Orange */

  /* Neutrale Töne – hell, nicht braun */
  --c-bg:         #FDFAF4;   /* fast weißes Creme */
  --c-cream:      #FAF3E0;   /* zartes Creme */
  --c-sand:       #F0E0C0;   /* heller Sand */
  --c-sand-dk:    #E0C898;   /* etwas dunklerer Sand */

  /* Text – warm aber nicht zu dunkel */
  --c-ink:        #1E1A14;   /* fast schwarz, warm */
  --c-text:       #3D3020;   /* Haupttext */
  --c-muted:      #7A6848;   /* gedämpft */
  --c-subtle:     #A89070;   /* sehr gedämpft */
  --c-border:     #E8D8B0;   /* Border */

  /* Akzente */
  --c-white:      #FFFFFF;
  --c-dark-sec:   #2A2010;   /* dunkle Sektionen – sehr dunkel, aber warm */

  /* Typografie */
  --f-serif:  'Playfair Display', Georgia, serif;
  --f-sans:   'Inter', system-ui, sans-serif;

  /* Abstände */
  --sp-xs:  0.5rem;
  --sp-sm:  1rem;
  --sp-md:  2rem;
  --sp-lg:  4rem;
  --sp-xl:  7rem;

  /* Layout */
  --max-w:    1200px;
  --nav-h:    70px;
  --radius:   6px;
  --radius-lg:12px;

  /* Übergänge */
  --ease: 0.28s cubic-bezier(0.4,0,0.2,1);
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--f-sans);
  font-weight: 400;
  color: var(--c-text);
  background: var(--c-bg);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--c-orange); text-decoration: none; transition: color var(--ease); }
a:hover { color: var(--c-orange-dk); }
ul { list-style: none; }

/* ── Typografie ─────────────────────────────────────────────── */
h1,h2,h3,h4 { font-family: var(--f-serif); font-weight: 400; line-height: 1.2; color: var(--c-ink); }
h1 { font-size: clamp(2.2rem,5vw,3.8rem); }
h2 { font-size: clamp(1.8rem,3.5vw,2.8rem); }
h3 { font-size: clamp(1.2rem,2.5vw,1.7rem); }
h4 { font-size: 1.1rem; font-family: var(--f-sans); font-weight: 600; }
p  { margin-bottom: 1.1em; color: var(--c-text); }
p:last-child { margin-bottom: 0; }

/* ── Utilities ──────────────────────────────────────────────── */
.wrap   { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--sp-md); }
.sec    { padding: var(--sp-lg) 0; }
.sec-alt{ background: var(--c-cream); }
.sec-dk { background: var(--c-dark-sec); }
.tc     { text-align: center; }

.eyebrow {
  display: inline-block;
  font-family: var(--f-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-orange);
  margin-bottom: 0.6rem;
}
.eyebrow-light { color: var(--c-sun); }

.rule {
  width: 44px; height: 2px;
  background: linear-gradient(90deg, var(--c-sun), var(--c-orange));
  margin: 0.8rem 0 1.6rem;
  border-radius: 2px;
}
.rule-c { margin: 0.8rem auto 1.6rem; }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.75rem 1.8rem;
  font-family: var(--f-sans); font-size: 0.85rem; font-weight: 500;
  letter-spacing: 0.04em;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--ease), color var(--ease), border-color var(--ease), transform var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: linear-gradient(135deg, var(--c-amber), var(--c-orange));
  color: var(--c-white);
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(224,120,24,0.3);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--c-orange), var(--c-orange-dk));
  color: var(--c-white);
  box-shadow: 0 6px 20px rgba(224,120,24,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--c-orange);
  border-color: var(--c-orange);
}
.btn-outline:hover {
  background: var(--c-orange);
  color: var(--c-white);
}

.btn-ghost {
  background: rgba(255,255,255,0.12);
  color: var(--c-white);
  border-color: rgba(255,255,255,0.4);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.22);
  color: var(--c-white);
}

/* ── Navigation ─────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  height: var(--nav-h);
  background: rgba(253,250,244,0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--c-border);
  transition: box-shadow var(--ease);
}
.nav.scrolled { box-shadow: 0 2px 24px rgba(30,26,20,0.08); }
.nav__inner {
  height: 100%;
  display: flex; align-items: center; justify-content: space-between;
}
.nav__logo { display: flex; flex-direction: column; line-height: 1.1; }
.nav__logo-name {
  font-family: var(--f-serif); font-size: 1.3rem; font-weight: 500;
  color: var(--c-ink); letter-spacing: 0.02em;
}
.nav__logo-sub {
  font-size: 0.62rem; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--c-orange);
}
.nav__links {
  display: flex; align-items: center; gap: 0.2rem;
}
.nav__links a {
  font-size: 0.82rem; font-weight: 400; letter-spacing: 0.03em;
  color: var(--c-text); padding: 0.4rem 0.75rem; border-radius: 4px;
  transition: color var(--ease), background var(--ease);
}
.nav__links a:hover, .nav__links a.active {
  color: var(--c-orange); background: rgba(240,160,32,0.08);
}
.nav__cta { margin-left: 0.5rem; }

/* Hamburger */
.nav__burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav__burger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--c-ink);
  transition: transform var(--ease), opacity var(--ease);
}
.nav__burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  padding-top: var(--nav-h);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
  overflow: hidden;
  position: relative;
}

.hero__left {
  padding: var(--sp-xl) var(--sp-lg) var(--sp-xl) max(var(--sp-lg), calc((100vw - var(--max-w))/2 + var(--sp-md)));
  background: var(--c-bg);
  position: relative; z-index: 1;
}

.hero__right {
  position: relative;
  height: 100%;
  min-height: 100vh;
  background: linear-gradient(160deg, var(--c-sand) 0%, var(--c-amber) 60%, var(--c-orange) 100%);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}

/* Dekorative Kreise im Hero-Right */
.hero__right::before {
  content: '';
  position: absolute; top: -15%; right: -15%;
  width: 70%; height: 70%;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
}
.hero__right::after {
  content: '';
  position: absolute; bottom: -10%; left: -10%;
  width: 50%; height: 50%;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
}

.hero__tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: linear-gradient(135deg, rgba(245,200,66,0.15), rgba(240,160,32,0.15));
  border: 1px solid rgba(240,160,32,0.3);
  border-radius: 100px;
  padding: 0.35rem 1rem;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--c-orange);
  margin-bottom: 1.5rem;
}
.hero__tag::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--c-amber);
}

.hero__title {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--c-ink);
}
.hero__title em { font-style: italic; color: var(--c-orange); }

.hero__lead {
  font-size: 1.05rem; color: var(--c-muted);
  max-width: 460px; margin-bottom: 2rem; line-height: 1.7;
}

.hero__actions {
  display: flex; align-items: center; gap: 1rem;
  flex-wrap: wrap; margin-bottom: 2.5rem;
}

.hero__phone {
  display: flex; align-items: center; gap: 0.6rem;
  font-family: var(--f-serif); font-size: 1.2rem; color: var(--c-ink);
  padding: 0.5rem 0;
}
.hero__phone-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--c-sun), var(--c-amber));
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* Stats-Leiste im Hero */
.hero__stats {
  display: flex; gap: 2rem; padding-top: 1.5rem;
  border-top: 1px solid var(--c-border);
}
.hero__stat-val {
  font-family: var(--f-serif); font-size: 1.8rem; color: var(--c-orange); line-height: 1;
}
.hero__stat-lbl {
  font-size: 0.72rem; color: var(--c-muted); letter-spacing: 0.05em; margin-top: 0.2rem;
}

/* Foto-Frame */
.hero__photo {
  position: relative; z-index: 1;
  width: 72%; max-width: 380px;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.2);
}
.hero__photo img { width: 100%; height: 100%; object-fit: cover; }
.hero__photo-ph {
  width: 100%; height: 100%;
  background: rgba(255,255,255,0.15);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.75rem;
}
.hero__photo-ph svg { opacity: 0.5; }
.hero__photo-ph p { font-size: 0.78rem; color: rgba(255,255,255,0.8); text-align: center; }

/* Floating Badge */
.hero__badge {
  position: absolute; bottom: 10%; right: -5%;
  background: var(--c-white);
  border-radius: var(--radius);
  padding: 0.9rem 1.2rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  display: flex; align-items: center; gap: 0.75rem;
  z-index: 2;
}
.hero__badge-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--c-sun), var(--c-orange));
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.hero__badge-text strong { display: block; font-size: 0.85rem; color: var(--c-ink); }
.hero__badge-text span { font-size: 0.72rem; color: var(--c-muted); }

/* ── Trust-Bar ──────────────────────────────────────────────── */
.trust-bar {
  background: linear-gradient(135deg, var(--c-amber) 0%, var(--c-orange) 100%);
  padding: 1.2rem 0;
}
.trust-bar__inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 0.5rem;
}
.trust-item {
  display: flex; align-items: center; gap: 0.6rem;
  flex: 1; min-width: 160px;
}
.trust-item__icon {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.trust-item__text strong { display: block; font-size: 0.82rem; font-weight: 600; color: var(--c-white); }
.trust-item__text span { font-size: 0.7rem; color: rgba(255,255,255,0.75); }
.trust-sep { width: 1px; height: 36px; background: rgba(255,255,255,0.25); }

/* ── Karten ─────────────────────────────────────────────────── */
.card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-md);
  transition: box-shadow var(--ease), transform var(--ease);
}
.card:hover { box-shadow: 0 8px 40px rgba(224,120,24,0.1); transform: translateY(-2px); }

.card-amber {
  background: linear-gradient(135deg, var(--c-cream), var(--c-sand));
  border-color: var(--c-sand-dk);
}

.card-dark {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.1);
}
.card-dark:hover { box-shadow: 0 8px 40px rgba(0,0,0,0.2); }

/* ── Grids ──────────────────────────────────────────────────── */
.g2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-md); }
.g3 { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--sp-md); }
.g-auto { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: var(--sp-md); }

/* ── Feature-Karte ──────────────────────────────────────────── */
.feature-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(135deg, var(--c-sun), var(--c-amber));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  box-shadow: 0 4px 16px rgba(240,160,32,0.3);
}
.feature-icon svg { color: var(--c-white); }

/* ── Schritt-Prozess ────────────────────────────────────────── */
.steps { display: flex; gap: 0; position: relative; }
.step {
  flex: 1; text-align: center; padding: var(--sp-md) var(--sp-sm);
  position: relative;
}
.step:not(:last-child)::after {
  content: '';
  position: absolute; top: 36px; left: 50%; right: -50%;
  height: 2px;
  background: linear-gradient(90deg, var(--c-amber), var(--c-sand));
  z-index: 0;
}
.step__num {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, var(--c-sun), var(--c-orange));
  color: var(--c-white);
  font-family: var(--f-serif); font-size: 1.6rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  position: relative; z-index: 1;
  box-shadow: 0 4px 20px rgba(224,120,24,0.35);
}
.step__title { font-family: var(--f-serif); font-size: 1.15rem; margin-bottom: 0.5rem; }
.step__text { font-size: 0.88rem; color: var(--c-muted); }

/* ── Zitat-Block ────────────────────────────────────────────── */
.quote {
  border-left: 3px solid var(--c-amber);
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, var(--c-cream), var(--c-sand));
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 1.5rem 0;
}
.quote p {
  font-family: var(--f-serif); font-size: 1.2rem;
  font-style: italic; color: var(--c-ink); margin: 0;
}

/* ── Qualifikations-Liste ───────────────────────────────────── */
.qual-list { display: flex; flex-direction: column; gap: 0.75rem; }
.qual-item { display: flex; align-items: flex-start; gap: 0.75rem; }
.qual-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: linear-gradient(135deg, var(--c-sun), var(--c-orange));
  flex-shrink: 0; margin-top: 0.55rem;
}
.qual-text { font-size: 0.95rem; color: var(--c-text); line-height: 1.6; }

/* ── Preistabelle ───────────────────────────────────────────── */
.price-table { width: 100%; border-collapse: collapse; }
.price-table th, .price-table td { padding: 0.9rem 1rem; text-align: left; border-bottom: 1px solid var(--c-border); }
.price-table th { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--c-muted); background: var(--c-cream); }
.price-table td:last-child { text-align: right; font-family: var(--f-serif); font-size: 1.1rem; color: var(--c-orange); }

/* ── Event-Karte ────────────────────────────────────────────── */
.event-card { background: var(--c-white); border: 1px solid var(--c-border); border-radius: var(--radius-lg); overflow: hidden; transition: box-shadow var(--ease), transform var(--ease); }
.event-card:hover { box-shadow: 0 8px 40px rgba(224,120,24,0.12); transform: translateY(-2px); }
.event-card__date { background: linear-gradient(135deg, var(--c-amber), var(--c-orange)); padding: 1rem; text-align: center; }
.event-card__day { display: block; font-family: var(--f-serif); font-size: 2.2rem; color: var(--c-white); line-height: 1; }
.event-card__month { display: block; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.85); margin-top: 0.2rem; }
.event-card__body { padding: 1.2rem 1.4rem; }
.event-card__type { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--c-orange); margin-bottom: 0.3rem; }
.event-card__title { font-family: var(--f-serif); font-size: 1.15rem; color: var(--c-ink); margin-bottom: 0.5rem; }
.event-card__info { font-size: 0.82rem; color: var(--c-muted); }

/* ── Kontaktformular ────────────────────────────────────────── */
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--c-muted); margin-bottom: 0.4rem; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 0.75rem 1rem;
  border: 1.5px solid var(--c-border);
  background: var(--c-white);
  font-family: var(--f-sans); font-size: 0.95rem; color: var(--c-ink);
  border-radius: var(--radius); outline: none;
  transition: border-color var(--ease), box-shadow var(--ease);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--c-amber);
  box-shadow: 0 0 0 3px rgba(240,160,32,0.12);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-check { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 1rem; }
.form-check input[type="checkbox"] { width: 16px; height: 16px; flex-shrink: 0; margin-top: 3px; accent-color: var(--c-amber); }
.form-check label { font-size: 0.82rem; color: var(--c-muted); line-height: 1.5; }

/* ── Seitenheader ───────────────────────────────────────────── */
.page-hero {
  padding: calc(var(--nav-h) + var(--sp-lg)) 0 var(--sp-lg);
  background: linear-gradient(135deg, var(--c-bg) 0%, var(--c-cream) 60%, var(--c-sand) 100%);
  border-bottom: 1px solid var(--c-border);
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; top: -30%; right: -5%;
  width: 40%; height: 200%;
  background: radial-gradient(ellipse, rgba(245,200,66,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero__label { display: block; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--c-orange); margin-bottom: 0.5rem; }
.page-hero__title { font-size: clamp(1.8rem,4vw,2.8rem); }

/* ── Details/FAQ ────────────────────────────────────────────── */
details { border-bottom: 1px solid var(--c-border); }
details summary { font-family: var(--f-serif); font-size: 1.1rem; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; color: var(--c-ink); padding: 1rem 0; }
details summary::-webkit-details-marker { display: none; }
details summary::after { content: '+'; font-size: 1.4rem; color: var(--c-amber); transition: transform var(--ease); }
details[open] summary::after { transform: rotate(45deg); }
details .faq-body { padding: 0 0 1rem; color: var(--c-muted); font-size: 0.95rem; }

/* ── Karten-Kontakt ─────────────────────────────────────────── */
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--c-sun), var(--c-amber));
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(240,160,32,0.3);
}
.contact-icon svg { color: var(--c-white); }
.contact-label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--c-muted); margin-bottom: 0.2rem; }
.contact-value { font-family: var(--f-serif); font-size: 1.2rem; color: var(--c-ink); }

/* ── Kartenplatzhalter ──────────────────────────────────────── */
.map-ph {
  width: 100%; height: 300px;
  background: linear-gradient(135deg, var(--c-cream), var(--c-sand));
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.5rem;
}
.map-ph p { font-size: 0.82rem; color: var(--c-muted); text-align: center; }

/* ── Placeholder-Stil ───────────────────────────────────────── */
.ph {
  background: repeating-linear-gradient(45deg, rgba(245,200,66,0.06), rgba(245,200,66,0.06) 8px, transparent 8px, transparent 16px);
  border: 1.5px dashed var(--c-amber);
  border-radius: var(--radius);
  padding: 1rem;
  color: var(--c-orange);
  font-size: 0.82rem;
  font-style: italic;
}

/* ── Hinweis-Banner ─────────────────────────────────────────── */
.notice {
  background: linear-gradient(90deg, var(--c-sun), var(--c-amber));
  padding: 0.75rem var(--sp-md); text-align: center;
}
.notice p { color: var(--c-ink); font-size: 0.88rem; font-weight: 500; margin: 0; }
.notice a { color: var(--c-ink); font-weight: 700; text-decoration: underline; }

/* ── CTA-Sektion ────────────────────────────────────────────── */
.cta-sec {
  background: linear-gradient(135deg, var(--c-amber) 0%, var(--c-orange) 100%);
  padding: var(--sp-lg) 0;
  position: relative; overflow: hidden;
}
.cta-sec::before {
  content: '';
  position: absolute; top: -50%; right: -10%;
  width: 50%; height: 200%;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
}

/* ── Footer ─────────────────────────────────────────────────── */
.footer {
  background: var(--c-dark-sec);
  padding: var(--sp-lg) 0 var(--sp-md);
}
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: var(--sp-lg); margin-bottom: var(--sp-lg); }
.footer__logo { font-family: var(--f-serif); font-size: 1.4rem; color: var(--c-sand); margin-bottom: 0.5rem; }
.footer__tagline { font-size: 0.85rem; color: var(--c-subtle); margin-bottom: 1.5rem; }
.footer h4 { font-family: var(--f-sans); font-size: 0.68rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--c-sun); margin-bottom: 1rem; }
.footer ul li { margin-bottom: 0.5rem; }
.footer ul li a { font-size: 0.88rem; color: var(--c-subtle); transition: color var(--ease); }
.footer ul li a:hover { color: var(--c-sun); }
.footer__addr { font-size: 0.88rem; color: var(--c-subtle); line-height: 2; font-style: normal; }
.footer__addr a { color: var(--c-subtle); }
.footer__addr a:hover { color: var(--c-sun); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer__copy { font-size: 0.78rem; color: var(--c-subtle); margin: 0; }
.footer__legal { display: flex; gap: 1.5rem; }
.footer__legal a { font-size: 0.78rem; color: var(--c-subtle); }
.footer__legal a:hover { color: var(--c-sun); }

/* ── Fade-in Animation ──────────────────────────────────────── */
.fade { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade.in { opacity: 1; transform: translateY(0); }
.fade:nth-child(2) { transition-delay: 0.1s; }
.fade:nth-child(3) { transition-delay: 0.2s; }
.fade:nth-child(4) { transition-delay: 0.3s; }
.fade:nth-child(5) { transition-delay: 0.4s; }
.fade:nth-child(6) { transition-delay: 0.5s; }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero__left { padding: calc(var(--nav-h) + 3rem) var(--sp-md) 3rem; }
  .hero__right { min-height: 60vh; }
  .hero__badge { right: 5%; }
}
@media (max-width: 768px) {
  :root { --sp-lg: 3rem; }
  .nav__links { display: none; position: fixed; top: var(--nav-h); left: 0; width: 100%; background: var(--c-bg); flex-direction: column; padding: 1.5rem; gap: 0.25rem; border-bottom: 1px solid var(--c-border); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
  .nav__links.open { display: flex; }
  .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .g2, .g3 { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .steps { flex-direction: column; }
  .step::after { display: none; }
  .hero__stats { gap: 1.5rem; }
  .trust-bar__inner { justify-content: flex-start; }
  .trust-sep { display: none; }
}
@media (max-width: 480px) {
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .hero__photo { width: 85%; }
}
