@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Inter:wght@400;500;600;700&display=swap");

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #f8f3ea;
  color: #2a211c;
  font-family: Inter, Avenir, Helvetica, Arial, sans-serif;
}

.bg-evergreen { background-color: #082f28; }
.bg-pine { background-color: #123f34; }
.bg-emerald-deep { background-color: #06231f; }
.bg-ivory { background-color: #f8f3ea; }
.bg-cream { background-color: #efe4d2; }
.bg-linen { background-color: #fbf7ef; }
.bg-cocoa { background-color: #2a211c; }
.bg-champagne { background-color: #c7a462; }
.bg-champagne\/20 { background-color: rgba(199, 164, 98, .20); }
.bg-white\/7 { background-color: rgba(255, 255, 255, .07); }
.bg-white\/14 { background-color: rgba(255, 255, 255, .14); }
.bg-white\/45 { background-color: rgba(255, 255, 255, .45); }
.bg-white\/50 { background-color: rgba(255, 255, 255, .5); }
.bg-white\/60 { background-color: rgba(255, 255, 255, .6); }
.bg-white\/70 { background-color: rgba(255, 255, 255, .7); }
.bg-ivory\/82 { background-color: rgba(248, 243, 234, .82); }
.bg-ivory\/95 { background-color: rgba(248, 243, 234, .95); }

.text-evergreen { color: #082f28; }
.text-pine { color: #123f34; }
.text-ivory { color: #f8f3ea; }
.text-champagne { color: #c7a462; }
.text-cocoa { color: #2a211c; }
.text-taupe { color: #a8957c; }
.text-cocoa\/65 { color: rgba(42, 33, 28, .65); }
.text-cocoa\/68 { color: rgba(42, 33, 28, .68); }
.text-cocoa\/70 { color: rgba(42, 33, 28, .70); }
.text-cocoa\/72 { color: rgba(42, 33, 28, .72); }
.text-ivory\/65 { color: rgba(248, 243, 234, .65); }
.text-ivory\/70 { color: rgba(248, 243, 234, .70); }
.text-ivory\/75 { color: rgba(248, 243, 234, .75); }
.text-ivory\/76 { color: rgba(248, 243, 234, .76); }
.text-ivory\/82 { color: rgba(248, 243, 234, .82); }
.text-ivory\/88 { color: rgba(248, 243, 234, .88); }
.text-evergreen\/28 { color: rgba(8, 47, 40, .28); }

.border-evergreen\/10 { border-color: rgba(8, 47, 40, .10); }
.border-evergreen\/12 { border-color: rgba(8, 47, 40, .12); }
.border-evergreen\/20 { border-color: rgba(8, 47, 40, .20); }
.border-evergreen\/25 { border-color: rgba(8, 47, 40, .25); }
.border-ivory\/12 { border-color: rgba(248, 243, 234, .12); }
.border-champagne\/40 { border-color: rgba(199, 164, 98, .40); }

.shadow-luxury { box-shadow: 0 34px 90px rgba(8, 47, 40, .18); }
.shadow-glow { box-shadow: 0 18px 60px rgba(199, 164, 98, .18); }

.hover\:bg-pine:hover { background-color: #123f34; }
.hover\:bg-white\/14:hover { background-color: rgba(255, 255, 255, .14); }
.hover\:bg-white\/60:hover { background-color: rgba(255, 255, 255, .6); }
.hover\:bg-white\/70:hover { background-color: rgba(255, 255, 255, .7); }
.hover\:border-champagne:hover { border-color: #c7a462; }
.hover\:text-evergreen:hover { color: #082f28; }
.hover\:text-champagne:hover { color: #c7a462; }

* {
  box-sizing: border-box;
}

::selection {
  background: #c7a462;
  color: #16372f;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 60;
  opacity: 0.05;
  background-image:
    linear-gradient(115deg, rgba(255,255,255,.4), rgba(0,0,0,0)),
    repeating-linear-gradient(0deg, rgba(42,33,28,.18) 0 1px, transparent 1px 3px);
  mix-blend-mode: multiply;
}

.serif {
  font-family: "Cormorant Garamond", Georgia, serif;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 850ms ease, transform 850ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.photo-frame {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 32% 24%, rgba(248, 243, 234, .9), transparent 22%),
    linear-gradient(145deg, #244c3d 0%, #16372f 43%, #a8957c 100%);
}

.image-frame {
  position: relative;
  overflow: hidden;
  background: #123f34;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform 900ms ease, filter 900ms ease;
}

.image-frame:hover img {
  transform: scale(1.055);
  filter: saturate(1.04) contrast(1.02);
}

.image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 40%, rgba(8, 47, 40, .18)),
    radial-gradient(circle at 25% 15%, rgba(255,255,255,.18), transparent 24%);
}

.editorial-bg {
  background:
    radial-gradient(circle at 10% 15%, rgba(199, 164, 98, .18), transparent 26%),
    linear-gradient(135deg, #f8f3ea 0%, #efe4d2 44%, #fbf7ef 100%);
}

.deep-texture {
  background:
    linear-gradient(115deg, rgba(8,47,40,.98), rgba(6,35,31,.96)),
    radial-gradient(circle at 72% 18%, rgba(199,164,98,.24), transparent 30%);
}

.warm-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(6,35,31,.82) 0%, rgba(6,35,31,.58) 42%, rgba(6,35,31,.08) 100%);
}

.soft-vignette::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(6,35,31,.04), rgba(6,35,31,.38));
}

.quote-card {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(circle at 20% 18%, rgba(245, 223, 157, .28), transparent 24%),
    linear-gradient(135deg, rgba(255, 250, 240, .96), rgba(239, 228, 210, .88)),
    repeating-linear-gradient(0deg, rgba(42, 33, 28, .035) 0 1px, transparent 1px 4px);
  border: 1px solid rgba(199, 164, 98, .34);
}

.quote-card::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(199, 164, 98, .18);
  border-radius: 1.5rem;
  pointer-events: none;
}

.quote-card > * {
  position: relative;
  z-index: 1;
}

.quote-mark {
  position: absolute;
  top: -28px;
  right: 28px;
  z-index: 0;
  color: rgba(199, 164, 98, .24);
  font-size: 13rem;
  line-height: 1;
}

.quote-accent {
  height: 2px;
  width: 130px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(199, 164, 98, .2), rgba(199, 164, 98, .95), rgba(199, 164, 98, .2));
}

.testimonial-card {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 15%, rgba(245, 223, 157, .22), transparent 24%),
    linear-gradient(145deg, rgba(255, 250, 240, .96), rgba(251, 247, 239, .88));
  border: 1px solid rgba(199, 164, 98, .22);
  transition: transform 520ms ease, box-shadow 520ms ease, border-color 520ms ease;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(199, 164, 98, .12);
  border-radius: 1.45rem;
  pointer-events: none;
}

.testimonial-card::after {
  content: "";
  position: absolute;
  inset: -70% auto -70% -85%;
  width: 56%;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(245, 223, 157, .32), transparent);
  animation: card-sweep 6.2s ease-in-out infinite;
  pointer-events: none;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  border-color: rgba(199, 164, 98, .48);
  box-shadow: 0 34px 90px rgba(8, 47, 40, .16), 0 0 0 1px rgba(199, 164, 98, .10);
}

.testimonial-quote-mark {
  position: absolute;
  right: 26px;
  top: -26px;
  color: rgba(199, 164, 98, .20);
  font-size: 9rem;
  line-height: 1;
  z-index: 0;
}

.gold-shimmer {
  color: #c7a462;
  background: linear-gradient(100deg, #9e7b31 0%, #f5df9d 24%, #c7a462 45%, #fff1bd 62%, #a98235 100%);
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 18px rgba(199, 164, 98, .28));
  animation: gold-shine 4.8s ease-in-out infinite;
}

.inline-glimmer {
  color: #c7a462;
  background: linear-gradient(100deg, #d1ad62 0%, #fff1bd 28%, #c7a462 52%, #f8e6ad 70%, #b88d3d 100%);
  background-size: 240% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 12px rgba(245, 223, 157, .24));
  animation: gold-shine 3.5s ease-in-out infinite;
}

.gold-pulse {
  box-shadow: 0 0 0 1px rgba(199, 164, 98, .28), 0 18px 60px rgba(199, 164, 98, .22);
  animation: gold-pulse 2.8s ease-in-out infinite;
}

.ticket-cta-featured {
  background: linear-gradient(135deg, #fffaf0 0%, #f8f3ea 48%, #ead8b5 100%);
  color: #082f28;
  border: 1px solid rgba(245, 223, 157, .9);
}

.ticket-cta-featured:hover {
  background: linear-gradient(135deg, #fff1bd 0%, #f8f3ea 50%, #d8bb7b 100%);
}

.cta-shimmer {
  position: relative;
  overflow: hidden;
}

.cta-shimmer::after {
  content: "";
  position: absolute;
  inset: -55% auto -55% -80%;
  width: 62%;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent 0%, rgba(255, 241, 189, .18) 24%, rgba(255, 241, 189, .9) 48%, rgba(199, 164, 98, .5) 62%, transparent 100%);
  filter: blur(.2px);
  animation: cta-sweep 2.6s ease-in-out infinite;
}

.cta-shimmer > span {
  position: relative;
  z-index: 1;
}

.cta-shimmer.bg-evergreen,
.cta-shimmer.bg-pine {
  border: 1px solid rgba(245, 223, 157, .34);
  box-shadow: 0 0 0 1px rgba(199, 164, 98, .18), 0 18px 60px rgba(199, 164, 98, .24);
}

.green-motion {
  position: relative;
  display: inline-block;
  color: #082f28;
  animation: subtle-lift 3.8s ease-in-out infinite;
}

.green-motion::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(199, 164, 98, .15), rgba(245, 223, 157, .95), rgba(199, 164, 98, .15));
  background-size: 220% auto;
  animation: gold-shine 3.6s ease-in-out infinite;
}

.service-card,
.path-card {
  position: relative;
  overflow: hidden;
  transform: translateY(0) scale(1);
  transition: transform 520ms ease, box-shadow 520ms ease, border-color 520ms ease, background-color 520ms ease;
}

.service-card::before,
.path-card::before {
  content: "";
  position: absolute;
  inset: -55% auto -55% -85%;
  width: 58%;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent 0%, rgba(255, 241, 189, .10) 24%, rgba(255, 241, 189, .52) 50%, rgba(199, 164, 98, .24) 66%, transparent 100%);
  opacity: .72;
  animation: card-sweep 5.8s ease-in-out infinite;
  pointer-events: none;
}

.service-card::after,
.path-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(245, 223, 157, .08);
  pointer-events: none;
}

.service-card:hover,
.path-card:hover {
  transform: translateY(-10px) scale(1.018);
  border-color: rgba(199, 164, 98, .55);
  box-shadow: 0 34px 90px rgba(8, 47, 40, .24), 0 0 0 1px rgba(199, 164, 98, .16);
}

.service-pill {
  position: relative;
  overflow: hidden;
}

.service-pill::after {
  content: "";
  position: absolute;
  inset: -65% auto -65% -80%;
  width: 44%;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(245, 223, 157, .45), transparent);
  animation: cta-sweep 4s ease-in-out infinite;
}

.service-card > *,
.path-card > * {
  position: relative;
  z-index: 1;
}

.premium-support-badge {
  position: relative;
  overflow: hidden;
  color: #082f28;
  border: 1px solid rgba(255, 241, 189, .78);
  background: linear-gradient(135deg, #fff1bd 0%, #f5df9d 42%, #c7a462 100%);
  box-shadow: 0 12px 34px rgba(245, 223, 157, .24), 0 0 0 1px rgba(255, 241, 189, .18);
}

.premium-support-badge::after {
  content: "";
  position: absolute;
  inset: -60% auto -60% -80%;
  width: 58%;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .78), transparent);
  animation: cta-sweep 3.4s ease-in-out infinite;
  pointer-events: none;
}

.agent-feature-pill {
  position: relative;
  overflow: hidden;
  transform: translateY(0);
  transition: transform 360ms ease, border-color 360ms ease, box-shadow 360ms ease, background-color 360ms ease, color 360ms ease;
  cursor: default;
}

.agent-feature-pill::after {
  content: "";
  position: absolute;
  inset: -70% auto -70% -85%;
  width: 46%;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(245, 223, 157, .32), transparent);
  animation: cta-sweep 5s ease-in-out infinite;
  pointer-events: none;
}

.agent-feature-pill:hover {
  transform: translateY(-6px) scale(1.012);
}

.agent-feature-pill-dark:hover {
  border-color: rgba(245, 223, 157, .44);
  background-color: rgba(255, 255, 255, .12);
  color: #fffaf0;
  box-shadow: 0 18px 46px rgba(199, 164, 98, .20);
}

.agent-feature-pill-light:hover {
  border-color: rgba(199, 164, 98, .48);
  background-color: rgba(255, 250, 240, .94);
  color: #082f28;
  box-shadow: 0 18px 46px rgba(8, 47, 40, .12), 0 0 0 1px rgba(199, 164, 98, .12);
}

.speaking-hero-focus {
  object-position: 24% 45% !important;
}

.framework-icon {
  display: block;
  width: 76px;
  height: 50px;
  color: #c7a462;
  overflow: visible;
  filter: drop-shadow(0 10px 22px rgba(199, 164, 98, .22));
}

.framework-icon path,
.framework-icon circle,
.framework-icon rect,
.framework-icon ellipse {
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.framework-icon-emoji {
  width: auto;
  height: auto;
  color: #c7a462;
  font-size: 3.35rem;
  line-height: 1;
  filter: drop-shadow(0 10px 22px rgba(199, 164, 98, .22));
}

.framework-icon-footprints {
  width: auto;
  height: auto;
  font-size: 3.35rem;
  line-height: 1;
  filter: drop-shadow(0 10px 22px rgba(199, 164, 98, .22));
}

.framework-icon-mirror-emoji {
  font-size: 3.25rem;
  filter: sepia(.22) saturate(1.05) drop-shadow(0 10px 22px rgba(199, 164, 98, .22));
}

.keynote-card {
  position: relative;
  overflow: hidden;
}

.keynote-card::before {
  content: "";
  position: absolute;
  inset: -40% -20% auto auto;
  height: 180px;
  width: 180px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(245, 223, 157, .22), rgba(199, 164, 98, .08) 42%, transparent 70%);
  filter: blur(8px);
  opacity: .75;
  animation: keynote-glow 5.4s ease-in-out infinite;
  pointer-events: none;
}

.keynote-card > * {
  position: relative;
  z-index: 1;
}

.keynote-takeaway {
  position: relative;
  overflow: hidden;
  transform: translateY(0);
  transition: transform 420ms ease, border-color 420ms ease, box-shadow 420ms ease, background-color 420ms ease;
  box-shadow: 0 10px 28px rgba(199, 164, 98, .10);
  cursor: default;
}

.keynote-takeaway::after {
  content: "";
  position: absolute;
  inset: -65% auto -65% -80%;
  width: 52%;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(245, 223, 157, .76), rgba(199, 164, 98, .34), transparent);
  animation: cta-sweep 3.2s ease-in-out infinite;
  pointer-events: none;
}

.keynote-takeaway:hover {
  transform: translateY(-8px) scale(1.018);
  border-color: rgba(199, 164, 98, .58);
  background-color: rgba(255, 255, 255, .12);
  box-shadow: 0 22px 54px rgba(199, 164, 98, .26);
}

.audience-chip {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255, 250, 240, .88), rgba(234, 216, 181, .62));
  box-shadow: 0 10px 28px rgba(199, 164, 98, .12);
  transition: transform 360ms ease, box-shadow 360ms ease, border-color 360ms ease;
  cursor: default;
}

.audience-chip::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 241, 189, .34) 42%, transparent 65%);
  transform: translateX(-120%);
  animation: audience-chip-shine 4.8s ease-in-out infinite;
  pointer-events: none;
}

.audience-chip:hover {
  transform: translateY(-8px) scale(1.045);
  border-color: rgba(199, 164, 98, .72);
  box-shadow: 0 20px 48px rgba(199, 164, 98, .28);
}

.audience-chip-wrap {
  display: inline-flex;
  transition: transform 360ms ease;
}

.audience-chip-wrap:hover {
  transform: translateY(-4px);
}

.audience-chip-featured {
  background: linear-gradient(135deg, #fffaf0 0%, #f5df9d 46%, #d8bb7b 100%);
  color: #082f28 !important;
  border-color: rgba(255, 241, 189, .72) !important;
  box-shadow: 0 12px 34px rgba(245, 223, 157, .22), 0 0 0 1px rgba(8, 47, 40, .08);
}

.audience-chip-featured::after {
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, .72) 42%, transparent 65%);
}

.begin-cta-card {
  position: relative;
  overflow: hidden;
  transform: translateY(0);
  transition: transform 440ms ease, border-color 440ms ease, box-shadow 440ms ease, color 440ms ease, background-color 440ms ease;
}

.begin-cta-card::after {
  content: "";
  position: absolute;
  inset: -75% auto -75% -80%;
  width: 58%;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(245, 223, 157, .38), rgba(199, 164, 98, .22), transparent);
  opacity: .85;
  animation: cta-sweep 4.8s ease-in-out infinite;
  pointer-events: none;
}

.begin-cta-card:hover {
  transform: translateY(-7px) scale(1.015);
  border-color: rgba(199, 164, 98, .62);
  background-color: rgba(255, 255, 255, .14);
  color: #f5df9d;
  box-shadow: 0 22px 60px rgba(199, 164, 98, .20), 0 0 0 1px rgba(245, 223, 157, .10);
}

@keyframes gold-shine {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

@keyframes card-sweep {
  0%, 58% { left: -85%; opacity: .35; }
  78% { opacity: .9; }
  100% { left: 135%; opacity: .35; }
}

@keyframes gold-pulse {
  0%, 100% {
    transform: translateY(0) scale(1);
    box-shadow: 0 0 0 1px rgba(199, 164, 98, .25), 0 18px 60px rgba(199, 164, 98, .20);
  }
  50% {
    transform: translateY(-2px) scale(1.025);
    box-shadow: 0 0 0 4px rgba(199, 164, 98, .12), 0 22px 75px rgba(199, 164, 98, .36);
  }
}

@keyframes cta-sweep {
  0%, 55% { left: -70%; }
  100% { left: 130%; }
}

@keyframes subtle-lift {
  0%, 100% { transform: translateY(0); filter: drop-shadow(0 0 0 rgba(199, 164, 98, 0)); }
  50% { transform: translateY(-3px); filter: drop-shadow(0 10px 18px rgba(199, 164, 98, .15)); }
}

@keyframes keynote-glow {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); opacity: .45; }
  50% { transform: translate3d(-18px, 18px, 0) scale(1.12); opacity: .95; }
}

@keyframes audience-chip-shine {
  0%, 58% { transform: translateX(-120%); }
  100% { transform: translateX(135%); }
}

@media (min-width: 768px) {
  .speaking-hero-focus {
    object-position: 50% 45% !important;
  }
}

.photo-frame::before {
  content: "";
  position: absolute;
  inset: 10%;
  border: 1px solid rgba(248, 243, 234, .38);
  pointer-events: none;
}

.photo-frame::after {
  content: "";
  position: absolute;
  width: 46%;
  height: 72%;
  left: 27%;
  bottom: -6%;
  border-radius: 48% 48% 8% 8%;
  background:
    radial-gradient(circle at 50% 16%, #d6bda0 0 13%, transparent 13.5%),
    linear-gradient(180deg, transparent 0 22%, rgba(248, 243, 234, .82) 22% 52%, rgba(42,33,28,.7) 52% 100%);
  filter: saturate(.9);
  opacity: .78;
}

.photo-label {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  color: #fbf7ef;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-size: 10px;
}

.glass {
  background: rgba(251, 247, 239, .72);
  border: 1px solid rgba(255, 255, 255, .58);
  box-shadow: 0 24px 70px rgba(22, 55, 47, .12);
  backdrop-filter: blur(18px);
}

.gold-line {
  position: relative;
}

.gold-line::before {
  content: "";
  display: inline-block;
  width: 44px;
  height: 1px;
  margin-right: 14px;
  vertical-align: middle;
  background: #c7a462;
}

.marquee {
  animation: drift 28s linear infinite;
}

.speaking-cta-motion {
  transform: translateY(0) scale(1);
  transition:
    transform 360ms ease,
    box-shadow 360ms ease,
    background-color 360ms ease,
    color 360ms ease;
}

.speaking-cta-motion:hover {
  transform: translateY(-6px) scale(1.035);
  box-shadow:
    0 26px 70px rgba(199, 164, 98, .32),
    0 0 0 1px rgba(245, 223, 157, .24);
}

.speaking-cta-large {
  width: 100%;
  padding: 1.05rem 2rem;
  font-size: 1rem;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.speaking-hero-primary {
  padding: 1rem 1.85rem;
  font-size: .98rem;
  letter-spacing: .11em;
}

.speaking-hero-secondary {
  padding: 1rem 1.85rem;
  box-shadow: 0 18px 50px rgba(199, 164, 98, .12);
}

@media (min-width: 768px) {
  .speaking-cta-large {
    min-width: 310px;
    padding: 1.2rem 2.45rem;
    font-size: 1.05rem;
  }

  .speaking-hero-primary,
  .speaking-hero-secondary {
    padding: 1.08rem 2.2rem;
    font-size: 1rem;
  }
}

@keyframes drift {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .marquee {
    opacity: 1;
    transform: none;
    transition: none;
    animation: none;
  }
}
