/* com1 coding — Premium Gold & Black Theme */

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

:root {
  /* Premium dark palette */
  --bg: #0c0c0e;
  --bg-subtle: #111114;
  --bg-elevated: #18181c;
  --bg-card: #141417;

  /* Refined neutrals */
  --text: #fafafa;
  --text-secondary: #d4d4d8;
  --muted: #71717a;
  --muted-light: #a1a1aa;

  /* Premium gold accent */
  --gold: #d4a853;
  --gold-light: #e9c87b;
  --gold-dark: #b8923f;
  --gold-glow: rgba(212, 168, 83, 0.4);
  --gold-subtle: rgba(212, 168, 83, 0.08);
  --gold-border: rgba(212, 168, 83, 0.25);

  /* Secondary warm accent */
  --champagne: #f5e6c8;
  --champagne-subtle: rgba(245, 230, 200, 0.06);

  /* Glass effects - subtle and premium */
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-bg-hover: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.06);
  --glass-border-hover: rgba(255, 255, 255, 0.1);
  --glass-highlight: rgba(255, 255, 255, 0.12);

  /* Premium gradients */
  --gradient-gold: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  --gradient-gold-subtle: linear-gradient(135deg, var(--gold-subtle) 0%, var(--champagne-subtle) 100%);
  --gradient-card: linear-gradient(145deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
  --gradient-shine: linear-gradient(135deg, rgba(212, 168, 83, 0.1) 0%, transparent 50%);

  /* Effects */
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.25);
  --shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 60px rgba(212, 168, 83, 0.08);
  --shadow-gold: 0 8px 30px rgba(212, 168, 83, 0.2);

  /* Layout */
  --container: 1200px;
  --gutter: 24px;

  /* Typography */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 2rem;
  --text-4xl: 2.5rem;
  --text-5xl: 3.25rem;
  --text-6xl: 4rem;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: var(--text-base);
  min-height: 100vh;
  overflow-x: hidden;
}

/* Subtle premium ambient background */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% -20%, rgba(212, 168, 83, 0.04) 0%, transparent 50%),
    radial-gradient(ellipse 60% 50% at 100% 50%, rgba(212, 168, 83, 0.02) 0%, transparent 40%),
    radial-gradient(ellipse 50% 40% at 0% 80%, rgba(245, 230, 200, 0.02) 0%, transparent 40%);
  pointer-events: none;
  z-index: -1;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--text);
}

/* Container */
.container {
  width: min(100% - 2 * var(--gutter), var(--container));
  margin-inline: auto;
}

/* ==================== HEADER ==================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(12, 12, 14, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--glass-border);
}

.nav {
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 20px 0;
}

.brand {
  font-weight: 600;
  font-size: var(--text-lg);
  letter-spacing: -0.02em;
  color: var(--text);
}

.menu {
  margin: 0;
  padding: 0;
  list-style: none;
  display: none;
  gap: 40px;
}

.menu li a {
  color: var(--muted);
  font-weight: 450;
  font-size: var(--text-sm);
  letter-spacing: 0.01em;
  position: relative;
  padding: 6px 0;
  transition: color 0.3s ease;
}

.menu li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gradient-gold);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu li a:hover {
  color: var(--gold-light);
}

.menu li a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
}

.lang-switch {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  color: var(--muted);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}

.lang-switch:hover {
  border-color: var(--gold-border);
  color: var(--gold);
  background: var(--gold-subtle);
}

.cta {
  display: none;
}

@media (min-width: 800px) {
  .menu { display: flex; }
  .cta { display: inline-flex; }
}

/* ==================== BUTTONS ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 550;
  font-size: var(--text-sm);
  border-radius: var(--radius);
  padding: 14px 28px;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--gradient-gold);
  color: #0c0c0e;
  font-weight: 600;
  box-shadow: var(--shadow-gold), inset 0 1px 0 rgba(255,255,255,0.25);
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--champagne) 50%, var(--gold-light) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-primary span,
.btn-primary {
  position: relative;
  z-index: 1;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(212, 168, 83, 0.3), inset 0 1px 0 rgba(255,255,255,0.3);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-ghost {
  background: transparent;
  border: 1px solid var(--glass-border);
  color: var(--text);
}

.btn-ghost:hover {
  border-color: var(--gold-border);
  color: var(--gold-light);
  background: var(--gold-subtle);
}

/* ==================== HERO ==================== */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

/* Video background */
.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: -2;
}

/* Dark overlay for video - ensures text readability */
.hero .overlay {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  background: rgba(12, 12, 14, 0.6);
  z-index: -1;
}

/* Primary ambient glow */
.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(212, 168, 83, 0.1) 0%, transparent 60%);
  filter: blur(80px);
  pointer-events: none;
  animation: hero-ambient 8s ease-in-out infinite;
}

/* Secondary ambient glow */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(245, 230, 200, 0.06) 0%, transparent 55%);
  filter: blur(100px);
  pointer-events: none;
  animation: hero-ambient-2 12s ease-in-out infinite;
}

/* Floating spots container */
.hero .overlay::before,
.hero .overlay::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

/* Animated floating spots */
.hero .overlay::before {
  width: 300px;
  height: 300px;
  top: 15%;
  left: 10%;
  background:
    radial-gradient(circle at 30% 30%, rgba(212, 168, 83, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(245, 230, 200, 0.2) 0%, transparent 40%);
  filter: blur(40px);
  animation: spot-float-1 20s ease-in-out infinite;
}

.hero .overlay::after {
  width: 250px;
  height: 250px;
  bottom: 20%;
  right: 15%;
  background:
    radial-gradient(circle at 60% 40%, rgba(212, 168, 83, 0.25) 0%, transparent 50%),
    radial-gradient(circle at 30% 70%, rgba(184, 146, 63, 0.15) 0%, transparent 45%);
  filter: blur(35px);
  animation: spot-float-2 18s ease-in-out infinite;
}

/* Hero ambient animations */
@keyframes hero-ambient {
  0%, 100% {
    transform: translateX(-50%) translateY(0) scale(1);
    opacity: 1;
  }
  50% {
    transform: translateX(-50%) translateY(-30px) scale(1.08);
    opacity: 0.8;
  }
}

@keyframes hero-ambient-2 {
  0%, 100% {
    transform: translateX(0) translateY(0) scale(1);
    opacity: 1;
  }
  50% {
    transform: translateX(-20px) translateY(-20px) scale(1.1);
    opacity: 0.7;
  }
}

/* Floating spot animations */
@keyframes spot-float-1 {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.8;
  }
  25% {
    transform: translate(50px, -30px) scale(1.15);
    opacity: 1;
  }
  50% {
    transform: translate(80px, 20px) scale(0.9);
    opacity: 0.6;
  }
  75% {
    transform: translate(30px, 40px) scale(1.1);
    opacity: 0.9;
  }
}

@keyframes spot-float-2 {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.7;
  }
  20% {
    transform: translate(-40px, -50px) scale(1.2);
    opacity: 1;
  }
  40% {
    transform: translate(-70px, -20px) scale(0.85);
    opacity: 0.5;
  }
  60% {
    transform: translate(-30px, 30px) scale(1.1);
    opacity: 0.8;
  }
  80% {
    transform: translate(20px, 10px) scale(0.95);
    opacity: 0.6;
  }
}

/* Extra floating particles via box-shadow (no extra HTML needed) */
.hero .overlay {
  background-image:
    radial-gradient(circle at 20% 80%, rgba(212, 168, 83, 0.15) 0%, transparent 8%),
    radial-gradient(circle at 80% 20%, rgba(245, 230, 200, 0.12) 0%, transparent 6%),
    radial-gradient(circle at 40% 40%, rgba(212, 168, 83, 0.08) 0%, transparent 4%),
    radial-gradient(circle at 65% 75%, rgba(184, 146, 63, 0.1) 0%, transparent 5%),
    radial-gradient(circle at 90% 60%, rgba(212, 168, 83, 0.06) 0%, transparent 3%),
    radial-gradient(circle at 10% 30%, rgba(245, 230, 200, 0.08) 0%, transparent 4%);
  animation: particles-drift 30s ease-in-out infinite;
}

@keyframes particles-drift {
  0%, 100% {
    background-position: 0% 0%, 100% 100%, 50% 50%, 70% 30%, 20% 80%, 90% 10%;
  }
  25% {
    background-position: 10% 20%, 90% 80%, 40% 60%, 80% 40%, 30% 70%, 80% 20%;
  }
  50% {
    background-position: 20% 10%, 80% 90%, 60% 40%, 60% 50%, 40% 60%, 70% 30%;
  }
  75% {
    background-position: 5% 15%, 95% 85%, 45% 55%, 75% 35%, 25% 75%, 85% 15%;
  }
}

.hero-inner {
  position: relative;
  padding: 60px 0 100px;
  text-align: center;
  width: 100%;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 32px;
  padding: 12px 24px;
  background: var(--gradient-gold-subtle);
  border: 1px solid var(--gold-border);
  border-radius: 100px;
  box-shadow: 0 0 40px rgba(212, 168, 83, 0.08);
}

.hero-title {
  font-size: clamp(var(--text-4xl), 9vw, var(--text-6xl));
  font-weight: 650;
  margin: 0 0 28px;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: var(--text);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.hero-title br {
  display: none;
}

@media (min-width: 640px) {
  .hero-title br {
    display: block;
  }
}

.hero-sub {
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 52px;
  font-size: var(--text-lg);
  font-weight: 400;
  line-height: 1.8;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.6);
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==================== STATS BAR ==================== */
.stats-bar {
  position: relative;
  padding: 60px 0;
  background: var(--bg-subtle);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.stats-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 168, 83, 0.2), transparent);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  text-align: center;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }

  .stat {
    border-right: 1px solid var(--glass-border);
  }

  .stat:last-child {
    border-right: none;
  }
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 0 24px;
}

.stat-value {
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -0.03em;
}

.stat-label {
  font-size: var(--text-xs);
  color: var(--muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ==================== SECTIONS ==================== */
.section {
  padding: 120px 0;
  position: relative;
}

.section-alt {
  background: var(--bg-subtle);
}

.section-cta {
  background: linear-gradient(180deg, var(--bg-subtle) 0%, var(--bg) 100%);
  border-top: 1px solid var(--glass-border);
}

.section-head {
  text-align: center;
  margin-bottom: 80px;
}

.section-eyebrow {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin: 0 0 18px;
}

.section-head h2 {
  font-size: clamp(var(--text-2xl), 5vw, var(--text-4xl));
  margin: 0 0 20px;
  font-weight: 650;
  letter-spacing: -0.03em;
}

.section-head p {
  color: var(--muted-light);
  font-size: var(--text-lg);
  font-weight: 400;
  margin: 0;
  max-width: 540px;
  margin-inline: auto;
  line-height: 1.75;
}

/* ==================== GRID ==================== */
.grid {
  display: grid;
  gap: 24px;
}

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

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

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

@media (min-width: 680px) {
  .cards-3 { grid-template-columns: repeat(2, 1fr); }
  .cards-4 { grid-template-columns: repeat(2, 1fr); }
  .cards-5 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .cards-5 { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
  .cards-3 { grid-template-columns: repeat(3, 1fr); }
  .cards-4 { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 1280px) {
  .cards-5 { grid-template-columns: repeat(5, 1fr); }
}

/* ==================== PREMIUM CARDS ==================== */
.card {
  background: var(--gradient-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

/* Top gold accent line */
.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-border), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* Hover glow */
.card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(500px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), var(--gold-subtle), transparent 40%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-border);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

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

.card:hover::after {
  opacity: 1;
}

/* Card icons */
.card-icon {
  position: relative;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-gold-subtle);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  margin-bottom: 24px;
  color: var(--gold);
  transition: all 0.3s ease;
}

.card:hover .card-icon {
  background: var(--gold-subtle);
  border-color: var(--gold);
  box-shadow: 0 0 30px rgba(212, 168, 83, 0.15);
}

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

.card h3 {
  position: relative;
  margin: 0 0 14px;
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.02em;
}

.card p {
  position: relative;
  margin: 0 0 20px;
  color: var(--muted-light);
  line-height: 1.7;
  font-weight: 400;
}

.card ul {
  position: relative;
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.card li {
  position: relative;
  padding-left: 22px;
  margin: 12px 0;
  color: var(--text-secondary);
  font-size: var(--text-sm);
}

.card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold-glow);
}

/* Card with image */
.card-compact {
  padding: 0;
  overflow: hidden;
}

.card-compact img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  width: 100%;
  border-radius: 0;
  filter: brightness(0.9) saturate(0.95) sepia(0.05);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-compact:hover img {
  filter: brightness(1) saturate(1.05) sepia(0.02);
  transform: scale(1.04);
}

.card-compact h3,
.card-compact p {
  padding: 0 28px;
}

.card-compact h3 {
  margin-top: 24px;
}

.card-compact p {
  padding-bottom: 28px;
}

/* ==================== STEPS ==================== */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 0;
}

.steps li {
  background: var(--gradient-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 32px 32px 32px 88px;
  position: relative;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.steps li:hover {
  border-color: var(--gold-border);
  box-shadow: var(--shadow), var(--shadow-glow);
  transform: translateY(-3px);
}

.steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 28px;
  top: 28px;
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  background: var(--gradient-gold);
  color: #0c0c0e;
  font-weight: 700;
  font-size: var(--text-lg);
  box-shadow: var(--shadow-gold);
}

.steps h3 {
  margin: 0 0 10px;
  font-size: var(--text-lg);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.steps p {
  margin: 0;
  color: var(--muted-light);
  font-size: var(--text-sm);
  font-weight: 400;
  line-height: 1.7;
}

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

  .steps li {
    padding: 92px 24px 32px;
  }

  .steps li::before {
    top: 28px;
    left: 24px;
  }
}

/* ==================== CONTACT FORM ==================== */
.contact-form {
  background: var(--gradient-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 52px;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: var(--shadow-lg);
  max-width: 660px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.contact-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 15%;
  right: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-border), transparent);
}

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

.field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.field-full {
  grid-column: 1 / -1;
}

label {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.01em;
}

input, textarea {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  color: var(--text);
  border-radius: var(--radius);
  padding: 16px 18px;
  font-size: var(--text-base);
  font-family: inherit;
  font-weight: 400;
  transition: all 0.3s ease;
}

input::placeholder,
textarea::placeholder {
  color: var(--muted);
}

input:hover,
textarea:hover {
  border-color: var(--glass-border-hover);
  background: rgba(255, 255, 255, 0.04);
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-subtle), 0 0 25px rgba(212, 168, 83, 0.06);
  background: rgba(255, 255, 255, 0.05);
}

textarea {
  resize: vertical;
  min-height: 140px;
}

.actions {
  margin-top: 8px;
}

.actions .btn {
  width: 100%;
  padding: 18px 28px;
  font-size: var(--text-base);
}

@media (min-width: 720px) {
  .form-grid { grid-template-columns: 1fr 1fr; }
  .actions .btn { width: auto; }
}

/* ==================== FOOTER ==================== */
.site-footer {
  padding: 80px 0;
  border-top: 1px solid var(--glass-border);
  background: var(--bg);
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20%;
  right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 168, 83, 0.15), transparent);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}

.footer-inner .brand {
  font-size: var(--text-base);
  font-weight: 550;
  color: var(--text-secondary);
}

.footer-links {
  display: flex;
  gap: 44px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: var(--muted);
  font-size: var(--text-sm);
  font-weight: 450;
  letter-spacing: 0.01em;
  transition: color 0.3s ease;
}

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

.copyright {
  color: var(--muted);
  font-size: var(--text-sm);
  font-weight: 400;
  margin: 0;
}

/* ==================== ACCESSIBILITY ==================== */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}

/* ==================== UTILITY ==================== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
