/* ================================================================
   JDM — INNER PAGES SHARED CSS
   (about, speaking, contact)
   ================================================================ */

/* ══ PAGE HERO (shared) ══ */
.page-hero {
  padding-top: calc(var(--nav-h) + 4rem);
  padding-bottom: 4rem;
  padding-inline: var(--gutter);
  position: relative;
  overflow: hidden;
  background: var(--ink);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.ph-glow-1 {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,163,90,0.1) 0%, transparent 70%);
  top: -200px; right: -100px;
  filter: blur(60px);
}

.ph-glow-2 {
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14,230,245,0.05) 0%, transparent 70%);
  bottom: -100px; left: 0;
  filter: blur(80px);
}

.ph-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(196,163,90,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196,163,90,0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 65%);
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 4rem;
  align-items: center;
}

.page-hero-text { display: flex; flex-direction: column; }

/* About hero extra */
.about-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 1.5rem;
}

/* ══ ABOUT PAGE ══ */

/* Portrait in about hero */
.about-hero-portrait { position: relative; }

.ahp-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.ahp-frame img {
  width: 100%;
  display: block;
  background: var(--ink-2);
  border-radius: 20px;
  filter: drop-shadow(0 32px 64px rgba(0,0,0,0.6));
}

.ahp-frame::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 26px;
  background: linear-gradient(135deg, var(--gold), transparent 55%, rgba(14,230,245,0.3));
  z-index: -1;
  opacity: 0.35;
}

.ahp-accent-line {
  position: absolute;
  background: var(--gold);
  border-radius: 2px;
  opacity: 0.4;
}
.ahp-line-1 { width: 2px; height: 60px; top: 0; right: -16px; }
.ahp-line-2 { width: 60px; height: 2px; bottom: -16px; left: 0; }

/* Stat bar under portrait */
.about-stat-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  margin-top: 1rem;
}

.ab-stat {
  background: var(--ink-2);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.ab-stat-n {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
}

.ab-stat-l {
  font-family: var(--font-mono);
  font-size: 0.5rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

/* Story section */
.story-section { background: var(--ink-2); }

.story-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 5rem;
  align-items: start;
}

.story-body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1.75rem;
}

.story-body p {
  font-size: 1rem;
  color: var(--cream-dim);
  line-height: 1.8;
}

.story-body strong { color: var(--cream); font-weight: 600; }

/* Timeline */
.story-timeline {
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
  padding-left: 2rem;
}

.timeline-line {
  position: absolute;
  left: 0;
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold), var(--cyan), transparent);
  opacity: 0.3;
}

.tl-item {
  position: relative;
  padding: 0 0 2.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.tl-dot {
  position: absolute;
  left: -2.375rem;
  top: 4px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--ink-3);
  border: 1px solid var(--gold);
  box-shadow: 0 0 8px rgba(196,163,90,0.3);
}

.tl-dot-gold  { background: var(--gold);  border-color: var(--gold-bright); box-shadow: 0 0 12px rgba(196,163,90,0.5); }
.tl-dot-cyan  { background: var(--cyan);  border-color: var(--cyan); box-shadow: 0 0 12px rgba(14,230,245,0.4); }

.tl-year {
  font-family: var(--font-mono);
  font-size: 0.5625rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.tl-content h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.25rem;
  letter-spacing: -0.01em;
}

.tl-content p {
  font-size: 0.8125rem;
  color: var(--cream-dim);
  line-height: 1.65;
}

/* Expertise section */
.expertise-section { background: var(--ink); }

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

.exp-card { padding: 2rem; }

.exp-icon {
  width: 48px; height: 48px;
  border-radius: 10px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  transition: all 300ms var(--ease-out);
}

.exp-card:hover .exp-icon { background: var(--gold); color: var(--ink); }

.exp-card h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.625rem;
}

.exp-card p { font-size: 0.875rem; color: var(--cream-dim); line-height: 1.7; }

/* Values section */
.values-section { background: var(--ink-2); }

.values-inner {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 5rem;
  align-items: start;
}

.values-right {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.value-item {
  display: flex;
  gap: 1.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
  transition: border-color 300ms;
}

.value-item:first-child { border-top: 1px solid var(--border); }
.value-item:hover { border-color: var(--gold-border); }

.vi-num {
  font-family: var(--font-mono);
  font-size: 0.5625rem;
  letter-spacing: 0.2em;
  color: rgba(196,163,90,0.35);
  padding-top: 4px;
  flex-shrink: 0;
  width: 24px;
}

.vi-body h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.vi-body p { font-size: 0.875rem; color: var(--cream-dim); line-height: 1.7; }

/* Ecosystem section */
.ecosystem-section { background: var(--ink); }

.eco-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 3.5rem;
}

.eco-card {
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  text-decoration: none;
  color: inherit;
}

.eco-card-flag {
  font-size: 2rem;
  line-height: 1;
}

.eco-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: -0.01em;
}

.eco-card p {
  font-size: 0.8125rem;
  color: var(--cream-dim);
  line-height: 1.65;
  flex: 1;
}

.eco-link-label {
  font-family: var(--font-mono);
  font-size: 0.5625rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 300ms var(--ease-out);
}
.eco-card:hover .eco-link-label { gap: 12px; }

.eco-socials {
  display: flex;
  gap: 8px;
}

.eco-socials a {
  width: 34px; height: 34px;
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--cream-dim);
  font-size: 0.875rem;
  transition: all 300ms var(--ease-out);
}
.eco-socials a:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

/* Inner CTA strip */
.inner-cta { background: var(--ink-2); }

.inner-cta-box {
  background: linear-gradient(150deg, rgba(196,163,90,0.07), rgba(14,230,245,0.03));
  border: 1px solid var(--gold-border);
  border-radius: 24px;
  padding: 4rem 3rem;
  text-align: center;
  max-width: 820px;
  margin-inline: auto;
  position: relative;
  overflow: hidden;
}

.inner-cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(196,163,90,0.08), transparent);
  pointer-events: none;
}

.inner-cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
  position: relative;
  z-index: 1;
}

/* ══ SPEAKING PAGE ══ */

/* Hero layout variant */
.speak-hero-layout {
  grid-template-columns: 1fr 420px;
}

.speak-availability {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-top: 1.5rem;
}

.sa-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.9375rem;
  color: var(--cream-dim);
}

.sa-item i { color: var(--gold); font-size: 0.875rem; }

/* Speaking hero visual */
.speak-hero-visual {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.shv-portrait-wrap { position: relative; }

.shv-portrait {
  width: 100%;
  display: block;
  border-radius: 20px;
  filter: drop-shadow(0 32px 64px rgba(0,0,0,0.55));
}

.shv-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse at center, rgba(196,163,90,0.12), transparent 70%);
  pointer-events: none;
}

.shv-stat-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}

.shv-stat-card {
  background: var(--ink-2);
  padding: 1rem 0.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.shv-stat-n {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}

.shv-stat-l {
  font-family: var(--font-mono);
  font-size: 0.5rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-dim);
  text-align: center;
}

/* Topics grid */
.topics-section { background: var(--ink-2); }

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

.topic-card {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.tc-number {
  font-family: var(--font-mono);
  font-size: 0.5rem;
  letter-spacing: 0.22em;
  color: rgba(196,163,90,0.3);
}

.tc-icon {
  width: 48px; height: 48px;
  border-radius: 10px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  transition: all 300ms var(--ease-out);
}

.topic-card:hover .tc-icon { background: var(--gold); color: var(--ink); }

.topic-card h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: -0.01em;
}

.tc-tagline {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-style: italic;
  color: var(--gold);
}

.tc-body {
  font-size: 0.875rem;
  color: var(--cream-dim);
  line-height: 1.7;
  flex: 1;
}

.tc-details {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  padding-top: 0.875rem;
  border-top: 1px solid var(--border);
  margin-top: auto;
}

.tc-detail {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: rgba(160,152,144,0.6);
}

.tc-detail i { color: var(--gold); font-size: 0.625rem; width: 12px; }

/* Custom topic card */
.topic-card-custom {
  background: linear-gradient(145deg, rgba(196,163,90,0.05), rgba(14,230,245,0.03));
  border-color: var(--gold-border);
}

/* Formats section */
.formats-section { background: var(--ink); }

.formats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 3.5rem;
}

.format-item {
  padding: 2rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  transition: all 300ms var(--ease-out);
}

.format-item:hover {
  border-color: var(--gold-border);
  background: var(--ink-2);
  transform: translateY(-4px);
}

.fi-icon {
  width: 48px; height: 48px;
  border-radius: 10px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  transition: all 300ms var(--ease-out);
}

.format-item:hover .fi-icon { background: var(--gold); color: var(--ink); }

.format-item h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--cream);
}

.format-item > p {
  font-size: 0.875rem;
  color: var(--cream-dim);
  line-height: 1.7;
}

.fi-list {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  border-top: 1px solid var(--border);
  padding-top: 0.875rem;
  margin-top: auto;
}

.fi-list li {
  font-size: 0.75rem;
  color: rgba(160,152,144,0.6);
  padding-left: 1rem;
  position: relative;
}

.fi-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.625rem;
}

/* Testimonials */
.testimonials-section { background: var(--ink-2); }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3.5rem;
}

.testi-card {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.testi-stars {
  display: flex;
  gap: 3px;
  color: var(--gold);
  font-size: 0.75rem;
}

.testi-card > p {
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  font-weight: 300;
  color: var(--cream);
  line-height: 1.65;
  flex: 1;
}

.testi-card footer { padding-top: 1rem; border-top: 1px solid var(--border); }

.testi-card footer strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--cream);
}

.testi-card footer span {
  font-family: var(--font-mono);
  font-size: 0.5625rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Booking section */
.booking-section { background: var(--ink); }

.booking-inner {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 5rem;
  align-items: start;
}

/* Booking contact methods */
.booking-contact-methods {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2rem;
}

.bcm-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--ink-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: all 300ms var(--ease-out);
}

.bcm-item:hover { border-color: var(--gold-border); transform: translateX(4px); }

.bcm-icon {
  width: 38px; height: 38px;
  border-radius: 8px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.bcm-item strong { display: block; font-size: 0.875rem; font-weight: 600; color: var(--cream); margin-bottom: 1px; }
.bcm-item span   { font-size: 0.75rem; color: var(--cream-dim); }

/* Quick facts */
.booking-quick-facts {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-top: 1.75rem;
}

.bqf-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: var(--cream-dim);
}

.bqf-item i { color: var(--gold); font-size: 0.8125rem; }

/* Booking form wrap */
.booking-form-wrap {
  background: var(--ink-2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-success-msg {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 1.25rem;
  background: rgba(14,230,245,0.06);
  border: 1px solid rgba(14,230,245,0.2);
  border-radius: 10px;
  margin-bottom: 1.5rem;
}

.form-success-msg i { color: var(--cyan); flex-shrink: 0; font-size: 1.1rem; margin-top: 2px; }
.form-success-msg strong { display: block; color: var(--cyan); font-size: 0.9375rem; margin-bottom: 3px; }
.form-success-msg p { font-size: 0.8125rem; color: var(--cream-dim); line-height: 1.55; }

.req-star { color: var(--gold); }

.form-note {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 0.5625rem;
  letter-spacing: 0.1em;
  color: rgba(160,152,144,0.45);
}

.form-note i { color: var(--gold); font-size: 0.5rem; }

.form-check-wrap {
  display: flex;
  flex-direction: column;
}

.form-check-label {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.8125rem;
  color: var(--cream-dim);
  line-height: 1.55;
  cursor: pointer;
}

.form-check-label input[type="checkbox"] {
  width: 15px; height: 15px;
  accent-color: var(--gold);
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ══ CONTACT PAGE ══ */

/* Hero layout for contact */
.contact-hero-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Promise bar */
.contact-promise {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-top: 1.75rem;
}

.cp-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--cream-dim);
}

.cp-item i { color: var(--gold); }

/* Quick contact cards */
.contact-quick-cards {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cqc-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.125rem 1.375rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  transition: all 300ms var(--ease-out);
}

.cqc-item:hover { border-color: var(--gold-border); background: rgba(196,163,90,0.04); transform: translateX(4px); }

.cqc-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 0.9375rem;
  flex-shrink: 0;
}

.cqc-item strong { display: block; font-size: 0.875rem; font-weight: 600; color: var(--cream); margin-bottom: 2px; }
.cqc-item span   { font-size: 0.75rem; color: var(--cream-dim); }

/* Contact layout */
.contact-main { background: var(--ink-2); }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 4rem;
  align-items: start;
}

/* Form wrap */
.contact-form-wrap {
  background: var(--ink-3);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* Sidebar */
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: sticky;
  top: calc(var(--nav-h) + 1.5rem);
}

.contact-info-card {
  background: var(--ink-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
}

.contact-info-card h3 {
  font-family: var(--font-mono);
  font-size: 0.5625rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.125rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ci-list { display: flex; flex-direction: column; gap: 0.875rem; }

.ci-list li a {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  color: inherit;
  text-decoration: none;
  transition: color 200ms;
}

.ci-list li a:hover { color: var(--gold); }

.ci-icon {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 0.8125rem;
  flex-shrink: 0;
}

.ci-icon-static {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--cream-dim);
  font-size: 0.8125rem;
  flex-shrink: 0;
}

.ci-list li a + div,
.ci-list li > div:last-child { flex: 1; }

.ci-list strong { display: block; font-size: 0.8125rem; font-weight: 600; color: var(--cream); margin-bottom: 1px; }
.ci-list span,
.ci-list address { font-size: 0.75rem; color: var(--cream-dim); line-height: 1.5; }

/* Hours table */
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table tr { border-bottom: 1px solid rgba(255,255,255,0.04); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table td { padding: 0.5rem 0; font-size: 0.8125rem; color: var(--cream-dim); }
.hours-table td:last-child { text-align: right; color: var(--cream); font-weight: 500; }
.hours-off { color: rgba(160,152,144,0.4) !important; }

.hours-note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.875rem;
  padding: 0.625rem 0.75rem;
  background: rgba(14,230,245,0.05);
  border: 1px solid rgba(14,230,245,0.12);
  border-radius: 8px;
  font-size: 0.6875rem;
  color: rgba(14,230,245,0.7);
  line-height: 1.4;
}

.hours-note i { color: var(--gold); flex-shrink: 0; }

/* Response times */
.rt-list { display: flex; flex-direction: column; gap: 0.75rem; }

.rt-list li {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  font-size: 0.8125rem;
  color: var(--cream-dim);
}

.rt-badge {
  flex-shrink: 0;
  min-width: 52px;
  padding: 3px 8px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-radius: 99px;
  font-family: var(--font-mono);
  font-size: 0.5625rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-align: center;
}

.rt-badge-gold {
  background: rgba(196,163,90,0.2);
  color: var(--gold-bright);
  border-color: var(--gold);
}

/* Social card */
.contact-social-card {}

.contact-social-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.csn-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--cream-dim);
  font-size: 0.8125rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 300ms var(--ease-out);
}

.csn-btn span { font-family: var(--font-mono); font-size: 0.5625rem; letter-spacing: 0.1em; }
.csn-btn:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-dim); transform: translateY(-2px); }

.contact-eco-links { display: flex; flex-direction: column; gap: 0.5rem; padding-top: 0.875rem; border-top: 1px solid var(--border); }

.cel-link {
  font-size: 0.75rem;
  color: var(--cream-dim);
  text-decoration: none;
  transition: color 200ms;
  line-height: 1.5;
}

.cel-link:hover { color: var(--gold); }

/* Next steps */
.next-steps { background: var(--ink); }

.ns-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-top: 3.5rem;
  flex-wrap: wrap;
}

.ns-step {
  flex: 1;
  min-width: 180px;
  max-width: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.875rem;
  padding: 1.5rem;
  position: relative;
}

.ns-step-num {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 700;
  color: rgba(196,163,90,0.05);
  line-height: 1;
  position: absolute;
  top: -0.5rem; left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  user-select: none;
}

.ns-step-icon {
  position: relative;
  z-index: 1;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(196,163,90,0.12), rgba(14,230,245,0.06));
  border: 1px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1.25rem;
  margin-top: 3rem;
}

.ns-step h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--cream);
}

.ns-step p { font-size: 0.8125rem; color: var(--cream-dim); line-height: 1.65; }

.ns-connector {
  flex-shrink: 0;
  width: 60px; height: 1px;
  background: linear-gradient(90deg, var(--gold), var(--cyan));
  margin-top: calc(3rem + 30px);
  opacity: 0.35;
}

/* ══ RESPONSIVE ══ */
@media (max-width: 1200px) {
  .page-hero-inner       { grid-template-columns: 1fr 380px; gap: 3rem; }
  .speak-hero-layout     { grid-template-columns: 1fr; }
  .speak-hero-visual     { display: none; }
  .contact-hero-inner    { grid-template-columns: 1fr; }
  .contact-quick-cards   { display: none; }
  .booking-inner         { grid-template-columns: 1fr; gap: 3rem; }
  .story-grid            { grid-template-columns: 1fr; }
  .story-timeline        { position: static; border-left: 1px solid var(--border); padding-left: 2rem; margin-top: 2rem; }
  .values-inner          { grid-template-columns: 1fr; gap: 3rem; }
  .eco-grid              { grid-template-columns: repeat(2, 1fr); }
  .expertise-grid        { grid-template-columns: repeat(2, 1fr); }
  .contact-layout        { grid-template-columns: 1fr; }
  .contact-sidebar       { position: static; display: grid; grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1024px) {
  .topics-grid   { grid-template-columns: repeat(2, 1fr); }
  .formats-grid  { grid-template-columns: repeat(2, 1fr); }
  .testi-grid    { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .page-hero-inner    { grid-template-columns: 1fr; }
  .about-hero-portrait { display: none; }
}

@media (max-width: 768px) {
  .topics-grid          { grid-template-columns: 1fr; }
  .formats-grid         { grid-template-columns: 1fr; }
  .testi-grid           { grid-template-columns: 1fr; }
  .expertise-grid       { grid-template-columns: 1fr; }
  .eco-grid             { grid-template-columns: 1fr; }
  .form-row-2           { grid-template-columns: 1fr; }
  .booking-form-wrap    { padding: 1.5rem; }
  .contact-form-wrap    { padding: 1.5rem; }
  .contact-sidebar      { grid-template-columns: 1fr; }
  .shv-stat-cards       { grid-template-columns: repeat(3, 1fr); }
  .ns-steps             { flex-direction: column; align-items: center; }
  .ns-connector         { display: none; }
  .inner-cta-btns       { flex-direction: column; }
}

@media (max-width: 480px) {
  .about-stat-bar       { grid-template-columns: repeat(3, 1fr); }
  .contact-social-grid  { grid-template-columns: 1fr 1fr; }
  .speak-availability   { gap: 0.5rem; }
}
