/* =============================================
   VELOURA — DARK LUXURY THEME
   Deep black/charcoal · Gold accents · Bright white text
   ============================================= */

:root {
  --bg: #0a0a0a;
  --surface: #111111;
  --surface-2: #1a1a1a;
  --surface-3: #222222;
  --border: rgba(212, 175, 55, 0.12);
  --gold: #d4af37;
  --gold-light: #e8c97a;
  --gold-dim: rgba(212, 175, 55, 0.1);
  --gold-glow: rgba(212, 175, 55, 0.06);
  --text: #f0ede6;
  --text-sub: #a09890;
  --muted: #6a6560;
  --shadow-sm: 0 1px 4px rgba(0,0,0,0.4);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.5);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.6);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--gold); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ---- Navigation ---- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 48px;
  background: rgba(10, 10, 10, 0.92);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav-brand { display: flex; align-items: center; }
.brand-logo { height: 44px; width: auto; display: block; }

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

.nav-link {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-sub);
  transition: color 0.2s;
  padding: 4px 0;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.2s;
}

.nav-link:hover { color: var(--text); text-decoration: none; }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-link.active { color: var(--gold); }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--text-sub);
  transition: all 0.25s;
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -5px); }

.nav-mobile-links {
  display: none;
  position: fixed;
  top: 77px;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(10,10,10,0.98);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  flex-direction: column;
  padding: 24px 48px;
  gap: 20px;
}
.nav-mobile-links.open { display: flex; }
.nav-mobile-links .nav-link { font-size: 14px; color: var(--text); }

/* ---- Sections ---- */
.section-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 48px;
}

.section-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 500;
  border-left: 2px solid var(--gold);
  padding-left: 12px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 600;
  line-height: 1.12;
  color: var(--text);
  margin-bottom: 24px;
}

.section-desc {
  font-size: 17px;
  color: var(--text-sub);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 64px;
}

/* ---- CTA Button ---- */
.btn-primary {
  display: inline-block;
  padding: 14px 32px;
  background: var(--gold);
  color: #0a0a0a;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.25s ease;
  box-shadow: 0 0 20px rgba(212,175,55,0.2);
}
.btn-primary:hover {
  background: var(--gold-light);
  box-shadow: 0 0 28px rgba(212,175,55,0.35);
  transform: translateY(-1px);
  text-decoration: none;
}

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 48px 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--bg);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212,175,55,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,175,55,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 25%, transparent 100%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
}

.hero-glow-1 {
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(212,175,55,0.08) 0%, transparent 70%);
  top: 5%;
  right: 5%;
  animation: pulse-glow 6s ease-in-out infinite alternate;
}

.hero-glow-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(212,175,55,0.05) 0%, transparent 70%);
  bottom: 20%;
  left: 10%;
  animation: pulse-glow 8s ease-in-out infinite alternate-reverse;
}

@keyframes pulse-glow {
  from { opacity: 0.5; transform: scale(1); }
  to { opacity: 1; transform: scale(1.08); }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  font-weight: 500;
}

.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 700;
  line-height: 1.04;
  color: var(--text);
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}

.hero-headline br { display: block; }

.hero-sub {
  font-size: 18px;
  color: var(--text-sub);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 44px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 20px;
  font-size: 13px;
  color: var(--text-sub);
  letter-spacing: 0.04em;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold);
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-scroll-cue {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ---- Operations ---- */
.operations {
  padding: 120px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.ops-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.ops-card {
  background: var(--bg);
  padding: 32px 28px;
  transition: background 0.3s ease;
}

.ops-card:hover {
  background: var(--surface-2);
}

.ops-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--gold-glow);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 20px;
}

.ops-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.3;
}

.ops-desc {
  font-size: 13px;
  color: var(--text-sub);
  line-height: 1.6;
}

/* ---- Channels ---- */
.channels {
  padding: 120px 0;
}

.channels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.channel-card {
  background: var(--surface);
  padding: 40px 36px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  transition: background 0.3s ease;
}

.channel-card:hover {
  background: var(--surface-2);
}

.channel-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--gold-glow);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.channel-name {
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 10px;
}

.channel-detail {
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.65;
}

/* ---- Numbers ---- */
.numbers {
  padding: 120px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 64px;
}

.number-card {
  padding: 40px 0;
  border-top: 2px solid var(--gold);
}

.number-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 12px;
  line-height: 1;
}

.number-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.4;
}

.number-note {
  font-size: 13px;
  color: var(--text-sub);
  line-height: 1.5;
}

.model-note {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 32px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.model-badge {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-dim);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 5px 14px;
  flex-shrink: 0;
  margin-top: 2px;
}

.model-note p {
  font-size: 15px;
  color: var(--text-sub);
  line-height: 1.65;
}

/* ---- Manifesto ---- */
.manifesto {
  padding: 120px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.manifesto-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 48px;
  text-align: center;
}

.manifesto-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 600;
  font-style: italic;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 48px;
  position: relative;
}

.manifesto-quote::before {
  content: '';
  display: block;
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 28px;
}

.manifesto-body {
  font-size: 16px;
  color: var(--text-sub);
  line-height: 1.8;
  margin-bottom: 24px;
}

/* ---- Closing ---- */
.closing {
  padding: 120px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.closing-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 48px;
  text-align: center;
}

.closing-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 600;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 28px;
}

.closing-body {
  font-size: 16px;
  color: var(--text-sub);
  line-height: 1.75;
  margin-bottom: 48px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.closing-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.tag {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 18px;
}

/* ---- Footer ---- */
.footer {
  padding: 64px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.footer-brand .brand-logo {
  height: 36px;
  width: auto;
  display: block;
  margin-bottom: 12px;
}
.footer-brand-text {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
  line-height: 1;
}
.footer-brand-text:hover { color: #f0ede6; text-decoration: none; }

.footer-tagline {
  font-size: 13px;
  color: var(--text-sub);
}

.footer-meta {
  text-align: right;
}

.footer-note {
  font-size: 14px;
  color: var(--text-sub);
  margin-bottom: 6px;
}

.footer-legal {
  font-size: 12px;
  color: var(--muted);
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .ops-grid { grid-template-columns: repeat(3, 1fr); }
  .numbers-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav { padding: 14px 24px; }
  .nav-center { display: none; }
  .nav-hamburger { display: flex; }
  .hero { padding: 100px 24px 80px; }
  .hero-headline { font-size: 44px; }
  .section-inner { padding: 0 24px; }
  .manifesto-inner, .closing-inner { padding: 0 24px; }
  .footer-inner { flex-direction: column; gap: 24px; padding: 0 24px; }
  .footer-meta { text-align: left; }
  .ops-grid { grid-template-columns: repeat(2, 1fr); }
  .channels-grid { grid-template-columns: 1fr; }
  .numbers-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .ops-grid { grid-template-columns: 1fr; }
  .numbers-grid { grid-template-columns: 1fr; }
}