:root {
  --bg: #080808;
  --bg-alt: #111111;
  --card: #191919;
  --red: #D10000;
  --red-hover: #B00000;
  --text: #FFFFFF;
  --muted: #C7C7C7;
  --line: #353535;
  --head: 72px;
  --ease: cubic-bezier(.2, .7, .2, 1);
  --display: "Oswald", "Arial Narrow", system-ui, sans-serif;
  --body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-padding-top: calc(var(--head) + 16px); -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: no-preference) { html { scroll-behavior: smooth; } }
body { margin: 0; background: var(--bg); color: var(--text); font: 400 18px/1.6 var(--body); overflow-x: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
p { margin: 0 0 1em; }
h1, h2, h3 { font-family: var(--display); font-weight: 700; line-height: 1.1; margin: 0 0 .5em; text-wrap: balance; }
h1 { font-size: clamp(38px, 5.2vw, 62px); text-transform: uppercase; }
h2 { font-size: clamp(30px, 3.6vw, 42px); text-transform: uppercase; max-width: 22ch; }
h3 { font-family: var(--body); font-size: 20px; font-weight: 700; line-height: 1.3; }
.red { color: var(--red); }
:focus-visible { outline: 3px solid #fff; outline-offset: 3px; border-radius: 4px; }

.skip { position: absolute; left: 12px; top: -60px; z-index: 100; background: #fff; color: #000; padding: 10px 16px; border-radius: 8px; font-weight: 700; }
.skip:focus { top: 12px; }

.wrap { width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 20px; }
@media (min-width: 768px) { .wrap { padding: 0 32px; } }
.narrow { max-width: 860px; }

/* buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 48px; padding: 12px 22px; border-radius: 8px; font: 700 16px/1.2 var(--body); text-decoration: none; border: 2px solid transparent; cursor: pointer; text-align: center; transition: background-color .15s, border-color .15s, color .15s, transform .15s; }
.btn:active { transform: translateY(1px); }
.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { background: var(--red-hover); }
.btn-ghost { border-color: #fff; color: #fff; background: transparent; }
.btn-ghost:hover { background: #fff; color: #000; }
.btn-white { background: #fff; color: #000; }
.btn-white:hover { background: #e6e6e6; }
.btn-lg { min-height: 56px; padding: 14px 28px; font-size: 17px; }
.btn-block { width: 100%; }
.arr { display: inline-block; transition: transform .2s var(--ease); }
.btn:hover .arr { transform: translateX(4px); }

/* header */
.site-head { position: sticky; top: 0; z-index: 50; background: rgba(8, 8, 8, .92); border-bottom: 1px solid transparent; transition: border-color .2s, background-color .2s; }
@supports (backdrop-filter: blur(8px)) { .site-head { backdrop-filter: blur(8px); } }
.site-head.scrolled { border-bottom-color: #222; background: rgba(8, 8, 8, .97); }
.head-row { display: flex; align-items: center; gap: 24px; height: var(--head); }
.logo img { width: 56px; height: 56px; }
.nav { display: none; gap: 28px; margin-left: auto; }
.nav a { text-decoration: none; font-size: 15px; font-weight: 600; color: var(--muted); padding: 8px 0; position: relative; }
.nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 2px; height: 2px; background: var(--red); transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease); }
.nav a:hover { color: #fff; }
.nav a:hover::after { transform: scaleX(1); }
.btn-head { margin-left: auto; min-height: 44px; padding: 10px 18px; font-size: 15px; }
.lg-only { display: none; }
@media (min-width: 1024px) {
  .nav { display: flex; }
  .btn-head { margin-left: 8px; }
  .lg-only { display: inline; } .sm-only { display: none; }
}

/* hero */
.hero { padding: 36px 0 56px; position: relative; isolation: isolate; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 40%; filter: saturate(1.15) contrast(1.05); }
.hero::before { content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(60% 70% at 78% 45%, rgba(209,0,0,.38), rgba(209,0,0,0) 70%),
    linear-gradient(180deg, rgba(8,8,8,.86) 0%, rgba(8,8,8,.78) 45%, rgba(8,8,8,.93) 100%); }

@media (min-width: 1024px) {
  .hero::before { background:
    radial-gradient(42% 70% at 76% 50%, rgba(209,0,0,.45), rgba(209,0,0,0) 70%),
    linear-gradient(90deg, rgba(8,8,8,.96) 0%, rgba(8,8,8,.9) 38%, rgba(8,8,8,.55) 70%, rgba(8,8,8,.7) 100%); }
}
.hero-frame { box-shadow: 0 30px 80px rgba(0,0,0,.55), 0 0 0 1px rgba(255,255,255,.08); }
.hero-grid { display: grid; gap: 36px; }
.eyebrow, .kicker { font: 700 14px/1.4 var(--body); letter-spacing: .14em; text-transform: uppercase; color: var(--red); margin-bottom: 14px; }

h1 .line { display: block; overflow: hidden; padding-bottom: .04em; }
h1 .line > span { display: block; text-wrap: balance; }
.lede { font-size: 19px; max-width: 52ch; }
.offer-line { display: flex; flex-wrap: wrap; gap: 6px 12px; font: 700 clamp(20px, 2.2vw, 24px)/1.3 var(--display); text-transform: uppercase; letter-spacing: .02em; padding: 14px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin: 24px 0; }
.offer-line .dot { color: var(--red); }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 20px; }
.hero-status { font-weight: 600; margin-bottom: 6px; display: flex; align-items: center; gap: 10px; }
.pulse { width: 10px; height: 10px; border-radius: 50%; background: var(--red); flex: none; position: relative; }
.pulse::after { content: ""; position: absolute; inset: 0; border-radius: 50%; background: var(--red); animation: pulse 2s ease-out infinite; }
@keyframes pulse { from { transform: scale(1); opacity: .7; } to { transform: scale(3); opacity: 0; } }
.fine { font-size: 15px; color: var(--muted); margin: 0; }
.hero-photo { margin: 0; position: relative; }
.hero-frame { border-radius: 8px; overflow: hidden; }
.hero-frame img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: 50% 0; }
.hero-tag { position: absolute; left: 16px; bottom: 16px; background: var(--bg); padding: 10px 14px; border-radius: 4px; display: flex; flex-direction: column; font-size: 14px; line-height: 1.35; }
.hero-tag span { color: var(--muted); }
@media (min-width: 1024px) {
  .hero { padding: 56px 0 80px; }
  .hero-grid { grid-template-columns: 55fr 45fr; gap: 56px; align-items: center; }
  .hero-frame img { max-height: 640px; }
  .hero-tag { left: -24px; bottom: 40px; }
}

/* pain point + google reviews */
.pain { background: var(--bg); }
.pain-top { display: grid; gap: 24px; margin-bottom: 32px; }
.pain-top .sec-head { margin: 0; }
@media (min-width: 1024px) { .pain-top { grid-template-columns: 1fr 420px; align-items: end; gap: 48px; } }
.pain-pick label { display: block; font-weight: 700; margin-bottom: 8px; }
.select-wrap { position: relative; display: block; }
.select-wrap::after { content: ""; position: absolute; right: 18px; top: 50%; width: 10px; height: 10px; border-right: 2px solid #fff; border-bottom: 2px solid #fff; transform: translateY(-70%) rotate(45deg); pointer-events: none; }
.select-wrap select { appearance: none; -webkit-appearance: none; display: block; width: 100%; min-height: 56px; padding: 14px 48px 14px 16px; border-radius: 8px; border: 2px solid var(--red); background: var(--card); color: #fff; font: 600 17px/1.3 var(--body); cursor: pointer; transition: box-shadow .2s, background-color .2s; }
.select-wrap select:hover { background: #222; }
.select-wrap select:focus { outline: none; box-shadow: 0 0 0 3px #fff; }
.pain-pick .select-wrap select { font-size: 17px; }
@media (max-width: 359px) { .select-wrap select { font-size: 15px !important; padding-left: 12px; padding-right: 40px; } .select-wrap::after { right: 14px; } }
@media (min-width: 768px) { .pain-pick .select-wrap select { font-size: 18px; } }
.g-summary { display: flex; align-items: center; gap: 12px; margin-top: 16px; }
.g-summary .g-logo { width: 34px; height: 34px; flex: none; }
.g-summary strong { font-size: 22px; }
.g-sum-stars svg { width: 18px; height: 18px; fill: #FBBC04; vertical-align: -2px; }
.g-count { display: block; color: var(--muted); font-size: 14px; }

.g-grid { display: grid; gap: 16px; align-items: start; }
@media (min-width: 768px) { .g-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .g-grid { grid-template-columns: repeat(3, 1fr); } }
.g-review { background: #fff; color: #202124; border-radius: 8px; padding: 20px; font-family: Roboto, Arial, var(--body); box-shadow: 0 1px 2px rgba(0,0,0,.3), 0 2px 8px rgba(0,0,0,.25); }
.g-review[hidden] { display: none; }
.g-head { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.g-av { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; flex: none; background: #e8eaed; }
.g-who { display: flex; flex-direction: column; line-height: 1.3; min-width: 0; }
.g-who strong { font-size: 15px; font-weight: 600; color: #202124; }
.g-who span { font-size: 13px; color: #70757a; }
.g-head .g-logo { width: 22px; height: 22px; margin-left: auto; flex: none; }
.g-stars { display: flex; gap: 1px; margin-bottom: 8px; }
.g-stars svg { width: 17px; height: 17px; fill: #FBBC04; }
.g-text { font-size: 15px; line-height: 1.55; color: #3c4043; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 6; overflow: hidden; }
.g-text p { margin: 0 0 .7em; }
.g-text p:last-child { margin: 0; }
.g-review.open .g-text { display: block; -webkit-line-clamp: unset; }
.g-more { margin-top: 6px; padding: 8px 0; min-height: 36px; background: none; border: 0; color: #1a73e8; font: 600 14px/1 Roboto, Arial, var(--body); cursor: pointer; }
.g-more:hover { text-decoration: underline; }
.g-more[hidden] { display: none; }
.g-note { color: var(--muted); font-size: 14px; margin: 18px 0 0; max-width: 80ch; }
@media (prefers-reduced-motion: no-preference) {
  .g-review.swap-in { animation: swap-in .5s var(--ease) both; animation-delay: calc(var(--i, 0) * 90ms); }
  @keyframes swap-in { from { opacity: 0; transform: translateY(18px) scale(.98); } }
  .pain-offer.flash { animation: offer-flash .6s var(--ease); }
  @keyframes offer-flash { from { transform: scale(.98); box-shadow: 0 0 0 0 rgba(209,0,0,.6); } to { transform: none; box-shadow: 0 0 0 14px rgba(209,0,0,0); } }
}

.pain-offer { margin-top: 32px; background: var(--red); border-radius: 8px; padding: 28px; display: grid; gap: 20px; }
.pain-offer-k { font: 700 13px/1.3 var(--body); letter-spacing: .14em; text-transform: uppercase; margin: 0 0 8px; }
.pain-offer h3 { font-family: var(--display); font-size: clamp(24px, 2.6vw, 32px); text-transform: uppercase; margin-bottom: 8px; }
.pain-offer p { max-width: 60ch; }
.pain-offer-line { display: flex; flex-wrap: wrap; gap: 4px 10px; font: 700 18px/1.3 var(--display); text-transform: uppercase; letter-spacing: .03em; margin: 12px 0 0; }
@media (min-width: 1024px) { .pain-offer { grid-template-columns: 1fr auto; align-items: center; padding: 36px 40px; gap: 40px; } }

.form .select-wrap { margin-top: 6px; }
.form .select-wrap select { border: 1px solid var(--line); background: var(--bg); font-weight: 400; font-size: 16px; min-height: 48px; }
.form .select-wrap select:focus { border-color: #fff; box-shadow: 0 0 0 2px #fff; }

/* stats */
.stats { background: var(--red); }
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; }
.stat { padding: 24px 12px; text-align: center; display: flex; flex-direction: column; gap: 2px; }
.stat-n { font: 700 clamp(36px, 5vw, 56px)/1 var(--display); font-variant-numeric: tabular-nums; }
.stat-l { font-size: 14px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
@media (max-width: 767px) { .stat:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.25); } .stat:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.25); } }
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } .stat { padding: 32px 12px; } .stat + .stat { border-left: 1px solid rgba(255,255,255,.25); } }

/* sections */
.sec { padding: 56px 0; }
.alt { background: var(--bg-alt); }
@media (min-width: 768px) { .sec { padding: 96px 0; } }
.sec-head { margin-bottom: 36px; }
.intro { color: var(--muted); max-width: 56ch; margin: 0; font-size: 19px; }
.support { color: var(--muted); max-width: 65ch; margin: 28px 0 0; font-size: 16px; }
.grid-2, .grid-3 { display: grid; gap: 20px; }
@media (min-width: 768px) { .grid-2 { grid-template-columns: 1fr 1fr; } .grid-3 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }

.card { background: var(--card); border: 1px solid var(--line); border-radius: 8px; padding: 24px; }
.card p:last-child { margin-bottom: 0; }
.card-lg { padding: 28px; }
@media (min-width: 1024px) { .card-lg { padding: 32px; } }
.card-lg h3 { font-family: var(--display); font-size: 24px; text-transform: uppercase; }

/* fit photo cards */
.photo-card { position: relative; border-radius: 8px; overflow: hidden; background: var(--card); isolation: isolate; }
.photo-card img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; transition: transform .8s var(--ease); }
.photo-card:hover img { transform: scale(1.04); }
.photo-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.92) 0%, rgba(0,0,0,.6) 38%, rgba(0,0,0,0) 65%); z-index: 1; }
.photo-card-body { position: absolute; left: 0; right: 0; bottom: 0; padding: 24px; z-index: 2; }
.photo-card-body h3 { font-family: var(--display); font-size: 26px; text-transform: uppercase; margin-bottom: 8px; }

.photo-card-body p { margin: 0; font-size: 17px; max-width: 42ch; }
@media (min-width: 1024px) { .photo-card img { aspect-ratio: 5 / 5.2; } .photo-card-body { padding: 32px; } }

/* zack */
.split { display: grid; gap: 40px; }
.zack-photos { position: relative; }
.zack-photos img { border-radius: 8px; width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.zack-photos .inset { position: absolute; right: 0; bottom: 0; width: 42%; border: 4px solid var(--bg-alt); border-radius: 12px; }

.split-copy p { max-width: 52ch; }
.creds { list-style: none; padding: 0; margin: 8px 0 24px; border-top: 1px solid var(--line); }
.creds li { padding: 14px 0 14px 34px; border-bottom: 1px solid var(--line); position: relative; font-weight: 600; font-size: 18px; }
.creds li::before { content: ""; position: absolute; left: 2px; top: 21px; width: 13px; height: 7px; border-left: 3px solid var(--red); border-bottom: 3px solid var(--red); transform: rotate(-45deg); }
@media (min-width: 768px) { .split { grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; } }

/* photo strip */
.strip { padding: 0; overflow: hidden; background: var(--bg); border-block: 1px solid #1f1f1f; }
.strip-track { display: flex; width: max-content; padding: 12px 0; }
.strip-set { display: flex; gap: 12px; list-style: none; margin: 0; padding: 0 12px 0 0; }
.strip-set img { height: 240px; width: auto; border-radius: 6px; object-fit: cover; }
@media (min-width: 768px) { .strip-set img { height: 300px; } }
@media (prefers-reduced-motion: no-preference) {
  .strip-track { animation: strip 55s linear infinite; }
  .strip:hover .strip-track { animation-play-state: paused; }
}
@keyframes strip { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .strip { overflow-x: auto; } .strip-set[aria-hidden] { display: none; } }

/* reviews */
.review { margin: 0; display: flex; flex-direction: column; transition: transform .3s var(--ease), border-color .3s; }
.review:hover { transform: translateY(-4px); border-color: #555; }
.stars { color: var(--red); letter-spacing: 3px; font-size: 18px; margin-bottom: 12px; }
.review blockquote { margin: 0 0 20px; flex: 1; }
.review blockquote p { font-size: 18px; }
.review figcaption { border-top: 1px solid var(--line); padding-top: 14px; display: flex; flex-direction: column; font-size: 15px; }
.review figcaption span { color: var(--muted); }

/* program: red section, dog photo, white cards */
.program { position: relative; padding: 56px 0; background: var(--red); background-image: radial-gradient(90% 120% at 100% 0%, #ff2a1a 0%, rgba(255,42,26,0) 55%), linear-gradient(160deg, #D10000 0%, #9e0000 100%); overflow: hidden; isolation: isolate; }
@media (min-width: 768px) { .program { padding: 88px 0; } }
.program-grid { display: grid; gap: 32px; align-items: center; }
@media (min-width: 1024px) { .program-grid { grid-template-columns: 420px 1fr; gap: 56px; } }
.program-photo { position: relative; }
.program-photo img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: 40% 30%; border-radius: 10px; box-shadow: 0 24px 60px rgba(0,0,0,.45); }
@media (max-width: 1023px) { .program-photo img { aspect-ratio: 16 / 11; } }
.price-tag { position: absolute; right: 16px; bottom: 16px; background: #080808; color: #fff; border-radius: 8px; padding: 12px 16px; font-size: 14px; line-height: 1.2; box-shadow: 0 10px 30px rgba(0,0,0,.4); }
.price-tag span { display: block; font: 700 32px/1 var(--display); margin-bottom: 4px; }
.program .kicker { color: #fff; opacity: .9; }
.program h2 { color: #fff; max-width: 18ch; }
.program h2 .blk { color: #080808; }
.program .sec-head { margin-bottom: 24px; }
.incl { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
@media (min-width: 640px) { .incl { grid-template-columns: 1fr 1fr; } }
.incl li { display: flex; gap: 14px; align-items: flex-start; background: #fff; color: #111; border-radius: 8px; padding: 16px 18px; box-shadow: 0 6px 18px rgba(0,0,0,.18); transition: transform .25s var(--ease), box-shadow .25s; }
.incl li:hover { transform: translateY(-3px); box-shadow: 0 12px 26px rgba(0,0,0,.25); }
.incl .ico { width: 30px; height: 30px; flex: none; margin-top: 2px; }
.incl h3 { font-size: 17px; margin: 0 0 2px; color: #111; }
.incl p { margin: 0; font-size: 15px; line-height: 1.45; color: #444; }
.ico { width: 34px; height: 34px; fill: none; stroke: var(--red); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.extra { margin-top: 14px; background: #080808; border-radius: 8px; padding: 22px 24px; display: grid; gap: 16px; align-items: center; }
.extra h3 { font-family: var(--display); font-size: 22px; text-transform: uppercase; margin: 0 0 4px; }
.extra p { margin: 0; color: var(--muted); font-size: 16px; }
@media (min-width: 768px) { .extra { grid-template-columns: 1fr auto; gap: 24px; } }

/* process */
.phases { list-style: none; padding: 0; margin: 0; display: grid; gap: 28px; position: relative; }
.phase { position: relative; }
.phase-img { border-radius: 8px; overflow: hidden; margin-bottom: 18px; }
.phase-img img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .8s var(--ease); }
.phase:hover .phase-img img { transform: scale(1.04); }
.phase-n { display: inline-block; font: 700 40px/1 var(--display); color: var(--red); margin-bottom: 6px; }
.phase h3 { font-family: var(--display); font-size: 24px; text-transform: uppercase; }
.phase p { color: var(--muted); margin: 0; font-size: 17px; }
@media (min-width: 1024px) { .phases { grid-template-columns: repeat(3, 1fr); gap: 24px; } }

/* integration */
.integ { position: relative; padding: 64px 0; overflow: hidden; isolation: isolate; }
.integ-bg { position: absolute; inset: -12% 0; z-index: -2; }
.integ-bg img { width: 100%; height: 100%; object-fit: cover; }
.integ::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(8,8,8,.88), rgba(8,8,8,.8) 50%, rgba(8,8,8,.94)); }
@media (min-width: 768px) { .integ { padding: 112px 0; } }
.integ .intro, .integ .support { color: #e2e2e2; }
.days { display: grid; gap: 16px; }
.day { background: rgba(25,25,25,.94); border: 1px solid var(--line); border-radius: 8px; padding: 28px; }
.day h3 { font-family: var(--display); font-size: 26px; text-transform: uppercase; }
.day p { margin: 0; }
.day-n, .bridge-label { display: inline-block; font: 700 14px/1 var(--display); letter-spacing: .14em; text-transform: uppercase; margin-bottom: 14px; }
.day-n { color: #fff; background: var(--red); padding: 7px 10px; border-radius: 4px; }
.bridge { position: relative; border: 1px dashed #6a6a6a; background: rgba(8,8,8,.7); border-radius: 8px; padding: 22px 24px; }
.bridge-label { color: #fff; }
.bridge p { color: #e2e2e2; font-size: 16px; margin: 0; }
@media (min-width: 1024px) { .days { grid-template-columns: 1fr .85fr 1fr; align-items: center; } }

/* support */
.tag { display: inline-block; font: 600 13px/1 var(--body); letter-spacing: .12em; text-transform: uppercase; color: #fff; background: #2a2a2a; border-radius: 4px; padding: 7px 9px; margin-bottom: 14px; }

/* care */
.care-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.care-photos > div:first-child { grid-column: 1 / -1; }
.care-photos img { width: 100%; height: 100%; border-radius: 8px; aspect-ratio: 4 / 3; object-fit: cover; }
@media (min-width: 1024px) {
  .care-photos { grid-template-columns: 2fr 1fr; grid-template-rows: 1fr 1fr; gap: 16px; }
  .care-photos > div:first-child { grid-column: 1; grid-row: 1 / 3; }
  .care-photos > div:first-child img { aspect-ratio: auto; }
}
.text-cols { margin-top: 36px; }
.text-cols h3 { font-family: var(--display); font-size: 24px; text-transform: uppercase; }
.text-cols p { max-width: 52ch; }
.note { display: inline-block; }

/* travel */
.addr { font-style: normal; font-size: 20px; line-height: 1.6; }
.addr strong { font-family: var(--display); text-transform: uppercase; letter-spacing: .03em; font-size: 22px; }
.pin { width: 36px; height: 36px; fill: none; stroke: var(--red); stroke-width: 1.8; display: block; margin-bottom: 12px; }
.dir-link { display: flex; width: fit-content; align-items: center; min-height: 44px; margin-top: 16px; font-size: 16px; font-weight: 700; text-decoration-color: var(--red); text-underline-offset: 4px; text-decoration-thickness: 2px; }
.checklist { list-style: none; margin: 0; }
.checklist li { position: relative; padding: 12px 0 12px 32px; border-bottom: 1px solid var(--line); }
.checklist li:last-child { border-bottom: 0; }
.checklist li::before { content: ""; position: absolute; left: 2px; top: 19px; width: 12px; height: 7px; border-left: 3px solid var(--red); border-bottom: 3px solid var(--red); transform: rotate(-45deg); }

/* faq */
.faqs { border-top: 1px solid var(--line); }
.faqs details { border-bottom: 1px solid var(--line); }
.faqs summary { list-style: none; cursor: pointer; padding: 20px 44px 20px 0; position: relative; font-weight: 700; font-size: 18px; min-height: 44px; transition: color .2s; }
.faqs summary:hover { color: #fff; }
.faqs summary::-webkit-details-marker { display: none; }
.faqs summary::after { content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%); font: 400 30px/1 var(--body); color: var(--red); transition: transform .25s var(--ease); }
.faqs details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faqs details p { color: var(--muted); padding: 0 0 20px; margin: 0; max-width: 65ch; }
@media (prefers-reduced-motion: no-preference) { .faqs details[open] p { animation: faq-in .3s var(--ease); } }
@keyframes faq-in { from { opacity: 0; transform: translateY(-6px); } }

/* consultation */
.consult { background: var(--bg-alt); }
.consult-grid { display: grid; gap: 36px; }
.consult .intro { margin-bottom: 28px; }
@media (min-width: 1024px) { .consult-grid { grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; } }
.offer-card { border: 1px solid var(--line); border-radius: 8px; padding: 24px; background: var(--bg-alt); }
.offer-title { font: 700 24px/1.2 var(--display); text-transform: uppercase; margin-bottom: 6px; }
.offer-price { font-weight: 700; font-size: 18px; margin-bottom: 14px; }
.offer-price span { color: var(--red); }
.offer-card ul { margin: 0; padding: 0; list-style: none; color: var(--muted); }
.offer-card li { padding: 6px 0; border-top: 1px solid var(--line); }
.form { padding: 28px; }
.form h3 { font-family: var(--display); font-size: 26px; text-transform: uppercase; }
.form label { display: block; font-size: 15px; font-weight: 600; margin-bottom: 16px; }
.form .opt { color: var(--muted); font-weight: 400; }
.form input, .form textarea { display: block; width: 100%; margin-top: 6px; min-height: 48px; padding: 12px 14px; border: 1px solid var(--line); border-radius: 8px; background: var(--bg); color: #fff; font: 400 16px/1.4 var(--body); transition: border-color .15s, box-shadow .15s; }
.form input:focus, .form textarea:focus { outline: none; border-color: #fff; box-shadow: 0 0 0 2px #fff; }
.form [aria-invalid="true"] { border-color: #ff6b6b; }
.row-2 { display: grid; gap: 0 12px; }
@media (min-width: 480px) { .row-2 { grid-template-columns: 1fr 1fr; } }
.form-status { min-height: 1.2em; font-size: 15px; margin: 12px 0 8px; }
.form-status.err { color: #ff8a8a; }

/* footer */
.site-foot { background: var(--bg); border-top: 1px solid #1f1f1f; padding: 40px 0; font-size: 15px; color: var(--muted); }
.foot-row { display: grid; gap: 20px; }
.foot-row p { margin: 0 0 4px; }
.foot-name { color: #fff; font-weight: 700; }
.foot-legal { display: flex; flex-wrap: wrap; gap: 8px 20px; align-self: end; }
.foot-legal a { display: inline-flex; align-items: center; min-height: 44px; }
@media (min-width: 768px) { .foot-row { grid-template-columns: auto 1fr auto; align-items: center; gap: 28px; } }

/* sticky mobile cta */
.sticky-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 10px 20px calc(10px + env(safe-area-inset-bottom)); background: var(--bg); border-top: 1px solid var(--line); font: 700 18px/1.2 var(--display); text-transform: uppercase; letter-spacing: .02em; transform: translateY(110%); visibility: hidden; transition: transform .25s var(--ease), visibility .25s; }
.sticky-cta.show { transform: none; visibility: visible; }
.sticky-cta .btn { min-height: 48px; font-size: 16px; text-transform: none; letter-spacing: 0; }
@media (max-width: 1023px) { body.has-sticky { padding-bottom: calc(72px + env(safe-area-inset-bottom)); } }
@media (min-width: 1024px) { .sticky-cta { display: none; } }

/* ---------- motion (only with JS and when the visitor allows motion; content is never hidden otherwise) ---------- */
@media (prefers-reduced-motion: no-preference) {
  .js .load-in { opacity: 0; transform: translateY(24px); animation: load-in .8s var(--ease) forwards; animation-delay: calc(var(--d, 0) * 90ms + 100ms); }
  .js h1 .line > .load-in { transform: translateY(105%); opacity: 1; }
  @keyframes load-in { to { opacity: 1; transform: none; } }

  .js .hero-frame { animation: frame-in 1.1s var(--ease) .15s both; }
  .js .hero-frame img { animation: hero-zoom 2.4s var(--ease) .15s both; }
  .js .hero-tag { animation: load-in .8s var(--ease) .9s both; }
  @keyframes frame-in { from { clip-path: inset(0 0 100% 0); } to { clip-path: inset(0 0 0 0); } }
  @keyframes hero-zoom { from { transform: scale(1.15); } to { transform: scale(1); } }

  .js .reveal { opacity: 0; transform: translateY(32px); transition: opacity .7s var(--ease), transform .7s var(--ease); transition-delay: calc(var(--d, 0) * 110ms); }
  .js .reveal.in { opacity: 1; transform: none; }

  .js .wipe { overflow: hidden; border-radius: 8px; clip-path: inset(0 100% 0 0 round 8px); transition: clip-path 1s var(--ease); transition-delay: calc(var(--d, 0) * 150ms); }
  .js .wipe img { transform: scale(1.12); transition: transform 1.6s var(--ease); transition-delay: calc(var(--d, 0) * 150ms); }
  .js .wipe.in { clip-path: inset(0 0 0 0 round 8px); }
  .js .wipe.in img { transform: scale(1); }


  .js .integ-bg { transform: translate3d(0, var(--py, 0px), 0); will-change: transform; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}

/* thank-you page */
.ty-hero { position: relative; isolation: isolate; overflow: hidden; padding: 48px 0 56px; }
.ty-bg { position: absolute; inset: 0; z-index: -2; }
.ty-bg img { width: 100%; height: 100%; object-fit: cover; }
.ty-hero::before { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(50% 70% at 78% 45%, rgba(209,0,0,.4), rgba(209,0,0,0) 70%), linear-gradient(90deg, rgba(8,8,8,.95), rgba(8,8,8,.82) 60%, rgba(8,8,8,.9)); }
.ty-grid { display: grid; gap: 32px; align-items: center; }
@media (min-width: 1024px) { .ty-hero { padding: 72px 0 80px; } .ty-grid { grid-template-columns: 1fr 400px; gap: 56px; } }
.ty-check { width: 64px; height: 64px; border-radius: 50%; background: var(--red); display: grid; place-items: center; margin-bottom: 20px; box-shadow: 0 0 0 8px rgba(209,0,0,.25); }
.ty-check svg { width: 34px; height: 34px; fill: none; stroke: #fff; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
@media (prefers-reduced-motion: no-preference) {
  .ty-check { animation: ty-pop .6s cubic-bezier(.2,.9,.3,1.3) both; }
  .ty-check svg path { stroke-dasharray: 24; stroke-dashoffset: 24; animation: ty-draw .5s ease-out .35s forwards; }
}
@keyframes ty-pop { from { transform: scale(.4); opacity: 0; } to { transform: none; opacity: 1; } }
@keyframes ty-draw { to { stroke-dashoffset: 0; } }
.ty-hero h1 { font-size: clamp(36px, 5vw, 58px); margin-bottom: 18px; }
.ty-lede strong { white-space: nowrap; }
.ty-lede { font-size: 19px; color: #e6e6e6; max-width: 48ch; margin-bottom: 26px; }
.ty-photo { margin: 0; position: relative; }
.ty-photo img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: 10px; box-shadow: 0 30px 70px rgba(0,0,0,.55); }
.ty-photo figcaption { position: absolute; left: 14px; bottom: 14px; background: #080808; padding: 10px 14px; border-radius: 6px; display: flex; flex-direction: column; font-size: 14px; }
.ty-photo figcaption span { color: var(--muted); }
@media (max-width: 1023px) { .ty-photo img { aspect-ratio: 4 / 3.6; object-position: 50% 8%; } }
.ty-next h2 { margin-bottom: 28px; }
.ty-steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
@media (min-width: 900px) { .ty-steps { grid-template-columns: repeat(3, 1fr); gap: 20px; } }
.ty-steps li { display: flex; gap: 16px; align-items: flex-start; background: var(--card); border: 1px solid var(--line); border-radius: 10px; padding: 22px; }
.ty-ico { position: relative; flex: none; width: 52px; height: 52px; border-radius: 50%; background: var(--red); display: grid; place-items: center; }
.ty-ico svg { width: 24px; height: 24px; fill: none; stroke: #fff; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.ty-ico b { position: absolute; top: -6px; right: -6px; width: 22px; height: 22px; border-radius: 50%; background: #fff; color: #000; font: 700 12px/22px var(--body); text-align: center; }
.ty-steps h3 { font-family: var(--display); font-size: 21px; text-transform: uppercase; margin: 4px 0 4px; }
.ty-steps p { margin: 0; color: var(--muted); font-size: 16px; }
.ty-proof { background: var(--red); background-image: radial-gradient(90% 120% at 100% 0%, #ff2a1a 0%, rgba(255,42,26,0) 55%), linear-gradient(160deg, #D10000 0%, #9e0000 100%); }
.ty-proof-grid { display: grid; gap: 24px; align-items: center; }
@media (min-width: 1024px) { .ty-proof-grid { grid-template-columns: 1.3fr 1fr; gap: 48px; } }
.ty-quote { margin: 0; background: #fff; color: #202124; border-radius: 10px; padding: 26px; box-shadow: 0 20px 50px rgba(0,0,0,.3); }
.g-stars-row { color: #FBBC04; font-size: 20px; letter-spacing: 3px; margin-bottom: 10px; }
.ty-quote blockquote { margin: 0 0 12px; font-size: 18px; line-height: 1.55; }
.ty-quote figcaption { font-size: 14px; color: #5f6368; }
.ty-facts { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.ty-facts li { background: rgba(0,0,0,.25); border-radius: 10px; padding: 16px; display: flex; flex-direction: column; }
.ty-facts strong { font: 700 34px/1 var(--display); }
.ty-facts span { font-size: 13px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; opacity: .9; margin-top: 4px; }

/* top bar + landing-page header */
.topbar { background: var(--red); color: #fff; font-size: 14px; text-align: center; padding: 9px 0; line-height: 1.4; }
.topbar .sep { margin: 0 10px; opacity: .7; }
@media (max-width: 640px) { .topbar { font-size: 13px; } .topbar .tb-area { display: none; } }
.head-row { justify-content: space-between; height: 84px; }
.logo img { width: 64px; height: 64px; }
.btn-phone { min-height: 48px; padding: 12px 20px; font-size: 17px; gap: 10px; }
.ico-phone { width: 18px; height: 18px; fill: currentColor; flex: none; }
@media (max-width: 400px) { .btn-phone { font-size: 15px; padding: 10px 14px; } .head-row { height: 72px; } .logo img { width: 52px; height: 52px; } }
html { scroll-padding-top: 100px; }

/* location + map */
.travel-grid { display: grid; gap: 36px; align-items: center; }
@media (min-width: 1024px) { .travel-grid { grid-template-columns: 1fr 1.1fr; gap: 56px; } }
.travel-grid .addr { font-size: 18px; margin: 0 0 20px; }
.travel-grid .checklist { padding: 0; }
.map-wrap { position: relative; border-radius: 12px; overflow: hidden; border: 1px solid var(--line); box-shadow: 0 20px 50px rgba(0,0,0,.5); background: #1b1b1b; }
.map-wrap iframe { display: block; width: 100%; height: 460px; border: 0; pointer-events: none; filter: saturate(.9); }
.map-lock { position: absolute; inset: 0; z-index: 3; }
.map-pin { position: absolute; left: 50%; top: 50%; z-index: 2; pointer-events: none; --pin-tail: 12px; transform: translate(-50%, calc(-100% - var(--pin-tail))); display: block; padding: 6px; background: #080808; border-radius: 14px; box-shadow: 0 6px 16px rgba(0,0,0,.4), 0 0 0 3px var(--red); }
.map-pin img { display: block; width: 64px; height: 64px; }
.map-pin::before { content: ""; position: absolute; left: 50%; top: calc(100% + var(--pin-tail)); width: 16px; height: 16px; margin: -8px 0 0 -8px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 3px #fff, 0 2px 6px rgba(0,0,0,.35); }
.map-pin::after { content: ""; position: absolute; left: 50%; top: 100%; transform: translateX(-50%); border-left: 9px solid transparent; border-right: 9px solid transparent; border-top: var(--pin-tail) solid var(--red); }
@media (max-width: 767px) { .map-wrap iframe { height: 340px; } .map-pin img { width: 54px; height: 54px; } }

/* final CTA */
.final { position: relative; padding: 96px 0; text-align: center; overflow: hidden; isolation: isolate; }
.final-bg { position: absolute; inset: 0; z-index: -2; }
.final-bg img { width: 100%; height: 100%; object-fit: cover; }
.final::before { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(60% 80% at 50% 50%, rgba(8,8,8,.72), rgba(8,8,8,.9)); }
.final-inner h2 { margin: 0 auto 16px; max-width: 20ch; font-size: clamp(34px, 5vw, 58px); }
.final-sub { font-size: 20px; max-width: 46ch; margin: 0 auto 32px; color: #eee; }
.btn-xl { min-height: 64px; padding: 18px 40px; font-size: 20px; }
@media (min-width: 768px) { .final { padding: 128px 0; } }

/* hero selling bullets */
.hero-bullets { list-style: none; margin: 0 0 4px; padding: 0; display: grid; gap: 12px; max-width: 58ch; }
.hero-bullets li { position: relative; padding-left: 34px; font-size: 17px; line-height: 1.45; color: #e8e8e8; }
.hero-bullets li strong { color: #fff; }
.hero-bullets li::before { content: ""; position: absolute; left: 0; top: 2px; width: 22px; height: 22px; border-radius: 50%; background: var(--red) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 12.5l4 4 8-9' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 14px no-repeat; }
@media (min-width: 1024px) { .hero-bullets li { font-size: 18px; } }
.hero .offer-line { margin-top: 22px; }

/* social proof band */
.proof .stat-word { font-size: clamp(30px, 4vw, 48px); text-transform: uppercase; line-height: 1.15; }

/* photo-backed sections */
.pain, .consult, .travel { position: relative; isolation: isolate; overflow: hidden; }
.pain-bg, .consult-bg, .travel-bg { position: absolute; inset: 0; z-index: -2; }
.pain-bg img, .consult-bg img, .travel-bg img { width: 100%; height: 100%; object-fit: cover; }
.pain::before, .consult::before, .travel::before { content: ""; position: absolute; inset: 0; z-index: -1; }
.pain::before { background: linear-gradient(180deg, rgba(8,8,8,.9) 0%, rgba(8,8,8,.78) 40%, rgba(8,8,8,.9) 100%), radial-gradient(60% 60% at 85% 10%, rgba(209,0,0,.35), transparent 70%); }
.consult::before { background: radial-gradient(70% 80% at 20% 30%, rgba(209,0,0,.3), transparent 70%), linear-gradient(90deg, rgba(8,8,8,.93), rgba(8,8,8,.8)); }
.travel::before { background: radial-gradient(55% 70% at 80% 50%, rgba(209,0,0,.28), transparent 70%), linear-gradient(90deg, rgba(8,8,8,.95) 0%, rgba(8,8,8,.85) 60%, rgba(8,8,8,.9) 100%); }
.consult .form { background: rgba(25,25,25,.94); box-shadow: 0 24px 60px rgba(0,0,0,.5); }
.consult .offer-card { background: rgba(17,17,17,.85); }

/* trimmed location */
.travel-points { list-style: none; margin: 20px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.travel-points li { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18); border-radius: 999px; padding: 10px 16px; font-weight: 600; font-size: 16px; }

/* smaller "who it's for" */
#fit { padding: 48px 0; }
@media (min-width: 768px) { #fit { padding: 72px 0; } }
#fit h2 { font-size: clamp(28px, 3vw, 36px); max-width: 30ch; }
#fit .sec-head { margin-bottom: 24px; }
.photo-card img, .photo-card:hover img { aspect-ratio: 16 / 10; }
@media (min-width: 1024px) { .photo-card img { aspect-ratio: 16 / 10; } .photo-card-body { padding: 24px 28px; } }
.photo-card-body h3 { font-size: 22px; }
.photo-card-body p { font-size: 16px; }

/* how it works: application-to-home timeline */
.timeline { --p: 1; list-style: none; margin: 0; padding: 0; position: relative; display: grid; gap: 28px; }
.timeline::before, .timeline::after { content: ""; position: absolute; left: 27px; top: 28px; bottom: 28px; width: 3px; border-radius: 3px; }
.timeline::before { background: #2a2a2a; }
.timeline::after { background: var(--red); transform-origin: top; transform: scaleY(var(--p)); }
.step { position: relative; display: flex; gap: 20px; align-items: flex-start; z-index: 1; }
.step-node { position: relative; flex: none; width: 56px; height: 56px; border-radius: 50%; background: #111; border: 3px solid var(--red); display: grid; place-items: center; box-shadow: 0 0 0 6px var(--bg); transition: background-color .4s; }
.step-node svg { width: 24px; height: 24px; fill: none; stroke: #fff; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.step-node b { position: absolute; top: -6px; right: -8px; width: 24px; height: 24px; border-radius: 50%; background: #fff; color: #000; font: 700 13px/24px var(--body); text-align: center; }
.step.in .step-node { background: var(--red); }
.step-body h3 { font-family: var(--display); font-size: 22px; text-transform: uppercase; margin: 6px 0 4px; }
.step-body p { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.5; max-width: 42ch; }
@media (min-width: 1024px) {
  .timeline { grid-template-columns: repeat(6, 1fr); gap: 20px; }
  .timeline::before, .timeline::after { left: 28px; right: 28px; top: 27px; bottom: auto; width: auto; height: 3px; }
  .timeline::after { transform-origin: left; transform: scaleX(var(--p)); }
  .step { flex-direction: column; gap: 14px; }
  .step-body h3 { font-size: 20px; margin-top: 4px; }
  .step-body p { font-size: 15px; }
}
@media (prefers-reduced-motion: no-preference) { .js .timeline { --p: 0; } }

/* why zack: comparison */
.why { position: relative; isolation: isolate; overflow: hidden; }
.why-bg { position: absolute; inset: 0; z-index: -2; }
.why-bg img { width: 100%; height: 100%; object-fit: cover; }
.why::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(8,8,8,.93), rgba(8,8,8,.86) 50%, rgba(8,8,8,.95)); }
.cmp { border-radius: 10px; overflow: hidden; border: 1px solid var(--line); background: rgba(17,17,17,.92); box-shadow: 0 24px 60px rgba(0,0,0,.45); }
.cmp-row { display: grid; grid-template-columns: 1fr 1fr; }
.cmp-row + .cmp-row { border-top: 1px solid var(--line); }
.cmp-k { grid-column: 1 / -1; padding: 14px 18px 0; font: 700 13px/1.3 var(--body); letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.cmp-us, .cmp-them { display: flex; gap: 10px; align-items: flex-start; padding: 10px 18px 16px; font-size: 15px; line-height: 1.4; }
.cmp-us { color: #fff; font-weight: 600; }
.cmp-them { color: #9a9a9a; }
.cmp svg { width: 20px; height: 20px; flex: none; margin-top: 1px; fill: none; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.cmp svg.yes { stroke: #fff; background: var(--red); border-radius: 50%; padding: 3px; }
.cmp svg.no { stroke: #777; }
.cmp-head .cmp-k { display: none; }
.cmp-head .cmp-us { background: var(--red); align-items: center; font: 700 16px/1.2 var(--display); text-transform: uppercase; letter-spacing: .03em; padding: 14px 18px; }
.cmp-head .cmp-us img { width: 34px; height: 34px; }
.cmp-head .cmp-them { align-items: center; font: 700 16px/1.2 var(--display); text-transform: uppercase; letter-spacing: .03em; padding: 14px 18px; color: #bbb; background: #1d1d1d; }
.cmp-row:not(.cmp-head) .cmp-us { background: rgba(209,0,0,.08); }
@media (min-width: 768px) {
  .cmp-row { grid-template-columns: 1.1fr 1.4fr 1.1fr; align-items: stretch; }
  .cmp-k { grid-column: auto; padding: 18px 22px; display: flex; align-items: center; }
  .cmp-head .cmp-k { display: block; }
  .cmp-us, .cmp-them { padding: 18px 22px; align-items: center; font-size: 16px; }
  .cmp-head .cmp-us, .cmp-head .cmp-them { font-size: 18px; }
}
.why-cta { margin-top: 32px; text-align: center; }

/* FAQ on the program red */
.faq-red { background: var(--red); background-image: radial-gradient(90% 120% at 100% 0%, #ff2a1a 0%, rgba(255,42,26,0) 55%), linear-gradient(160deg, #D10000 0%, #9e0000 100%); }
.faq-red .kicker { color: #fff; opacity: .9; }
.faq-red .faqs { border-top-color: rgba(255,255,255,.35); }
.faq-red .faqs details { border-bottom-color: rgba(255,255,255,.35); }
.faq-red .faqs summary::after { color: #fff; }
.faq-red .faqs details p { color: #fff; opacity: .92; }

/* ===== round 5 (Matt 9/25 11:10) ===== */
/* hero bullets: short, paw icons */
.hero-bullets { gap: 10px; }
.hero-bullets li { padding-left: 0; display: flex; align-items: center; gap: 12px; font-size: 18px; }
.hero-bullets li::before { content: none; }
.paw { width: 26px; height: 26px; flex: none; fill: var(--red); filter: drop-shadow(0 2px 6px rgba(209,0,0,.45)); }
@media (min-width: 1024px) { .hero-bullets li { font-size: 19px; } }

/* sticky mobile footer: always on, hidden over the form */
.sticky-cta { transform: none; visibility: visible; padding: 10px 14px calc(10px + env(safe-area-inset-bottom)); gap: 10px; background: rgba(8,8,8,.96); }
.sticky-cta.hide { transform: translateY(110%); visibility: hidden; }
.sticky-cta .sticky-apply { flex: 1; min-height: 52px; font-size: 17px; text-transform: none; letter-spacing: 0; box-shadow: 0 6px 20px rgba(209,0,0,.45); }
.sticky-cta .sticky-call { flex: none; width: 52px; min-height: 52px; padding: 0; background: #fff; color: #000; border-radius: 8px; }
.sticky-cta .sticky-call svg { width: 22px; height: 22px; fill: currentColor; }
@media (max-width: 1023px) { body.has-sticky { padding-bottom: calc(76px + env(safe-area-inset-bottom)); } }

/* why zack: compact on desktop, cards on mobile */
.why.sec { padding: 56px 0; }
@media (min-width: 768px) { .why.sec { padding: 64px 0; } }
.why .sec-head { margin-bottom: 22px; }
.why h2 { font-size: clamp(28px, 3vw, 38px); max-width: none; }
@media (min-width: 768px) {
  .cmp-k { padding: 11px 20px; font-size: 12px; }
  .cmp-us, .cmp-them { padding: 11px 20px; font-size: 15px; }
  .cmp-head .cmp-us, .cmp-head .cmp-them { padding: 12px 20px; font-size: 17px; }
  .why-cta { margin-top: 22px; }
}
@media (max-width: 767px) {
  .cmp { background: transparent; border: 0; box-shadow: none; display: grid; gap: 10px; }
  .cmp .cmp-head { display: none; }
  .cmp-row, .cmp-row + .cmp-row { border: 0; display: block; background: rgba(20,20,20,.94); border-radius: 10px; overflow: hidden; }
  .cmp-k { padding: 14px 16px 6px; font-size: 12px; }
  .cmp-row:not(.cmp-head) .cmp-us { background: none; padding: 2px 16px 8px; font-size: 17px; }
  .cmp-them { padding: 0 16px 14px; font-size: 14px; }
  .cmp-them span::before { content: "Others: "; color: #777; }
  .cmp-them span { text-decoration: none; }
}

/* location: the trip */
.travel h2 { max-width: 16ch; }
.travel .intro strong { color: #fff; }
.trip { list-style: none; margin: 26px 0 22px; padding: 0; display: grid; gap: 12px; counter-reset: trip; }
.trip li { display: flex; gap: 14px; align-items: center; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: 10px; padding: 14px 16px; }
.trip li strong { display: block; font: 700 19px/1.2 var(--display); text-transform: uppercase; letter-spacing: .02em; }
.trip li span:not(.trip-ico) { color: #d6d6d6; font-size: 15px; }
.trip-ico { flex: none; width: 44px; height: 44px; border-radius: 50%; background: var(--red); display: grid; place-items: center; box-shadow: 0 6px 16px rgba(209,0,0,.4); }
.trip-ico svg { width: 22px; height: 22px; fill: none; stroke: #fff; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.addr-card { font-style: normal; display: flex; gap: 14px; align-items: flex-start; }
.addr-card strong { display: block; font-size: 17px; }
.addr-card span:not(.trip-ico) { display: block; color: #d6d6d6; }
.addr-card .dir-link { margin-top: 4px; min-height: 36px; }

/* form side: urgency + best points */
.apply-copy h2 { font-size: clamp(32px, 4vw, 48px); max-width: 16ch; }
.apply-sub { font-size: 18px; color: #e2e2e2; max-width: 48ch; margin-bottom: 18px; }
.apply-points { list-style: none; margin: 0 0 22px; padding: 0; display: grid; gap: 10px; }
.apply-points li { display: flex; gap: 12px; align-items: flex-start; font-size: 17px; line-height: 1.4; }
.apply-points .paw { width: 22px; height: 22px; margin-top: 1px; }
.apply-quote { margin: 0 0 18px; background: rgba(255,255,255,.07); border-radius: 8px; padding: 16px 18px; }
.apply-quote blockquote { margin: 0 0 8px; font-size: 17px; font-style: italic; color: #fff; }
.apply-quote figcaption { font-size: 14px; color: #cfcfcf; }
.apply-stars { color: #FBBC04; letter-spacing: 2px; margin-right: 6px; }
.apply-price { font-size: 16px; color: #e2e2e2; margin: 0; }
.apply-price span { font: 700 28px/1 var(--display); color: #fff; margin-right: 4px; }

/* ===== round 6 (Matt 9/25 11:19) ===== */
/* address: its own white card, not another bullet */
.addr-card { margin-top: 6px; background: #fff; color: #111; border-radius: 12px; padding: 16px 20px; align-items: center; gap: 16px; box-shadow: 0 16px 40px rgba(0,0,0,.45); position: relative; overflow: hidden; }
.addr-card::after { content: ""; position: absolute; right: 0; top: 0; bottom: 0; width: 8px; background: var(--red); }
.addr-logo { width: 60px; height: 60px; flex: none; border-radius: 50%; background: #080808; padding: 4px; }
.addr-card .addr-label { display: block; font: 700 12px/1.2 var(--body); letter-spacing: .14em; text-transform: uppercase; color: var(--red); margin-bottom: 4px; }
.addr-card strong { display: block; font: 700 22px/1.15 var(--display); text-transform: uppercase; letter-spacing: .01em; color: #111; }
.addr-card .addr-city { display: block; font-size: 15px; color: #444; margin-top: 2px; }


@media (max-width: 1023px) { body.has-sticky { padding-bottom: calc(88px + env(safe-area-inset-bottom)); } }
.addr-card::after { content: none; }
.addr-card span.addr-label { color: var(--red); }
.addr-card span.addr-city { color: #333; }

/* sticky footer v3: centred label, German Shepherd running behind it, slow ember burn */
.sticky-cta { padding: 10px 14px calc(10px + env(safe-area-inset-bottom)); }
.sticky-cta .sticky-apply { position: relative; overflow: hidden; isolation: isolate; flex: 1; min-height: 60px; padding: 0 20px; display: flex; align-items: center; justify-content: center; font-size: 19px; background: linear-gradient(100deg, #7a0000 0%, #b30000 22%, #D10000 45%, #ff3b1f 55%, #D10000 65%, #b30000 80%, #7a0000 100%); background-size: 320% 100%; background-position: 50% 0; box-shadow: 0 6px 22px rgba(209,0,0,.4), inset 0 -10px 18px rgba(0,0,0,.25); }
.sticky-label { position: relative; z-index: 2; text-shadow: 0 1px 3px rgba(0,0,0,.55); letter-spacing: .01em; }
.dog-track { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
@media (prefers-reduced-motion: no-preference) {
  .sticky-cta .sticky-apply { animation: ember 7s ease-in-out infinite alternate; }
}
@keyframes ember { 0% { background-position: 0% 0; } 100% { background-position: 100% 0; } }
@media (max-width: 1023px) { body.has-sticky { padding-bottom: calc(82px + env(safe-area-inset-bottom)); } }
#consult-form { scroll-margin-top: 100px; }


/* program options: 4 weeks $6,000 / 6 weeks $8,000 */
.plans { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 0 0 14px; }
.plan { position: relative; background: #080808; color: #fff; border-radius: 10px; padding: 16px 18px; display: flex; flex-direction: column; box-shadow: 0 10px 26px rgba(0,0,0,.3); }
.plan-main { background: #fff; color: #111; }
.plan-weeks { font: 700 14px/1.2 var(--body); letter-spacing: .12em; text-transform: uppercase; opacity: .85; }
.plan-price { font: 700 clamp(32px, 4vw, 42px)/1.05 var(--display); margin-top: 4px; }
.plan-main .plan-price { color: var(--red); }
.plan-per { font-size: 14px; opacity: .75; }
.plan-tag { position: absolute; top: -10px; right: 12px; background: #080808; color: #fff; font: 700 11px/1 var(--body); letter-spacing: .1em; text-transform: uppercase; padding: 6px 8px; border-radius: 4px; }
.apply-price b { color: var(--red); }

/* form: program radio cards */
.plan-pick { border: 0; margin: 0 0 16px; padding: 0; }
.plan-pick legend { font-size: 15px; font-weight: 600; margin-bottom: 6px; padding: 0; }
.plan-pick { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.plan-pick legend { grid-column: 1 / -1; }
.form .plan-opt { position: relative; margin: 0; cursor: pointer; }
.plan-opt input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.plan-opt span { display: flex; flex-direction: column; min-height: 56px; justify-content: center; padding: 10px 14px; border: 1px solid var(--line); border-radius: 8px; background: var(--bg); font-weight: 400; font-size: 15px; transition: border-color .15s, background-color .15s; }
.plan-opt span b { font: 700 17px/1.2 var(--display); text-transform: uppercase; letter-spacing: .03em; }
.plan-opt input:checked + span { border-color: var(--red); background: rgba(209,0,0,.18); box-shadow: 0 0 0 1px var(--red) inset; }
.plan-opt input:focus-visible + span { outline: 3px solid #fff; outline-offset: 2px; }
.plan-pick[aria-invalid="true"] .plan-opt span { border-color: #ff6b6b; }

/* who it's for: below 1024px the caption sits under the photo so it never covers the dog */
@media (max-width: 1023px) {
  .photo-card::after { content: none; }
  .photo-card-body { position: static; padding: 18px 20px 20px; }
  .photo-card img, .photo-card:hover img { aspect-ratio: 16 / 10; }
}
