/* Beautiful Pearls Equipping Society â€” index7-inspired dark theme */
:root {
  --black: #030303;
  --ink: #080807;
  --surface: #0e0d0b;
  --surface2: #141210;
  --gold: #c4a35a;
  --gold-light: #e6d5a8;
  --gold-muted: #8f7a47;
  --cream: #e8e4dc;
  --text-body: #a9a39a;
  --muted: #6b665e;
  --violet: #b8a3d9;
  --violet-deep: #7d6aad;
  --violet-soft: rgba(154, 132, 198, 0.12);
  --navy: #0f1628;
  --navy-mid: #141e36;
  --navy-light: #1e2d4d;
  --hairline: rgba(196, 163, 90, 0.22);
  --hairline-faint: rgba(255, 248, 235, 0.06);
  --line-soft: rgba(255, 255, 255, 0.08);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --radius: 14px;
  --radius-sm: 10px;
  --max: 1040px;
  --header-h: 64px;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  /* Cursor-driven gradients (set by site.js); defaults before first pointer move */
  --cursor-x: 82%;
  --cursor-y: 32%;
  --sx: 72%;
  --sy: 48%;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--gold-light);
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

a:hover {
  color: var(--violet);
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0.75rem;
  background: var(--navy);
  color: #fff;
  padding: 0.5rem 1rem;
  z-index: 1000;
  border-radius: 6px;
}

.skip-link:focus {
  left: 0.75rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.list-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0.45rem 1.75rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /* gap: 0.4rem; */
  padding: 0.65rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.03em;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    transform 0.15s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    opacity 0.2s ease;
  text-decoration: none;
  font-family: inherit;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--navy-light), var(--violet-deep), var(--gold));
  color: var(--cream);
  /* box-shadow: 0 0 0 1px rgba(196, 163, 90, 0.25), 0 10px 28px rgba(0, 0, 0, 0.35); */
}

.btn-primary:hover {
  color: var(--cream);
  opacity: 0.94;
}

.btn-secondary {
  background: rgba(255, 250, 235, 0.04);
  color: var(--cream);
  border-color: var(--hairline-faint);
}

.btn-secondary:hover {
  border-color: var(--hairline);
  color: var(--gold-light);
}

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: var(--hairline-faint);
}

.btn-ghost:hover {
  border-color: var(--hairline);
  background: rgba(196, 163, 90, 0.08);
  color: var(--gold-light);
}

.btn-light {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--black);
  border-color: transparent;
}

.btn-light:hover {
  color: var(--black);
  filter: brightness(1.06);
}

.hero .btn-ghost {
  border-color: rgba(255, 255, 255, 0.18);
}

.hero .btn-ghost:hover {
  background: rgba(255, 250, 235, 0.08);
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.cta-band .btn-ghost {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.cta-band .btn-ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

/* Hero */
.hero {
  position: relative;
  padding: clamp(4.5rem, 10vw, 6rem) 1.35rem clamp(3.75rem, 8vw, 5.5rem);
  overflow: hidden;
  isolation: isolate;
}

.hero--tall {
  min-height: 100vh;
  min-height: 100dvh;
  padding-top: max(6rem, calc(var(--header-h) + 2.75rem));
  padding-bottom: clamp(4rem, 10vw, 6rem);
  display: flex;
  align-items: center;
}

.hero--tall .hero-inner {
  width: 100%;
}

/* Full-bleed photo (right): strong scrim left for typography */
.hero--tall::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-color: #07080c;
  background-image:
    linear-gradient(
      90deg,
      rgba(4, 4, 6, 0.98) 0%,
      rgba(6, 7, 12, 0.94) min(46%, 22rem),
      rgba(8, 10, 18, 0.72) min(62%, 32rem),
      rgba(15, 18, 28, 0.28) 78%,
      transparent 94%
    ),
    linear-gradient(180deg, rgba(3, 3, 5, 0.55) 0%, transparent 22%, transparent 62%, rgba(3, 3, 6, 0.78) 100%),
    url("images/bg.jpg");
  background-size:
    auto,
    auto,
    cover;
  background-position:
    center,
    center,
    right 36% center;
  background-repeat: no-repeat;
}

/* Extra cursor glow inside homepage hero (--hero-glow-* via site.js) */
.hero--tall::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  mix-blend-mode: overlay;
  opacity: 0.55;
  background: radial-gradient(
    ellipse max(620px, 48vw) max(540px, 42vh) at var(--hero-glow-x, 88%) var(--hero-glow-y, 52%),
    rgba(236, 220, 180, 0.22),
    transparent 62%
  );
}

@media (max-width: 900px) {
  .hero--tall::before {
    background-image:
      linear-gradient(
        180deg,
        rgba(5, 5, 8, 0.97) 0%,
        rgba(5, 6, 10, 0.88) 42%,
        rgba(10, 12, 20, 0.35) 100%
      ),
      url("https://images.unsplash.com/photo-1511632765486-a01980e01a18?q=80&w=1920&auto=format&fit=crop");
    background-position: center, 70% center;
    background-size: auto, cover;
  }

  .hero--tall::after {
    mix-blend-mode: soft-light;
    opacity: 0.38;
  }
}

.hero--compact::before {
  background:
    radial-gradient(ellipse 420px 420px at 10% 10%, rgba(181, 138, 42, 0.08), transparent 60%),
    radial-gradient(circle 360px at 90% 10%, rgba(201, 162, 74, 0.06), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, #f8f8f8 100%);
}

.hero--compact::after {
  display: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
}

.hero-inner .hero-lead{
  font-size:1rem;
}

.hero-inner .hero-lead{}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.72rem;
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin: 0 0 1rem;
  background: rgba(196, 163, 90, 0.09);
  border: 1px solid var(--hairline);
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 4.8vw, 3.25rem);
  line-height: 1.06;
  color: var(--cream);
  margin: 0 0 1.25rem;
  max-width: 22ch;
  letter-spacing: -0.02em;
}

.hero--compact h1 {
  max-width: none;
}

.hero-lead {
  font-size: clamp(1rem, 1.85vw, 1.08rem);
  color: var(--text-body);
  max-width: 58ch;
  margin: 0 0 1.85rem;
  line-height: 1.75;
}

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

/* Main sections */
.section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.45s ease;
  background:
    radial-gradient(
      ellipse max(640px, 70%) max(460px, 55%) at var(--sx) var(--sy),
      rgba(196, 163, 90, 0.065),
      transparent 58%
    ),
    radial-gradient(
      ellipse max(540px, 58%) max(380px, 48%) at var(--sx) var(--sy),
      rgba(154, 132, 198, 0.055),
      transparent 54%
    );
}

.section.pointer-active::before {
  opacity: 1;
}

.section > .container {
  position: relative;
  z-index: 1;
}

main {
  display: block;
}


.section {
  position: relative;
  padding: clamp(3rem, 6vw, 4.5rem) 1.35rem;
  border-top: 1px solid var(--hairline-faint);
  overflow: hidden;
}

.section--alt {
  background:
    radial-gradient(ellipse 80% 65% at 100% -10%, rgba(154, 132, 198, 0.1), transparent 48%),
    radial-gradient(ellipse 70% 55% at 0% 100%, rgba(45, 70, 120, 0.12), transparent 50%);
}

.section--dark {
  background:
    linear-gradient(180deg, rgba(15, 22, 40, 0.55), transparent 40%),
    radial-gradient(ellipse 70% 50% at 0% 50%, rgba(154, 132, 198, 0.06), transparent 50%);
  color: var(--cream);
}

.section--dark .section-label {
  color: var(--gold-light);
  opacity: 0.92;
}

.section--dark .section-intro,
.section--dark .section-intro--on-dark {
  color: var(--text-body);
}

.section--dark h2,
.section--dark h3 {
  color: var(--cream);
}

.section--dark .card h3 {
  color: var(--cream);
}

.section--dark .check-list li,
.section--dark .bullet-list li {
  color: var(--text-body);
}

.section-header {
  margin-bottom: 1.75rem;
}

.section-label {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin: 0 0 0.65rem;
  padding: 0.38rem 0.75rem;
  border-radius: 999px;
  background: rgba(196, 163, 90, 0.08);
  border: 1px solid var(--hairline);
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.72rem, 3.4vw, 2.42rem);
  font-weight: 600;
  margin: 0;
  letter-spacing: -0.02em;
  color: var(--cream);
}

.section-header h2 em,
.section-intro em {
  color: var(--gold-light);
  font-style: italic;
  font-weight: 500;
}

.section-intro {
  font-size: 1.02rem;
  color: var(--text-body);
  max-width: 65ch;
  margin: 0 0 1.65rem;
  line-height: 1.8;
}

.section-intro--on-dark {
  margin: 0 0 1rem;
}

/* Cards & grids */
.grid-2 {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-3 {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card {
  background: linear-gradient(165deg, var(--surface), var(--surface2));
  border: 1px solid var(--hairline-faint);
  border-radius: var(--radius);
  padding: 1.55rem 1.5rem;
  box-shadow: var(--shadow);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease;
}

.card:hover {
  border-color: var(--hairline);
  transform: translateY(-2px);
}

.card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(196, 163, 90, 0.12);
  border: 1px solid var(--hairline);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.card h3 {
  font-family: var(--font-display);
  font-size: 1.28rem;
  margin: 0 0 0.55rem;
  color: var(--cream);
}

.card p {
  margin: 0;
  color: var(--text-body);
  font-size: 0.98rem !important;
  line-height: 1.7;
}

.mv-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.mv-card {
  background: linear-gradient(165deg, var(--surface), var(--surface2));
  border-radius: var(--radius);
  padding: 1.6rem;
  border: 1px solid var(--hairline-faint);
  /* border-top: 2px solid var(--gold-muted); */
  box-shadow: var(--shadow);
}

.mv-card h3 {
  font-family: var(--font-display);
  margin: 0 0 0.65rem;
  font-size: 1.32rem;
  color: var(--cream);
}

.mv-card p {
  margin: 0;
  color: var(--text-body);
}

/* Split & prose */
.split {
  display: grid;
  gap: 2rem;
  align-items: start;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.split--top {
  align-items: flex-start;
}

.prose p {
  margin: 0 0 1rem;
  color: var(--text-body);
  line-height: 1.82;
}

.prose p:last-child {
  margin-bottom: 0;
}

.section--dark .value-term {
  color: var(--cream);
}

/* Lists */
.check-list,
.bullet-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.bullet-list li {
  position: relative;
  padding-left: 1.55rem;
  margin-bottom: 0.6rem;
  color: var(--text-body);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(196, 163, 90, 0.12);
}

.bullet-list li::before {
  content: "âœ¦";
  position: absolute;
  left: 0;
  top: 0.15em;
  color: var(--violet);
  font-size: 0.72rem;
}

/* Stats strip */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.85rem;
  margin-top: 0;
}

.stat {
  text-align: center;
  padding: 1.25rem 0.85rem;
  background: rgba(255, 250, 235, 0.04);
  border-radius: var(--radius-sm);
  border: 1px solid var(--hairline-faint);
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--gold-light);
}

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

/* Board */
.person-card {
  background: linear-gradient(165deg, var(--surface), var(--surface2));
  border-radius: var(--radius);
  padding: 1.55rem;
  border: 1px solid var(--hairline-faint);
  box-shadow: var(--shadow);
}
.person-card img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #f0f0f0;
  margin-bottom: 1rem;
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.person-card .role {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--violet);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 0.35rem;
}

.person-card h3 {
  font-family: var(--font-display);
  margin: 0 0 0.85rem;
  font-size: 1.38rem;
  color: var(--cream);
}

.person-card .key-focus {
  font-size: 0.9rem;
  color: var(--text-body);
  margin: 0;
  padding-top: 0.85rem;
  border-top: 1px solid var(--hairline-faint);
}

.person-card .key-focus strong {
  color: var(--gold-light);
}

.placeholder-name {
  color: var(--muted);
  font-style: italic;
}

/* Tables */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--hairline-faint);
  box-shadow: var(--shadow);
}

table.budget {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  font-size: 0.95rem;
}

table.budget th,
table.budget td {
  padding: 1rem 1.2rem;
  text-align: left;
  border-bottom: 1px solid var(--hairline-faint);
}

table.budget th {
  background: var(--navy-mid);
  color: var(--cream);
  font-weight: 600;
  letter-spacing: 0.03em;
  font-family: var(--font-body);
  font-size: 0.75rem;
  text-transform: uppercase;
}

table.budget tr:last-child td {
  border-bottom: 0;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--gold-light);
  background: rgba(196, 163, 90, 0.08);
}

table.budget th:last-child {
  text-align: right;
}

table.budget td:last-child {
  text-align: right;
  font-variant-numeric: tabular-nums;
}

/* Forms */
.form-panel {
  background: linear-gradient(165deg, var(--surface), var(--surface2));
  border-radius: var(--radius);
  padding: clamp(1.55rem, 4vw, 2.25rem);
  border: 1px solid var(--hairline-faint);
  box-shadow: var(--shadow);
  max-width: 560px;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.82rem;
  margin-bottom: 0.35rem;
  color: var(--cream);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  font: inherit;
  background: rgba(255, 250, 235, 0.04);
  color: var(--cream);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--hairline);
  box-shadow: 0 0 0 3px rgba(154, 132, 198, 0.12);
}

.form-group input::placeholder {
  color: var(--muted);
}

.amount-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0.75rem;
}

.amount-chips label {
  cursor: pointer;
}

.amount-chips input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.amount-chips span {
  display: inline-block;
  padding: 0.42rem 0.82rem;
  border-radius: 999px;
  border: 1px solid var(--hairline-faint);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-body);
  transition:
    background 0.2s,
    border-color 0.2s;
}

.amount-chips input:focus-visible + span {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.amount-chips input:checked + span {
  background: rgba(196, 163, 90, 0.18);
  border-color: var(--hairline);
  color: var(--gold-light);
}

.form-group.payment{
  margin-top: .7rem;
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin: 1rem 0;
  color: var(--text-body);
  font-size: 0.92rem;
}

.checkbox-row input {
  margin-top: 0.38rem;
  width: auto;
  accent-color: var(--gold);
}

.impact-grid {
  display: grid;
  gap: 0.72rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.impact-item {
  background: linear-gradient(165deg, var(--surface), var(--surface2));
  padding: 1rem 1.1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--hairline-faint);
  font-size: 0.98rem;
  color: var(--text-body);
  line-height: 1.55;
}

.impact-item strong {
  color: var(--gold-light);
  display: block;
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.ways-grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(auto-fit, minmax(162px, 1fr));
}

.way-tile {
  padding: 1.2rem;
  background: linear-gradient(165deg, var(--surface), var(--surface2));
  border-radius: var(--radius-sm);
  border: 1px solid var(--hairline-faint);
  text-align: center;
}

.way-tile strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.38rem;
  color: var(--cream);
}

.way-tile span {
  font-size: 0.98rem;
  color: var(--muted);
}

/* CTA band */
.cta-band {
  position: relative;
  padding: clamp(2.85rem, 6vw, 4rem) 1.35rem;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
  background-color: var(--black);
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(140deg, rgba(20, 30, 54, 0.65), transparent 52%),
    radial-gradient(circle min(460px, 70vw) at 50% 120%, rgba(196, 163, 90, 0.12), transparent 55%);
  z-index: 0;
}

.cta-band h2,
.cta-band p,
.cta-actions {
  position: relative;
  z-index: 1;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 2rem);
  margin: 0 0 0.75rem;
  color: var(--cream);
}

.cta-band p {
  margin: 0 auto 1.65rem;
  max-width: 46ch;
  color: var(--text-body);
  line-height: 1.72;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
}

/* Contact block */
.contact-block {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 0.85rem;
}

.contact-item {
  padding: 1.25rem 1.35rem;
  background: linear-gradient(165deg, var(--surface), var(--surface2));
  border-radius: var(--radius-sm);
  border: 1px solid var(--hairline-faint);
  font-size: 0.94rem;
  color: var(--text-body);
  line-height: 1.55;
}

.contact-item strong {
  display: block;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-muted);
  margin-bottom: 0.45rem;
}

.contact-item a {
  font-weight: 600;
}

/* Footer */
.site-footer {
  padding: 2.5rem 1.35rem;
  border-top: 1px solid var(--hairline-faint);
  background:
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.55)),
    var(--black);
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: space-between;
  align-items: center;
}

.footer-tagline {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--gold-light);
  letter-spacing: 0.06em;
  margin: 0;
}

.footer-meta {
  font-size: 0.82rem;
  color: var(--muted);
}

.footer-meta a {
  color: var(--text-body);
}

.footer-meta a:hover {
  color: var(--gold-light);
}

.breadcrumb {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.85rem 1.35rem 0;
  font-size: 0.8rem;
  color: var(--muted);
}

.breadcrumb a {
  color: var(--muted);
}

.breadcrumb a:hover {
  color: var(--violet);
}

/* Mobile nav */
@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-primary {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: rgba(5, 7, 12, 0.97);
    border-bottom: 1px solid var(--hairline-faint);
    padding: 0.85rem 1.35rem 1.35rem;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition:
      transform 0.26s ease,
      opacity 0.26s ease;
  }

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

  .nav-primary ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0.15rem;
  }

  .nav-primary a {
    padding: 0.55rem 0;
    border-bottom: 1px solid var(--hairline-faint);
  }

  .nav-cta {
    margin-left: 0;
    margin-top: 0.85rem;
  }

  .nav-cta .btn {
    width: 100%;
  }
}

:root {
  --black: #ffffff;
  --ink: #ffffff;
  --surface: #ffffff;
  --surface2: #f7f7f7;

  --cream: #1b1b1b;
  --text-body: #444;
  --muted: #666;

  --gold: #b58a2a;
  --gold-light: #c9a24a;
  --gold-muted: #9b7a2e;

  --navy: #ffffff;
  --navy-mid: #f3f3f3;
  --navy-light: #ededed;

  --hairline: rgba(0,0,0,0.12);
  --hairline-faint: rgba(0,0,0,0.06);
  --line-soft: rgba(0,0,0,0.08);

  --shadow: 0 10px 30px rgba(0,0,0,0.08);
}