:root {
  --bg: #050B14;
  --bg2: #07111F;
  --panel: rgba(11, 25, 42, .72);
  --panel2: rgba(14, 32, 52, .92);
  --text: #F6F8FB;
  --muted: #AEBBCC;
  --faint: #748397;
  --line: rgba(255,255,255,.14);
  --line2: rgba(255,255,255,.24);
  --accent: #B6CADB;
  --gold: #CBB98D;
  --shadow: 0 35px 90px rgba(0,0,0,.38);
  --ease: cubic-bezier(.2,.8,.2,1);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "Manrope", system-ui, sans-serif;
  background:
    radial-gradient(circle at 10% 10%, rgba(182,202,219,.18), transparent 28rem),
    radial-gradient(circle at 90% 15%, rgba(203,185,141,.10), transparent 24rem),
    linear-gradient(180deg, #050B14, #07111F 48%, #050B14);
  overflow-x: hidden;
}

body.modal-open { overflow: hidden; }

a, button, input, textarea, select { font: inherit; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; }

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 50;
  transform: translateY(-150%);
  padding: .7rem 1rem;
  border-radius: 999px;
  background: var(--accent);
  color: #06101D;
  font-weight: 800;
}
.skip-link:focus { transform: translateY(0); }

.ambient,
.grain,
.meridian-canvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.ambient {
  z-index: -3;
  background:
    radial-gradient(circle at 50% 0%, rgba(182,202,219,.12), transparent 35rem),
    radial-gradient(circle at 50% 100%, rgba(182,202,219,.08), transparent 34rem);
}

.grain {
  z-index: -2;
  opacity: .22;
  background-image:
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(circle at center, black, transparent 78%);
}

.meridian-canvas {
  z-index: -1;
  opacity: .45;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  height: 86px;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 0 clamp(1rem, 4vw, 3.5rem);
  background: linear-gradient(180deg, rgba(5,11,20,.82), rgba(5,11,20,.48), transparent);
  backdrop-filter: blur(14px);
}

.brand img {
  width: min(318px, 42vw);
  height: auto;
  display: block;
  filter: drop-shadow(0 14px 34px rgba(0,0,0,.34));
}

.desktop-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 1.55rem;
}

.desktop-nav a,
.nav-button {
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
  transition: color 180ms var(--ease);
}

.desktop-nav a:hover,
.nav-button:hover { color: var(--text); }

.nav-button {
  height: 42px;
  padding: 0 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.035);
}

.menu-toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  color: var(--text);
}
.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: currentColor;
  transition: transform 220ms var(--ease);
}
.menu-toggle.is-open span:first-child { transform: translateY(3px) rotate(45deg); }
.menu-toggle.is-open span:last-child { transform: translateY(-3px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  top: 76px;
  right: 1rem;
  z-index: 25;
  width: min(290px, calc(100vw - 2rem));
  padding: .7rem;
  border: 1px solid var(--line2);
  border-radius: 22px;
  background: rgba(7,17,31,.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px) scale(.98);
  transition: opacity 180ms var(--ease), transform 180ms var(--ease);
}
.mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}
.mobile-menu a,
.mobile-menu button {
  display: block;
  width: 100%;
  padding: .9rem 1rem;
  border: 0;
  border-radius: 14px;
  color: var(--muted);
  background: transparent;
  text-align: left;
  font-weight: 800;
}
.mobile-menu a:hover,
.mobile-menu button:hover {
  color: var(--text);
  background: rgba(255,255,255,.07);
}

.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .62fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 6rem);
  padding: 116px clamp(1rem, 5vw, 5rem) 3rem;
}

.hero-content {
  max-width: 920px;
}

.eyebrow,
.focus-kicker,
.panel-kicker {
  margin: 0 0 1.1rem;
  color: var(--accent);
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .2em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 620;
  line-height: .96;
  letter-spacing: -.035em;
  text-wrap: balance;
}

h1 {
  max-width: 850px;
  font-size: clamp(3.5rem, 8vw, 7.2rem);
}

.hero-copy {
  max-width: 705px;
  margin: 1.35rem 0 2rem;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.35vw, 1.25rem);
  font-weight: 360;
  line-height: 1.78;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
}

.primary-action,
.secondary-action,
.text-link {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 850;
  letter-spacing: -.01em;
  transition: transform 180ms var(--ease), border-color 180ms var(--ease), background 180ms var(--ease);
}

.primary-action {
  border: 1px solid rgba(255,255,255,.26);
  padding: 0 1.55rem;
  color: #06101D;
  background: linear-gradient(135deg, #F4F8FB, #AFC4D6);
  box-shadow: 0 22px 54px rgba(175,196,214,.18);
}

.secondary-action,
.text-link {
  border: 1px solid var(--line2);
  padding: 0 1.4rem;
  color: var(--text);
  background: rgba(255,255,255,.035);
}

.primary-action:hover,
.secondary-action:hover,
.text-link:hover { transform: translateY(-2px); }

.status-line {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin-top: 2.2rem;
}
.status-line span {
  padding: .65rem .85rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255,255,255,.03);
  font-size: .78rem;
}

.compass-panel {
  position: relative;
  min-height: 460px;
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(13,29,47,.74), rgba(5,11,20,.5)),
    radial-gradient(circle at 50% 18%, rgba(182,202,219,.18), transparent 16rem);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.compass {
  position: relative;
  width: min(310px, 100%);
  aspect-ratio: 1 / 1;
  margin: 2.6rem auto 2rem;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.14);
  background: repeating-radial-gradient(circle at center, transparent 0 42px, rgba(255,255,255,.045) 43px, transparent 44px);
}

.ring,
.axis,
.core {
  position: absolute;
  display: block;
}
.ring {
  inset: 17%;
  border: 1px solid rgba(182,202,219,.34);
  border-radius: 50%;
  animation: rotate 24s linear infinite;
}
.ring-two {
  inset: 30%;
  animation-direction: reverse;
  animation-duration: 18s;
}
.ring::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 22px rgba(203,185,141,.8);
}
.axis {
  background: rgba(255,255,255,.18);
}
.axis-vertical {
  top: 8%;
  bottom: 8%;
  left: 50%;
  width: 1px;
}
.axis-horizontal {
  left: 8%;
  right: 8%;
  top: 50%;
  height: 1px;
}
.core {
  inset: 45%;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 10px rgba(182,202,219,.08), 0 0 45px rgba(182,202,219,.42);
}

.panel-statement {
  margin: 0;
  max-width: 370px;
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--text);
  font-size: clamp(1.75rem, 2.8vw, 2.55rem);
  line-height: 1.04;
  letter-spacing: -.03em;
}

.orientation {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1rem 0 5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .9rem;
}

.orientation article {
  min-height: 190px;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(13,29,47,.68), rgba(5,11,20,.34));
}

.orientation span {
  color: var(--accent);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .18em;
}
.orientation h2 {
  margin-top: 2.2rem;
  font-size: 2.5rem;
}
.orientation p,
.focus p,
.site-footer p,
.dialog-intro p,
.privacy-note,
.form-status {
  color: var(--muted);
  line-height: 1.72;
}

.focus {
  width: min(880px, calc(100% - 2rem));
  margin: 0 auto 5rem;
  padding: clamp(1.7rem, 4vw, 3rem);
  border: 1px solid var(--line2);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(13,29,47,.78), rgba(5,11,20,.5)),
    radial-gradient(circle at 100% 0%, rgba(203,185,141,.09), transparent 18rem);
  box-shadow: var(--shadow);
  text-align: center;
}
.focus h2 {
  max-width: 720px;
  margin: 0 auto 1rem;
  font-size: clamp(2.5rem, 6vw, 4.6rem);
}
.focus p {
  max-width: 690px;
  margin: 0 auto 1.4rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem clamp(1rem, 5vw, 5rem);
  border-top: 1px solid var(--line);
}
.site-footer p {
  margin: 0;
  font-size: .82rem;
}
.site-footer p:last-child { text-align: right; }

.inquiry-dialog {
  width: min(820px, calc(100vw - 1.4rem));
  max-height: min(880px, calc(100svh - 1.4rem));
  padding: 0;
  border: 1px solid var(--line2);
  border-radius: 30px;
  color: var(--text);
  background: transparent;
  box-shadow: var(--shadow);
}
.inquiry-dialog::backdrop {
  background: rgba(0,0,0,.65);
  backdrop-filter: blur(12px);
}
.dialog-shell {
  position: relative;
  max-height: inherit;
  overflow: auto;
  padding: clamp(1.2rem, 4vw, 2.4rem);
  background:
    linear-gradient(180deg, rgba(13,29,47,.98), rgba(5,11,20,.98)),
    radial-gradient(circle at 100% 0%, rgba(182,202,219,.12), transparent 18rem);
}
.dialog-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  background: rgba(255,255,255,.04);
  font-size: 1.6rem;
}
.dialog-intro {
  max-width: 620px;
  margin-bottom: 1.3rem;
}
.dialog-intro h2 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
}

.inquiry-form {
  display: grid;
  gap: 1rem;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .9rem;
}
label {
  display: grid;
  gap: .45rem;
  color: var(--muted);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .04em;
}
input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 15px;
  padding: .86rem .95rem;
  color: var(--text);
  background: rgba(255,255,255,.045);
  outline: none;
}
textarea { resize: vertical; }
input:focus,
select:focus,
textarea:focus {
  border-color: rgba(182,202,219,.7);
  box-shadow: 0 0 0 4px rgba(182,202,219,.1);
}
.path-note,
fieldset {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1rem;
  background: rgba(255,255,255,.035);
}
.path-note {
  display: grid;
  gap: .35rem;
}
.path-note span {
  color: var(--muted);
  font-size: .88rem;
}
fieldset[hidden] { display: none; }
legend {
  padding: 0 .35rem;
  color: var(--text);
  font-weight: 850;
}
.pills {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-top: .75rem;
}
.pills label {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .62rem .75rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.035);
  cursor: pointer;
}
.pills input { width: auto; accent-color: var(--accent); }
.submit-action { width: 100%; }
.privacy-note,
.form-status {
  margin: 0;
  text-align: center;
  font-size: .84rem;
}
.form-status.is-error { color: #F2B5A9; }
.form-status.is-success { color: var(--accent); }

@keyframes rotate { to { transform: rotate(360deg); } }

@media (max-width: 900px) {
  .desktop-nav { display: none; }
  .menu-toggle { display: block; }
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 120px;
  }
  .compass-panel {
    min-height: 340px;
  }
  .orientation {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .site-header {
    height: 78px;
    padding-inline: 1rem;
  }
  .brand img { width: min(245px, 66vw); }
  h1 { font-size: clamp(3.05rem, 15vw, 4.55rem); }
  .hero {
    padding: 105px 1rem 2rem;
  }
  .hero-actions {
    display: grid;
  }
  .status-line span { width: 100%; }
  .compass-panel { display: none; }
  .form-grid { grid-template-columns: 1fr; }
  .site-footer {
    display: grid;
  }
  .site-footer p:last-child { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .meridian-canvas { display: none; }
}


/* Report addendum: reliable header logo lockup */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
}

.brand img.brand-mark,
.brand-mark {
  width: 34px;
  height: 34px;
  object-fit: contain;
  display: block;
  flex: 0 0 auto;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,.28));
}

.brand-wordmark {
  color: #F6F8FB;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1;
}

@media (max-width: 620px) {
  .brand img.brand-mark,
  .brand-mark {
    width: 30px;
    height: 30px;
  }

  .brand-wordmark {
    font-size: 0.78rem;
    letter-spacing: 0.105em;
  }
}

@media (max-width: 360px) {
  .brand-wordmark {
    font-size: 0.7rem;
    letter-spacing: 0.08em;
  }
}


/* Next-Gen V10 aesthetic upgrade: larger brand, quiet watermark, stronger spatial system */
.site-header {
  height: 136px;
  padding: 0 clamp(1.25rem, 4vw, 4.5rem);
  background:
    linear-gradient(180deg, rgba(5,11,20,.94), rgba(5,11,20,.68) 62%, rgba(5,11,20,0));
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.site-header::after {
  content: "";
  position: absolute;
  left: clamp(1.25rem, 4vw, 4.5rem);
  right: clamp(1.25rem, 4vw, 4.5rem);
  bottom: 18px;
  height: 1px;
  background: linear-gradient(90deg, rgba(182,202,219,.38), rgba(203,185,141,.18), transparent 72%);
  opacity: .85;
  pointer-events: none;
}

.brand {
  gap: 1.05rem;
  transform: translateY(-3px);
}

.brand img.brand-mark,
.brand-mark {
  width: 102px;
  height: 102px;
  border-radius: 999px;
  padding: 8px;
  background:
    radial-gradient(circle at 50% 42%, rgba(182,202,219,.13), transparent 58%),
    linear-gradient(135deg, rgba(255,255,255,.10), rgba(255,255,255,.025));
  border: 1px solid rgba(255,255,255,.13);
  box-shadow:
    0 0 0 1px rgba(182,202,219,.05),
    0 26px 60px rgba(0,0,0,.36),
    0 0 44px rgba(182,202,219,.13);
}

.brand-wordmark {
  font-size: clamp(1.85rem, 2.05vw, 2.42rem);
  font-weight: 850;
  letter-spacing: .145em;
  text-shadow: 0 12px 34px rgba(0,0,0,.42);
}

.desktop-nav {
  gap: 1.35rem;
  transform: translateY(-5px);
}

.desktop-nav a,
.nav-button {
  font-size: .78rem;
}

.nav-button {
  height: 46px;
  padding: 0 1.1rem;
}

.hero-nextgen {
  position: relative;
  isolation: isolate;
  padding-top: 168px;
  overflow: hidden;
}

.hero-nextgen::before {
  content: "";
  position: absolute;
  inset: 106px clamp(1rem, 5vw, 5rem) 3.2rem;
  z-index: -2;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 44px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.045), rgba(255,255,255,.008) 42%, rgba(182,202,219,.035)),
    radial-gradient(circle at 18% 10%, rgba(182,202,219,.11), transparent 28rem),
    radial-gradient(circle at 86% 16%, rgba(203,185,141,.08), transparent 24rem);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.08),
    0 46px 140px rgba(0,0,0,.28);
  pointer-events: none;
}

.brand-watermark {
  position: absolute;
  z-index: -1;
  top: 13%;
  right: -10vw;
  width: min(850px, 68vw);
  aspect-ratio: 1 / 1;
  background-image: url("forever-meridian-mark.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  opacity: .055;
  filter: blur(.1px) saturate(1.05);
  mix-blend-mode: screen;
  transform: rotate(-8deg);
  pointer-events: none;
}

.brand-watermark::after {
  content: "";
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  border: 1px solid rgba(182,202,219,.24);
  box-shadow:
    0 0 0 42px rgba(182,202,219,.015),
    0 0 0 92px rgba(182,202,219,.01),
    0 0 120px rgba(182,202,219,.08);
}

.meridian-sweep {
  position: absolute;
  z-index: -1;
  top: 18%;
  left: -18%;
  width: 142%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(182,202,219,.05), rgba(203,185,141,.18), rgba(182,202,219,.05), transparent);
  transform: rotate(-18deg);
  opacity: .9;
  pointer-events: none;
}

.meridian-sweep::before,
.meridian-sweep::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  height: 1px;
  background: inherit;
  opacity: .55;
}

.meridian-sweep::before {
  top: 118px;
}

.meridian-sweep::after {
  top: 236px;
  opacity: .32;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content::before {
  content: "";
  position: absolute;
  left: -34px;
  top: -24px;
  width: 1px;
  height: 88px;
  background: linear-gradient(180deg, rgba(203,185,141,.8), rgba(182,202,219,.15), transparent);
  opacity: .85;
}

.hero-content::after {
  content: "";
  position: absolute;
  left: -34px;
  top: -24px;
  width: 88px;
  height: 1px;
  background: linear-gradient(90deg, rgba(203,185,141,.8), rgba(182,202,219,.15), transparent);
  opacity: .85;
}

.compass-panel {
  min-height: 500px;
  border-color: rgba(255,255,255,.17);
  background:
    linear-gradient(180deg, rgba(16,34,55,.82), rgba(5,11,20,.48)),
    radial-gradient(circle at 50% 20%, rgba(182,202,219,.22), transparent 17rem),
    linear-gradient(135deg, rgba(203,185,141,.055), transparent 45%);
}

.compass-panel::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(255,255,255,.18), transparent 20%),
    radial-gradient(circle at 72% 12%, rgba(203,185,141,.10), transparent 13rem);
  pointer-events: none;
  mask-image: linear-gradient(#000, transparent 62%);
}

.orientation article {
  position: relative;
  overflow: hidden;
  min-height: 210px;
  border-color: rgba(255,255,255,.16);
  box-shadow: 0 22px 70px rgba(0,0,0,.18);
}

.orientation article::after {
  content: "";
  position: absolute;
  inset: auto 1.35rem 1.2rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(182,202,219,.28), transparent);
}

.focus {
  border-color: rgba(255,255,255,.18);
  background:
    linear-gradient(135deg, rgba(13,29,47,.86), rgba(5,11,20,.52)),
    radial-gradient(circle at 100% 0%, rgba(203,185,141,.12), transparent 18rem),
    radial-gradient(circle at 0% 100%, rgba(182,202,219,.08), transparent 18rem);
}

@media (max-width: 1080px) {
  .site-header {
    height: 118px;
  }

  .brand img.brand-mark,
  .brand-mark {
    width: 78px;
    height: 78px;
    padding: 7px;
  }

  .brand-wordmark {
    font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  }

  .desktop-nav {
    gap: 1rem;
  }

  .hero-nextgen {
    padding-top: 145px;
  }
}

@media (max-width: 900px) {
  .site-header {
    height: 100px;
  }

  .brand img.brand-mark,
  .brand-mark {
    width: 64px;
    height: 64px;
  }

  .brand-wordmark {
    font-size: 1.25rem;
    letter-spacing: .13em;
  }

  .hero-nextgen {
    padding-top: 132px;
  }

  .brand-watermark {
    width: min(650px, 90vw);
    right: -32vw;
    opacity: .045;
  }
}

@media (max-width: 620px) {
  .site-header {
    height: 88px;
    padding-inline: .9rem;
  }

  .site-header::after {
    left: .9rem;
    right: .9rem;
    bottom: 12px;
  }

  .brand {
    gap: .58rem;
  }

  .brand img.brand-mark,
  .brand-mark {
    width: 46px;
    height: 46px;
    padding: 4px;
  }

  .brand-wordmark {
    font-size: .93rem;
    letter-spacing: .105em;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .hero-nextgen {
    padding-top: 116px;
  }

  .hero-nextgen::before {
    inset: 88px .75rem 2rem;
    border-radius: 28px;
  }

  .brand-watermark {
    width: 96vw;
    top: 9%;
    right: -48vw;
    opacity: .038;
  }

  .hero-content::before,
  .hero-content::after {
    display: none;
  }
}

@media (max-width: 395px) {
  .brand img.brand-mark,
  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand-wordmark {
    font-size: .78rem;
    letter-spacing: .08em;
  }
}



/* Next-Gen V11 refinement:
   - Larger top-left logo mark
   - Status bubbles removed
   - Background logo moved left and made more visible
   - Compass feature uses the logo mark with orbiting dots
*/

.site-header {
  height: 184px;
  padding: 0 clamp(1.25rem, 4vw, 4.5rem);
}

.site-header::after {
  bottom: 24px;
}

.brand {
  gap: 1.08rem;
}

.brand img.brand-mark,
.brand-mark {
  width: 168px;
  height: 168px;
  padding: 12px;
  border-width: 1px;
  background:
    radial-gradient(circle at 50% 48%, rgba(182,202,219,.18), transparent 58%),
    linear-gradient(135deg, rgba(255,255,255,.12), rgba(255,255,255,.025));
  box-shadow:
    0 0 0 1px rgba(182,202,219,.08),
    0 34px 80px rgba(0,0,0,.42),
    0 0 72px rgba(182,202,219,.18);
}

.brand-wordmark {
  font-size: clamp(1.85rem, 2.05vw, 2.42rem);
}

.desktop-nav {
  transform: translateY(-10px);
}

.hero-nextgen {
  padding-top: 218px;
}

.hero-nextgen::before {
  inset: 138px clamp(1rem, 5vw, 5rem) 3.2rem;
}

.status-line {
  display: none !important;
}

.brand-watermark {
  top: 16%;
  left: -16vw;
  right: auto;
  width: min(980px, 78vw);
  opacity: .085;
  transform: rotate(-11deg);
  mix-blend-mode: screen;
}

.brand-watermark::after {
  inset: 6%;
  border-color: rgba(182,202,219,.30);
  box-shadow:
    0 0 0 46px rgba(182,202,219,.022),
    0 0 0 104px rgba(182,202,219,.014),
    0 0 150px rgba(182,202,219,.12);
}

.hero-content {
  max-width: 940px;
}

.hero-content::before,
.hero-content::after {
  z-index: -1;
}

.focus-microcopy {
  max-width: 720px;
  margin: -.25rem auto 1.45rem;
  color: rgba(174,187,204,.76);
  font-size: .95rem;
  line-height: 1.65;
}

.logo-orbit {
  display: grid;
  place-items: center;
  border-color: rgba(255,255,255,.10);
  background:
    radial-gradient(circle at center, rgba(182,202,219,.08), transparent 42%),
    repeating-radial-gradient(circle at center, transparent 0 48px, rgba(255,255,255,.035) 49px, transparent 50px);
}

.logo-orbit .axis {
  display: none;
}

.orbit-logo {
  position: absolute;
  z-index: 2;
  width: 46%;
  height: 46%;
  object-fit: contain;
  opacity: .42;
  filter:
    drop-shadow(0 18px 45px rgba(0,0,0,.34))
    drop-shadow(0 0 34px rgba(182,202,219,.12));
}

.logo-orbit::before,
.logo-orbit::after {
  content: "";
  position: absolute;
  z-index: 1;
  background: rgba(182,202,219,.14);
  pointer-events: none;
}

.logo-orbit::before {
  top: 10%;
  bottom: 10%;
  left: 50%;
  width: 1px;
}

.logo-orbit::after {
  left: 10%;
  right: 10%;
  top: 50%;
  height: 1px;
}

.logo-orbit .core {
  z-index: 3;
  inset: 47%;
  opacity: .72;
  background: rgba(246,248,251,.86);
  box-shadow:
    0 0 0 13px rgba(182,202,219,.08),
    0 0 54px rgba(182,202,219,.42);
}

.logo-orbit .ring {
  z-index: 4;
  border-color: rgba(182,202,219,.30);
}

.logo-orbit .ring-two {
  border-color: rgba(203,185,141,.22);
}

@media (max-width: 1180px) {
  .site-header {
    height: 152px;
  }

  .brand img.brand-mark,
  .brand-mark {
    width: 132px;
    height: 132px;
    padding: 10px;
  }

  .hero-nextgen {
    padding-top: 186px;
  }

  .hero-nextgen::before {
    inset: 120px clamp(1rem, 5vw, 5rem) 3.2rem;
  }
}

@media (max-width: 900px) {
  .site-header {
    height: 124px;
  }

  .brand img.brand-mark,
  .brand-mark {
    width: 96px;
    height: 96px;
    padding: 8px;
  }

  .brand-wordmark {
    font-size: 1.25rem;
    letter-spacing: .13em;
  }

  .hero-nextgen {
    padding-top: 152px;
  }

  .brand-watermark {
    width: 105vw;
    left: -46vw;
    top: 11%;
    opacity: .068;
  }
}

@media (max-width: 620px) {
  .site-header {
    height: 104px;
    padding-inline: .9rem;
  }

  .site-header::after {
    bottom: 10px;
  }

  .brand {
    gap: .58rem;
  }

  .brand img.brand-mark,
  .brand-mark {
    width: 72px;
    height: 72px;
    padding: 5px;
  }

  .brand-wordmark {
    font-size: .93rem;
    letter-spacing: .105em;
  }

  .hero-nextgen {
    padding-top: 132px;
  }

  .hero-nextgen::before {
    inset: 101px .75rem 2rem;
  }

  .brand-watermark {
    width: 118vw;
    left: -63vw;
    top: 8%;
    opacity: .06;
  }

  .focus-microcopy {
    font-size: .88rem;
  }
}

@media (max-width: 395px) {
  .brand img.brand-mark,
  .brand-mark {
    width: 58px;
    height: 58px;
    padding: 4px;
  }

  .brand-wordmark {
    font-size: .78rem;
    letter-spacing: .08em;
  }
}



/* Next-Gen V12 refinement: clean vector logo mark, circular orbit fill, left-side watermark */
.brand img.brand-mark,
.brand-mark {
  object-fit: contain;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(182,202,219,.16), rgba(5,11,20,.02) 62%, transparent 72%);
  padding: 0;
  overflow: visible;
}

.brand-watermark {
  background-image: url("forever-meridian-mark.svg");
  left: -13vw;
  right: auto;
  top: 14%;
  width: min(1040px, 82vw);
  opacity: .13;
  filter: blur(.2px) saturate(1.08);
}

.logo-orbit {
  overflow: hidden;
}

.logo-orbit .orbit-logo {
  width: 92%;
  height: 92%;
  object-fit: contain;
  opacity: .24;
  border-radius: 50%;
  filter:
    drop-shadow(0 18px 45px rgba(0,0,0,.30))
    drop-shadow(0 0 42px rgba(182,202,219,.18));
}

.logo-orbit::before,
.logo-orbit::after {
  opacity: .28;
}

.logo-orbit .core {
  inset: 48.5%;
  opacity: .78;
}

.logo-orbit .ring {
  z-index: 4;
}

.logo-orbit .ring-one {
  inset: 7%;
  border-color: rgba(246,248,251,.28);
}

.logo-orbit .ring-two {
  inset: 22%;
  border-color: rgba(203,185,141,.24);
}

@media (max-width: 900px) {
  .brand-watermark {
    width: 115vw;
    left: -54vw;
    opacity: .105;
  }
}

@media (max-width: 620px) {
  .brand-watermark {
    width: 125vw;
    left: -72vw;
    opacity: .085;
  }
}



/* Next-Gen V13: desktop header lockup correction
   - Desktop logo mark is roughly half the V12 size.
   - FOREVER MERIDIAN stays inline next to the mark.
   - Mobile header remains close to the approved V12 look.
*/

@media (min-width: 901px) {
  .site-header {
    height: 122px;
    padding: 0 clamp(1.5rem, 4vw, 4.5rem);
  }

  .site-header::after {
    bottom: 18px;
  }

  .brand {
    display: inline-flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    flex-wrap: nowrap !important;
    gap: 1.05rem !important;
    width: auto !important;
    max-width: none !important;
    min-width: max-content !important;
    transform: translateY(-3px);
    white-space: nowrap !important;
  }

  .brand img.brand-mark,
  .brand-mark {
    width: 84px !important;
    height: 84px !important;
    min-width: 84px !important;
    min-height: 84px !important;
    max-width: 84px !important;
    max-height: 84px !important;
    padding: 0 !important;
    flex: 0 0 84px !important;
  }

  .brand-wordmark {
    display: inline-block !important;
    flex: 0 0 auto !important;
    font-size: clamp(1.85rem, 2.05vw, 2.42rem) !important;
    line-height: 1 !important;
    white-space: nowrap !important;
    writing-mode: horizontal-tb !important;
  }

  .desktop-nav {
    transform: translateY(-3px);
  }

  .hero-nextgen {
    padding-top: 152px;
  }

  .hero-nextgen::before {
    inset: 104px clamp(1rem, 5vw, 5rem) 3.2rem;
  }
}

@media (min-width: 1181px) {
  .brand img.brand-mark,
  .brand-mark {
    width: 88px !important;
    height: 88px !important;
    min-width: 88px !important;
    min-height: 88px !important;
    max-width: 88px !important;
    max-height: 88px !important;
    flex-basis: 88px !important;
  }
}

@media (max-width: 900px) {
  .brand {
    display: inline-flex !important;
    flex-direction: row !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
    white-space: nowrap !important;
  }

  .brand-wordmark {
    display: inline-block !important;
    white-space: nowrap !important;
  }
}
