/* ============================================================
   AnsarTech — Shared page chrome + About / Booking / Contact
   Builds on tokens.css + styles.css (buttons, cursor, eyebrow…)
   ============================================================ */

.pg-body { background: var(--at-black); min-height: 100vh; }

/* ============================================================
   SHARED NAV
   ============================================================ */
.st-nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 32px;
  background: var(--at-charcoal);
  border-bottom: 1px solid rgba(217,7,29,0.55);
  transition: padding 220ms var(--ease-out);
}
.st-nav.is-scrolled { padding: 12px 32px; box-shadow: 0 6px 24px rgba(0,0,0,0.4); }
.st-nav-brand { display: flex; align-items: center; gap: 10px; color: var(--at-white); font-weight: 600; letter-spacing: -0.015em; font-size: 16px; }
.st-nav-brand img { width: 30px; height: 30px; }
.st-nav-brand-tag {
  font-family: var(--font-mono); font-size: 10px; text-transform: uppercase;
  letter-spacing: 0.12em; color: rgba(255,255,255,0.45);
  padding: 3px 8px; border: 1px solid rgba(255,255,255,0.12); border-radius: 999px; margin-left: 2px;
}
.st-nav-center {
  position: absolute; left: 50%; transform: translateX(-50%);
  display: flex; gap: 30px;
}
.st-nav-center a {
  position: relative;
  font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.62);
  padding: 6px 0;
  transition: color 160ms var(--ease-out);
}
.st-nav-center a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0;
  height: 1.5px; background: var(--at-red);
  transition: right 240ms var(--ease-out);
}
.st-nav-center a:hover { color: var(--at-white); }
.st-nav-center a:hover::after { right: 0; }
.st-nav-center a.is-active { color: var(--at-white); }
.st-nav-center a.is-active::after { right: 0; }
.st-nav-right { display: flex; align-items: center; gap: 10px; }
.st-nav-toggle {
  display: none; cursor: none;
  width: 40px; height: 40px; border-radius: 8px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.14);
  color: var(--at-white); align-items: center; justify-content: center;
}
.st-nav-sheet { display: none; }

@media (max-width: 1040px) {
  .st-nav-center { display: none; }
  .st-nav-toggle { display: inline-flex; }
  .st-nav-right .at-btn--primary { display: none; }
  .st-nav-right .at-btn--icon { display: none; }
  .st-nav-brand-tag { display: none; }
  .st-nav-sheet {
    display: flex; flex-direction: column; gap: 4px;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--at-charcoal);
    border-bottom: 1px solid rgba(217,7,29,0.55);
    padding: 16px 32px 24px;
    max-height: 0; overflow: hidden; opacity: 0;
    transition: max-height 280ms var(--ease-out), opacity 220ms var(--ease-out), padding 280ms var(--ease-out);
    padding-top: 0; padding-bottom: 0;
  }
  .st-nav-sheet.is-open { max-height: 380px; opacity: 1; padding-top: 16px; padding-bottom: 24px; }
  .st-nav-sheet a { font-size: 15px; color: rgba(255,255,255,0.8); padding: 12px 4px; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .st-nav-sheet a.is-active { color: var(--at-red); }
}

/* ============================================================
   SHARED FOOTER
   ============================================================ */
.st-footer { background: #08080A; color: var(--at-white); border-top: 2px solid var(--at-red); padding: 64px 32px 28px; }
.st-footer-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1.3fr 2fr; gap: 64px;
  padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.st-footer-brand-row { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.st-footer-brand-row img { width: 34px; height: 34px; }
.st-footer-brand-name { font-size: 18px; font-weight: 600; letter-spacing: -0.01em; }
.st-footer-brand-sub { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-top: 3px; }
.st-footer-tagline { font-size: 15px; line-height: 1.45; color: var(--at-white); margin: 0; max-width: 30ch; font-family: var(--font-display); font-weight: 500; letter-spacing: -0.01em; }
.st-footer-socials { display: flex; gap: 10px; }
.st-footer-socials a {
  width: 40px; height: 40px; border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7); transition: all 160ms var(--ease-out);
}
.st-footer-socials a:hover { color: var(--at-white); border-color: var(--at-red); background: rgba(217,7,29,0.08); }
.st-footer-cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.st-footer-status { display: inline-flex; align-items: center; gap: 8px; }
.st-footer-status .dot { width: 7px; height: 7px; border-radius: 999px; background: #2EA84A; box-shadow: 0 0 8px rgba(46,168,74,0.6); }
.st-footer-h { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 14px; }
.st-footer-cols a { display: block; font-size: 14px; color: rgba(255,255,255,0.78); padding: 5px 0; transition: color 140ms; }
.st-footer-cols a:hover { color: var(--at-white); }
.st-footer-base {
  max-width: 1280px; margin: 0 auto; padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.42);
}
.st-footer-legal { display: flex; gap: 24px; }
.st-footer-legal a { color: rgba(255,255,255,0.42); transition: color 140ms; }
.st-footer-legal a:hover { color: var(--at-white); }
@media (max-width: 760px) {
  .st-footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .st-footer-cols { grid-template-columns: 1fr 1fr; }
  .st-footer-base { flex-direction: column; gap: 12px; text-align: center; }
}

/* ============================================================
   PAGE SHELL + SECTION HELPERS
   ============================================================ */
.pg-section { padding: clamp(72px, 11vh, 128px) 0; position: relative; }
.pg-section--dark { background: var(--at-black); color: var(--at-white); }
.pg-section--charcoal { background: var(--at-charcoal); color: var(--at-white); }
.pg-section--light { background: var(--at-off-white); color: var(--at-black); }
.pg-container { max-width: 1200px; margin: 0 auto; padding: 0 32px; position: relative; z-index: 2; }
.pg-container--narrow { max-width: 920px; }

/* Hero (dark, grid + orb, no video) */
.pg-hero {
  position: relative; overflow: hidden;
  background: var(--at-black); color: var(--at-white);
  padding: clamp(150px, 20vh, 220px) 0 clamp(72px, 10vh, 110px);
}
.pg-hero-grid {
  position: absolute; inset: 0; z-index: 1;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 35%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 35%, black, transparent);
}
.pg-hero-orb {
  position: absolute; z-index: 1; left: 50%; top: 30%;
  width: 760px; height: 760px; transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(217,7,29,0.16), transparent 60%);
  filter: blur(50px); pointer-events: none;
  animation: pg-orb 13s var(--ease-std) infinite alternate;
}
@keyframes pg-orb { from { transform: translate(-54%, -50%) scale(1); } to { transform: translate(-46%, -46%) scale(1.12); } }
.pg-hero-inner { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; padding: 0 32px; }

.pg-h1 {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(40px, 6vw, 84px); line-height: 1.0; letter-spacing: -0.026em;
  margin: 0 0 22px; color: var(--at-white); text-wrap: balance; max-width: 18ch;
}
.pg-hero-sub { font-size: clamp(16px, 1.5vw, 20px); line-height: 1.55; color: rgba(247,247,245,0.74); margin: 0 0 32px; max-width: 60ch; }
.pg-hero-ctas { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.pg-microline {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.06em;
  color: rgba(255,255,255,0.5); margin-top: 28px;
  display: inline-flex; align-items: center; gap: 10px; flex-wrap: wrap;
}
.pg-microline .dot { width: 5px; height: 5px; border-radius: 999px; background: var(--at-red); }

/* Section heading block */
.pg-head { margin-bottom: 48px; max-width: 720px; }
.pg-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.pg-h2 {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(32px, 4.4vw, 56px); line-height: 1.04; letter-spacing: -0.022em;
  margin: 0 0 18px; text-wrap: balance;
}
.pg-section--light .pg-h2 { color: var(--at-black); }
.pg-section--dark .pg-h2, .pg-section--charcoal .pg-h2 { color: var(--at-white); }
.pg-lead { font-size: 17px; line-height: 1.6; max-width: 60ch; }
.pg-section--light .pg-lead { color: var(--at-mid-gray); }
.pg-section--dark .pg-lead, .pg-section--charcoal .pg-lead { color: rgba(255,255,255,0.7); }

/* ============================================================
   ABOUT — founder block
   ============================================================ */
.ab-founder { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items: start; }
.ab-portrait {
  position: relative; border-radius: 20px; overflow: hidden;
  border: 1px solid var(--at-light-gray); background: var(--at-light-gray);
  aspect-ratio: 4 / 5;
}
.ab-portrait img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ab-portrait-fallback {
  position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
  background: linear-gradient(160deg, #1A1A1A, #0E0E0E); color: rgba(255,255,255,0.5);
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
}
.ab-portrait-fallback .mono-big { font-family: var(--font-display); font-size: 64px; color: var(--at-red); letter-spacing: -0.02em; }
.ab-founder-body p { font-size: 17px; line-height: 1.65; color: var(--at-mid-gray); margin: 0 0 18px; max-width: 56ch; }
.ab-founder-body p strong { color: var(--at-black); font-weight: 600; }
.ab-creds { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.ab-cred {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.04em;
  padding: 8px 12px; border-radius: 999px;
  border: 1px solid var(--at-light-gray); background: var(--at-white); color: var(--at-charcoal);
}
.ab-badge { display: inline-flex; align-items: center; gap: 12px; margin-top: 28px; padding: 14px 18px; border: 1px solid var(--at-light-gray); border-radius: 14px; background: var(--at-white); transition: border-color 180ms, box-shadow 180ms; }
.ab-badge:hover { border-color: var(--border-strong); box-shadow: var(--shadow-sm); }
.ab-badge img { width: 44px; height: 44px; object-fit: contain; }
.ab-badge-txt { font-size: 13px; color: var(--at-mid-gray); line-height: 1.4; }
.ab-badge-txt strong { display: block; color: var(--at-black); font-size: 14px; }

/* Stats band */
.ab-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.ab-stat { border-top: 2px solid var(--at-red); padding-top: 22px; }
.ab-stat-num { font-family: var(--font-display); font-size: clamp(40px, 5vw, 64px); font-weight: 600; letter-spacing: -0.03em; line-height: 1; color: var(--at-white); }
.ab-stat-lbl { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-top: 12px; }

/* Selected work cards */
.ab-work { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.ab-card {
  display: flex; flex-direction: column;
  background: var(--at-white); border: 1px solid var(--at-light-gray); border-radius: 16px;
  padding: 32px; transition: transform 240ms var(--ease-out), box-shadow 240ms var(--ease-out), border-color 240ms var(--ease-out);
  position: relative; overflow: hidden;
}
.ab-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--border-strong); }
.ab-card-tag { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--at-red); margin-bottom: 14px; }
.ab-card-h { font-family: var(--font-display); font-size: 24px; font-weight: 500; letter-spacing: -0.018em; color: var(--at-black); margin: 0 0 10px; }
.ab-card-d { font-size: 15px; line-height: 1.55; color: var(--at-mid-gray); margin: 0 0 20px; }
.ab-card-link {
  display: inline-flex; align-items: center; gap: 7px; margin-top: auto;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--at-red);
}
.ab-card-link svg { transition: transform 200ms var(--ease-out); }
.ab-card:hover .ab-card-link svg { transform: translate(3px, -3px); }

/* Principles */
.ab-principles { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.ab-principle { padding: 28px; border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; background: rgba(255,255,255,0.02); transition: border-color 200ms, background 200ms; }
.ab-principle:hover { border-color: rgba(217,7,29,0.4); background: rgba(217,7,29,0.04); }
.ab-principle-n { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em; color: var(--at-red); margin-bottom: 14px; }
.ab-principle-h { font-family: var(--font-display); font-size: 22px; font-weight: 500; letter-spacing: -0.015em; color: var(--at-white); margin: 0 0 10px; }
.ab-principle-d { font-size: 15px; line-height: 1.55; color: rgba(255,255,255,0.65); margin: 0; }

/* Closing CTA band (light) */
.pg-cta { text-align: center; }
.pg-cta .pg-h2 { max-width: 20ch; margin-left: auto; margin-right: auto; }
.pg-cta-sub { font-size: 17px; line-height: 1.6; color: var(--at-mid-gray); margin: 0 auto 32px; max-width: 56ch; }

/* ============================================================
   BOOKING + CONTACT — embed card + supporting sections
   ============================================================ */
.embed-card {
  background: var(--at-white); border: 1px solid var(--at-light-gray);
  border-radius: 20px; padding: 28px; box-shadow: var(--shadow-md);
  max-width: 920px; margin: 0 auto;
}
.embed-card-h { font-family: var(--font-display); font-size: 24px; font-weight: 500; letter-spacing: -0.015em; color: var(--at-black); margin: 0 0 6px; text-align: center; }
.embed-card-note { font-size: 14px; color: var(--at-mid-gray); margin: 0 0 22px; text-align: center; }
.embed-frame { width: 100%; border: none; overflow: hidden; display: block; border-radius: 10px; min-height: 640px; background: var(--at-off-white); }
/* Booking calendar: let form_embed.js own the height so the widget's own
   time-slot list isn't clipped into a nested scroll. Contact form keeps its
   745px floor (it doesn't auto-grow the same way). */
.embed-card:not(.ct-form-card) .embed-frame { min-height: 0; height: auto; }
.embed-fallback {
  margin-top: 20px; padding: 18px; border-radius: 12px;
  background: var(--at-off-white); border: 1px dashed var(--border-strong);
  font-size: 14px; color: var(--at-mid-gray); text-align: center;
  display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap;
}
.at-btn--sm { padding: 9px 14px; font-size: 11px; }

/* Process / what-to-expect 3-step */
.bk-steps3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.bk-step3 { padding: 32px 28px; border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; background: rgba(255,255,255,0.02); position: relative; transition: border-color 200ms, transform 200ms; }
.bk-step3:hover { border-color: rgba(217,7,29,0.4); transform: translateY(-3px); }
.bk-step3-n { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--at-red); margin-bottom: 16px; }
.bk-step3-h { font-family: var(--font-display); font-size: 22px; font-weight: 500; color: var(--at-white); margin: 0 0 10px; letter-spacing: -0.015em; }
.bk-step3-d { font-size: 15px; line-height: 1.55; color: rgba(255,255,255,0.65); margin: 0; }

/* Who for / not for */
.bk-fit { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.bk-fit-col { padding: 36px; border-radius: 16px; border: 1px solid var(--at-light-gray); background: var(--at-white); }
.bk-fit-col.is-no { background: var(--at-off-white); }
.bk-fit-icon { width: 40px; height: 40px; border-radius: 10px; display: inline-flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.bk-fit-col.is-yes .bk-fit-icon { background: rgba(217,7,29,0.1); color: var(--at-red); }
.bk-fit-col.is-no .bk-fit-icon { background: var(--at-light-gray); color: var(--at-mid-gray); }
.bk-fit-h { font-family: var(--font-display); font-size: 22px; font-weight: 500; color: var(--at-black); margin: 0 0 12px; letter-spacing: -0.015em; }
.bk-fit-d { font-size: 16px; line-height: 1.6; color: var(--at-mid-gray); margin: 0; }

/* Social proof strip */
.bk-proof { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.bk-proof-card { padding: 32px; border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; background: rgba(255,255,255,0.02); }
.bk-proof-q { font-family: var(--font-display); font-size: 19px; font-weight: 500; line-height: 1.4; color: var(--at-white); margin: 0 0 20px; letter-spacing: -0.012em; }
.bk-proof-who { font-size: 14px; color: rgba(255,255,255,0.6); }
.bk-proof-who strong { color: var(--at-white); font-weight: 600; }

/* FAQ accordion (light) */
.bk-faq-list { max-width: 820px; margin: 0 auto; border-top: 1px solid var(--at-light-gray); }
.bk-faq-row { border-bottom: 1px solid var(--at-light-gray); padding: 22px 0; cursor: none; }
.bk-faq-q { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.bk-faq-qt { font-family: var(--font-display); font-size: 20px; font-weight: 500; color: var(--at-black); letter-spacing: -0.012em; }
.bk-faq-tog { font-family: var(--font-mono); font-size: 22px; color: var(--at-mid-gray); transition: transform 240ms var(--ease-out), color 240ms; line-height: 1; }
.bk-faq-row.is-open .bk-faq-tog { transform: rotate(45deg); color: var(--at-red); }
.bk-faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 280ms var(--ease-out); }
.bk-faq-row.is-open .bk-faq-a { grid-template-rows: 1fr; }
.bk-faq-a-in { overflow: hidden; }
.bk-faq-a-txt { padding-top: 14px; font-size: 16px; line-height: 1.6; color: var(--at-mid-gray); max-width: 64ch; }

/* Contact layout */
.ct-grid { display: grid; grid-template-columns: 1.4fr 0.85fr; gap: 32px; align-items: start; }
.ct-aside { display: flex; flex-direction: column; gap: 16px; }
.ct-aside-card { padding: 28px; border-radius: 16px; border: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.02); }
.ct-aside-h { font-family: var(--font-display); font-size: 20px; font-weight: 500; color: var(--at-white); margin: 0 0 8px; letter-spacing: -0.015em; }
.ct-aside-d { font-size: 15px; line-height: 1.55; color: rgba(255,255,255,0.65); margin: 0 0 18px; }
.ct-social-row { display: flex; gap: 10px; }
.ct-social-row a {
  width: 42px; height: 42px; border-radius: 10px; display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.7);
  transition: all 160ms var(--ease-out);
}
.ct-social-row a:hover { color: var(--at-white); border-color: var(--at-red); background: rgba(217,7,29,0.08); }
.ct-form-card .embed-frame { min-height: 745px; }

/* ============================================================
   CONTACT — minimal variant
   ============================================================ */
.ct-min {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: clamp(140px, 18vh, 200px) 32px clamp(72px, 10vh, 110px);
  background: var(--at-black);
  position: relative; overflow: hidden;
}
.ct-min::before {
  content: ""; position: absolute; z-index: 0;
  left: 50%; top: 28%; width: 760px; height: 760px; transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(217,7,29,0.13), transparent 60%);
  filter: blur(50px); pointer-events: none;
  animation: pg-orb 13s var(--ease-std) infinite alternate;
}
.ct-min-inner {
  position: relative; z-index: 2;
  width: 100%; max-width: 620px; text-align: center;
}
.ct-min-title {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(34px, 5vw, 56px); line-height: 1.02; letter-spacing: -0.024em;
  color: var(--at-white); margin: 18px 0 16px; text-wrap: balance;
}
.ct-min-sub {
  font-size: 17px; line-height: 1.6; color: rgba(247,247,245,0.7);
  margin: 0 auto; max-width: 48ch;
}
.ct-min-card {
  background: var(--at-white);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5);
  text-align: left;
}
/* Contact form: let form_embed.js own the height entirely — no fixed floor,
   or it leaves dead space below / clips above. The script posts the exact
   content height once loaded. */
.ct-min-card .embed-frame { min-height: 0; height: auto; border-radius: 10px; }
/* GHL contact form — fixed height (resizer under-reports → internal scroll).
   Tuned to contain the full form incl. both consent paragraphs. */
.ct-min-card .ct-embed { display: block; width: 100%; border: none; border-radius: 8px; height: 720px; }
@media (max-width: 600px) { .ct-min-card .ct-embed { height: 900px; } }
@media (prefers-reduced-motion: reduce) { .ct-min::before { animation: none; } }

/* ============================================================
   SCROLL REVEAL (shared)
   ============================================================ */
.pg-reveal { opacity: 0; transform: translateY(28px); transition: opacity 720ms var(--ease-out), transform 720ms var(--ease-out); }
.pg-reveal.is-in { opacity: 1; transform: translateY(0); }
.pg-reveal.d1 { transition-delay: 80ms; }
.pg-reveal.d2 { transition-delay: 160ms; }
.pg-reveal.d3 { transition-delay: 240ms; }
.pg-reveal.d4 { transition-delay: 320ms; }

@media (prefers-reduced-motion: reduce) {
  .pg-reveal { opacity: 1; transform: none; transition: none; }
  .pg-hero-orb, .pg-cta::after { animation: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 920px) {
  .ab-founder { grid-template-columns: 1fr; gap: 32px; }
  .ab-stats { grid-template-columns: 1fr 1fr; gap: 28px; }
  .ab-work, .ab-principles, .bk-fit, .bk-proof { grid-template-columns: 1fr; }
  .bk-steps3 { grid-template-columns: 1fr; }
  .ct-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .pg-container { padding: 0 20px; }
  .pg-hero { padding: 116px 0 64px; }
  .pg-hero-inner { padding: 0 20px; }
  .pg-section { padding: clamp(56px, 9vh, 96px) 0; }

  /* Stats stack 2-up still readable; portrait + creds */
  .ab-stats { grid-template-columns: 1fr 1fr; gap: 24px; }
  .ab-stat-num { font-size: clamp(34px, 12vw, 48px); }
  .ab-founder { gap: 24px; }
  .ab-card { padding: 26px 22px; }
  .ab-badge { flex-wrap: wrap; }

  /* Embed cards — tighter padding so the frame isn't cramped */
  .embed-card { padding: 18px; }
  .ct-min { padding: 116px 20px 64px; }
  .ct-min-card { padding: 12px; }

  /* Booking / contact supporting sections */
  .bk-step3 { padding: 26px 22px; }
  .bk-fit-col { padding: 28px 22px; }
  .bk-proof-card { padding: 26px 22px; }
  .bk-faq-qt { font-size: 18px; }

  /* Hero CTA buttons stack full-width */
  .pg-hero-ctas { gap: 10px; }
  .pg-hero-ctas .at-btn { flex: 1 1 auto; justify-content: center; }
  .pg-microline { font-size: 11px; gap: 8px; }
}

@media (max-width: 380px) {
  .ab-stats { grid-template-columns: 1fr; }
}

