/* =========================================================
   Heimkino Partner Stuttgart & Ulm — Teaser Landing Page
   Author: Alex Tauer Consulting
   ========================================================= */

:root {
  --bg: #07090f;
  --bg-2: #0a0e18;
  --bg-3: #0f1524;
  --navy: #0b1a2e;
  --navy-2: #14253d;
  --navy-3: #1d3050;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --text: #f4f3ee;
  --text-dim: #b9bdc6;
  --text-mute: #7a818f;
  --gold: #e8b254;
  --gold-2: #d4a24a;
  --gold-soft: rgba(232, 178, 84, 0.16);
  --gold-glow: rgba(232, 178, 84, 0.45);
  --container: 1240px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-soft: 0 30px 80px -40px rgba(0, 0, 0, 0.7);
  --shadow-card: 0 16px 60px -28px rgba(0, 0, 0, 0.85);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --serif: "Fraunces", "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  background-image:
    radial-gradient(1200px 600px at 80% -10%, rgba(232, 178, 84, 0.06), transparent 60%),
    radial-gradient(900px 600px at -10% 30%, rgba(20, 37, 61, 0.5), transparent 60%);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s var(--ease), opacity 0.2s var(--ease);
}

button {
  font-family: inherit;
  cursor: pointer;
}

::selection {
  background: var(--gold);
  color: #0b0d14;
}

/* ---------- LAYOUT ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 56px);
}

.section-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto clamp(48px, 6vw, 80px);
}

.section-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.1rem, 4.6vw, 3.4rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0.4em 0 0.6em;
  color: var(--text);
}

.section-lead {
  color: var(--text-dim);
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  line-height: 1.7;
  max-width: 680px;
  margin-inline: auto;
}

.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mute);
  position: relative;
  padding-left: 28px;
}

.eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 18px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}

.eyebrow--gold {
  color: var(--gold);
}

.gold-accent {
  color: var(--gold);
  font-style: italic;
  font-weight: 400;
}

.hero-title-secondary {
  display: block;
  margin-top: 0.4em;
  font-size: 0.62em;
  font-weight: 300;
  color: var(--text);
  font-style: italic;
  opacity: 0.92;
}

/* ---------- BUTTONS ---------- */
.btn {
  --btn-pad-y: 16px;
  --btn-pad-x: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: var(--btn-pad-y) var(--btn-pad-x);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: all 0.3s var(--ease);
  cursor: pointer;
  text-align: center;
  line-height: 1.2;
}

.btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s var(--ease);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 100%);
  color: #0b0d14;
  box-shadow:
    0 10px 30px -12px var(--gold-glow),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 20px 40px -14px var(--gold-glow),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.btn-primary:hover svg {
  transform: translateX(4px);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border-color: var(--line-strong);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.25);
}

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

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

.btn-block {
  width: 100%;
}

/* ---------- HEADER ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(20px, 4vw, 56px);
  transition: background 0.4s var(--ease), backdrop-filter 0.4s var(--ease), padding 0.3s var(--ease), border-color 0.3s var(--ease);
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(7, 9, 15, 0.78);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom-color: var(--line);
  padding-block: 12px;
}

.brand img {
  height: 44px;
  width: auto;
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.5));
  transition: transform 0.3s var(--ease);
}

.brand:hover img {
  transform: scale(1.04);
}

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

.nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-dim);
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s var(--ease);
}

.nav a:not(.nav-cta):hover {
  color: var(--text);
}

.nav a:not(.nav-cta):hover::after {
  transform: scaleX(1);
}

.nav-cta {
  padding: 10px 22px;
  border: 1px solid var(--gold);
  color: var(--gold);
  border-radius: 999px;
  transition: all 0.3s var(--ease);
}

.nav-cta:hover {
  background: var(--gold);
  color: #0b0d14;
}

.nav-cta::after {
  display: none;
}

.header-phone {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--gold);
  color: var(--gold);
}

.header-phone svg {
  width: 18px;
  height: 18px;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(120px, 14vh, 160px) 0 clamp(80px, 10vh, 120px);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55) contrast(1.06) saturate(0.95);
  transform: scale(1.04);
  animation: heroZoom 22s ease-out infinite alternate;
}

@keyframes heroZoom {
  to { transform: scale(1.12); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(80% 60% at 20% 50%, rgba(7, 9, 15, 0.4) 0%, rgba(7, 9, 15, 0.85) 70%, var(--bg) 100%),
    linear-gradient(180deg, rgba(7, 9, 15, 0.55) 0%, rgba(7, 9, 15, 0.2) 40%, var(--bg) 100%);
}

.hero-spotlight {
  position: absolute;
  z-index: -1;
  width: 800px;
  height: 800px;
  right: -200px;
  top: 50%;
  transform: translateY(-50%);
  background: radial-gradient(closest-side, rgba(232, 178, 84, 0.18), transparent 70%);
  pointer-events: none;
}

.hero-inner {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 56px);
}

.hero-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.6rem, 6.6vw, 5.4rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0.5em 0 0.6em;
  max-width: 18ch;
  color: var(--text);
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.45);
}

.hero-sub {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: var(--text-dim);
  max-width: 56ch;
  margin: 0 0 36px;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 56px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, 4vw, 48px);
  margin: 0;
  padding: 24px 0 0;
  list-style: none;
  border-top: 1px solid var(--line);
  max-width: 720px;
}

.trust-row li {
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: var(--text-dim);
  font-size: 0.88rem;
  align-items: flex-start;
}

.trust-row li strong {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.4rem;
  color: var(--text);
  line-height: 1.1;
}

.trust-icon {
  width: 30px;
  height: 30px;
  margin-bottom: 8px;
  color: var(--gold);
  display: inline-flex;
}

.trust-icon svg {
  width: 100%;
  height: 100%;
}

.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.scroll-cue span {
  width: 2px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollDot 1.6s var(--ease) infinite;
}

@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 1; }
  60% { transform: translateY(14px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ---------- PROBLEM ---------- */
.problem {
  padding: clamp(80px, 12vh, 140px) 0;
  position: relative;
}

.two-col {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}

.problem-text .section-title {
  margin-top: 0.4em;
}

.quote-stack {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 24px;
  font-size: 1.05rem;
  color: var(--text-dim);
  line-height: 1.7;
  border-left: 1px solid var(--line-strong);
  padding-left: 28px;
}

.quote-stack p {
  margin: 0;
}

.quote-stack em {
  color: var(--gold);
  font-style: italic;
  font-weight: 500;
}

.quote-stack .callout {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--text);
  font-style: italic;
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin-top: 8px;
}

.problem-media {
  position: relative;
}

.problem-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-card);
}

.problem-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85) contrast(1.05);
  transition: transform 0.8s var(--ease);
}

.problem-img:hover img {
  transform: scale(1.05);
}

.problem-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(7, 9, 15, 0.65));
  pointer-events: none;
}

.problem-stat {
  position: absolute;
  bottom: -30px;
  right: -10px;
  background: linear-gradient(180deg, var(--navy-2), var(--navy));
  border: 1px solid var(--line-strong);
  padding: 22px 26px;
  border-radius: var(--radius);
  max-width: 240px;
  box-shadow: var(--shadow-card);
}

.stat-num {
  display: block;
  font-family: var(--serif);
  font-size: 2.4rem;
  color: var(--gold);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-text {
  display: block;
  font-size: 0.86rem;
  color: var(--text-dim);
  line-height: 1.5;
}

/* ---------- SOLUTION ---------- */
.solution {
  padding: clamp(80px, 12vh, 140px) 0;
  background: linear-gradient(180deg, transparent, rgba(20, 37, 61, 0.18), transparent);
  position: relative;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feature-card {
  background: linear-gradient(180deg, rgba(20, 37, 61, 0.5), rgba(11, 26, 46, 0.3));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), background 0.4s var(--ease);
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-soft), transparent);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(232, 178, 84, 0.32);
  background: linear-gradient(180deg, rgba(20, 37, 61, 0.75), rgba(11, 26, 46, 0.5));
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-soft);
  color: var(--gold);
  margin-bottom: 24px;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
}

.feature-card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.45rem;
  letter-spacing: -0.01em;
  margin: 0 0 12px;
  color: var(--text);
}

.feature-card p {
  margin: 0;
  font-size: 0.96rem;
  color: var(--text-dim);
  line-height: 1.65;
}

/* ---------- THEMES ---------- */
.themes {
  padding: clamp(80px, 12vh, 140px) 0;
}

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

.theme-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--navy);
  box-shadow: var(--shadow-card);
  transition: transform 0.5s var(--ease);
}

.theme-card:hover {
  transform: translateY(-6px);
}

.theme-img {
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
}

.theme-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
  filter: brightness(0.78) contrast(1.04);
}

.theme-card:hover .theme-img img {
  transform: scale(1.08);
}

.theme-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(7, 9, 15, 0.92));
}

.theme-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px 28px 32px;
  color: var(--text);
}

.theme-num {
  font-family: var(--serif);
  font-size: 0.88rem;
  color: var(--gold);
  letter-spacing: 0.18em;
}

.theme-body h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.55rem;
  letter-spacing: -0.01em;
  margin: 6px 0 10px;
}

.theme-body p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-dim);
  line-height: 1.6;
  max-width: 32ch;
}

/* ---------- REFERENCES ---------- */
.references {
  padding: clamp(80px, 12vh, 140px) 0;
  background: linear-gradient(180deg, transparent, rgba(11, 26, 46, 0.4), transparent);
}

.ref-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}

.ref-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--bg-2);
  display: block;
  transition: transform 0.4s var(--ease);
}

.ref-card--lg {
  grid-column: span 2;
  grid-row: span 2;
}

.ref-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease), filter 0.4s var(--ease);
  filter: brightness(0.85) contrast(1.04);
}

.ref-card:hover img {
  transform: scale(1.08);
  filter: brightness(0.95);
}

.ref-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(7, 9, 15, 0.92));
  pointer-events: none;
}

.ref-meta {
  position: absolute;
  bottom: 18px;
  left: 22px;
  right: 22px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ref-meta span {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.01em;
}

.ref-meta em {
  font-style: normal;
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ---------- TEAM ---------- */
.team {
  padding: clamp(80px, 12vh, 140px) 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  max-width: 980px;
  margin: 0 auto;
}

.team-card {
  background: linear-gradient(180deg, rgba(20, 37, 61, 0.5), rgba(11, 26, 46, 0.3));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: border-color 0.4s var(--ease), transform 0.4s var(--ease);
}

.team-card:hover {
  border-color: rgba(232, 178, 84, 0.32);
  transform: translateY(-4px);
}

.team-avatar {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  margin: 0 auto 22px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--navy-2), var(--navy));
  border: 1px solid var(--gold);
  box-shadow: 0 0 0 4px rgba(232, 178, 84, 0.08);
}

.team-avatar span {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.5rem;
  color: var(--gold);
  letter-spacing: 0.04em;
}

.team-card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.35rem;
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}

.team-role {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}

.team-bio {
  margin: 0;
  color: var(--text-dim);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ---------- PROCESS ---------- */
.process {
  padding: clamp(80px, 12vh, 140px) 0;
  background: linear-gradient(180deg, transparent, rgba(11, 26, 46, 0.4), transparent);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}

.steps::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-soft), var(--gold-soft), transparent);
  z-index: 0;
}

.step {
  position: relative;
  text-align: center;
  padding: 0 12px;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.15rem;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 5px var(--bg);
}

.step h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.25rem;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}

.step p {
  margin: 0;
  color: var(--text-dim);
  font-size: 0.94rem;
  line-height: 1.55;
}

/* ---------- CTA ---------- */
.cta {
  position: relative;
  padding: clamp(90px, 14vh, 160px) 0;
  isolation: isolate;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4) contrast(1.05) blur(2px);
  transform: scale(1.05);
}

.cta-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(60% 80% at 50% 100%, rgba(232, 178, 84, 0.12), transparent 70%),
    linear-gradient(180deg, var(--bg) 0%, rgba(7, 9, 15, 0.85) 35%, rgba(7, 9, 15, 0.85) 65%, var(--bg) 100%);
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.cta-direct {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
}

.cta-or {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mute);
}

.cta-link {
  color: var(--text);
  font-weight: 500;
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 4px;
}

.cta-link:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.cta-form {
  background: linear-gradient(180deg, rgba(20, 37, 61, 0.65), rgba(11, 26, 46, 0.45));
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3vw, 40px);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.cta-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.86rem;
  color: var(--text-dim);
  letter-spacing: 0.04em;
}

.cta-form input,
.cta-form select,
.cta-form textarea {
  background: rgba(7, 9, 15, 0.55);
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  padding: 14px 16px;
  color: var(--text);
  font-family: inherit;
  font-size: 0.98rem;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease), box-shadow 0.25s var(--ease);
  width: 100%;
}

.cta-form input:focus,
.cta-form select:focus,
.cta-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(7, 9, 15, 0.75);
  box-shadow: 0 0 0 3px rgba(232, 178, 84, 0.15);
}

.cta-form textarea {
  resize: vertical;
  min-height: 80px;
  font-family: inherit;
}

.cta-form select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23e8b254' stroke-width='2'><path d='M6 9l6 6 6-6'/></svg>");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 40px;
}

.cta-form select option {
  background: var(--bg-2);
  color: var(--text);
}

.form-disclaimer {
  font-size: 0.78rem;
  color: var(--text-mute);
  margin: 6px 0 0;
  line-height: 1.5;
}

.form-disclaimer a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-success {
  background: rgba(232, 178, 84, 0.1);
  border: 1px solid var(--gold);
  border-radius: 10px;
  padding: 16px 18px;
  color: var(--text);
  font-size: 0.95rem;
}

.form-success strong {
  display: block;
  color: var(--gold);
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.1rem;
  margin-bottom: 4px;
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  padding: clamp(48px, 6vw, 72px) 0 24px;
  margin-top: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  margin-bottom: 48px;
}

.footer-brand img {
  height: 56px;
  width: auto;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
}

.footer-brand p {
  margin: 0;
  color: var(--text-dim);
  font-size: 0.95rem;
  max-width: 36ch;
  line-height: 1.6;
}

.footer-col h4 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.05rem;
  margin: 0 0 16px;
  color: var(--gold);
  letter-spacing: 0.04em;
}

.footer-col p {
  margin: 0 0 12px;
  color: var(--text-dim);
  font-size: 0.94rem;
  line-height: 1.6;
}

.footer-col a {
  color: var(--text-dim);
  border-bottom: 1px solid transparent;
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.footer-col a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

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

.footer-links li {
  margin-bottom: 10px;
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.82rem;
  color: var(--text-mute);
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: clamp(20px, 4vw, 56px);
}

.footer-credit a {
  color: var(--text-dim);
  border-bottom: 1px dashed var(--line-strong);
}

.footer-credit a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* ---------- REVEAL ANIMATION ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  transition-delay: var(--delay, 0s);
}

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

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-media img { animation: none; transform: none; }
  .scroll-cue span { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1100px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .ref-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 200px; }
  .ref-card--lg { grid-column: span 2; grid-row: span 2; }
}

@media (max-width: 880px) {
  .nav { display: none; }
  .header-phone { display: inline-flex; }
  .two-col { grid-template-columns: 1fr; }
  .problem-media { order: -1; max-width: 480px; margin: 0 auto; }
  .problem-stat { right: 10px; }
  .theme-grid { grid-template-columns: 1fr; gap: 22px; }
  .theme-img { aspect-ratio: 16/10; }
  .team-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; gap: 32px; }
  .steps::before { display: none; }
  .cta-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 620px) {
  .feature-grid { grid-template-columns: 1fr; }
  .ref-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; gap: 12px; }
  .ref-card--lg { grid-column: span 2; grid-row: span 1; }
  .steps { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { justify-content: center; }
  .trust-row { gap: 24px; }
  .quote-stack .callout { font-size: 1.25rem; }
}
