/* ============================================
   SILENT HERO — CSS
   Design: Dark Luxury / Shadow Operative
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Syne:wght@400;500;600;700;800&family=DM+Sans:wght@300;400;500&display=swap');

/* ── Variables ── */
:root {
  --bg-void:    #05050d;
  --bg-deep:    #0a0a18;
  --bg-surface: #0f0f22;
  --bg-card:    #141428;
  --gold:       #c8a96e;
  --gold-dim:   #8a7048;
  --gold-glow:  rgba(200,169,110,0.15);
  --ice:        #e8eaff;
  --mist:       #9090b8;
  --ghost:      #4a4a72;
  --white:      #f4f4fc;
  --accent:     #3d5aff;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-head:    'Syne', sans-serif;
  --font-body:    'DM Sans', sans-serif;

  --easing: cubic-bezier(0.23, 1, 0.32, 1);
  --slow: 0.9s;
  --med: 0.55s;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg-void);
  color: var(--ice);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none;
}

::selection {
  background: var(--gold);
  color: var(--bg-void);
}

/* ── Custom Cursor ── */
.cursor {
  position: fixed;
  width: 12px;
  height: 12px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, opacity 0.3s;
  mix-blend-mode: difference;
}
.cursor-ring {
  position: fixed;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(200,169,110,0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.35s var(--easing), width 0.3s, height 0.3s, opacity 0.3s;
}
.cursor-ring.hover {
  width: 60px;
  height: 60px;
  border-color: var(--gold);
}

/* ── Noise Texture Overlay ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
  opacity: 0.6;
}

/* ── Nav ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.5rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.5s, backdrop-filter 0.5s;
}
nav.scrolled {
  background: rgba(5,5,13,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(200,169,110,0.1);
}

.nav-logo {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
}
.nav-logo span { color: var(--gold); }

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mist);
  text-decoration: none;
  transition: color var(--med);
}
.nav-links a:hover { color: var(--gold); }

.nav-cta {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold) !important;
  border: 1px solid var(--gold-dim);
  padding: 0.6rem 1.4rem;
  border-radius: 2px;
  transition: background var(--med), color var(--med) !important;
}
.nav-cta:hover {
  background: var(--gold);
  color: var(--bg-void) !important;
}

/* ── Hero ── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 10rem 4rem 6rem;
}

/* Star field canvas */
#starfield {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Giant silhouette background text */
.hero-watermark {
  position: absolute;
  bottom: -0.1em;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: clamp(8rem, 20vw, 22rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(200,169,110,0.08);
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
  line-height: 1;
  user-select: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
}

.hero-eyebrow {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s var(--easing) 0.3s forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 8vw, 8rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1.1s var(--easing) 0.55s forwards;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}
.hero-title .line2 {
  display: block;
  font-size: clamp(2.8rem, 6.5vw, 6.5rem);
  color: var(--ice);
}

.hero-sub {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--mist);
  max-width: 540px;
  margin: 0 auto 3.5rem;
  line-height: 1.8;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s var(--easing) 0.8s forwards;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s var(--easing) 1s forwards;
}

/* Scroll indicator */
.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeUp 1s var(--easing) 1.5s forwards;
}
.scroll-hint span {
  font-family: var(--font-head);
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ghost);
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--ghost), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--bg-void);
  background: var(--gold);
  padding: 1rem 2.2rem;
  border-radius: 2px;
  transition: all var(--med) var(--easing);
  border: 1px solid var(--gold);
}
.btn-primary:hover {
  background: transparent;
  color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--gold-glow);
}

.btn-ghost {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--mist);
  background: transparent;
  padding: 1rem 2.2rem;
  border-radius: 2px;
  border: 1px solid var(--ghost);
  transition: all var(--med) var(--easing);
}
.btn-ghost:hover {
  color: var(--white);
  border-color: var(--mist);
  transform: translateY(-2px);
}

/* ── Section Base ── */
section {
  position: relative;
  z-index: 2;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 4rem;
}

/* ── Problem Section ── */
#problem {
  padding: 8rem 0;
  background: var(--bg-deep);
  border-top: 1px solid rgba(200,169,110,0.07);
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.section-label {
  font-family: var(--font-head);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 2rem;
}
.section-title em {
  font-style: italic;
  color: var(--gold);
}

.section-body {
  font-size: 1rem;
  color: var(--mist);
  line-height: 1.9;
}

.problem-list {
  list-style: none;
  margin-top: 2rem;
}
.problem-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.95rem;
  color: var(--mist);
  transition: color var(--med);
}
.problem-list li:hover { color: var(--ice); }
.problem-list li::before {
  content: '—';
  color: var(--gold-dim);
  flex-shrink: 0;
  margin-top: 0.05em;
}

/* Big number visual */
.big-stat {
  position: relative;
}
.big-stat-number {
  font-family: var(--font-display);
  font-size: clamp(6rem, 14vw, 14rem);
  font-weight: 600;
  line-height: 0.85;
  color: transparent;
  -webkit-text-stroke: 1px rgba(200,169,110,0.2);
  display: block;
  letter-spacing: -0.04em;
}
.big-stat-label {
  font-family: var(--font-head);
  font-size: 0.72rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--ghost);
  margin-top: 1rem;
  display: block;
}
.big-stat-line {
  position: absolute;
  left: -2rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60%;
  background: linear-gradient(to bottom, transparent, var(--gold-dim), transparent);
}

/* ── Services Section ── */
#services {
  padding: 9rem 0;
  background: var(--bg-void);
}

.services-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 5rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: rgba(200,169,110,0.08);
  border: 1px solid rgba(200,169,110,0.08);
}

.service-card {
  background: var(--bg-void);
  padding: 2.8rem 2.5rem;
  transition: background var(--med);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--slow) var(--easing);
}
.service-card:hover { background: var(--bg-card); }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 1.8rem;
  color: var(--gold);
  opacity: 0.8;
}

.service-title {
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.8rem;
}

.service-text {
  font-size: 0.88rem;
  color: var(--mist);
  line-height: 1.8;
}

/* ── Audience Section ── */
#audience {
  padding: 9rem 0;
  background: var(--bg-surface);
  border-top: 1px solid rgba(200,169,110,0.07);
  border-bottom: 1px solid rgba(200,169,110,0.07);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.audience-card {
  border: 1px solid rgba(200,169,110,0.1);
  padding: 2.5rem;
  border-radius: 2px;
  transition: border-color var(--med), background var(--med);
  position: relative;
}
.audience-card:hover {
  border-color: rgba(200,169,110,0.35);
  background: rgba(200,169,110,0.03);
}

.audience-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(200,169,110,0.15);
  line-height: 1;
  margin-bottom: 1rem;
  display: block;
}

.audience-title {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.8rem;
}

.audience-text {
  font-size: 0.88rem;
  color: var(--mist);
  line-height: 1.8;
}

/* ── How it works ── */
#collaboration {
  padding: 9rem 0;
  background: var(--bg-void);
}

.collab-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: center;
}

.collab-steps {
  margin-top: 3rem;
}
.step {
  display: flex;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  position: relative;
}
.step-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold-dim);
  line-height: 1;
  flex-shrink: 0;
  width: 3rem;
}
.step-content {}
.step-title {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.4rem;
}
.step-text {
  font-size: 0.88rem;
  color: var(--mist);
  line-height: 1.8;
}

/* Shadow illustration */
.collab-visual {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.shadow-figure {
  position: relative;
  width: 200px;
  height: 200px;
}
.shadow-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(200,169,110,0.15);
  animation: ringPulse 4s ease-in-out infinite;
}
.shadow-ring:nth-child(1) { inset: 0; }
.shadow-ring:nth-child(2) { inset: -40px; animation-delay: 0.8s; }
.shadow-ring:nth-child(3) { inset: -80px; animation-delay: 1.6s; }
.shadow-ring:nth-child(4) { inset: -130px; animation-delay: 2.4s; }

.shadow-core {
  position: absolute;
  inset: 30%;
  background: radial-gradient(circle, rgba(200,169,110,0.3) 0%, transparent 70%);
  border-radius: 50%;
}

/* ── Why Section ── */
#why {
  padding: 8rem 0;
  background: var(--bg-deep);
  border-top: 1px solid rgba(200,169,110,0.07);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 4rem;
}

.why-item {
  padding: 0;
}
.why-item-line {
  width: 32px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 1.5rem;
}
.why-item-title {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.8rem;
}
.why-item-text {
  font-size: 0.9rem;
  color: var(--mist);
  line-height: 1.85;
}

/* ── CTA Section ── */
#cta {
  padding: 10rem 0;
  background: var(--bg-void);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200,169,110,0.06) 0%, transparent 65%);
  pointer-events: none;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}
.cta-title em {
  font-style: italic;
  color: var(--gold);
}

.cta-text {
  font-size: 1rem;
  color: var(--mist);
  max-width: 520px;
  margin: 0 auto 3rem;
  line-height: 1.9;
  position: relative;
  z-index: 1;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ── Footer ── */
footer {
  background: var(--bg-void);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 3rem 4rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-brand {
  font-family: var(--font-head);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ghost);
}
.footer-brand a {
  color: var(--gold-dim);
  text-decoration: none;
  transition: color var(--med);
}
.footer-brand a:hover { color: var(--gold); }
.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.footer-links a {
  font-family: var(--font-head);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ghost);
  text-decoration: none;
  transition: color var(--med);
}
.footer-links a:hover { color: var(--mist); }

/* ── Animations ── */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.2); }
}
@keyframes ringPulse {
  0%, 100% { opacity: 0.15; transform: scale(1); }
  50%       { opacity: 0.35; transform: scale(1.04); }
}

/* ── Reveal on scroll ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--easing), transform 0.9s var(--easing);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ── Divider ── */
.gold-divider {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 2rem auto;
}
.gold-divider.left { margin-left: 0; }

/* ── Mobile ── */
@media (max-width: 900px) {
  nav { padding: 1.2rem 2rem; }
  .nav-links { display: none; }
  .section-inner { padding: 0 2rem; }
  #hero { padding: 8rem 2rem 5rem; }
  .problem-grid,
  .collab-layout { grid-template-columns: 1fr; gap: 3rem; }
  .big-stat { display: none; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .audience-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 2rem; }
  .collab-visual { height: 280px; }
  footer { padding: 2rem; }
  .footer-inner { flex-direction: column; gap: 1.5rem; text-align: center; }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ── Contact Form ── */
.contact-form {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form-group--full {
  margin-bottom: 1.2rem;
}

.form-group label {
  font-family: var(--font-head);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--mist);
}

.required-star { color: var(--gold); }

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(200,169,110,0.18);
  border-radius: 2px;
  padding: 0.85rem 1.1rem;
  color: var(--ice);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  outline: none;
  transition: border-color var(--med), background var(--med), box-shadow var(--med);
  -webkit-appearance: none;
  appearance: none;
  resize: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238888aa' stroke-width='1.3' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.form-group select option {
  background: var(--bg-card);
  color: var(--ice);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--ghost); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(200,169,110,0.55);
  background: rgba(200,169,110,0.04);
  box-shadow: 0 0 0 3px rgba(200,169,110,0.07);
}

.form-group input.error,
.form-group textarea.error {
  border-color: rgba(255, 90, 90, 0.5);
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.form-privacy {
  font-size: 0.75rem;
  color: var(--ghost);
  line-height: 1.6;
  max-width: 340px;
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  position: relative;
  min-width: 210px;
  justify-content: center;
  cursor: pointer;
  border: 1px solid var(--gold);
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bg-void);
  background: var(--gold);
  padding: 1rem 2rem;
  border-radius: 2px;
  transition: all var(--med) var(--easing);
}
.btn-submit:hover {
  background: transparent;
  color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--gold-glow);
}
.btn-submit:hover .btn-arrow { transform: translateX(4px); }

.btn-arrow { transition: transform var(--med) var(--easing); flex-shrink: 0; }

.btn-sending { display: none; }

.btn-submit.sending .btn-label,
.btn-submit.sending .btn-arrow { display: none; }
.btn-submit.sending .btn-sending { display: inline; }
.btn-submit.sending { opacity: 0.7; pointer-events: none; cursor: default; }

/* Success state */
.form-success {
  display: none;
  align-items: center;
  gap: 1.2rem;
  margin-top: 2rem;
  padding: 1.5rem 2rem;
  border: 1px solid rgba(200,169,110,0.3);
  border-radius: 2px;
  background: rgba(200,169,110,0.04);
}
.form-success p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--mist);
}
.form-success.visible { display: flex; }

/* Mobile */
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
  .form-footer { flex-direction: column; align-items: stretch; }
  .btn-submit { width: 100%; justify-content: center; }
  .form-privacy { max-width: 100%; }
}

/* Form error state */
.form-error {
  display: none;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
  padding: 1rem 1.5rem;
  border: 1px solid rgba(255,90,90,0.25);
  border-left: 3px solid rgba(255,90,90,0.5);
  border-radius: 2px;
  font-size: 0.88rem;
  color: var(--mist);
  line-height: 1.7;
}
.form-error a { color: var(--gold-dim); text-decoration: none; }
.form-error a:hover { color: var(--gold); }
.form-error.visible { display: flex; }
