/* ============================================================
   AllRounder Tutoring — styles.css   (mobile-first)
   ------------------------------------------------------------
   Palette, type and spacing tokens live in :root. Change them
   once and they update across the whole site.
   ============================================================ */

:root{
  /* ---- Palette: cream · forest green · amber ---- */
  --cream:#F6F3EA;         /* main page background */
  --cream-2:#EFEADD;       /* warmer off-white — alternating sections */
  --surface:#FFFFFF;       /* cards */
  --ink:#17201B;           /* headings / strong text */
  --ink-2:#3B443D;         /* body text */
  --muted:#616860;         /* secondary text */
  --pine:#18402F;          /* forest green */
  --pine-700:#102C21;      /* darker green (hover) */
  --amber:#D89A2E;         /* amber accent */
  --amber-deep:#B4791B;    /* amber, readable on cream */
  --amber-fill:#F6E7C6;    /* soft amber background */
  --amber-ink:#6E4E15;     /* text on amber fill */
  --line:#E6E1D2;          /* warm hairline */
  --line-2:#D7D1BE;        /* stronger hairline */

  /* ---- Type ---- */
  --display:'Bricolage Grotesque', Georgia, 'Times New Roman', serif;
  --body:'Instrument Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* ---- Shape & depth (restrained) ---- */
  --r-sm:10px; --r:16px; --r-lg:22px; --pill:999px;
  --sh-1:0 1px 2px rgba(20,30,24,.05), 0 1px 1px rgba(20,30,24,.04);
  --sh-2:0 8px 22px rgba(20,30,24,.07), 0 2px 6px rgba(20,30,24,.05);
  --sh-3:0 22px 50px rgba(20,30,24,.14);

  --header-h:60px;
  --wrap:1080px;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; -webkit-text-size-adjust:100%; }
html,body{ margin:0; }
body{
  background:var(--cream);
  color:var(--ink-2);
  font-family:var(--body);
  font-size:16px;
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
p{ margin:0; }
h1,h2,h3,h4{ font-family:var(--display); color:var(--ink); font-weight:600; line-height:1.06; letter-spacing:-.02em; margin:0; }
:focus-visible{ outline:3px solid var(--amber); outline-offset:2px; border-radius:6px; }

.wrap{ width:100%; max-width:var(--wrap); margin:0 auto; padding:0 20px; }
.skip{ position:absolute; left:-9999px; top:8px; background:var(--pine); color:#fff; padding:10px 16px; border-radius:10px; z-index:200; font-weight:600; }
.skip:focus{ left:14px; }

/* ---- Type scale (strong contrast) ---- */
.display{ font-size:clamp(2.35rem, 8.5vw, 4rem); line-height:1.02; letter-spacing:-.03em; }
.h2{ font-size:clamp(1.65rem, 5.5vw, 2.6rem); line-height:1.08; }
.eyebrow{ font-family:var(--body); font-size:12px; font-weight:600; letter-spacing:.14em; text-transform:uppercase; color:var(--amber-deep); }
.lead{ font-size:clamp(1.05rem, 3.4vw, 1.3rem); line-height:1.6; color:var(--muted); font-weight:400; }

/* ---- Section rhythm ---- */
.section{ padding:56px 0; }
.section--warm{ background:var(--cream-2); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.section--pine{ background:var(--pine); color:var(--cream); }
.section-head{ max-width:60ch; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head .h2{ margin-top:10px; }
.section-head .lead{ margin-top:14px; }

/* ============ HEADER ============ */
.site-header{ position:sticky; top:0; z-index:60; background:rgba(246,243,234,.88); -webkit-backdrop-filter:saturate(1.3) blur(10px); backdrop-filter:saturate(1.3) blur(10px); border-bottom:1px solid transparent; transition:border-color .2s ease; }
.site-header.scrolled{ border-bottom-color:var(--line); }
.header-inner{ height:var(--header-h); display:flex; align-items:center; justify-content:space-between; gap:12px; }
.wordmark{ display:inline-flex; align-items:center; gap:9px; font-family:var(--display); font-weight:600; font-size:18px; color:var(--pine); }
.wordmark-badge{ width:30px; height:30px; border-radius:50%; background:var(--pine); color:var(--cream); display:grid; place-items:center; font-size:15px; box-shadow:inset 0 0 0 2px var(--amber); }
.wordmark-accent{ color:var(--muted); font-weight:500; display:none; }   /* phones show just "AllRounder" */
.nav{ display:flex; align-items:center; gap:6px; }
.nav a{ font-size:14.5px; font-weight:600; color:var(--pine); padding:8px 14px; border-radius:var(--pill); white-space:nowrap; }
.nav a:hover{ background:rgba(24,64,47,.07); }
.nav a.nav-cta{ background:var(--pine); color:#fff; }
.nav a.nav-cta:hover{ background:var(--pine-700); }
.nav a:not(.nav-cta){ display:none; }   /* phones show one primary action; secondary links live in the footer */

/* ============ BUTTONS ============ */
.btn{ display:inline-flex; align-items:center; justify-content:center; gap:9px; font-family:var(--body); font-weight:600; font-size:16px; border-radius:var(--pill); padding:13px 22px; border:1px solid transparent; cursor:pointer; transition:transform .12s ease, background .15s ease, box-shadow .15s ease, border-color .15s; white-space:nowrap; }
.btn svg{ width:18px; height:18px; transition:transform .18s ease; }
.btn--primary{ background:var(--pine); color:#fff; box-shadow:var(--sh-1); }
.btn--primary:hover{ background:var(--pine-700); box-shadow:var(--sh-2); }
.btn--primary:hover svg{ transform:translateX(4px); }
.btn--ghost{ background:var(--surface); color:var(--pine); border-color:var(--line-2); }
.btn--ghost:hover{ border-color:var(--pine); }
.btn--lg{ font-size:17px; padding:16px 28px; }
.btn:active{ transform:translateY(1px); }
.btn--subscribe{ background:var(--amber); color:var(--pine); width:100%; font-size:17px; padding:16px 24px; box-shadow:var(--sh-1); }
.btn--subscribe:hover{ background:#E4A93A; box-shadow:var(--sh-2); }
.btn--subscribe:hover svg{ transform:translateX(4px); }

/* ============ HERO ============ */
.hero{ padding:44px 0 40px; }
.hero-grid{ display:grid; gap:32px; }
.kicker{ display:inline-block; font-weight:600; font-size:12.5px; letter-spacing:.13em; text-transform:uppercase; color:var(--amber-ink); background:var(--amber-fill); padding:6px 13px; border-radius:var(--pill); }
.hero-title{ margin-top:18px; }
.hero-sub{ margin-top:18px; max-width:30ch; }
.hero-actions{ margin-top:26px; display:flex; flex-wrap:wrap; gap:12px; }

/* Hero results card + count-up */
.rcard{ background:var(--surface); border:1px solid var(--line); border-radius:var(--r-lg); padding:20px; box-shadow:var(--sh-2); }
.rcard-head{ display:flex; align-items:center; gap:9px; font-size:12px; font-weight:600; letter-spacing:.1em; text-transform:uppercase; color:var(--muted); margin-bottom:14px; }
.rcard-head .dot{ width:8px; height:8px; border-radius:50%; background:var(--amber); }
.rrow{ display:flex; align-items:center; justify-content:space-between; gap:14px; padding:13px 0; border-top:1px solid var(--line); }
.rrow:first-of-type{ border-top:0; }
.rrow-sub{ font-size:12px; font-weight:600; letter-spacing:.05em; text-transform:uppercase; color:var(--muted); }
.rrow-note{ display:inline-block; margin-top:6px; font-size:12px; font-weight:600; padding:3px 10px; border-radius:var(--pill); background:var(--amber-fill); color:var(--amber-ink); }
.rrow-num{ font-family:var(--display); font-weight:700; font-size:38px; color:var(--pine); line-height:1; font-variant-numeric:tabular-nums; }

/* ============ TRUST BAR ============ */
.trustbar{ background:var(--pine); color:var(--cream); }
.trustbar-inner{ display:flex; flex-wrap:wrap; align-items:center; justify-content:center; gap:10px 26px; padding:14px 0; text-align:center; }
.trustbar span{ display:inline-flex; align-items:center; gap:8px; font-size:13.5px; font-weight:500; letter-spacing:.01em; }
.trustbar svg{ width:16px; height:16px; color:var(--amber); flex:none; }

/* ============ "WHAT YOU GET" cards ============ */
.getgrid{ display:grid; grid-template-columns:1fr; gap:14px; margin-top:36px; }
.getcard{ background:var(--surface); border:1px solid var(--line); border-radius:var(--r-lg); padding:24px; box-shadow:var(--sh-1); transition:transform .18s, box-shadow .18s; }
.getcard:hover{ transform:translateY(-4px); box-shadow:var(--sh-2); }
.getcard-ico{ width:46px; height:46px; border-radius:12px; background:var(--amber-fill); color:var(--amber-deep); display:grid; place-items:center; margin-bottom:16px; }
.getcard-ico svg{ width:24px; height:24px; }
.getcard h3{ font-size:19px; }
.getcard p{ margin-top:7px; color:var(--muted); font-size:15px; line-height:1.55; }

/* ============ HOW IT WORKS ============ */
.steps{ display:grid; grid-template-columns:1fr; gap:16px; margin-top:36px; }
.step{ background:var(--surface); border:1px solid var(--line); border-radius:var(--r-lg); padding:26px; box-shadow:var(--sh-1); }
.step-num{ display:grid; place-items:center; width:42px; height:42px; border-radius:50%; background:var(--pine); color:var(--cream); font-family:var(--display); font-weight:700; font-size:19px; margin-bottom:16px; }
.step h3{ font-size:20px; }
.step p{ margin-top:8px; color:var(--muted); font-size:15.5px; }

/* ============ PRICING ============ */
.pricecard{ background:var(--surface); border:1px solid var(--line); border-radius:var(--r-lg); box-shadow:var(--sh-2); padding:32px 26px; text-align:center; max-width:560px; margin:36px auto 0; }
.price-from{ font-size:13px; font-weight:600; letter-spacing:.08em; text-transform:uppercase; color:var(--muted); }
.price-big{ font-family:var(--display); font-weight:700; color:var(--pine); font-size:clamp(3rem, 12vw, 4.2rem); line-height:1; margin:6px 0 2px; }
.price-per{ font-size:1.4rem; color:var(--muted); font-weight:500; }
.price-note{ color:var(--muted); font-size:15px; margin-top:12px; }
.price-list{ list-style:none; margin:22px 0 0; padding:0; display:grid; gap:10px; text-align:left; max-width:340px; margin-left:auto; margin-right:auto; }
.price-list li{ display:flex; align-items:center; gap:10px; font-size:15px; color:var(--ink-2); }
.price-list svg{ width:18px; height:18px; color:var(--pine); flex:none; }
.pricecard .btn{ margin-top:24px; }

/* ============ FAQ (native accordion) ============ */
.faq-list{ max-width:760px; margin:32px auto 0; border-top:1px solid var(--line); }
.faq{ border-bottom:1px solid var(--line); }
.faq summary{ list-style:none; cursor:pointer; display:flex; align-items:center; justify-content:space-between; gap:16px; padding:20px 4px; font-family:var(--display); font-weight:600; font-size:18px; color:var(--ink); }
.faq summary::-webkit-details-marker{ display:none; }
.faq summary:hover{ color:var(--pine); }
.faq-chev{ flex:none; width:22px; height:22px; color:var(--muted); transition:transform .2s ease; }
.faq[open] .faq-chev{ transform:rotate(180deg); }
.faq-a{ padding:0 4px 22px; color:var(--muted); font-size:15.5px; line-height:1.7; max-width:64ch; }

/* ============ TUTOR CARDS (editorial, NOT Hinge) ============ */
.tcard{ position:relative; display:flex; flex-direction:column; gap:15px; background:var(--surface); border:1px solid var(--line); border-radius:var(--r-lg); padding:22px; box-shadow:var(--sh-1); transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.tcard:hover{ transform:translateY(-5px); box-shadow:var(--sh-2); border-color:var(--line-2); }
.tcard-head{ display:flex; align-items:flex-start; justify-content:space-between; gap:12px; }
.tcard-id{ display:flex; align-items:center; gap:12px; min-width:0; }
.tcard-name{ font-family:var(--display); font-weight:600; font-size:20px; color:var(--ink); line-height:1.1; }
.tcard-sub{ font-size:12.5px; color:var(--muted); margin-top:3px; }

.atar-stat{ flex:none; text-align:right; }
.atar-label{ display:block; font-size:9.5px; font-weight:700; letter-spacing:.14em; text-transform:uppercase; color:var(--muted); }
.atar-value{ display:block; font-family:var(--display); font-weight:700; font-size:22px; color:var(--pine); line-height:1; margin-top:2px; font-variant-numeric:tabular-nums; }

.credential{ display:flex; align-items:center; gap:11px; background:var(--amber-fill); border-radius:var(--r); padding:11px 14px; }
.credential-icon{ display:grid; place-items:center; color:var(--amber-deep); flex:none; }
.credential-icon svg{ width:20px; height:20px; }
.credential-text{ font-weight:600; font-size:14px; color:var(--amber-ink); line-height:1.25; }

.quote{ margin:0; border-left:2px solid var(--pine); padding:2px 0 2px 14px; }
.quote-q{ display:block; font-size:12px; font-weight:600; color:var(--muted); }
.quote-a{ display:block; margin-top:5px; font-family:var(--display); font-weight:500; font-size:17px; line-height:1.35; color:var(--ink); }

.tcard-tags{ display:flex; flex-wrap:wrap; gap:8px; }
.tag{ font-size:12.5px; font-weight:500; color:var(--pine); background:rgba(24,64,47,.06); border:1px solid rgba(24,64,47,.10); padding:4px 11px; border-radius:var(--pill); }
.tag--more{ background:transparent; color:var(--muted); border-color:var(--line); }

.tcard-cta{ margin-top:auto; display:inline-flex; align-items:center; gap:7px; font-weight:600; font-size:14px; color:var(--pine); }
.tcard-cta svg{ width:16px; height:16px; transition:transform .18s ease; }
.tcard:hover .tcard-cta svg{ transform:translateX(5px); }
.tcard-cta--tap{ color:var(--muted); }

/* ============ AVATAR ============ */
.avatar{ position:relative; width:var(--sz); height:var(--sz); min-width:var(--sz); border-radius:50%; overflow:hidden; display:grid; place-items:center; }
.avatar-initial{ font-family:var(--display); font-weight:700; color:var(--cream); font-size:calc(var(--sz) * .4); line-height:1; }
.avatar-img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }

/* ============ BROWSE PAGE ============ */
.browse{ padding:28px 0 60px; }
.browse-head{ text-align:center; margin-bottom:26px; }
.view-toggle{ display:inline-flex; gap:4px; margin-top:20px; background:var(--surface); border:1px solid var(--line); border-radius:var(--pill); padding:4px; box-shadow:var(--sh-1); }
.view-toggle button{ font-family:var(--body); font-weight:600; font-size:14.5px; color:var(--muted); background:transparent; border:0; padding:9px 22px; border-radius:var(--pill); cursor:pointer; transition:background .15s, color .15s; }
.view-toggle button[aria-pressed="true"]{ background:var(--pine); color:#fff; }
#browseScroll[hidden], #browseSwipe[hidden]{ display:none; }
.tutor-grid{ display:grid; grid-template-columns:1fr; gap:18px; }

/* swipe (dating-app structure, editorial skin) */
.swipe{ max-width:440px; margin:0 auto; }
.swipe-stack{ display:grid; }
.swipe-card{ grid-area:1 / 1; cursor:pointer; touch-action:pan-y; user-select:none; -webkit-user-select:none; will-change:transform; box-shadow:var(--sh-2); }
.swipe-card.hint-like{ box-shadow:0 0 0 3px var(--amber), var(--sh-2); }
.swipe-card.hint-pass{ box-shadow:0 0 0 3px var(--line-2), var(--sh-2); }
.swipe-actions{ display:flex; justify-content:center; gap:24px; margin-top:24px; }
.swipe-btn{ width:62px; height:62px; border-radius:50%; border:1px solid var(--line); background:var(--surface); color:var(--muted); cursor:pointer; display:grid; place-items:center; box-shadow:var(--sh-1); transition:transform .12s ease, background .15s, color .15s, border-color .15s; }
.swipe-btn svg{ width:26px; height:26px; }
.swipe-btn:hover{ transform:translateY(-2px); }
.swipe-btn:active{ transform:scale(.94); }
.swipe-btn--pass:hover{ border-color:var(--line-2); color:var(--ink); }
.swipe-btn--like{ color:var(--pine); border-color:var(--pine); }
.swipe-btn--like:hover{ background:var(--pine); color:#fff; }
.swipe-hint{ text-align:center; color:var(--muted); font-size:13px; margin-top:16px; }
.swipe-end{ text-align:center; padding:44px 16px; }
.swipe-end h2{ font-size:24px; }
.swipe-end p{ color:var(--muted); margin:10px 0 22px; }
.swipe-end-actions{ display:flex; gap:12px; justify-content:center; flex-wrap:wrap; }

/* ============ TUTOR PROFILE PAGE ============ */
.profile{ max-width:720px; padding:16px 0 64px; }
.profile-topbar{ margin-bottom:18px; }
.back-link{ display:inline-flex; align-items:center; gap:7px; font-size:14.5px; font-weight:600; color:var(--pine); background:var(--surface); border:1px solid var(--line); border-radius:var(--pill); padding:8px 15px 8px 12px; box-shadow:var(--sh-1); }
.back-link svg{ width:18px; height:18px; }
.back-link:hover{ border-color:var(--pine); }

.profile-head{ display:flex; align-items:flex-start; justify-content:space-between; gap:16px; }
.profile-head-main{ display:flex; align-items:center; gap:16px; min-width:0; }
.profile-name{ font-size:clamp(1.9rem, 7vw, 2.6rem); line-height:1.04; }
.meta-location{ display:inline-flex; align-items:center; gap:5px; margin-top:8px; font-size:14px; font-weight:500; color:var(--muted); }
.meta-location svg{ width:15px; height:15px; flex:none; }
.profile-head .atar-stat{ margin-top:4px; }
.profile-head .atar-value{ font-size:26px; }
.profile-teaser{ margin-top:18px; font-family:var(--display); font-weight:500; font-size:clamp(1.15rem, 4vw, 1.4rem); line-height:1.35; color:var(--ink); }
.profile > .credential{ margin-top:18px; }

.stats{ display:grid; grid-template-columns:1fr 1fr; gap:10px; margin-top:22px; }
.stat{ background:var(--cream-2); border:1px solid var(--line); border-radius:var(--r); padding:12px 14px; }
.stat-label{ display:block; font-size:11px; font-weight:600; letter-spacing:.06em; text-transform:uppercase; color:var(--muted); }
.stat-value{ display:block; margin-top:4px; font-family:var(--display); font-weight:600; font-size:15px; color:var(--pine); line-height:1.2; }

.profile-section{ margin-top:34px; }
.results-note{ font-size:14.5px; color:var(--pine); font-weight:500; margin:-4px 0 14px; }
.marks-list{ display:flex; flex-direction:column; gap:10px; }
.mark{ display:flex; align-items:center; justify-content:space-between; gap:14px; background:var(--surface); border:1px solid var(--line); border-radius:var(--r); padding:14px 16px; box-shadow:var(--sh-1); transition:transform .15s ease, box-shadow .15s ease; }
.mark:hover{ transform:translateY(-2px); box-shadow:var(--sh-2); }
.mark--top{ box-shadow:inset 3px 0 0 var(--amber), var(--sh-1); }
.mark--top:hover{ box-shadow:inset 3px 0 0 var(--amber), var(--sh-2); }
.mark-info{ min-width:0; }
.mark-subject{ display:block; font-weight:600; font-size:15px; color:var(--ink); }
.mark-note{ display:inline-block; margin-top:6px; font-size:12px; font-weight:600; padding:3px 10px; border-radius:var(--pill); background:#ECEAE0; color:#4A5049; }
.mark--top .mark-note{ background:var(--amber-fill); color:var(--amber-ink); }
.mark-score{ font-family:var(--display); font-weight:700; font-size:30px; color:var(--pine); line-height:1; flex:none; font-variant-numeric:tabular-nums; }

.profile-bio{ color:var(--ink-2); font-size:16.5px; line-height:1.75; }

.prompts{ display:flex; flex-direction:column; gap:12px; }
.prompt{ background:var(--surface); border:1px solid var(--line); border-radius:var(--r); padding:16px 18px; box-shadow:var(--sh-1); }
.prompt-q{ display:block; font-size:12.5px; font-weight:600; color:var(--muted); }
.prompt-a{ display:block; margin-top:6px; font-family:var(--display); font-weight:500; font-size:18px; line-height:1.35; color:var(--ink); }

.photo-feature{ display:grid; grid-template-columns:1fr; gap:18px; align-items:center; margin-top:18px; background:var(--cream-2); border:1px solid var(--line); border-radius:var(--r-lg); padding:18px; }
.photo-feature-img{ width:100%; border-radius:var(--r); border:1px solid var(--line); }

.profile-cta{ margin-top:36px; border-top:1px solid var(--line); padding-top:24px; }
.cta-fineprint{ text-align:center; color:var(--muted); font-size:13px; margin-top:12px; }
.coming-soon{ display:block; text-align:center; margin-top:12px; font-size:14px; font-weight:600; color:var(--amber-ink); background:var(--amber-fill); padding:11px 14px; border-radius:var(--r); }
.coming-soon[hidden]{ display:none; }
.not-found{ text-align:center; padding:56px 0; }
.not-found h1{ font-size:30px; }
.not-found p{ color:var(--muted); margin:12px 0 24px; }

/* ============ ABOUT PAGE ============ */
.about-hero{ padding:44px 0 20px; }
.prose{ max-width:66ch; }
.prose p{ margin-top:1.1em; font-size:17px; line-height:1.78; color:var(--ink-2); }
.prose p:first-child{ margin-top:0; }
.prose .lead{ color:var(--ink); }
.pullbar{ border-left:3px solid var(--amber); padding:6px 0 6px 20px; margin:28px 0; }
.pullbar p{ font-family:var(--display); font-weight:500; font-size:clamp(1.3rem,4.5vw,1.7rem); line-height:1.3; color:var(--ink); margin:0; }
.vet-grid{ display:grid; grid-template-columns:1fr; gap:14px; margin-top:24px; }
.vet{ display:flex; gap:14px; background:var(--surface); border:1px solid var(--line); border-radius:var(--r-lg); padding:20px; box-shadow:var(--sh-1); }
.vet-ico{ width:42px; height:42px; border-radius:11px; background:var(--pine); color:var(--cream); display:grid; place-items:center; flex:none; }
.vet-ico svg{ width:22px; height:22px; }
.vet h3{ font-size:17px; }
.vet p{ margin-top:6px; color:var(--muted); font-size:15px; line-height:1.6; }

/* ============ TRUST (WWCC panel) ============ */
.trust-inner{ display:flex; align-items:center; gap:20px; justify-content:center; max-width:820px; margin:0 auto; }
.trust-inner > svg{ width:44px; height:44px; color:var(--amber); flex:none; }
.trust-text{ font-family:var(--display); font-weight:500; font-size:clamp(1.15rem, 3.6vw, 1.6rem); line-height:1.4; }

/* ============ CTA BAND ============ */
.ctaband{ text-align:center; }
.ctaband .h2{ color:var(--cream); }
.ctaband p{ color:rgba(246,243,234,.82); margin:14px auto 26px; max-width:48ch; font-size:1.05rem; }
.ctaband .btn--subscribe{ width:auto; }

/* ============ FOOTER ============ */
.site-footer{ background:var(--cream); border-top:1px solid var(--line); padding:44px 0; }
.footer-inner{ display:flex; flex-direction:column; align-items:center; gap:14px; text-align:center; }
.footer-links{ display:flex; flex-wrap:wrap; gap:6px 18px; justify-content:center; }
.footer-links a{ font-size:14px; font-weight:500; color:var(--muted); }
.footer-links a:hover{ color:var(--pine); }
.footer-fine{ font-size:13px; color:var(--muted); }

/* ============ REVEAL ANIMATION ============ */
.js .reveal{ opacity:0; transform:translateY(16px); transition:opacity .55s ease, transform .55s ease; }
.js .reveal.in{ opacity:1; transform:none; }

/* ============ RESPONSIVE (scale up from mobile) ============ */
@media (min-width:640px){
  .wrap{ padding:0 28px; }
  .section{ padding:76px 0; }
  .wordmark-accent{ display:inline; }
  .nav a:not(.nav-cta){ display:inline-flex; }
  .getgrid{ grid-template-columns:1fr 1fr; }
  .steps{ grid-template-columns:repeat(3, 1fr); }
  .tutor-grid{ grid-template-columns:1fr 1fr; gap:22px; }
  .stats{ grid-template-columns:repeat(3, 1fr); }
  .vet-grid{ grid-template-columns:1fr 1fr; }
  .photo-feature{ grid-template-columns:minmax(0,200px) 1fr; gap:22px; }
}
@media (min-width:960px){
  .hero{ padding:64px 0 52px; }
  .hero-grid{ grid-template-columns:1.05fr .95fr; align-items:center; gap:56px; }
  .hero-sub{ font-size:1.25rem; }
  .getgrid{ grid-template-columns:repeat(4, 1fr); }
  .tutor-grid{ grid-template-columns:repeat(3, 1fr); }
  .rrow-num{ font-size:44px; }
}

/* ============ REDUCED MOTION ============ */
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *{ animation-duration:.001ms !important; animation-iteration-count:1 !important; transition-duration:.001ms !important; }
  .js .reveal{ opacity:1 !important; transform:none !important; }
}
