/* =============================================================
   HeimKinoSystems — Teaser Landing Page
   Palette: Obsidian + Warmes Bernstein-Gold + Smaragd-Akzent
   ============================================================= */

:root {
  --c-bg: #0a0a0b;
  --c-bg-2: #101013;
  --c-surface: #141418;
  --c-surface-2: #1b1b20;
  --c-line: rgba(255, 255, 255, 0.08);
  --c-line-strong: rgba(255, 255, 255, 0.14);

  --c-text: #f4f2ec;
  --c-text-dim: rgba(244, 242, 236, 0.72);
  --c-text-mute: rgba(244, 242, 236, 0.52);

  --c-gold: #d8a964;
  --c-gold-bright: #eac388;
  --c-gold-deep: #a57a3c;
  --c-emerald: #3aa070;

  --ff-display: "Fraunces", "Cormorant Garamond", "Times New Roman", serif;
  --ff-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, system-ui, sans-serif;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --shadow-card: 0 10px 40px -12px rgba(0, 0, 0, 0.8);
  --shadow-float: 0 40px 80px -28px rgba(0, 0, 0, 0.9);

  --container: 1240px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-soft: cubic-bezier(0.33, 1, 0.68, 1);
}

/* =============================================================
   Reset & base
   ============================================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--c-text);
  background: var(--c-bg);
  background-image:
    radial-gradient(1200px 800px at 85% -10%, rgba(216, 169, 100, 0.06), transparent 60%),
    radial-gradient(900px 700px at -10% 30%, rgba(58, 160, 112, 0.03), transparent 60%);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s var(--ease);
}
a:hover { color: var(--c-gold-bright); }

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--c-gold);
  color: #000;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  z-index: 1000;
}
.skip-link:focus { top: 1rem; }

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

/* =============================================================
   Typography
   ============================================================= */
.display {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(2.4rem, 5.5vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0 0 1.5rem;
  font-variation-settings: "opsz" 120;
}
.display em {
  font-style: italic;
  font-weight: 300;
  color: var(--c-gold);
  font-variation-settings: "opsz" 144;
}
.display--lg {
  font-size: clamp(2.8rem, 6.2vw, 5.6rem);
}

.lead {
  font-size: clamp(1.02rem, 1.1vw + 0.6rem, 1.18rem);
  color: var(--c-text-dim);
  line-height: 1.65;
  margin: 0 0 1rem;
  max-width: 56ch;
}

.eyebrow {
  font-family: var(--ff-body);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-gold);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 1.25rem;
}
.eyebrow--muted { color: var(--c-text-mute); }
.eyebrow .dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-gold);
  box-shadow: 0 0 14px rgba(216, 169, 100, 0.8);
}

/* =============================================================
   Buttons
   ============================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-weight: 500;
  font-size: 0.96rem;
  padding: 0.95rem 1.5rem;
  border-radius: 999px;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), box-shadow 0.25s var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.btn--primary {
  background: linear-gradient(135deg, var(--c-gold-bright), var(--c-gold) 45%, var(--c-gold-deep));
  color: #121008;
  box-shadow: 0 10px 40px -10px rgba(216, 169, 100, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(234, 195, 136, 0.6);
}
.btn--primary:hover {
  transform: translateY(-2px);
  color: #121008;
  box-shadow: 0 18px 50px -10px rgba(216, 169, 100, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}
.btn--ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--c-text);
  border: 1px solid var(--c-line-strong);
  backdrop-filter: blur(12px);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--c-gold);
  color: var(--c-text);
}
.btn--pill {
  padding: 0.6rem 1.1rem;
  font-size: 0.88rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--c-line-strong);
  color: var(--c-text);
}
.btn--pill:hover {
  background: var(--c-gold);
  color: #121008;
  border-color: var(--c-gold);
}
.btn--wide { width: 100%; padding: 1.1rem 1.5rem; font-size: 1rem; }

/* =============================================================
   Navigation
   ============================================================= */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 0;
  transition: background 0.35s var(--ease), backdrop-filter 0.35s var(--ease), border-color 0.35s var(--ease), padding 0.35s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav[data-scrolled] {
  background: rgba(10, 10, 11, 0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom-color: var(--c-line);
  padding: 0.6rem 0;
}
.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.nav__brand img {
  height: 32px;
  width: auto;
  filter: drop-shadow(0 1px 0 rgba(0, 0, 0, 0.4));
}
.nav__links {
  display: flex;
  gap: 2rem;
  font-size: 0.92rem;
  color: var(--c-text-dim);
}
.nav__links a {
  position: relative;
  padding: 0.25rem 0;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 1px;
  width: 100%;
  background: var(--c-gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease);
}
.nav__links a:hover { color: var(--c-text); }
.nav__links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

@media (max-width: 840px) {
  .nav__links { display: none; }
}

/* =============================================================
   Hero
   ============================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 8rem 0 6rem;
  overflow: hidden;
  isolation: isolate;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 1.2s var(--ease);
}
body.loaded .hero__media img { transform: scale(1); }

.hero__vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 55% 40%, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.55) 60%, rgba(0, 0, 0, 0.9) 100%),
    linear-gradient(180deg, rgba(10, 10, 11, 0.55) 0%, rgba(10, 10, 11, 0.35) 30%, rgba(10, 10, 11, 0.75) 75%, var(--c-bg) 100%),
    linear-gradient(90deg, rgba(10, 10, 11, 0.65) 0%, rgba(10, 10, 11, 0.2) 45%, transparent 75%);
}
.hero__grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.04 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: 0.6;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.hero__content {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  width: 100%;
  max-width: calc(var(--container) + 2rem);
}
.hero__content > * { max-width: 820px; }
.hero__sub {
  font-size: clamp(1.05rem, 0.5vw + 0.95rem, 1.25rem);
  color: var(--c-text-dim);
  line-height: 1.6;
  margin: 0 0 2.5rem;
  max-width: 56ch;
}
.hero__cta {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.trust {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2.25rem;
  color: var(--c-text-dim);
  font-size: 0.94rem;
}
.trust li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.trust svg { color: var(--c-gold); flex-shrink: 0; }

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 22px;
  height: 38px;
  border: 1px solid var(--c-line-strong);
  border-radius: 999px;
  display: none;
}
.hero__scroll span {
  display: block;
  width: 2px;
  height: 8px;
  background: var(--c-gold);
  margin: 6px auto 0;
  border-radius: 2px;
  animation: scrollHint 2s infinite;
}
@keyframes scrollHint {
  0%, 100% { transform: translateY(0); opacity: 0.8; }
  50% { transform: translateY(10px); opacity: 0.2; }
}
@media (min-width: 1024px) {
  .hero__scroll { display: block; }
}

/* =============================================================
   Section spacing
   ============================================================= */
section {
  padding: clamp(4rem, 9vw, 8rem) 0;
  position: relative;
}

/* =============================================================
   Problem
   ============================================================= */
.problem {
  background: linear-gradient(180deg, var(--c-bg) 0%, var(--c-bg-2) 100%);
  border-top: 1px solid var(--c-line);
}
.problem__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 3rem 0;
}
.problem__quote {
  margin: 0;
  padding: 2rem 1.75rem;
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}
.problem__quote::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--c-gold) 0%, transparent 100%);
  opacity: 0.6;
}
.problem__quote blockquote {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--c-text-dim);
  font-family: var(--ff-body);
  font-style: italic;
}
.problem__quote blockquote strong {
  color: var(--c-text);
  font-style: normal;
  font-weight: 500;
}
.problem__tag {
  margin-top: 2rem;
  font-family: var(--ff-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  line-height: 1.3;
  color: var(--c-text-mute);
  max-width: 42ch;
}
.problem__tag span {
  color: var(--c-gold);
  font-style: italic;
  font-weight: 400;
}

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

/* =============================================================
   Solution
   ============================================================= */
.solution {
  background: var(--c-bg-2);
  border-top: 1px solid var(--c-line);
}
.solution__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.solution__portrait {
  margin: 0;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-float);
}
.solution__portrait img {
  aspect-ratio: 4/5;
  object-fit: cover;
  width: 100%;
  transition: transform 1.2s var(--ease-soft);
}
.solution__portrait:hover img { transform: scale(1.03); }
.solution__portrait figcaption {
  position: absolute;
  left: 1.25rem;
  bottom: 1.25rem;
  background: rgba(10, 10, 11, 0.75);
  backdrop-filter: blur(14px);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--c-line);
  font-size: 0.88rem;
  display: flex;
  flex-direction: column;
}
.caption__name { font-weight: 600; color: var(--c-text); }
.caption__role { color: var(--c-text-mute); font-size: 0.78rem; letter-spacing: 0.04em; }

.solution__text .lead:last-child strong {
  color: var(--c-text);
  font-weight: 500;
}

.services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  border-top: 1px solid var(--c-line);
  padding-top: clamp(3rem, 6vw, 5rem);
}
.service {
  padding: 1.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), background 0.35s var(--ease);
}
.service:hover {
  transform: translateY(-4px);
  border-color: rgba(216, 169, 100, 0.35);
  background: rgba(216, 169, 100, 0.04);
}
.service__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid var(--c-line-strong);
  color: var(--c-gold);
  margin-bottom: 1.25rem;
}
.service__icon svg { width: 22px; height: 22px; }
.service h3 {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 1.22rem;
  margin: 0 0 0.5rem;
  letter-spacing: -0.01em;
}
.service p {
  margin: 0;
  color: var(--c-text-dim);
  font-size: 0.94rem;
  line-height: 1.55;
}

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

/* =============================================================
   Themenfelder
   ============================================================= */
.themes { border-top: 1px solid var(--c-line); }
.themes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.theme {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
  display: flex;
  flex-direction: column;
}
.theme:hover {
  transform: translateY(-6px);
  border-color: rgba(216, 169, 100, 0.35);
}
.theme__image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.theme__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease-soft);
}
.theme:hover .theme__image img { transform: scale(1.06); }
.theme__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 10, 11, 0.75) 100%);
}
.theme__body {
  padding: 1.75rem 1.5rem 2rem;
  position: relative;
}
.theme__idx {
  font-family: var(--ff-display);
  font-size: 0.85rem;
  color: var(--c-gold);
  letter-spacing: 0.15em;
  display: block;
  margin-bottom: 0.5rem;
}
.theme h3 {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: 1.55rem;
  margin: 0 0 0.75rem;
  letter-spacing: -0.01em;
}
.theme p {
  margin: 0;
  color: var(--c-text-dim);
  font-size: 0.96rem;
  line-height: 1.6;
}

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

/* =============================================================
   References
   ============================================================= */
.references {
  background: var(--c-bg-2);
  border-top: 1px solid var(--c-line);
}
.refs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}
.ref {
  margin: 0;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  border: 1px solid var(--c-line);
}
.ref img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease-soft), filter 0.4s var(--ease);
  filter: brightness(0.82) saturate(0.95);
}
.ref:hover img {
  transform: scale(1.08);
  filter: brightness(1) saturate(1.05);
}
.ref figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.5rem 1.25rem 1.25rem;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 10, 11, 0.85) 100%);
  color: var(--c-text);
  font-size: 0.96rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  font-family: var(--ff-display);
  letter-spacing: -0.005em;
}
.ref figcaption span {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-gold);
  font-family: var(--ff-body);
  font-weight: 500;
}

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

/* =============================================================
   Testimonials
   ============================================================= */
.testimonials { border-top: 1px solid var(--c-line); }
.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.quote {
  margin: 0;
  padding: 2rem 1.75rem 1.75rem;
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  position: relative;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease);
}
.quote:hover {
  transform: translateY(-4px);
  border-color: rgba(216, 169, 100, 0.35);
}
.quote__mark {
  width: 34px;
  height: auto;
  color: var(--c-gold);
  opacity: 0.6;
  margin-bottom: 1rem;
}
.quote blockquote {
  margin: 0 0 1.5rem;
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: 1.06rem;
  line-height: 1.55;
  color: var(--c-text);
  font-style: italic;
  letter-spacing: -0.005em;
}
.quote figcaption {
  font-size: 0.86rem;
  color: var(--c-gold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
}

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

/* =============================================================
   Process
   ============================================================= */
.process {
  background: var(--c-bg-2);
  border-top: 1px solid var(--c-line);
}
.steps {
  list-style: none;
  padding: 0;
  margin: 3rem 0 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  counter-reset: step;
}
.step {
  padding: 2rem 1.5rem;
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.015);
  position: relative;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.step:hover {
  border-color: rgba(216, 169, 100, 0.35);
  background: rgba(216, 169, 100, 0.04);
}
.step__num {
  display: inline-block;
  font-family: var(--ff-display);
  font-size: 2.6rem;
  line-height: 1;
  color: var(--c-gold);
  font-weight: 300;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.step h3 {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 1.18rem;
  margin: 0 0 0.5rem;
  letter-spacing: -0.01em;
}
.step p {
  margin: 0;
  color: var(--c-text-dim);
  font-size: 0.95rem;
  line-height: 1.55;
}

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

/* =============================================================
   CTA / Form
   ============================================================= */
.cta {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-top: 1px solid var(--c-line);
}
.cta__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.cta__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.25) saturate(0.85);
}
.cta__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(216, 169, 100, 0.12), transparent 60%),
    linear-gradient(180deg, rgba(10, 10, 11, 0.7) 0%, rgba(10, 10, 11, 0.85) 100%);
}
.cta__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.cta__direct {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.98rem;
}
.cta__direct-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--c-text-dim);
}
.cta__direct-row a {
  color: var(--c-text);
  font-weight: 500;
}
.cta__direct-row svg { color: var(--c-gold); }

.form {
  background: rgba(20, 20, 24, 0.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--c-line-strong);
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  box-shadow: var(--shadow-float);
}
.form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.field > span {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-text-mute);
  font-weight: 500;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-sm);
  color: var(--c-text);
  font-family: inherit;
  font-size: 0.98rem;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--c-gold);
  background: rgba(216, 169, 100, 0.05);
}
.field--full { grid-column: 1 / -1; }
.field--textarea textarea { resize: vertical; min-height: 80px; }
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1l5 5 5-5' stroke='%23d8a964' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.field select option { background: var(--c-surface); color: var(--c-text); }

.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form__meta {
  margin: 1rem 0 0;
  font-size: 0.82rem;
  color: var(--c-text-mute);
  text-align: center;
}
.form__meta a {
  color: var(--c-gold);
  text-decoration: underline;
  text-decoration-color: rgba(216, 169, 100, 0.4);
  text-underline-offset: 2px;
}
.form__status {
  margin-top: 1rem;
  font-size: 0.92rem;
  text-align: center;
  min-height: 1.2em;
}
.form__status[data-state="success"] {
  color: var(--c-emerald);
}
.form__status[data-state="error"] {
  color: #e57373;
}

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

/* =============================================================
   Footer
   ============================================================= */
.foot {
  background: #060606;
  border-top: 1px solid var(--c-line);
  padding: clamp(3rem, 6vw, 4.5rem) 0 2rem;
}
.foot__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem 3rem;
  align-items: start;
}
.foot__brand img {
  height: 34px;
  width: auto;
  margin-bottom: 1.25rem;
}
.foot__brand p {
  margin: 0;
  color: var(--c-text-dim);
  font-size: 0.9rem;
  line-height: 1.75;
}
.foot__brand a { color: var(--c-text); }
.foot__brand a:hover { color: var(--c-gold); }

.foot__links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.92rem;
}
.foot__links a {
  color: var(--c-text-dim);
  transition: color 0.2s var(--ease);
}
.foot__links a:hover { color: var(--c-gold); }

.foot__fine {
  grid-column: 1 / -1;
  margin: 1.5rem 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--c-line);
  color: var(--c-text-mute);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

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

/* =============================================================
   Reveal animations
   ============================================================= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  transition-delay: 0ms;
}
.reveal[data-visible] {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
