/*
Theme Name: Matteen Luminous
Theme URI: https://matteen.com
Author: Matteen Labs
Author URI: https://matteen.com
Description: Official theme for Matteen.com — Luminous palette, Oswald / Cormorant Garamond / Inter type stack. Matches the June 17, 2026 design mockups exactly.
Version: 1.0.5
License: Private — all rights reserved
Text Domain: matteen
*/

/* ==========================================================================
   DESIGN TOKENS
   ========================================================================== */

:root {
  /* Luminous palette */
  --bg:         #eef2f6;
  --surface:    #ffffff;
  --surface-2:  #f7f9fb;
  --ink:        #16212e;
  --muted:      #4c5663;
  --muted-dark: #39414e;
  --line:       rgba(22, 33, 46, .12);

  /* Accent — primary */
  --gold:       #efb02a;
  --gold-deep:  #b9831a;
  --gold-hover: #f6bd45;

  /* Accent — secondary */
  --teal:       #17a2c0;
  --teal-deep:  #0e7790;
  --teal-hover: #1cb6d6;

  /* Type stacks */
  --display: 'Oswald', sans-serif;
  --serif:   'Cormorant Garamond', Georgia, serif;
  --ui:      'Inter', system-ui, sans-serif;

  /* Grid */
  --wrap:      920px;
  --wrap-wide: 960px;
  --wrap-mid:  760px;
  --wrap-sm:   720px;
}


/* ==========================================================================
   RESET & BASE
   ========================================================================== */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  font-family: var(--ui);
  font-size: 16px;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video, iframe { max-width: 100%; display: block; }
a { color: inherit; }


/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--serif);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.08;
}

h1 { font-size: clamp(40px, 6.4vw, 76px); }
h2 { font-size: clamp(26px, 3.4vw, 38px); }
h3 { font-size: 22px; }
h4 { font-size: 20px; }

p {
  line-height: 1.75;
  color: var(--muted);
}

.kicker {
  font-family: var(--display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .28em;
  font-size: 12px;
  color: var(--teal-deep);
  display: block;
}

.lead {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(22px, 2.8vw, 30px);
  color: var(--ink);
  line-height: 1.45;
}


/* ==========================================================================
   LAYOUT UTILITIES
   ========================================================================== */

.wrap       { max-width: var(--wrap);      margin: 0 auto; padding: 0 40px; }
.wrap-wide  { max-width: var(--wrap-wide); margin: 0 auto; padding: 0 40px; }
.wrap-mid   { max-width: var(--wrap-mid);  margin: 0 auto; padding: 0 40px; }
.wrap-sm    { max-width: var(--wrap-sm);   margin: 0 auto; padding: 0 40px; }

.center { text-align: center; }

.band { padding: 74px 0; }

/* Grid backgrounds */
.grid-bg {
  background-image:
    linear-gradient(rgba(22, 33, 46, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22, 33, 46, .045) 1px, transparent 1px);
  background-size: 60px 60px;
}


/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .10em;
  font-size: 14px;
  border: none;
  border-radius: 999px;
  padding: 15px 30px;
  cursor: pointer;
  text-decoration: none;
  transition: background .18s, transform .18s;
  line-height: 1;
}

.btn:hover {
  background: var(--gold-hover);
  transform: translateY(-1px);
}

.btn.ghost {
  background: transparent;
  border: 1.5px solid var(--ink);
  color: var(--ink);
}

.btn.ghost:hover {
  background: rgba(22, 33, 46, .06);
  transform: translateY(-1px);
}

.btn.teal {
  background: var(--teal);
  color: #fff;
}

.btn.teal:hover {
  background: var(--teal-hover);
  transform: translateY(-1px);
}

.btn.sm {
  padding: 11px 20px;
  font-size: 12px;
}

.btn.light {
  background: var(--gold);
  color: var(--ink);
}

/* CTA row */
.cta-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
  margin-bottom:20px;
}

.hero .note{margin-top:25px;font-size:13px;color:var(--muted);font-family:var(--ui)}
.dots{display:flex;gap:7px;justify-content:center;margin-top:30px}
.dots i{width:7px;height:7px;border-radius:50%;background:var(--line)}.dots i.on{background:var(--gold)}

/* ==========================================================================
   HEXAGON LOGO MARK
   ========================================================================== */

.hex {
  width: 34px;
  height: 34px;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--display);
  font-weight: 600;
  font-size: 13px;
  clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0 50%);
  flex-shrink: 0;
}

.hex.lg {
  width: 46px;
  height: 46px;
  font-size: 15px;
}

.hex.gold {
  background: var(--gold);
  color: var(--ink);
}

.hex.teal {
  background: var(--teal);
  color: #fff;
  font-size: 15px;
}


/* ==========================================================================
   NAVIGATION
   ========================================================================== */

/* .site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
} */

.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.site-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 20px 40px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.site-logo b {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: .16em;
  font-size: 17px;
  color: var(--ink);
}

.site-logo b sup {
  color: var(--gold-deep);
  font-size: 9px;
}

.nav-links {
  display: flex;
  gap: 26px;
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 12.5px;
  color: var(--muted);
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: inherit;
  transition: color .15s;
}

.nav-links a:hover,
.nav-links .current-menu-item a {
  color: var(--ink);
}

.nav-links .current-menu-item a {
  border-bottom: 2px solid var(--gold);
  padding-bottom: 2px;
}

.nav-links .nav-home a {
    display: flex;
    align-items: center;
    color: var(--ink);
    transition: color .2s ease;
}
.nav-links .nav-home a:hover,
.nav-links .nav-home.current-menu-item a {
    color: var(--gold);
}

@media (max-width: 767px) {
  .site-nav {
    padding: 14px 20px;
    gap: 12px;
  }

  .site-nav .nav-links {
    display: none;
  }

  .site-nav .btn.sm {
    font-size: 11px;
    padding: 6px 12px;
    letter-spacing: .08em;
    flex-shrink: 0;
    width: auto;
  }
}

.site-logo img {
  height: 28px;
  width: auto;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: .2s;
}

/* Mobile drawer */
.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  padding: 16px 24px 20px;
}

.nav-mobile.open { display: flex; }

.nav-mobile a {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover { color: var(--ink); }


/* ==========================================================================
   PROOF STRIP
   ========================================================================== */

.proof-strip {
  background: var(--ink);
  color: #cfd7e0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 24px;
  padding: 16px 24px;
}

.proof-strip span {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 11.5px;
}

.proof-strip b { color: var(--gold); font-weight: 600; }
.proof-strip .sep { opacity: .3; }


/* ==========================================================================
   HERO — SHARED
   ========================================================================== */

.page-hero {
  position: relative;
  background: var(--surface);
  overflow: hidden;
  padding: 84px 40px 70px;
  text-align: center;
  background-image:
    linear-gradient(rgba(22, 33, 46, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22, 33, 46, .045) 1px, transparent 1px);
  background-size: 60px 60px;
}

.page-hero .hero-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
}

.page-hero h1 { margin-top: 20px; }

.hero-sub {
  font-family: var(--ui);
  font-weight: 400;
  font-size: clamp(16px, 1.7vw, 19px);
  color: var(--muted-dark);
  max-width: 54ch;
  margin: 24px auto 0;
  line-height: 1.7;
}

.hero-note {
  margin-top: 14px;
  font-size: 13px;
  color: var(--muted);
  font-family: var(--ui);
}

/* Slider dots */
.slider-dots {
  display: flex;
  gap: 7px;
  justify-content: center;
  margin-top: 30px;
}

.slider-dots i {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--line);
}

.slider-dots i.on { background: var(--gold); }

/* SVG background art */
.hero-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: .55;
  pointer-events: none;
}


/* ==========================================================================
   CARDS — SYSTEMS / FEATURES
   ========================================================================== */

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px 18px;
  text-align: left;
}

.card .card-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 14px;
  color: var(--teal-deep);
}

.card h3 { font-size: 21px; }

.card p {
  font-size: 14.5px;
  margin-top: 8px;
}

.card .tag {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: 11px;
  color: var(--gold-deep);
  margin-top: 14px;
  display: inline-block;
}


/* ==========================================================================
   SPLIT (2-COL) SECTIONS
   ========================================================================== */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.split h2 { font-size: clamp(26px, 3.2vw, 36px); }

.split p {
  margin-top: 16px;
  font-size: 16px;
}

.checks {
  list-style: none;
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.checks li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  font-size: 15px;
  color: var(--ink);
}

.checks li::before {
  content: "";
  flex: 0 0 18px;
  height: 18px;
  margin-top: 3px;
  border-radius: 50%;
  background: var(--teal);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/14px no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/14px no-repeat;
}

/* Photo placeholder */
.photo-ph {
  background: var(--surface-2);
  border: 1px dashed rgba(22, 33, 46, .25);
  border-radius: 16px;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8a94a1;
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
  text-align: center;
  padding: 20px;
}


/* ==========================================================================
   TESTIMONIAL QUOTES
   ========================================================================== */

.quotes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 32px;
}

.quote-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px;
}

.quote-card p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--ink);
  line-height: 1.4;
}

.quote-card .by {
  margin-top: 14px;
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 11px;
  color: var(--muted);
}

/* Pull quote (dark) */
.pull-quote {
  background: var(--ink);
  color: #fff;
  text-align: center;
  padding: 64px 40px;
  position: relative;
  overflow: hidden;
}

.pull-quote::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(90% 80% at 50% 0%, rgba(239, 176, 42, .16), transparent 62%);
  pointer-events: none;
}

.pull-quote > * { position: relative; z-index: 2; }

.pull-quote q {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(23px, 3vw, 34px);
  line-height: 1.4;
  quotes: none;
  display: block;
  max-width: 30ch;
  margin: 0 auto;
  color: #fff;
}

.pull-quote .pull-who {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 12px;
  color: var(--gold);
  margin-top: 20px;
}


/* ==========================================================================
   VIMEO VIDEO BLOCKS
   ========================================================================== */

.hp-video {
  max-width: 540px;
  margin: 36px auto 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 16 / 9;
  background: #000;
}

.hp-video iframe,
.vid-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.vid-cap {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 11px;
  color: var(--muted);
  margin-top: 10px;
  text-align: center;
}

/* 3-col video row */
.vid-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 30px;
}

.vid-embed {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #000;
  aspect-ratio: 16 / 9;
}


/* ==========================================================================
   FACE / PERSON CARDS
   ========================================================================== */

.faces-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 36px;
}

.face-card {
  display: block;
  text-decoration: none;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  text-align: center;
  padding-bottom: 16px;
}

.face-card img {
  width: 100%;
  height: auto;
  display: block;
  background: var(--surface-2);
}

.face-card b {
  display: block;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 17px;
  color: var(--ink);
  margin-top: 12px;
}

.face-card span {
  display: block;
  font-size: 11.5px;
  color: var(--muted);
  margin-top: 3px;
  padding: 0 8px;
  line-height: 1.3;
}

.face-card em {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  color: var(--teal-deep);
  font-size: 15px;
  margin-top: 8px;
}


/* ==========================================================================
   INNER CIRCLE — DARK FEATURE BLOCK
   ========================================================================== */

.ic-block {
  background: var(--ink);
  color: #eaf0f6;
  border-radius: 20px;
  padding: 54px 44px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.ic-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(90% 70% at 50% 0%, rgba(23, 162, 192, .22), transparent 60%);
  pointer-events: none;
}

.ic-block > * { position: relative; z-index: 2; }

.ic-block .kicker { color: var(--gold); }

.ic-block h2 {
  color: #fff;
  font-size: clamp(28px, 3.6vw, 42px);
  margin-top: 12px;
}

.ic-block p {
  color: #aeb9c6;
  max-width: 54ch;
  margin: 16px auto 0;
  font-size: 16px;
}

.ic-feats {
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 26px 0 30px;
}

.ic-feats div {
  font-family: var(--ui);
  font-size: 13px;
  color: #cdd6e0;
}

.ic-feats b {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 30px;
  color: var(--gold);
  font-weight: 600;
}


/* ==========================================================================
   HUMANCHARTS HANDOFF BLOCK
   ========================================================================== */

.hc-block {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 4px solid var(--teal);
  border-radius: 0 14px 14px 0;
  padding: 26px 30px;
}

.hc-block h3 { font-size: 22px; }

.hc-block p {
  font-size: 14.5px;
  margin-top: 4px;
}


/* ==========================================================================
   FINAL CTA SECTION
   ========================================================================== */

.final-cta {
  background: var(--surface);
  text-align: center;
  padding: 80px 40px;
  background-image:
    linear-gradient(rgba(22, 33, 46, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22, 33, 46, .045) 1px, transparent 1px);
  background-size: 60px 60px;
}

.final-cta h2 {
  font-size: clamp(30px, 4vw, 48px);
  max-width: 18ch;
  margin: 14px auto 0;
}

.final-cta .final-sub {
  color: var(--muted-dark);
  margin: 18px auto 0;
  font-size: 17px;
  max-width: 50ch;
}

/* Dark final CTA (Inner Circle page) */
.final-cta.dark {
  background: var(--ink);
  color: #fff;
}

.final-cta.dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(90% 80% at 50% 0%, rgba(23, 162, 192, .2), transparent 60%);
}

.final-cta.dark h2 { color: #fff; }
.final-cta.dark .kicker { color: var(--gold); }
.final-cta.dark .final-sub { color: #aeb9c6; }


/* ==========================================================================
   REFERRAL / PASS BAR
   ========================================================================== */

.refer-bar {
  background: var(--surface-2);
  border-top: 1px solid var(--line);
  text-align: center;
  padding: 30px;
}

.refer-bar span {
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  color: var(--ink);
}

.refer-bar a {
  color: var(--teal-deep);
  text-decoration: none;
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 12px;
  margin-left: 12px;
  border-bottom: 2px solid var(--teal);
  padding-bottom: 1px;
}


/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer {
  background: var(--ink);
  color: #9aa6b3;
  padding: 38px 40px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  font-size: 13px;
  width: 100%;
}

.site-footer .site-logo b { color: #fff; }

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 11.5px;
}

.footer-links a {
  color: #9aa6b3;
  text-decoration: none;
  transition: color .15s;
}

.footer-links a:hover { color: #fff; }

.footer-legal {
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding-top: 14px;
  font-size: 12px;
}

.footer-copy {
	margin-top: 4px;
	opacity: 0.6;
	font-size: 13px;
}
.footer-cards {
	margin-top: 16px;
}
.footer-cards img {
	height: 24px;
	width: auto;
	display: block;
}

@media (min-width: 480px) {
	.footer-policy { flex-direction: row; gap: 24px; flex-wrap: wrap; align-items: center; }
	.footer-copy { margin-top: 0; margin-left: auto; }
}

.footer-top {
	display: flex;
	flex-direction: column;
	gap: 16px;
	width: 100%;
}
.footer-policy {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.footer-policy a {
	font: inherit;
	color: inherit;
	text-decoration: none;
	opacity: 0.85;
	font-family: var(--display);
	text-transform: uppercase;
	letter-spacing: .08em;
	font-size: 11.5px;
}
.footer-policy a:hover { opacity: 1; text-decoration: underline; }

@media (min-width: 768px) {
	.footer-top {
		flex-direction: row;
		justify-content: space-between;
		align-items: flex-start;
		width: 100%;
	}
	.footer-links {
		margin-left: auto;
	}
}

/* ==========================================================================
   ABOUT PAGE — SPECIFIC COMPONENTS
   ========================================================================== */

/* Story blocks */
.story-block { margin-bottom: 40px; }

.story-block .step-label {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 11px;
  color: var(--gold-deep);
  margin-bottom: 8px;
  display: block;
}

.story-block h2 {
  font-size: 28px;
  margin-bottom: 14px;
}

.story-block p + p { margin-top: 14px; }

/* Vertical timeline */
.vtl {
  position: relative;
  margin-top: 26px;
}

.vtl::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 6px;
  bottom: 12px;
  width: 2px;
  background: var(--line);
}

.vtl-item {
  position: relative;
  padding: 0 0 24px 34px;
}

.vtl-dot {
  position: absolute;
  left: 0;
  top: 3px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--teal);
  border: 3px solid var(--bg);
}

.vtl-item:last-child .vtl-dot { background: var(--gold); }

.vtl-era {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: 11px;
  color: var(--gold-deep);
  display: block;
}

.vtl-item h4 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 21px;
  margin: 2px 0 5px;
}

.vtl-item p {
  font-size: 14.5px;
  margin: 0;
}

/* Horizontal timeline */
.htl-wrap {
  background: var(--surface-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.htl {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  margin-top: 30px;
  position: relative;
}

.htl::before {
  content: "";
  position: absolute;
  top: 21px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: var(--line);
}

.htl-node {
  text-align: center;
  position: relative;
  padding: 0 8px;
}

.htl-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--teal);
  margin: 14px auto 16px;
  border: 3px solid var(--surface-2);
  position: relative;
  z-index: 2;
}

/* Horizontal timeline — mobile: clean 2-col grid, no broken connector line */
@media (max-width: 760px) {
  .htl {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 16px;
  }

  .htl::before {
    display: none; /* hide the horizontal connector line — it can't span a 2-col grid cleanly */
  }

  .htl-node {
    text-align: center;
  }

  .htl-dot {
    margin: 0 auto 10px;
  }
}

.htl-node:last-child .htl-dot { background: var(--gold); }

.htl-yr {
  font-family: var(--display);
  font-weight: 600;
  font-size: 13px;
  color: var(--ink);
  display: block;
}

.htl-nm {
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 4px;
  line-height: 1.4;
}

/* Two-col platform cards */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 30px;
}

.p-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px;
}

.p-card.teal-left {
  border-left: 4px solid var(--teal);
  border-radius: 0 14px 14px 0;
}

.p-card.gold-left {
  border-left: 4px solid var(--gold);
  border-radius: 0 14px 14px 0;
}

.p-card .p-url {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
  color: var(--teal-deep);
  display: block;
}

.p-card.gold-left .p-url { color: var(--gold-deep); }
.p-card h3 { font-size: 22px; margin: 6px 0 8px; }
.p-card p { font-size: 14.5px; }

/* Beyond the work */
.beyond-section {
  background: var(--surface-2);
  border-top: 1px solid var(--line);
}

.beyond-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 24px;
}

.beyond-row h3 {
  font-size: 20px;
  font-family: var(--serif);
}

.beyond-row p {
  font-size: 15px;
  margin-top: 8px;
}


/* ==========================================================================
   INNER CIRCLE PAGE — SPECIFIC COMPONENTS
   ========================================================================== */

/* Marquee */
.marquee-strip {
  background: var(--ink);
  color: #cfd7e0;
  overflow: hidden;
  white-space: nowrap;
  padding: 12px 0;
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: 12px;
}

.marquee-inner {
  display: inline-block;
  animation: marquee 50s linear infinite;
}

.marquee-strip b { color: var(--gold); font-weight: 600; }
.marquee-strip .ms { color: var(--teal); margin: 0 14px; }

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Stats row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 8px;
}

.stat-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 26px 20px;
  text-align: center;
}

.stat-card b {
  display: block;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 46px;
  color: var(--gold-deep);
  line-height: 1;
}

.stat-card span {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: 12px;
  color: var(--muted);
  margin-top: 8px;
  display: block;
}

/* Benefits grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 34px;
}

.benefit-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px 22px;
  text-align: left;
  position: relative;
}

.benefit-card .b-num {
  font-family: var(--display);
  font-weight: 600;
  font-size: 13px;
  color: var(--gold-deep);
  letter-spacing: .08em;
  display: block;
}

.benefit-card h4 {
  font-size: 20px;
  margin: 6px 0 7px;
}

.benefit-card p {
  font-size: 14px;
  margin: 0;
}

.benefit-card .coming-soon {
  position: absolute;
  top: 18px;
  right: 18px;
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 9.5px;
  color: var(--teal-deep);
  background: rgba(23, 162, 192, .12);
  padding: 3px 8px;
  border-radius: 999px;
}

/* Feature dark block (inner circle page) */
.feature-dark {
  background: var(--ink);
  color: #eaf0f6;
  border-radius: 20px;
  padding: 48px 44px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.feature-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(90% 80% at 50% 0%, rgba(239, 176, 42, .18), transparent 62%);
  pointer-events: none;
}

.feature-dark > * { position: relative; z-index: 2; }
.feature-dark .kicker { color: var(--gold); }
.feature-dark h2 { color: #fff; font-size: clamp(28px, 3.6vw, 42px); margin-top: 10px; }
.feature-dark p { color: #aeb9c6; max-width: 54ch; margin: 14px auto 0; font-size: 16px; }

.val-pill {
  display: inline-block;
  margin-top: 20px;
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: 13px;
  color: var(--gold);
  border: 1px solid rgba(239, 176, 42, .4);
  border-radius: 999px;
  padding: 8px 18px;
}

/* Growing tags */
.grow-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 24px;
}

.grow-tags span {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 12px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 16px;
}

/* Guest pass block */
.guest-block {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 4px solid var(--teal);
  border-radius: 0 14px 14px 0;
  padding: 26px 30px;
}

.guest-block h3 { font-size: 21px; }
.guest-block p { font-size: 14.5px; margin-top: 4px; }

/* Apply card */
.apply-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 40px;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.apply-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 26px 0 30px;
  text-align: left;
}

.apply-step {
  padding-left: 14px;
  border-left: 2px solid var(--gold);
}

.apply-step b {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: 11px;
  color: var(--gold-deep);
  display: block;
  margin-bottom: 5px;
}

.apply-step p {
  font-size: 14px;
  margin: 0;
  color: var(--ink);
}


/* ==========================================================================
   SUCCESS STORIES PAGE — SPECIFIC COMPONENTS
   ========================================================================== */

.q-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 30px;
  text-align: left;
}

.q-grid .quote-card p { font-size: 19px; }
.q-grid .quote-card .by { margin-top: 12px; }

/* Stories archive grid */
.archive-section {
  background: var(--surface-2);
  border-top: 1px solid var(--line);
  overflow-x: hidden;
}

.s-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 30px;
}

.s-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  text-align: left;
}

.s-card img {
  width: 100%;
  height: auto;
  display: block;
  background: var(--surface-2);
}

.s-card-body {
  padding: 14px 16px 16px;
}

.s-card h4 {
  font-size: 17px;
  margin: 0;
  line-height: 1.15;
}

.s-card .s-role {
  font-family: var(--ui);
  font-size: 12px;
  color: var(--muted);
  margin: 4px 0 0;
  line-height: 1.35;
}

.s-card a {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 10.5px;
  color: var(--teal-deep);
  text-decoration: none;
  display: inline-block;
  margin-top: 10px;
}


/* ==========================================================================
   RESPONSIVE — MOBILE FIRST
   ========================================================================== */

@media (max-width: 920px) {
  .card-grid    { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-row    { grid-template-columns: repeat(2, 1fr); }
  .apply-steps  { grid-template-columns: repeat(2, 1fr); }
  .s-grid       { grid-template-columns: repeat(3, 1fr); }
  .faces-grid   { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .wrap,
  .wrap-wide,
  .wrap-mid,
  .wrap-sm    { padding: 0 20px; }

  .band       { padding: 48px 0; }

  .site-nav   { padding: 16px 20px; }
  .nav-links  { display: none; }
  .nav-toggle { display: flex; }

  .page-hero  { padding: 56px 20px 48px; }

  .card-grid      { grid-template-columns: 1fr; }
  .quotes-grid    { grid-template-columns: 1fr; }
  .split          { grid-template-columns: 1fr; }
  .hc-block       { grid-template-columns: 1fr; text-align: center; }
  .two-col        { grid-template-columns: 1fr; }
  .htl            { grid-template-columns: repeat(2, 1fr); }
  .beyond-row     { grid-template-columns: 1fr; }
  .benefits-grid  { grid-template-columns: 1fr; }
  .stats-row      { grid-template-columns: 1fr; }
  .apply-steps    { grid-template-columns: 1fr; }
  .guest-block    { grid-template-columns: 1fr; text-align: center; }
  .q-grid         { grid-template-columns: 1fr; }
  .vid-row        { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .s-grid       { grid-template-columns: repeat(2, 1fr); }
  .faces-grid   { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: 1fr; }

  .ic-block   { padding: 36px 24px; }
  .apply-card { padding: 28px 20px; }

  .site-footer { padding: 28px 20px; }
  .footer-links { gap: 12px; }

  .pull-quote { padding: 48px 20px; }
  .pull-quote q { font-size: clamp(20px, 5vw, 28px); }

  .final-cta  { padding: 56px 20px; }
}

/* ==========================================================================
   LIGHT TRANSITIONS — subtle, deliberate (Saturn, not Tony Robbins)
   ========================================================================== */

a,
.btn,
.card,
.quote-card,
.s-card,
.face-card,
.benefit-card,
.p-card,
.stat-card,
.nav-toggle span {
  transition: background .2s ease, color .2s ease, border-color .2s ease,
              transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}

/* Cards lift slightly on hover */
.card:hover,
.quote-card:hover,
.benefit-card:hover,
.p-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(22, 33, 46, .08);
  border-color: rgba(22, 33, 46, .2);
}

.s-card:hover,
.face-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(22, 33, 46, .10);
}

/* Nav links — underline grows in, doesn't jump */
.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width .2s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Buttons already have a hover transform — keep it gentle */
.btn {
  transition: background .18s ease, transform .18s ease, box-shadow .18s ease;
}

.btn:hover {
  box-shadow: 0 8px 20px rgba(239, 176, 42, .25);
}

.btn.teal:hover {
  box-shadow: 0 8px 20px rgba(23, 162, 192, .25);
}

/* Page sections fade up as they enter view (requires the JS below) */
.fade-up {
  opacity: 1;
  transform: none;
}

.js-ready .fade-up {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s ease, transform .6s ease;
}

.js-ready .fade-up.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }
  .fade-up {
    opacity: 1;
    transform: none;
  }
}

/* ==========================================================================
   EVENTS PAGE — CALENDAR COMPONENTS
   ========================================================================== */

/* Calendar row — mobile-first: stacks to 2-col grid at base, expands at 600px */
.cal { margin-top: 26px; }

.crow {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px 20px;
  align-items: center;
  padding: 16px 4px;
  border-bottom: 1px solid var(--line);
  border-radius: 10px;
  transition: background .2s ease, transform .2s ease,
              box-shadow .2s ease, border-color .2s ease;
}

.crow:hover {
  background: var(--surface);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(22, 33, 46, .08);
  border-color: rgba(22, 33, 46, .2);
}

.crow:first-child { border-top: 1px solid var(--line); }

/* Date badge */
.date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  flex: 0 0 62px;
}

.date .mo {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 11px;
  color: var(--gold-deep);
}

.date .dy {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 24px;
  color: var(--ink);
  line-height: 1.05;
}

/* Event title / time */
.crow h4 { font-size: 17px; line-height: 1.2; }

.crow .time {
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 3px;
  font-family: var(--ui);
}

/* Tag badge — on its own row on mobile */
.tag2 {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: .07em;
  font-size: 10px;
  padding: 5px 11px;
  border-radius: 999px;
  white-space: nowrap;
  grid-column: 2;  /* mobile: badge sits under title, in col 2 */
  justify-self: start;
  margin-top: 4px;
}

.tag2.g { background: rgba(23, 162, 192, .12); color: var(--teal-deep); }
.tag2.m { background: rgba(185, 131, 26, .16); color: var(--gold-deep); }

/* Calendar note */
.calnote {
  font-size: 13px;
  color: var(--muted);
  margin-top: 18px;
  text-align: center;
}

/* At 600px+: tag badge moves to its own column (3-col row) */
@media (min-width: 600px) {
  .crow {
    grid-template-columns: auto 1fr auto;
    gap: 20px;
  }
  .tag2 {
    grid-column: auto;
    margin-top: 0;
  }
}

.cal-month {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: 13px;
  color: var(--gold-deep);
  margin: 28px 0 8px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--line);
}
.cal-month:first-child { margin-top: 0; }

.cal-past {
  margin-top: 32px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.cal-past summary {
  cursor: pointer;
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 12px;
  color: var(--muted);
  list-style: none;
}
.cal-past summary::-webkit-details-marker { display: none; }
.cal-past summary::after { content: ' ▾'; }
.cal-past[open] summary::after { content: ' ▴'; }
.crow-past { opacity: .55; }

.crow-next {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--gold);
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(185, 131, 26, .12);
  padding-top: 24px; /* room for the flag */
}
.next-flag {
  position: absolute;
  top: -11px;
  left: 14px;
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 10px;
  color: #fff;
  background: var(--gold-deep);
  padding: 4px 10px;
  border-radius: 999px;
}

/* ==========================================================================
   MOBILE BUTTON FIX — full-width below 480px (tap-friendly)
   ========================================================================== */

@media (max-width: 480px) {
  .btn {
    justify-content: center;
  }

  .cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .hc-block {
    text-align: center;
  }
}

/* Policy index links */
.policy-link-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  text-decoration: none;
  color: var(--ink);
  margin-bottom: 12px;
  transition: transform .18s, box-shadow .18s, border-color .18s;
}

.policy-link-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(22, 33, 46, .08);
  border-color: rgba(22, 33, 46, .2);
}

.policy-link-item strong {
  display: block;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
}

.policy-link-item span {
  display: block;
  font-size: 14px;
  color: var(--muted);
  margin-top: 4px;
}

.policy-arrow {
  font-size: 18px;
  color: var(--muted);
  flex-shrink: 0;
}