:root {
  --bg: #0a0a0a;
  --panel: #121212;
  --panel-2: #171717;
  --text: #f5f2ea;
  --muted: #b9b2a4;
  --gold: #D4AF37;
  --gold-soft: rgba(212, 175, 55, 0.18);
  --red: #990000;
  --border: rgba(255,255,255,0.08);
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--bg); color: var(--text); font-family: 'Inter', sans-serif; scroll-behavior: smooth; }
body { overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
.page { min-height: 100vh; background: var(--bg); }
.splash {
  position: fixed; inset: 0; z-index: 9999; display: grid; place-items: center;
  background: #0a0a0a; transition: opacity 0.8s ease, visibility 0.8s ease;
}
.splash.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.splash-inner { text-align: center; padding: 24px; }
.splash-title {
  font-family: 'Cormorant Garamond', serif; color: var(--gold); font-size: clamp(3rem, 9vw, 6.5rem);
  letter-spacing: 0.14em; opacity: 0; transform: scale(0.94); animation: titleIn 1.4s ease forwards;
  text-shadow: 0 0 24px rgba(212,175,55,.22);
}
.splash-subtitle {
  margin-top: 10px; letter-spacing: 0.34em; text-transform: uppercase; font-size: clamp(.72rem, 2vw, 1rem);
  color: rgba(255,255,255,.82); opacity: 0; animation: subtitleIn 1.2s ease .5s forwards;
}
@keyframes titleIn { to { opacity: 1; transform: scale(1); } }
@keyframes subtitleIn { to { opacity: 1; } }
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: flex-end; justify-content: space-between; gap: 24px;
  padding: 48px clamp(20px, 4vw, 56px);
  background:
    linear-gradient(to bottom, rgba(10,10,10,.04), rgba(10,10,10,.16)),
    radial-gradient(circle at top right, rgba(153,0,0,.20), transparent 30%),
    radial-gradient(circle at 20% 18%, rgba(212,175,55,.08), transparent 26%),
    linear-gradient(135deg, #111 0%, #1a1a1a 42%, #141010 100%);
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(8,8,8,0.88) 0%, rgba(8,8,8,0.56) 34%, rgba(8,8,8,0.14) 62%, rgba(8,8,8,0.48) 100%),
    linear-gradient(to top, rgba(10,10,10,0.96) 0%, rgba(10,10,10,0.28) 24%, rgba(10,10,10,0.06) 48%, rgba(10,10,10,0.22) 100%);
}
.hero-atmosphere {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(circle at 18% 28%, rgba(212,175,55,.16), transparent 24%),
    radial-gradient(circle at 78% 22%, rgba(153,0,0,.18), transparent 22%),
    linear-gradient(135deg, rgba(212,175,55,.08), transparent 38%, transparent 68%, rgba(153,0,0,.10));
  mix-blend-mode: screen;
}
.hero-content {
  position: relative; z-index: 2; max-width: 760px; padding: 28px 28px 24px;
  border-radius: 30px; background: linear-gradient(180deg, rgba(10,10,10,.18), rgba(10,10,10,.46));
  backdrop-filter: blur(7px); box-shadow: 0 20px 60px rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.08);
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 14px; padding: 8px 12px;
  border-radius: 999px; border: 1px solid rgba(255,255,255,.10); background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.78); font-size: .74rem; letter-spacing: .08em; text-transform: uppercase;
}
.hero-kicker {
  display: inline-block; margin-bottom: 16px; padding: 8px 12px; border: 1px solid rgba(212,175,55,.35);
  background: rgba(0,0,0,.26); color: var(--gold); text-transform: uppercase; letter-spacing: .18em; font-size: .72rem;
  backdrop-filter: blur(6px);
}
.hero h1 {
  margin: 0; font-family: 'Cormorant Garamond', serif; font-size: clamp(3.4rem, 8vw, 6.8rem);
  line-height: .92; letter-spacing: .04em; text-shadow: 0 8px 30px rgba(0,0,0,.35);
}
.hero p { margin: 16px 0 0; color: #ece3cf; font-size: clamp(1rem, 2.5vw, 1.25rem); max-width: 34ch; line-height: 1.7; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }
.hero-button {
  display: inline-flex; align-items: center; justify-content: center; min-height: 46px; padding: 0 18px;
  border-radius: 999px; font-size: .92rem; transition: transform .25s ease, border-color .25s ease, background .25s ease, box-shadow .25s ease;
}
.hero-button:hover { transform: translateY(-2px); }
.hero-button-primary {
  background: linear-gradient(90deg, #9d7a1f, var(--gold)); color: #16120a; font-weight: 700;
  box-shadow: 0 12px 26px rgba(212,175,55,.22);
}
.hero-button-secondary {
  border: 1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.04); color: var(--text);
}
.hero-side-note {
  position: relative; z-index: 2; align-self: flex-end; margin-bottom: 8px; padding: 18px 18px 16px; min-width: 240px;
  border-radius: 24px; background: linear-gradient(180deg, rgba(12,12,12,.30), rgba(12,12,12,.56));
  border: 1px solid rgba(255,255,255,.08); backdrop-filter: blur(6px); box-shadow: 0 18px 40px rgba(0,0,0,.22);
}
.hero-side-note span {
  display: block; color: var(--gold); font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 8px;
}
.hero-side-note strong {
  display: block; font-weight: 600; line-height: 1.5; color: rgba(255,255,255,.92);
}
.bento-section { padding: 56px 20px 28px; max-width: 1280px; margin: 0 auto; }
.section-heading { margin-bottom: 26px; }
.eyebrow { display: inline-block; color: var(--gold); text-transform: uppercase; letter-spacing: .18em; font-size: .72rem; margin-bottom: 8px; }
.section-heading h2 { margin: 0; font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 5vw, 3.6rem); letter-spacing: .02em; }
.bento-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; }
.card {
  grid-column: span 4; min-height: 240px; background: linear-gradient(180deg, var(--panel-2), var(--panel));
  border: 1px solid var(--border); border-radius: 24px; padding: 24px; position: relative; overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.03), 0 20px 40px rgba(0,0,0,.18);
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease, background .35s ease;
}
.card:hover {
  transform: translateY(-6px); border-color: rgba(212,175,55,.26);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05), 0 24px 50px rgba(0,0,0,.28);
}
.card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.02), transparent 32%, transparent 70%, rgba(212,175,55,.03)); pointer-events: none;
}
.card::after {
  content: ''; position: absolute; inset: auto -20% -35% auto; width: 180px; height: 180px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,.08), transparent 65%); pointer-events: none;
}
.card-large { grid-column: span 6; min-height: 280px; }
.accent-gold { border-color: rgba(212,175,55,.34); }
.accent-gold-wide { grid-column: span 12; border-color: rgba(212,175,55,.28); min-height: 150px; }
.card-label { color: var(--gold); text-transform: uppercase; letter-spacing: .16em; font-size: .72rem; margin-bottom: 14px; }
.card h3 { margin: 0 0 14px; font-family: 'Cormorant Garamond', serif; font-size: 2rem; line-height: 1.02; }
.card p { margin: 0; color: var(--muted); line-height: 1.68; font-size: .98rem; max-width: 42ch; }
.card-icon {
  width: 46px; height: 46px; display: grid; place-items: center; margin-bottom: 18px; border-radius: 14px;
  background: rgba(212,175,55,.08); color: var(--gold);
}
.card-icon svg { width: 24px; height: 24px; }
.tech-card { background: linear-gradient(180deg, #171717, #111 70%, #130f0f 100%); }
.quote-card { background: linear-gradient(180deg, rgba(22,22,22,1) 0%, rgba(17,17,17,1) 70%, rgba(28,14,14,1) 100%); }
.quote-card blockquote {
  margin: 12px 0 14px; font-family: 'Cormorant Garamond', serif; font-size: 2rem; line-height: 1.15; color: #fff3cd;
}
.energy-card { display: flex; flex-direction: column; justify-content: center; min-height: 160px; }
.energy-top { display: flex; justify-content: space-between; gap: 12px; align-items: center; margin-bottom: 16px; flex-wrap: wrap; }
.energy-status { color: #fff0be; letter-spacing: .12em; font-size: .82rem; }
.energy-track {
  width: 100%; height: 14px; border-radius: 999px; background: rgba(255,255,255,.08); overflow: hidden;
  border: 1px solid rgba(255,255,255,.06); box-shadow: inset 0 0 0 1px rgba(255,255,255,.03);
}
.energy-fill {
  width: 95%; height: 100%; border-radius: inherit;
  background: linear-gradient(90deg, #8f6b11, var(--gold), #f3dc8d);
  box-shadow: 0 0 18px rgba(212,175,55,.4); animation: pulseBar 2.2s ease-in-out infinite;
}
.energy-note { margin-top: 12px; color: var(--muted); font-size: .92rem; }
@keyframes pulseBar {
  0%,100% { filter: brightness(1); box-shadow: 0 0 10px rgba(212,175,55,.30); }
  50% { filter: brightness(1.08); box-shadow: 0 0 24px rgba(212,175,55,.52); }
}
.footer {
  padding: 36px 20px 56px; max-width: 1280px; margin: 12px auto 0; display: flex; gap: 16px; align-items: center;
  justify-content: space-between; flex-wrap: wrap; color: var(--muted); border-top: 1px solid rgba(255,255,255,.06);
}
.footer-links { display: flex; gap: 18px; }
.footer-links a { color: var(--text); position: relative; }
.footer-links a::after {
  content: ''; position: absolute; left: 0; bottom: -4px; width: 100%; height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: left; transition: transform .3s ease;
}
.footer-links a:hover::after { transform: scaleX(1); }
body::before {
  content: ''; position: fixed; inset: 0; pointer-events: none;
  background:
    radial-gradient(circle at 15% 20%, rgba(212,175,55,.07), transparent 28%),
    radial-gradient(circle at 85% 15%, rgba(153,0,0,.08), transparent 24%),
    radial-gradient(circle at 50% 80%, rgba(212,175,55,.04), transparent 30%);
  z-index: 0;
}
.page-noise {
  position: fixed; inset: 0; pointer-events: none; opacity: .06; z-index: 1;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 3px 3px, 4px 4px; mix-blend-mode: soft-light;
}
.page, .hero, .bento-section, .footer { position: relative; z-index: 2; }
.reveal {
  opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease;
}
.reveal.reveal-visible { opacity: 1; transform: translateY(0); }
.reveal-card {
  opacity: 0; transform: translateY(22px); transition: opacity .75s ease, transform .75s ease;
}
.reveal-card.reveal-visible { opacity: 1; transform: translateY(0); }
@media (max-width: 980px) {
  .hero { min-height: 92vh; align-items: flex-end; }
  .hero-side-note { display: none; }
  .card, .card-large { grid-column: span 6; }
}
@media (max-width: 720px) {
  .hero { padding: 28px 16px; align-items: flex-end; min-height: 88vh; }
  .hero-content { padding: 18px 16px 16px; border-radius: 22px; }
  .hero h1 { font-size: clamp(3rem, 14vw, 4.5rem); }
  .hero-actions { flex-direction: column; }
  .hero-button { width: 100%; }
  .bento-section { padding: 34px 16px 22px; }
  .bento-grid { grid-template-columns: 1fr; }
  .card, .card-large, .accent-gold-wide { grid-column: auto; min-height: unset; }
  .card h3 { font-size: 1.65rem; }
  .quote-card blockquote { font-size: 1.7rem; }
  .footer { padding: 28px 16px 42px; }
}


.card-image-feature {
  display: grid;
  grid-template-columns: minmax(220px, 0.95fr) minmax(0, 1.05fr);
  gap: 22px;
  align-items: stretch;
}
.card-media {
  position: relative;
  min-height: 320px;
  border-radius: 20px;
  overflow: hidden;
  background: #0f0f0f;
  border: 1px solid rgba(255,255,255,.06);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.02);
}
.card-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.92) contrast(1.04) brightness(0.9);
  transform: scale(1.02);
}
.card-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,.04), rgba(10,10,10,.28));
}
.card-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 720px) {
  .card-image-feature {
    grid-template-columns: 1fr;
  }
  .card-media {
    min-height: 240px;
  }
}


.floating-visual-card {
  background:
    radial-gradient(circle at 18% 20%, rgba(212,175,55,.12), transparent 26%),
    radial-gradient(circle at 82% 18%, rgba(153,0,0,.14), transparent 22%),
    linear-gradient(180deg, #171717, #101010 72%, #151010 100%);
}
.floating-visual {
  min-height: 360px;
  background:
    radial-gradient(circle at 30% 24%, rgba(212,175,55,.12), transparent 24%),
    radial-gradient(circle at 72% 78%, rgba(153,0,0,.16), transparent 26%),
    linear-gradient(180deg, rgba(18,18,18,.92), rgba(10,10,10,.98));
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.03),
    0 24px 54px rgba(0,0,0,.34),
    0 0 40px rgba(212,175,55,.08);
}
.floating-visual img {
  position: absolute;
  inset: 18px;
  width: calc(100% - 36px);
  height: calc(100% - 36px);
  border-radius: 26px;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow:
    0 26px 40px rgba(0,0,0,.40),
    0 0 0 1px rgba(255,255,255,.03),
    0 0 32px rgba(212,175,55,.10);
  transform: perspective(1200px) rotateY(-7deg) rotateX(5deg) translateY(0);
  animation: floatVisual 6.5s ease-in-out infinite;
}
.floating-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(10px);
  opacity: .85;
  pointer-events: none;
}
.floating-orb-one {
  width: 120px;
  height: 120px;
  top: 16px;
  right: 18px;
  background: radial-gradient(circle, rgba(212,175,55,.34), rgba(212,175,55,.05) 70%, transparent 72%);
  animation: orbFloatOne 7s ease-in-out infinite;
}
.floating-orb-two {
  width: 150px;
  height: 150px;
  left: -14px;
  bottom: -8px;
  background: radial-gradient(circle, rgba(153,0,0,.30), rgba(153,0,0,.06) 68%, transparent 72%);
  animation: orbFloatTwo 8s ease-in-out infinite;
}
@keyframes floatVisual {
  0%, 100% { transform: perspective(1200px) rotateY(-7deg) rotateX(5deg) translateY(0px); }
  50% { transform: perspective(1200px) rotateY(-4deg) rotateX(3deg) translateY(-10px); }
}
@keyframes orbFloatOne {
  0%, 100% { transform: translateY(0px) translateX(0px) scale(1); }
  50% { transform: translateY(-10px) translateX(-8px) scale(1.06); }
}
@keyframes orbFloatTwo {
  0%, 100% { transform: translateY(0px) translateX(0px) scale(1); }
  50% { transform: translateY(12px) translateX(10px) scale(1.08); }
}
@media (max-width: 720px) {
  .floating-visual {
    min-height: 300px;
  }
  .floating-visual img {
    inset: 14px;
    width: calc(100% - 28px);
    height: calc(100% - 28px);
    border-radius: 22px;
    transform: none;
    animation: floatVisualMobile 5.6s ease-in-out infinite;
  }
}
@keyframes floatVisualMobile {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}
