/* =========================================================
   ENCORE ENTERTAINMENT GROUP — LIGHT THEME
   ========================================================= */

/* --- Tokens --- */
:root {
  --bg:        #FAF8F5;
  --bg-mid:    #F0EAE1;
  --bg-dark:   #1C1917;
  --text:      #1C1917;
  --muted:     #7A726A;
  --accent:    #C8521A;
  --accent-lt: #F2E4DA;
  --border:    #DDD7CF;
  --card-bg:   #FFFFFF;
  --cream:     #C8521A;   /* repurposed as accent for button borders */
  --white:     #FAF8F5;

  --font-mono: 'IBM Plex Mono', monospace;
  --font-body: 'Inter', sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;

  --nav-h: 72px;
  --max-w: 1200px;
  --gutter: clamp(1.25rem, 5vw, 3rem);

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 0.6s;

  --shadow-sm: 0 2px 8px rgba(28,25,23,0.07);
  --shadow-md: 0 4px 24px rgba(28,25,23,0.10);
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; background: none; border: none; font: inherit; color: inherit; }

/* --- Typography --- */
h1, h2, h3 { line-height: 1.15; }

h1 {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 6vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
}

h3 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
}

p { color: var(--text); }

.lead {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.8;
  color: var(--muted);
}

/* Section tags */
.section-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.section-tag + h2 {
  margin-bottom: 1.25rem;
}

.section-tag + h2 + .lead,
.section-tag + h2 + p {
  margin-top: 1.25rem;
}

/* --- Layout helpers --- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.mt-md  { margin-top: 1.5rem; }
.mt-lg  { margin-top: 2.5rem; }
.mb-lg  { margin-bottom: 2.5rem; }

/* --- Sections --- */
.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
  position: relative;
  z-index: 2;
}

.section--light { background: rgba(250,248,245,0.82); }
.section--mid   { background: rgba(240,234,225,0.84); }
.section--dark  {
  background: var(--bg-dark);
  color: #F4F4F2;
}
.section--dark h2,
.section--dark h3,
.section--dark p,
.section--dark .lead { color: #E8E4DC; }
.section--dark .muted { color: #A8A8A8; }
.section--dark .section-tag { color: #E8E4DC; opacity: 0.6; }

/* --- Floating circles --- */
.float-circles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  overflow: visible;
}

.float-circle {
  position: absolute;
  border-radius: 50%;
  overflow: hidden;
  opacity: 1;
  will-change: transform, opacity;
}

.float-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.float-circle .fc-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  padding: 1rem;
}

/* --- Nav --- */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 200;
  background: rgba(250,248,245,0.90);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: var(--max-w);
  height: 100%;
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-wordmark {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1.26rem;
  letter-spacing: 0.12em;
  color: var(--text);
  flex-shrink: 0;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: auto;
  list-style: none;
  white-space: nowrap;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }

.nav-links a.nav-cta {
  border: 1.5px solid var(--text);
  padding: 0.35rem 0.85rem;
  color: var(--text);
  font-size: 0.8rem;
  font-family: var(--font-mono);
  letter-spacing: 0.06em;
  transition: background 0.2s, color 0.2s;
}
.nav-links a.nav-cta:hover {
  background: var(--text);
  color: var(--bg);
}

.nav-links a.nav-cta--active {
  background: var(--text);
  color: var(--bg);
}
.nav-links a.nav-cta--active:hover {
  background: var(--text);
  color: var(--accent);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* --- Mobile menu --- */
.mobile-menu {
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem var(--gutter);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  z-index: 99;
  transform: translateY(-110%);
  transition: transform 0.35s var(--ease-out);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--muted);
}
.mobile-menu a:hover { color: var(--text); }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1.5px solid var(--text);
  color: var(--text);
  background: transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.btn:hover {
  background: var(--text);
  color: var(--bg);
}

.btn--cream {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}
.btn--cream:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.btn--accent {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn--accent:hover { opacity: 0.88; }

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

/* --- Hero --- */
.hero {
  min-height: 100svh;
  padding-top: var(--nav-h);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
  overflow: hidden;
  background: rgba(250,248,245,0.82);
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.06;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 4rem var(--gutter) 6rem;
  display: grid;
  grid-template-columns: 1fr 220px;
  grid-template-rows: auto auto auto;
  grid-template-areas:
    "wordmark aside"
    "sub      aside"
    "buttons  aside";
  column-gap: 3rem;
  row-gap: 0;
  align-items: start;
}

.hero-wordmark { grid-area: wordmark; }
.hero-sub      { grid-area: sub; margin-top: 0.25rem; }
.hero-btns     { grid-area: buttons; }
.hero-aside    { grid-area: aside; align-self: start; }

.hero-left { max-width: 700px; }

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.hero-wordmark {
  font-family: var(--font-mono);
  font-size: clamp(4.5rem, 16vw, 13rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: 0.04em;
  color: var(--text);
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}

.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  line-height: 1.6;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 2.5rem;
}

.hero-aside--mobile { display: none; }

.hero-aside {
  font-family: var(--font-body);
  font-size: 0.88rem;
  line-height: 1.8;
  color: var(--muted);
  max-width: 240px;
  border-left: 2px solid var(--border);
  padding-left: 1.25rem;
  /* Fluid offset so aside cap-tops align with ENCORE cap-tops.
     IBM Plex Mono 700 at line-height:0.9 puts caps ~0.17em below the
     element box top; Inter at line-height:1.8 puts caps ~0.46rem below.
     Net: push aside down by (0.17 × wordmark-size − 0.46rem). */
  padding-top: calc(0.17 * clamp(4.5rem, 16vw, 13rem) - 0.46rem);
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: var(--gutter);
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  writing-mode: vertical-rl;
  opacity: 0.5;
}

/* --- Opportunity --- */
.opp-headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.75rem);
  font-weight: 700;
  font-style: italic;
  line-height: 1.15;
  max-width: 900px;
  margin-top: 0.5rem;
  color: var(--text);
}

.opp-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.opp-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.opp-card-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--accent-lt);
  line-height: 1;
  margin-bottom: 1.25rem;
}

.opp-card-icon { margin-bottom: 1rem; }
.opp-card-icon svg path,
.opp-card-icon svg polyline,
.opp-card-icon svg circle,
.opp-card-icon svg rect,
.opp-card-icon svg line { stroke: var(--text) !important; }

.opp-card-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.6rem;
  font-family: var(--font-body);
}

.opp-card-body {
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--muted);
}

/* --- Photo placeholder (event imagery) --- */
.event-photo-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

.event-photo-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--bg-mid);
  border: 1px solid var(--border);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.event-photo-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- Definition / Enriching section --- */
.definition-section {
  overflow: hidden;
}

.definition-photo {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: 4px;
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}

.definition-photo-fallback {
  width: 100%;
  height: 360px;
  background: var(--bg-mid);
  border: 1px solid var(--border);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2.5rem;
}

.definition-body .lead {
  max-width: 720px;
}

/* --- Platform --- */
.platform-section { overflow: hidden; }
.platform-statement {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.85;
  color: var(--muted);
  max-width: 800px;
  margin-top: 1.25rem;
}

.hero-canvas {
  opacity: 0.7;
}

/* --- Phase grid / cards --- */
.phase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.phase-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}

.section--dark .phase-card {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.1);
  box-shadow: none;
}

.phase-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.section--dark .phase-label { color: rgba(232,228,220,0.6); }

.phase-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  margin: 0.5rem 0;
}

.phase-detail {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--muted);
}

/* --- Portfolio / business list --- */
.fit-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
}

.fit-item {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: var(--muted);
  padding: 0.4rem 0.75rem;
  border: 1px solid var(--border);
  display: inline-block;
  width: fit-content;
}

/* Business cards grid */
.business-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
  max-width: var(--max-w);
  margin: 2rem auto 0;
  padding: 0 var(--gutter);
}

a.business-card {
  text-decoration: none;
  color: inherit;
}

.business-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.18s ease, transform 0.18s ease;
}

a.business-card:hover .business-card-name {
  text-decoration: underline;
}

a.business-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.10);
  transform: translateY(-2px);
}

.business-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.business-card-img-fallback {
  width: 100%;
  height: 180px;
  background: var(--bg-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.business-card-body {
  padding: 1.25rem 1.25rem 0.75rem;
  flex: 1;
}

.business-card-name {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
  color: var(--text);
}

.business-card-desc {
  font-size: 0.82rem;
  line-height: 1.65;
  color: var(--muted);
}

.business-card-meta {
  padding: 0.75rem 1.25rem 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.business-card-meta span {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.25rem 0.5rem;
  border: 1px solid var(--border);
  color: var(--muted);
}

/* --- Dual path (aligned incentives) --- */
.dual-path {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

.path-panel {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2.25rem 2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
}

.path-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.path-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  font-style: italic;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.path-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.path-list li {
  font-size: 0.88rem;
  color: var(--muted);
  padding-left: 1rem;
  position: relative;
}

.path-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.75rem;
}

/* --- Impact --- */
.section--dark .lead {
  max-width: 800px;
}

.impact-statement {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-style: italic;
  line-height: 1.25;
  max-width: 720px;
  margin-top: 0.5rem;
}

.impact-diagram {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.impact-box {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 4px;
  padding: 1.25rem 1.75rem;
  min-width: 160px;
  text-align: center;
}

.impact-box-title {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #E8E4DC;
}

.impact-box-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.impact-arrow-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}

.impact-arrow-svg { width: 48px; height: auto; }

.impact-arrow-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #A8A8A8;
  line-height: 1.5;
}

.impact-level-tag {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #A8A8A8;
}

.impact-level-orb {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

/* --- About / leadership --- */
.about-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  align-items: start;
}

.about-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid var(--border);
}

.about-photo-fallback {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--bg-mid);
  border: 1px solid var(--border);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.about-name {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.about-bio {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--muted);
  margin-top: 0.75rem;
}

.about-pull-quote {
  margin-top: 1.5rem;
  padding-left: 1.25rem;
  border-left: 3px solid var(--accent);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.55;
  color: var(--text);
}

/* --- Image mosaic strip (event photos) --- */
.event-strip {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: 0 var(--gutter) 1rem;
  scrollbar-width: none;
}
.event-strip::-webkit-scrollbar { display: none; }

.event-strip-item {
  flex-shrink: 0;
  width: 260px;
  height: 200px;
  border-radius: 4px;
  background: var(--bg-mid);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.event-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- Inner hero (subpages) --- */
.inner-hero {
  padding-top: calc(var(--nav-h) + 4rem);
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--border);
}

.inner-hero h1 {
  margin-top: 1rem;
  font-style: italic;
}

.breadcrumb {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.breadcrumb a { color: var(--accent); }
.breadcrumb a:hover { text-decoration: underline; }

/* --- Grid 3 --- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

/* --- Offer / financing terms --- */
.alloc-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.alloc-table th {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: left;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}
.alloc-table td {
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.td-mono { font-family: var(--font-mono); font-size: 0.85rem; }
.alloc-bar-cell { width: 40%; }
.alloc-bar-outer {
  width: 100%;
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
}
.alloc-bar-inner {
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
}

/* --- Timeline / SVG --- */
.timeline-wrap { margin-top: 2.5rem; overflow-x: auto; }
.timeline-svg { width: 100%; min-width: 640px; display: block; }

/* --- CTA section --- */
.cta-section {
  padding: clamp(4rem, 8vw, 7rem) 0;
  text-align: center;
  background: var(--bg-dark);
  color: #F4F4F2;
}
.cta-section h2 {
  color: #F4F4F2;
  font-style: italic;
  margin-top: 0.5rem;
}
.cta-section .lead { color: #A8A8A8; max-width: 540px; margin: 1rem auto 0; }
.cta-section .btn { border-color: #E8E4DC; color: #E8E4DC; }
.cta-section .btn:hover { background: #E8E4DC; color: var(--bg-dark); }
.cta-section .btn-group { justify-content: center; }

/* --- Disclosure --- */
.disclosure {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.disclosure p {
  font-size: 0.72rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.3);
  max-width: 720px;
  margin: 0 auto;
}

/* --- Footer --- */
.site-footer {
  background: var(--bg);
  color: var(--muted);
  padding: 3rem 0 2rem;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.5rem;
}

.footer-wordmark {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.2em;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.6;
  max-width: 380px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  align-items: flex-end;
}

.footer-links a {
  font-size: 0.82rem;
  color: var(--muted);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--text); }

.footer-bottom {
  max-width: 450px;
}

.footer-legal {
  font-size: 0.72rem;
  color: var(--muted);
  opacity: 0.6;
  line-height: 1.6;
}

.footer-contact a {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--muted);
  transition: color 0.2s;
}
.footer-contact a:hover { color: var(--text); }

/* --- Protection list --- */
.protection-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}
.protection-list li {
  padding-left: 1.25rem;
  border-left: 2px solid var(--border);
}
.protection-list p { font-size: 0.92rem; line-height: 1.7; color: var(--muted); }
.protection-list strong { color: var(--text); }

/* --- Reveal animations --- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* --- Text utilities --- */
.text-accent { color: var(--accent); }
.text-cream  { color: var(--text); font-weight: 600; }

/* --- Responsive --- */
@media (max-width: 960px) {
  .hero-content {
    display: flex;
    flex-direction: column;
  }
  .hero-aside--desktop { display: none; }
  .hero-aside--mobile {
    display: block;
    max-width: 100%;
    border-left: none;
    padding-left: 0;
    padding-top: 0;
    margin-top: 0.5rem;
    margin-bottom: 0;
    order: 3;
  }
  .hero-wordmark { order: 1; }
  .hero-sub { order: 2; }
  .hero-btns { order: 4; }
  .hero-sub { white-space: normal !important; }
  .opp-cards { grid-template-columns: 1fr; }
  .phase-grid { grid-template-columns: 1fr; }
  .dual-path  { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .grid-3     { grid-template-columns: 1fr; }
}

@media (max-width: 1100px) {
  .nav-inner { gap: 1rem; }
  .nav-links { gap: 1rem; }
  .nav-links a { font-size: 0.78rem; }
  .nav-links a.nav-cta { font-size: 0.72rem; padding: 0.3rem 0.6rem; }
  .nav-wordmark { font-size: 1rem; letter-spacing: 0.08em; }
}

@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}

@media (max-width: 768px) {
  .float-circle { opacity: 1; }
}

@media (max-width: 480px) {
  .hero-wordmark { font-size: clamp(3rem, 16vw, 5rem); }
  .float-circles { display: none; }
}
