/* ============================================================
   The Benchmark Academy — POLISH LAYER
   ------------------------------------------------------------
   Loaded AFTER styles.css. Purely additive refinements:
   spacing, type, depth, motion, accessibility, readability.
   No layout is redesigned, no colours or fonts are replaced.
   To revert everything: remove the <link> to this file.
   ============================================================ */

:root {
  /* Refined depth scale — softer, more optical than the originals */
  --p-shadow-xs: 0 1px 2px rgba(19,18,16,.04), 0 2px 8px rgba(19,18,16,.03);
  --p-shadow-sm: 0 2px 4px rgba(19,18,16,.04), 0 8px 24px rgba(19,18,16,.05);
  --p-shadow-md: 0 4px 8px rgba(19,18,16,.04), 0 16px 40px rgba(19,18,16,.07);
  --p-shadow-lg: 0 8px 16px rgba(19,18,16,.05), 0 28px 64px rgba(19,18,16,.10);
  --p-ease: cubic-bezier(.22,1,.36,1);
  --p-ease-out: cubic-bezier(.16,1,.3,1);
}

/* ---------------------------------------------------------------
   1. TYPOGRAPHY — optical refinement
   Tighter display tracking at large sizes, looser body leading
   for readability, and a capped measure so lines stay comfortable.
   --------------------------------------------------------------- */

h1, h2 { letter-spacing: -0.022em; text-wrap: balance; }
h3 { letter-spacing: -0.01em; text-wrap: balance; }

.lede { line-height: 1.62; text-wrap: pretty; }

.card p, .course-detail p, .course-detail li,
.method-step p, .value-row p { text-wrap: pretty; }

/* Body copy inside cards reads better slightly looser */
.card p { line-height: 1.6; }

/* Numerals align properly in the stat strips */
.fact strong, .result-stat .grade, .v2-band .b strong,
.fee-amount .num, .v2-stats .st strong {
  font-variant-numeric: lining-nums tabular-nums;
}

/* ---------------------------------------------------------------
   2. HERO — clear action hierarchy
   Three same-weight buttons forced a decision. The primary action
   now dominates; secondary actions recede without disappearing.
   --------------------------------------------------------------- */

.hero-actions { gap: 14px; align-items: center; }

.hero-actions .btn-solid {
  padding: 17px 36px;
  font-size: 1rem;
  box-shadow: var(--p-shadow-md);
}

.hero-actions .btn-gold { padding: 17px 34px; font-size: 1rem; }

/* Tertiary action reads as a link-button, not a third equal choice */
.hero-actions .btn-ghost {
  border-color: var(--line);
  color: var(--ink-soft);
  background: transparent;
}
.hero-actions .btn-ghost:hover {
  border-color: var(--ink);
  background: transparent;
  color: var(--ink);
}

.hero-whatsapp { margin-top: 26px; font-size: 0.95rem; }

/* Fact strip: give the numbers more presence and room to breathe */
.fact-strip { gap: 56px; margin-top: 64px; padding-top: 36px; }
.fact strong { font-size: 2.05rem; letter-spacing: -0.02em; }
.fact span { letter-spacing: 0.15em; }

/* ---------------------------------------------------------------
   3. CARDS — considered depth and a calmer lift
   Original hover jumped 4px with a heavy shadow. Now: a shorter
   travel, a softer shadow, and a hairline that warms to gold.
   --------------------------------------------------------------- */

.card, .testimonial, .story-card, .contact-form,
.fee-card, .download-strip, .faq-item {
  box-shadow: var(--p-shadow-sm);
  transition: transform .45s var(--p-ease),
              box-shadow .45s var(--p-ease),
              border-color .45s var(--p-ease);
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--p-shadow-lg);
  border-color: #ded7c6;
}

/* Icon tiles: subtle gradient + gold warm-up on card hover */
.card-icon {
  background: linear-gradient(160deg, #f8f2e2, var(--gold-faint));
  border: 1px solid #efe6cf;
  transition: transform .45s var(--p-ease), box-shadow .45s var(--p-ease);
}
.card:hover .card-icon {
  transform: scale(1.06) rotate(-2deg);
  box-shadow: 0 6px 16px rgba(168,135,59,.18);
}

/* ---------------------------------------------------------------
   4. BUTTONS — weight, travel and a light sheen
   --------------------------------------------------------------- */

.btn { letter-spacing: 0.005em; will-change: transform; }

.btn-solid { box-shadow: var(--p-shadow-sm); }
.btn-solid:hover { transform: translateY(-2px); box-shadow: var(--p-shadow-lg); }
.btn-solid:active,
.btn-gold:active,
.btn-ghost:active { transform: translateY(0); transition-duration: .08s; }

.btn-gold { box-shadow: 0 4px 14px rgba(168,135,59,.22); }
.btn-gold:hover { box-shadow: 0 12px 30px rgba(168,135,59,.34); }

/* ---------------------------------------------------------------
   5. TESTIMONIALS — fix ragged card heights (the main defect)
   Marquee children were sizing to content, so a row read as jagged.
   Stretching them to a common height is what makes a wall of quotes
   look composed rather than pasted.
   --------------------------------------------------------------- */

.marquee-row { align-items: stretch; }

.t-card {
  min-height: 260px;
  justify-content: space-between;
  box-shadow: var(--p-shadow-sm);
  transition: transform .45s var(--p-ease), box-shadow .45s var(--p-ease),
              border-color .45s var(--p-ease);
}

.t-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--p-shadow-md);
  border-color: #e4dcc9;
}

.t-card p { font-size: 1.06rem; line-height: 1.52; }

.t-card footer strong { letter-spacing: -0.005em; }

/* Softer edge fade so cards enter and leave the frame gracefully */
.marquee {
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

/* ---------------------------------------------------------------
   6. GALLERY — readable captions (accessibility fix)
   Dark caption text sat on busy photographs. A proper scrim plus
   white text guarantees contrast on any image.
   --------------------------------------------------------------- */

.gallery-item figcaption {
  background: linear-gradient(to top,
              rgba(12,11,9,.88) 0%,
              rgba(12,11,9,.55) 55%,
              rgba(12,11,9,0) 100%);
  color: #fff;
  padding: 34px 20px 16px;
  font-weight: 500;
  letter-spacing: 0.11em;
  text-shadow: 0 1px 3px rgba(0,0,0,.4);
}

.gallery-item {
  box-shadow: var(--p-shadow-sm);
  transition: transform .5s var(--p-ease), box-shadow .5s var(--p-ease);
}
.gallery-item:hover { transform: translateY(-4px); box-shadow: var(--p-shadow-lg); }

/* Slow zoom on the photograph itself, not the whole tile */
.gallery-item img { transition: transform 1.1s var(--p-ease-out); }
.gallery-item:hover img { transform: scale(1.045); }

/* ---------------------------------------------------------------
   7. TEACHER CARDS — polish only, layout untouched
   --------------------------------------------------------------- */

.teacher-card { transition: transform .45s var(--p-ease), box-shadow .45s var(--p-ease), border-color .45s var(--p-ease); }
.teacher-card:hover { transform: translateY(-4px); box-shadow: var(--p-shadow-lg); }
.teacher-photo img { transition: transform 1.1s var(--p-ease-out); }
.teacher-card:hover .teacher-photo img { transform: scale(1.04); }
.teacher-info { padding-top: 24px; }
.teacher-subject { letter-spacing: 0.09em; }

/* Faculty page (V2) — same restraint */
.v2-fac, .v2-dir { transition: transform .45s var(--p-ease), box-shadow .45s var(--p-ease), border-color .45s var(--p-ease); }
.v2-fac:hover, .v2-dir:hover { transform: translateY(-4px); }

/* ---------------------------------------------------------------
   8. RESULTS — steadier stat cards
   --------------------------------------------------------------- */

.result-stat {
  transition: transform .45s var(--p-ease), border-color .45s var(--p-ease), background .45s var(--p-ease);
}
.result-stat:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  background: rgba(201,169,97,.05);
}
.result-stat .grade { letter-spacing: -0.02em; }

/* ---------------------------------------------------------------
   9. METHOD LIST — a gold rail that reveals the active step
   --------------------------------------------------------------- */

.method-step { transition: background .35s var(--p-ease); position: relative; }
.method-step::after {
  content: "";
  position: absolute; left: 0; top: 0; bottom: 0; width: 2px;
  background: var(--gold); opacity: 0;
  transition: opacity .35s var(--p-ease);
}
.method-step:hover::after { opacity: 1; }
.method-step:hover { background: linear-gradient(90deg, rgba(243,236,221,.5), transparent 60%); }
.method-step p { line-height: 1.62; }

/* ---------------------------------------------------------------
   10. NAVIGATION — clearer state, smoother underline
   --------------------------------------------------------------- */

.site-header { transition: box-shadow .4s var(--p-ease), background .4s var(--p-ease); }
.site-header.is-stuck { box-shadow: 0 1px 0 var(--line), 0 8px 24px rgba(19,18,16,.05); }

.nav-links a { position: relative; border-bottom-color: transparent !important; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1.5px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--p-ease);
}
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active::after { transform: scaleX(1); }
.nav-cta::after { display: none !important; }

/* ---------------------------------------------------------------
   11. LINKS & FOOTER — hierarchy and warmth
   --------------------------------------------------------------- */

.site-footer { padding-top: 84px; }
.site-footer h3, .site-footer h4 { color: var(--gold-soft); letter-spacing: 0.2em; }

.site-footer li a {
  position: relative;
  transition: color .28s var(--p-ease), padding-left .28s var(--p-ease);
}
.site-footer li a:hover { color: var(--gold-soft); padding-left: 6px; }

.footer-brand p { line-height: 1.65; }
.footer-bottom { padding-top: 34px; opacity: .92; }

/* ---------------------------------------------------------------
   12. FORMS — calmer focus, clearer affordance
   --------------------------------------------------------------- */

.field input, .field select, .field textarea {
  transition: border-color .28s var(--p-ease), box-shadow .28s var(--p-ease), background .28s var(--p-ease);
}
.field input:hover, .field select:hover, .field textarea:hover { border-color: #ddd5c4; }
.field input:focus, .field select:focus, .field textarea:focus {
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(168,135,59,.13);
}

.faq-item { transition: border-color .3s var(--p-ease), box-shadow .3s var(--p-ease); }
.faq-item:hover { border-color: #ded7c6; }
.faq-item[open] { box-shadow: var(--p-shadow-sm); border-color: #e0d8c6; }

/* ---------------------------------------------------------------
   13. MOTION — staggered, gentler reveals
   Uniform reveals feel mechanical. A short stagger inside each grid
   reads as considered without ever looking animated-for-its-own-sake.
   --------------------------------------------------------------- */

.reveal { transform: translateY(20px); transition-duration: .75s; }

.grid-3 > .reveal:nth-child(2), .grid-4 > .reveal:nth-child(2) { transition-delay: .07s; }
.grid-3 > .reveal:nth-child(3), .grid-4 > .reveal:nth-child(3) { transition-delay: .14s; }
.grid-4 > .reveal:nth-child(4) { transition-delay: .21s; }
.grid-2 > .reveal:nth-child(2) { transition-delay: .07s; }

/* ---------------------------------------------------------------
   14. ACCESSIBILITY — visible, consistent focus
   --------------------------------------------------------------- */

a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible, summary:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Keyboard users get a skip link; mouse users never see it */
.skip-link {
  position: absolute; left: 50%; transform: translateX(-50%) translateY(-120%);
  top: 10px; z-index: 300;
  background: var(--ink); color: var(--paper);
  padding: 12px 24px; border-radius: 100px;
  font-size: .9rem; font-weight: 600; text-decoration: none;
  transition: transform .25s var(--p-ease);
}
.skip-link:focus { transform: translateX(-50%) translateY(0); }

/* ---------------------------------------------------------------
   15. PERFORMANCE — fewer layout shifts, smoother paint
   --------------------------------------------------------------- */

img { background-color: #f2efe7; }          /* no white flash before load */
.gallery-item, .teacher-photo, .v2-portrait { contain: paint; }

/* ---------------------------------------------------------------
   16. RESPONSIVE — tighter rhythm on small screens
   --------------------------------------------------------------- */

@media (max-width: 680px) {
  .fact-strip { gap: 30px 40px; margin-top: 46px; padding-top: 28px; }
  .fact strong { font-size: 1.75rem; }

  .hero-actions { gap: 11px; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  h1 { letter-spacing: -0.018em; }
  .lede { font-size: 1.06rem; }

  .t-card { min-height: 0; }
  .site-footer { padding-top: 60px; }
  .gallery-item figcaption { padding: 28px 16px 14px; }
}

/* ---------------------------------------------------------------
   17. REDUCED MOTION — honour the preference completely
   --------------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  .card:hover, .t-card:hover, .gallery-item:hover, .teacher-card:hover,
  .result-stat:hover, .btn:hover, .v2-fac:hover, .v2-dir:hover { transform: none; }
  .gallery-item:hover img, .teacher-card:hover .teacher-photo img { transform: none; }
  .card:hover .card-icon { transform: none; }
  .reveal { transition-delay: 0s !important; }
}

/* ---------------------------------------------------------------
   18. PRINT — clean, ink-friendly
   --------------------------------------------------------------- */

@media print {
  .site-header, .nav-toggle, .marquee, .cta-band, .skip-link { display: none !important; }
  .card, .t-card { box-shadow: none; border: 1px solid #ccc; }
}

/* ===============================================================
   ROUND 2 — finishing the sections flagged in the audit
   =============================================================== */

/* --- SUBJECTS (was 7/10: "visually thin") ----------------------
   Each group now sits in its own quiet card with a count, so the
   section carries weight proportional to its importance.        */

.subject-grid { gap: 22px; }

.subject-group {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px 26px;
  box-shadow: var(--p-shadow-xs);
  transition: transform .45s var(--p-ease), box-shadow .45s var(--p-ease), border-color .45s var(--p-ease);
}
.subject-group:hover {
  transform: translateY(-3px);
  box-shadow: var(--p-shadow-md);
  border-color: #ded7c6;
}

.subject-group-h {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 12px; flex-wrap: wrap;
  font-family: var(--font-body);
  font-size: 0.74rem; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold);
  padding-bottom: 16px; margin-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.sg-count {
  font-size: 0.68rem; letter-spacing: 0.1em; font-weight: 500;
  color: var(--stone); text-transform: none;
}

/* Pills gain a touch of depth and a gold warm-up */
.subject-group .pill {
  transition: border-color .3s var(--p-ease), background .3s var(--p-ease), transform .3s var(--p-ease);
}
.subject-group .pill:hover {
  border-color: var(--gold-soft);
  background: var(--gold-faint);
  transform: translateY(-1px);
}

/* --- WHY BENCHMARK (was 7.5/10: "icons generic") ---------------
   Larger icon tiles with a gold rule that draws in on hover, so
   the cards read as crafted rather than templated.              */

.card-icon { width: 52px; height: 52px; border-radius: 14px; }
.card-icon svg { width: 24px; height: 24px; stroke-width: 1.6; }

#why .card { padding-top: 38px; position: relative; overflow: hidden; }
#why .card::before {
  content: ""; position: absolute; top: 0; left: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
  transition: width .5s var(--p-ease);
}
#why .card:hover::before { width: 100%; }
#why .card h3 { margin-bottom: 14px; }

/* --- RESULTS (was 8/10) ---------------------------------------
   Grade glyphs get real presence; the set now reads as one family. */

.result-stat { padding: 44px 22px; }
.result-stat .grade { font-size: 3.5rem; }
.result-stat .count { font-weight: 600; letter-spacing: -0.005em; }
.result-stat .note { line-height: 1.5; max-width: 24ch; margin-inline: auto; }

/* --- FOOTER (was 7.5/10: "flat hierarchy") ---------------------
   The brand column now leads; link columns become clearly
   secondary; the motto gets room to act as a sign-off.          */

.footer-grid { gap: 48px; padding-bottom: 54px; }

.footer-brand { padding-right: 24px; }
.footer-brand .brand-name { font-size: 1.2rem; }
.footer-brand p { font-size: .93rem; color: #a8a298; }

.footer-motto {
  margin-top: 20px; padding-top: 18px;
  border-top: 1px solid var(--line-dark);
  font-family: var(--font-display); font-style: italic;
  font-size: 1.05rem; color: var(--gold-soft);
}

.site-footer h3, .site-footer h4 {
  font-size: .69rem; padding-bottom: 14px; margin-bottom: 16px;
  border-bottom: 1px solid rgba(201,169,97,.18);
}

.site-footer li a { font-size: .9rem; }

.footer-bottom {
  border-top: 1px solid var(--line-dark);
  margin-top: 4px; font-size: .8rem; letter-spacing: .02em;
}

@media (max-width: 960px) {
  .footer-brand { padding-right: 0; }
}

/* ===============================================================
   ROUND 3 — CRITICAL FIX: tablet navigation
   ---------------------------------------------------------------
   The horizontal nav needs ~1080px to fit, but the mobile menu only
   engaged below 680px. Every device in between (iPad portrait AND
   landscape) rendered a broken header: wrapped brand, split menu
   items and a mangled "Contact us" pill overflowing the viewport.
   The hamburger now takes over for the whole tablet range.
   =============================================================== */

@media (max-width: 1080px) {

  .nav-toggle { display: block; }

  .nav-links {
    position: absolute;
    top: 76px; left: 0; right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 24px 22px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 40px rgba(19,18,16,.10);
  }

  .nav-links.open { display: flex; animation: navIn .28s var(--p-ease); }

  .nav-links li { width: 100%; }

  .nav-links a {
    display: block;
    padding: 14px 2px;
    font-size: 1.02rem;
    border-bottom: 1px solid var(--line);
  }
  .nav-links li:last-child a { border-bottom: none; }

  /* underline animation is meaningless in a stacked menu */
  .nav-links a::after { display: none; }
  .nav-links a.active { color: var(--gold); }

  .nav-cta {
    margin-top: 14px;
    text-align: center;
    border: 1px solid var(--ink) !important;
    border-radius: 100px;
    padding: 13px 22px !important;
  }

  /* brand must never wrap */
  .brand-name { font-size: 1.06rem; white-space: nowrap; }
  .brand-name small { white-space: nowrap; }
  .brand-logo { width: 44px; height: 44px; }

  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

@keyframes navIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: none; }
}

/* Tablet layout rhythm — two columns read better than cramped threes */
@media (min-width: 681px) and (max-width: 960px) {
  .grid-3, .subject-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .hero { padding: 84px 0 72px; }
  .section { padding: 78px 0; }
}

/* ===============================================================
   THE BENCHMARK DIFFERENCE
   ---------------------------------------------------------------
   Deliberately NOT a row of equal feature cards — the page already
   has two of those. An asymmetric bento reads as editorial, gives
   the strongest claim real dominance, and is the one section a
   visitor is most likely to remember.
   =============================================================== */

.diff-section { padding-top: 92px; }

.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.diff-card {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 34px 32px 32px;
  box-shadow: var(--p-shadow-xs);
  display: flex;
  flex-direction: column;
  transition: transform .5s var(--p-ease),
              box-shadow .5s var(--p-ease),
              border-color .5s var(--p-ease);
}

/* Hairline that draws across on hover — the one shared motif */
.diff-card::before {
  content: "";
  position: absolute; top: 0; left: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
  transition: width .6s var(--p-ease);
}
.diff-card:hover::before { width: 100%; }

.diff-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--p-shadow-lg);
  border-color: #ded7c6;
}

/* --- The feature card: dark, wide, unmistakably the headline --- */

.diff-feature {
  grid-column: span 2;
  background:
    radial-gradient(120% 140% at 88% 8%, rgba(201,169,97,.16), transparent 58%),
    var(--ink);
  border-color: var(--line-dark);
  color: var(--paper);
  padding: 44px 44px 40px;
}

.diff-feature h3 { color: var(--paper); font-size: 1.85rem; }
.diff-feature p { color: #b5b0a6; font-size: 1.04rem; max-width: 46ch; }
.diff-feature:hover { border-color: rgba(201,169,97,.5); }

/* --- The wide closing card --- */

.diff-wide {
  grid-column: span 3;
  flex-direction: row;
  align-items: flex-start;
  gap: 30px;
  padding: 38px 40px;
  background: linear-gradient(160deg, #fdfcf9, var(--gold-faint));
}
.diff-wide-body { flex: 1; }
.diff-wide h3 { font-size: 1.5rem; }
.diff-wide p { max-width: 78ch; }

/* --- Icons: larger, hand-tuned line weight, gold on warm tile --- */

.diff-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(160deg, #f8f2e2, var(--gold-faint));
  border: 1px solid #efe6cf;
  color: var(--gold);
  margin-bottom: 24px;
  flex-shrink: 0;
  transition: transform .5s var(--p-ease), box-shadow .5s var(--p-ease);
}
.diff-icon svg { width: 27px; height: 27px; }

.diff-card:hover .diff-icon {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 20px rgba(168,135,59,.2);
}

.diff-feature .diff-icon {
  background: rgba(201,169,97,.14);
  border-color: rgba(201,169,97,.34);
  color: var(--gold-soft);
  width: 62px; height: 62px;
}
.diff-feature .diff-icon svg { width: 30px; height: 30px; }

/* --- Type --- */

.diff-card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.32rem;
  line-height: 1.24;
  letter-spacing: -0.015em;
  margin-bottom: 12px;
  text-wrap: balance;
}

.diff-card p {
  color: var(--stone);
  font-size: .97rem;
  line-height: 1.62;
  text-wrap: pretty;
  flex: 1;
}

.diff-tag {
  align-self: flex-start;
  margin-top: 22px;
  font-size: .68rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold-soft);
  border: 1px solid rgba(201,169,97,.34);
  border-radius: 100px;
  padding: 6px 15px;
}

.diff-link {
  align-self: flex-start;
  margin-top: 20px;
  font-size: .9rem; font-weight: 600;
  color: var(--ink);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: color .3s var(--p-ease), gap .3s var(--p-ease);
}
.diff-link span { display: inline-block; transition: transform .3s var(--p-ease); }
.diff-link:hover { color: var(--gold-deep, var(--gold)); }
.diff-link:hover span { transform: translateX(4px); }

/* --- Staggered entrance --- */

.diff-grid > .reveal:nth-child(2) { transition-delay: .06s; }
.diff-grid > .reveal:nth-child(3) { transition-delay: .12s; }
.diff-grid > .reveal:nth-child(4) { transition-delay: .18s; }
.diff-grid > .reveal:nth-child(5) { transition-delay: .24s; }
.diff-grid > .reveal:nth-child(6) { transition-delay: .30s; }

/* --- Responsive --- */

@media (max-width: 960px) {
  .diff-grid { grid-template-columns: repeat(2, 1fr); }
  .diff-feature { grid-column: span 2; padding: 38px 34px 34px; }
  .diff-feature h3 { font-size: 1.6rem; }
  .diff-wide { grid-column: span 2; }
}

@media (max-width: 680px) {
  .diff-section { padding-top: 64px; }
  .diff-grid { grid-template-columns: 1fr; gap: 16px; }
  .diff-feature, .diff-wide { grid-column: span 1; }
  .diff-card { padding: 30px 26px 28px; border-radius: 16px; }
  .diff-feature { padding: 32px 26px 30px; }
  .diff-feature h3 { font-size: 1.45rem; }
  .diff-wide { flex-direction: column; gap: 0; padding: 30px 26px 28px; }
  .diff-icon { width: 50px; height: 50px; margin-bottom: 20px; }
  .diff-card h3 { font-size: 1.2rem; }
}

@media (prefers-reduced-motion: reduce) {
  .diff-card:hover { transform: none; }
  .diff-card:hover .diff-icon { transform: none; }
  .diff-card::before { transition: none; }
  .diff-grid > .reveal { transition-delay: 0s !important; }
}

/* Feature card: centre the content block so the wide card doesn't
   read as top-heavy with dead space beneath it. */
.diff-feature { justify-content: center; }
.diff-feature .diff-icon { margin-bottom: 26px; }
.diff-feature p { flex: 0 1 auto; }

/* ===============================================================
   ENROLMENT — single open course + early-bird rate
   =============================================================== */

.enrol-open {
  background: linear-gradient(160deg, #fdfcf9, var(--gold-faint));
  border: 1px solid var(--gold-soft);
  border-radius: 14px;
  padding: 22px 22px 18px;
  margin-bottom: 22px;
}

.enrol-eyebrow {
  font-size: .68rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 14px;
}

.enrol-pick {
  display: flex; align-items: flex-start; gap: 13px; cursor: pointer;
}
.enrol-pick input {
  width: 20px; height: 20px; margin-top: 2px; flex-shrink: 0;
  accent-color: var(--gold);
}
.enrol-pick span { font-size: .92rem; color: var(--stone); line-height: 1.5; }
.enrol-pick strong {
  display: block; font-family: var(--font-display); font-weight: 500;
  font-size: 1.18rem; color: var(--ink); margin-bottom: 4px;
}
.enrol-pick b { color: var(--ink-soft); font-weight: 600; }

.enrol-note {
  margin-top: 14px; padding-top: 13px;
  border-top: 1px solid rgba(168,135,59,.22);
  font-size: .84rem; color: var(--stone);
}
.enrol-note a { color: var(--gold); font-weight: 600; border-bottom: 1px solid var(--gold); }

/* --- Early-bird price block --- */

.earlybird {
  background: var(--ink);
  border-radius: 14px;
  padding: 22px 24px 20px;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}
.earlybird::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
}

.eb-flag {
  display: inline-block;
  font-size: .64rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--ink);
  background: var(--gold-soft); border-radius: 100px;
  padding: 5px 13px; margin-bottom: 14px;
}

.eb-price {
  font-family: var(--font-display);
  font-size: 1.1rem; color: #8d877c; line-height: 1.2;
}
.eb-price s { opacity: .75; }
.eb-price strong {
  font-size: 2.2rem; font-weight: 500; color: var(--gold-soft);
  letter-spacing: -0.02em; margin-left: 6px;
}
.eb-price span { font-family: var(--font-body); font-size: .9rem; color: #8d877c; }

.eb-terms {
  margin-top: 12px; font-size: .85rem; line-height: 1.55; color: #b5b0a6;
}
.eb-terms b { color: var(--gold-soft); font-weight: 600; }

/* --- Courses page fee card --- */

.fee-amount .was {
  font-family: var(--font-body); font-size: .82rem;
  color: var(--stone); opacity: .8; margin-left: 6px;
}
.fee-eb {
  margin-top: 12px; padding-top: 12px;
  border-top: 1px dashed var(--gold-soft);
  font-size: .86rem; color: var(--stone); line-height: 1.55;
}
.fee-eb b { color: var(--gold); font-weight: 600; }

@media (max-width: 680px) {
  .eb-price strong { font-size: 1.85rem; }
  .earlybird, .enrol-open { padding: 18px 18px 16px; }
}

/* Radio/checkbox inputs were inheriting .field input { width:100% },
   which stretched them and floated the dot to the middle of the row. */
.mode-option input[type="radio"],
.enrol-pick input[type="checkbox"] {
  width: 20px !important;
  height: 20px;
  flex: 0 0 20px;
  margin-top: 2px;
  accent-color: var(--gold);
}

/* `.field label { display:block }` (class+element) outranked
   `.mode-option { display:flex }` (single class), so the radio rows
   never actually laid out horizontally. Match the specificity. */
.field .mode-option,
.contact-form .mode-option {
  display: flex;
  align-items: flex-start;
  gap: 13px;
}
.field .enrol-pick,
.contact-form .enrol-pick {
  display: flex;
  align-items: flex-start;
  gap: 13px;
}

/* ===============================================================
   APPLY HERO — the Instagram landing experience
   Built mobile-first: this page is shared from a phone app, so the
   phone layout is the real design and desktop is the enhancement.
   =============================================================== */

.apply-hero { padding: 44px 0 30px; }

.apply-grid { display: grid; gap: 30px; }

.apply-flag {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: .7rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--gold);
  background: var(--gold-faint); border: 1px solid #eadfc4;
  border-radius: 100px; padding: 7px 15px; margin-bottom: 20px;
}
.apply-flag .dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--gold);
  animation: apDot 2.4s ease-in-out infinite;
}
@keyframes apDot { 0%,100%{opacity:1} 50%{opacity:.35} }

.apply-copy h1 {
  font-size: clamp(1.95rem, 7vw, 3.1rem);
  line-height: 1.1; letter-spacing: -0.025em; margin-bottom: 16px;
}
.apply-copy h1 em {
  display: block; font-style: italic; color: var(--gold);
  font-size: .68em; margin-top: 8px;
}

.apply-lede { font-size: 1.03rem; color: var(--stone); line-height: 1.6; }

/* --- Three quick facts --- */

.apply-facts {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 10px; margin: 26px 0;
  padding: 18px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.apply-facts strong {
  display: block; font-family: var(--font-display); font-weight: 500;
  font-size: 1.28rem; color: var(--ink); line-height: 1.1;
  white-space: nowrap;
}
.apply-facts span {
  display: block; margin-top: 5px; font-size: .68rem;
  letter-spacing: .09em; text-transform: uppercase; color: var(--stone);
  line-height: 1.35;
}

/* --- Price block: never let the figure wrap --- */

.apply-price {
  background: var(--ink); border-radius: 16px;
  padding: 20px 22px 18px; margin-bottom: 24px;
  position: relative; overflow: hidden;
}
.apply-price::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
}
.ap-flag {
  display: inline-block; font-size: .62rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase; color: var(--ink);
  background: var(--gold-soft); border-radius: 100px;
  padding: 5px 12px; margin-bottom: 13px;
}
.ap-figure {
  display: flex; align-items: baseline; flex-wrap: wrap; gap: 8px;
  font-family: var(--font-display); color: #8d877c; font-size: 1rem;
}
.ap-figure s { white-space: nowrap; opacity: .75; }
.ap-figure strong {
  font-size: clamp(1.9rem, 8vw, 2.4rem); font-weight: 500;
  color: var(--gold-soft); letter-spacing: -0.02em; white-space: nowrap;
}
.ap-figure span { font-family: var(--font-body); font-size: .85rem; color: #8d877c; }
.ap-terms { margin-top: 11px; font-size: .84rem; line-height: 1.55; color: #b5b0a6; }
.ap-terms b { color: var(--gold-soft); font-weight: 600; }

/* --- CTAs: WhatsApp is the whole point of this page --- */

.apply-cta { display: grid; gap: 11px; }

.btn-wa {
  background: #1FA855; border-color: #1FA855; color: #fff;
  font-size: 1.04rem; padding: 17px 30px;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(31,168,85,.28);
}
.btn-wa svg { width: 22px; height: 22px; flex-shrink: 0; }
.btn-wa:hover {
  background: #17924a; border-color: #17924a; color: #fff;
  transform: translateY(-2px); box-shadow: 0 12px 30px rgba(31,168,85,.36);
}
.apply-call { justify-content: center; font-size: .96rem; padding: 15px 26px; }

.apply-micro {
  margin-top: 14px; font-size: .8rem; color: var(--stone); text-align: center;
}

/* --- Portrait --- */

.apply-portrait {
  position: relative; border-radius: 20px; overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--p-shadow-md);
  background: linear-gradient(160deg, #f1eee6, #e2dccd);
}
.apply-portrait img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center 18%; aspect-ratio: 4/3.4; display: block;
}
.apply-portrait figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 40px 22px 18px; color: #fff;
  background: linear-gradient(to top, rgba(12,11,9,.9), rgba(12,11,9,.5) 55%, transparent);
}
.apply-portrait figcaption strong {
  display: block; font-family: var(--font-display); font-weight: 500; font-size: 1.24rem;
}
.apply-portrait figcaption span {
  display: block; margin-top: 4px; font-size: .76rem;
  letter-spacing: .1em; text-transform: uppercase; color: #dcd6c8;
}

/* --- Proof strip --- */

.apply-proof { padding: 8px 0 40px; }
.apply-proof .eyebrow { margin-bottom: 20px; }
.proof-grid { display: grid; gap: 14px; }
.proof-grid blockquote {
  background: var(--white); border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  border-radius: 0 14px 14px 0; padding: 20px 22px;
  box-shadow: var(--p-shadow-xs);
}
.proof-grid p {
  font-family: var(--font-display); font-size: 1.02rem;
  line-height: 1.5; color: var(--ink-soft);
}
.proof-grid p::before { content: "\201C"; color: var(--gold); }
.proof-grid p::after { content: "\201D"; color: var(--gold); }
.proof-grid footer {
  margin-top: 11px; font-size: .8rem; color: var(--stone);
}
.proof-note { margin-top: 16px; font-size: .84rem; color: var(--stone); }
.proof-note a { color: var(--gold); font-weight: 600; border-bottom: 1px solid var(--gold); }

/* --- Contact details: stop numbers and addresses breaking badly --- */

.contact-item p a[href^="tel:"] { white-space: nowrap; }
.contact-item h3 + p { text-wrap: pretty; }

/* =================== TABLET + DESKTOP =================== */

/* Tablet: keep ONE column — a side-by-side portrait is too narrow
   here and the caption overflows. Only the CTA row and proof grid widen. */
@media (min-width: 720px) {
  .apply-hero { padding: 60px 0 40px; }
  .apply-cta { grid-auto-flow: column; grid-auto-columns: max-content; align-items: center; }
  .apply-micro { text-align: left; }
  .proof-grid { grid-template-columns: repeat(3, 1fr); }
  .apply-proof { padding-bottom: 56px; }
  .apply-portrait img { aspect-ratio: 16/9; object-position: center 15%; }
  .apply-portrait { max-width: 100%; }
}

/* Only go two-column when the portrait column is genuinely wide enough. */
@media (min-width: 980px) {
  .apply-grid { grid-template-columns: 1.15fr .85fr; gap: 46px; align-items: center; }
  .apply-portrait img { aspect-ratio: 4/4.7; object-position: center 18%; }
}

@media (min-width: 1000px) {
  .apply-hero { padding: 72px 0 48px; }
  .apply-grid { gap: 60px; }
  .apply-facts { gap: 18px; }
  .apply-facts strong { font-size: 1.5rem; }
}

/* ===============================================================
   REGISTER — one short form, WhatsApp only
   =============================================================== */

.register-sec { padding: 8px 0 56px; }

.register-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 34px 28px 30px;
  box-shadow: var(--p-shadow-md);
  max-width: 760px; margin: 0 auto;
  position: relative; overflow: hidden;
}
.register-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
}

.reg-head { margin-bottom: 26px; }
.reg-head h2 { font-size: clamp(1.6rem, 5vw, 2.1rem); margin-bottom: 10px; }
.reg-head p { color: var(--stone); font-size: .97rem; line-height: 1.6; }

.reg-row { display: grid; gap: 16px; margin-bottom: 16px; }

.reg-form .field { margin-bottom: 0; }
.reg-form label { font-size: .8rem; }
.reg-form input, .reg-form select { padding: 15px 16px; font-size: 1rem; }

.reg-submit {
  width: 100%; justify-content: center;
  margin-top: 10px; font-size: 1.05rem; padding: 18px 30px;
}

.reg-form .form-note {
  margin-top: 14px; text-align: center; font-size: .82rem; line-height: 1.5;
}
.reg-form .form-status { text-align: center; }

/* Contact details below the fold */
.details-grid { display: grid; gap: 30px; }

@media (min-width: 720px) {
  .register-card { padding: 42px 44px 38px; }
  .reg-row { grid-template-columns: 1fr 1fr; gap: 18px; }
  .details-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .register-sec { padding-bottom: 68px; }
}

/* ---------------------------------------------------------------
   Sticky WhatsApp bar — phone only. Instagram traffic arrives on a
   phone and often never scrolls back up; the action follows them.
   --------------------------------------------------------------- */

.wa-sticky { display: none; }

@media (max-width: 719px) {
  .wa-sticky {
    display: flex; align-items: center; gap: 12px;
    position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 150;
    background: #1FA855; color: #fff;
    border-radius: 100px; padding: 14px 22px;
    font-family: var(--font-body); font-weight: 600; font-size: 1rem;
    text-decoration: none; justify-content: center;
    box-shadow: 0 8px 28px rgba(31,168,85,.4);
    animation: waIn .5s var(--p-ease) .8s both;
  }
  .wa-sticky svg { width: 21px; height: 21px; }
  body { padding-bottom: 76px; }
}

@keyframes waIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
  .wa-sticky { animation: none; }
}

/* ===============================================================
   PROOF WALL — full-length student comments, printed as artefacts
   Long testimonials need a different treatment from short ones:
   generous measure, a real quote mark, and room to breathe.
   =============================================================== */

.proof-sec { padding: 20px 0 56px; }

.proof-head { max-width: 640px; margin-bottom: 34px; }
.proof-head h2 { font-size: clamp(1.7rem, 5vw, 2.4rem); margin-bottom: 12px; }
.proof-head p { color: var(--stone); font-size: .98rem; line-height: 1.6; }
.proof-head a { color: var(--gold); font-weight: 600; border-bottom: 1px solid var(--gold); }

.proof-wall { display: grid; gap: 18px; }

.pq {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 40px 26px 26px;
  margin: 0;
  box-shadow: var(--p-shadow-sm);
  transition: transform .45s var(--p-ease), box-shadow .45s var(--p-ease), border-color .45s var(--p-ease);
}
.pq:hover {
  transform: translateY(-3px);
  box-shadow: var(--p-shadow-lg);
  border-color: #e2dac8;
}

/* The quote glyph as a design element, not punctuation */
.pq-mark {
  position: absolute; top: 12px; left: 22px;
  font-family: var(--font-display);
  font-size: 4.2rem; line-height: 1;
  color: var(--gold); opacity: .3;
  pointer-events: none; user-select: none;
}

.pq blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.06rem;
  line-height: 1.62;
  color: var(--ink-soft);
  text-wrap: pretty;
}

.pq figcaption {
  display: flex; align-items: center; gap: 12px;
  margin-top: 22px; padding-top: 18px;
  border-top: 1px solid var(--line);
}

.pq-av {
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.02rem;
  color: var(--gold); background: var(--gold-faint);
  border: 1px solid #eadfc4; flex-shrink: 0;
}

.pq-who { font-size: .82rem; color: var(--stone); line-height: 1.4; }
.pq-who strong {
  display: block; font-family: var(--font-body); font-weight: 600;
  font-size: .92rem; color: var(--ink); margin-bottom: 2px;
}

/* --- The featured quote: dark, wide, the one they remember --- */

.pq-feature {
  background:
    radial-gradient(115% 130% at 90% 5%, rgba(201,169,97,.15), transparent 58%),
    var(--ink);
  border-color: var(--line-dark);
  padding: 46px 30px 30px;
}
.pq-feature .pq-mark { color: var(--gold-soft); opacity: .45; font-size: 5rem; }
.pq-feature blockquote { color: #ece7dd; font-size: 1.16rem; line-height: 1.6; }
.pq-feature figcaption { border-top-color: var(--line-dark); }
.pq-feature .pq-av { background: rgba(201,169,97,.16); border-color: rgba(201,169,97,.4); color: var(--gold-soft); }
.pq-feature .pq-who { color: #9a948a; }
.pq-feature .pq-who strong { color: #fff; }
.pq-feature:hover { border-color: rgba(201,169,97,.5); }

@media (min-width: 720px) {
  .proof-sec { padding: 28px 0 68px; }
  .proof-wall { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .pq { padding: 44px 32px 28px; }
  .pq-feature { grid-column: span 2; padding: 50px 44px 34px; }
  .pq-feature blockquote { font-size: 1.32rem; max-width: 60ch; }
}

@media (min-width: 1040px) {
  .proof-wall { grid-template-columns: repeat(3, 1fr); }
  .pq-feature { grid-column: span 3; }
  .pq-feature blockquote { font-size: 1.44rem; line-height: 1.55; }
}

@media (prefers-reduced-motion: reduce) {
  .pq:hover { transform: none; }
}

/* Subject picker — two ticks, both on by default */
.subj-picks { display: grid; gap: 10px; }

.field .subj, .contact-form .subj {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px; cursor: pointer;
  border: 1px solid var(--line); border-radius: 12px;
  background: var(--paper);
  transition: border-color .25s var(--p-ease), background .25s var(--p-ease);
}
.subj:hover { border-color: var(--gold-soft); }
.subj input[type="checkbox"] {
  width: 20px !important; height: 20px; flex: 0 0 20px;
  accent-color: var(--gold); margin: 0;
}
.subj span { font-size: .97rem; font-weight: 500; color: var(--ink); }
.subj:has(input:checked) { border-color: var(--gold); background: var(--gold-faint); }

@media (min-width: 560px) {
  .subj-picks { grid-template-columns: 1fr 1fr; }
}

/* Handles read as handles */
.pq-who strong { font-family: var(--font-body); letter-spacing: -0.01em; }

/* Two call numbers + WhatsApp = three actions. Flex-wrap handles any
   width more gracefully than fixed grid columns. */
@media (min-width: 720px) {
  .apply-cta {
    display: flex; flex-wrap: wrap; align-items: center; gap: 11px;
    grid-auto-flow: unset;
  }
  .apply-call { flex: 0 0 auto; }
}
@media (max-width: 719px) {
  .apply-cta .apply-call { font-size: .92rem; padding: 13px 20px; }
}

/* ===============================================================
   STANDALONE APPLY PAGE — no site nav, self-contained footer
   =============================================================== */

.solo .site-header .nav-bar { justify-content: center; height: 84px; }
.solo .brand { pointer-events: none; }

.solo-footer {
  background: var(--ink); color: #b5b0a6;
  padding: 54px 0 40px; margin-top: 20px; text-align: center;
}
.solo-brand {
  display: inline-flex; align-items: center; gap: 14px;
  margin-bottom: 18px; text-align: left;
}
.solo-brand img { width: 52px; height: 52px; }
.solo-brand span {
  font-family: var(--font-display); font-size: 1.14rem; color: var(--paper); line-height: 1.2;
}
.solo-brand small {
  display: block; font-family: var(--font-body); font-size: .64rem;
  letter-spacing: .2em; text-transform: uppercase; color: #979186; margin-top: 5px;
}
.solo-motto {
  font-family: var(--font-display); font-style: italic;
  font-size: 1.05rem; color: var(--gold-soft); margin-bottom: 26px;
}
.solo-links {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 26px;
  padding: 22px 0; border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark);
}
.solo-links a {
  font-size: .92rem; color: #b5b0a6; font-weight: 500;
  transition: color .25s var(--p-ease);
}
.solo-links a:hover { color: var(--gold-soft); }
.solo-bottom { margin-top: 22px; font-size: .8rem; color: #837d73; }

@media (max-width: 680px) {
  .solo-footer { padding: 42px 0 34px; }
  .solo-links { gap: 10px 18px; font-size: .88rem; }
}

/* ---- announcement bar: current session, sits above the sticky header ---- */

.topbar {
  display: block;
  background: var(--ink);
  color: #f2efe8;
  text-decoration: none;
  border-bottom: 1px solid var(--line-dark);
  transition: background .22s ease;
}
.topbar:hover { background: #1c1a16; }

.topbar-in {
  max-width: var(--container);
  margin: 0 auto;
  padding: 11px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.topbar-msg {
  font-size: .79rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  line-height: 1.4;
}
.topbar-sub {
  color: var(--gold-soft);
  font-weight: 500;
}
.topbar-sub::before {
  content: "·";
  margin: 0 8px;
  color: var(--line-dark);
}

.topbar-cta {
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gold-soft);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.topbar-arrow { transition: transform .22s ease; }
.topbar:hover .topbar-arrow { transform: translateX(3px); }

/* the sticky header must clear the bar as it scrolls away */
.topbar + .site-header { top: 0; }

@media (max-width: 820px) {
  .topbar-in { padding: 10px 20px; gap: 14px; }
  .topbar-msg { font-size: .72rem; letter-spacing: .03em; }
  .topbar-cta { font-size: .72rem; }
}

.cta-short { display: none; }

@media (max-width: 560px) {
  .topbar-sub { display: none; }
  .cta-long { display: none; }
  .cta-short { display: inline; }
  .topbar-in { padding: 9px 18px; }
  .topbar-msg { font-size: .69rem; }
  .topbar-cta { font-size: .69rem; gap: 5px; }
}
