:root {
  --bg: #080808;
  --bg-soft: #111111;
  --panel: rgba(255, 255, 255, 0.06);
  --panel-strong: rgba(255, 255, 255, 0.1);
  --text: #f7f2e9;
  --muted: #bfb8aa;
  --gold: #c9a227;
  --gold-light: #f1d272;
  --line: rgba(255, 255, 255, 0.14);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --max-width: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 0%, rgba(201, 162, 39, 0.16), transparent 34rem),
    radial-gradient(circle at 85% 15%, rgba(255, 255, 255, 0.08), transparent 26rem),
    var(--bg);
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  max-width: 100%;
}

.site-shell {
  min-height: 100vh;
  overflow: hidden;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(var(--max-width), calc(100% - 32px));
  margin: 18px auto 0;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(8, 8, 8, 0.78);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #070707;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 600;
}

.nav a {
  transition: color 180ms ease;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--gold-light);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--text);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 200ms ease;
}

.section-padding {
  width: min(var(--max-width), calc(100% - 32px));
  margin: 0 auto;
  padding: 108px 0;
}

.hero {
  padding-top: 96px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  gap: 48px;
  align-items: center;
}

.eyebrow,
.card-label,
.section-kicker {
  margin: 0 0 18px;
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: -0.05em;
  line-height: 0.94;
}

h1 {
  max-width: 820px;
  margin-bottom: 28px;
  font-size: clamp(4rem, 9vw, 8.5rem);
}

h2 {
  font-size: clamp(2.4rem, 5vw, 5rem);
}

h3 {
  margin-bottom: 14px;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
}

.hero-lead {
  max-width: 700px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: #080808;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 12px 32px rgba(201, 162, 39, 0.22);
}

.button-secondary {
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(241, 210, 114, 0.5);
}

.hero-card {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035)),
    var(--panel);
  box-shadow: var(--shadow);
}

.hero-card h2 {
  margin-bottom: 24px;
  font-size: clamp(2.6rem, 4vw, 4.3rem);
}

.hero-card p:not(.card-label) {
  color: var(--muted);
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(6px);
  opacity: 0.65;
}

.orb-one {
  right: -100px;
  top: -80px;
  width: 240px;
  height: 240px;
  background: rgba(201, 162, 39, 0.5);
}

.orb-two {
  left: -80px;
  bottom: -90px;
  width: 210px;
  height: 210px;
  background: rgba(255, 255, 255, 0.08);
}

.metrics {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.metrics div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.22);
}

.metrics strong,
.metrics span {
  display: block;
}

.metrics strong {
  color: var(--gold-light);
  font-size: 1.4rem;
}

.metrics span {
  color: var(--muted);
  font-size: 0.82rem;
}

.marquee {
  width: 100%;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.035);
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 38px;
  padding: 18px 0;
  animation: marquee 26s linear infinite;
}

.marquee-track span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.split-section {
  display: grid;
  grid-template-columns: 0.38fr 1fr;
  gap: 42px;
  border-bottom: 1px solid var(--line);
}

.split-content p {
  max-width: 790px;
  color: var(--muted);
  font-size: 1.08rem;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 44px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card,
.value-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--panel);
  transition: transform 200ms ease, background 200ms ease, border-color 200ms ease;
}

.service-card {
  min-height: 290px;
  padding: 28px;
}

.service-card:hover,
.value-item:hover {
  transform: translateY(-6px);
  border-color: rgba(241, 210, 114, 0.42);
  background: var(--panel-strong);
}

.card-number {
  display: inline-flex;
  margin-bottom: 56px;
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 800;
}

.service-card p,
.value-item p,
.venture-panel p,
.contact-copy p,
.form-note {
  color: var(--muted);
}

.venture-section {
  padding-top: 0;
}

.venture-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 34px;
  align-items: end;
  padding: 52px;
  border: 1px solid rgba(241, 210, 114, 0.24);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(201, 162, 39, 0.22), rgba(255, 255, 255, 0.04)),
    var(--panel);
}

.venture-panel p {
  max-width: 760px;
  font-size: 1.08rem;
}

.values-section {
  padding-top: 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.value-item {
  min-height: 210px;
  padding: 28px;
}

.contact-section {
  display: grid;
  grid-template-columns: 0.88fr 1fr;
  gap: 42px;
  align-items: start;
  border-top: 1px solid var(--line);
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--panel);
}

label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 14px 15px;
  color: var(--text);
  background: rgba(0, 0, 0, 0.24);
  font: inherit;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

input:focus,
textarea:focus {
  border-color: rgba(241, 210, 114, 0.62);
  box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.12);
}

textarea {
  resize: vertical;
}

.form-note {
  margin-bottom: 0;
  font-size: 0.84rem;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(var(--max-width), calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 44px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

.footer p {
  margin-bottom: 0;
}

.footer a {
  color: var(--gold-light);
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero-grid,
  .split-section,
  .contact-section,
  .venture-panel {
    grid-template-columns: 1fr;
  }

  .cards-grid,
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .venture-panel {
    align-items: start;
  }
}

@media (max-width: 760px) {
  .header {
    width: calc(100% - 22px);
    margin-top: 11px;
  }

  .brand-text {
    font-size: 0.95rem;
  }

  .nav-toggle {
    display: block;
  }

  .nav {
    position: fixed;
    top: 84px;
    right: 11px;
    left: 11px;
    display: grid;
    gap: 0;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: rgba(8, 8, 8, 0.95);
    box-shadow: var(--shadow);
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 200ms ease, transform 200ms ease;
  }

  .nav a {
    padding: 16px 10px;
    border-bottom: 1px solid var(--line);
  }

  .nav a:last-child {
    border-bottom: 0;
  }

  body.nav-open .nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  body.nav-open .nav-toggle span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  body.nav-open .nav-toggle span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .section-padding {
    width: calc(100% - 28px);
    padding: 74px 0;
  }

  .hero {
    padding-top: 72px;
  }

  h1 {
    font-size: clamp(3.4rem, 18vw, 5.2rem);
  }

  .hero-card {
    min-height: 460px;
    padding: 28px;
  }

  .metrics {
    grid-template-columns: 1fr;
  }

  .cards-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .venture-panel,
  .contact-form {
    padding: 28px;
  }

  .footer {
    display: grid;
    gap: 12px;
    width: calc(100% - 28px);
  }
}
