:root {
  --navy: #081f46;
  --gold: #c89d3a;
  --gold-dark: #a9791b;
  --cream: #f7f2e8;
  --cream-soft: #fbf8f1;
  --text: #1a2e51;
  --muted: #5e6675;
  --line: rgba(200,157,58,.24);
  --shadow: 0 20px 60px rgba(8,31,70,.10);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #fcfaf5 0%, var(--cream) 100%);
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.container { width: min(1540px, calc(100% - 56px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(252,250,245,.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(200,157,58,.14);
}
.nav-row {
  min-height: 102px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 26px;
  align-items: center;
}
.brand img { width: 310px; height: auto; }
.main-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.main-nav a {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: .02em;
  position: relative;
  padding: 10px 2px;
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 4px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform .22s ease;
}
.main-nav a:hover::after { transform: scaleX(1); }
.header-cta, .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.header-cta:hover, .btn:hover { transform: translateY(-2px); }
.header-cta {
  padding: 18px 30px;
  background: var(--navy);
  color: white;
  box-shadow: 0 8px 24px rgba(8,31,70,.16);
}
.menu-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--navy);
  margin: 6px 0;
}

.hero-section {
  padding: 26px 0 48px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 44% 56%;
  gap: 34px;
  align-items: center;
}
.hero-media {
  padding-right: 8px;
}
.hero-media img {
  width: 100%;
  height: auto;
}
.eyebrow {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 13px;
  font-weight: 800;
  color: var(--gold-dark);
}
.hero-copy h1,
.section-heading h2,
.section-center h2,
.contact-copy h2 {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  color: var(--navy);
  font-weight: 600;
  letter-spacing: -.03em;
  line-height: .93;
}
.hero-copy h1 { font-size: clamp(60px, 6vw, 104px); }
.hero-copy h1 span { display: inline-block; }
.hero-rule {
  position: relative;
  height: 1px;
  margin: 28px 0 24px;
  max-width: 640px;
  background: linear-gradient(90deg, rgba(200,157,58,0), var(--gold), rgba(200,157,58,0));
}
.hero-rule span {
  position: absolute;
  left: 50%; top: -7px;
  transform: translateX(-50%) rotate(45deg);
  width: 14px; height: 14px;
  background: var(--gold);
  border-radius: 2px;
}
.hero-text {
  margin: 0 0 30px;
  font-size: 18px;
  line-height: 1.72;
  color: #2d3d5d;
  max-width: 700px;
}
.hero-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.btn { padding: 18px 32px; font-size: 16px; }
.btn-primary {
  background: var(--navy);
  color: white;
  box-shadow: 0 10px 24px rgba(8,31,70,.15);
}
.btn-secondary {
  border: 1.5px solid var(--gold);
  color: var(--navy);
  background: rgba(255,255,255,.55);
}
.small-btn { padding: 15px 24px; }

.logo-ribbon {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  background: rgba(255,251,245,.92);
  border: 1px solid var(--line);
  border-radius: 34px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.ribbon-item {
  min-height: 184px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 20px;
  border-right: 1px solid var(--line);
}
.ribbon-item:last-child { border-right: 0; }
.logo { object-fit: contain; }
.ribbon-item .services { width: 170px; }
.ribbon-item .rei { width: 212px; }
.ribbon-item .aura { width: 170px; }
.ribbon-item .manifest { width: 216px; }
.ribbon-item .properties { width: 200px; }
.ribbon-item .future { width: 206px; }

.section { padding: 98px 0; }
.split-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 56px;
  align-items: start;
}
.section-heading h2, .section-center h2, .contact-copy h2 {
  font-size: clamp(42px, 4.6vw, 76px);
}
.section-copy p,
.section-center p,
.contact-copy p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}
.section-center {
  max-width: 860px;
  margin: 0 auto 42px;
  text-align: center;
}
.about-section { background: linear-gradient(180deg, rgba(255,255,255,.30), rgba(255,255,255,0)); }
.companies-section { background: rgba(255,255,255,.24); }
.company-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.company-card {
  min-height: 395px;
  display: flex;
  flex-direction: column;
  padding: 26px 24px 24px;
  border-radius: 22px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(200,157,58,.22);
  box-shadow: 0 14px 40px rgba(8,31,70,.08);
}
.status {
  align-self: flex-start;
  padding: 8px 13px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.operating { background: var(--navy); color: white; }
.launching { background: #5f3b8e; color: white; }
.prelaunch { background: #a67c27; color: white; }
.future-status { background: #177180; color: white; }
.logo-box {
  height: 115px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.company-card .services { width: 150px; }
.company-card .rei { width: 198px; }
.company-card .aura { width: 160px; }
.company-card .manifest { width: 205px; }
.company-card .properties { width: 186px; }
.company-card .future { width: 195px; }
.company-card h3,
.impact-card h3,
.insights-list h3 {
  margin: 0 0 12px;
  font-family: 'Cormorant Garamond', serif;
  color: var(--navy);
  line-height: .96;
}
.company-card h3 { font-size: 42px; }
.company-card p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.68;
  font-size: 16px;
}
.company-card a {
  margin-top: auto;
  color: var(--gold-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.impact-section { background: linear-gradient(180deg, rgba(255,255,255,.14), rgba(255,255,255,.35)); }
.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.impact-card {
  padding: 30px;
  border-radius: 22px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(200,157,58,.22);
  box-shadow: 0 14px 40px rgba(8,31,70,.08);
}
.impact-card h3 { font-size: 40px; }
.impact-card p { margin: 0; color: var(--muted); line-height: 1.72; }

.insights-list {
  display: grid;
  gap: 18px;
}
.insights-list article {
  padding: 24px 26px;
  background: rgba(255,255,255,.68);
  border: 1px solid rgba(200,157,58,.20);
  border-radius: 20px;
}
.insights-list h3 { font-size: 34px; }
.insights-list p { margin: 0; color: var(--muted); line-height: 1.72; }

.contact-grid {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 48px;
}
.contact-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 28px;
  font-weight: 700;
}
.contact-links a { color: var(--gold-dark); }
.contact-form {
  padding: 30px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(200,157,58,.22);
  border-radius: 24px;
  box-shadow: var(--shadow);
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-top: 14px;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid rgba(8,31,70,.14);
  background: white;
  color: var(--text);
  font: inherit;
}
.contact-form textarea { resize: vertical; }
.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(200,157,58,.30);
  border-color: var(--gold);
}
.submit-btn { border: 0; width: 100%; margin-top: 16px; cursor: pointer; }

.site-footer {
  margin-top: 26px;
  padding: 40px 0;
  background: var(--navy);
  color: white;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 24px;
  align-items: center;
}
.footer-brand img { width: 250px; filter: brightness(0) invert(1); }
.footer-brand p { margin: 12px 0 0; color: rgba(255,255,255,.74); }
.footer-nav { display: flex; gap: 18px; flex-wrap: wrap; justify-content: center; }
.footer-nav a { color: rgba(255,255,255,.85); font-size: 14px; }
.copyright { color: rgba(255,255,255,.74); font-size: 13px; }

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

@media (max-width: 1220px) {
  .nav-row {
    grid-template-columns: auto auto;
    grid-template-areas: 'brand toggle' 'nav nav';
    gap: 14px 20px;
    padding: 14px 0;
  }
  .brand { grid-area: brand; }
  .menu-toggle { grid-area: toggle; display: block; justify-self: end; }
  .main-nav {
    grid-area: nav;
    display: none;
    justify-content: flex-start;
    padding-bottom: 8px;
  }
  .main-nav.open { display: flex; }
  .header-cta { display: none; }
  .hero-grid, .split-grid, .contact-grid { grid-template-columns: 1fr; }
  .company-grid, .impact-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 920px) {
  .container { width: min(100% - 30px, 1540px); }
  .hero-grid { gap: 22px; }
  .logo-ribbon { grid-template-columns: repeat(2, 1fr); }
  .ribbon-item:nth-child(2n) { border-right: 0; }
  .ribbon-item:nth-child(n+3) { border-top: 1px solid var(--line); }
}
@media (max-width: 720px) {
  .brand img { width: 220px; }
  .hero-copy h1 { font-size: 54px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .company-grid, .impact-grid, .field-row, .logo-ribbon { grid-template-columns: 1fr; }
  .ribbon-item { border-right: 0 !important; }
  .ribbon-item + .ribbon-item { border-top: 1px solid var(--line); }
  .section { padding: 74px 0; }
}
