/* ============================================================
   DAN CHADWICK · CAREER CONSULTANT
   Editorial design system
   Cream #F6F5F1 · Ink #1E1E1E · Gold #C5AC84 · Teal #3D7D7A
   Typeface: Poppins throughout
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* === CUSTOM PROPERTIES === */
:root {
  --cream:    #F6F1E6;
  --ink:      #1A1813;
  --gold:     #C2A45C;
  --teal:     #15534E;
  --ink-60:   rgba(26,24,19,0.62);
  --ink-30:   rgba(26,24,19,0.30);
  --ink-12:   rgba(26,24,19,0.12);
  --cream-90: rgba(246,241,230,0.90);

  --font: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spatial scale */
  --s-xs:  8px;
  --s-sm:  16px;
  --s-md:  32px;
  --s-lg:  64px;
  --s-xl:  96px;
  --s-2xl: 140px;

  /* Type scale */
  --t-xs:  11px;
  --t-sm:  13px;
  --t-base:16px;
  --t-md:  18px;
  --t-lg:  24px;
  --t-xl:  32px;
  --t-2xl: 48px;
  --t-3xl: 64px;
  --t-4xl: 80px;

  --nav-h: 68px;
  --max-w: 1160px;
  --gutter: clamp(24px, 5vw, 64px);
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font); background: var(--cream); color: var(--ink); line-height: 1.6; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* === NAV === */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--cream);
  border-bottom: 1px solid var(--ink-12);
  height: var(--nav-h);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-size: var(--t-sm);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  flex-shrink: 0;
}

.nav-logo em {
  color: var(--gold);
  font-style: normal;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-links a {
  white-space: nowrap;
  font-size: var(--t-xs);
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--ink-60);
  transition: color 0.18s;
  position: relative;
  padding-bottom: 3px;
}

.nav-links a:hover { color: var(--ink); }

.nav-links a.active {
  color: var(--ink);
  font-weight: 600;
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
}

.nav-links .nav-cta {
  background: var(--ink);
  color: var(--cream) !important;
  padding: 8px 20px;
  font-weight: 600;
  transition: background 0.18s;
}

.nav-links .nav-cta:hover { background: #2e2e2e; }
.nav-links .nav-cta::after { display: none; }

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

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.2s, opacity 0.2s;
}

/* === LAYOUT === */
.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section { padding: var(--s-xl) var(--gutter); max-width: var(--max-w); margin: 0 auto; }
.section-sm { padding: var(--s-lg) var(--gutter); max-width: var(--max-w); margin: 0 auto; }

.rule { height: 1px; background: var(--ink-12); margin: 0 var(--gutter); }
.rule-full { height: 1px; background: var(--ink-12); }

.two-col       { display: grid; grid-template-columns: 1fr 1fr;       gap: var(--s-lg); align-items: start; }
.two-col-wide  { display: grid; grid-template-columns: 1.45fr 1fr;    gap: var(--s-lg); align-items: start; }
.two-col-narrow{ display: grid; grid-template-columns: 1fr 1.45fr;    gap: var(--s-lg); align-items: start; }
.three-col     { display: grid; grid-template-columns: 1fr 1fr 1fr;   gap: var(--s-md); align-items: start; }

/* === TYPOGRAPHY === */
.eyebrow {
  display: block;
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.display {
  font-size: clamp(40px, 6.5vw, 84px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(32px, 4.5vw, 58px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

h2 {
  font-size: clamp(24px, 3.2vw, 42px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

h3 {
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

h4 {
  font-size: var(--t-md);
  font-weight: 600;
  line-height: 1.3;
}

.lead {
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 400;
  line-height: 1.65;
  color: var(--ink-60);
}

.body {
  font-size: var(--t-base);
  line-height: 1.7;
  color: var(--ink-60);
}

.small {
  font-size: var(--t-sm);
  line-height: 1.6;
  color: var(--ink-60);
}

/* Gold rule accent */
.gold-bar {
  display: block;
  width: 36px;
  height: 3px;
  background: var(--gold);
  margin-bottom: 24px;
}

/* Pull quote */
.pull-quote {
  font-size: clamp(20px, 2.8vw, 32px);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--ink);
  border-left: 3px solid var(--gold);
  padding-left: var(--s-md);
}

/* === BUTTONS === */
.btn {
  display: inline-block;
  padding: 13px 30px;
  font-family: var(--font);
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: background 0.18s, color 0.18s;
  line-height: 1;
}

.btn-gold    { background: var(--gold); color: var(--ink); }
.btn-gold:hover { background: #b89a6e; }

.btn-dark    { background: var(--ink);  color: var(--cream); }
.btn-dark:hover { background: #2e2e2e; }

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

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

.btn-text {
  background: none;
  padding: 0;
  color: var(--ink);
  font-size: var(--t-sm);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--ink-30);
  transition: border-color 0.18s;
}
.btn-text:hover { border-color: var(--ink); }

/* === PLACEHOLDERS === */

/* Photo placeholder */
.photo-ph {
  background: #e6e2da;
  display: flex;
  align-items: flex-end;
  padding: 20px 24px;
  position: relative;
  overflow: hidden;
}

.photo-ph::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 12px,
    rgba(30,30,30,0.04) 12px,
    rgba(30,30,30,0.04) 13px
  );
}

.photo-ph-label {
  position: relative;
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(30,30,30,0.35);
  padding: 8px 12px;
  border: 1px solid rgba(30,30,30,0.15);
  background: rgba(246,245,241,0.7);
}

/* Video placeholder */
.video-ph {
  background: #1a1a1a;
  aspect-ratio: 16 / 9;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
}

.video-ph::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 18px,
    rgba(255,255,255,0.015) 18px,
    rgba(255,255,255,0.015) 19px
  );
}

.video-ph-play {
  width: 64px;
  height: 64px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}

.video-ph-play::after {
  content: '';
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 18px solid var(--gold);
  margin-left: 5px;
}

.video-ph-text {
  text-align: center;
}

.video-ph-title {
  font-size: var(--t-sm);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 4px;
}

.video-ph-sub {
  font-size: var(--t-xs);
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.06em;
}

/* === CREDIBILITY STRIP === */
.cred-strip {
  display: flex;
  border-top: 1px solid var(--ink-12);
  border-bottom: 1px solid var(--ink-12);
}

.cred-item {
  flex: 1;
  padding: var(--s-md) var(--s-sm);
  text-align: center;
  border-right: 1px solid var(--ink-12);
}

.cred-item:last-child { border-right: none; }

.cred-num {
  display: block;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 6px;
}

.cred-num .accent { color: var(--gold); }

.cred-label {
  display: block;
  font-size: var(--t-xs);
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--ink-60);
}

/* === EDITORIAL OFFER GRID (Home page) === */
.offer-editorial {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1px;
  background: var(--ink-12);
  border: 1px solid var(--ink-12);
}

.offer-feature {
  background: var(--ink);
  color: var(--cream);
  padding: var(--s-lg) var(--s-md);
  display: flex;
  flex-direction: column;
}

.offer-feature .eyebrow { color: var(--gold); }

.offer-feature h3 {
  font-size: clamp(22px, 3vw, 34px);
  color: var(--cream);
  margin-bottom: 16px;
}

.offer-feature .body {
  color: rgba(246,245,241,0.65);
  margin-bottom: 24px;
  flex: 1;
}

.offer-feature .offer-price-tag {
  font-size: var(--t-sm);
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--gold);
  margin-bottom: 28px;
}

.offer-stack {
  background: var(--cream);
  display: flex;
  flex-direction: column;
}

.offer-stack-item {
  padding: var(--s-md) var(--s-md);
  border-bottom: 1px solid var(--ink-12);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.offer-stack-item:last-child { border-bottom: none; }

.offer-item-num {
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
}

.offer-stack-item h4 {
  font-size: var(--t-base);
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.offer-stack-item .small {
  flex: 1;
  margin-bottom: 16px;
}

.offer-arrow {
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--ink-12);
  padding-bottom: 2px;
  display: inline-block;
  transition: border-color 0.15s;
  align-self: flex-start;
}

.offer-arrow:hover { border-color: var(--ink); }

/* === TESTIMONIALS === */
.testimonial-row {
  padding: var(--s-xl) 0;
  border-top: 1px solid var(--ink-12);
}

.testimonial-row + .testimonial-row { border-top: 1px solid var(--ink-12); }

.testimonial-quote {
  font-size: clamp(17px, 2.2vw, 24px);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 20px;
}

.testimonial-meta {
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.testimonial-role {
  font-size: var(--t-xs);
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--ink-60);
  margin-top: 2px;
}

.testimonial-result {
  display: inline-block;
  margin-top: 12px;
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 5px 12px;
  border: 1px solid var(--ink-12);
}

/* === TIER BLOCKS (MECA) === */
.tier-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--ink-12);
  border: 1px solid var(--ink-12);
  margin: var(--s-lg) 0;
}

.tier-block {
  background: var(--cream);
  padding: var(--s-lg) var(--s-md);
}

.tier-block.tier-premium {
  background: var(--ink);
  color: var(--cream);
}

.tier-label {
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

.tier-price {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 4px;
}

.tier-period {
  font-size: var(--t-xs);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-60);
  margin-bottom: var(--s-md);
  display: block;
}

.tier-premium .tier-period { color: rgba(246,245,241,0.45); }

.tier-divider {
  height: 1px;
  background: var(--ink-12);
  margin: var(--s-md) 0;
}

.tier-premium .tier-divider { background: rgba(246,245,241,0.12); }

.tier-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: var(--s-md);
}

.tier-list li {
  font-size: var(--t-sm);
  line-height: 1.5;
  padding-left: 20px;
  position: relative;
  color: var(--ink-60);
}

.tier-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 600;
}

.tier-premium .tier-list li { color: rgba(246,245,241,0.72); }

/* === PHASE GRID (Executive) === */
.phase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--ink-12);
  border-left: 1px solid var(--ink-12);
  margin: var(--s-lg) 0;
}

.phase-block {
  padding: var(--s-lg) var(--s-md);
  border-right: 1px solid var(--ink-12);
  border-bottom: 1px solid var(--ink-12);
}

.phase-num {
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 800;
  color: var(--ink-12);
  line-height: 1;
  letter-spacing: -0.05em;
  margin-bottom: 16px;
  display: block;
}

.phase-label {
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
  display: block;
}

.phase-title {
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}

.phase-weeks {
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-60);
  margin-bottom: 20px;
  display: block;
}

.phase-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.phase-list li {
  font-size: var(--t-sm);
  color: var(--ink-60);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}

.phase-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* === PRICE / INVESTMENT BOX (Executive) === */
.invest-box {
  border-top: 1px solid var(--ink-12);
  border-bottom: 1px solid var(--ink-12);
  padding: var(--s-lg) 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-lg);
  align-items: start;
  margin-top: var(--s-lg);
}

.invest-figure {
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 8px;
}

.invest-sub {
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-60);
}

.commitment-block {
  border-left: 3px solid var(--gold);
  padding-left: var(--s-sm);
}

.commitment-block p {
  font-size: var(--t-sm);
  line-height: 1.65;
  color: var(--ink-60);
}

/* === LEAD MAGNET BAR (CV page) === */
.lead-bar {
  background: var(--ink);
  color: var(--cream);
  padding: var(--s-lg) var(--s-md);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--s-md);
  align-items: center;
  margin: var(--s-lg) 0;
}

.lead-bar-text h3 { color: var(--cream); margin-bottom: 8px; }
.lead-bar-text p  { font-size: var(--t-sm); color: rgba(246,245,241,0.55); }

/* === 1:1 OFFER BLOCKS === */
.coaching-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--ink-12);
  border: 1px solid var(--ink-12);
  margin-bottom: var(--s-lg);
}

.coaching-block {
  background: var(--cream);
  padding: var(--s-lg) var(--s-md);
}

.coaching-type {
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}

.coaching-price {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 4px;
}

.coaching-duration {
  font-size: var(--t-xs);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-60);
  margin-bottom: var(--s-md);
  display: block;
}

.coaching-includes {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: var(--s-md);
}

.coaching-includes li {
  font-size: var(--t-sm);
  color: var(--ink-60);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}

.coaching-includes li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* Calendly embed wrapper */
.calendly-wrap {
  border: 1px solid var(--ink-12);
  overflow: hidden;
}

/* === MECA IMAGE BLOCK === */
.meca-img-block {
  width: 100%;
  overflow: hidden;
  margin: var(--s-lg) 0;
}

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

/* === FOOTER === */
.footer {
  border-top: 1px solid var(--ink-12);
  padding: var(--s-lg) var(--gutter);
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s-md);
}

.footer-copy {
  font-size: var(--t-xs);
  color: var(--ink-60);
  letter-spacing: 0.04em;
}

.footer-links {
  display: flex;
  gap: var(--s-md);
}

.footer-links a {
  font-size: var(--t-xs);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-60);
  transition: color 0.15s;
}

.footer-links a:hover { color: var(--ink); }

/* Application badge */
.application-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--ink-12);
  padding: 7px 16px;
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-60);
  margin-bottom: var(--s-md);
}

.application-badge::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* Section number (editorial page marker) */
.section-marker {
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-30);
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.section-marker::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--ink-12);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 900px) {
  :root {
    --s-lg: 48px;
    --s-xl: 72px;
    --s-2xl: 96px;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    padding: 32px var(--gutter);
    gap: 28px;
    border-top: 1px solid var(--ink-12);
    z-index: 190;
  }

  .nav-links.is-open { display: flex; }
  .nav-links a { font-size: var(--t-base); }

  .nav-toggle { display: flex; }

  .two-col, .two-col-wide, .two-col-narrow,
  .tier-wrap, .phase-grid, .invest-box, .coaching-grid { grid-template-columns: 1fr; }

  .offer-editorial { grid-template-columns: 1fr; }

  .cred-strip { flex-wrap: wrap; }
  .cred-item { flex: 1 1 50%; }
  .cred-item:nth-child(even) { border-right: none; }
  .cred-item:nth-child(n+3) { border-top: 1px solid var(--ink-12); }

  .lead-bar { grid-template-columns: 1fr; }

  .footer { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 600px) {
  :root {
    --s-lg: 40px;
    --s-xl: 56px;
    --gutter: 20px;
  }

  .cred-item { flex: 1 1 100%; border-right: none; border-top: 1px solid var(--ink-12); }
  .cred-item:first-child { border-top: none; }

  .footer-links { flex-direction: column; gap: 16px; }
}

/* === RECOMMENDATIONS TICKER === */
.ticker{overflow:hidden;background:var(--teal);color:var(--cream);border-top:1px solid rgba(194,164,92,.3);border-bottom:1px solid rgba(194,164,92,.3);padding:13px 0;position:sticky;top:68px;z-index:150}
.ticker-track{display:flex;align-items:center;gap:40px;width:max-content;animation:tick 55s linear infinite}
.ticker:hover .ticker-track{animation-play-state:paused}
.tk{font-size:13px;color:rgba(246,241,230,.7);white-space:nowrap}
.tk b{color:#F6F1E6;font-weight:700}
.tk-star{color:var(--gold);font-size:11px}
@keyframes tick{from{transform:translateX(0)}to{transform:translateX(-50%)}}
@media(max-width:600px){.ticker{display:none}.nav-role{display:none}}
html{overflow-x:clip}

/* === LONDON EVENT NAV BADGE === */
.nav-links .nav-event{display:inline-flex;align-items:center;gap:7px;color:var(--ink)!important;background:var(--gold);padding:6px 13px;border-radius:40px;font-weight:800;letter-spacing:.06em;text-transform:uppercase;font-size:var(--t-xs);animation:evflash 1.3s ease-in-out infinite}
.nav-links .nav-event .ev-dot{background:var(--ink);animation:none;box-shadow:none}
.nav-links .nav-event:hover{color:var(--ink);animation-play-state:paused;background:#D9C081}
@keyframes evflash{0%,100%{opacity:1;box-shadow:0 0 0 0 rgba(194,164,92,.5)}50%{opacity:.55;box-shadow:0 0 16px 3px rgba(194,164,92,.6)}}
.ev-dot{width:7px;height:7px;border-radius:50%;background:var(--gold);box-shadow:0 0 0 0 rgba(194,164,92,.55);animation:evpulse 1.8s ease-out infinite;flex-shrink:0}
@keyframes evpulse{0%{box-shadow:0 0 0 0 rgba(194,164,92,.55)}70%{box-shadow:0 0 0 8px rgba(194,164,92,0)}100%{box-shadow:0 0 0 0 rgba(194,164,92,0)}}

/* === LONDON EVENT TOP BANNER === */
.event-bar{display:flex;align-items:center;justify-content:center;gap:14px;flex-wrap:wrap;background:#1A1813;color:rgba(246,241,230,.8);font-size:12.5px;font-weight:600;padding:11px 16px;text-align:center;letter-spacing:.02em;border-bottom:1px solid rgba(194,164,92,.35)}
.event-bar b{color:#C2A45C;font-weight:800}
.event-bar .eb-cta{color:#C2A45C;font-weight:800;text-decoration:underline;text-underline-offset:3px;white-space:nowrap}
.event-bar:hover .eb-cta{color:#D4B96A}
@media(max-width:680px){.event-bar .eb-mid{display:none}.event-bar{gap:10px;font-size:12px}}
