/* =========================================================
   GAMITRON PUBLISHER — Luxe Gold / Black Premium
   Cormorant Garamond (display) + Outfit (body)
   ========================================================= */

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

/* ── CSS Custom Properties ── */
:root {
  /* Light (champagne / ivory) */
  --bg:          #f7f3ec;
  --bg-alt:      #ede8de;
  --bg-card:     #ffffff;
  --ink:         #1a1208;
  --ink-soft:    #4a3f2e;
  --ink-muted:   #7a6e5e;
  --gold:        #b8860b;
  --gold-light:  #d4af37;
  --gold-bright: #f3d98b;
  --gold-grad:   linear-gradient(135deg, #b8860b 0%, #d4af37 45%, #f3d98b 80%, #d4af37 100%);
  --gold-text:   linear-gradient(135deg, #b8860b 0%, #d4af37 50%, #f0c842 100%);
  --keyline:     rgba(184,134,11,0.25);
  --keyline-strong: rgba(184,134,11,0.55);
  --nav-bg:      rgba(247,243,236,0.88);
  --card-border: rgba(184,134,11,0.18);
  --shimmer:     rgba(243,217,139,0.12);
  --shadow-gold: 0 4px 32px rgba(184,134,11,0.14);
  --shadow-soft: 0 2px 24px rgba(26,18,8,0.08);
  --hero-scrim:  linear-gradient(to bottom, rgba(247,243,236,0.18) 0%, rgba(247,243,236,0.72) 60%, rgba(247,243,236,1) 100%);
  --meta-light:  #f7f3ec;
  --meta-dark:   #0c0c0e;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Outfit', sans-serif;

  /* Spacing rhythm */
  --section-py: clamp(5rem, 10vw, 9rem);
  --container:  min(1180px, 92vw);

  /* Transitions */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

[data-theme="dark"] {
  --bg:          #0c0c0e;
  --bg-alt:      #131315;
  --bg-card:     #181820;
  --ink:         #f5ead6;
  --ink-soft:    #c8baa5;
  --ink-muted:   #857568;
  --gold:        #d4af37;
  --gold-light:  #e8c84a;
  --gold-bright: #f3d98b;
  --gold-grad:   linear-gradient(135deg, #c9a227 0%, #d4af37 40%, #f3d98b 75%, #d4af37 100%);
  --gold-text:   linear-gradient(135deg, #c9a227 0%, #e0c050 50%, #f3d98b 100%);
  --keyline:     rgba(212,175,55,0.20);
  --keyline-strong: rgba(212,175,55,0.45);
  --nav-bg:      rgba(12,12,14,0.88);
  --card-border: rgba(212,175,55,0.14);
  --shimmer:     rgba(212,175,55,0.05);
  --shadow-gold: 0 4px 40px rgba(212,175,55,0.12);
  --shadow-soft: 0 2px 24px rgba(0,0,0,0.35);
  --hero-scrim:  linear-gradient(to bottom, rgba(12,12,14,0.15) 0%, rgba(12,12,14,0.65) 55%, rgba(12,12,14,1) 100%);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  font-size: clamp(15px, 1.6vw, 17px);
  transition: background 0.45s var(--ease), color 0.45s var(--ease);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: var(--font-body); cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ── Utility: Gold gradient text ── */
.gold-text {
  background: var(--gold-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Thin gold divider ── */
.divider {
  width: 100%;
  height: 1px;
  background: var(--keyline);
  position: relative;
}
.divider::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 3px;
  background: var(--gold-grad);
  border-radius: 2px;
}

/* ── Reveal animations ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.1s; }
.reveal.d2 { transition-delay: 0.22s; }
.reveal.d3 { transition-delay: 0.36s; }
.reveal.d4 { transition-delay: 0.50s; }
.reveal-left { opacity: 0; transform: translateX(-36px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal-left.in { opacity: 1; transform: none; }
.reveal-right { opacity: 0; transform: translateX(36px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal-right.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ── Container ── */
.container { width: var(--container); margin-inline: auto; }

/* ── Section label ── */
.section-label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}

/* ── Section heading ── */
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.01em;
}

/* =============================================
   NAV
   ============================================= */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), backdrop-filter 0.4s;
}
#header.scrolled {
  background: var(--nav-bg);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  box-shadow: 0 1px 0 var(--keyline), var(--shadow-soft);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  width: var(--container);
  margin-inline: auto;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
}
.nav-logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  border: 1px solid var(--keyline-strong);
  background: var(--gold-grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: #0c0c0e;
  flex-shrink: 0;
  letter-spacing: -0.02em;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-logo-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--ink);
}
.nav-logo-sub {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.nav-links {
  display: flex;
  gap: 2.2rem;
  align-items: center;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.25s var(--ease);
  transform-origin: left;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
#themeToggle {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--keyline-strong);
  color: var(--gold);
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, border-color 0.2s;
  background: transparent;
}
#themeToggle:hover { background: var(--shimmer); border-color: var(--gold); }
#themeToggle .icon-sun { display: none; }
#themeToggle .icon-moon { display: block; }
[data-theme="dark"] #themeToggle .icon-sun { display: block; }
[data-theme="dark"] #themeToggle .icon-moon { display: none; }
.btn-nav {
  display: inline-flex;
  align-items: center;
  padding: 0.52rem 1.2rem;
  border: 1px solid var(--keyline-strong);
  border-radius: 3px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.btn-nav:hover {
  background: var(--gold);
  color: #0c0c0e;
  border-color: var(--gold);
}
#navToggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
  background: none;
  border: none;
}
#navToggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.3s var(--ease), opacity 0.3s;
}

/* Mobile menu */
#mobileMenu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  transform: translateX(100%);
  transition: transform 0.45s var(--ease);
}
#mobileMenu.open {
  transform: translateX(0);
}
#mobileMenu a {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 7vw, 2.8rem);
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.01em;
  transition: color 0.2s;
}
#mobileMenu a:hover { color: var(--gold-light); }
.mobile-cta {
  margin-top: 1rem;
  padding: 0.9rem 2.2rem;
  border: 1px solid var(--keyline-strong);
  border-radius: 3px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold) !important;
  font-family: var(--font-body) !important;
  font-size: 0.8rem !important;
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  .btn-nav { display: none; }
  #navToggle { display: flex; }
  #mobileMenu { display: flex; }
}

/* =============================================
   HERO
   ============================================= */
#hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.hero-bg-scrim {
  position: absolute;
  inset: 0;
  background: var(--hero-scrim);
  z-index: 1;
}
/* Gold keyline frame */
.hero-frame {
  position: absolute;
  inset: 28px;
  border: 1px solid var(--keyline-strong);
  pointer-events: none;
  z-index: 2;
  border-radius: 2px;
}
.hero-frame::before,
.hero-frame::after {
  content: '';
  position: absolute;
  background: var(--gold-grad);
}
.hero-frame::before {
  top: -1px; left: 40px; right: 40px;
  height: 2px;
}
.hero-frame::after {
  bottom: -1px; left: 40px; right: 40px;
  height: 2px;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: var(--container);
  margin-inline: auto;
  padding-bottom: clamp(4rem, 8vw, 7rem);
  padding-top: 120px;
}
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-bright);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.4rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.3s var(--ease) forwards;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background: var(--gold-bright);
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7.5vw, 7.2rem);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--ink);
  max-width: 820px;
  opacity: 0;
  animation: fadeUp 1s 0.5s var(--ease) forwards;
}
.hero-headline em {
  font-style: italic;
  font-weight: 300;
  background: var(--gold-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-motto {
  margin-top: 1.4rem;
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  font-weight: 400;
  font-style: italic;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
  opacity: 0;
  animation: fadeUp 1s 0.72s var(--ease) forwards;
}
.hero-sub {
  margin-top: 1.2rem;
  font-size: clamp(0.9rem, 1.8vw, 1.06rem);
  color: var(--ink-soft);
  max-width: 520px;
  line-height: 1.7;
  font-weight: 300;
  opacity: 0;
  animation: fadeUp 1s 0.88s var(--ease) forwards;
}
.hero-actions {
  margin-top: 2.4rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s 1.04s var(--ease) forwards;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  background: var(--gold-grad);
  color: #0c0c0e;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 3px;
  transition: opacity 0.2s, transform 0.2s var(--ease);
  border: none;
}
.btn-primary:hover { opacity: 0.88; transform: translateY(-2px); }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border: 1px solid var(--keyline-strong);
  color: var(--ink);
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 3px;
  background: transparent;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); background: var(--shimmer); }

/* Stat chips */
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 3rem;
  opacity: 0;
  animation: fadeUp 1s 1.2s var(--ease) forwards;
}
.stat-chip {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.65rem 1.1rem;
  background: rgba(12,12,14,0.55);
  border: 1px solid var(--keyline-strong);
  border-radius: 3px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
[data-theme="light"] .stat-chip {
  background: rgba(247,243,236,0.65);
}
.stat-chip-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  background: var(--gold-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.stat-chip-label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
  line-height: 1.3;
  max-width: 80px;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =============================================
   MARKETS STRIP
   ============================================= */
#markets {
  background: var(--bg-alt);
  border-top: 1px solid var(--keyline);
  border-bottom: 1px solid var(--keyline);
  padding: 1.4rem 0;
  overflow: hidden;
}
.markets-label {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-align: center;
}
.markets-ticker {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  white-space: nowrap;
  width: max-content;
  animation: ticker 28s linear infinite;
}
.markets-ticker:hover { animation-play-state: paused; }
.market-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--ink-muted);
  text-transform: uppercase;
}
.market-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =============================================
   STATS SECTION
   ============================================= */
#stats {
  padding: var(--section-py) 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  border: 1px solid var(--keyline);
  border-radius: 4px;
  overflow: hidden;
}
.stat-block {
  padding: 3rem 2rem;
  text-align: center;
  border-right: 1px solid var(--keyline);
  border-bottom: 1px solid var(--keyline);
  background: var(--bg-card);
  transition: background 0.3s;
  position: relative;
  overflow: hidden;
}
.stat-block::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold-grad);
  transform: scaleX(0);
  transition: transform 0.4s var(--ease);
  transform-origin: left;
}
.stat-block:hover::before { transform: scaleX(1); }
.stat-block:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 400;
  line-height: 1;
  background: var(--gold-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  margin-top: 0.6rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 500;
}

/* =============================================
   PORTFOLIO / GAMES
   ============================================= */
#portfolio {
  padding: var(--section-py) 0;
  background: var(--bg-alt);
}
.portfolio-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}
.portfolio-intro {
  max-width: 480px;
  font-size: 1.05rem;
  color: var(--ink-soft);
  font-weight: 300;
  line-height: 1.75;
  margin-top: 1rem;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
}
.game-card {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--card-border);
  cursor: default;
}
.game-card-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.6s var(--ease);
}
.game-card:hover .game-card-bg { transform: scale(1.05); }

/* Individual game card backgrounds */
.game-card:nth-child(1) .game-card-bg { background: linear-gradient(145deg, #0a0a12 0%, #1a1035 40%, #2d1a5c 70%, #1a0a30 100%); }
.game-card:nth-child(2) .game-card-bg { background: linear-gradient(145deg, #0f0c00 0%, #1f1800 35%, #3d2e00 65%, #1a1200 100%); }
.game-card:nth-child(3) .game-card-bg { background: linear-gradient(145deg, #050d10 0%, #0a1f26 40%, #0f3040 65%, #081820 100%); }
.game-card:nth-child(4) .game-card-bg { background: linear-gradient(145deg, #0d0005 0%, #1f0010 40%, #3a0020 70%, #1a0018 100%); }
.game-card:nth-child(5) .game-card-bg { background: linear-gradient(145deg, #030808 0%, #081818 40%, #0c2828 65%, #061010 100%); }
.game-card:nth-child(6) .game-card-bg { background: linear-gradient(145deg, #100800 0%, #201200 35%, #401e00 65%, #180e00 100%); }
.game-card:nth-child(7) .game-card-bg { background: linear-gradient(145deg, #060010 0%, #100020 40%, #200040 65%, #0c0030 100%); }

/* Decorative pattern overlays */
.game-card-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.07;
  background-image: radial-gradient(circle at 30% 70%, var(--gold) 0%, transparent 60%),
                    radial-gradient(circle at 75% 25%, var(--gold-bright) 0%, transparent 50%);
}

.game-card-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  font-size: clamp(3rem, 5vw, 4.5rem);
  opacity: 0.55;
  transition: opacity 0.4s, transform 0.4s var(--ease);
}
.game-card:hover .game-card-icon { opacity: 0.8; transform: translate(-50%, -58%) scale(1.1); }

.game-card-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.4rem;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
  transform: translateY(6px);
  transition: transform 0.35s var(--ease);
}
.game-card:hover .game-card-info { transform: translateY(0); }
.game-cat {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-bright);
  font-weight: 600;
  margin-bottom: 0.3rem;
}
.game-title {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  font-weight: 500;
  color: #f5ead6;
  line-height: 1.2;
}
.game-tagline {
  margin-top: 0.35rem;
  font-size: 0.75rem;
  color: rgba(245,234,214,0.65);
  font-weight: 300;
  font-style: italic;
}
.game-badge {
  position: absolute;
  top: 1rem; right: 1rem;
  padding: 0.3rem 0.65rem;
  background: var(--gold-grad);
  color: #0c0c0e;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
}

@media (max-width: 860px) {
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .portfolio-grid { grid-template-columns: 1fr 1fr; gap: 1px; }
  .game-card { aspect-ratio: 3/4; }
}

/* =============================================
   WHY US / FEATURES
   ============================================= */
#features {
  padding: var(--section-py) 0;
}
.features-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: center;
}
.features-visual {
  position: relative;
}
.features-img-wrap {
  position: relative;
  border: 1px solid var(--keyline-strong);
  border-radius: 4px;
  overflow: hidden;
}
.features-img-wrap img {
  width: 100%;
  aspect-ratio: 5/6;
  object-fit: cover;
  display: block;
  filter: saturate(0.7) brightness(0.85);
}
.features-img-accent {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 55%;
  padding: 1.8rem;
  background: var(--bg-card);
  border: 1px solid var(--keyline-strong);
  border-radius: 3px;
  box-shadow: var(--shadow-gold);
}
.features-accent-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 400;
  background: var(--gold-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.features-accent-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 500;
  margin-top: 0.4rem;
}
.features-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 3rem;
}
.feature-item {
  display: flex;
  gap: 1.4rem;
  align-items: flex-start;
}
.feature-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border: 1px solid var(--keyline-strong);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  background: var(--shimmer);
  transition: background 0.3s, border-color 0.3s;
}
.feature-item:hover .feature-icon {
  background: var(--keyline);
  border-color: var(--gold);
}
.feature-body h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.35rem;
  letter-spacing: 0.01em;
}
.feature-body p {
  font-size: 0.87rem;
  color: var(--ink-muted);
  line-height: 1.7;
  font-weight: 300;
}

@media (max-width: 860px) {
  .features-layout { grid-template-columns: 1fr; }
  .features-visual { order: -1; }
  .features-img-accent { right: -0.5rem; bottom: -0.5rem; }
}

/* =============================================
   PARTNERS / PRESTIGE ROW
   ============================================= */
#partners {
  padding: 4rem 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--keyline);
  border-bottom: 1px solid var(--keyline);
}
.partners-label {
  text-align: center;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 500;
  margin-bottom: 2.4rem;
}
.partners-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem 3rem;
}
.partner-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  opacity: 0.55;
  transition: opacity 0.25s;
}
.partner-item:hover { opacity: 1; }
.partner-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
}
.partner-region {
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

/* =============================================
   AWARDS / CREDENTIALS BAND
   ============================================= */
#awards {
  padding: 4.5rem 0;
}
.awards-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  border: 1px solid var(--keyline);
  border-radius: 4px;
  padding: 2.5rem 3rem;
  background: var(--bg-card);
  position: relative;
  overflow: hidden;
}
.awards-inner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold-grad);
}
.award-badge {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 1.4rem;
  border: 1px solid var(--keyline);
  border-radius: 3px;
  transition: border-color 0.25s;
}
.award-badge:hover { border-color: var(--gold); }
.award-icon { font-size: 1.6rem; }
.award-text-wrap {}
.award-name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.award-org {
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-top: 0.15rem;
}

/* =============================================
   ABOUT / STORY
   ============================================= */
#about {
  padding: var(--section-py) 0;
  background: var(--bg-alt);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: start;
}
.about-sticky {
  position: sticky;
  top: 100px;
}
.about-eyebrow {
  margin-bottom: 1.2rem;
}
.about-heading {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}
.about-heading strong {
  font-weight: 500;
  background: var(--gold-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
}
.about-lead {
  font-size: 1.05rem;
  color: var(--ink-soft);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 2rem;
}
.about-signature {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-style: italic;
  font-weight: 400;
  color: var(--gold-light);
  letter-spacing: 0.02em;
}
.about-sig-title {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 500;
  margin-top: 0.3rem;
}
.about-content {
  padding-top: 1rem;
}
.about-block {
  padding: 2rem 0;
  border-bottom: 1px solid var(--keyline);
}
.about-block:first-child { padding-top: 0; }
.about-block:last-child { border-bottom: none; }
.about-block h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.8rem;
  letter-spacing: 0.01em;
}
.about-block p {
  font-size: 0.93rem;
  color: var(--ink-soft);
  line-height: 1.8;
  font-weight: 300;
}

@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-sticky { position: static; }
}

/* =============================================
   CTA BAND
   ============================================= */
#cta-band {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
#cta-band::before {
  content: '';
  position: absolute;
  top: -60%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(212,175,55,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-band-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}
.cta-band-inner .section-label {
  justify-content: center;
}
.cta-band-inner .section-label::before { display: none; }
.cta-band-inner .section-label::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}
.cta-band-heading {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.015em;
  max-width: 720px;
  margin: 1.2rem auto;
}
.cta-band-heading em {
  font-style: italic;
  font-weight: 300;
  background: var(--gold-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cta-band-sub {
  font-size: 1rem;
  color: var(--ink-soft);
  font-weight: 300;
  max-width: 480px;
  margin: 0 auto 2.2rem;
  line-height: 1.7;
}
.cta-band-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-band-note {
  margin-top: 1.8rem;
  font-size: 0.75rem;
  color: var(--ink-muted);
  letter-spacing: 0.05em;
}

/* =============================================
   CONTACT
   ============================================= */
#contact {
  padding: var(--section-py) 0;
  background: var(--bg-alt);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: start;
}
.contact-info h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 1.2rem;
  letter-spacing: -0.01em;
}
.contact-info h2 em {
  font-style: italic;
  background: var(--gold-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.contact-info p {
  font-size: 0.93rem;
  color: var(--ink-soft);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 2rem;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}
.contact-detail-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border: 1px solid var(--keyline-strong);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  background: var(--shimmer);
  color: var(--gold);
}
.contact-detail-text strong {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.15rem;
}
.contact-detail-text span {
  font-size: 0.88rem;
  color: var(--ink-soft);
  font-weight: 300;
}

/* Form */
.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--keyline);
  border-radius: 4px;
  padding: clamp(2rem, 4vw, 3rem);
  position: relative;
  overflow: hidden;
}
.contact-form::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold-grad);
}

.form-status {
  padding: 0.9rem 1.2rem;
  border-radius: 3px;
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  display: none;
}
.form-status.ok {
  display: block;
  background: rgba(184,134,11,0.1);
  border: 1px solid var(--keyline-strong);
  color: var(--gold);
}
.form-status.err {
  display: block;
  background: rgba(220,60,60,0.08);
  border: 1px solid rgba(220,60,60,0.25);
  color: #e05555;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-field {
  margin-bottom: 1.2rem;
}
.form-field label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 0.8rem 1rem;
  background: var(--bg);
  border: 1px solid var(--keyline);
  border-radius: 3px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
  -webkit-appearance: none;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--shimmer);
}
.form-field textarea {
  height: 130px;
  resize: vertical;
  line-height: 1.6;
}
.honeypot { display: none !important; }
.form-submit {
  width: 100%;
  padding: 1rem;
  background: var(--gold-grad);
  border: none;
  border-radius: 3px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0c0c0e;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s var(--ease);
  margin-top: 0.5rem;
}
.form-submit:hover { opacity: 0.88; transform: translateY(-1px); }

@media (max-width: 680px) {
  .form-row { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

/* =============================================
   FOOTER
   ============================================= */
#footer {
  background: var(--bg);
  border-top: 1px solid var(--keyline);
  padding: 4rem 0 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--keyline);
}
.footer-brand {}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  margin-bottom: 1rem;
}
.footer-logo-mark {
  width: 32px; height: 32px;
  border-radius: 5px;
  background: var(--gold-grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: #0c0c0e;
  flex-shrink: 0;
}
.footer-logo-name {
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--ink);
}
.footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold-light);
  margin-bottom: 0.8rem;
}
.footer-desc {
  font-size: 0.82rem;
  color: var(--ink-muted);
  line-height: 1.7;
  font-weight: 300;
  max-width: 280px;
}
.footer-col-title {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1.2rem;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.footer-col ul li a {
  font-size: 0.84rem;
  color: var(--ink-muted);
  font-weight: 300;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 2rem;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: 0.76rem;
  color: var(--ink-muted);
  font-weight: 300;
}
.footer-legal {
  display: flex;
  gap: 1.5rem;
}
.footer-legal a {
  font-size: 0.74rem;
  color: var(--ink-muted);
  transition: color 0.2s;
  font-weight: 300;
}
.footer-legal a:hover { color: var(--gold); }

@media (max-width: 860px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }
}

/* =============================================
   SHIMMER / GRAIN OVERLAY
   ============================================= */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.018;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* =============================================
   SCROLLBAR
   ============================================= */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--keyline-strong); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

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