/* ── DESIGN TOKENS ───────────────────────────────────────────────── */
@import url('https://api.fontshare.com/v2/css?f[]=clash-display@400,500,600,700&f[]=satoshi@300,400,500,700&display=swap');

:root {
  /* Type Scale */
  --text-xs:   clamp(0.75rem,  0.7rem  + 0.25vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.8rem  + 0.35vw, 1rem);
  --text-base: clamp(1rem,     0.95rem + 0.25vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1rem    + 0.75vw, 1.5rem);
  --text-xl:   clamp(1.5rem,   1.2rem  + 1.25vw, 2.25rem);
  --text-2xl:  clamp(2rem,     1.2rem  + 2.5vw,  3.5rem);
  --text-3xl:  clamp(2.5rem,   1rem    + 4vw,    5rem);
  --text-hero: clamp(3rem,     0.5rem  + 7vw,    8rem);

  /* Spacing */
  --space-1: 0.25rem; --space-2: 0.5rem; --space-3: 0.75rem;
  --space-4: 1rem;    --space-5: 1.25rem; --space-6: 1.5rem;
  --space-8: 2rem;    --space-10: 2.5rem; --space-12: 3rem;
  --space-16: 4rem;   --space-20: 5rem;   --space-24: 6rem;
  --space-32: 8rem;

  /* Radius */
  --radius-sm: 0.375rem; --radius-md: 0.5rem;
  --radius-lg: 0.75rem;  --radius-xl: 1rem; --radius-full: 9999px;

  /* Transitions */
  --transition: 180ms cubic-bezier(0.16,1,0.3,1);

  /* Content widths */
  --content-narrow: 640px; --content-default: 960px;
  --content-wide: 1200px;

  /* Fonts */
  --font-display: 'Clash Display', 'Georgia', serif;
  --font-body: 'Satoshi', 'Inter', sans-serif;
}

/* ── COLOR PALETTE (Light = white/gold/black brand) ─────────────── */
:root, [data-theme='light'] {
  --color-bg:             #ffffff;
  --color-surface:        #f8f8f8;
  --color-surface-2:      #f2f2f2;
  --color-surface-offset: #ececec;
  --color-border:         #e0e0e0;
  --color-divider:        #d4d4d4;
  --color-text:           #111111;
  --color-text-muted:     #555555;
  --color-text-faint:     #999999;
  --color-text-inverse:   #ffffff;
  --color-gold:           #c9a227;
  --color-gold-hover:     #b08a18;
  --color-gold-light:     #f5e9c0;
  --color-black:          #0d0d0d;
  --color-shadow: rgba(0,0,0,0.10);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.14);
}

[data-theme='dark'] {
  --color-bg:             #0d0d0d;
  --color-surface:        #141414;
  --color-surface-2:      #1a1a1a;
  --color-surface-offset: #202020;
  --color-border:         #2e2e2e;
  --color-divider:        #272727;
  --color-text:           #f0f0f0;
  --color-text-muted:     #aaaaaa;
  --color-text-faint:     #666666;
  --color-text-inverse:   #0d0d0d;
  --color-gold:           #d4aa30;
  --color-gold-hover:     #e8c250;
  --color-gold-light:     #2a2410;
  --color-black:          #ffffff;
  --color-shadow: rgba(0,0,0,0.4);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.4);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.6);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --color-bg: #0d0d0d; --color-surface: #141414; --color-surface-2: #1a1a1a;
    --color-surface-offset: #202020; --color-border: #2e2e2e; --color-divider: #272727;
    --color-text: #f0f0f0; --color-text-muted: #aaaaaa; --color-text-faint: #666666;
    --color-text-inverse: #0d0d0d; --color-gold: #d4aa30; --color-gold-hover: #e8c250;
    --color-gold-light: #2a2410; --color-black: #ffffff;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.3); --shadow-md: 0 4px 16px rgba(0,0,0,0.4);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.6);
  }
}

/* ── GLOBAL ──────────────────────────────────────────────────────── */
body { font-family: var(--font-body); }

.container {
  width: 100%; max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: clamp(var(--space-6), 5vw, var(--space-16));
}
.container--narrow { max-width: var(--content-default); }

section { padding-block: clamp(var(--space-16), 8vw, var(--space-32)); }

/* ── GOLD DIVIDER ────────────────────────────────────────────────── */
.gold-line {
  display: flex; align-items: center; gap: var(--space-4);
  margin-block: var(--space-6);
}
.gold-line::before, .gold-line::after {
  content: ''; flex: 1; height: 1px; background: var(--color-gold);
}
.gold-line span { color: var(--color-gold); font-size: var(--text-sm); letter-spacing: 0.2em; text-transform: uppercase; white-space: nowrap; }

/* ── SECTION LABELS ─────────────────────────────────────────────── */
.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-4);
}
.section-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-4);
  line-height: 1.1;
}
.section-sub {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 60ch;
}

/* ── BUTTONS ─────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: var(--space-2);
  padding: var(--space-3) var(--space-8);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn--gold {
  background: var(--color-gold);
  color: #000;
  border: 2px solid var(--color-gold);
}
.btn--gold:hover { background: var(--color-gold-hover); border-color: var(--color-gold-hover); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn--outline {
  background: transparent;
  color: var(--color-gold);
  border: 2px solid var(--color-gold);
}
.btn--outline:hover { background: var(--color-gold); color: #000; transform: translateY(-1px); }
.btn--white {
  background: #fff; color: #000; border: 2px solid #fff;
}
.btn--white:hover { background: var(--color-gold); border-color: var(--color-gold); color: #000; }

/* ── NAVBAR ──────────────────────────────────────────────────────── */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: #0d0d0d;
  border-bottom: 1px solid rgba(201,162,39,0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
[data-theme='light'] .navbar {
  background: #0d0d0d;
}
.navbar__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding-block: var(--space-4);
}
.navbar__logo { display: flex; align-items: center; gap: var(--space-3); text-decoration: none; }
.navbar__logo-text { font-family: var(--font-display); font-size: var(--text-sm); font-weight: 700; color: #ffffff; letter-spacing: 0.06em; white-space: nowrap; }
.navbar__logo-text span { color: var(--color-gold); }

.navbar__links {
  display: flex; align-items: center; gap: var(--space-5);
  list-style: none;
}
.navbar__links a {
  font-size: var(--text-xs); font-weight: 600;
  color: rgba(255,255,255,0.65);
  text-decoration: none; letter-spacing: 0.06em; text-transform: uppercase;
  white-space: nowrap;
}
.navbar__links a:hover { color: var(--color-gold); }

.navbar__actions { display: flex; align-items: center; gap: var(--space-3); }

.navbar__controls { display: flex; align-items: center; gap: var(--space-2); }

/* Lang toggle */
.lang-toggle {
  display: flex; align-items: center;
  background: var(--color-surface-2); border-radius: var(--radius-full);
  padding: 2px;
  border: 1px solid var(--color-border);
}
.lang-btn {
  padding: 4px 12px; border-radius: var(--radius-full);
  font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.06em;
  color: var(--color-text-muted); cursor: pointer; background: none; border: none;
  transition: all var(--transition);
}
.lang-btn.active { background: var(--color-gold); color: #000; }

/* Theme toggle */
.theme-toggle {
  width: 36px; height: 36px; border-radius: var(--radius-full);
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.65); cursor: pointer;
}
.theme-toggle:hover { color: var(--color-gold); border-color: var(--color-gold); }

/* Mobile hamburger */
.navbar__burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: var(--space-2); }
.navbar__burger span { display: block; width: 24px; height: 2px; background: rgba(255,255,255,0.8); border-radius: 2px; transition: all var(--transition); }

/* Mobile nav drawer */
.navbar__mobile {
  display: none; flex-direction: column; gap: var(--space-2);
  padding: var(--space-4) 0 var(--space-6);
  border-top: 1px solid rgba(201,162,39,0.2);
}
.navbar__mobile.open { display: flex; }
.navbar__mobile a {
  padding: var(--space-3) 0; font-size: var(--text-base); font-weight: 500;
  color: rgba(255,255,255,0.75); text-decoration: none; text-transform: uppercase; letter-spacing: 0.06em;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.navbar__mobile a:hover { color: var(--color-gold); }

@media (max-width: 900px) {
  .navbar__links, .navbar__actions .btn { display: none; }
  .navbar__burger { display: flex; }
}

/* ── HERO ─────────────────────────────────────────────────────────── */
.hero {
  position: relative; overflow: hidden;
  background: #0d0d0d;
  min-height: 92vh;
  display: flex; align-items: center;
}
.hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 70% at 70% 50%, rgba(201,162,39,0.22) 0%, transparent 65%),
    radial-gradient(ellipse 50% 60% at 20% 80%, rgba(201,162,39,0.12) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 50% 10%, rgba(201,162,39,0.08) 0%, transparent 60%),
    #0d0d0d;
  animation: heroGlowPulse 5s ease-in-out infinite alternate;
}
@keyframes heroGlowPulse {
  0%   { opacity: 0.85; }
  100% { opacity: 1; }
}
.hero__stars {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.hero__inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-16); align-items: center;
  padding-block: var(--space-24);
}
.hero__badge {
  display: inline-flex; align-items: center; gap: var(--space-2);
  background: rgba(201,162,39,0.12); border: 1px solid rgba(201,162,39,0.3);
  border-radius: var(--radius-full); padding: var(--space-2) var(--space-5);
  font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--color-gold); margin-bottom: var(--space-6);
}
.hero__title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.05;
  margin-bottom: var(--space-4);
}
.hero__title .gold { color: var(--color-gold); }
.hero__tagline {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: var(--space-6);
}
.hero__desc {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.7);
  max-width: 50ch;
  margin-bottom: var(--space-10);
  line-height: 1.7;
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: var(--space-4); }
.hero__trust {
  margin-top: var(--space-10);
  display: flex; align-items: center; gap: var(--space-6);
  flex-wrap: wrap;
}
.hero__trust-item {
  display: flex; align-items: center; gap: var(--space-2);
  font-size: var(--text-xs); color: rgba(255,255,255,0.5); font-weight: 500; letter-spacing: 0.06em;
}
.hero__trust-item svg { color: var(--color-gold); }

/* Hero logo side */
.hero__visual {
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.hero__logo-wrap {
  position: relative; width: min(380px, 90%);
  max-height: 75vh;
  filter:
    drop-shadow(0 0 8px rgba(201,162,39,0.3))
    drop-shadow(0 0 18px rgba(201,162,39,0.1));
  animation: logoGlowPulse 5s ease-in-out infinite alternate;
}
@keyframes logoGlowPulse {
  0%   { filter: drop-shadow(0 0 6px rgba(201,162,39,0.25)) drop-shadow(0 0 14px rgba(201,162,39,0.08)); }
  100% { filter: drop-shadow(0 0 10px rgba(201,162,39,0.35)) drop-shadow(0 0 22px rgba(201,162,39,0.12)); }
}
.hero__logo-wrap img {
  width: 100%;
  height: auto;
  max-height: 75vh;
  object-fit: contain;
  display: block;
}
.hero__logo-glow {
  position: absolute; inset: -40px;
  background: radial-gradient(circle, rgba(201,162,39,0.12) 0%, transparent 65%);
  pointer-events: none;
  border-radius: 50%;
  filter: blur(18px);
}

@media (max-width: 800px) {
  .hero__inner { grid-template-columns: 1fr; gap: var(--space-12); padding-block: var(--space-16); }
  .hero__visual { order: -1; }
  .hero__logo-wrap { width: min(280px, 80vw); }
  .hero__title { font-size: var(--text-2xl); }
}

/* ── STATS BAND ──────────────────────────────────────────────────── */
/* ── VETERAN OWNED BAR ──────────────────────────────────────────── */
.vet-owned-bar {
  background: #0d0d0d;
  border-top: 1px solid rgba(201,162,39,0.2);
  border-bottom: 1px solid rgba(201,162,39,0.2);
  padding: var(--space-4) var(--space-6);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.stats-band {
  background: var(--color-gold);
  padding-block: var(--space-8);
}
.stats-band__inner {
  display: flex; justify-content: space-around; flex-wrap: wrap; gap: var(--space-8);
}
.stat { text-align: center; }
.stat__num {
  font-family: var(--font-display); font-size: var(--text-2xl); font-weight: 700;
  color: #000; line-height: 1;
}
.stat__label {
  font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(0,0,0,0.7); margin-top: var(--space-1);
}

/* ── SERVICES ────────────────────────────────────────────────────── */
#services { background: var(--color-bg); }
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-6);
  margin-top: var(--space-12);
}
.service-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  position: relative; overflow: hidden;
  transition: all var(--transition);
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 3px; height: 100%; background: var(--color-gold);
  transform: scaleY(0); transform-origin: bottom;
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1);
}
.service-card:hover { border-color: var(--color-gold); transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { transform: scaleY(1); }
.service-card__icon {
  width: 48px; height: 48px; border-radius: var(--radius-md);
  background: var(--color-gold-light); color: var(--color-gold);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--space-5);
}
.service-card__title {
  font-family: var(--font-display); font-size: var(--text-lg); font-weight: 600;
  color: var(--color-text); margin-bottom: var(--space-3);
}
.service-card__desc { font-size: var(--text-sm); color: var(--color-text-muted); line-height: 1.6; }

/* ── ABOUT ───────────────────────────────────────────────────────── */
#about { background: var(--color-surface); }
.about__inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-20); align-items: center;
}
.about__image-wrap {
  position: relative;
  aspect-ratio: 4/5; border-radius: var(--radius-xl); overflow: hidden;
  background: #0d0d0d;
  display: flex; align-items: center; justify-content: center;
}
.about__image-wrap img { width: 100%; height: 100%; object-fit: cover; }
.about__image-badge {
  position: absolute; bottom: var(--space-6); left: var(--space-6);
  background: var(--color-gold); border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-5);
  font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #000;
}
.about__values { margin-top: var(--space-10); display: flex; flex-direction: column; gap: var(--space-5); }
.about__value {
  display: flex; gap: var(--space-4); align-items: flex-start;
  padding: var(--space-5); background: var(--color-bg);
  border: 1px solid var(--color-border); border-radius: var(--radius-md);
}
.about__value-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--color-gold); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center; color: #000;
}
.about__value-title { font-weight: 700; font-size: var(--text-base); margin-bottom: 2px; }
.about__value-desc { font-size: var(--text-sm); color: var(--color-text-muted); }
@media (max-width: 800px) {
  .about__inner { grid-template-columns: 1fr; }
  .about__image-wrap { aspect-ratio: 16/9; }
}

/* ── MERCH ───────────────────────────────────────────────────────── */
#merch {
  background: #050505; color: #fff;
}
#merch .section-title { color: #fff; }
#merch .section-sub { color: rgba(255,255,255,0.6); }
.merch__grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: var(--space-6); margin-top: var(--space-12);
}
.merch-card {
  background: #0a0a0a; border: 1px solid rgba(201,162,39,0.5); border-radius: var(--radius-lg);
  overflow: hidden; transition: all var(--transition);
  text-decoration: none; color: inherit;
}
.merch-card:hover { border-color: var(--color-gold); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(201,162,39,0.25); }
.merch-card__img {
  aspect-ratio: 1; background: #080808;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.merch-card__img > svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.merch-card__img > img { position: absolute; pointer-events: none; }
.merch-card__img--photo { background: #080808; }
.merch-card__img--photo img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: var(--space-3);
}
.merch-card__img--photo-white { background: #fff; }
.merch-card__img--photo-white img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.merch-card__body { padding: var(--space-5); }
.merch-card__name { font-family: var(--font-display); font-size: var(--text-base); font-weight: 600; color: #fff; margin-bottom: var(--space-1); }
.merch-card__sub { font-size: var(--text-xs); color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 0.1em; }
.merch__cta { text-align: center; margin-top: var(--space-12); }
.merch__cta p { color: rgba(255,255,255,0.55); font-size: var(--text-sm); margin-bottom: var(--space-6); max-width: 52ch; margin-inline: auto; }

/* ── NEWS ──────────────────────────────────────────────── */
#news { background: #080808; }
#news .section-title { color: #fff; }
#news .section-sub { color: rgba(255,255,255,0.6); }
.news__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-6);
  margin-top: var(--space-12);
}
.news-card {
  background: #0d0d0d;
  border: 1px solid rgba(201,162,39,0.35);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.news-card:hover {
  border-color: var(--color-gold);
  box-shadow: 0 8px 32px rgba(201,162,39,0.12);
}
.news-card__tag {
  display: inline-block;
  background: rgba(201,162,39,0.12);
  border: 1px solid rgba(201,162,39,0.3);
  color: var(--color-gold);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  width: fit-content;
}
.news-card__tag--alert {
  background: rgba(220,38,38,0.1);
  border-color: rgba(220,38,38,0.3);
  color: #f87171;
}
.news-card__date {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.news-card__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin: 0;
}
.news-card__body {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  flex: 1;
}
.news-card__body strong { color: rgba(255,255,255,0.9); }
.news-card__body em { color: var(--color-gold); font-style: normal; }
.news-card__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  margin-top: var(--space-2);
  padding-top: var(--space-4);
  border-top: 1px solid rgba(255,255,255,0.07);
}
.news-card__status {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
}
.news-card__status--pending { color: #fbbf24; }
.news-card__status--paused  { color: #f87171; }
.news-card__status--watch   { color: #60a5fa; }
.news-card__link {
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--color-gold);
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: opacity var(--transition);
}
.news-card__link:hover { opacity: 0.75; }
.news__cta {
  text-align: center;
  margin-top: var(--space-12);
}
.news__cta p {
  color: rgba(255,255,255,0.55);
  font-size: var(--text-sm);
  margin-bottom: var(--space-6);
}

/* ── CONTACT ─────────────────────────────────────────────── */
#contact { background: var(--color-bg); }
.contact__inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-16); align-items: start;
}
.contact__info { display: flex; flex-direction: column; gap: var(--space-6); }
.contact__item {
  display: flex; gap: var(--space-4); align-items: flex-start;
  padding: var(--space-6); background: var(--color-surface);
  border: 1px solid var(--color-border); border-radius: var(--radius-lg);
}
.contact__item-icon {
  width: 44px; height: 44px; flex-shrink: 0; border-radius: var(--radius-md);
  background: var(--color-gold); display: flex; align-items: center; justify-content: center; color: #000;
}
.contact__item-label { font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-text-muted); margin-bottom: 2px; }
.contact__item-value { font-size: var(--text-base); font-weight: 600; color: var(--color-text); }
.contact__item-value a { color: inherit; text-decoration: none; }
.contact__item-value a:hover { color: var(--color-gold); }

.contact__form { display: flex; flex-direction: column; gap: var(--space-4); }
.form-group { display: flex; flex-direction: column; gap: var(--space-2); }
.form-label { font-size: var(--text-sm); font-weight: 600; color: var(--color-text); }
.form-input, .form-select, .form-textarea {
  padding: var(--space-4) var(--space-5);
  background: var(--color-surface); border: 1px solid var(--color-border);
  border-radius: var(--radius-md); font-size: var(--text-base);
  color: var(--color-text); font-family: var(--font-body);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none; border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(201,162,39,0.15);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
@media (max-width: 800px) { .contact__inner { grid-template-columns: 1fr; } }

/* ── FAQ ────────────────────────────────────────────────────────── */
#faq { background: var(--color-surface); }
.faq__layout {
  display: grid; grid-template-columns: 1fr 2fr; gap: var(--space-20); align-items: start;
}
.faq__sidebar { position: sticky; top: 100px; }
.faq__sidebar-cta {
  margin-top: var(--space-10);
  background: #0d0d0d; border-radius: var(--radius-xl);
  padding: var(--space-8); border: 1px solid rgba(201,162,39,0.2);
}
.faq__sidebar-cta-title {
  font-family: var(--font-display); font-size: var(--text-lg); font-weight: 700;
  color: #fff; margin-bottom: var(--space-3);
}
.faq__sidebar-cta-desc { font-size: var(--text-sm); color: rgba(255,255,255,0.55); margin-bottom: var(--space-6); line-height: 1.6; }

.faq__list { display: flex; flex-direction: column; gap: var(--space-3); }
.faq__item {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.faq__item.open { border-color: var(--color-gold); box-shadow: 0 4px 20px rgba(201,162,39,0.08); }
.faq__question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-6) var(--space-8);
  font-family: var(--font-body); font-size: var(--text-base); font-weight: 600;
  color: var(--color-text); text-align: left; cursor: pointer;
  background: none; border: none;
  transition: color var(--transition);
}
.faq__question:hover { color: var(--color-gold); }
.faq__item.open .faq__question { color: var(--color-gold); }
.faq__icon {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: var(--radius-full);
  background: var(--color-surface-2); border: 1px solid var(--color-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-text-muted); transition: all var(--transition);
}
.faq__item.open .faq__icon {
  background: var(--color-gold); border-color: var(--color-gold);
  color: #000; transform: rotate(45deg);
}
.faq__answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16,1,0.3,1), padding 0.3s ease;
  padding: 0 var(--space-8);
}
.faq__item.open .faq__answer {
  max-height: 600px;
  padding: 0 var(--space-8) var(--space-6);
}
.faq__answer p {
  font-size: var(--text-base); color: var(--color-text-muted);
  line-height: 1.75; max-width: 65ch;
}
.faq__answer ul {
  margin-top: var(--space-3); padding-left: var(--space-5);
  display: flex; flex-direction: column; gap: var(--space-2);
}
.faq__answer ul li {
  font-size: var(--text-sm); color: var(--color-text-muted); line-height: 1.6;
  list-style: disc;
}
.faq__divider {
  margin-block: var(--space-6);
  display: flex; align-items: center; gap: var(--space-4);
}
.faq__divider::before, .faq__divider::after {
  content: ''; flex: 1; height: 1px; background: var(--color-border);
}
.faq__divider span {
  font-size: var(--text-xs); color: var(--color-gold); font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; white-space: nowrap;
}
@media (max-width: 900px) {
  .faq__layout { grid-template-columns: 1fr; }
  .faq__sidebar { position: static; }
}

/* ── FOOTER ──────────────────────────────────────────────────────── */
.footer {
  background: #0d0d0d; color: rgba(255,255,255,0.6);
  padding-block: var(--space-16) var(--space-8);
  border-top: 1px solid #1f1f1f;
}
.footer__inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: var(--space-12);
}
.footer__brand-name { font-family: var(--font-display); font-size: var(--text-lg); font-weight: 700; color: #fff; margin-bottom: var(--space-2); }
.footer__tagline { font-size: var(--text-xs); letter-spacing: 0.2em; text-transform: uppercase; color: var(--color-gold); margin-bottom: var(--space-4); }
.footer__desc { font-size: var(--text-sm); line-height: 1.7; max-width: 38ch; }
.footer__socials { display: flex; gap: var(--space-3); margin-top: var(--space-6); }
.footer__social {
  width: 36px; height: 36px; border-radius: var(--radius-full);
  border: 1px solid #2a2a2a; display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); text-decoration: none; font-size: 14px;
  transition: all var(--transition);
}
.footer__social:hover { border-color: var(--color-gold); color: var(--color-gold); }
.footer__col-title { font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: #fff; margin-bottom: var(--space-5); }
.footer__links { display: flex; flex-direction: column; gap: var(--space-3); list-style: none; }
.footer__links a { font-size: var(--text-sm); color: rgba(255,255,255,0.5); text-decoration: none; transition: color var(--transition); }
.footer__links a:hover { color: var(--color-gold); }
.footer__bottom { margin-top: var(--space-12); padding-top: var(--space-6); border-top: 1px solid #1f1f1f; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: var(--space-4); }
.footer__copy { font-size: var(--text-xs); color: rgba(255,255,255,0.3); }
.footer__legal { display: flex; gap: var(--space-6); }
.footer__legal a { font-size: var(--text-xs); color: rgba(255,255,255,0.3); text-decoration: none; }
.footer__legal a:hover { color: var(--color-gold); }
@media (max-width: 800px) { .footer__inner { grid-template-columns: 1fr; gap: var(--space-10); } }

/* ── BILINGUAL HIDDEN ────────────────────────────────────────────── */
[data-lang='es'] { display: none; }
html[lang='es'] [data-lang='en'] { display: none; }
html[lang='es'] [data-lang='es'] { display: revert; }

/* ── SCROLL ANIMATIONS ───────────────────────────────────────────── */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }

/* ── WHATSAPP FLOAT ──────────────────────────────────────────────── */
.wa-float {
  position: fixed; bottom: var(--space-6); right: var(--space-6); z-index: 200;
  width: 56px; height: 56px; border-radius: var(--radius-full);
  background: #25d366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4); text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition);
}
.wa-float:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(37,211,102,0.55); }
