/* ============================================================
   Design tokens
   ============================================================ */
:root {
  --navy: #182642;
  --navy-800: #101A2E;
  --ink: #182642;
  --gold-700: #A9812F;
  --gold-600: #C79A46;
  --gold-500: #D3AC63;
  --gold-400: #DEC08A;
  --gold-100: #F2E4C8;
  --cream: #F6F1E6;
  --cream-100: #FBF8F1;
  --paper: #FFFFFF;
  --line: #E4D9BF;
  --muted: #5B6A85;

  --font-display: "Fraunces", Georgia, serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.wrap { max-width: 980px; margin: 0 auto; padding: 0 24px; }

/* ============================================================
   Eyebrows / structural labels
   ============================================================ */
.eyebrow {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-600);
  font-weight: 600;
  margin: 0 0 16px;
}
.eyebrow .n { margin-right: 8px; }
.on-dark .eyebrow { color: var(--gold-400); }

.accent {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
}

/* ============================================================
   Navy band (hero / dark panels)
   ============================================================ */
.navy-band {
  background: var(--navy);
  background-image: radial-gradient(circle at 15% 20%, rgba(215, 178, 115, 0.10) 0, transparent 45%),
                     radial-gradient(circle at 85% 80%, rgba(215, 178, 115, 0.08) 0, transparent 50%);
  color: #EDE7D8;
}

/* ============================================================
   Top nav
   ============================================================ */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
}
.nav-mark {
  font-family: var(--font-display);
  font-size: 17px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  color: inherit;
}
.nav-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--cream-100);
  color: var(--navy-800);
  text-decoration: none;
  transition: background 0.15s ease;
}
.nav-back:hover { background: #fff; }
.nav-back i { font-size: 17px; }
.logo-chip {
  display: inline-flex;
  align-items: center;
  background: var(--cream-100);
  padding: 6px 12px;
  border-radius: 8px;
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  padding: 64px 0 56px;
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(38px, 6vw, 58px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 20px;
}
.hero .lede {
  font-size: 17px;
  line-height: 1.65;
  color: #C9D0DD;
  max-width: 520px;
  margin: 0 0 32px;
}
.on-dark .hero .lede { color: #C9D0DD; }

/* ============================================================
   Buttons: squared, gold, tracked caps (reference's CTA style)
   ============================================================ */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  background: var(--gold-600);
  color: var(--navy-800);
  border: none;
  border-radius: 4px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  font-family: var(--font-sans);
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s ease;
}
.btn-gold:hover { background: var(--gold-500); }

/* ============================================================
   Identity band (home page hero-equivalent)
   ============================================================ */
.identity-row {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 56px 0 60px;
}
.headshot {
  width: 108px;
  height: 108px;
  border-radius: 50%;
  background: var(--gold-100);
  border: 1px solid rgba(215, 178, 115, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--gold-700);
  flex-shrink: 0;
  overflow: hidden;
}
.headshot img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.identity-row .name {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 500;
  margin: 0;
  color: #F6F1E6;
}
.identity-row .role { font-size: 14px; color: var(--gold-400); margin: 8px 0 0; }

/* ============================================================
   Marquee ticker
   ============================================================ */
.marquee {
  background: var(--gold-600);
  overflow: hidden;
  white-space: nowrap;
  padding: 14px 0;
}
.marquee-track {
  display: inline-flex;
  animation: marquee-scroll 32s linear infinite;
}
.marquee-track span {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--navy-800);
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  gap: 28px;
}
.marquee-track span::after { content: "•"; color: rgba(16, 26, 46, 0.4); }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* ============================================================
   Section headings
   ============================================================ */
.section { padding: 64px 0; }
.section:last-of-type { padding-bottom: 88px; }
.section-head { margin-bottom: 28px; }
.section-head h2 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  margin: 0;
  color: var(--navy);
}

/* ============================================================
   Practice-style tile grid: Connect
   ============================================================ */
.tile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  border-radius: 6px;
  overflow: hidden;
}
.tile {
  background: var(--gold-100);
  padding: 32px 26px;
  text-decoration: none;
  color: var(--navy);
  display: flex;
  flex-direction: column;
  gap: 36px;
  transition: filter 0.15s ease;
  border-right: 1px solid rgba(16, 26, 46, 0.06);
}
.tile:last-child { border-right: none; }
.tile:nth-child(2) { background: var(--gold-400); }
.tile:nth-child(3) { background: var(--gold-500); }
.tile:nth-child(4) { background: var(--gold-600); }
.tile:hover { filter: brightness(0.96); }
.tile .icon { font-size: 22px; color: var(--navy-800); opacity: 0.65; }
.logo-badge { border-radius: 9px; flex-shrink: 0; display: block; }
.icon-svg { display: block; }
.tile .t-label { font-family: var(--font-display); font-size: 19px; font-weight: 500; }
.tile .t-desc { font-size: 13px; color: rgba(24, 38, 66, 0.72); margin-top: 4px; line-height: 1.55; }
.tile .t-arrow { align-self: flex-end; font-size: 16px; color: var(--navy-800); opacity: 0.5; }

@media (max-width: 700px) {
  .tile-grid { border-radius: 6px; }
  .tile { border-right: none; border-bottom: 1px solid rgba(16, 26, 46, 0.08); }
  .tile:last-child { border-bottom: none; }
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.social-tile {
  background: var(--navy);
  border-radius: 6px;
  padding: 22px 12px;
  text-align: center;
  text-decoration: none;
  color: var(--gold-400);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
  transition: background 0.15s ease;
}
.social-tile:hover { background: var(--navy-800); }
.social-tile i { font-size: 22px; color: var(--gold-500); }

@media (max-width: 560px) {
  .social-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Feature / why cards (subpages): same gold-gradient card row
   ============================================================ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 0;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 64px;
}
.feature-card {
  background: var(--gold-100);
  padding: 30px 26px;
  border-right: 1px solid rgba(16, 26, 46, 0.06);
}
.feature-card:nth-child(2) { background: var(--gold-400); }
.feature-card:nth-child(3) { background: var(--gold-500); }
.feature-card:nth-child(4) { background: var(--gold-600); }
.feature-card:last-child { border-right: none; }
.feature-card .f-title { font-family: var(--font-display); font-size: 17px; font-weight: 500; margin: 0 0 8px; color: var(--navy); }
.feature-card .f-desc { font-size: 13px; line-height: 1.6; color: rgba(24, 38, 66, 0.72); margin: 0; }

@media (max-width: 700px) {
  .feature-card { border-right: none; border-bottom: 1px solid rgba(16, 26, 46, 0.08); }
  .feature-card:last-child { border-bottom: none; }
}

/* ============================================================
   Process steps
   ============================================================ */
.process { margin-bottom: 64px; }
.process-row {
  display: flex;
  gap: 24px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}
.process-row:first-of-type { border-top: 1px solid var(--line); }
.process-num {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--gold-600);
  min-width: 44px;
}
.process-body .p-title { font-size: 16px; font-weight: 600; margin: 0 0 4px; color: var(--navy); }
.process-body .p-desc { font-size: 14px; color: var(--muted); margin: 0; line-height: 1.6; }

/* ============================================================
   Quote band
   ============================================================ */
.quote-band {
  background: var(--navy);
  background-image: radial-gradient(circle at 20% 30%, rgba(215, 178, 115, 0.10) 0, transparent 45%);
  border-radius: 6px;
  padding: 52px 44px;
  margin-bottom: 64px;
}
.quote-band blockquote {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(21px, 3vw, 28px);
  line-height: 1.5;
  color: #F6F1E6;
  margin: 0 0 18px;
}
.quote-band cite {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-500);
  font-style: normal;
  font-weight: 600;
}

/* ============================================================
   CTA band + form
   ============================================================ */
.cta-band {
  background: var(--cream-100);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 48px 40px;
  margin-bottom: 64px;
}
.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 500;
  margin: 0 0 12px;
  color: var(--navy);
}
.cta-band .cta-lede { font-size: 15px; color: var(--muted); max-width: 480px; margin: 0 0 32px; line-height: 1.6; }

form.inquiry {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
form.inquiry .full { grid-column: 1 / -1; }
form.inquiry input,
form.inquiry textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 13px 15px;
  font-size: 14px;
  color: var(--ink);
  font-family: var(--font-sans);
  background: var(--paper);
}
form.inquiry textarea { resize: vertical; min-height: 100px; }
form.inquiry input:focus,
form.inquiry textarea:focus {
  outline: none;
  border-color: var(--gold-600);
  box-shadow: 0 0 0 3px rgba(199, 154, 70, 0.2);
}
.btn-primary {
  padding: 14px 28px;
  background: var(--gold-600);
  color: var(--navy-800);
  border: none;
  border-radius: 4px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  font-family: var(--font-sans);
  cursor: pointer;
  justify-self: start;
}
.btn-primary:hover { background: var(--gold-500); }

.alt-contact { margin-top: 20px; font-size: 13px; color: var(--muted); }
.alt-contact a { color: var(--gold-700); font-weight: 600; text-decoration: none; }

@media (max-width: 560px) {
  form.inquiry { grid-template-columns: 1fr; }
}

/* ============================================================
   Live page
   ============================================================ */
.live-hero { padding: 72px 0 40px; text-align: center; }
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(215, 178, 115, 0.14);
  padding: 9px 18px;
  border-radius: 999px;
  margin-bottom: 26px;
  font-size: 12px;
  color: var(--gold-400);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.live-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold-500); display: inline-block; }
.live-badge.is-live { background: rgba(29, 158, 117, 0.18); color: #7BD9B4; }
.live-badge.is-live .live-dot { background: #3FCB94; }
@media (prefers-reduced-motion: no-preference) {
  .live-badge.is-live .live-dot { animation: pulse 1.4s ease-in-out infinite; }
  @keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
}
.live-emblem { width: 34px; height: 34px; background: #171B1F; display: flex; align-items: center; justify-content: center; }
.live-emblem-dot { width: 13px; height: 13px; border-radius: 50%; background: #FF3B30; display: block; }
@media (prefers-reduced-motion: no-preference) {
  .live-emblem-dot { animation: pulse 1.4s ease-in-out infinite; }
}

.platform-list { max-width: 460px; margin: 0 auto 88px; }
.platform-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  margin-bottom: 12px;
  border-radius: 6px;
  border: 1px solid var(--line);
  background: var(--cream-100);
  text-decoration: none;
  color: var(--navy);
  transition: border-color 0.15s ease;
}
.platform-row:hover { border-color: var(--gold-500); }
.platform-row .label { display: flex; align-items: center; gap: 12px; font-size: 16px; font-weight: 500; }
.platform-row .status {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold-700);
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--gold-100);
}
.platform-row.live-on {
  background: var(--navy);
  color: #F6F1E6;
  border-color: var(--navy);
}
.platform-row.live-on .status { background: rgba(215, 178, 115, 0.2); color: var(--gold-400); }

/* ============================================================
   Footer
   ============================================================ */
footer {
  border-top: 1px solid var(--line);
  padding: 32px 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--muted);
}
footer .foot-tag {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold-700);
}

@media (max-width: 560px) {
  footer { flex-direction: column; gap: 10px; text-align: center; }
}

/* ============================================================
   Channel grid (content creation page)
   ============================================================ */
.channel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}
.channel-card {
  background: var(--gold-100);
  border-radius: 10px;
  padding: 28px 24px;
  text-decoration: none;
  color: var(--navy);
  display: flex;
  flex-direction: column;
  gap: 28px;
  transition: transform 0.15s ease, filter 0.15s ease;
}
.channel-card:hover { transform: translateY(-2px); filter: brightness(0.97); }
.channel-card .icon { font-size: 22px; color: var(--navy-800); opacity: 0.65; }
.channel-card .c-label { font-family: var(--font-display); font-size: 18px; font-weight: 500; }
.channel-card .c-desc { font-size: 13px; color: rgba(24, 38, 66, 0.72); margin-top: 4px; line-height: 1.55; }
.channel-card .c-arrow { align-self: flex-end; font-size: 16px; color: var(--navy-800); opacity: 0.5; }
.channel-card.g1 { background: #F2E4C8; }
.channel-card.g2 { background: #E8D6B2; }
.channel-card.g3 { background: #DDC89C; }
.channel-card.g4 { background: #D3BA86; }
.channel-card.g5 { background: #C8AB71; }
.channel-card.g6 { background: #BE9D5B; }
.channel-card.g7 { background: #B38F45; }
.channel-card.g8 { background: #A9812F; }

.feature-links { list-style: none; padding: 0; margin: 18px 0 0; display: flex; flex-direction: column; gap: 10px; }
.skill-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold-700);
  background: var(--gold-100);
  padding: 7px 14px;
  border-radius: 999px;
}
.feature-links a {
  color: var(--navy);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}
.feature-links a:hover { text-decoration: underline; }
.feature-links a::before { content: "\2192"; color: var(--navy-800); opacity: 0.5; }

/* ============================================================
   Sub-nav (one-page section navigation)
   ============================================================ */
.subnav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--cream-100);
  border-bottom: 1px solid var(--line);
}
.subnav-inner {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  padding: 14px 0;
  scrollbar-width: none;
}
.subnav-inner::-webkit-scrollbar { display: none; }
.subnav a {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.15s ease;
}
.subnav a:hover { color: var(--gold-700); }

/* ============================================================
   Video slots (UGC content placeholders)
   ============================================================ */
.video-group { margin-bottom: 40px; }
.video-group:last-child { margin-bottom: 0; }
.video-group h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--navy);
  margin: 0 0 16px;
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 14px;
}
.video-slot {
  aspect-ratio: 9 / 16;
  background: var(--gold-100);
  border: 1.5px dashed var(--gold-500);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--gold-700);
  font-size: 12px;
  text-align: center;
  padding: 16px;
}
.video-slot .play-badge {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.video-slot .play-badge svg { margin-left: 2px; }

/* ============================================================
   Scroll reveal
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--stagger, 0s);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
