/* ========== Tokens ========== */
:root {
  --paper: #F6F4EF;
  --paper-2: #EEE9E0;
  --white: #FFFFFF;
  --ink: #151617;
  --ink-80: rgba(21, 22, 23, .82);
  --ink-60: rgba(21, 22, 23, .66);
  --line: rgba(21, 22, 23, .12);
  --yellow: #FED049;
  --yellow-2: #FFDC73;
  --yellow-light: #FFE7A0;
  --yellow-deep: #E9B526;
  --red: #E42A25;
  --red-light: #FF8A86;
  --red-soft: #FCE4E2;
  --crimson: #991915;
  --crimson-2: #B51F1A;
  --indigo: #302B63;
  --slate: #54595F;
  --sand: #EFE7DA;
  --on-dark: #F6F4EF;
  --on-dark-70: rgba(246, 244, 239, .8);
  --focus: var(--ink);

  --r-xs: 12px;
  --r-s: 18px;
  --r-m: 32px;
  --r-l: 40px;
  --r-xl: 48px;
  --r-pill: 999px;

  --s-1: 4px;
  --s-2: 8px;
  --s-3: 12px;
  --s-4: 16px;
  --s-5: 24px;
  --s-6: 32px;
  --s-7: 48px;
  --s-8: 64px;
  --s-9: 96px;
  --gutter: clamp(16px, 4vw, 40px);
  --section-y: clamp(80px, 10vw, 150px);
  --container: 1320px;

  --ease-spring: cubic-bezier(.34, 1.56, .64, 1);
  --ease-out: cubic-bezier(.22, 1, .36, 1);
  --ease-in-out: cubic-bezier(.65, 0, .35, 1);
  --t-fast: .2s;
  --t-med: .35s;
  --t-slow: .7s;

  --sh-1: 0 1px 2px rgba(21, 22, 23, .06), 0 6px 16px -6px rgba(21, 22, 23, .14);
  --sh-2: 0 2px 4px rgba(21, 22, 23, .06), 0 14px 32px -12px rgba(21, 22, 23, .22), 0 32px 64px -32px rgba(21, 22, 23, .28);
  --sh-3: 0 4px 8px rgba(21, 22, 23, .08), 0 24px 48px -16px rgba(21, 22, 23, .3), 0 60px 100px -40px rgba(21, 22, 23, .35);

  --f-base: 'WD Num', 'Poppins', 'Noto Sans Hebrew', system-ui, sans-serif;
  --f-num: 'Outfit', sans-serif;

  --fs-body: clamp(1rem, .96rem + .2vw, 1.0625rem);
  --fs-lead: clamp(1.08rem, 1rem + .4vw, 1.3rem);
  --fs-h3: clamp(1.3rem, 1.15rem + .6vw, 1.6rem);
  --fs-h2: clamp(2.2rem, 1.4rem + 3.6vw, 4.4rem);
  --fs-h1: clamp(3.1rem, 1.6rem + 6.2vw, 7.6rem);

  --header-h: 68px;
}

/* ========== Base ========== */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-padding-top: 100px; scrollbar-gutter: stable; }
html.is-loading { overflow: hidden; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--f-base);
  font-size: var(--fs-body);
  line-height: 1.6;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button { font: inherit; color: inherit; }
h1, h2, h3, p, figure, blockquote, dl, dd { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
main { display: block; overflow-x: clip; }
main:focus, [tabindex="-1"]:focus { outline: none; }
.num { font-family: var(--f-num); font-variant-numeric: tabular-nums; unicode-bidi: isolate; }
.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.sr-only {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
:focus-visible { outline: 3px solid var(--focus); outline-offset: 3px; border-radius: var(--r-xs); }
.ico {
  width: 22px; height: 22px; flex: none;
  fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
}
.ico--sm { width: 16px; height: 16px; }
.ico--lg { width: 34px; height: 34px; stroke-width: 1.35; }

.skip-link {
  position: fixed; inset-inline-start: 16px; top: 12px; z-index: 10001;
  background: var(--ink); color: var(--yellow); padding: 12px 20px; border-radius: var(--r-pill);
  font-weight: 700; text-decoration: none; transform: translateY(-160%);
  transition: transform var(--t-med) var(--ease-out);
}
.skip-link:focus { transform: none; }

/* ========== Type helpers ========== */
.eyebrow {
  display: inline-flex; align-items: center; gap: var(--s-2);
  padding: 7px 16px; border-radius: var(--r-pill);
  background: var(--white); box-shadow: inset 0 0 0 1.5px var(--line);
  font-size: .92rem; font-weight: 700; color: var(--ink); margin-bottom: var(--s-5);
  width: fit-content; align-self: flex-start; justify-self: start;
}
.eyebrow--yellow { background: var(--yellow); box-shadow: none; color: var(--ink); }
.section-head { margin-bottom: clamp(36px, 5vw, 64px); max-width: 860px; }
.section-head h2, .hero__title, .footer__big {
  font-weight: 900; letter-spacing: -.025em; line-height: 1;
}
.section-head h2 { font-size: var(--fs-h2); text-wrap: balance; }
.section-head__lead { margin-top: var(--s-5); font-size: var(--fs-lead); color: var(--ink-80); max-width: 52ch; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--row { max-width: none; display: flex; align-items: end; justify-content: space-between; gap: var(--s-5); flex-wrap: wrap; }
.section-head--light h2 { color: var(--on-dark); }
.u-yellow { color: var(--yellow); }
.u-red-bg, .u-yellow-bg {
  background-repeat: no-repeat; background-size: 100% .38em; background-position: 0 88%;
  -webkit-box-decoration-break: clone; box-decoration-break: clone; padding-inline: .06em;
}
.u-red-bg { background-image: linear-gradient(var(--red), var(--red)); }
.u-yellow-bg { background-image: linear-gradient(var(--yellow), var(--yellow)); }

/* ========== Buttons ========== */
.btn {
  --bh: 52px; --btn-base: transparent; --btn-fill: var(--ink); --btn-fill-fg: var(--white);
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: var(--bh); padding: 0 26px; border-radius: var(--r-pill); border: 0;
  font-weight: 700; font-size: 1rem; line-height: 1.2; text-decoration: none; cursor: pointer;
  background: linear-gradient(to left, var(--btn-fill) 50%, var(--btn-base) 50%) 4% 0% / 220% 100% no-repeat;
  transition: transform var(--t-fast) var(--ease-out), box-shadow var(--t-med) var(--ease-out), color .45s var(--ease-out), background-position .55s var(--ease-out);
}
.btn:dir(ltr) { background-image: linear-gradient(to right, var(--btn-fill) 50%, var(--btn-base) 50%); background-position: 96% 0%; }
.btn:hover, .btn:focus-visible { color: var(--btn-fill-fg); background-position: 96% 0%; }
.btn:dir(ltr):hover, .btn:dir(ltr):focus-visible { background-position: 4% 0%; }
.btn:active { transform: scale(.97); }
.btn__arrow { display: inline-grid; flex: none; width: 22px; height: 22px; overflow: hidden; }
.btn__arrow .ico { grid-area: 1 / 1; transition: transform .45s var(--ease-out); }
.btn__arrow .ico + .ico { transform: translateX(110%); }
.btn:hover .btn__arrow .ico, .btn:focus-visible .btn__arrow .ico { transform: translateX(-110%); }
.btn:hover .btn__arrow .ico + .ico, .btn:focus-visible .btn__arrow .ico + .ico { transform: none; }
.btn--sm { --bh: 44px; padding: 0 20px; font-size: .95rem; }
.btn--lg { --bh: 60px; padding: 0 32px; font-size: 1.08rem; }
.btn--block { width: 100%; }
.btn--primary { --btn-fill: var(--yellow); --btn-fill-fg: var(--ink); --btn-base: var(--crimson); color: var(--white); box-shadow: 0 10px 24px -10px rgba(153, 25, 21, .6); }
.btn--primary:hover { box-shadow: 0 16px 32px -12px rgba(153, 25, 21, .7); }
.btn--yellow { --btn-fill: var(--ink); --btn-fill-fg: var(--yellow); --btn-base: var(--yellow); color: var(--ink); box-shadow: 0 10px 24px -12px rgba(160, 118, 0, .6); }
.btn--ghost { --btn-fill: var(--ink); --btn-fill-fg: var(--white); color: var(--ink); box-shadow: inset 0 0 0 2px var(--ink); }
.btn--ghost-light { --btn-fill: var(--on-dark); --btn-fill-fg: var(--ink); color: var(--on-dark); box-shadow: inset 0 0 0 2px rgba(246, 244, 239, .5); }
.pill { display: inline-block; padding: 6px 14px; border-radius: var(--r-pill); font-size: .88rem; font-weight: 800; }
.pill--yellow { background: var(--yellow); color: var(--ink); }

/* ========== Loader ========== */
.loader { display: none; }
.js .loader {
  display: block; position: fixed; inset: 0; z-index: 10000; cursor: pointer;
  animation: loader-failsafe .4s var(--ease-in-out) 3.2s forwards;
}
.loader__veil {
  --r: 0px; --w1: 0px; --w2: 0px;
  position: absolute; inset: 0;
  background: radial-gradient(circle at var(--cx, 50%) var(--cy, 50%),
    transparent var(--r),
    var(--crimson) var(--r), var(--crimson) calc(var(--r) + var(--w1)),
    var(--yellow) calc(var(--r) + var(--w1)), var(--yellow) calc(var(--r) + var(--w2)),
    var(--paper) calc(var(--r) + var(--w2)));
}
.loader__mark { position: absolute; inset: 0; margin: auto; width: min(420px, 72vw); height: fit-content; }
.loader__logo { position: relative; width: 100%; height: auto; animation: loader-in .45s var(--ease-out) both; }
.loader__bark {
  position: absolute; left: 51.5%; top: 45%; width: 24%; aspect-ratio: 1; border-radius: 50%;
  border: 2px solid var(--crimson); opacity: 0; translate: -50% -50%;
  animation: loader-bark 1.5s var(--ease-out) .3s infinite;
}
.loader__bark:nth-child(2) { animation-delay: .8s; border-color: var(--yellow-deep); }
.loader__bark:nth-child(3) { animation-delay: 1.3s; }
.js .loader ~ .site-header .brand img { opacity: 0; animation: loader-brand 0s 3.2s forwards; }
.js.is-loading .loader ~ .site-header .brand img { animation: none; }
@keyframes loader-in { from { opacity: 0; transform: translateY(14px) scale(.94); } }
@keyframes loader-bark { 0% { opacity: .9; scale: .7; } 100% { opacity: 0; scale: 3.2; } }
@keyframes loader-failsafe { to { opacity: 0; visibility: hidden; } }
@keyframes loader-brand { to { opacity: 1; } }

/* ========== Cursor ========== */
.cursor { display: none; }
.has-cursor .cursor { display: block; position: fixed; top: 0; left: 0; z-index: 9999; pointer-events: none; }
.cursor__blob {
  position: absolute; width: 22px; height: 22px; margin: -11px 0 0 -11px; border-radius: 50%;
  background: var(--red); box-shadow: 0 0 0 2px var(--white);
  transition: width var(--t-med) var(--ease-spring), height var(--t-med) var(--ease-spring), margin var(--t-med) var(--ease-spring), background-color var(--t-fast), opacity var(--t-fast);
}
.cursor__paw {
  position: absolute; width: 40px; height: 40px; margin: -20px 0 0 -20px;
  fill: none; stroke: var(--red); stroke-width: 1.8; filter: drop-shadow(0 0 1.5px var(--white)); stroke-linecap: round; stroke-linejoin: round;
  opacity: 0; transform: scale(.3) rotate(-20deg); transition: opacity var(--t-fast), transform var(--t-med) var(--ease-spring);
}
.cursor[data-mode="link"] .cursor__blob { width: 56px; height: 56px; margin: -28px 0 0 -28px; background: rgba(228, 42, 37, .16); box-shadow: inset 0 0 0 2px var(--red), 0 0 0 2px var(--white); }
.cursor[data-mode="paw"] .cursor__blob { opacity: 0; }
.cursor[data-mode="paw"] .cursor__paw { opacity: 1; transform: none; }
.cursor[data-mode="text"] .cursor__blob { opacity: 0; }
.has-cursor, .has-cursor a, .has-cursor button, .has-cursor summary, .has-cursor label, .has-cursor [data-cursor], .has-cursor [role="option"] { cursor: none; }
.has-cursor input, .has-cursor textarea { cursor: auto; }

/* ========== Header ========== */
.site-header {
  position: fixed; top: 12px; inset-inline: 12px; z-index: 900;
  transition: transform .5s var(--ease-out);
}
.site-header[data-state="hidden"] { transform: translateY(-140%); }
.site-header__bar {
  position: relative; max-width: 1400px; margin-inline: auto; height: var(--header-h);
  display: flex; align-items: center; gap: var(--s-5);
  padding-inline: 22px 10px; border-radius: var(--r-pill);
  background: rgba(255, 255, 255, .78); backdrop-filter: blur(16px) saturate(1.4); -webkit-backdrop-filter: blur(16px) saturate(1.4);
  box-shadow: var(--sh-1), inset 0 0 0 1px rgba(255, 255, 255, .6);
  transition: box-shadow var(--t-med) var(--ease-out), background-color var(--t-med);
}
.site-header[data-state="scrolled"] .site-header__bar { background: rgba(255, 255, 255, .92); box-shadow: var(--sh-2); }
.brand { flex: none; display: block; border-radius: var(--r-xs); }
.brand img { width: auto; height: 34px; }
.nav { flex: 1; display: flex; justify-content: center; }
.nav__list { display: flex; align-items: center; gap: 2px; }
.nav__link {
  display: inline-flex; align-items: center; gap: 4px; min-height: 44px; padding: 0 14px; border-radius: var(--r-pill);
  font-weight: 600; font-size: .98rem; text-decoration: none; background: none; border: 0; cursor: pointer;
  transition: background-color var(--t-fast), color var(--t-fast);
}
.nav__link:hover, .nav__trigger[aria-expanded="true"] { background: var(--sand); }
.nav__link.is-current { background: var(--ink); color: var(--yellow); }
.nav__trigger .ico { transition: transform var(--t-med) var(--ease-spring); }
.nav__trigger[aria-expanded="true"] .ico { transform: rotate(180deg); }
.mega {
  position: absolute; top: calc(100% + 10px); inset-inline: 0; margin-inline: auto; max-width: 1040px;
  background: var(--white); border-radius: var(--r-m); box-shadow: var(--sh-3); padding: 28px;
  opacity: 0; transform: translateY(-10px) scale(.98); transform-origin: top center;
  transition: opacity var(--t-med) var(--ease-out), transform var(--t-med) var(--ease-spring);
}
.mega.is-open { opacity: 1; transform: none; }
.mega--academy { max-width: 720px; }
.mega__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-5); }
.mega--academy .mega__grid { grid-template-columns: 1fr 1fr; }
.mega__title { font-size: .82rem; font-weight: 800; color: var(--ink-60); margin-bottom: 10px; letter-spacing: .02em; }
.mega__col a {
  display: block; padding: 8px 12px; margin-inline: -12px; border-radius: var(--r-xs); text-decoration: none; font-weight: 600;
  transition: background-color var(--t-fast), transform var(--t-fast) var(--ease-out);
}
.mega__col a:hover { background: var(--yellow); transform: translateX(-4px); }
.mega__feature {
  display: grid; align-content: end; gap: 6px; min-height: 200px; padding: 24px; border-radius: var(--r-m);
  background: var(--ink) url(../../assets/img/cut-malinois-leap.webp) no-repeat left -30px top 12px / 70%;
  color: var(--white); text-decoration: none;
}
.mega__feature strong { font-size: 1.5rem; font-weight: 900; }
.mega__feature-tag { justify-self: start; background: var(--yellow); color: var(--ink); padding: 4px 12px; border-radius: var(--r-pill); font-size: .8rem; font-weight: 800; }
.site-header__actions { display: flex; align-items: center; gap: var(--s-2); margin-inline-start: auto; }
.phone-link { display: inline-flex; align-items: center; gap: 8px; min-height: 44px; padding: 0 12px; font-weight: 700; text-decoration: none; border-radius: var(--r-pill); }
.phone-link:hover { background: var(--sand); }
.phone-link--light { color: var(--on-dark); }
.phone-link--light:hover { background: rgba(255, 255, 255, .1); }
.burger {
  display: none; width: 48px; height: 48px; border-radius: 50%; border: 0; background: var(--ink); color: var(--yellow);
  place-items: center; cursor: pointer;
}

/* ========== Mobile menu ========== */
.mobile-menu {
  position: fixed; inset: 0; z-index: 1000; background: var(--ink); color: var(--on-dark);
  display: flex; flex-direction: column; padding: 18px var(--gutter) 28px; overflow-y: auto;
  clip-path: circle(0% at calc(100% - 40px) 40px);
  transition: clip-path .6s var(--ease-in-out);
}
[dir="rtl"] .mobile-menu { clip-path: circle(0% at 40px 40px); }
.mobile-menu.is-open { clip-path: circle(150% at 40px 40px); }
.mobile-menu[hidden] { display: none; }
.mobile-menu__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; }
.mobile-menu__top img { height: 30px; width: auto; }
.mobile-menu__close { width: 48px; height: 48px; border-radius: 50%; border: 0; background: var(--yellow); color: var(--ink); display: grid; place-items: center; cursor: pointer; }
.mobile-menu__list > li { border-bottom: 1px solid rgba(246, 244, 239, .12); }
.mobile-menu__list > li > a, .mobile-menu summary {
  display: flex; align-items: center; justify-content: space-between; min-height: 64px;
  font-size: clamp(1.6rem, 7vw, 2.2rem); font-weight: 800; text-decoration: none; list-style: none; cursor: pointer;
}
.mobile-menu summary::-webkit-details-marker { display: none; }
.mobile-menu details[open] summary .ico { transform: rotate(45deg); }
.mobile-menu summary .ico { transition: transform var(--t-med) var(--ease-spring); color: var(--yellow); }
.mobile-menu details ul { padding-bottom: 14px; }
.mobile-menu details a { display: block; padding: 10px 0; font-size: 1.1rem; color: var(--on-dark-70); text-decoration: none; }
.mobile-menu__list > li { opacity: 0; transform: translateY(24px); transition: opacity .4s var(--ease-out), transform .5s var(--ease-spring); }
.mobile-menu.is-open .mobile-menu__list > li { opacity: 1; transform: none; }
.mobile-menu.is-open .mobile-menu__list > li:nth-child(2) { transition-delay: .04s; }
.mobile-menu.is-open .mobile-menu__list > li:nth-child(3) { transition-delay: .08s; }
.mobile-menu.is-open .mobile-menu__list > li:nth-child(4) { transition-delay: .12s; }
.mobile-menu.is-open .mobile-menu__list > li:nth-child(5) { transition-delay: .16s; }
.mobile-menu.is-open .mobile-menu__list > li:nth-child(6) { transition-delay: .2s; }
.mobile-menu.is-open .mobile-menu__list > li:nth-child(7) { transition-delay: .24s; }
.mobile-menu__foot { margin-top: auto; padding-top: 28px; display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.mobile-menu { --focus: var(--yellow); }

/* ========== Hero ========== */
.hero {
  position: relative; min-height: 100svh; display: grid; align-items: center;
  padding-block: calc(var(--header-h) + 64px) 96px; overflow: clip;
  background:
    radial-gradient(60% 50% at 15% 30%, rgba(254, 208, 73, .24), transparent 70%),
    radial-gradient(50% 40% at 85% 80%, rgba(228, 42, 37, .08), transparent 70%),
    var(--paper);
}
.hero__inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(24px, 5vw, 80px); align-items: center; pointer-events: none; }
.hero__inner a, .hero__inner button { pointer-events: auto; }
.hero__copy { pointer-events: auto; }
.hero__title { font-size: var(--fs-h1); margin-bottom: var(--s-5); }
.split-line { display: block; }
.split-line .w { display: inline-block; white-space: nowrap; }
.split-line .ch { display: inline-block; will-change: transform; }
.marker { position: relative; font-style: normal; display: inline-block; isolation: isolate; color: var(--ink); }
.marker::before {
  content: ""; position: absolute; inset: 12% -4% 4% -6%; z-index: -1; border-radius: 22px;
  background: var(--yellow); transform: rotate(-2deg); transform-origin: right center;
}
.hero__sub { font-size: var(--fs-lead); color: var(--ink-80); max-width: 38ch; margin-bottom: var(--s-6); }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: var(--s-6); }
.hero__proof { display: flex; flex-wrap: wrap; gap: 10px 24px; font-weight: 600; color: var(--ink-80); }
.hero__proof li { display: inline-flex; align-items: baseline; gap: 6px; }
.hero__proof strong { font-size: 1.5rem; font-weight: 800; color: var(--ink); }
.hero__art {
  position: absolute; z-index: 1; inset-block-end: 0;
  inset-inline-end: max(0px, calc((100% - var(--container)) / 2));
  width: min(47%, 640px, calc((100svh - var(--header-h)) * .7)); aspect-ratio: 544 / 689; pointer-events: none;
}
.hero__dog { position: absolute; inset: 0; }
.hero__particles { position: absolute; left: -12%; top: -12%; width: 124%; height: 124%; pointer-events: none; }
.hero__dog.is-particles .hero__dog-img { visibility: hidden; }
.hero__dog-img {
  position: absolute; inset-inline: 0; bottom: -7%; width: 100%; height: auto; transform-origin: 50% 100%;
  filter: drop-shadow(-14px 22px 26px rgba(21, 22, 23, .26));
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ========== Ribbon ========== */
.ribbon {
  position: relative; z-index: 3; background: var(--yellow); color: var(--ink); overflow: clip;
  padding-block: 16px;
  box-shadow: 0 16px 32px -20px rgba(21, 22, 23, .45);
}
.ribbon__track { display: flex; align-items: center; gap: 28px; width: max-content; animation: marquee 36s linear infinite; }
.ribbon__track span { font-size: clamp(1.3rem, 2.4vw, 2rem); font-weight: 900; white-space: nowrap; }
.ribbon__track .ico { width: 30px; height: 30px; }
@keyframes marquee { to { transform: translateX(50%); } }

/* ========== KPIs ========== */
.kpis {
  --focus: var(--yellow);
  position: relative; background: var(--ink); color: var(--on-dark);
  margin: -20px clamp(8px, 1.4vw, 20px) 0; border-radius: 0 0 var(--r-xl) var(--r-xl);
  padding-block: calc(var(--section-y) + 20px) var(--section-y); overflow: clip;
}
.kpis::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, .08) 1.5px, transparent 1.6px); background-size: 28px 28px;
}
.stickers { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(12px, 2vw, 32px); align-items: center; }
.badge { position: relative; aspect-ratio: 1; display: grid; place-items: center; color: var(--ink); container-type: inline-size; }
.badge:nth-child(odd) { transform: translateY(-18px) rotate(-6deg); }
.badge:nth-child(even) { transform: translateY(22px) rotate(5deg); }
.badge__shape { position: absolute; inset: 0; width: 100%; height: 100%; filter: drop-shadow(0 18px 24px rgba(0, 0, 0, .35)); }
.badge--yellow .badge__shape { fill: var(--yellow); }
.badge--red .badge__shape { fill: var(--red); }
.badge--crimson .badge__shape { fill: var(--crimson); }
.badge--red, .badge--crimson { color: var(--white); }
.badge--white .badge__shape { fill: var(--paper); }
.badge__shape { transition: transform 1.2s var(--ease-out); }
.badge:hover .badge__shape { transform: rotate(24deg); }
.badge__gauge { position: absolute; inset: 0; width: 100%; height: 100%; fill: none; stroke: currentColor; }
.badge__gauge use { stroke-width: 9; stroke-dasharray: .2 .8; opacity: .22; }
.badge__gauge .badge__lit { opacity: 1; }
.badge--white .badge__lit { stroke: var(--red); }
.badge__sweep { stroke: #fff; stroke-width: 24; stroke-dasharray: 100 100; }
.badge__body { position: relative; display: grid; justify-items: center; text-align: center; gap: 2px; max-width: 56%; }
.badge__num { font-family: var(--f-num); font-weight: 800; font-size: 17cqi; line-height: 1; letter-spacing: -.03em; font-variant-numeric: tabular-nums; }
.badge__label { font-weight: 700; font-size: clamp(.72rem, 5.2cqi, 1rem); line-height: 1.25; }
.kpis__context { position: relative; margin-top: clamp(56px, 7vw, 96px); text-align: center; font-size: var(--fs-lead); color: var(--on-dark-70); }
.kpis__context strong { color: var(--yellow); font-weight: 800; font-size: 1.4em; }

/* ========== Paths / split ========== */
.paths { padding-block: var(--section-y) calc(var(--section-y) * .6); }
.split { display: flex; gap: 20px; min-height: clamp(540px, 64vh, 660px); }
.tile {
  --grow: 1;
  position: relative; flex: var(--grow) 1 0; min-width: 0; overflow: hidden; isolation: isolate;
  display: flex; flex-direction: column; align-items: flex-start;
  padding: clamp(28px, 3.4vw, 48px); border-radius: var(--r-xl); text-decoration: none;
  transition: flex-grow var(--t-slow) var(--ease-spring), box-shadow var(--t-med) var(--ease-out);
  box-shadow: var(--sh-2);
}
.split:hover .tile, .split:focus-within .tile { --grow: .8; }
.split .tile:hover, .split .tile:focus-visible { --grow: 1.4; box-shadow: var(--sh-3); }
.tile--owner { background: var(--yellow); color: var(--ink); }
.tile--pro { background: var(--ink); color: var(--on-dark); --focus: var(--yellow); }
.tile__kicker { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; padding: 8px 16px; border-radius: var(--r-pill); background: rgba(255, 255, 255, .6); margin-bottom: var(--s-5); }
.tile--pro .tile__kicker { background: rgba(255, 255, 255, .1); color: var(--yellow); }
.tile__title { font-size: clamp(2.3rem, 1.4rem + 3vw, 4.4rem); font-weight: 900; line-height: .98; letter-spacing: -.025em; max-width: 9ch; margin-bottom: var(--s-4); }
.tile--pro .tile__title { color: var(--yellow); }
.tile__text { max-width: 34ch; font-size: 1.05rem; margin-bottom: var(--s-5); position: relative; z-index: 1; }
.tile--pro .tile__text { color: var(--on-dark-70); }
.tile__list { display: grid; gap: 8px; font-weight: 700; margin-bottom: var(--s-6); position: relative; z-index: 1; }
.tile__list li { display: flex; align-items: center; gap: 10px; }
.tile__list li::before { content: ""; width: 10px; height: 10px; border-radius: 50%; background: currentColor; flex: none; }
.tile--pro .tile__list li::before { background: var(--red); }
.tile__cta { margin-top: auto; display: inline-flex; align-items: center; gap: 10px; font-weight: 800; min-height: 52px; padding: 0 24px; border-radius: var(--r-pill); background: var(--ink); color: var(--white); position: relative; z-index: 1; transition: transform var(--t-med) var(--ease-spring); }
.tile--pro .tile__cta { background: var(--yellow); color: var(--ink); }
.tile:hover .tile__cta { transform: translateX(-6px); }
.tile__dog {
  position: absolute; bottom: 0; inset-inline-end: -4%; z-index: -1;
  height: 82%; width: auto; max-width: none; transform-origin: 50% 100%;
  transition: transform var(--t-slow) var(--ease-spring);
}
.tile--pro .tile__dog { height: 92%; inset-inline-end: -8%; }
.tile:hover .tile__dog, .tile:focus-visible .tile__dog { transform: scale(1.06) rotate(-2deg); }
.tile::after {
  content: ""; position: absolute; z-index: -2; width: 70%; aspect-ratio: 1; border-radius: 50%;
  inset-inline-end: -18%; bottom: -24%; background: rgba(255, 255, 255, .45);
}
.tile--pro::after { background: rgba(228, 42, 37, .22); }

/* ========== Services bento ========== */
.services { padding-block: calc(var(--section-y) * .6) var(--section-y); }
.bento { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: minmax(250px, auto); gap: 18px; }
.card {
  --rx: 0deg; --ry: 0deg; --gx: 50%; --gy: 50%;
  position: relative; overflow: hidden; isolation: isolate;
  padding: 28px; border-radius: var(--r-l); box-shadow: var(--sh-2);
  display: flex; flex-direction: column; gap: 10px;
  transform: perspective(1000px) rotateX(var(--rx)) rotateY(var(--ry));
  transition: transform .6s var(--ease-out), box-shadow var(--t-med) var(--ease-out);
}
.card:hover { box-shadow: var(--sh-3); }
.card.is-tilting { transition: transform .15s var(--ease-out), box-shadow var(--t-med) var(--ease-out); }
.card h3 { font-size: var(--fs-h3); font-weight: 800; line-height: 1.15; max-width: 16ch; }
.card p { font-size: .98rem; max-width: 30ch; }
.card:not(.card--hero, .card--wide) { padding-bottom: 116px; }
.card__glare {
  position: absolute; inset: 0; z-index: 3; pointer-events: none; opacity: 0;
  background: radial-gradient(circle at var(--gx) var(--gy), rgba(255, 255, 255, .55), transparent 50%);
  transition: opacity var(--t-med);
}
.card:hover .card__glare { opacity: 1; }
.card__icon { width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; background: var(--white); color: var(--ink); margin-bottom: 8px; box-shadow: inset 0 0 0 1.5px var(--line); }
.card__icon .ico { width: 24px; height: 24px; }
.card--yellow { background: var(--yellow); }
.card--white { background: var(--white); }
.card--indigo { background: var(--indigo); color: var(--white); }
.card--crimson { background: var(--crimson); color: var(--white); }
.card--blush { background: var(--red-soft); }
.card--indigo .card__icon, .card--crimson .card__icon { background: rgba(255, 255, 255, .14); color: var(--white); box-shadow: none; }
.card--sand { background: var(--sand); }
.card--ink { background: var(--ink); color: var(--on-dark); }
.card--ink .card__list .ico { color: var(--yellow); }
.card--hero { grid-column: span 2; grid-row: span 2; padding: 40px; }
.card--hero h3 { font-size: clamp(2rem, 1.4rem + 2vw, 3.2rem); font-weight: 900; }
.card--hero p { font-size: 1.15rem; }
.card--wide { grid-column: span 2; }
.cmds { position: relative; z-index: 1; display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; max-width: 420px; }
.cmds button {
  min-height: 44px; padding: 0 18px; border: 0; border-radius: var(--r-pill); background: var(--ink); color: var(--yellow);
  font-weight: 800; font-size: 1.05rem; cursor: pointer;
  transition: transform var(--t-med) var(--ease-spring), background-color var(--t-fast), color var(--t-fast), box-shadow var(--t-fast);
}
.cmds li:nth-child(3n+2) button { background: var(--white); color: var(--ink); }
.cmds button:hover { transform: translateY(-2px); }
.cmds li button[aria-pressed="true"] { background: var(--crimson); color: var(--white); transform: scale(1.06); box-shadow: 0 10px 20px -10px rgba(153, 25, 21, .8); }
.pup { position: absolute; z-index: 0; inset-inline-end: 6%; bottom: 7%; width: min(48%, 360px); aspect-ratio: 5 / 4; pointer-events: none; }
.pup__gl { position: absolute; left: -15%; top: -15%; width: 130%; height: 130%; }
.pup__still {
  position: absolute; inset: 0; background: var(--ink);
  mask: url("../../assets/img/pose-sit.webp") 50% 100% / contain no-repeat;
  transition: opacity var(--t-med);
}
.card--hero[data-cmd="1"] .pup__still { mask-image: url("../../assets/img/pose-down.webp"); }
.card--hero[data-cmd="2"] .pup__still { mask-image: url("../../assets/img/pose-come.webp"); }
.card--hero[data-cmd="3"] .pup__still { mask-image: url("../../assets/img/pose-stay.webp"); }
.card--hero[data-cmd="4"] .pup__still { mask-image: url("../../assets/img/pose-heel.webp"); }
.card--hero[data-cmd="5"] .pup__still { mask-image: url("../../assets/img/pose-place.webp"); }
.pup.is-live .pup__still { opacity: 0; }
.card__list { display: grid; gap: 10px; margin-top: 6px; font-weight: 600; position: relative; z-index: 1; }
.card__list li { display: flex; align-items: center; gap: 10px; }
.card--ink .card__list { max-width: 58%; }
.card__note { margin-top: auto; font-size: .9rem !important; color: var(--ink-80); position: relative; z-index: 1; max-width: 60% !important; }
.sil {
  position: absolute; z-index: -1; inset-inline-end: 18px; bottom: 14px; width: 48%; height: 92px;
  background: currentColor; opacity: .92;
  -webkit-mask: var(--sil) no-repeat left bottom / contain; mask: var(--sil) no-repeat left bottom / contain;
  animation: sil-bob 3.6s var(--ease-in-out) infinite alternate; transform-origin: 30% 100%;
}
.card--white .sil, .card--sand .sil { color: var(--ink); }
.card--blush .sil { color: var(--red); }
.card--crimson .sil { color: rgba(255, 255, 255, .92); }
.card--indigo .sil { color: var(--yellow); }
.sil--wide { width: 36%; height: 130px; }
.card:nth-child(2n) .sil { animation-delay: -1.4s; }
.card:nth-child(3n) .sil { animation-duration: 4.4s; }
@keyframes sil-bob { from { transform: translateY(0) rotate(0); } to { transform: translateY(-6px) rotate(-2deg); } }
.card__peek { position: absolute; z-index: 0; bottom: -8px; inset-inline-end: -26px; width: 46%; max-width: 320px; transition: transform var(--t-slow) var(--ease-spring); }
.card:hover .card__peek { transform: translateY(-8px) rotate(-3deg); }

/* ========== Problems ========== */
.problems { padding-block: var(--section-y); background: var(--white); border-radius: var(--r-xl); margin-inline: clamp(8px, 1.4vw, 20px); }
.problems__grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
.problems__intro h2 { font-size: var(--fs-h2); font-weight: 900; line-height: 1; letter-spacing: -.025em; }
.quote-mini { margin-top: var(--s-6); padding-inline-start: 20px; border-inline-start: 4px solid var(--red); }
.quote-mini p { font-size: 1.2rem; font-weight: 700; line-height: 1.45; }
.quote-mini cite { display: block; margin-top: 8px; font-style: normal; color: var(--ink-60); font-weight: 600; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: var(--s-5); }
.chip {
  min-height: 48px; padding: 0 22px; border-radius: var(--r-pill); border: 2px solid var(--ink); background: var(--paper);
  font-weight: 700; font-size: 1.02rem; cursor: pointer;
  transition: transform var(--t-med) var(--ease-spring), background-color var(--t-fast), color var(--t-fast);
}
.chip:hover { background: var(--yellow); transform: translateY(-3px) rotate(-1.5deg); }
.chip:active { transform: scale(.95); }
.chip[aria-pressed="true"] { background: var(--ink); color: var(--yellow); transform: rotate(-2deg) scale(1.04); }
.solution {
  position: relative; min-height: 290px; padding: clamp(28px, 3.2vw, 44px); padding-inline-end: 42%;
  border-radius: var(--r-l); background: var(--red-soft); overflow: hidden;
}
.solution::before { content: ""; position: absolute; width: 60%; aspect-ratio: 1; border-radius: 50%; background: var(--red); inset-inline-end: -14%; bottom: -34%; opacity: .75; }
.solution__dog { position: absolute; bottom: 0; inset-inline-end: 0; width: 40%; max-width: 300px; }
.solution__body { position: relative; }
.solution__title { font-size: var(--fs-h3); font-weight: 800; margin-bottom: 10px; line-height: 1.2; }
.solution__text { font-size: 1.08rem; color: var(--ink-80); }

/* ========== Method / journey ========== */
.method {
  padding-block: var(--section-y); margin: var(--s-9) clamp(8px, 1.4vw, 20px) 0; border-radius: var(--r-xl);
  background:
    radial-gradient(50% 30% at 90% 0%, rgba(254, 208, 73, .5), transparent 70%),
    var(--sand);
}
.method__head { display: grid; grid-template-columns: 1.3fr .7fr; gap: var(--s-6); align-items: end; }
.tracks { display: grid; gap: 14px; margin-bottom: clamp(36px, 5vw, 64px); }
.track { display: grid; grid-template-columns: auto 1fr; column-gap: 16px; align-items: center; padding: 20px 24px; border-radius: var(--r-m); box-shadow: var(--sh-1); }
.track .ico { grid-row: span 2; }
.track--leash { background: var(--yellow); }
.track--free { background: var(--white); }
.track__name { font-size: 1.3rem; font-weight: 800; line-height: 1.2; }
.track__desc { color: var(--ink-80); font-weight: 600; }
.journey { position: relative; margin-top: var(--s-5); }
.journey__svg { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; pointer-events: none; }
.journey__track { fill: none; stroke: rgba(21, 22, 23, .2); stroke-width: 3; stroke-linecap: round; stroke-dasharray: 2 12; }
.journey__line { fill: none; stroke: var(--ink); stroke-width: 6; stroke-linecap: round; }
.journey__paw {
  position: absolute; top: 0; left: 0; z-index: 3; width: 60px; height: 60px; margin: -30px 0 0 -30px;
  display: grid; place-items: center; border-radius: 50%; background: var(--red); color: var(--white);
  box-shadow: 0 10px 24px -8px rgba(21, 22, 23, .5), 0 0 0 5px var(--white);
  will-change: transform; visibility: hidden;
}
.journey.is-ready .journey__paw { visibility: visible; }
.journey__paw .ico { width: 30px; height: 30px; stroke-width: 1.6; }
.journey__steps { position: relative; display: grid; gap: clamp(28px, 4vw, 56px); }
.step { position: relative; z-index: 2; display: flex; align-items: center; gap: 22px; width: 50%; }
.step:nth-child(odd) { margin-inline-end: auto; padding-inline-end: 40px; }
.step:nth-child(even) { margin-inline-start: auto; padding-inline-start: 40px; flex-direction: row-reverse; }
.step:nth-child(odd) .step__node { order: 2; }
.step__node {
  flex: none; width: 72px; height: 72px; border-radius: 50%; display: grid; place-items: center;
  background: var(--white); color: var(--ink); font-size: 1.7rem; font-weight: 800;
  box-shadow: inset 0 0 0 3px var(--ink); transition: background-color var(--t-med), transform var(--t-med) var(--ease-spring), color var(--t-med);
}
.step.is-on .step__node { background: var(--ink); color: var(--yellow); transform: scale(1.1); }
.step__card { flex: 1; background: var(--white); border-radius: var(--r-m); padding: 24px 28px; box-shadow: var(--sh-2); transition: transform var(--t-slow) var(--ease-spring); }
.step.is-on .step__card { transform: translateY(-4px); }
.step__card h3 { font-size: var(--fs-h3); font-weight: 800; line-height: 1.2; margin-bottom: 6px; }
.step__card p { color: var(--ink-80); }
.step--bonus .step__card { background: var(--ink); color: var(--on-dark); }
.step--bonus .step__card p { color: var(--on-dark-70); }
.step__bonus { display: inline-block; background: var(--yellow); color: var(--ink); padding: 4px 12px; border-radius: var(--r-pill); font-weight: 800; font-size: .82rem; margin-bottom: 8px; }
.kit { margin-top: clamp(56px, 7vw, 96px); background: var(--white); border-radius: var(--r-l); padding: clamp(24px, 3vw, 40px); box-shadow: var(--sh-1); }
.kit__title { font-size: var(--fs-h3); font-weight: 800; margin-bottom: var(--s-4); }
.kit__list { display: flex; flex-wrap: wrap; gap: 10px; }
.kit__list li { display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px; border-radius: var(--r-pill); background: var(--paper); font-weight: 600; }

/* ========== Academy ========== */
.academy { padding-block: var(--section-y); }
.academy .section-head { max-width: 1000px; }
.flagship {
  --focus: var(--yellow);
  position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 4vw, 56px);
  padding: clamp(28px, 4.5vw, 64px); border-radius: var(--r-xl); overflow: hidden;
  background:
    radial-gradient(50% 60% at 0% 100%, rgba(228, 42, 37, .35), transparent 70%),
    radial-gradient(40% 40% at 100% 0%, rgba(48, 43, 99, .9), transparent 70%),
    var(--ink);
  color: var(--on-dark); box-shadow: var(--sh-3);
}
.flagship h3 { font-size: clamp(2.3rem, 1.4rem + 3vw, 4rem); font-weight: 900; line-height: 1; letter-spacing: -.02em; margin: 18px 0 16px; }
.flagship__info > p { font-size: var(--fs-lead); color: var(--on-dark-70); max-width: 42ch; }
.flagship__perks { display: grid; gap: 12px; margin: 28px 0 36px; font-weight: 600; }
.flagship__perks li { display: flex; align-items: center; gap: 12px; }
.flagship__perks .ico { color: var(--yellow); }
.flagship__ctas { display: flex; flex-wrap: wrap; gap: 12px; }
.flagship__side { display: grid; gap: 28px; align-content: start; }
.flagship__nums { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.flagship__nums > div { display: flex; flex-direction: column-reverse; justify-content: flex-end; padding: 18px 20px; border-radius: var(--r-m); background: rgba(255, 255, 255, .07); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .1); }
.flagship__nums dd { font-weight: 800; font-size: clamp(2.6rem, 1.6rem + 3vw, 4.2rem); line-height: 1; color: var(--yellow); letter-spacing: -.03em; text-align: start; }
.flagship__nums > div:nth-child(2) dd { color: var(--red); }
.flagship__nums > div:nth-child(3) dd { color: var(--white); }
.flagship__nums dt { margin-top: 6px; font-weight: 600; color: var(--on-dark-70); font-size: .95rem; }
.certs { position: relative; aspect-ratio: 1000 / 780; margin-inline: 4% 0; }
.certs img { position: absolute; width: 86%; border-radius: var(--r-s); box-shadow: var(--sh-3); }
.certs__back { top: 0; inset-inline-start: 0; transform: rotate(7deg); opacity: .9; }
.certs__front { bottom: 0; inset-inline-end: 0; transform: rotate(-4deg); transition: transform var(--t-slow) var(--ease-spring); }
.flagship:hover .certs__front { transform: rotate(-1deg) translateY(-6px); }
.certs__badge {
  position: absolute; z-index: 2; top: -6%; inset-inline-end: -2%; width: 116px; height: 116px; border-radius: 50%;
  display: grid; place-content: center; text-align: center; background: var(--crimson); color: var(--white); font-weight: 700;
  transform: rotate(10deg); box-shadow: var(--sh-2); line-height: 1.1;
}
.certs__badge strong { font-size: 1.9rem; font-weight: 800; }
.deck { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 18px; }
.course {
  position: relative; display: flex; flex-direction: column; gap: 10px; padding: 30px; border-radius: var(--r-l); min-height: 280px;
  box-shadow: var(--sh-1); transition: transform var(--t-med) var(--ease-spring), box-shadow var(--t-med);
}
.course:hover { transform: translateY(-6px) rotate(-.6deg); box-shadow: var(--sh-3); }
.course h3 { font-size: var(--fs-h3); font-weight: 800; line-height: 1.2; }
.course p { color: inherit; opacity: .88; }
.course__icon { width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center; background: rgba(255, 255, 255, .7); margin-bottom: 6px; }
.course--crimson { background: var(--crimson); color: var(--white); }
.course--crimson .course__icon, .course--crimson .tags li { background: rgba(255, 255, 255, .14); }
.course--blush { background: var(--red-soft); }
.course--white { background: var(--white); }
.course--white .course__icon { background: var(--sand); }
.course--ink { background: var(--ink); color: var(--on-dark); --focus: var(--yellow); }
.course--ink .course__icon { background: rgba(255, 255, 255, .1); color: var(--yellow); }
.course--sand { background: var(--sand); }
.course--yellow { background: var(--yellow); }
.course--cta .btn { margin-top: auto; align-self: flex-start; }
.tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tags li { padding: 5px 12px; border-radius: var(--r-pill); background: rgba(255, 255, 255, .6); font-size: .88rem; font-weight: 700; }
.deck__hint { display: none; }

/* ========== About ========== */
.about { padding-block: var(--section-y); }
.bros { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.bro { background: var(--white); border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-2); display: flex; flex-direction: column; }
.bro__pic { position: relative; aspect-ratio: 1 / .78; overflow: hidden; isolation: isolate; }
.bro__blob {
  position: absolute; z-index: -1; inset: 12% 12% -20%; border-radius: 58% 42% 50% 50% / 50% 55% 45% 50%;
  animation: blob-morph 9s var(--ease-in-out) infinite alternate;
}
.bro--david .bro__blob { background: var(--red); }
.bro--shai .bro__blob { background: var(--yellow); }
.bro__pic img { position: absolute; bottom: 0; inset-inline: 0; margin-inline: auto; height: 100%; width: auto; max-width: none; }
.bro--shai .bro__pic img { height: 92%; }
.bro__text { padding: clamp(24px, 3vw, 40px); display: grid; gap: 12px; align-content: start; }
.bro__role { font-weight: 700; color: var(--ink-60); font-size: .95rem; }
.bro h3 { font-size: clamp(1.8rem, 1.3rem + 1.6vw, 2.6rem); font-weight: 900; line-height: 1; }
.bro blockquote { margin-top: 8px; padding: 18px 22px; border-radius: var(--r-m); background: var(--yellow); font-weight: 700; font-size: 1.08rem; }
.bro__chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.bro__chips li { padding: 8px 16px; border-radius: var(--r-pill); background: var(--sand); font-weight: 700; }
@keyframes blob-morph {
  to { border-radius: 42% 58% 45% 55% / 55% 45% 55% 45%; transform: rotate(8deg) scale(1.04); }
}

/* ========== Team ========== */
.team { padding-block: 0 var(--section-y); }
.crew { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px clamp(18px, 2vw, 28px); padding-bottom: 64px; }
.crew__card { display: flex; flex-direction: column; gap: 8px; }
@media (min-width: 1025px) { .crew__card:nth-child(3n+2) { translate: 0 64px; } }
@media (min-width: 901px) and (max-width: 1024px) { .crew__card:nth-child(even) { translate: 0 64px; } }
.crew__photo { position: relative; aspect-ratio: 4 / 5; margin-bottom: 10px; border-radius: var(--r-l); overflow: hidden; background: var(--sand); box-shadow: var(--sh-2); }
.crew__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease-out); }
.crew__card:hover .crew__photo img { transform: scale(1.05); }
.crew__tag {
  position: absolute; bottom: 16px; inset-inline-start: 16px;
  padding: 8px 16px; border-radius: var(--r-pill); background: var(--yellow); color: var(--ink);
  font-weight: 800; font-size: .92rem; line-height: 1.2; box-shadow: var(--sh-2);
  transition: background-color var(--t-med) var(--ease-out), color var(--t-med) var(--ease-out);
}
.crew__card:hover .crew__tag { background: var(--crimson); color: var(--white); }
.crew__card h3 { font-size: var(--fs-h3); font-weight: 900; line-height: 1.15; }
.crew__card p { font-size: .98rem; color: var(--ink-80); max-width: 38ch; }

/* ========== Stories ========== */
.stories {
  --focus: var(--yellow);
  padding-block: var(--section-y); margin-inline: clamp(8px, 1.4vw, 20px); border-radius: var(--r-xl);
  background: var(--ink); color: var(--on-dark); overflow: clip;
}
.stories__grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(36px, 5vw, 80px); align-items: center; }
.stories h2 { font-size: var(--fs-h2); font-weight: 900; line-height: 1; letter-spacing: -.025em; }
.big-quote { margin-top: var(--s-6); }
.big-quote p { font-size: clamp(1.3rem, 1rem + 1vw, 1.8rem); font-weight: 700; line-height: 1.35; color: var(--on-dark); }
.big-quote cite { display: block; margin-top: 10px; font-style: normal; color: var(--yellow); font-weight: 700; }
.swipe-controls { display: flex; align-items: center; gap: 16px; margin-top: var(--s-7); }
.round-btn {
  width: 60px; height: 60px; border-radius: 50%; border: 0; display: grid; place-items: center; cursor: pointer;
  background: rgba(255, 255, 255, .1); color: var(--on-dark); transition: transform var(--t-med) var(--ease-spring), background-color var(--t-fast);
}
.round-btn:hover { background: rgba(255, 255, 255, .2); transform: scale(1.08); }
.round-btn:active { transform: scale(.94); }
.round-btn--yellow { background: var(--yellow); color: var(--ink); }
.round-btn--yellow:hover { background: var(--yellow-2); }
.round-btn[data-swipe="prev"] .ico { transform: scaleX(-1); }
.swipe-count { font-size: 1.2rem; font-weight: 700; min-width: 60px; text-align: center; }
.stories__help { margin-top: 12px; color: var(--on-dark-70); font-size: .95rem; }
.swipe { position: relative; aspect-ratio: 955 / 560; touch-action: pan-y; border-radius: var(--r-l); }
.vcard {
  position: absolute; inset: 0; background: var(--white); color: var(--ink); border-radius: var(--r-l); overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, .6); user-select: none; -webkit-user-select: none; will-change: transform;
  display: flex; flex-direction: column;
}
.vcard img { width: 100%; aspect-ratio: 955 / 460; object-fit: cover; pointer-events: none; -webkit-user-drag: none; }
.vcard__foot { flex: 1; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 0 22px; }
.vcard__foot p { font-weight: 700; }
.play {
  flex: none; width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center; margin-top: -48px;
  background: var(--yellow); color: var(--ink); box-shadow: 0 10px 24px -8px rgba(21, 22, 23, .5), 0 0 0 6px var(--white);
  transition: transform var(--t-med) var(--ease-spring);
}
.play:hover { transform: scale(1.1); }
.play .ico { width: 26px; height: 26px; stroke-width: 1.6; margin-inline-start: -3px; }
.vcard[data-pos="0"] { cursor: grab; }
.vcard.is-dragging { cursor: grabbing; }

/* ========== Gallery ========== */
.gallery { padding-block: var(--section-y); overflow: clip; }
.gallery .section-head { margin-bottom: clamp(24px, 3vw, 40px); }
.gallery__count { font-weight: 800; font-size: 1.15rem; color: var(--ink-60); }
.gallery__now { color: var(--crimson); font-size: clamp(2.2rem, 1.6rem + 1.6vw, 3.4rem); font-weight: 900; }
.reel {
  display: flex; gap: clamp(14px, 1.6vw, 24px); overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 8px var(--gutter) 20px; scroll-padding-inline: var(--gutter); scrollbar-width: none;
}
.reel::-webkit-scrollbar { display: none; }
.reel__item { flex: none; scroll-snap-align: start; }
.reel__frame { height: min(54vh, 500px); border-radius: var(--r-l); overflow: hidden; background: var(--sand); box-shadow: var(--sh-2); }
.reel__frame img { height: 100%; width: auto; max-width: none; scale: 1.14; }
.reel figcaption { display: flex; align-items: baseline; gap: 10px; margin-top: 14px; font-weight: 800; font-size: 1.1rem; }
.reel figcaption .num { color: var(--crimson); font-size: .9rem; }
.gallery__bar { display: block; height: 4px; border-radius: var(--r-pill); background: rgba(21, 22, 23, .1); overflow: hidden; }
.gallery__bar span { display: block; height: 100%; background: var(--crimson); transform: scaleX(var(--p, 0)); transform-origin: 100% 50%; }
.gallery.is-pinned .reel { overflow: visible; scroll-snap-type: none; }

/* ========== Magazine ========== */
.magazine { padding-block: calc(var(--section-y) * .5) var(--section-y); }
.articles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.article {
  display: flex; flex-direction: column; gap: 12px; height: 100%; padding: 12px 12px 24px; border-radius: var(--r-l);
  background: var(--white); box-shadow: var(--sh-1); text-decoration: none;
  transition: transform var(--t-med) var(--ease-spring), box-shadow var(--t-med);
}
.article:hover { transform: translateY(-6px); box-shadow: var(--sh-3); }
.article__img { display: block; overflow: hidden; border-radius: var(--r-m); aspect-ratio: 16 / 10; background: var(--paper-2); }
.article__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease-out); }
.article:hover .article__img img { transform: scale(1.07); }
.article__meta { align-self: flex-start; margin: 6px 12px 0; padding: 4px 12px; border-radius: var(--r-pill); background: var(--sand); font-weight: 700; font-size: .85rem; }
.article h3 { padding-inline: 12px; font-size: 1.35rem; font-weight: 800; line-height: 1.25; }
.article__more { margin: auto 12px 0; display: inline-flex; align-items: center; gap: 8px; font-weight: 700; }
.article__more .ico { transition: transform var(--t-med) var(--ease-spring); }
.article:hover .article__more .ico { transform: translateX(-6px); }

/* ========== FAQ ========== */
.faq { padding-block: calc(var(--section-y) * .5) var(--section-y); }
.faq__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(32px, 5vw, 72px); }
.faq__intro { position: relative; }
.faq__intro h2 { font-size: var(--fs-h2); font-weight: 900; line-height: 1; letter-spacing: -.025em; }
.faq__dog { width: min(220px, 50%); margin-top: var(--s-6); }
.faq__list { display: grid; gap: 12px; align-content: start; }
.qa { background: var(--white); border-radius: var(--r-m); box-shadow: var(--sh-1); transition: background-color var(--t-med); }
.qa[open]:not(.is-closing) { background: var(--yellow); }
.qa summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 72px; padding: 16px 26px;
  font-size: 1.15rem; font-weight: 800; cursor: pointer; list-style: none; border-radius: var(--r-m);
}
.qa summary::-webkit-details-marker { display: none; }
.qa__icon { flex: none; width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; background: var(--ink); color: var(--yellow); transition: transform var(--t-med) var(--ease-spring); }
.qa[open]:not(.is-closing) .qa__icon { transform: rotate(135deg); }
.qa__body { overflow: hidden; }
.qa p { padding: 0 26px 24px; font-size: 1.05rem; color: var(--ink-80); max-width: 60ch; }

/* ========== Contact ========== */
.contact { padding-block: 0 var(--section-y); }
.contact__card {
  --focus: var(--yellow);
  position: relative; display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(28px, 4vw, 56px);
  padding: clamp(24px, 4.5vw, 64px); border-radius: var(--r-xl); background: var(--ink); color: var(--on-dark); overflow: hidden;
}
.contact__info { position: relative; display: flex; flex-direction: column; }
.contact__info h2 { font-size: var(--fs-h2); font-weight: 900; line-height: 1; letter-spacing: -.025em; }
.contact__lead { margin-top: 16px; font-size: var(--fs-lead); color: var(--on-dark-70); max-width: 36ch; }
.contact__lines { display: grid; gap: 10px; margin-top: 28px; }
.contact__lines li { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 12px; padding: 14px 18px; border-radius: var(--r-s); background: rgba(255, 255, 255, .07); }
.contact__lines .ico { color: var(--yellow); }
.contact__lines a { font-weight: 800; font-size: 1.1rem; text-decoration: none; color: var(--yellow); padding: 6px 0; }
.contact__lines a:hover { text-decoration: underline; }
.branches { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.branches li { display: inline-flex; align-items: center; gap: 6px; padding: 8px 14px; border-radius: var(--r-pill); box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, .25); font-weight: 600; font-size: .95rem; }
.branches .ico { width: 18px; height: 18px; color: var(--red); }
.contact__dog { width: min(300px, 70%); margin-top: auto; padding-top: 28px; align-self: flex-start; }
.form-wrap { --focus: var(--ink); position: relative; background: var(--paper); color: var(--ink); border-radius: var(--r-l); padding: clamp(22px, 3vw, 40px); align-self: start; }
.lead-form fieldset { border: 0; margin: 0; padding: 0; display: grid; gap: 16px; min-width: 0; }
.field { display: grid; align-content: start; gap: 6px; min-width: 0; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { font-weight: 700; font-size: .95rem; }
.field__opt { font-weight: 500; color: var(--ink-60); }
.field input, .field textarea, .select__trigger {
  width: 100%; min-height: 54px; padding: 0 18px; border-radius: var(--r-s); border: 2px solid #DDD5C8; background: var(--white);
  font: inherit; color: var(--ink); transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.field textarea { padding: 14px 18px; min-height: 100px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: var(--slate); }
.field input[dir="ltr"] { text-align: right; }
.field input:focus, .field textarea:focus, .select__trigger:focus-visible, .select__trigger[aria-expanded="true"] { outline: none; border-color: var(--ink); box-shadow: 0 0 0 4px var(--yellow); }
.field.is-invalid input, .field.is-invalid .select__trigger { border-color: var(--crimson); }
.field.is-valid input, .field.is-valid .select__trigger { border-color: #2E7D32; }
.field__hint { font-size: .85rem; color: var(--ink-60); }
.field__err { font-size: .88rem; font-weight: 700; color: var(--crimson); min-height: 0; }
.field__err:empty { display: none; }
.select { position: relative; }
.select__trigger { display: flex; align-items: center; gap: 12px; text-align: start; cursor: pointer; }
.select__value { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.select__value.is-placeholder { color: var(--slate); }
.select__chevron { transition: transform var(--t-med) var(--ease-spring); }
.select.is-open .select__chevron { transform: rotate(180deg); }
.select__list {
  position: absolute; z-index: 20; inset-inline: 0; top: calc(100% + 8px);
  max-height: var(--list-max, 320px); overflow-y: auto; overscroll-behavior: contain;
  padding: 8px; border-radius: var(--r-s); background: var(--white); box-shadow: var(--sh-3);
  opacity: 0; visibility: hidden; transform: translateY(-8px) scale(.96); transform-origin: 50% 0;
  transition: opacity var(--t-fast) var(--ease-out), transform var(--t-med) var(--ease-spring), visibility 0s var(--t-med);
}
.select[data-placement="top"] .select__list { top: auto; bottom: calc(100% + 8px); transform: translateY(8px) scale(.96); transform-origin: 50% 100%; }
.select.is-open .select__list { opacity: 1; visibility: visible; transform: none; transition-delay: 0s; }
.select__option {
  display: flex; align-items: center; justify-content: space-between; gap: 12px; min-height: 44px; padding: 10px 14px;
  border-radius: var(--r-xs); font-weight: 600; cursor: pointer; transition: background-color var(--t-fast);
}
.select__option .ico { opacity: 0; color: var(--crimson); stroke-width: 2.4; transition: opacity var(--t-fast); }
.select__option.is-active { background: var(--yellow); }
.select__option[aria-selected="true"] { font-weight: 800; color: var(--crimson); }
.select__option[aria-selected="true"] .ico { opacity: 1; }
.check { display: flex; align-items: flex-start; gap: 12px; cursor: pointer; font-size: .95rem; line-height: 1.5; }
.check input { position: absolute; opacity: 0; width: 26px; height: 26px; margin: 0; }
.check__box { flex: none; width: 26px; height: 26px; border-radius: 8px; border: 2px solid var(--ink); display: grid; place-items: center; background: var(--white); transition: background-color var(--t-fast); }
.check__box .ico { width: 18px; height: 18px; stroke-width: 2; opacity: 0; transform: scale(.4); transition: opacity var(--t-fast), transform var(--t-med) var(--ease-spring); }
.check input:checked + .check__box { background: var(--yellow); }
.check input:checked + .check__box .ico { opacity: 1; transform: none; }
.check input:focus-visible + .check__box { outline: 3px solid var(--ink); outline-offset: 3px; }
.submit { position: relative; margin-top: 6px; }
.submit__loading { display: none; align-items: center; gap: 10px; }
.submit[aria-busy="true"] .submit__label { display: none; }
.submit[aria-busy="true"] .submit__loading { display: inline-flex; }
.submit[aria-busy="true"] { opacity: .85; cursor: progress; }
.spinner { width: 20px; height: 20px; border-radius: 50%; border: 2.5px solid rgba(255, 255, 255, .35); border-top-color: var(--yellow); animation: spin .8s linear infinite; }
.success { display: grid; justify-items: center; text-align: center; gap: 14px; padding: 40px 10px; }
.success[hidden] { display: none; }
.success h3 { font-size: 1.8rem; font-weight: 900; }
.success p { color: var(--ink-80); max-width: 36ch; }
.success__check { width: 96px; height: 96px; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.success__check circle { fill: var(--yellow); stroke: var(--ink); stroke-width: 3; }
.success__check path { stroke: var(--ink); stroke-width: 5; stroke-dasharray: 60; stroke-dashoffset: 60; }
.success.is-shown .success__check { animation: pop-in .6s var(--ease-spring) both; }
.success.is-shown .success__check path { animation: draw .5s var(--ease-out) .3s forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }
@keyframes pop-in { from { transform: scale(.3) rotate(-20deg); opacity: 0; } to { transform: none; opacity: 1; } }

/* ========== Footer ========== */
.footer { position: relative; margin-top: 150px; isolation: isolate; }
.footer__peek img {
  position: absolute; z-index: 0; width: clamp(150px, 16vw, 230px); inset-inline-end: 12%; top: 0;
  transform: translateY(-58%); transition: transform .9s var(--ease-spring);
}
.js .footer__peek img { transform: translateY(-8%); }
.js .footer.is-peeking .footer__peek img { transform: translateY(-60%) rotate(-3deg); }
.footer__paw {
  position: absolute; z-index: 2; top: -16px; width: 50px; height: 32px; border-radius: 50% 50% 46% 46%;
  background: var(--white); box-shadow: 0 6px 12px -6px rgba(21, 22, 23, .4), inset 0 -4px 0 rgba(21, 22, 23, .08);
}
.footer__paw::before {
  content: ""; position: absolute; top: 6px; inset-inline: 12px; height: 12px;
  background: linear-gradient(90deg, transparent 30%, rgba(21, 22, 23, .25) 30% 36%, transparent 36% 64%, rgba(21, 22, 23, .25) 64% 70%, transparent 70%);
}
.footer__paw--r { inset-inline-end: calc(12% + clamp(150px, 16vw, 230px) * .12); }
.footer__paw--l { inset-inline-end: calc(12% + clamp(150px, 16vw, 230px) * .66); }
.footer__panel { position: relative; z-index: 1; background: var(--yellow); border-radius: var(--r-xl) var(--r-xl) 0 0; padding-block: clamp(56px, 7vw, 96px) 32px; }
.footer__top { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; padding-bottom: clamp(40px, 5vw, 64px); border-bottom: 2px solid rgba(21, 22, 23, .15); }
.footer__big { font-size: clamp(2.4rem, 1.4rem + 4vw, 5.2rem); }
.footer__cols { display: grid; grid-template-columns: 1.5fr repeat(4, 1fr); gap: 32px; padding-block: 48px; }
.footer__brand img { width: 200px; margin-bottom: 14px; }
.footer__brand p { max-width: 30ch; color: var(--ink-80); }
.social { margin-top: 16px; width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center; background: var(--ink); color: var(--yellow); transition: transform var(--t-med) var(--ease-spring); }
.social:hover { transform: rotate(-10deg) scale(1.08); }
.footer__title { font-weight: 800; margin-bottom: 12px; }
.footer__col ul { display: grid; gap: 4px; }
.footer__col li { color: var(--ink-80); }
.footer__col a { display: inline-block; padding: 4px 0; text-decoration: none; color: var(--ink-80); }
.footer__col a:hover { color: var(--ink); text-decoration: underline; }
.footer__legal { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; padding-top: 24px; border-top: 2px solid rgba(21, 22, 23, .15); font-size: .92rem; }
.footer__legal ul { display: flex; flex-wrap: wrap; gap: 4px 20px; }
.footer__legal a { display: inline-block; padding: 4px 0; }

/* ========== Floating actions ========== */
.wa-fab {
  position: fixed; z-index: 800; bottom: 24px; inset-inline-end: 24px; width: 62px; height: 62px; border-radius: 50%;
  display: grid; place-items: center; background: var(--ink); color: var(--yellow); box-shadow: var(--sh-3);
  transition: transform var(--t-med) var(--ease-spring), bottom var(--t-med) var(--ease-out);
  --focus: var(--ink);
}
.wa-fab .ico { width: 30px; height: 30px; }
.wa-fab:hover { transform: scale(1.08) rotate(-6deg); }
.wa-fab__label {
  position: absolute; inset-inline-end: calc(100% + 12px); white-space: nowrap; padding: 8px 14px; border-radius: var(--r-pill);
  background: var(--white); color: var(--ink); font-weight: 700; font-size: .9rem; box-shadow: var(--sh-2);
  opacity: 0; transform: translateX(10px); pointer-events: none; transition: opacity var(--t-fast), transform var(--t-med) var(--ease-spring);
}
[dir="rtl"] .wa-fab__label { transform: translateX(-10px); }
.wa-fab:hover .wa-fab__label, .wa-fab:focus-visible .wa-fab__label { opacity: 1; transform: none; }
.mobile-cta { display: none; }

/* ========== Reveal ========== */
[data-parallax] { translate: 0 var(--py, 0px); }
.reveal { opacity: 0; translate: 0 48px; }
.reveal.is-in { animation: reveal-fade .8s var(--ease-out) var(--rd, 0s) both, reveal-rise 1s var(--ease-spring) var(--rd, 0s) both; }
@keyframes reveal-fade { to { opacity: 1; } }
@keyframes reveal-rise { to { translate: none; } }

/* ========== Responsive ========== */
@media (max-width: 1320px) {
  .site-header .phone-link { display: none; }
}
@media (max-width: 1180px) {
  .nav { display: none; }
  .burger { display: grid; }
  .site-header__bar { padding-inline: 18px 10px; }
  .footer__cols { grid-template-columns: repeat(3, 1fr); }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 1024px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .card--hero { grid-row: span 1; padding-inline-end: calc(38% + 40px); }
  .pup { width: 38%; }
  .stickers { grid-template-columns: repeat(2, 1fr); max-width: 640px; margin-inline: auto; }
  .method__head { grid-template-columns: 1fr; }
  .flagship { grid-template-columns: 1fr; }
  .stories__grid { grid-template-columns: 1fr; }
  .problems__grid { grid-template-columns: 1fr; }
  .deck { grid-template-columns: repeat(2, 1fr); }
  .crew { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .hero { min-height: auto; padding-block: calc(var(--header-h) + 48px) 0; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__art { position: relative; inset: auto; justify-self: center; width: min(86vw, 500px); margin-top: 36px; }
  .split { flex-direction: column; min-height: 0; }
  .tile { flex: none; --dog-h: clamp(220px, 46vw, 300px); padding-bottom: calc(var(--dog-h) + 8px); }
  .tile--pro { --dog-h: clamp(240px, 50vw, 320px); }
  .split:hover .tile, .split:focus-within .tile, .split .tile:hover, .split .tile:focus-visible { --grow: 1; }
  .tile__list { margin-bottom: var(--s-5); }
  .tile__cta { margin-top: 0; }
  .tile__dog, .tile--pro .tile__dog { height: var(--dog-h); }
  .articles { grid-template-columns: 1fr; max-width: 560px; }
  .faq__grid { grid-template-columns: 1fr; }
  .faq__dog { display: none; }
  .contact__card { grid-template-columns: 1fr; }
  .contact__dog { display: none; }
  .bros { grid-template-columns: 1fr; }
  .crew {
    display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: 14px;
    margin-inline: calc(var(--gutter) * -1); padding: 6px var(--gutter) 18px; scroll-padding-inline: var(--gutter);
    scrollbar-width: none;
  }
  .crew::-webkit-scrollbar { display: none; }
  .crew__card { flex: 0 0 min(76%, 340px); scroll-snap-align: start; }
}
@media (max-width: 767px) {
  :root { --header-h: 60px; }
  .site-header { top: 8px; inset-inline: 8px; }
  .site-header__actions .btn { display: none; }
  .brand img { height: 28px; }
  .hero__ctas .btn { width: 100%; }
  .hero__proof strong { font-size: 1.25rem; }
  .badge:nth-child(odd), .badge:nth-child(even) { transform: rotate(var(--rot, 0deg)); }
  .badge:nth-child(1) { --rot: -5deg; } .badge:nth-child(2) { --rot: 4deg; } .badge:nth-child(3) { --rot: 3deg; } .badge:nth-child(4) { --rot: -4deg; }
  .bento { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .card, .card--hero, .card--wide { grid-column: auto; min-height: 250px; }
  .card--hero { min-height: 440px; padding: 30px 30px min(62vw, 280px); }
  .pup { inset-inline: 0; bottom: 5%; margin-inline: auto; width: min(60%, 260px); }
  .card--ink .card__list { max-width: 100%; }
  .card--ink { padding-bottom: 210px; }
  .card__peek { width: 62%; }
  .card--sand { padding-bottom: 150px; }
  .card__note { max-width: 100% !important; }
  .solution { padding-inline-end: clamp(28px, 3.2vw, 44px); padding-bottom: 220px; }
  .solution__dog { width: 200px; }
  .step, .step:nth-child(odd), .step:nth-child(even) { width: 100%; margin: 0; padding: 0; flex-direction: row; }
  .step:nth-child(odd) .step__node { order: 0; }
  .step { gap: 14px; }
  .step__node { width: 56px; height: 56px; font-size: 1.35rem; }
  .step__card { padding: 20px; }
  .journey__paw { width: 48px; height: 48px; margin: -24px 0 0 -24px; }
  .journey__paw .ico { width: 24px; height: 24px; }
  .deck {
    display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: 14px;
    margin-inline: calc(var(--gutter) * -1); padding: 6px var(--gutter) 18px; scroll-padding-inline: var(--gutter);
    scrollbar-width: none;
  }
  .deck::-webkit-scrollbar { display: none; }
  .course { flex: 0 0 84%; scroll-snap-align: start; }
  .course:hover { transform: none; }
  .deck__hint { display: flex; align-items: center; gap: 8px; margin-top: 6px; font-weight: 600; color: var(--ink-60); font-size: .92rem; }
  .flagship__nums dd { font-size: 2.6rem; }
  .certs__badge { width: 92px; height: 92px; }
  .certs__badge strong { font-size: 1.4rem; }
  .field-row { grid-template-columns: 1fr; }
  .contact__lines li { grid-template-columns: auto 1fr; }
  .contact__lines a { grid-column: 2; }
  .footer { margin-top: 130px; }
  .footer__cols { grid-template-columns: 1fr 1fr; }
  .footer__legal { padding-bottom: 88px; }
  .footer__peek img { inset-inline-end: 8%; }
  .footer__paw--r { inset-inline-end: calc(8% + clamp(150px, 16vw, 230px) * .12); }
  .footer__paw--l { inset-inline-end: calc(8% + clamp(150px, 16vw, 230px) * .66); }
  .wa-fab { width: 54px; height: 54px; bottom: 88px; inset-inline-end: 14px; }
  .wa-fab__label { display: none; }
  .mobile-cta {
    position: fixed; z-index: 800; bottom: 12px; inset-inline: 12px; display: flex; gap: 8px; padding: 8px;
    border-radius: var(--r-pill); background: var(--ink); box-shadow: var(--sh-3);
    transform: translateY(160%); transition: transform .5s var(--ease-spring);
    --focus: var(--yellow);
  }
  .mobile-cta[data-visible="true"] { transform: none; }
  .mobile-cta__call { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 48px; padding: 0 20px; border-radius: var(--r-pill); color: var(--on-dark); font-weight: 700; text-decoration: none; box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, .3); }
  .mobile-cta__main { flex: 1; min-height: 48px; }
  .reel__frame { height: auto; width: 80vw; aspect-ratio: 4 / 3; }
  .reel__frame img { width: 100%; object-fit: cover; }
}
@media (max-width: 380px) {
  .stickers { gap: 8px; }
  .footer__cols { grid-template-columns: 1fr; }
}
@media (min-width: 1800px) {
  :root { --container: 1560px; }
}

@media (hover: none) {
  .card__glare { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .js .loader { display: none; }
  .ribbon__track { animation: none; }
}
