/* ============================================================
   AURELIS — Private Investment Club
   Design system: deep navy + gold, editorial luxury
   ============================================================ */

:root {
  --navy-900: #071c33;
  --navy-800: #0c2c50;
  --navy-700: #123a66;
  --navy-600: #1b4b82;
  --blue-500: #2f6db3;
  --blue-400: #5a8fc9;

  --gold: #c6a24a;
  --gold-light: #e2c47a;
  --gold-deep: #a9853a;

  --ink: #142230;
  --muted: #5d6b7b;
  --muted-light: #93a1b0;

  --line: #e0e6ee;
  --bg: #ffffff;
  --bg-soft: #f4f7fb;
  --card: #eef2f8;

  --container: 1180px;
  --radius: 18px;
  --radius-sm: 12px;

  --shadow-sm: 0 2px 10px rgba(12, 44, 80, .06);
  --shadow-md: 0 18px 50px rgba(12, 44, 80, .12);
  --shadow-lg: 0 40px 90px rgba(7, 28, 51, .28);

  --font-display: "Poppins", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.12; font-weight: 600; }
p { color: var(--muted); }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 26px; }
.section { padding: clamp(72px, 9vw, 128px) 0; }

/* ---------- Buttons ---------- */
.btn {
  --bw: 1.5px;
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5em;
  font-family: var(--font-display);
  font-weight: 500; font-size: 15px; letter-spacing: .01em;
  padding: 14px 30px;
  border-radius: 999px;
  border: var(--bw) solid transparent;
  cursor: pointer;
  transition: transform .3s var(--ease), background-color .3s var(--ease),
              color .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-sm { padding: 10px 20px; font-size: 14px; }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #35270d;
  box-shadow: 0 12px 30px rgba(198, 162, 74, .35);
}
.btn-gold:hover { box-shadow: 0 18px 40px rgba(198, 162, 74, .5); }

.btn-outline { border-color: var(--navy-700); color: var(--navy-800); background: transparent; }
.btn-outline:hover { background: var(--navy-800); color: #fff; border-color: var(--navy-800); }

.btn-outline-light { border-color: rgba(226, 196, 122, .8); color: var(--gold-light); background: transparent; }
.btn-outline-light:hover { background: var(--gold); color: #35270d; border-color: var(--gold); }

.btn-ghost { border-color: rgba(255, 255, 255, .55); color: #fff; background: rgba(255, 255, 255, .04); }
.btn-ghost:hover { background: #fff; color: var(--navy-800); border-color: #fff; }
.btn-light { border-color: rgba(255,255,255,.65); }

/* ---------- Shared typography bits ---------- */
.eyebrow {
  font-family: var(--font-display);
  text-transform: uppercase; letter-spacing: .28em;
  font-size: 12px; font-weight: 500;
  color: var(--gold-light);
  margin-bottom: 22px;
}
.tag {
  display: inline-block;
  font-family: var(--font-display); font-weight: 500;
  text-transform: uppercase; letter-spacing: .18em; font-size: 11px;
  color: var(--gold-light);
  margin-bottom: 14px;
}

/* Giant outlined section titles */
.outline-title {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: clamp(40px, 8vw, 96px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--navy-700);
  text-align: center;
  margin-bottom: clamp(32px, 5vw, 60px);
  opacity: .9;
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  padding: 18px 0;
  transition: background-color .4s var(--ease), box-shadow .4s var(--ease), padding .4s var(--ease);
}
.site-header.scrolled {
  background: rgba(9, 28, 51, .88);
  backdrop-filter: blur(14px);
  box-shadow: 0 6px 30px rgba(7, 28, 51, .3);
  padding: 12px 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand {
  font-family: var(--font-display); font-weight: 600;
  letter-spacing: .34em; font-size: 22px; color: #fff;
  padding-left: .34em; /* optical balance for tracking */
}
.nav-links { display: flex; gap: 30px; }
.nav-links a {
  font-family: var(--font-display); font-weight: 400; font-size: 15px;
  color: rgba(255, 255, 255, .88);
  position: relative; padding: 6px 0;
  transition: color .3s var(--ease);
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1.5px; width: 0;
  background: var(--gold); transition: width .3s var(--ease);
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 14px; }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span {
  display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.nav-toggle span + span { margin-top: 5px; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex; align-items: center;
  color: #fff;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 60% center; }
.hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(6, 22, 40, .96) 0%, rgba(7, 28, 51, .8) 34%, rgba(7, 28, 51, .28) 58%, rgba(7, 28, 51, .1) 100%);
}
.hero-content { position: relative; z-index: 1; padding-top: 90px; }
.hero-title {
  font-size: clamp(40px, 7vw, 78px);
  font-weight: 600; letter-spacing: -.01em;
  margin-bottom: 26px;
}
.hero-sub { color: rgba(255, 255, 255, .82); max-width: 30ch; font-size: 18px; margin-bottom: 38px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; }

/* ============================================================
   OPPORTUNITIES (intro)
   ============================================================ */
.opportunities-intro { padding-bottom: clamp(40px, 5vw, 64px); }
.section-head { text-align: center; }
.section-lead {
  max-width: 62ch; margin-inline: auto;
  color: var(--muted); font-size: 18px;
}

/* Featured (navy marble band) */
.featured { position: relative; padding: clamp(60px, 8vw, 110px) 0; color: #fff; overflow: hidden; }
.featured-bg { position: absolute; inset: 0; z-index: 0; }
.featured-bg img { width: 100%; height: 100%; object-fit: cover; }
.featured-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(9,28,51,.62), rgba(9,28,51,.78));
}
.featured .container { position: relative; z-index: 1; }

.featured-card {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
/* Bento mosaic of focus areas */
.featured-mosaic { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.mosaic-tile {
  position: relative; margin: 0;
  aspect-ratio: 1 / 1; border-radius: 14px; overflow: hidden;
  border: 1px solid rgba(226, 196, 122, .2);
  box-shadow: var(--shadow-md);
  /* staggered reveal */
  opacity: 0; transform: translateY(16px) scale(.97);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.featured-card.in .mosaic-tile { opacity: 1; transform: none; }
.featured-card.in .mosaic-tile:nth-child(1) { transition-delay: .05s; }
.featured-card.in .mosaic-tile:nth-child(2) { transition-delay: .16s; }
.featured-card.in .mosaic-tile:nth-child(3) { transition-delay: .27s; }
.featured-card.in .mosaic-tile:nth-child(4) { transition-delay: .38s; }
.mosaic-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.mosaic-tile:hover img { transform: scale(1.07); }
.mosaic-tile::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,20,38,0) 45%, rgba(6,20,38,.72));
}
.mosaic-tile figcaption {
  position: absolute; left: 13px; bottom: 11px; z-index: 1;
  font-family: var(--font-display); font-weight: 600; font-size: 12px;
  letter-spacing: .12em; text-transform: uppercase; color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,.6);
}
.featured-title {
  font-size: clamp(40px, 6vw, 68px); font-weight: 700; letter-spacing: .02em;
  margin-bottom: 20px;
}
.featured-body p { color: rgba(255, 255, 255, .82); margin-bottom: 28px; max-width: 46ch; }

/* The Aurelis Spectrum */
.spectrum { margin-top: clamp(56px, 7vw, 92px); }
.spectrum-head { text-align: center; max-width: 640px; margin: 0 auto clamp(34px, 4vw, 52px); }
.spectrum-head h3 { font-size: clamp(26px, 3.4vw, 40px); color: #fff; font-weight: 600; margin: 12px 0 12px; }
.spectrum-head p { color: rgba(255, 255, 255, .74); font-size: 17px; }
.spectrum-grid {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.spectrum-item {
  background: rgba(8, 24, 46, .55);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 16px; padding: 26px 22px;
  transition: transform .35s var(--ease), border-color .35s var(--ease), background-color .35s var(--ease);
  /* staggered reveal */
  opacity: 0; transform: translateY(20px);
}
.spectrum-grid.in .spectrum-item { opacity: 1; transform: none; transition: opacity .55s var(--ease), transform .55s var(--ease); }
.spectrum-grid.in .spectrum-item:nth-child(1) { transition-delay: .04s; }
.spectrum-grid.in .spectrum-item:nth-child(2) { transition-delay: .12s; }
.spectrum-grid.in .spectrum-item:nth-child(3) { transition-delay: .20s; }
.spectrum-grid.in .spectrum-item:nth-child(4) { transition-delay: .28s; }
.spectrum-grid.in .spectrum-item:nth-child(5) { transition-delay: .36s; }
.spectrum-grid.in .spectrum-item:nth-child(6) { transition-delay: .44s; }
.spectrum-grid.in .spectrum-item:nth-child(7) { transition-delay: .52s; }
.spectrum-grid.in .spectrum-item:nth-child(8) { transition-delay: .60s; }
.spectrum-item:hover { transform: translateY(-4px); border-color: rgba(226, 196, 122, .5); background: rgba(255, 255, 255, .06); }
.spectrum-icon {
  display: grid; place-items: center; width: 46px; height: 46px;
  border-radius: 12px; color: var(--gold-light);
  background: rgba(226, 196, 122, .1); border: 1px solid rgba(226, 196, 122, .28);
  margin-bottom: 16px;
}
.spectrum-icon svg { width: 24px; height: 24px; }
.spectrum-item h4 { color: #fff; font-size: 17px; font-weight: 600; margin-bottom: 6px; }
.spectrum-item p { color: rgba(255, 255, 255, .86); font-size: 14px; line-height: 1.58; margin: 6px 0 0; }

/* ============================================================
   RECOMMEND CTA
   ============================================================ */
.recommend { background: var(--bg-soft); text-align: center; }
.recommend-inner { max-width: 720px; margin-inline: auto; }
.recommend h2 { font-size: clamp(26px, 3.4vw, 38px); color: var(--navy-800); font-weight: 600; margin-bottom: 14px; }
.recommend p { font-size: 18px; margin-bottom: 30px; }

/* ============================================================
   AURELIS CLUB BAND
   ============================================================ */
.club { position: relative; color: #fff; padding: clamp(120px, 20vw, 240px) 0; overflow: hidden; }
.club-bg { position: absolute; inset: 0; z-index: 0; }
.club-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 46%; }
.club-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(6,20,38,.9) 0%, rgba(6,20,38,.72) 38%, rgba(6,20,38,.34) 64%, rgba(6,20,38,.05) 100%),
    linear-gradient(180deg, rgba(6,20,38,.28) 0%, rgba(6,20,38,0) 45%);
}
.club-content { position: relative; z-index: 1; max-width: 560px; }
.club-title {
  font-size: clamp(40px, 7vw, 82px); font-weight: 700; letter-spacing: .04em;
  margin-bottom: 22px; text-transform: uppercase;
}
.club-title span { color: transparent; -webkit-text-stroke: 1.4px var(--gold-light); }
.club-content p { color: rgba(255, 255, 255, .85); font-size: 18px; margin-bottom: 34px; }
.club-cta { display: flex; flex-wrap: wrap; gap: 16px; }

/* ============================================================
   PARTNERSHIP
   ============================================================ */
.partnership .outline-title { text-align: left; }
.partnership-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(30px, 5vw, 70px);
  align-items: center;
}
.partnership-copy h3 {
  font-size: clamp(34px, 5vw, 56px); font-weight: 600; color: var(--navy-800);
  margin-bottom: 20px;
}
.lead-strong { font-family: var(--font-display); font-weight: 600; color: var(--ink); font-size: 18px; margin-bottom: 10px; }
.partnership-copy p { margin-bottom: 24px; max-width: 48ch; }
.partnership-copy .btn { margin-top: 6px; }
.partnership-media {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-md);
  background: linear-gradient(180deg, #eef3fa, #dfe8f4);
}
.partnership-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 18%; }

/* ============================================================
   PARTNERSHIP PROGRAM
   ============================================================ */
.program { background: var(--bg-soft); }
.program-title { text-align: center; font-size: clamp(28px, 4vw, 46px); color: var(--navy-800); font-weight: 600; margin-bottom: 40px; }
.program-banner {
  border-radius: var(--radius); overflow: hidden;
  margin-bottom: 40px; box-shadow: var(--shadow-sm);
  background: #fff;
}
.program-banner img { width: 100%; height: clamp(180px, 26vw, 320px); object-fit: cover; object-position: center 42%; }
.program-intro { text-align: center; max-width: 66ch; margin: 0 auto clamp(44px, 6vw, 68px); font-size: 18px; }

.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 42px 34px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(198,162,74,.4); }
.card-icon {
  width: 76px; height: 76px; margin: 0 auto 24px;
  display: grid; place-items: center;
  border-radius: 50%;
  color: var(--navy-700);
  background: radial-gradient(circle at 30% 25%, #eaf1fb, #dbe6f4);
}
.card-icon svg { width: 40px; height: 40px; stroke-linecap: round; stroke-linejoin: round; }
.card h4 { font-size: 24px; font-weight: 600; color: var(--navy-800); margin-bottom: 14px; }
.card p { font-size: 16px; }

/* ============================================================
   Q&A
   ============================================================ */
.qa-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(28px, 5vw, 56px); align-items: start; }
.qa-list { display: flex; flex-direction: column; gap: 14px; }
.qa-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  overflow: hidden;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.qa-item[open] { border-color: transparent; box-shadow: var(--shadow-sm); }
.qa-item summary {
  list-style: none; cursor: pointer;
  padding: 20px 24px;
  font-family: var(--font-display); font-weight: 500; font-size: 17px;
  color: var(--navy-800);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  transition: background-color .3s var(--ease), color .3s var(--ease);
}
.qa-item summary::-webkit-details-marker { display: none; }
.qa-item summary::after {
  content: "+"; font-size: 22px; font-weight: 400; color: var(--gold);
  transition: transform .3s var(--ease);
  line-height: 1;
}
.qa-item[open] summary {
  background: linear-gradient(120deg, var(--navy-800), var(--navy-600));
  color: #fff;
}
.qa-item[open] summary::after { content: "–"; color: var(--gold-light); }
.qa-answer {
  padding: 4px 24px 24px;
  animation: qa-fade .4s var(--ease);
}
.qa-item[open] .qa-answer { background: linear-gradient(180deg, rgba(18,58,102,.05), transparent); }
.qa-answer p { color: var(--muted); font-size: 16px; margin: 0; }
@keyframes qa-fade { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

.qa-media {
  border-radius: var(--radius); overflow: hidden;
  position: sticky; top: 100px;
  box-shadow: var(--shadow-md);
  aspect-ratio: 3 / 4;
}
.qa-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: linear-gradient(180deg, #dfe4ea, #cfd6df); color: var(--navy-800); padding: 60px 0 44px; }
.footer-inner { text-align: center; }
.footer-links { display: flex; align-items: center; justify-content: center; gap: 14px; font-size: 14px; margin-bottom: 26px; color: var(--muted); }
.footer-links a { transition: color .3s var(--ease); }
.footer-links a:hover { color: var(--navy-800); }
.footer-brand {
  font-family: var(--font-display); font-weight: 700; letter-spacing: .3em;
  font-size: 30px; color: var(--navy-800); padding-left: .3em; margin-bottom: 22px;
}
.footer-legal { max-width: 74ch; margin: 0 auto 18px; font-size: 12.5px; line-height: 1.7; color: #6a7686; }
.footer-copy { font-size: 12.5px; color: #7c8794; }

/* ============================================================
   Scroll reveal
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .mosaic-tile, .spectrum-item { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .btn:hover, .card:hover, .tile:hover { transform: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .featured-card { grid-template-columns: 1fr; }
  .featured-mosaic { order: -1; max-width: 520px; margin-inline: auto; }
  .spectrum-grid { grid-template-columns: repeat(2, 1fr); }
  .partnership-grid { grid-template-columns: 1fr; }
  .partnership-media { max-height: 460px; }
  .qa-grid { grid-template-columns: 1fr; }
  .qa-media { position: relative; top: 0; aspect-ratio: 16 / 10; order: -1; }
  .cards-3 { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  /* Mobile-first rhythm: tighter, comfortable spacing on phones */
  .section { padding: 62px 0; }
  .featured { padding: 62px 0; }
  .hero-content { padding-top: 76px; }
  .hero-sub { font-size: 17px; }
  .outline-title { margin-bottom: 30px; }
  .featured-body p, .partnership-copy p, .section-lead, .recommend p,
  .club-content p, .program-intro { font-size: 16.5px; }
  .partnership-media { max-height: 520px; }
  .partnership-media img { object-position: center 12%; }
  .qa-media { aspect-ratio: 4 / 3; }
  .qa-media img { object-position: center 18%; }
  .club { padding: 96px 0; }
  .nav-links {
    position: fixed; inset: 0 0 0 auto; width: min(78vw, 320px);
    flex-direction: column; gap: 8px;
    background: rgba(9, 28, 51, .97); backdrop-filter: blur(16px);
    padding: 100px 32px 32px;
    transform: translateX(100%); transition: transform .4s var(--ease);
    box-shadow: -20px 0 60px rgba(0,0,0,.4);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 19px; padding: 10px 0; }
  .nav-toggle { display: block; z-index: 101; }
  .nav-actions .btn-sm { display: none; }
  .hero { min-height: 84vh; }
  .hero-media img { object-position: center; }
  /* Club band: show the boat on the right, darken uniformly so text reads */
  .club-bg img { object-position: 68% 42%; }
  .club-scrim { background: linear-gradient(180deg, rgba(6,20,38,.5) 0%, rgba(6,20,38,.8) 100%); }
  .club-content { max-width: 100%; }
}

@media (max-width: 420px) {
  .container { padding-inline: 20px; }
  .hero-cta, .club-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn, .club-cta .btn { width: 100%; }
}


/* ---------- Cookie banner ---------- */
.cookie-banner{
  position:fixed; left:50%; bottom:18px; transform:translate(-50%,150%);
  width:min(920px, calc(100% - 32px)); z-index:1000;
  display:flex; align-items:center; gap:18px; flex-wrap:wrap;
  background:var(--navy-900); color:#cdd8e6;
  border:1px solid rgba(198,162,74,.35); border-radius:14px;
  padding:16px 20px; box-shadow:0 18px 50px rgba(0,0,0,.4);
  transition:transform .35s ease, opacity .35s ease; opacity:0;
}
.cookie-banner.show{ transform:translate(-50%,0); opacity:1; }
.cookie-text{ margin:0; flex:1 1 320px; font-size:13.5px; line-height:1.55; color:#cdd8e6; }
.cookie-text a{ color:var(--gold-light); text-decoration:underline; text-underline-offset:2px; }
.cookie-actions{ display:flex; gap:10px; align-items:center; flex:none; }
.cookie-actions .cookie-link{ color:#cdd8e6; }
@media (max-width:560px){
  .cookie-banner{ bottom:0; left:0; transform:translateY(150%); width:100%; border-radius:14px 14px 0 0; }
  .cookie-banner.show{ transform:translateY(0); }
  .cookie-actions{ width:100%; }
  .cookie-actions .btn{ flex:1; text-align:center; }
}


/* ---------- Spectrum cards: hide descriptions until hover (mouse devices); always visible on touch ---------- */
@media (hover: hover) and (pointer: fine){
  .spectrum-grid{ align-items: start; }
  .spectrum-item p{
    opacity:0; max-height:0; margin-top:0; overflow:hidden;
    transition: opacity .3s var(--ease), max-height .4s var(--ease), margin-top .3s var(--ease), color .3s var(--ease);
  }
  .spectrum-item:hover p, .spectrum-item:focus-within p{
    opacity:1; max-height:360px; margin-top:8px; color:rgba(255,255,255,.96);
  }
  .spectrum-item:hover{ background:rgba(8,24,46,.92); border-color:rgba(226,196,122,.55); }
}
/* Spectrum: single column on small phones for readability */
@media (max-width: 560px){
  .spectrum-grid{ grid-template-columns: 1fr; }
}
