
:root {
  --navy-950: #030916;
  --navy-900: #071225;
  --navy-800: #0d1b33;
  --blue-600: #2367b5;
  --blue-400: #6aa6e8;
  --gold-500: #d7a74a;
  --gold-300: #f1d69a;
  --ivory-50: #fffaf0;
  --ivory-100: #f6efe3;
  --rose-100: #f4e9e4;
  --ink: #172033;
  --muted: #667085;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(3, 9, 22, .18);
  --radius-lg: 30px;
  --radius-md: 20px;
  --radius-sm: 12px;
  --max-width: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--ivory-50);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
::selection { background: var(--gold-300); color: var(--navy-950); }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 9999;
  padding: .85rem 1rem;
  background: var(--white);
  color: var(--navy-950);
}
.skip-link:focus { left: 1rem; top: 1rem; }

.container {
  width: min(calc(100% - 2rem), var(--max-width));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  background: rgba(3, 9, 22, .68);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: background .25s ease, box-shadow .25s ease;
}
.site-header.scrolled {
  background: rgba(3, 9, 22, .94);
  box-shadow: 0 12px 30px rgba(0,0,0,.18);
}
.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.wordmark {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  color: var(--white);
  font-weight: 700;
  letter-spacing: .04em;
}
.wordmark-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(241,214,154,.55);
  border-radius: 50%;
  color: var(--gold-300);
  font-family: Georgia, serif;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  color: rgba(255,255,255,.86);
  font-size: .94rem;
}
.nav-links a { position: relative; }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -.4rem;
  height: 1px;
  background: var(--gold-300);
  transition: right .22s ease;
}
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after { right: 0; }

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.18);
  background: transparent;
  color: var(--white);
  border-radius: 50%;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 30%, rgba(35,103,181,.23), transparent 30%),
    radial-gradient(circle at 18% 72%, rgba(215,167,74,.12), transparent 28%),
    linear-gradient(135deg, var(--navy-950), var(--navy-900) 55%, #0d1730);
  color: var(--white);
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.08);
}
.hero::before {
  width: 520px;
  height: 520px;
  right: -180px;
  top: 13%;
}
.hero::after {
  width: 300px;
  height: 300px;
  right: 4%;
  top: 24%;
  border-color: rgba(215,167,74,.18);
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(2rem, 5vw, 6rem);
  align-items: center;
  padding: 9rem 0 5rem;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .74rem;
  font-weight: 700;
  color: var(--gold-300);
}
.eyebrow::before {
  content: "";
  width: 36px;
  height: 1px;
  background: currentColor;
}
.hero h1, .page-hero h1 {
  margin: 1.1rem 0 1.25rem;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: .98;
}
.hero h1 { font-size: clamp(3.65rem, 8vw, 7.2rem); }
.hero h1 span {
  display: block;
  color: var(--gold-300);
  font-style: italic;
  font-weight: 400;
}
.hero-copy {
  max-width: 640px;
  color: rgba(255,255,255,.78);
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  margin-top: 2rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  min-height: 52px;
  padding: .85rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  color: var(--navy-950);
  box-shadow: 0 14px 35px rgba(215,167,74,.23);
}
.btn-secondary {
  border: 1px solid rgba(255,255,255,.24);
  color: var(--white);
  background: rgba(255,255,255,.04);
}
.btn-dark {
  background: var(--navy-950);
  color: var(--white);
}
.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
}
.hero-logo-shell {
  position: relative;
  width: min(100%, 520px);
  aspect-ratio: 1 / 1;
  border-radius: 46% 54% 48% 52% / 52% 45% 55% 48%;
  overflow: hidden;
  box-shadow: 0 40px 90px rgba(0,0,0,.45);
  border: 1px solid rgba(241,214,154,.18);
  animation: float 7s ease-in-out infinite;
}
.hero-logo-shell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-logo-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(255,255,255,.07), transparent 42%);
  pointer-events: none;
}
.orbit {
  position: absolute;
  width: 114%;
  aspect-ratio: 1;
  border: 1px solid rgba(106,166,232,.22);
  border-radius: 50%;
  animation: spin 26s linear infinite;
}
.orbit::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold-300);
  top: 7%;
  left: 23%;
  box-shadow: 0 0 22px rgba(241,214,154,.65);
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes float { 50% { transform: translateY(-10px); } }

.section { padding: clamp(5rem, 9vw, 8rem) 0; }
.section-light { background: var(--ivory-50); }
.section-cream { background: var(--ivory-100); }
.section-soft { background: linear-gradient(180deg, var(--rose-100), var(--ivory-50)); }
.section-dark {
  background: var(--navy-950);
  color: var(--white);
}
.section-head {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 2rem;
  align-items: end;
  margin-bottom: 3rem;
}
.section-title {
  margin: 0;
  font-family: Georgia, serif;
  font-size: clamp(2.5rem, 5vw, 4.7rem);
  line-height: 1.04;
  letter-spacing: -.035em;
}
.section-lead {
  max-width: 660px;
  margin: 0 0 .35rem auto;
  color: var(--muted);
  font-size: 1.08rem;
}
.section-dark .section-lead { color: rgba(255,255,255,.7); }

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.story-card {
  min-height: 360px;
  padding: clamp(2rem, 4vw, 3.5rem);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.story-card:first-child {
  background: var(--navy-900);
  color: var(--white);
}
.story-card:last-child {
  background: linear-gradient(145deg, #f0dfc3, #f8f3ea);
}
.story-card h3 {
  margin: 0 0 1rem;
  font-family: Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.08;
}
.story-card p { max-width: 560px; }
.story-number {
  position: absolute;
  right: 1.5rem;
  bottom: -2rem;
  font-family: Georgia, serif;
  font-size: 10rem;
  line-height: 1;
  opacity: .07;
}

.ventures {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.2rem;
}
.venture-card {
  position: relative;
  min-height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: var(--shadow);
  transition: transform .25s ease, box-shadow .25s ease;
}
.venture-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 32px 90px rgba(3,9,22,.23);
}
.venture-card:nth-child(1) {
  grid-column: span 7;
  background:
    radial-gradient(circle at 80% 20%, rgba(215,167,74,.23), transparent 28%),
    linear-gradient(135deg, #101d37, #050a15);
  color: var(--white);
}
.venture-card:nth-child(2) {
  grid-column: span 5;
  background:
    radial-gradient(circle at 70% 15%, rgba(255,255,255,.7), transparent 28%),
    linear-gradient(150deg, #f8dfe8, #f4eee4 58%, #d9e7f6);
  color: var(--ink);
}
.venture-card:nth-child(3) {
  grid-column: span 12;
  min-height: 310px;
  background: linear-gradient(110deg, #e9edf4, #f6efe3);
}
.venture-tag {
  width: fit-content;
  padding: .45rem .75rem;
  border-radius: 999px;
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .13em;
  border: 1px solid currentColor;
  opacity: .75;
}
.venture-card h3 {
  margin: 1rem 0 .45rem;
  font-family: Georgia, serif;
  font-size: clamp(2.25rem, 4vw, 4.2rem);
  line-height: 1;
}
.venture-card p { max-width: 560px; margin: 0; opacity: .78; }
.card-link {
  margin-top: 1.4rem;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-weight: 700;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.value {
  border-top: 1px solid rgba(255,255,255,.18);
  padding: 1.5rem 0 0;
}
.value strong {
  display: block;
  margin-bottom: .6rem;
  color: var(--gold-300);
  font-family: Georgia, serif;
  font-size: 1.6rem;
  font-weight: 500;
}
.value p { color: rgba(255,255,255,.68); }

.quote-band {
  padding: 5rem 0;
  background: linear-gradient(110deg, var(--gold-300), #e9c774 48%, var(--gold-500));
  color: var(--navy-950);
}
.quote-band blockquote {
  margin: 0;
  max-width: 1000px;
  font-family: Georgia, serif;
  font-size: clamp(2rem, 5vw, 4.4rem);
  line-height: 1.08;
  letter-spacing: -.035em;
}

.cta-panel {
  position: relative;
  padding: clamp(2.5rem, 5vw, 5rem);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 90% 10%, rgba(106,166,232,.25), transparent 27%),
    var(--navy-900);
  color: var(--white);
  overflow: hidden;
}
.cta-panel h2 {
  margin: 0 0 1rem;
  max-width: 760px;
  font-family: Georgia, serif;
  font-size: clamp(2.5rem, 5vw, 4.6rem);
  line-height: 1.05;
}
.cta-panel p { max-width: 630px; color: rgba(255,255,255,.72); }

.site-footer {
  background: #020713;
  color: rgba(255,255,255,.72);
  padding: 4rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr .7fr .7fr;
  gap: 2rem;
}
.footer-title {
  color: var(--white);
  font-family: Georgia, serif;
  font-size: 2rem;
  margin: 0 0 .7rem;
}
.footer-links {
  display: grid;
  gap: .65rem;
}
.footer-kicker {
  color: var(--gold-300);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .75rem;
  margin-bottom: .8rem;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: 3rem;
  padding-top: 1.3rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: .85rem;
}

/* Inner pages */
.page-hero {
  padding: 10rem 0 6rem;
  background:
    radial-gradient(circle at 85% 20%, rgba(35,103,181,.2), transparent 25%),
    linear-gradient(135deg, var(--navy-950), var(--navy-800));
  color: var(--white);
}
.page-hero h1 { font-size: clamp(3.5rem, 8vw, 6.5rem); }
.page-hero p {
  max-width: 760px;
  color: rgba(255,255,255,.72);
  font-size: 1.12rem;
}
.content-grid {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 3rem;
}
.content-grid h2 {
  font-family: Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.08;
  margin-top: 0;
}
.prose { max-width: 760px; }
.prose p:first-child { font-size: 1.17rem; color: #344054; }
.list-clean {
  padding: 0;
  margin: 1.5rem 0 0;
  list-style: none;
  display: grid;
  gap: .8rem;
}
.list-clean li {
  padding: 1rem 1.1rem;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 35px rgba(3,9,22,.06);
}
.contact-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 2rem;
}
.contact-card {
  padding: 2rem;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow);
}
.contact-form {
  display: grid;
  gap: 1rem;
}
.contact-form label {
  display: grid;
  gap: .4rem;
  font-weight: 700;
  color: #344054;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #d0d5dd;
  border-radius: 12px;
  padding: .9rem 1rem;
  background: #fff;
}
.contact-form textarea { min-height: 150px; resize: vertical; }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 900px) {
  .menu-btn { display: grid; place-items: center; }
  .nav-links {
    position: absolute;
    top: 76px;
    left: 1rem;
    right: 1rem;
    display: none;
    padding: 1.2rem;
    flex-direction: column;
    align-items: flex-start;
    background: rgba(3,9,22,.98);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 18px;
  }
  .nav-links.open { display: flex; }
  .hero-grid,
  .section-head,
  .story-grid,
  .content-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero-grid { padding-top: 8.5rem; text-align: left; }
  .hero-visual { margin-top: 1rem; }
  .hero-logo-shell { width: min(84vw, 500px); }
  .section-lead { margin-left: 0; }
  .venture-card:nth-child(n) { grid-column: span 12; }
  .values-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .hero h1 { font-size: clamp(3.1rem, 16vw, 4.7rem); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .section { padding: 4.5rem 0; }
  .venture-card { min-height: 360px; }
  .footer-bottom { flex-direction: column; }
}
