/* ============================================================
   STYLE.CSS — moonatriggerfun.quest Christmas Slot
   Core Design System
   ============================================================ */

/* ── CSS VARIABLES ── */
:root {
  /* Base Colors */
  --color-bg-primary:       #07130f;
  --color-bg-secondary:     #0b1f1a;
  --color-surface-glass:    rgba(255, 255, 255, 0.05);
  --color-frost-overlay:    rgba(180, 220, 255, 0.06);

  /* Ice Accents */
  --color-accent-primary:   #7dd3fc;
  --color-accent-secondary: #a5f3fc;
  --color-snow-white:       #ecfeff;

  /* Warm Festive */
  --color-red:              #ef4444;
  --color-gold:             #fbbf24;
  --color-candle:           #fde68a;

  /* Typography */
  --color-text-primary:     #ecfeff;
  --color-text-secondary:   #bae6fd;
  --color-text-muted:       #7dd3fc;

  /* Spacing */
  --section-spacing-desktop: 110px;
  --section-spacing-tablet:  80px;
  --section-spacing-mobile:  60px;

  /* Layout */
  --max-width: 1320px;
  --container-padding: 24px;

  /* Borders */
  --radius-sm:   12px;
  --radius-md:   18px;
  --radius-lg:   22px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast:   0.2s ease;
  --transition-smooth: 0.35s ease;
  --transition-slow:   0.6s ease;

  /* Fonts */
  --font-display: 'Cinzel', Georgia, serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Shadows */
  --shadow-glass:  0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-gold:   0 0 30px rgba(251, 191, 36, 0.25);
  --shadow-ice:    0 0 30px rgba(125, 211, 252, 0.2);
  --shadow-deep:   0 20px 60px rgba(0, 0, 0, 0.6);
}

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

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

body {
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
}

/* ── SNOW CANVAS ── */
#snow-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.5;
}

/* ── CONTAINER ── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-text-primary);
}

p {
  color: var(--color-text-secondary);
  line-height: 1.8;
}

a {
  color: var(--color-accent-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-accent-secondary);
}

ul {
  list-style: none;
}

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

/* ── HEADER ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 0;
  background: rgba(7, 19, 15, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(125, 211, 252, 0.1);
  transition: background var(--transition-smooth), box-shadow var(--transition-smooth), padding var(--transition-smooth);
}

.site-header.scrolled {
  background: rgba(7, 19, 15, 0.92);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  padding: 12px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* ── LOGO ── */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  font-size: 1.5rem;
  line-height: 1;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-snow-white);
  letter-spacing: 0.02em;
}

.logo-dot {
  color: var(--color-accent-primary);
}

/* ── MAIN NAV ── */
.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

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

.nav-link {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--color-accent-primary), var(--color-accent-secondary));
  transition: width var(--transition-smooth);
  box-shadow: 0 0 8px var(--color-accent-primary);
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-snow-white);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* ── HAMBURGER ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 101;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-accent-primary);
  border-radius: 2px;
  transition: transform var(--transition-smooth), opacity var(--transition-smooth);
}

/* ── MOBILE DRAWER ── */
.drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(7, 19, 15, 0.8);
  backdrop-filter: blur(8px);
  z-index: 200;
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.drawer-overlay.active {
  opacity: 1;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(320px, 85vw);
  height: 100%;
  background: var(--color-bg-secondary);
  border-left: 1px solid rgba(125, 211, 252, 0.15);
  z-index: 201;
  padding: 80px 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  transition: right var(--transition-smooth);
  backdrop-filter: blur(30px);
}

.mobile-drawer.active {
  right: 0;
}

.drawer-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--color-surface-glass);
  border: 1px solid rgba(125, 211, 252, 0.2);
  color: var(--color-text-secondary);
  font-size: 1rem;
  cursor: pointer;
  border-radius: 8px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.drawer-close:hover {
  background: rgba(125, 211, 252, 0.1);
  color: var(--color-snow-white);
}

.drawer-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.drawer-link {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--color-text-secondary);
  padding: 12px 0;
  border-bottom: 1px solid rgba(125, 211, 252, 0.08);
  transition: color var(--transition-fast);
}

.drawer-link:hover {
  color: var(--color-snow-white);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), filter var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--color-surface-glass);
  border: 1px solid rgba(125, 211, 252, 0.3);
  color: var(--color-accent-primary);
  backdrop-filter: blur(10px);
}

.btn-primary:hover {
  background: rgba(125, 211, 252, 0.1);
  box-shadow: 0 0 20px rgba(125, 211, 252, 0.15);
  color: var(--color-snow-white);
}

.btn-gold {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
  color: #07130f;
  font-weight: 700;
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  box-shadow: 0 0 40px rgba(251, 191, 36, 0.45);
  filter: brightness(1.1);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(125, 211, 252, 0.25);
  color: var(--color-text-secondary);
  backdrop-filter: blur(10px);
}

.btn-glass:hover {
  background: rgba(125, 211, 252, 0.08);
  color: var(--color-snow-white);
  box-shadow: 0 0 20px rgba(125, 211, 252, 0.1);
}

.btn-large {
  padding: 16px 36px;
  font-size: 0.95rem;
  border-radius: var(--radius-lg);
}

.btn-full {
  width: 100%;
}

.nav-cta {
  flex-shrink: 0;
}

/* ── HERO SECTION ── */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  overflow: hidden;
}

.hero-aurora {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 30%, rgba(125, 211, 252, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 70%, rgba(251, 191, 36, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse 100% 80% at 50% 100%, rgba(11, 31, 26, 0.8) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: var(--section-spacing-desktop) var(--container-padding);
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  background: rgba(251, 191, 36, 0.1);
  border: 1px solid rgba(251, 191, 36, 0.2);
  border-radius: var(--radius-full);
  padding: 6px 16px;
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 24px;
  color: var(--color-snow-white);
}

.title-accent {
  background: linear-gradient(135deg, var(--color-accent-primary), var(--color-accent-secondary), var(--color-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--color-text-secondary);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.hero-disclaimer {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  opacity: 0.7;
}

/* ── SLOT SHRINE (HERO VISUAL) ── */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.slot-shrine {
  position: relative;
  width: 360px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slot-glow-ring {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  background: transparent;
  box-shadow:
    0 0 60px rgba(125, 211, 252, 0.12),
    0 0 120px rgba(251, 191, 36, 0.06);
  animation: glow-pulse 4s ease-in-out infinite;
}

.slot-machine-preview {
  background: linear-gradient(160deg, rgba(11, 31, 26, 0.9), rgba(7, 19, 15, 0.95));
  border: 1px solid rgba(125, 211, 252, 0.2);
  border-radius: var(--radius-lg);
  padding: 24px;
  width: 260px;
  box-shadow:
    var(--shadow-glass),
    0 0 40px rgba(125, 211, 252, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  animation: float-gentle 6s ease-in-out infinite;
}

.slot-top-ornament {
  display: flex;
  justify-content: center;
  gap: 16px;
  font-size: 1.4rem;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(125, 211, 252, 0.1);
}

.slot-reels {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 16px;
}

.reel {
  flex: 1;
  height: 70px;
  background: rgba(7, 19, 15, 0.8);
  border: 1px solid rgba(125, 211, 252, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  position: relative;
  overflow: hidden;
}

.reel-active {
  border-color: rgba(251, 191, 36, 0.4);
  box-shadow: 0 0 16px rgba(251, 191, 36, 0.2);
}

.slot-base {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid rgba(125, 211, 252, 0.1);
  position: relative;
}

.slot-lever {
  width: 40px;
  height: 12px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-candle));
  border-radius: 6px;
  box-shadow: 0 0 12px rgba(251, 191, 36, 0.4);
}

.floating-ornament {
  position: absolute;
  font-size: 1.5rem;
  animation: float-orbit 8s ease-in-out infinite;
  pointer-events: none;
}

.ornament-1 {
  top: 10%;
  right: 5%;
  animation-delay: 0s;
}

.ornament-2 {
  bottom: 20%;
  left: 0%;
  animation-delay: -2.5s;
}

.ornament-3 {
  top: 40%;
  right: -5%;
  animation-delay: -5s;
}

/* ── HERO SCROLL HINT ── */
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  animation: scroll-hint-fade 2s ease-in-out infinite;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, transparent, var(--color-accent-primary), transparent);
}

.scroll-text {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

/* ── SECTION SHARED STYLES ── */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--color-snow-white);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--color-text-muted);
  max-width: 520px;
  margin: 0 auto;
}

.body-text {
  font-size: 1rem;
  color: var(--color-text-secondary);
  margin-bottom: 20px;
  line-height: 1.9;
}

/* ── PLAY SECTION ── */
.play-section {
  padding: var(--section-spacing-desktop) 0;
  position: relative;
  z-index: 2;
}

.game-frame-wrapper {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
}

.game-frame-glow {
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--radius-lg) + 2px);
  background: linear-gradient(135deg,
    rgba(125, 211, 252, 0.3) 0%,
    rgba(251, 191, 36, 0.2) 50%,
    rgba(125, 211, 252, 0.3) 100%
  );
  animation: border-glow-pulse 3s ease-in-out infinite;
  z-index: 0;
}

.game-frame-container {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-bg-secondary);
  border: 1px solid rgba(125, 211, 252, 0.15);
  box-shadow: var(--shadow-deep);
  aspect-ratio: 16 / 9;
}

.game-iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.game-frame-ornaments {
  pointer-events: none;
}

.frame-ornament {
  position: absolute;
  font-size: 1.8rem;
  z-index: 2;
  filter: drop-shadow(0 0 8px rgba(125, 211, 252, 0.5));
}

.frame-ornament-tl { top: -16px; left: -16px; }
.frame-ornament-tr { top: -16px; right: -16px; }
.frame-ornament-bl { bottom: -16px; left: -16px; }
.frame-ornament-br { bottom: -16px; right: -16px; }

.play-note {
  text-align: center;
  margin-top: 24px;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  opacity: 0.7;
}

/* ── FEATURES SECTION ── */
.features-section {
  padding: var(--section-spacing-desktop) 0;
  position: relative;
  z-index: 2;
}

.features-frost-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(125, 211, 252, 0.04) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 0% 100%, rgba(11, 31, 26, 0.6) 0%, transparent 70%);
  pointer-events: none;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.feature-card {
  background: var(--color-surface-glass);
  border: 1px solid rgba(125, 211, 252, 0.1);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  backdrop-filter: blur(16px);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-smooth);
  animation-delay: var(--delay, 0s);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4), 0 0 30px rgba(125, 211, 252, 0.08);
  border-color: rgba(125, 211, 252, 0.2);
}

.feature-icon {
  font-size: 2.2rem;
  margin-bottom: 20px;
  display: block;
  filter: drop-shadow(0 0 8px rgba(125, 211, 252, 0.3));
}

.feature-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-snow-white);
  margin-bottom: 12px;
}

.feature-text {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.75;
}

/* ── CTA BANNER ── */
.cta-banner {
  padding: var(--section-spacing-desktop) 0;
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.cta-banner-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 100% at 50% 50%, rgba(125, 211, 252, 0.06) 0%, transparent 70%),
    linear-gradient(180deg, var(--color-bg-secondary) 0%, var(--color-bg-primary) 100%);
}

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.cta-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--color-snow-white);
}

.cta-text {
  font-size: 1rem;
  color: var(--color-text-muted);
  max-width: 400px;
}

/* ── LEGAL STRIP ── */
.legal-strip {
  padding: 40px 0;
  background: var(--color-bg-secondary);
  border-top: 1px solid rgba(125, 211, 252, 0.08);
  position: relative;
  z-index: 2;
}

.legal-strip-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.legal-icons {
  display: flex;
  gap: 16px;
  font-size: 1.2rem;
  opacity: 0.6;
}

.legal-text {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  max-width: 680px;
  opacity: 0.8;
  line-height: 1.7;
}

.legal-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.legal-links a {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color var(--transition-fast);
}

.legal-links a:hover {
  color: var(--color-snow-white);
}

/* ── FOOTER ── */
.site-footer {
  background: var(--color-bg-secondary);
  border-top: 1px solid rgba(125, 211, 252, 0.08);
  position: relative;
  z-index: 2;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: 64px 0 48px;
  align-items: start;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-tagline {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.footer-nav {
  display: flex;
  gap: 48px;
  justify-content: flex-end;
}

.footer-col h4 {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  transition: color var(--transition-fast);
}

.footer-col a:hover {
  color: var(--color-snow-white);
}

.footer-bottom {
  border-top: 1px solid rgba(125, 211, 252, 0.06);
  padding: 24px 0;
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  opacity: 0.6;
  text-align: center;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  position: relative;
  padding: 160px 0 80px;
  overflow: hidden;
  z-index: 2;
}

.page-hero--legal {
  padding: 140px 0 70px;
}

.page-hero-aurora {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 50% 0%, rgba(125, 211, 252, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 80% 50%, rgba(251, 191, 36, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.page-hero-title {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  color: var(--color-snow-white);
  margin-bottom: 16px;
}

.page-hero-subtitle {
  font-size: 1rem;
  color: var(--color-text-muted);
  max-width: 500px;
  margin: 0 auto;
}

/* ── CONTENT SECTION ── */
.content-section {
  padding: var(--section-spacing-desktop) 0;
  position: relative;
  z-index: 2;
}

/* ── ABOUT GRID ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-text-col .section-eyebrow {
  display: block;
  margin-bottom: 16px;
}

.about-text-col .section-title {
  margin-bottom: 28px;
  text-align: left;
}

.about-visual-card {
  background: var(--color-surface-glass);
  border: 1px solid rgba(125, 211, 252, 0.12);
  border-radius: var(--radius-lg);
  padding: 48px;
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-glass);
}

.about-visual-inner {
  text-align: center;
}

.about-visual-scene {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  font-size: 3rem;
  margin-bottom: 24px;
}

.about-scene-icon--lg {
  font-size: 4rem;
}

.about-visual-caption {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  letter-spacing: 0.08em;
}

/* ── CONTACT GRID ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}

.contact-info .section-title {
  text-align: left;
  margin-bottom: 20px;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.contact-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--color-surface-glass);
  border: 1px solid rgba(125, 211, 252, 0.1);
  border-radius: var(--radius-md);
  padding: 20px;
  backdrop-filter: blur(10px);
}

.contact-card-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-card-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-snow-white);
  margin-bottom: 4px;
}

.contact-card-text {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* ── CONTACT FORM ── */
.contact-form {
  background: var(--color-surface-glass);
  border: 1px solid rgba(125, 211, 252, 0.12);
  border-radius: var(--radius-lg);
  padding: 40px;
  backdrop-filter: blur(16px);
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}

.form-input,
.form-textarea {
  width: 100%;
  background: rgba(7, 19, 15, 0.6);
  border: 1px solid rgba(125, 211, 252, 0.15);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  color: var(--color-text-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(125, 211, 252, 0.3);
}

.form-input:focus,
.form-textarea:focus {
  border-color: rgba(125, 211, 252, 0.4);
  box-shadow: 0 0 0 3px rgba(125, 211, 252, 0.06);
}

.form-textarea {
  resize: vertical;
  min-height: 130px;
}

.form-privacy {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  text-align: center;
  margin-top: 16px;
  opacity: 0.7;
}

.form-success {
  background: var(--color-surface-glass);
  border: 1px solid rgba(125, 211, 252, 0.2);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  backdrop-filter: blur(16px);
}

.success-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 20px;
}

.form-success h3 {
  font-size: 1.5rem;
  color: var(--color-snow-white);
  margin-bottom: 12px;
}

.form-success p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

/* ── LEGAL CONTENT SECTION ── */
.legal-content-section {
  padding: var(--section-spacing-desktop) 0;
  position: relative;
  z-index: 2;
}

.legal-doc {
  max-width: 820px;
  margin: 0 auto;
}

.legal-notice {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: rgba(125, 211, 252, 0.05);
  border: 1px solid rgba(125, 211, 252, 0.15);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 48px;
}

.legal-notice--calm {
  background: rgba(251, 191, 36, 0.04);
  border-color: rgba(251, 191, 36, 0.15);
}

.legal-notice-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.legal-notice p {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.legal-section {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(125, 211, 252, 0.06);
}

.legal-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.legal-section h2 {
  font-size: 1.2rem;
  color: var(--color-snow-white);
  margin-bottom: 16px;
  padding-left: 16px;
  border-left: 2px solid var(--color-accent-primary);
}

.legal-section p {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  margin-bottom: 12px;
  line-height: 1.8;
}

.legal-section ul {
  margin: 12px 0 12px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.legal-section ul li {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  position: relative;
  padding-left: 20px;
  line-height: 1.7;
}

.legal-section ul li::before {
  content: '❄️';
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 0.7rem;
}

.legal-section a {
  color: var(--color-accent-primary);
  text-decoration: underline;
  text-decoration-color: rgba(125, 211, 252, 0.3);
}

.legal-section a:hover {
  color: var(--color-snow-white);
}

/* ── FOOTER COL TITLE ── */
.footer-col-title {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 20px;
}
/* ============================================================
   END STYLE.CSS
   ============================================================ */