:root {
  --black: #050505;
  --ink: #f7f4ed;
  --muted: #b9b2a5;
  --yellow: #ffc20e;
  --mint: #87e2cc;
  --coral: #ff6f61;
  --line: rgba(247, 244, 237, 0.18);
  --line-strong: rgba(247, 244, 237, 0.34);
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.42);
  --font-display: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--black);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.45;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(180deg, rgba(255, 194, 14, 0.06), transparent 520px),
    var(--black);
  color: var(--ink);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img,
canvas {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

.scroll-meter {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.scroll-meter span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--yellow), var(--mint), var(--coral));
}

.landing-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 0 40px;
  color: var(--ink);
  transition: background 220ms ease, border-color 220ms ease, height 220ms ease;
}

.landing-header.is-scrolled,
.landing-header.is-open {
  height: 76px;
  background: rgba(5, 5, 5, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
}

.brand-lockup img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.brand-lockup span {
  display: grid;
  gap: 1px;
}

.brand-lockup strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1;
  text-transform: uppercase;
}

.brand-lockup small {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 7px;
}

.primary-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: rgba(247, 244, 237, 0.78);
  font-size: 0.91rem;
  font-weight: 850;
  text-decoration: none;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.primary-nav a:hover {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.06);
}

.primary-nav a[aria-current="page"] {
  color: #090704;
  border-color: rgba(255, 194, 14, 0.82);
  background: var(--yellow);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transform-origin: center;
  transition: transform 180ms ease;
}

.landing-header.is-open .menu-toggle span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.landing-header.is-open .menu-toggle span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 92svh;
  isolation: isolate;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #030303;
}

.hero-canvas,
.hero-shade,
.hero-dog {
  position: absolute;
  inset: 0;
}

.hero-canvas {
  z-index: -3;
  width: 100%;
  height: 100%;
  opacity: 0.45;
}

.hero-dog {
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
  filter: contrast(1.08) saturate(0.94);
  transform: translate3d(var(--px, 0), var(--py, 0), 0) scale(1.03);
  transition: transform 180ms ease-out;
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.98) 0%, rgba(5, 5, 5, 0.9) 34%, rgba(5, 5, 5, 0.4) 64%, rgba(5, 5, 5, 0.12) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.24), rgba(5, 5, 5, 0.88));
}

.hero-content {
  width: min(780px, calc(100% - 52px));
  min-height: 92svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 118px 0 88px;
  margin-left: clamp(26px, 7vw, 104px);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--yellow);
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 760px;
  font-family: var(--font-display);
  font-size: 6rem;
  line-height: 0.86;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.hero-line {
  max-width: 590px;
  margin: 28px 0 0;
  color: rgba(247, 244, 237, 0.82);
  font-size: 1.28rem;
  font-weight: 760;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  --mx: 0px;
  --my: 0px;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 950;
  text-decoration: none;
  transform: translate3d(var(--mx), var(--my), 0);
  transition: transform 140ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button-primary {
  background: var(--yellow);
  color: #090704;
  box-shadow: 0 18px 42px rgba(255, 194, 14, 0.18);
}

.button-primary:hover {
  background: #ffd65c;
}

.button-ghost {
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
}

.button-ghost:hover {
  border-color: rgba(255, 255, 255, 0.56);
  background: rgba(255, 255, 255, 0.11);
}

.hero-note {
  position: absolute;
  left: clamp(26px, 7vw, 104px);
  right: 32px;
  bottom: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: rgba(247, 244, 237, 0.68);
}

.hero-note span {
  padding: 8px 0;
  border-top: 1px solid var(--line-strong);
  min-width: 160px;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.proof-band {
  min-height: 42svh;
  display: grid;
  place-items: center;
  padding: 72px 26px;
  border-bottom: 1px solid var(--line);
  background: var(--yellow);
  color: #0a0805;
}

.proof-band p {
  width: min(1040px, 100%);
  margin: 0;
  font-family: var(--font-display);
  font-size: 4.25rem;
  line-height: 0.98;
  text-transform: uppercase;
}

.service-stage {
  padding: 110px 40px;
  border-bottom: 1px solid var(--line);
}

.section-copy {
  width: min(1120px, 100%);
  margin: 0 auto 58px;
}

.section-copy h2,
.journey-sticky h2,
.image-run-copy h2,
.final-copy h2 {
  margin: 0;
  max-width: 820px;
  font-family: var(--font-display);
  font-size: 4.2rem;
  line-height: 0.98;
  text-transform: uppercase;
}

.service-switcher {
  width: min(1120px, 100%);
  min-height: 560px;
  display: grid;
  grid-template-columns: minmax(300px, 0.92fr) minmax(230px, 0.48fr) minmax(300px, 0.68fr);
  gap: 34px;
  align-items: stretch;
  margin: 0 auto;
}

.service-media {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: #161616;
}

.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.12);
  transform: scale(1.04);
  transition: opacity 240ms ease, transform 520ms ease;
}

.service-media.is-swapping img {
  opacity: 0.28;
  transform: scale(1.09);
}

.service-tag {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 10px 13px;
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.72);
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.service-tabs {
  display: grid;
  align-content: stretch;
  border-top: 1px solid var(--line);
}

.service-tab {
  width: 100%;
  min-height: 132px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: rgba(247, 244, 237, 0.52);
  font-family: var(--font-display);
  font-size: 2.3rem;
  line-height: 0.95;
  text-align: left;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 180ms ease, padding 180ms ease, background 180ms ease;
}

.service-tab:hover,
.service-tab.is-active {
  color: var(--ink);
  padding-left: 16px;
  background: linear-gradient(90deg, rgba(255, 194, 14, 0.12), transparent);
}

.service-copy {
  align-self: end;
  padding-bottom: 24px;
}

.service-copy h3 {
  margin: 0 0 20px;
  font-size: 2rem;
  line-height: 1.06;
}

.service-copy p {
  margin: 0;
  max-width: 410px;
  color: rgba(247, 244, 237, 0.72);
  font-size: 1.04rem;
}

.text-link {
  display: inline-flex;
  margin-top: 28px;
  color: var(--yellow);
  font-weight: 950;
  text-decoration: none;
}

.text-link:hover {
  color: var(--mint);
}

.journey {
  width: min(1180px, calc(100% - 80px));
  display: grid;
  grid-template-columns: minmax(300px, 0.74fr) minmax(320px, 1fr);
  gap: 76px;
  margin: 0 auto;
  padding: 120px 0;
  border-bottom: 1px solid var(--line);
}

.journey-sticky {
  position: sticky;
  top: 118px;
  align-self: start;
}

.journey-sticky .button {
  margin-top: 34px;
}

.journey-steps {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.journey-step {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 24px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.journey-step span {
  color: var(--mint);
  font-weight: 950;
}

.journey-step h3 {
  margin: 0 0 8px;
  font-size: 1.38rem;
}

.journey-step p {
  grid-column: 2;
  max-width: 600px;
  margin: 0;
  color: rgba(247, 244, 237, 0.68);
  font-size: 1.02rem;
}

.image-run {
  display: grid;
  grid-template-columns: minmax(320px, 1.08fr) minmax(300px, 0.92fr);
  align-items: center;
  gap: 64px;
  padding: 116px 40px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, transparent, rgba(135, 226, 204, 0.08)),
    #080808;
}

.image-run img {
  width: 100%;
  max-height: 620px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.image-run-copy {
  max-width: 620px;
}

.image-run-copy p:last-child {
  max-width: 520px;
  margin: 24px 0 0;
  color: rgba(247, 244, 237, 0.72);
  font-size: 1.08rem;
}

.final-cta {
  position: relative;
  min-height: 84svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 116px 40px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.96), rgba(5, 5, 5, 0.62)),
    #050505;
}

.cta-dog {
  position: absolute;
  right: -7vw;
  bottom: -72px;
  width: min(58vw, 770px);
  max-width: none;
  opacity: 0.58;
  transform: translate3d(var(--px, 0), var(--py, 0), 0) rotate(-2deg);
  pointer-events: none;
}

.final-copy {
  position: relative;
  z-index: 1;
  width: min(780px, 100%);
  margin-left: clamp(0px, 5vw, 68px);
}

.landing-footer {
  display: grid;
  grid-template-columns: minmax(210px, 0.78fr) minmax(360px, 1.28fr) minmax(230px, 0.76fr);
  align-items: flex-start;
  gap: 28px;
  padding: 26px 40px;
  color: rgba(247, 244, 237, 0.68);
  background: #050505;
}

.landing-footer strong,
.landing-footer span {
  display: block;
}

.landing-footer strong {
  color: var(--ink);
  margin-bottom: 8px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.footer-center {
  display: grid;
  justify-items: center;
  gap: 12px;
}

.footer-brand,
.footer-hours {
  max-width: 280px;
}

.footer-hours {
  justify-self: end;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  justify-content: center;
  text-align: center;
}

.footer-links a {
  font-weight: 850;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--yellow);
}

.footer-social {
  margin-top: 0;
  justify-content: center;
}

.social-cluster {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 900;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.social-button img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.social-button:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 194, 14, 0.72);
  background: rgba(255, 194, 14, 0.14);
  color: var(--yellow);
}

[data-reveal] {
  opacity: 1;
  transform: translateY(26px);
  transition: transform 620ms ease;
}

[data-reveal].is-visible {
  transform: translateY(0);
}

.inner-page {
  background:
    radial-gradient(circle at 12% 6%, rgba(255, 194, 14, 0.13), transparent 34vw),
    radial-gradient(circle at 88% 18%, rgba(135, 226, 204, 0.08), transparent 30vw),
    var(--black);
}

.inner-page .landing-header {
  background: rgba(5, 5, 5, 0.72);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.inner-hero {
  position: relative;
  min-height: 76svh;
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
  padding: 150px 40px 58px;
  border-bottom: 1px solid var(--line);
  background: #050505;
}

.inner-hero-media,
.inner-hero::before,
.inner-hero::after {
  position: absolute;
  inset: 0;
}

.inner-hero::before {
  content: "";
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.98) 0%, rgba(5, 5, 5, 0.86) 42%, rgba(5, 5, 5, 0.42) 74%, rgba(5, 5, 5, 0.1) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.08), rgba(5, 5, 5, 0.9));
}

.inner-hero::after {
  content: "";
  z-index: -3;
  background:
    linear-gradient(120deg, transparent 0 48%, rgba(255, 194, 14, 0.42) 48% 50%, transparent 50% 100%),
    radial-gradient(circle at 82% 28%, rgba(255, 194, 14, 0.18), transparent 28vw);
  opacity: 0.72;
  mix-blend-mode: screen;
}

.inner-hero-media {
  z-index: -4;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--media-position, 70% center);
  filter: grayscale(1) contrast(1.12) saturate(0.86);
  transform: translate3d(var(--px, 0), var(--py, 0), 0) scale(1.05);
  transition: transform 220ms ease-out;
}

.inner-hero-content {
  width: min(900px, 100%);
  margin-left: clamp(0px, 5vw, 70px);
}

.inner-hero h1,
.page-title {
  margin: 0;
  max-width: 920px;
  font-family: var(--font-display), var(--font-body);
  font-size: clamp(3.1rem, 9vw, 6.8rem);
  line-height: 0.9;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.inner-hero .hero-line {
  max-width: 660px;
}

.inner-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 38px;
}

.inner-stats span {
  min-width: 150px;
  padding: 11px 0;
  border-top: 1px solid var(--line-strong);
  color: rgba(247, 244, 237, 0.72);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.content-band {
  padding: 104px 40px;
  border-bottom: 1px solid var(--line);
}

.content-band.alt {
  background:
    linear-gradient(110deg, rgba(255, 194, 14, 0.08), transparent 52%),
    #080808;
}

.content-band.yellow {
  background: var(--yellow);
  color: #0a0805;
}

.content-wrap {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.narrow-wrap {
  width: min(860px, 100%);
  margin: 0 auto;
}

.section-heading {
  margin: 0 0 30px;
  font-family: var(--font-display), var(--font-body);
  font-size: clamp(2.45rem, 6vw, 4.4rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.section-lede {
  max-width: 760px;
  color: rgba(247, 244, 237, 0.74);
  font-size: 1.1rem;
  font-weight: 690;
}

.content-band.yellow .section-lede,
.content-band.yellow p,
.content-band.yellow li {
  color: rgba(10, 8, 5, 0.78);
}

.content-band.yellow .button-primary {
  background: #090704;
  color: var(--yellow);
  box-shadow: none;
}

.content-band.yellow .button-primary:hover {
  background: #241d08;
}

.content-band.yellow .button-ghost {
  border-color: rgba(10, 8, 5, 0.34);
  background: rgba(10, 8, 5, 0.08);
  color: #090704;
}

.content-band.yellow .benefit-list li,
.content-band.yellow .pill-list li {
  border-color: rgba(10, 8, 5, 0.18);
  background: rgba(10, 8, 5, 0.08);
}

.content-band.yellow .benefit-list li::before,
.content-band.yellow .pill-list li::before {
  background: #090704;
  box-shadow: 0 0 0 5px rgba(10, 8, 5, 0.13);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(320px, 1fr);
  gap: 56px;
  align-items: center;
}

.split-section.reverse {
  grid-template-columns: minmax(320px, 1fr) minmax(280px, 0.88fr);
}

.media-panel {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: 8px;
  background: #151515;
  box-shadow: var(--shadow);
}

.media-panel img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: grayscale(0.85) contrast(1.08);
  transform: scale(1.03);
  transition: transform 620ms ease, filter 280ms ease;
}

.media-panel:hover img {
  filter: grayscale(0.2) contrast(1.08);
  transform: scale(1.08);
}

.media-label {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.72);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.copy-stack {
  display: grid;
  gap: 18px;
  color: rgba(247, 244, 237, 0.76);
  font-size: 1.04rem;
}

.copy-stack p,
.copy-stack ul,
.copy-stack ol {
  margin: 0;
}

.copy-stack strong {
  color: var(--ink);
}

.copy-stack h2,
.copy-stack h3 {
  margin: 16px 0 0;
  color: var(--ink);
  line-height: 1.1;
}

.pill-list,
.benefit-list {
  display: grid;
  gap: 10px;
  padding: 0;
  list-style: none;
}

.pill-list li,
.benefit-list li {
  position: relative;
  padding: 13px 14px 13px 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(247, 244, 237, 0.78);
}

.pill-list li::before,
.benefit-list li::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 19px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 5px rgba(255, 194, 14, 0.14);
}

.package-grid,
.feature-grid,
.plan-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-grid.two,
.faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.spotlight-card,
.package-card,
.feature-card,
.plan-card,
.faq-card,
.contact-card,
.journal-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at var(--spot-x, 20%) var(--spot-y, 0%), rgba(255, 194, 14, 0.18), transparent 34%),
    rgba(255, 255, 255, 0.045);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.22);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.spotlight-card:hover,
.package-card:hover,
.feature-card:hover,
.plan-card:hover,
.faq-card:hover,
.contact-card:hover,
.journal-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 194, 14, 0.52);
}

.package-card,
.feature-card,
.plan-card,
.faq-card,
.contact-card {
  padding: 24px;
}

.package-card h3,
.feature-card h3,
.plan-card h3,
.faq-card h3,
.contact-card h3 {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: 1.2rem;
  line-height: 1.1;
  text-transform: uppercase;
}

.package-card ul,
.feature-card ul,
.plan-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
  color: rgba(247, 244, 237, 0.72);
}

.feature-card img,
.plan-card img,
.journal-card img {
  width: calc(100% + 48px);
  max-width: none;
  height: 230px;
  margin: -24px -24px 22px;
  object-fit: cover;
  filter: grayscale(0.8) contrast(1.08);
  transition: transform 520ms ease, filter 220ms ease;
}

.feature-card:hover img,
.plan-card:hover img,
.journal-card:hover img {
  transform: scale(1.05);
  filter: grayscale(0.18) contrast(1.08);
}

.cat-feature {
  display: grid;
  grid-template-columns: minmax(220px, 0.5fr) minmax(320px, 1fr);
  gap: 42px;
  align-items: center;
}

.cat-feature > img {
  width: min(320px, 100%);
  justify-self: center;
  filter: drop-shadow(0 26px 42px rgba(0, 0, 0, 0.46));
}

.addons-strip {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.addons-strip::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.98), rgba(5, 5, 5, 0.72)),
    var(--addons-image);
  background-size: cover;
  background-position: 76% center;
  filter: grayscale(1) contrast(1.05);
}

.club-badge {
  width: min(360px, 100%);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  justify-self: center;
  border: 1px solid rgba(255, 194, 14, 0.52);
  border-radius: 50%;
  background: rgba(255, 194, 14, 0.92);
  color: #080604;
  font-family: var(--font-display), var(--font-body);
  font-size: clamp(2rem, 5vw, 4.2rem);
  line-height: 0.95;
  text-align: center;
  text-transform: uppercase;
  box-shadow: 0 34px 90px rgba(255, 194, 14, 0.18);
  transform: rotate(-5deg);
}

.plan-card {
  padding-top: 24px;
}

.plan-card h3 {
  font-family: var(--font-display), var(--font-body);
  font-size: 2.45rem;
}

.plan-card .plan-term {
  color: var(--yellow);
  font-weight: 950;
}

.callout-panel {
  display: grid;
  gap: 22px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(120deg, rgba(255, 194, 14, 0.15), rgba(255, 255, 255, 0.045)),
    rgba(255, 255, 255, 0.04);
}

.callout-panel h2,
.callout-panel p {
  margin: 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(320px, 1fr);
  gap: 32px;
  align-items: stretch;
}

.contact-list {
  display: grid;
  gap: 14px;
}

.contact-card a {
  color: var(--yellow);
  font-weight: 900;
  text-decoration: none;
}

.contact-card a:hover {
  color: var(--mint);
}

.contact-form {
  display: grid;
  gap: 15px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contact-form label {
  display: block;
  margin-bottom: 7px;
  color: rgba(247, 244, 237, 0.72);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(5, 5, 5, 0.64);
  color: var(--ink);
  padding: 13px 14px;
  outline: none;
  transition: border-color 180ms ease, background 180ms ease;
}

.contact-form textarea {
  min-height: 160px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--yellow);
  background: rgba(5, 5, 5, 0.92);
}

.contact-form button {
  min-height: 50px;
  border: 0;
  border-radius: 999px;
  background: var(--yellow);
  color: #090704;
  font-weight: 950;
  cursor: pointer;
  transition: transform 160ms ease, background 180ms ease;
}

.contact-form button:hover {
  transform: translateY(-2px);
  background: #ffd65c;
}

.blog-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: min(1120px, calc(100% - 80px));
  margin: 0 auto;
  padding: 116px 0 0;
}

.blog-tabs a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: rgba(247, 244, 237, 0.74);
  font-weight: 900;
  text-decoration: none;
}

.blog-tabs a:hover,
.blog-tabs a[aria-current="page"] {
  border-color: rgba(255, 194, 14, 0.54);
  color: var(--yellow);
  background: rgba(255, 194, 14, 0.1);
}

.journal-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.55fr) minmax(320px, 1fr);
  color: inherit;
  text-decoration: none;
}

.journal-card img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  margin: 0;
}

.journal-card-body {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 34px;
}

.post-meta {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.journal-card h2,
.article h1 {
  margin: 0;
  font-family: var(--font-display), var(--font-body);
  text-transform: uppercase;
}

.journal-card h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 0.98;
}

.journal-card p {
  margin: 0;
  color: rgba(247, 244, 237, 0.72);
}

.post-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  color: rgba(247, 244, 237, 0.56);
  font-size: 0.82rem;
}

.article,
.legal-page {
  width: min(920px, calc(100% - 80px));
  margin: 0 auto;
  padding: 142px 0 92px;
}

.article h1,
.legal-page h1 {
  margin: 0 0 34px;
  color: var(--ink);
  font-family: var(--font-display), var(--font-body);
  font-size: clamp(2.7rem, 7vw, 5rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.article > img {
  width: 100%;
  max-height: 560px;
  margin: 34px 0;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
  filter: grayscale(0.35) contrast(1.08);
}

.article-content,
.legal-page {
  color: rgba(247, 244, 237, 0.78);
  font-size: 1.04rem;
}

.article-content h2,
.legal-page h2 {
  margin: 38px 0 12px;
  color: var(--ink);
  font-size: 1.65rem;
  line-height: 1.12;
}

.article-content p,
.article-content ul,
.legal-page p,
.legal-page ul {
  margin: 0 0 18px;
}

.article-content a,
.legal-page a,
.article-footer a {
  color: var(--yellow);
  font-weight: 900;
  text-decoration: none;
}

.article-content a:hover,
.legal-page a:hover,
.article-footer a:hover {
  color: var(--mint);
}

.article-footer {
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.share-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0;
}

.share-row a,
.share-row span {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-weight: 900;
}

@media (max-width: 980px) {
  .landing-header {
    padding: 0 24px;
  }

  .menu-toggle {
    display: block;
  }

  .primary-nav {
    position: fixed;
    inset: 76px 18px auto;
    display: grid;
    gap: 2px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(5, 5, 5, 0.94);
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    backdrop-filter: blur(18px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .landing-header.is-open .primary-nav {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .primary-nav a {
    justify-content: flex-start;
    border-radius: 6px;
  }

  .hero-content {
    min-height: 92svh;
    padding-top: 116px;
    margin-left: 26px;
  }

  .hero h1 {
    font-size: 4.6rem;
  }

  .hero-line {
    font-size: 1.08rem;
  }

  .proof-band p,
  .section-copy h2,
  .journey-sticky h2,
  .image-run-copy h2,
  .final-copy h2 {
    font-size: 3.25rem;
  }

  .service-stage {
    padding: 86px 24px;
  }

  .service-switcher,
  .journey,
  .image-run {
    grid-template-columns: 1fr;
  }

  .service-switcher {
    min-height: 0;
  }

  .service-media {
    min-height: 440px;
  }

  .service-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 0;
  }

  .service-tab {
    min-height: 92px;
    padding-right: 10px;
    font-size: 1.7rem;
    border-top: 1px solid var(--line);
  }

  .service-tab:hover,
  .service-tab.is-active {
    padding-left: 10px;
  }

  .service-copy {
    padding-bottom: 0;
  }

  .journey {
    width: min(100% - 48px, 760px);
    gap: 44px;
    padding: 88px 0;
  }

  .journey-sticky {
    position: static;
  }

  .image-run {
    padding: 88px 24px;
    gap: 42px;
  }

  .final-cta {
    min-height: 78svh;
    padding: 88px 24px;
  }

  .cta-dog {
    right: -220px;
    width: 720px;
  }
}

@media (max-width: 620px) {
  .landing-header {
    height: 78px;
    padding: 0 16px;
  }

  .brand-lockup img {
    width: 44px;
    height: 44px;
  }

  .brand-lockup strong {
    font-size: 1.15rem;
  }

  .brand-lockup small {
    max-width: 128px;
    font-size: 0.68rem;
  }

  .hero-content {
    width: min(100% - 34px, 520px);
    min-height: 92svh;
    padding: 104px 0 128px;
    margin-left: 17px;
  }

  .hero-dog {
    object-position: 68% center;
    opacity: 0.66;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(5, 5, 5, 0.98), rgba(5, 5, 5, 0.7)),
      linear-gradient(180deg, rgba(5, 5, 5, 0.1), rgba(5, 5, 5, 0.9));
  }

  .hero h1 {
    font-size: 3.4rem;
    line-height: 0.9;
  }

  .hero-line {
    max-width: 360px;
    margin-top: 20px;
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
    width: min(100%, 330px);
    margin-top: 26px;
  }

  .button {
    width: 100%;
    min-height: 48px;
  }

  .hero-note {
    left: 17px;
    right: 17px;
    bottom: 16px;
  }

  .hero-note span {
    min-width: 0;
    flex: 1 1 120px;
    font-size: 0.72rem;
  }

  .proof-band {
    min-height: 32svh;
    padding: 50px 18px;
  }

  .proof-band p,
  .section-copy h2,
  .journey-sticky h2,
  .image-run-copy h2,
  .final-copy h2 {
    font-size: 2.3rem;
  }

  .service-stage {
    padding: 68px 18px;
  }

  .section-copy {
    margin-bottom: 36px;
  }

  .service-media {
    min-height: 320px;
  }

  .service-tabs {
    grid-template-columns: 1fr;
  }

  .service-tab {
    min-height: 72px;
    font-size: 1.62rem;
  }

  .service-copy h3 {
    font-size: 1.55rem;
  }

  .journey {
    width: calc(100% - 36px);
    padding: 70px 0;
  }

  .journey-step {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 16px;
    padding: 26px 0;
  }

  .journey-step p {
    grid-column: 1 / -1;
  }

  .image-run {
    padding: 70px 18px;
  }

  .final-cta {
    min-height: 72svh;
    padding: 72px 18px;
  }

  .cta-dog {
    right: -250px;
    bottom: -40px;
    width: 640px;
  }

  .landing-footer {
    padding: 28px 18px;
  }

  .footer-links {
    justify-content: center;
  }
}

@media (max-width: 980px) {
  .inner-hero {
    min-height: 68svh;
    padding: 126px 24px 46px;
  }

  .inner-hero-content {
    margin-left: 0;
  }

  .content-band {
    padding: 82px 24px;
  }

  .split-section,
  .split-section.reverse,
  .contact-layout,
  .cat-feature,
  .journal-card {
    grid-template-columns: 1fr;
  }

  .package-grid,
  .feature-grid,
  .feature-grid.two,
  .plan-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .media-panel {
    min-height: 360px;
  }

  .club-badge {
    justify-self: start;
    width: min(280px, 100%);
  }

  .journal-card img {
    min-height: 300px;
  }

  .blog-tabs,
  .article,
  .legal-page {
    width: min(100% - 48px, 860px);
  }

  .landing-footer {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 18px;
    padding: 26px 24px;
    text-align: center;
  }

  .footer-brand,
  .footer-hours {
    display: grid;
    justify-items: center;
  }

  .footer-links {
    justify-content: center;
  }
}

@media (max-width: 620px) {
  .inner-page .primary-nav {
    inset-inline: 12px;
  }

  .inner-hero {
    min-height: 64svh;
    padding: 106px 18px 36px;
  }

  .inner-hero::before {
    background:
      linear-gradient(90deg, rgba(5, 5, 5, 0.98), rgba(5, 5, 5, 0.74)),
      linear-gradient(180deg, rgba(5, 5, 5, 0.08), rgba(5, 5, 5, 0.9));
  }

  .inner-hero-media {
    opacity: 0.68;
  }

  .inner-hero h1,
  .page-title {
    font-size: 3rem;
    line-height: 0.96;
  }

  .inner-stats {
    margin-top: 28px;
  }

  .inner-stats span {
    flex: 1 1 120px;
    min-width: 0;
    font-size: 0.7rem;
  }

  .content-band {
    padding: 66px 18px;
  }

  .section-heading {
    font-size: 2.35rem;
  }

  .media-panel {
    min-height: 300px;
  }

  .package-card,
  .feature-card,
  .plan-card,
  .faq-card,
  .contact-card,
  .contact-form,
  .callout-panel {
    padding: 20px;
  }

  .feature-card img,
  .plan-card img {
    width: calc(100% + 40px);
    height: 210px;
    margin: -20px -20px 20px;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .blog-tabs {
    width: calc(100% - 36px);
    padding-top: 100px;
  }

  .journal-card-body {
    padding: 24px;
  }

  .journal-card img {
    min-height: 260px;
  }

  .article,
  .legal-page {
    width: calc(100% - 36px);
    padding: 112px 0 70px;
  }

  .landing-footer .social-cluster {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: min(260px, 100%);
  }

  .landing-footer .social-button {
    justify-content: center;
    padding-inline: 10px;
  }

  .landing-footer .social-button span {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero-dog,
  .cta-dog,
  .button {
    transform: none !important;
  }
}
