/* ============================================================
   PAGE: SPEAKING 
   Only styles unique to this page. Global styles in global.css.
   Note: ph-block, ph-block-icon, ph-block-lbl live in global.css
   ============================================================ */

/* ── HERO ────────────────────────────────────────────────── */
.sp-hero {
  min-height: 90vh;
  background: var(--navy);
  display: grid;
  grid-template-columns: 55% 45%;
  position: relative;
  overflow: hidden;
}
.sph-atm {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 55% 60% at 85% 30%, rgba(45,107,116,.18) 0%, transparent 60%),
    radial-gradient(ellipse 40% 45% at 10% 75%, rgba(125,31,46,.15) 0%, transparent 55%),
    radial-gradient(ellipse 30% 35% at 50%  8%, rgba(201,168,76,.05) 0%, transparent 50%);
}
.sph-gt {
  position: absolute; inset: 0; pointer-events: none; opacity: .028;
  background-image:
    linear-gradient(rgba(201,168,76,1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,1) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 20%, black 80%, transparent 100%);
}
.sph-orb-1 { width:500px; height:500px; top:-120px; right:-80px;   animation: floatA 13s ease-in-out infinite; }
.sph-orb-2 { width:280px; height:280px; bottom:-60px; left:10%;    animation: floatB 11s ease-in-out infinite 2s; }
.sph-orb-3 { width:160px; height:160px; top:35%; right:20%;        animation: pulseRing 8s ease-in-out infinite; }

/* Left: copy column */
.sh-inner {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: clamp(100px,14vh,140px) clamp(28px,5vw,60px) clamp(60px,8vw,90px) clamp(28px,7vw,10vw);
}
.sh-ey {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: .62rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 28px;
  animation: riseIn .9s cubic-bezier(.22,1,.36,1) .15s both;
}
.sh-ey::before { content: ''; width: 30px; height: 1px; background: var(--gold); flex-shrink: 0; }
.sh-h1 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.8vw, 4.6rem);
  font-weight: 400; line-height: 1.07; color: #fff; margin-bottom: 28px;
  animation: riseIn 1s cubic-bezier(.22,1,.36,1) .3s both;
}
.sh-h1 em                      { color: var(--gold); font-style: italic; }
.sh-sub {
  font-size: clamp(.85rem, 1.3vw, .96rem);
  color: rgba(255,255,255,.5); max-width: 460px;
  line-height: 1.88; margin-bottom: 38px;
  animation: riseIn .95s cubic-bezier(.22,1,.36,1) .45s both;
}
.sh-btns {
  display: flex; flex-wrap: wrap; gap: 12px;
  animation: riseIn .9s cubic-bezier(.22,1,.36,1) .6s both;
}
.sh-scroll {
  position: absolute; bottom: 32px; left: clamp(28px,7vw,10vw); z-index: 3;
  display: flex; align-items: center; gap: 12px;
  font-size: .58rem; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.2);
  animation: riseIn .9s cubic-bezier(.22,1,.36,1) .9s both;
}
.sh-scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(201,168,76,.6), transparent);
  animation: pulse 2.5s infinite;
}

/* Right: photo column */
.sph-photo { position: relative; z-index: 2; overflow: hidden; }
.sph-photo::after {
  content: ''; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background:
    linear-gradient(to right, var(--navy) 0%, rgba(13,27,42,.22) 20%, transparent 42%),
    linear-gradient(to top,   var(--navy) 0%, transparent 22%);
}

/* ── SECTION: SHORT BIO STRIP ────────────────────────────── */
.s-bio {
  background: var(--navy);
  padding: clamp(56px,8vw,80px) 0;
  border-top: 1px solid rgba(201,168,76,.1);
  position: relative; overflow: hidden;
}
.bio-orb { width:400px; height:400px; top:-100px; right:-80px; animation: floatA 16s ease-in-out infinite; }
.bio-inner {
  display: grid; grid-template-columns: 1fr 2px 1fr;
  gap: clamp(32px,5vw,64px); align-items: center;
  position: relative; z-index: 1;
}
.bio-divider {
  background: linear-gradient(to bottom, transparent, rgba(201,168,76,.25), transparent);
  align-self: stretch;
}
.bio-left                      { padding: clamp(20px,3vw,32px) 0; }
.bio-tag {
  font-size: .58rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: rgba(201,168,76,.5); margin-bottom: 14px;
}
.bio-left p {
  font-size: clamp(.88rem, 1.3vw, .98rem);
  color: rgba(255,255,255,.5); line-height: 1.9; margin-bottom: 14px;
}
.bio-left p:last-child          { margin-bottom: 0; }
.bio-right                      { padding: clamp(20px,3vw,32px) 0; }
.bio-tagline {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-style: italic; color: #fff; line-height: 1.35; margin-bottom: 20px;
}
.bio-tagline em                 { color: var(--gold); }
.bio-mark {
  font-size: .62rem; font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase; color: rgba(201,168,76,.35);
}

/* ── SECTION: SIGNATURE TALK ─────────────────────────────── */
.s-talk {
  background: var(--cream);
  padding: clamp(80px,11vw,130px) 0;
  border-top: 1px solid var(--rule);
  position: relative; overflow: hidden;
}
.talk-orb-1 { width:450px; height:450px; top:-100px; right:-100px; animation: floatB 15s ease-in-out infinite; }
.talk-orb-2 { width:260px; height:260px; bottom:-60px; left:-60px;  animation: pulseRing 10s ease-in-out infinite 2s; }
.talk-g {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(48px,8vw,100px); align-items: start;
  position: relative; z-index: 1;
}
.talk-copy .ey                  { margin-bottom: 8px; }
.talk-label {
  font-size: .58rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--burg); margin-bottom: 24px;
}
.talk-copy h2 {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  color: var(--navy); line-height: 1.1; font-weight: 400; margin-bottom: 10px;
}
.talk-copy h2 em                { color: var(--burg); font-style: italic; }
.talk-subtitle {
  font-size: clamp(.85rem, 1.3vw, .95rem);
  color: var(--text-lt); font-style: italic;
  margin-bottom: clamp(24px,3.5vw,36px); line-height: 1.6;
}
.talk-copy p {
  font-size: clamp(.9rem, 1.35vw, 1rem);
  color: var(--text-md); line-height: 1.9; margin-bottom: 18px;
}

/* Outcomes list */
.talk-outcomes                  { margin-top: clamp(28px,4vw,40px); }
.talk-outcomes-label {
  font-size: .6rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--navy); margin-bottom: 18px;
  padding-bottom: 12px; border-bottom: 1px solid var(--rule);
}
.talk-outcome {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 18px 0; border-bottom: 1px solid var(--rule);
}
.talk-outcome:last-child        { border-bottom: none; }
.to-icon {
  width: 36px; height: 36px; border-radius: 50%;
  flex-shrink: 0; display: flex;
  align-items: center; justify-content: center; font-size: .85rem;
}
.to-icon.gold                   { background: rgba(201,168,76,.12); color: var(--gold-dk); }
.to-icon.burg                   { background: rgba(125,31,46,.08);  color: var(--burg); }
.to-icon.teal                   { background: rgba(45,107,116,.08); color: var(--teal); }
.to-title {
  font-size: .65rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--navy); margin-bottom: 5px;
}
.to-desc {
  font-size: clamp(.84rem, 1.2vw, .92rem);
  color: var(--text-md); line-height: 1.72;
}

/* Talk visual column */
.talk-vis                       { position: relative; }
.talk-photo { width: 100%; aspect-ratio: 3/4; margin-bottom: 3px; }
.talk-photo-strip               { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; }
.talk-photo-strip .ph-block     { aspect-ratio: 4/3; }
.talk-stat {
  position: absolute; bottom: clamp(80px,11vw,100px); left: -24px;
  background: #fff; border: 1px solid var(--rule);
  border-left: 4px solid var(--gold);
  padding: 18px 24px; box-shadow: 0 8px 32px rgba(13,27,42,.1);
}
.ts-n { font-family: var(--serif); font-size: 2rem; color: var(--navy); line-height: 1; }
.ts-l {
  font-size: .6rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--text-lt); margin-top: 4px;
}

/* ── SECTION: SPEAKING TOPICS ────────────────────────────── */
.s-topics {
  background: var(--navy);
  padding: clamp(80px,11vw,130px) 0;
  position: relative; overflow: hidden;
}
.topics-orb-1 { width:480px; height:480px; top:-100px; left:-100px; animation: floatA 14s ease-in-out infinite; }
.topics-orb-2 { width:260px; height:260px; bottom:-60px; right:-60px; animation: pulseRing 9s ease-in-out infinite 3s; }
.topics-sh {
  text-align: center; margin-bottom: clamp(48px,7vw,72px);
  position: relative; z-index: 1;
}
.topics-sh h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.4rem); color: #fff; line-height: 1.1; margin-top: 14px;
}
.topics-sh h2 em                { color: var(--gold); }

/* 2-column topic card grid */
.topics-g {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2px; position: relative; z-index: 1;
}
.topic-c {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(201,168,76,.08);
  padding: clamp(28px,4vw,44px) clamp(22px,3.5vw,36px);
  position: relative; overflow: hidden;
  transition: background .3s, border-color .3s;
}
.topic-c:hover                  { background: rgba(201,168,76,.04); border-color: rgba(201,168,76,.18); }

/* Coloured top stripe — unique per nth-child */
.topic-c-stripe { height: 3px; position: absolute; top: 0; left: 0; right: 0; }
.topic-c:nth-child(1) .topic-c-stripe { background: linear-gradient(to right, var(--gold),    transparent); }
.topic-c:nth-child(2) .topic-c-stripe { background: linear-gradient(to right, var(--burg),    transparent); }
.topic-c:nth-child(3) .topic-c-stripe { background: linear-gradient(to right, var(--teal),    transparent); }
.topic-c:nth-child(4) .topic-c-stripe { background: linear-gradient(to right, var(--navy-md), transparent); }
.topic-c:nth-child(5) .topic-c-stripe { background: linear-gradient(to right, var(--gold-dk), transparent); }

/* Ghost number watermark */
.topic-num {
  font-family: var(--serif); font-size: 4rem;
  color: rgba(201,168,76,.05); line-height: 1;
  position: absolute; bottom: 12px; right: 20px;
  font-weight: 300; pointer-events: none;
}
.topic-tag {
  font-size: .58rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  color: rgba(201,168,76,.4); margin-bottom: 12px;
}
.topic-c h3 {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.8vw, 1.5rem); color: #fff;
  font-weight: 400; line-height: 1.18; margin-bottom: 10px;
}
.topic-c p {
  font-size: clamp(.84rem, 1.15vw, .9rem);
  color: rgba(255,255,255,.38); line-height: 1.75;
}
/* 5th card spans full width */
.topic-c:last-child             { grid-column: 1 / -1; }

/* ── SECTION: FEE + BOOKING ──────────────────────────────── */
.s-fee {
  background: var(--warm);
  padding: clamp(80px,11vw,130px) 0;
  border-top: 1px solid var(--rule);
  position: relative; overflow: hidden;
}
.fee-orb-1 { width:420px; height:420px; top:-80px; right:-80px; animation: floatB 16s ease-in-out infinite; }
.fee-g {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(48px,8vw,100px); align-items: center;
  position: relative; z-index: 1;
}
.fee-copy h2 {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  color: var(--navy); line-height: 1.12; font-weight: 400;
  margin-bottom: clamp(16px,2.5vw,24px);
}
.fee-copy h2 em                 { color: var(--burg); font-style: italic; }
.fee-price {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  color: var(--navy); font-weight: 300; line-height: 1;
  margin: clamp(20px,3vw,32px) 0 8px;
}
.fee-price span                 { color: var(--gold); }
.fee-note {
  font-size: .75rem; color: var(--text-lt);
  font-style: italic; margin-bottom: clamp(24px,3.5vw,36px);
}
.fee-formats                    { display: flex; flex-direction: column; gap: 8px; margin-bottom: clamp(28px,4vw,40px); }
.fee-format {
  display: flex; align-items: center; gap: 14px;
  font-size: .88rem; color: var(--text-md);
  padding: 12px 16px; background: var(--cream);
  border-left: 3px solid var(--gold);
}
.fee-format::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0;
}
.fee-btns                       { display: flex; flex-wrap: wrap; gap: 12px; }

/* Fee visual column */
.fee-vis                        { position: relative; }
.fee-photo { width: 100%; aspect-ratio: 4/5; }
.fee-badge {
  position: absolute; top: 28px; right: -20px;
  background: var(--navy); border: 1px solid rgba(201,168,76,.2);
  padding: 20px 24px; box-shadow: 0 8px 32px rgba(13,27,42,.15);
}
.fee-badge-n { font-family: var(--serif); font-size: 1.75rem; color: var(--gold); line-height: 1; }
.fee-badge-l {
  font-size: .6rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(255,255,255,.4); margin-top: 5px;
}

/* ── SECTION: CLOSE CTA ──────────────────────────────────── */
.s-cta-sp {
  background: var(--burg);
  padding: clamp(90px,13vw,150px) clamp(20px,5vw,64px);
  text-align: center; position: relative; overflow: hidden;
}
/* Orbs on burg background use transparent rings */
.cta-sp-orb-1 { width:440px; height:440px; top:-100px; left:-100px; animation: floatA 16s ease-in-out infinite; background: transparent; border: 1px solid rgba(201,168,76,.08); }
.cta-sp-orb-2 { width:280px; height:280px; bottom:-70px; right:-70px; animation: pulseRing 12s ease-in-out infinite 3s; background: transparent; border: 1px solid rgba(201,168,76,.06); }
.cta-sp-atm {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 65% 65% at 50% 50%, rgba(201,168,76,.08) 0%, transparent 65%),
    linear-gradient(135deg, rgba(0,0,0,.15) 0%, transparent 55%);
}
.cta-sp-in { max-width: 720px; margin: 0 auto; position: relative; z-index: 1; }
.cta-sp-vl {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, transparent, rgba(232,213,160,.5), transparent);
  margin: 0 auto 36px;
}
.cta-sp-in h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  color: var(--gold-lt); line-height: 1.1; margin-bottom: 16px;
}
.cta-sp-in p {
  color: rgba(255,255,255,.65);
  font-size: clamp(.9rem, 1.35vw, 1.02rem);
  line-height: 1.85; max-width: 500px; margin: 0 auto 44px;
}

/* ── RESPONSIVE: TABLET 960px ───────────────────────────── */
@media (max-width: 960px) {
  .sp-hero         { grid-template-columns: 1fr; }
  .sph-photo       { display: none; }
  .sh-inner        { padding-bottom: clamp(48px,7vw,72px); }
  .bio-inner       { grid-template-columns: 1fr; gap: 0; }
  .bio-divider     { display: none; }
  .bio-right       { border-top: 1px solid rgba(201,168,76,.1); padding-top: clamp(24px,4vw,36px); }
  .talk-g          { grid-template-columns: 1fr; }
  .talk-vis        { order: -1; }
  .talk-stat       { left: 0; bottom: auto; top: clamp(180px,25vw,260px); }
  .topics-g        { grid-template-columns: 1fr; }
  .topic-c:last-child { grid-column: auto; }
  .fee-g           { grid-template-columns: 1fr; }
  .fee-vis         { display: none; }
}

/* ── RESPONSIVE: MOBILE 640px ───────────────────────────── */
@media (max-width: 640px) {
  .sh-inner        { padding: 90px 24px 48px; }
  .sh-h1           { font-size: 2.1rem; line-height: 1.1; }
  .sh-btns         { flex-direction: column; align-items: stretch; }
  .sh-btns .bp,
  .sh-btns .bo-lt  { justify-content: center; }
  .bio-tagline     { font-size: 1.35rem; }
  .talk-copy h2    { font-size: 1.8rem; }
  .talk-photo-strip { grid-template-columns: 1fr; }
  .talk-stat       { position: static; margin-top: 12px; border-left: 4px solid var(--gold); }
  .topics-sh h2    { font-size: 1.85rem; }
  .topic-c         { padding: 24px 20px; }
  .fee-copy h2     { font-size: 1.8rem; }
  .fee-formats     { gap: 6px; }
  .fee-btns        { flex-direction: column; align-items: stretch; }
  .fee-btns .bp,
  .fee-btns .bt    { justify-content: center; }
  .cta-sp-in h2    { font-size: 1.85rem; }
}

/* ── RESPONSIVE: SMALL MOBILE 380px ─────────────────────── */
@media (max-width: 380px) {
  .sh-h1           { font-size: 1.85rem; }
  .fee-price       { font-size: 2.2rem; }
  .cta-sp-in h2    { font-size: 1.6rem; }
}

/* ── TOUCH DEVICES ───────────────────────────────────────── */
@media (hover: none) {
  .topic-c:hover   { background: rgba(255,255,255,.03); border-color: rgba(201,168,76,.08); }
}