/* Ridgeside K9 Knoxville LP. Cloned skeleton from MLK9 Myrtle Beach lp-dog-training. Forest green + gold.
   Primary #305030 (RSK9 forest green), Accent #F5C518 (gold), Ink #1a1f24, Paper #faf6f1, White #ffffff */

:root {
  --orange: #305030;
  --orange-dark: #1f3a1f;
  --orange-light: #6a9a6a;
  --slate: #F5C518;
  --slate-dark: #39423a;   /* body/muted text on light surfaces. Was dark-gold from the
                              v1 brand swap, which made every <p> on a light section gold. */
  --slate-light: #fbe08a;
  --ink: #1a1f24;
  --paper: #faf6f1;
  --line: rgba(26, 31, 36, 0.08);
  --line-strong: rgba(26, 31, 36, 0.16);
  --shadow-sm: 0 1px 2px rgba(26, 31, 36, 0.06);
  --shadow-md: 0 8px 28px rgba(26, 31, 36, 0.10);

  --f-display: "Archivo Black", "Archivo", "Helvetica Neue", Arial, sans-serif;
  --f-sans: "Inter", "Helvetica Neue", Arial, sans-serif;

  --container: 1240px;
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 18px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: var(--f-sans);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--ink); text-decoration: none; }
a:hover { color: var(--orange); }

.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* TYPE SCALE */
.display, h1, h2, h3 {
  font-family: var(--f-display);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--ink);
  text-transform: uppercase;
}

h1.display, .h1 { font-size: clamp(40px, 7vw, 88px); }
h2.display, .h2 { font-size: clamp(32px, 5vw, 60px); }
h3 { font-size: clamp(22px, 2.4vw, 30px); }

p { line-height: 1.55; font-size: 17px; color: var(--slate-dark); margin: 0; }

.eyebrow {
  font-family: var(--f-sans);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 24px;
  max-width: var(--container);
  margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 40px; width: auto; }
.brand-name {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 18px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ink);
}
.nav-links { display: flex; gap: 28px; }
.nav-links a {
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: var(--slate-dark);
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
  color: var(--ink);
  border: 2px solid var(--ink);
  padding: 10px 16px;
  border-radius: var(--r-sm);
  transition: 120ms ease;
}
.nav-cta:hover { background: var(--ink); color: var(--paper); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}
.nav-mobile {
  display: none;
  background: var(--paper);
  border-top: 1px solid var(--line);
  padding: 8px 24px 16px;
  flex-direction: column;
}
.nav-mobile.is-open { display: flex; }
.nav-mobile a {
  font-weight: 600;
  font-size: 16px;
  color: var(--slate-dark);
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  display: block;
}
.nav-mobile a:last-child { border-bottom: none; }

@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}
@media (max-width: 480px) {
  .brand-locale { display: none; }
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--f-sans);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.01em;
  padding: 16px 26px;
  border-radius: var(--r-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: 150ms ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange);
  color: var(--paper);
  border-color: var(--orange);
}
.btn-primary:hover { background: var(--orange-dark); border-color: var(--orange-dark); color: var(--paper); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--paper); }
.btn-ink {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.btn-ink:hover { background: var(--orange); border-color: var(--orange); color: var(--paper); }

/* HERO */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  border-bottom: 1px solid rgba(234, 139, 42, 0.18);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 72px 24px 88px;
  max-width: var(--container);
  margin: 0 auto;
}
.hero-copy h1 { color: var(--paper); }
.hero-copy .h2 { color: var(--paper); }
.hero-copy h1 .accent { color: var(--slate); }
.hero-copy > p {
  color: rgba(250, 246, 241, 0.78);
  margin-top: 22px;
  font-size: 19px;
  max-width: 540px;
}
.hero .eyebrow { color: var(--orange-light); }
.hero-cta {
  margin-top: 32px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero .btn-ghost {
  color: var(--paper);
  border-color: rgba(250, 246, 241, 0.45);
}
.hero .btn-ghost:hover {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}
.hero-photo {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--slate);
  box-shadow: 0 0 0 1px rgba(54, 79, 50, 0.35), 0 24px 64px rgba(0, 0, 0, 0.45);
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(26,31,36,0.5) 100%);
}
.hero-tag {
  position: absolute;
  bottom: 22px;
  left: 22px;
  z-index: 2;
  background: var(--orange);
  color: var(--paper);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: var(--r-sm);
}

@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 36px; padding: 48px 24px 56px; }
  .hero-photo { aspect-ratio: 4 / 3; max-height: 480px; }
}

/* TRUST STRIP */
.trust {
  background: var(--ink);
  color: var(--paper);
  padding: 36px 0;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 120px rgba(234, 139, 42, 0.06);
}
.trust::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
  pointer-events: none;
  z-index: 0;
}
.trust .wrap { position: relative; z-index: 1; }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  align-items: center;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 8px 28px;
  border-right: 1px solid rgba(234, 139, 42, 0.25);
  text-align: center;
}
.trust-item:last-child { border-right: none; }
.trust-icon {
  width: 16px;
  height: 16px;
  color: rgba(250, 246, 241, 0.5);
  margin-bottom: 2px;
  flex-shrink: 0;
}
.trust-num {
  font-family: var(--f-display);
  font-size: clamp(32px, 3.2vw, 44px);
  line-height: 1;
  color: var(--slate);
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.trust-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250, 246, 241, 0.78);
}
@media (max-width: 720px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item { padding: 14px 16px; }
  .trust-item:nth-child(2n) { border-right: none; }
  .trust-item:nth-child(1),
  .trust-item:nth-child(2) { border-bottom: 1px solid rgba(234, 139, 42, 0.25); }
  .trust-item:last-child { border-right: none; }
}
/* LP trust strip: always vertical single-column */
.lp-trust .trust-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
.lp-trust .trust-item { border-right: none; border-bottom: 1px solid rgba(245,197,24,0.25); padding: 20px 24px; }
.lp-trust .trust-item:last-child { border-bottom: none; }

/* SECTION SCAFFOLD */
section { padding: 88px 0; }
.section-head { max-width: 720px; margin-bottom: 48px; }
.section-head p { margin-top: 16px; font-size: 18px; }

/* PROGRAMS TRIO */
.programs { background: var(--paper); }
.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.program-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: 180ms ease;
}
.program-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(26, 31, 36, 0.18);
  border-color: var(--orange);
}
.program-photo {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--slate);
}
.program-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.program-body { padding: 24px 24px 28px; flex: 1; display: flex; flex-direction: column; }
.program-tag {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 700;
  margin-bottom: 8px;
}
.program-name { font-size: 24px; margin-bottom: 10px; }
.program-desc { font-size: 15px; flex: 1; }
.program-link {
  margin-top: 18px;
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.program-link::after { content: "→"; color: var(--orange); }

@media (max-width: 900px) {
  .programs-grid { grid-template-columns: 1fr; }
}

/* BENTO OUTCOMES */
.bento { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.bento-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 18px;
}
.bento-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
}
.bento-card.feature {
  grid-column: span 1;
  grid-row: span 2;
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.bento-card.feature p { color: rgba(250, 246, 241, 0.78); }
.bento-card.feature .bento-num { color: var(--slate); }
.bento-card.accent {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--paper);
}
.bento-card.accent .bento-num { color: var(--paper); }
.bento-card.accent .bento-title { color: var(--paper); }
.bento-card.accent p { color: var(--paper); }
.bento-num {
  font-family: var(--f-display);
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 18px;
}
.bento-title {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.bento-card p { font-size: 15px; }
@media (max-width: 900px) {
  .bento-grid { grid-template-columns: 1fr; }
  .bento-card.feature { grid-column: auto; grid-row: auto; }
}

/* BEHAVIOR MOD CALLOUT */
.behavior {
  background: var(--ink);
  color: var(--paper);
}
.behavior-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: center;
}
.behavior h2 { color: var(--paper); }
.behavior .eyebrow { color: var(--orange-light); }
.behavior p { color: rgba(250, 246, 241, 0.85); margin-top: 18px; font-size: 18px; }
.behavior ul {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
}
.behavior li {
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
}
.behavior li::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--slate);
  border-radius: 50%;
}
.behavior-cta { margin-top: 28px; }
.behavior-img {
  aspect-ratio: 4 / 5;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--ink);
}
.behavior-img img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 880px) {
  .behavior-grid { grid-template-columns: 1fr; gap: 32px; }
  .behavior ul { grid-template-columns: 1fr; }
}

/* ACTION PHOTO WALL */
.wall { background: var(--paper); }
.wall-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 12px;
}
.wall-tile {
  overflow: hidden;
  border-radius: var(--r-md);
  background: var(--slate);
  position: relative;
}
.wall-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(26,31,36,0.55) 100%);
  transition: opacity 300ms ease;
  pointer-events: none;
}
.wall-tile:hover::after { opacity: 0.4; }
.wall-tile img { width: 100%; height: 100%; object-fit: cover; transition: 350ms cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.wall-tile:hover img { transform: scale(1.06); }
.wall-tile.big { grid-row: span 2; }
@media (max-width: 900px) {
  .wall-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 180px 180px 180px; }
  .wall-tile.big { grid-column: span 2; grid-row: span 1; }
}

/* TRUST STACK */
.signals { background: var(--ink); color: var(--paper); }
.signals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Rating badge */
.review-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 48px;
}
.review-badge-top {
  display: flex;
  align-items: center;
  gap: 14px;
}
.review-badge-score {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 64px;
  color: inherit;
  line-height: 1;
  letter-spacing: -0.02em;
}
.review-badge-stars { display: flex; gap: 5px; }
.review-badge-label {
  font-size: 14px;
  color: inherit;
  opacity: 0.65;
  letter-spacing: 0.02em;
}

/* Review cards */
.review-card {
  background: var(--paper);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.review-stars { display: flex; gap: 3px; }
.review-quote {
  font-size: 16px;
  line-height: 1.55;
  color: var(--slate-dark);
  flex: 1;
}
.review-meta { display: flex; flex-direction: column; gap: 3px; margin-top: auto; }
.review-name { font-size: 15px; font-weight: 700; color: var(--ink); }
.review-chip { font-size: 12px; color: var(--slate-dark); opacity: 0.6; }

/* "Read all reviews" CTA */
.btn-review-all {
  display: inline-block;
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  border: 2px solid var(--ink);
  padding: 12px 28px;
  border-radius: var(--r-sm);
  transition: 120ms ease;
  letter-spacing: 0.01em;
}
.btn-review-all:hover { background: var(--ink); color: var(--paper); }

/* Hide badge logo -- pending plain wordmark asset from client */
.brand img { display: none; }
.foot-brand > img { display: none; }

@media (max-width: 900px) {
  .signals-grid { grid-template-columns: 1fr; }
}

/* SERVICE AREA */
.area { background: var(--paper); }
.area-inner {
  border: none;
  border-left: 4px solid var(--orange);
  border-radius: 0 var(--r-lg) var(--r-lg) 0;
  padding: 40px;
  background: #fff;
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: center;
}
.area-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.area-city {
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(54, 79, 50, 0.06);
  border: 1px solid var(--orange-light);
  color: var(--slate-dark);
}
.area-map {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
}
@media (max-width: 800px) {
  .area-inner { grid-template-columns: 1fr; padding: 28px; }
  .area-map { display: none; }
}

/* TRAINERS */
.trainers { background: #fff; border-top: 1px solid var(--line); }
.trainers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.trainer-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.trainer-photo {
  aspect-ratio: 1 / 1;
  background: linear-gradient(155deg, #1f3a1f 0%, var(--ink) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  font-size: 0;
  position: relative;
}
.trainer-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 30%, rgba(54,79,50,0.35) 0%, transparent 70%);
}
.trainer-photo::after {
  content: "Photo coming soon";
  position: absolute;
  bottom: 16px;
  font-size: 10px;
  font-family: var(--f-sans);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(250,246,241,0.55);
  background: rgba(26,31,36,0.5);
  padding: 5px 12px;
  border-radius: 4px;
  border: 1px solid rgba(250,246,241,0.1);
}
.trainer-photo picture {
  display: contents;
}
.trainer-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  position: relative;
  z-index: 1;
}
.trainer-photo:has(img)::before,
.trainer-photo:has(img)::after { display: none; }
.trainer-team-shot {
  width: 100%;
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 32px;
}
.trainer-team-shot img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.trainer-body { padding: 24px 24px 28px; }
.trainer-role {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 6px;
}
.trainer-name { font-size: 28px; margin-bottom: 12px; }
.trainer-bio { font-size: 15px; color: var(--slate-dark); font-style: italic; }
@media (max-width: 760px) {
  .trainers-grid { grid-template-columns: 1fr; }
}

/* FAQ */
.faq { background: var(--paper); }
.faq-list {
  max-width: 860px;
  margin: 0 auto;
  border-top: 1px solid var(--line-strong);
}
.faq-item {
  border-bottom: 1px solid var(--line-strong);
}
.faq-item summary {
  padding: 22px 8px;
  font-family: var(--f-display);
  font-size: clamp(18px, 2vw, 22px);
  text-transform: uppercase;
  letter-spacing: -0.005em;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  list-style: none;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background: rgba(26, 31, 36, 0.025); border-radius: var(--r-sm); }
.faq-item summary::after {
  content: "+";
  font-family: var(--f-sans);
  font-weight: 400;
  font-size: 28px;
  color: var(--slate);
  transition: 200ms ease;
  line-height: 1;
  flex-shrink: 0;
}
.faq-item[open] { border-left: 3px solid var(--slate); padding-left: 12px; margin-left: -12px; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  padding: 0 8px 24px;
  font-size: 16px;
  max-width: 720px;
}

/* FORM */
.contact { background: var(--ink); color: var(--paper); }
.contact h2 { color: var(--paper); }
.contact .eyebrow { color: var(--orange-light); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.contact p { color: rgba(250, 246, 241, 0.82); font-size: 17px; margin-top: 16px; }
.contact-meta {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.contact-meta-block { }
.contact-meta-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250, 246, 241, 0.55);
  margin-bottom: 6px;
}
.contact-meta-value {
  font-family: var(--f-display);
  font-size: 22px;
  color: var(--paper);
  letter-spacing: -0.005em;
}
.contact-meta-value a { color: var(--paper); }
.contact-meta-value a:hover { color: var(--orange); }

.form {
  background: var(--paper);
  color: var(--ink);
  border-radius: var(--r-lg);
  padding: 32px;
}
.form h3 { font-size: 22px; margin-bottom: 6px; }
.form-sub { color: var(--slate); font-size: 14px; margin-bottom: 22px; }
.field { margin-bottom: 14px; }
.field input, .field select, .field textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.97);
  border: 1.5px solid rgba(26, 31, 36, 0.2);
  border-radius: var(--r-md);
  padding: 15px 18px;
  font-family: var(--f-sans);
  font-size: 15px;
  color: var(--ink);
  transition: border-color 150ms ease, box-shadow 150ms ease;
  appearance: none;
  -webkit-appearance: none;
}
.field input::placeholder, .field textarea::placeholder {
  color: rgba(26, 31, 36, 0.38);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--slate);
  box-shadow: 0 0 0 3px rgba(234, 139, 42, 0.18);
}
.form .btn { width: 100%; margin-top: 6px; }
.form-note { font-size: 12px; color: var(--slate); margin-top: 14px; text-align: center; }
@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* FOOTER */
footer { background: var(--ink); color: var(--paper); border-top: 1px solid rgba(255,255,255,0.08); padding: 56px 0 28px; }
.foot {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 40px;
}
.foot-brand img { height: 56px; width: auto; margin-bottom: 18px; }
.foot-brand p { color: rgba(250, 246, 241, 0.7); font-size: 14.5px; max-width: 360px; }
.foot-col h5 {
  font-family: var(--f-display);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slate);
  margin: 0 0 14px;
}
.foot-col ul { list-style: none; padding: 0; margin: 0; }
.foot-col li { margin-bottom: 8px; }
.foot-col a, .foot-col li {
  color: rgba(250, 246, 241, 0.78);
  font-size: 14.5px;
}
.foot-col a:hover { color: var(--slate); }
.foot-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 13px;
  color: rgba(250, 246, 241, 0.55);
}
@media (max-width: 800px) {
  .foot { grid-template-columns: 1fr; }
}

/* STICKY MOBILE CTA */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 14px;
  left: 14px;
  right: 14px;
  z-index: 200;
  background: var(--orange);
  color: var(--paper);
  border-radius: var(--r-sm);
  box-shadow: var(--shadow-md);
  padding: 12px 16px;
  font-family: var(--f-sans);
  font-weight: 800;
  font-size: 16px;
  text-align: center;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
@media (max-width: 720px) {
  .sticky-cta { display: flex; }
  section { padding: 64px 0; }
  body { padding-bottom: 70px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

/* ============================================================
   PHASE 1B: INTERIOR PAGES
   ============================================================ */

/* Active nav indicator */
.nav-links a.is-active {
  color: var(--ink);
  position: relative;
}
.nav-links a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -18px;
  height: 3px;
  background: var(--orange);
}

/* PAGE HERO (interior pages, shorter than homepage) */
.page-hero {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  padding: 56px 0 64px;
}
.page-hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}
.page-hero-copy h1 {
  font-size: clamp(34px, 5.5vw, 64px);
}
.page-hero-copy p.lede {
  margin-top: 18px;
  font-size: 18px;
  max-width: 540px;
  color: var(--slate-dark);
}
.page-hero-photo {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--slate);
  box-shadow: var(--shadow-md);
}
.page-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero-cta {
  margin-top: 28px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
@media (max-width: 880px) {
  .page-hero-inner { grid-template-columns: 1fr; gap: 28px; }
  .page-hero { padding: 40px 0 48px; }
}

/* Crumbs */
.crumbs {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 18px;
}
.crumbs a { color: var(--slate); font-weight: 600; }
.crumbs a:hover { color: var(--orange); }
.crumbs span { color: var(--ink); font-weight: 700; }

/* OUTCOMES (program pages) */
.outcomes { background: #fff; }
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.outcome-tile {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.outcome-tile .outcome-num {
  font-family: var(--f-display);
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--orange);
}
.outcome-tile h3 {
  font-family: var(--f-display);
  font-size: 18px;
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: -0.005em;
}
.outcome-tile p { font-size: 14.5px; }
@media (max-width: 980px) {
  .outcomes-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .outcomes-grid { grid-template-columns: 1fr; }
}

/* HOW IT WORKS (3 steps) */
.how { background: var(--paper); }
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  counter-reset: step;
}
.how-step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 30px 28px 32px;
  position: relative;
}
.how-step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--f-display);
  font-size: 48px;
  line-height: 1;
  color: var(--orange);
  display: block;
  margin-bottom: 16px;
}
.how-step h3 {
  font-family: var(--f-display);
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  margin-bottom: 10px;
}
.how-step p { font-size: 15px; }
@media (max-width: 880px) {
  .how-grid { grid-template-columns: 1fr; }
}

/* PHOTO BLOCK (single feature shot) */
.photo-block { background: #fff; padding: 0; }
.photo-block .wrap {
  padding-top: 0;
  padding-bottom: 0;
}
.photo-block .feature-photo {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 16 / 7;
  background: var(--slate);
}
.photo-block .feature-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* TRAINER STUB (single card on subpages) */
.trainer-stub { background: var(--paper); border-top: 1px solid var(--line); }
.trainer-stub-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 36px;
  align-items: center;
  max-width: 920px;
  margin: 0 auto;
}
.trainer-stub-photo {
  aspect-ratio: 1 / 1;
  background: var(--slate);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--paper);
  font-family: var(--f-display);
  font-size: 72px;
  position: relative;
}
.trainer-stub-photo::after {
  content: "Photo pending";
  position: absolute;
  bottom: 14px;
  font-size: 10px;
  font-family: var(--f-sans);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  background: rgba(0, 0, 0, 0.35);
  padding: 4px 10px;
  border-radius: 4px;
}
@media (max-width: 720px) {
  .trainer-stub-grid { grid-template-columns: 1fr; }
  .trainer-stub-photo { max-width: 240px; margin: 0 auto; }
}

/* FINAL CTA STRIP */
.final-cta {
  background: var(--orange);
  color: var(--paper);
  padding: 64px 0;
  text-align: center;
}
.final-cta h2 {
  font-size: clamp(28px, 4vw, 48px);
  color: var(--paper);
  margin-bottom: 18px;
}
.final-cta p {
  color: rgba(250, 246, 241, 0.78);
  font-size: 17px;
  max-width: 560px;
  margin: 0 auto 26px;
}
.final-cta .btn-ink { background: var(--ink); border-color: var(--ink); color: var(--paper); }
.final-cta .btn-ink:hover { background: #000; color: var(--orange); border-color: #000; }

/* RATES TABLE */
.rates-table {
  max-width: 920px;
  margin: 0 auto;
}
.rate-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: baseline;
  padding: 22px 0;
  border-bottom: 1px solid var(--line-strong);
}
.rate-row:first-child { border-top: 1px solid var(--line-strong); }
.rate-name {
  font-family: var(--f-display);
  font-size: clamp(20px, 2.4vw, 28px);
  text-transform: uppercase;
  letter-spacing: -0.005em;
  color: var(--ink);
}
.rate-desc {
  font-size: 14.5px;
  color: var(--slate-dark);
  margin-top: 6px;
  font-family: var(--f-sans);
  font-weight: 400;
  text-transform: none;
  letter-spacing: normal;
}
.rate-price {
  font-family: var(--f-display);
  font-size: clamp(22px, 2.6vw, 30px);
  color: var(--orange);
  white-space: nowrap;
}
.rates-note {
  margin-top: 36px;
  padding: 24px 28px;
  background: var(--paper);
  border-left: 4px solid var(--orange);
  border-radius: var(--r-sm);
  font-size: 14.5px;
  color: var(--slate-dark);
}

/* PROGRAMS INDEX (6-card grid) */
.programs-index {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 980px) {
  .programs-index { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .programs-index { grid-template-columns: 1fr; }
}

/* PROSE (privacy etc.) */
.prose {
  max-width: 760px;
  margin: 0 auto;
}
.prose h2 {
  font-family: var(--f-display);
  font-size: clamp(22px, 2.6vw, 30px);
  text-transform: uppercase;
  letter-spacing: -0.005em;
  margin: 40px 0 14px;
}
.prose h3 {
  font-family: var(--f-sans);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink);
  margin: 24px 0 8px;
}
.prose p {
  font-size: 16px;
  margin: 0 0 14px;
  line-height: 1.65;
}
.prose ul, .prose ol {
  font-size: 16px;
  line-height: 1.65;
  color: var(--slate-dark);
  padding-left: 22px;
  margin: 0 0 14px;
}
.prose li { margin-bottom: 6px; }
.prose strong { color: var(--ink); }

/* MAP PLACEHOLDER */
.map-stub {
  aspect-ratio: 16 / 9;
  border-radius: var(--r-lg);
  background:
    repeating-linear-gradient(45deg, var(--slate-light) 0 12px, var(--slate) 12px 24px);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--paper);
  font-family: var(--f-display);
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.map-stub::after {
  content: attr(data-stub);
  background: rgba(26, 31, 36, 0.7);
  padding: 8px 16px;
  border-radius: var(--r-sm);
}

/* FINANCING CTA card */
.fin-card {
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 40px;
  text-align: center;
}
.fin-card h2 {
  font-size: clamp(24px, 3vw, 36px);
  margin-bottom: 14px;
}
.fin-card p { font-size: 16px; margin-bottom: 24px; }
.fin-list {
  text-align: left;
  max-width: 460px;
  margin: 0 auto 28px;
  padding-left: 22px;
  font-size: 15px;
  color: var(--slate-dark);
  line-height: 1.7;
}

/* PROGRAM FAQ container reuse -- already styled */

/* ============================================================
   LP STYLES
   ============================================================ */

/* LP NAV -- brand mark only, non-clickable */
.lp-nav {
  background: rgba(26,31,36,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0 24px;
  height: 60px;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(250,246,241,0.07);
}
.lp-nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  pointer-events: none;
  user-select: none;
}
.lp-nav-name {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 17px;
  color: var(--paper);
  letter-spacing: -0.01em;
}
.lp-nav-locale {
  font-family: var(--f-sans);
  font-weight: 600;
  font-size: 13px;
  opacity: 0.55;
  margin-left: 3px;
}

/* LP HERO -- full-bleed photo + gradient scrim */
.lp-hero {
  position: relative;
  min-height: clamp(560px, 72vh, 800px);
  display: flex;
  align-items: center;
  background: var(--ink) url('/assets/img/lp-dt-hero-1200.webp') center / cover no-repeat;
  overflow: hidden;
}
.lp-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(26,31,36,0.92) 0%, rgba(26,31,36,0.74) 52%, rgba(26,31,36,0.46) 100%);
  z-index: 0;
}
.lp-hero-inner {
  position: relative; z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(52px, 6vw, 80px) 24px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: start;
  width: 100%;
  box-sizing: border-box;
}
.lp-hero-copy h1 {
  color: var(--paper);
  font-size: clamp(28px, 4.8vw, 62px);
  line-height: 1.05;
}
.lp-hero-copy .lp-sub {
  font-size: clamp(17px, 2vw, 22px);
  color: rgba(250,246,241,0.82);
  margin: 18px 0 28px;
  line-height: 1.5;
}
.lp-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin: 0;
  padding: 0;
}
.lp-benefits li {
  font-size: 16px;
  color: rgba(250,246,241,0.85);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.45;
}
.lp-benefits li::before {
  content: '';
  display: block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--slate);
  flex-shrink: 0;
  margin-top: 6px;
}

/* FORM CARD -- glass on dark hero */
.lp-form-box {
  background: rgba(26,31,36,0.80);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(250,246,241,0.12);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.40);
}
.lp-form-box h2 {
  font-family: var(--f-display);
  font-size: 20px;
  font-weight: 900;
  color: var(--paper);
  margin-bottom: 4px;
}
.lp-form-sub {
  font-size: 13px;
  color: rgba(250,246,241,0.50);
  margin-bottom: 20px;
}

/* Floating-label inputs inside LP dark glass form */
.lp-form .field {
  position: relative;
  margin-bottom: 12px;
}
.lp-form .field input {
  background: rgba(250,246,241,0.09);
  border: 1.5px solid rgba(250,246,241,0.20);
  color: var(--paper);
  border-radius: var(--r-md);
  width: 100%;
  padding: 24px 16px 8px;
  font-family: var(--f-sans);
  font-size: 15px;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 150ms ease, box-shadow 150ms ease, background 150ms ease;
  box-sizing: border-box;
}
.lp-form .field input::placeholder { color: transparent; }
.lp-form .field label {
  position: absolute;
  left: 16px; top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  color: rgba(250,246,241,0.46);
  transition: all 140ms ease;
  pointer-events: none;
  white-space: nowrap;
}
.lp-form .field input:focus ~ label,
.lp-form .field input:not(:placeholder-shown) ~ label {
  top: 11px;
  transform: translateY(0);
  font-size: 10px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--slate);
}
.lp-form .field input:focus {
  outline: none;
  border-color: var(--slate);
  box-shadow: 0 0 0 3px rgba(245,197,24,0.22);
  background: rgba(250,246,241,0.14);
}

/* LP SUBMIT BUTTON -- orange gradient + shimmer */
.lp-form .btn-lp {
  width: 100%;
  background: linear-gradient(135deg, #F5C518 0%, #d9a90f 100%);
  color: #1f3a1f;
  border: none;
  border-radius: var(--r-sm);
  padding: 17px 24px;
  font-family: var(--f-sans);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.01em;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  margin-top: 8px;
  transition: transform 120ms ease, box-shadow 120ms ease;
}
.lp-form .btn-lp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(245,197,24,0.50);
}
.lp-form .btn-lp::after {
  content: '';
  position: absolute;
  top: 0; left: -110%;
  width: 55%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.20), transparent);
  transition: left 480ms ease;
}
.lp-form .btn-lp:hover::after { left: 155%; }

/* PHONE CTA below form */
.lp-phone-cta {
  text-align: center;
  margin-top: 14px;
  font-size: 13px;
  color: rgba(250,246,241,0.48);
}
.lp-phone-cta a {
  color: var(--slate);
  font-weight: 700;
  text-decoration: none;
}
.lp-phone-cta a:hover { text-decoration: underline; }

/* LP TRUST STRIP -- compact 1 row */
.lp-trust-strip {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  padding: 11px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: nowrap;
  overflow-x: auto;
}
.lp-ts-item {
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  font-size: 14px;
  color: var(--slate-dark);
}
.lp-ts-score {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 17px;
  color: var(--slate);
}
.lp-ts-sep {
  color: rgba(26,31,36,0.22);
  font-size: 16px;
  flex-shrink: 0;
}

/* WHAT HAPPENS NEXT */
.lp-steps {
  background: #f0ebe3;
  padding: clamp(48px, 5vw, 72px) 0;
}
.lp-steps-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.lp-steps-eyebrow {
  font-family: var(--f-sans);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 6px;
}
.lp-steps-title {
  font-family: var(--f-display);
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 900;
  color: var(--ink);
  margin-bottom: 36px;
}
.lp-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.lp-step {
  background: var(--paper);
  border-radius: var(--r-md);
  padding: 28px 22px 24px;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--slate);
}
.lp-step-num {
  font-family: var(--f-display);
  font-size: 38px;
  font-weight: 900;
  color: var(--slate);
  opacity: 0.22;
  line-height: 1;
  margin-bottom: 12px;
}
.lp-step-title {
  font-family: var(--f-display);
  font-size: 15px;
  font-weight: 900;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.lp-step-body {
  font-size: 14px;
  color: var(--slate-dark);
  line-height: 1.55;
}

/* LP TESTIMONIALS */
.lp-testimonials {
  background: var(--ink);
  padding: clamp(52px, 6vw, 80px) 0;
}
.lp-testimonials-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.lp-testimonials-eyebrow {
  font-family: var(--f-sans);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 6px;
}
.lp-testimonials-title {
  font-family: var(--f-display);
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 900;
  color: var(--paper);
  margin-bottom: 36px;
}
.lp-tgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.lp-tcard {
  background: rgba(250,246,241,0.05);
  border: 1px solid rgba(250,246,241,0.10);
  border-radius: var(--r-md);
  padding: 28px 24px 24px;
}
.lp-tcard-quote-glyph {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 56px;
  line-height: 0.75;
  color: var(--slate);
  opacity: 0.38;
  margin-bottom: 14px;
  display: block;
}
.lp-tcard-body {
  font-size: 15px;
  color: rgba(250,246,241,0.80);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 20px;
}
.lp-tcard-accent {
  width: 28px; height: 3px;
  background: var(--slate);
  border-radius: 2px;
  margin-bottom: 10px;
}
.lp-tcard-name {
  font-weight: 700;
  font-size: 14px;
  color: var(--paper);
}
.lp-tcard-source {
  font-size: 12px;
  color: rgba(250,246,241,0.38);
  margin-top: 2px;
}

/* LP FOOTER */
.lp-footer {
  background: var(--ink);
  color: var(--paper);
  padding: 22px 24px;
  text-align: center;
  font-size: 13px;
  border-top: 1px solid rgba(250,246,241,0.08);
}
.lp-footer a { color: rgba(250,246,241,0.52); }

/* MOBILE STICKY PHONE BUTTON */
.lp-mobile-phone { display: none; }

@media (max-width: 820px) {
  .lp-hero { min-height: auto; }
  .lp-hero-inner { grid-template-columns: 1fr; gap: 24px; }
  .lp-form-box { padding: 24px 20px; }
  .lp-trust-strip { gap: 12px; flex-wrap: wrap; }
  .lp-steps-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-tgrid { grid-template-columns: 1fr; }
  .lp-mobile-phone {
    display: flex;
    position: fixed; bottom: 20px; right: 16px; z-index: 200;
    background: linear-gradient(135deg, #F5C518 0%, #d9a90f 100%);
    color: #1f3a1f;
    border-radius: 50px;
    padding: 13px 18px;
    font-family: var(--f-sans);
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(245,197,24,0.50);
    align-items: center;
    gap: 8px;
  }
}
@media (max-width: 520px) {
  .lp-steps-grid { grid-template-columns: 1fr; }
}

/* LP SERVICE AREA */
.lp-area {
  background: var(--paper);
  padding: clamp(48px, 5vw, 64px) 0;
}
.lp-area-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.lp-area-eyebrow {
  font-family: var(--f-sans);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 6px;
}
.lp-area-title {
  font-family: var(--f-display);
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 900;
  color: var(--ink);
  margin-bottom: 14px;
}
.lp-area-body {
  color: var(--slate-dark);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 0;
}
.lp-area-cities {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
  padding: 0;
}
.lp-area-cities li {
  background: rgba(54,79,50,0.06);
  border: 1px solid rgba(54,79,50,0.18);
  color: var(--slate-dark);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 13px;
  font-weight: 500;
}
.lp-area-map {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/3;
}
.lp-area-map iframe {
  width: 100%; height: 100%;
  display: block; border: 0;
}

/* LP BOTTOM CTA */
.lp-bottom-cta {
  background: var(--ink);
  padding: clamp(52px, 6vw, 80px) 0;
  text-align: center;
}
.lp-bottom-cta-inner {
  max-width: 620px;
  margin: 0 auto;
  padding: 0 24px;
}
.lp-bottom-cta h2 {
  font-family: var(--f-display);
  font-size: clamp(28px, 3.8vw, 50px);
  font-weight: 900;
  color: var(--paper);
  margin-bottom: 14px;
}
.lp-bottom-cta > .lp-bottom-cta-inner > p {
  font-size: 17px;
  color: rgba(250,246,241,0.68);
  margin-bottom: 32px;
}
.btn-lp-anchor {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #F5C518 0%, #d9a90f 100%);
  color: #1f3a1f;
  font-family: var(--f-sans);
  font-weight: 700;
  font-size: 17px;
  padding: 18px 32px;
  border-radius: var(--r-sm);
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(245,197,24,0.40);
  transition: transform 120ms ease, box-shadow 120ms ease;
}
.btn-lp-anchor:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(245,197,24,0.58);
}

/* LP REVIEWS GRID */
.lp-reviews {
  background: #0f1316;
  padding: clamp(56px, 7vw, 96px) 24px;
}
.lp-reviews-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.lp-reviews-eyebrow {
  font-family: var(--f-sans);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--slate);
  margin-bottom: 12px;
}
.lp-reviews-title {
  font-family: var(--f-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  color: var(--paper);
  margin-bottom: 44px;
}
.lp-reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.lp-rcard {
  background: rgba(250,246,241,0.04);
  border: 1px solid rgba(250,246,241,0.09);
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
}
.lp-rcard-stars {
  color: #fbbc04;
  font-size: 15px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.lp-rcard-body {
  font-size: 15px;
  color: rgba(250,246,241,0.80);
  line-height: 1.72;
  margin-bottom: 8px;
  flex: 1;
}
.lp-rcard-expand {
  background: none;
  border: none;
  color: var(--slate);
  font-family: var(--f-sans);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  margin-bottom: 16px;
  text-decoration: underline;
  text-align: left;
}
.lp-rcard-accent {
  width: 36px;
  height: 3px;
  background: var(--slate);
  border-radius: 2px;
  margin-bottom: 14px;
  margin-top: 8px;
}
.lp-rcard-name {
  font-family: var(--f-sans);
  font-weight: 700;
  font-size: 14px;
  color: var(--paper);
}
.lp-rcard-meta {
  font-family: var(--f-sans);
  font-size: 12px;
  color: rgba(250,246,241,0.42);
  margin-top: 5px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.lp-rcard-g {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* LP PAIN HOOK */
.lp-hook {
  font-size: 16px;
  color: rgba(250,246,241,0.68);
  line-height: 1.68;
  margin: 0 0 26px;
  max-width: 480px;
}

/* LP WHY BLOCK */
.lp-why {
  background: var(--ink);
  padding: clamp(52px, 6vw, 80px) 24px;
  border-top: 1px solid rgba(250,246,241,0.07);
}
.lp-why-inner {
  max-width: var(--container);
  margin: 0 auto;
}
.lp-why-eyebrow {
  font-family: var(--f-sans);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--slate);
  margin-bottom: 12px;
}
.lp-why-title {
  font-family: var(--f-display);
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 900;
  color: var(--paper);
  margin-bottom: 44px;
}
.lp-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.lp-why-card {
  background: rgba(250,246,241,0.04);
  border: 1px solid rgba(250,246,241,0.09);
  border-top: 3px solid var(--slate);
  border-radius: var(--r-lg);
  padding: 28px;
}
.lp-why-card-title {
  font-family: var(--f-sans);
  font-weight: 800;
  font-size: 16px;
  color: var(--paper);
  margin-bottom: 12px;
  line-height: 1.3;
}
.lp-why-card-body {
  font-size: 15px;
  color: rgba(250,246,241,0.70);
  line-height: 1.72;
  margin: 0;
}

@media (max-width: 820px) {
  .lp-area-inner { grid-template-columns: 1fr; }
  .lp-area-map { order: -1; }
  .lp-reviews-grid { grid-template-columns: 1fr; }
  .lp-why-grid { grid-template-columns: 1fr; }
}

/* ===== LP HERO BADGES (chips inside hero) ===== */
.lp-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 22px 0 30px;
}
.lp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(250,246,241,0.10);
  border: 1px solid rgba(250,246,241,0.20);
  border-radius: 50px;
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: rgba(250,246,241,0.90);
  white-space: nowrap;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.lp-form-sticky { position: sticky; top: 24px; }

/* ===== LP CRED STRIP ===== */
.lp-cred-strip {
  background: var(--ink);
  padding: clamp(44px, 5vw, 68px) 0;
}
.lp-cred-strip-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.lp-cred-photo {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.45);
}
.lp-cred-photo img { width: 100%; height: auto; display: block; }
.lp-cred-copy { color: var(--paper); }
.lp-cred-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 22px;
}
.lp-cred-lines {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.lp-cred-line {
  font-family: var(--f-display);
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 900;
  color: var(--paper);
  line-height: 1.25;
  padding-left: 20px;
  position: relative;
}
.lp-cred-line::before {
  content: '';
  position: absolute;
  left: 0; top: calc(50% - 3px);
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--orange);
}
@media (max-width: 820px) {
  .lp-cred-strip-inner { grid-template-columns: 1fr; gap: 32px; }
}

/* ===== LP WHY ROWS (alternating image + text) ===== */
.lp-why-rebuilt { background: var(--paper); overflow: hidden; }
.lp-why-rebuilt-head {
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(52px, 5.5vw, 72px) 24px 32px;
}
.lp-why-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
}
.lp-why-row-img {
  overflow: hidden;
  min-height: 380px;
}
.lp-why-row-img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
  transition: transform 500ms ease;
}
.lp-why-row-img:hover img { transform: scale(1.04); }
.lp-why-row-copy {
  padding: clamp(36px, 4.5vw, 64px) clamp(28px, 4.5vw, 60px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--paper);
}
.lp-why-row:not(.lp-why-row--alt) .lp-why-row-copy { background: #faf7f2; }
.lp-why-row-num {
  font-family: var(--f-display);
  font-size: 56px;
  font-weight: 900;
  color: var(--ink);
  opacity: 0.10;
  line-height: 1;
  margin-bottom: 10px;
}
.lp-why-row-title {
  font-family: var(--f-display);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 900;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 14px;
}
.lp-why-row-body {
  font-size: 15px;
  color: var(--slate-dark);
  line-height: 1.7;
  max-width: 480px;
}
@media (max-width: 820px) {
  .lp-why-row {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .lp-why-row-img { min-height: 240px; order: -1 !important; }
  .lp-why-row-copy { order: 0 !important; }
}

/* ===== LP STEPS WITH PHOTO THUMBNAILS ===== */
.lp-steps-3 .lp-steps-grid { grid-template-columns: repeat(3, 1fr); }
.lp-step:has(.lp-step-img) { overflow: hidden; border-top: none; }
.lp-step-img {
  display: block;
  width: calc(100% + 44px);
  margin: -28px -22px 20px;
  height: 160px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--r-md) var(--r-md) 0 0;
}
@media (max-width: 860px) {
  .lp-steps-3 .lp-steps-grid { grid-template-columns: 1fr; }
}


/* ===== KY-STYLE LP REDESIGN (v18) ===== */

/* Nav: make brand a link, add CTA */
.lp-nav { justify-content: space-between; }
.lp-nav-brand { pointer-events: auto; user-select: auto; text-decoration: none; color: inherit; }
.lp-nav-cta {
  font-size: 14px; font-weight: 700; color: var(--paper);
  text-decoration: none; padding: 7px 15px;
  border: 1.5px solid rgba(250,246,241,0.32); border-radius: var(--r-md);
  white-space: nowrap; transition: background 0.15s, border-color 0.15s;
}
.lp-nav-cta:hover { background: rgba(250,246,241,0.08); border-color: rgba(250,246,241,0.6); }

/* Location tag */
.lp-hero-location {
  display: inline-block; font-size: 13px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.14em; color: var(--ink);
  background: var(--slate); padding: 6px 16px;
  border-radius: 20px; margin-bottom: 20px;
}

/* Hero anchor CTA (mobile) */
.lp-hero-anchor {
  display: none; margin-top: 28px; align-items: center; gap: 10px;
  font-size: 15px; font-weight: 700; color: var(--paper); text-decoration: none;
  padding: 12px 22px; border: 1.5px solid rgba(250,246,241,0.32);
  border-radius: var(--r-md); transition: background 0.15s, border-color 0.15s;
}
.lp-hero-anchor:hover { background: rgba(250,246,241,0.08); border-color: rgba(250,246,241,0.6); }
@media (max-width: 720px) { .lp-hero-anchor { display: inline-flex; } }

/* Reviews: light bg, horizontal scroll, dark cards */
.lp-reviews-section { background: var(--paper); padding: 72px 24px; border-top: 1px solid var(--line); }
.lp-reviews-inner { max-width: 960px; margin: 0 auto; }
.lp-reviews-section .lp-reviews-eyebrow { color: var(--slate); }
.lp-reviews-section .lp-reviews-title { color: var(--ink); margin-bottom: 36px; }
.lp-reviews-section .lp-reviews-title em { color: var(--slate); font-style: normal; }
.lp-reviews-scroll { display: flex; gap: 16px; overflow-x: auto; padding-bottom: 4px; scrollbar-width: none; -ms-overflow-style: none; }
.lp-reviews-scroll::-webkit-scrollbar { display: none; }
.lp-review-card {
  flex: 0 0 300px; border-radius: var(--r-md); padding: 22px 20px;
  background: var(--ink); border: 1px solid rgba(26,31,36,0.15); border-top: 3px solid var(--slate);
}
.lp-review-stars { font-size: 13px; letter-spacing: 2px; color: #fbbc04; margin-bottom: 10px; }
.lp-review-text { font-size: 14px; color: rgba(250,246,241,0.82); line-height: 1.7; margin-bottom: 12px; }
.lp-review-name { font-size: 13px; font-weight: 700; color: rgba(250,246,241,0.55); }
.lp-reviews-cta { margin-top: 24px; font-size: 13px; color: rgba(26,31,36,0.48); }
.lp-reviews-cta a { color: var(--orange); text-decoration: underline; }

/* Pain points */
.lp-pain { background: var(--ink); padding: 80px 24px; }
.lp-pain-inner { max-width: 960px; margin: 0 auto; }
.lp-pain-eyebrow { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--slate); margin-bottom: 10px; }
.lp-pain-title { font-family: var(--f-display); font-size: clamp(24px, 3.6vw, 38px); color: var(--paper); line-height: 1.08; letter-spacing: -0.02em; margin-bottom: 48px; }
.lp-pain-title em { color: var(--slate); font-style: normal; }
.lp-pain-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(250,246,241,0.07); border-radius: var(--r-sm); overflow: hidden; }
.lp-pain-item { background: var(--ink); padding: 26px 20px; opacity: 0; transform: translateY(20px); transition: opacity 0.4s ease, transform 0.4s ease; }
.lp-pain-item.is-visible { opacity: 1; transform: none; }
.lp-pain-num { font-size: 10px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--slate); margin-bottom: 14px; }
.lp-pain-item h4 { font-size: 14px; font-weight: 700; color: var(--paper); margin-bottom: 8px; line-height: 1.35; }
.lp-pain-item p { font-size: 13px; color: rgba(250,246,241,0.72); line-height: 1.65; margin: 0; }
@media (max-width: 820px) { .lp-pain-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .lp-pain { padding: 56px 20px; } .lp-pain-grid { grid-template-columns: 1fr; } }

/* Team photo strip (between pain + trainers) */
.lp-team-strip { width: 100%; aspect-ratio: 21/7; overflow: hidden; }
.lp-team-strip img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; display: block; }
@media (max-width: 640px) { .lp-team-strip { aspect-ratio: 16/9; } }

/* Trainers section */
.lp-trainers-section { background: var(--orange); padding: 80px 24px; }
.lp-trainers-inner { max-width: 960px; margin: 0 auto; }
.lp-trainers-eyebrow { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(250,246,241,0.55); margin-bottom: 10px; }
.lp-trainers-title { font-family: var(--f-display); font-size: clamp(24px, 3.6vw, 38px); color: var(--paper); line-height: 1.08; letter-spacing: -0.02em; margin-bottom: 48px; }
.lp-trainers-title em { color: rgba(250,246,241,0.65); font-style: normal; }
.lp-trainers-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.lp-trainer-card { background: rgba(250,246,241,0.06); border: 1px solid rgba(250,246,241,0.12); border-radius: var(--r-md); padding: 32px 28px; }
.lp-trainer-photo { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; object-position: top; margin-bottom: 18px; display: block; border: 2px solid rgba(250,246,241,0.15); }
.lp-trainer-name { font-family: var(--f-display); font-size: 22px; letter-spacing: -0.01em; color: var(--paper); margin-bottom: 4px; }
.lp-trainer-role { font-size: 11px; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; color: rgba(250,246,241,0.5); margin-bottom: 16px; }
.lp-trainer-bio { font-size: 14px; color: rgba(250,246,241,0.72); line-height: 1.72; }
@media (max-width: 640px) { .lp-trainers-grid { grid-template-columns: 1fr; } .lp-trainers-section { padding: 56px 20px; } }

/* Steps: scroll-snap slider on mobile, 4-col grid on desktop */
.lp-steps-inner { max-width: var(--container); margin: 0 auto; padding: clamp(52px, 6vw, 80px) 24px; }
.lp-steps-eyebrow { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--slate); margin-bottom: 10px; }
.lp-steps-title { font-family: var(--f-display); font-size: clamp(26px, 3.4vw, 42px); font-weight: 900; color: var(--ink); margin-bottom: 40px; letter-spacing: -0.02em; }
.lp-steps-grid-v2 {
  display: flex; gap: 16px; overflow-x: auto;
  scroll-snap-type: x mandatory; scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch; scrollbar-width: none; padding-bottom: 16px;
}
.lp-steps-grid-v2::-webkit-scrollbar { display: none; }
.lp-steps-grid-v2 .lp-step {
  flex: 0 0 min(300px, 80vw); scroll-snap-align: start;
  background: var(--paper); border: 1px solid var(--line-strong);
  border-top: 3px solid var(--slate); border-radius: var(--r-md);
  padding: 28px 24px;
}
.lp-steps-grid-v2 .lp-step-num { font-size: 11px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--slate); margin-bottom: 16px; }
.lp-steps-grid-v2 .lp-step-title { font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 10px; }
.lp-steps-grid-v2 .lp-step-body { font-size: 14px; color: rgba(26,31,36,0.6); line-height: 1.65; margin: 0; }
.lp-steps-dots { display: flex; gap: 8px; justify-content: center; margin-top: 16px; }
.lp-steps-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--line-strong); cursor: pointer; border: none; padding: 0; }
@media (min-width: 820px) {
  .lp-steps-grid-v2 { display: grid; grid-template-columns: repeat(4,1fr); overflow: visible; padding-bottom: 0; }
  .lp-steps-grid-v2 .lp-step { flex: none; }
  .lp-steps-dots { display: none; }
}

/* Service area: dark bg + photo */
.lp-area-v2 { background: var(--ink); padding: clamp(48px, 5vw, 72px) 0; }
.lp-area-v2-inner { max-width: var(--container); margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.lp-area-v2 .lp-area-eyebrow { color: var(--slate); }
.lp-area-v2 .lp-area-title { color: var(--paper); }
.lp-area-v2 .lp-area-body { color: rgba(250,246,241,0.68); }
.lp-area-v2 .lp-area-cities li { background: rgba(250,246,241,0.06); border: 1px solid rgba(250,246,241,0.14); color: rgba(250,246,241,0.72); }
.lp-area-photo { border-radius: var(--r-lg); overflow: hidden; }
.lp-area-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 820px) { .lp-area-v2-inner { grid-template-columns: 1fr; } .lp-area-photo { order: -1; aspect-ratio: 16/7; } }

/* FAQ */
.lp-faq-section { background: var(--paper); padding: 80px 24px; border-top: 1px solid var(--line); }
.lp-faq-inner { max-width: 720px; margin: 0 auto; }
.lp-faq-eyebrow { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--slate); margin-bottom: 10px; }
.lp-faq-title { font-family: var(--f-display); font-size: clamp(24px, 3.6vw, 38px); color: var(--ink); line-height: 1.08; letter-spacing: -0.02em; margin-bottom: 40px; }
details.lp-faq-item { border-bottom: 1px solid var(--line-strong); }
details.lp-faq-item:first-of-type { border-top: 1px solid var(--line-strong); }
details.lp-faq-item summary { font-size: 16px; font-weight: 600; color: var(--ink); padding: 18px 0; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; user-select: none; }
details.lp-faq-item summary::-webkit-details-marker { display: none; }
details.lp-faq-item summary::after { content: '+'; font-size: 22px; font-weight: 300; color: var(--slate); flex-shrink: 0; line-height: 1; transition: transform 0.2s; }
details.lp-faq-item[open] summary::after { transform: rotate(45deg); }
.lp-faq-answer { font-size: 15px; color: rgba(26,31,36,0.68); line-height: 1.72; padding-bottom: 20px; }
@media (max-width: 480px) { .lp-faq-section { padding: 56px 20px; } details.lp-faq-item summary { font-size: 15px; padding: 16px 0; } }

/* Sticky book CTA bar */
.lp-sticky-book {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
  background: var(--ink); border-top: 1px solid rgba(245,197,24,0.25);
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 24px; font-size: 15px; font-weight: 700;
  color: var(--paper); text-decoration: none;
  opacity: 0; pointer-events: none; transition: background 0.15s, opacity 0.25s;
}
.lp-sticky-book.is-visible { opacity: 1; pointer-events: auto; }
.lp-sticky-book:hover { background: #232a31; color: var(--paper); }
.lp-sticky-book .lp-sb-cta {
  background: var(--slate); color: var(--paper); padding: 8px 20px;
  border-radius: var(--r-sm); font-size: 14px; font-weight: 700;
  display: flex; align-items: center; gap: 8px;
}
body.has-sticky-bar { padding-bottom: 56px; }
@media (max-width: 520px) {
  .lp-sticky-book { padding: 10px 14px; gap: 0; }
  .lp-sticky-book > span:first-child { display: none; }
  .lp-sticky-book .lp-sb-cta { flex: 1; justify-content: center; font-size: 15px; padding: 10px 18px; }
}

/* Reviews section photo */
.lp-reviews-photo { width: 100%; border-radius: 12px; overflow: hidden; margin-bottom: 32px; aspect-ratio: 16/7; }
.lp-reviews-photo img { width: 100%; height: 100%; object-fit: cover; display: block; object-position: center 40%; }
@media (max-width: 520px) { .lp-reviews-photo { aspect-ratio: 16/9; } }

/* Trainers: merged team photo at top */
.lp-trainers-team-photo { width: 100%; border-radius: 12px; overflow: hidden; margin-bottom: 40px; aspect-ratio: 16/7; }
.lp-trainers-team-photo img { width: 100%; height: 100%; object-fit: cover; display: block; object-position: center 30%; }
@media (max-width: 520px) { .lp-trainers-team-photo { aspect-ratio: 4/3; } }
.lp-trainers-bio { font-size: 17px; line-height: 1.72; color: rgba(250,246,241,0.75); max-width: 680px; margin-top: 20px; }

/* ============================================================
   v2 HERO JUICE -- utility ribbon, value bar, credential row,
   orchestrated hero entrance. Gold stays the 10% accent: solid
   gold fill is reserved for the CTA, everything else uses gold
   as rule/tint/numeral so the button keeps its emphasis.
   ============================================================ */

/* ===== UTILITY RIBBON ===== */
.lp-ribbon {
  background: var(--orange-dark);
  color: rgba(250,246,241,0.84);
  font-family: var(--f-sans);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.45;
  padding: 9px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  text-align: center;
  border-bottom: 1px solid rgba(245,197,24,0.22);
}
.lp-ribbon span { white-space: nowrap; }
.lp-ribbon .lp-ribbon-sep { color: rgba(245,197,24,0.55); font-weight: 400; }
@media (max-width: 520px) {
  .lp-ribbon { font-size: 11px; gap: 9px; padding: 8px 14px; letter-spacing: 0.01em; }
}

/* ===== HERO VALUE BAR ===== */
.lp-valuebar {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, rgba(245,197,24,0.15) 0%, rgba(245,197,24,0.05) 100%);
  border: 1px solid rgba(245,197,24,0.42);
  border-left: 4px solid var(--slate);
  border-radius: 4px;
  padding: 11px 18px 11px 15px;
  margin-bottom: 22px;
  max-width: 100%;
}
.lp-valuebar-star { color: var(--slate); flex: none; }
.lp-valuebar-txt {
  font-family: var(--f-sans);
  font-weight: 800;
  font-size: clamp(11.5px, 1.3vw, 13.5px);
  letter-spacing: 0.055em;
  text-transform: uppercase;
  color: var(--paper);
  line-height: 1.45;
  margin: 0;
}
.lp-valuebar-txt b { color: var(--slate); font-weight: 800; }
@media (max-width: 520px) {
  .lp-valuebar { padding: 10px 14px 10px 12px; gap: 10px; margin-bottom: 18px; }
  .lp-valuebar-star { display: none; }
}

/* ===== HERO CREDENTIAL ROW ===== */
.lp-creds {
  display: flex;
  align-items: stretch;
  margin: 26px 0 30px;
  border-top: 1px solid rgba(250,246,241,0.14);
  border-bottom: 1px solid rgba(250,246,241,0.14);
}
.lp-cred {
  padding: 14px 22px 14px 0;
  margin-right: 22px;
  border-right: 1px solid rgba(250,246,241,0.14);
}
.lp-cred:last-child { border-right: 0; margin-right: 0; padding-right: 0; }
.lp-cred-num {
  display: block;
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(19px, 2.5vw, 27px);
  color: var(--slate);
  line-height: 1;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.lp-cred-lbl {
  display: block;
  margin-top: 6px;
  font-family: var(--f-sans);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(250,246,241,0.62);
}
@media (max-width: 600px) {
  .lp-creds { margin: 22px 0 26px; }
  .lp-cred { padding: 12px 14px 12px 0; margin-right: 14px; }
  .lp-cred-lbl { font-size: 10px; letter-spacing: 0.035em; margin-top: 5px; }
}

/* ===== SIGNATURE HERO ENTRANCE ===== */
@keyframes lpRise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@keyframes lpCard { from { opacity: 0; transform: translateY(20px) scale(0.985); } to { opacity: 1; transform: none; } }
.lp-hero-copy > * { animation: lpRise 0.55s cubic-bezier(0.2,0.7,0.3,1) both; }
.lp-hero-copy > .lp-eyebrow-v3   { animation-delay: 0.04s; }
.lp-hero-copy > h1               { animation-delay: 0.11s; }
.lp-hero-copy > .lp-offer        { animation-delay: 0.19s; }
.lp-hero-copy > .lp-lede         { animation-delay: 0.27s; }
.lp-hero-copy > .lp-proof        { animation-delay: 0.35s; }
.lp-hero-copy > .lp-hero-actions { animation-delay: 0.43s; }
.lp-form-card { animation: lpCard 0.6s cubic-bezier(0.2,0.7,0.3,1) 0.16s both; }
@media (prefers-reduced-motion: reduce) {
  .lp-hero-copy > *, .lp-form-card { animation: none; }
}

/* v2 mobile refinements: ribbon breaks after item 1 (no orphaned pipe),
   credential columns share width evenly and never wrap the numeral. */
@media (max-width: 640px) {
  .lp-ribbon { gap: 2px 10px; }
  .lp-ribbon-a { flex-basis: 100%; }
  .lp-ribbon .lp-ribbon-sep:nth-of-type(2) { display: none; }
}
@media (max-width: 600px) {
  .lp-cred { flex: 1; min-width: 0; padding: 11px 9px 11px 0; margin-right: 9px; }
  .lp-cred-num { font-size: 17px; white-space: nowrap; }
  .lp-cred-lbl { font-size: 9.5px; letter-spacing: 0.03em; }
}

/* ============================================================
   VALUE STACK -- objection-killing "what you actually get"
   block. Deep green so it separates the light steps section
   from the ink service-area band and reads as the hero's sibling.
   ============================================================ */
.lp-value {
  background: var(--orange-dark);
  padding: clamp(56px, 6vw, 84px) 24px;
  border-top: 1px solid rgba(245,197,24,0.18);
}
.lp-value-inner { max-width: var(--container); margin: 0 auto; }
.lp-value-eyebrow {
  font-family: var(--f-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 10px;
}
.lp-value-title {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(26px, 3.6vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--paper);
  margin-bottom: 12px;
}
.lp-value-title em { color: var(--slate); font-style: normal; }
.lp-value-lead {
  font-family: var(--f-sans);
  font-size: clamp(15px, 1.6vw, 17.5px);
  line-height: 1.6;
  color: rgba(250,246,241,0.72);
  max-width: 62ch;
  margin-bottom: clamp(32px, 4vw, 48px);
}
.lp-value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(250,246,241,0.13);
  border: 1px solid rgba(250,246,241,0.13);
}
.lp-value-item {
  background: var(--orange-dark);
  padding: clamp(22px, 2.4vw, 30px) clamp(20px, 2.2vw, 28px);
}
.lp-value-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(245,197,24,0.14);
  color: var(--slate);
  margin-bottom: 14px;
}
.lp-value-item h3 {
  font-family: var(--f-sans);
  font-weight: 800;
  font-size: 16.5px;
  line-height: 1.25;
  color: var(--paper);
  margin-bottom: 8px;
  letter-spacing: -0.005em;
}
.lp-value-item p {
  font-family: var(--f-sans);
  font-size: 14.5px;
  line-height: 1.58;
  color: rgba(250,246,241,0.68);
  margin: 0;
}
@media (max-width: 900px) { .lp-value-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) {
  .lp-value-grid { grid-template-columns: 1fr; }
  .lp-value-item { padding: 20px 18px; }
  .lp-value-item h3 { font-size: 15.5px; }
  .lp-value-item p { font-size: 14px; }
}

/* ============================================================
   v3 HERO -- restructured to the Coastline K9 composition:
   dot-separated ribbon w/ phone, white nav w/ dual actions,
   light offer callout, lede paragraph, rating+checklist proof
   card, dual hero CTAs, white form card with visible labels.
   Gold (--slate) stays the single CTA accent; green is brand.
   ============================================================ */

/* Ribbon: dots instead of pipes, phone appended */
.lp-ribbon-v3 {
  background: #101314;
  color: rgba(255,255,255,0.88);
  font-family: var(--f-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.5;
  padding: 10px 20px;
  display: flex; justify-content: center; align-items: center;
  gap: 12px; flex-wrap: wrap; text-align: center;
}
.lp-ribbon-v3 .dot { color: var(--slate); }
.lp-ribbon-v3 a { color: var(--slate); text-decoration: none; font-weight: 800; white-space: nowrap; }
.lp-ribbon-v3 a:hover { text-decoration: underline; }
.lp-ribbon-v3 span { white-space: nowrap; }
@media (max-width: 700px) { .lp-ribbon-v3 { font-size: 11.5px; gap: 8px; padding: 9px 14px; } }

/* White nav with phone pill + primary CTA */
.lp-nav-v3 {
  background: #fff;
  border-bottom: 1px solid rgba(16,19,20,0.10);
  padding: 12px 28px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  position: sticky; top: 0; z-index: 100;
}
.lp-nav-v3-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.lp-nav-v3-brand img { height: 42px; width: auto; display: block; }
.lp-nav-v3-name {
  font-family: var(--f-display); font-weight: 900; font-size: 19px;
  color: var(--ink); letter-spacing: 0.01em;
}
.lp-nav-v3-actions { display: flex; align-items: center; gap: 12px; }
.lp-nav-v3-phone {
  font-family: var(--f-sans); font-weight: 800; font-size: 15.5px;
  color: var(--ink); text-decoration: none;
  border: 1.5px solid rgba(16,19,20,0.28);
  border-radius: 6px; padding: 11px 18px; white-space: nowrap;
  transition: border-color .15s, background .15s;
}
.lp-nav-v3-phone:hover { border-color: var(--orange); background: rgba(48,80,48,0.05); }
.lp-nav-v3-cta {
  font-family: var(--f-sans); font-weight: 800; font-size: 15.5px;
  color: #1f3a1f; text-decoration: none;
  background: var(--slate); border-radius: 6px; padding: 12px 20px;
  white-space: nowrap; transition: background .15s, transform .12s;
}
.lp-nav-v3-cta:hover { background: #ffd534; transform: translateY(-1px); }
@media (max-width: 860px) { .lp-nav-v3-name { display: none; } }
@media (max-width: 640px) {
  .lp-nav-v3 { padding: 10px 14px; gap: 10px; }
  .lp-nav-v3-brand img { height: 36px; }
  .lp-nav-v3-phone { font-size: 14px; padding: 10px 13px; }
  .lp-nav-v3-cta { font-size: 13.5px; padding: 11px 14px; }
}
/* The nav CTA used to be hidden under 420px because the phone pill shared the
   row. Phone is gone (v10), so the CTA now has the space and must stay. */
@media (max-width: 420px) { .lp-nav-v3-cta { font-size: 12.5px; padding: 10px 12px; } }

/* Hero copy column */
.lp-eyebrow-v3 {
  font-family: var(--f-sans); font-size: 13px; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--slate); margin-bottom: 14px;
}
.lp-hero .lp-hero-copy h1 { margin-bottom: 22px; }

/* Offer callout */
.lp-offer {
  background: rgba(250,246,241,0.96);
  border-left: 5px solid var(--slate);
  border-radius: 5px;
  padding: 18px 22px;
  margin-bottom: 24px;
}
.lp-offer-head {
  font-family: var(--f-sans); font-weight: 800;
  font-size: clamp(17px, 2.1vw, 23px); line-height: 1.3;
  color: #14210f; margin: 0 0 6px;
}
.lp-offer-head em { font-style: normal; color: var(--orange); }
.lp-offer-sub {
  font-family: var(--f-sans); font-size: clamp(13.5px, 1.5vw, 15.5px);
  color: rgba(20,33,15,0.72); margin: 0; line-height: 1.5;
}

/* Lede paragraph */
.lp-lede {
  font-family: var(--f-sans);
  font-size: clamp(15.5px, 1.75vw, 18.5px);
  line-height: 1.62;
  color: rgba(250,246,241,0.9);
  max-width: 56ch;
  margin: 0 0 26px;
}

/* Proof card: rating + 2x2 checklist */
.lp-proof {
  border: 1px solid rgba(250,246,241,0.24);
  border-radius: 8px;
  background: rgba(16,19,20,0.42);
  padding: 20px 22px;
  margin-bottom: 26px;
}
.lp-proof-top { display: flex; align-items: center; gap: 14px; }
.lp-proof-score {
  font-family: var(--f-display); font-weight: 900;
  font-size: 38px; line-height: 1; color: var(--paper); letter-spacing: -0.02em;
}
.lp-proof-stars { color: var(--slate); font-size: 17px; letter-spacing: 2px; line-height: 1; }
.lp-proof-count {
  font-family: var(--f-sans); font-weight: 600; font-size: 14.5px;
  color: rgba(250,246,241,0.82); margin-top: 5px;
}
.lp-proof-list {
  list-style: none; margin: 16px 0 0; padding: 16px 0 0;
  border-top: 1px solid rgba(250,246,241,0.16);
  display: grid; grid-template-columns: 1fr 1fr; gap: 11px 20px;
}
.lp-proof-list li {
  position: relative; padding-left: 26px;
  font-family: var(--f-sans); font-size: 14.5px; font-weight: 600;
  color: rgba(250,246,241,0.9); line-height: 1.4;
}
.lp-proof-list li::before {
  content: ''; position: absolute; left: 0; top: 2px;
  width: 17px; height: 17px;
  background: var(--slate);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/contain no-repeat;
}
@media (max-width: 560px) { .lp-proof-list { grid-template-columns: 1fr; } }

/* Dual hero CTAs */
.lp-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.lp-btn-primary {
  flex: 1 1 260px; text-align: center;
  background: var(--slate); color: #1f3a1f;
  font-family: var(--f-sans); font-weight: 800; font-size: 16.5px;
  padding: 17px 26px; border-radius: 6px; text-decoration: none;
  transition: background .15s, transform .12s;
  box-shadow: 0 8px 26px rgba(245,197,24,0.26);
}
.lp-btn-primary:hover { background: #ffd534; transform: translateY(-2px); }
.lp-btn-ghost {
  flex: 1 1 220px; text-align: center;
  border: 1.5px solid rgba(250,246,241,0.5); color: var(--paper);
  font-family: var(--f-sans); font-weight: 800; font-size: 16.5px;
  padding: 17px 26px; border-radius: 6px; text-decoration: none;
  transition: background .15s, border-color .15s;
}
.lp-btn-ghost:hover { background: rgba(250,246,241,0.1); border-color: var(--paper); }

/* White form card */
.lp-form-card {
  background: #fff;
  border-radius: 10px;
  padding: 26px 26px 24px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.32);
}
.lp-form-card h2 {
  font-family: var(--f-sans); font-weight: 800;
  font-size: 21px; line-height: 1.25; color: var(--ink); margin: 0 0 5px;
}
.lp-form-card .lp-form-sub {
  font-family: var(--f-sans); font-size: 14.5px;
  color: rgba(26,31,36,0.62); margin: 0 0 18px; line-height: 1.5;
}
.lp-fgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.lp-fld { margin-bottom: 13px; }
.lp-fld label {
  display: block;
  font-family: var(--f-sans); font-weight: 700; font-size: 13.5px;
  color: #23282d; margin-bottom: 5px;
}
.lp-fld input {
  width: 100%; box-sizing: border-box;
  font-family: var(--f-sans); font-size: 15.5px; color: var(--ink);
  padding: 11px 13px;
  border: 1.5px solid rgba(26,31,36,0.2);
  border-radius: 5px; background: #fff;
  transition: border-color .15s, box-shadow .15s;
}
.lp-fld input:hover { border-color: rgba(26,31,36,0.34); }
.lp-fld input:focus {
  outline: none; border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(48,80,48,0.14);
}
.lp-form-card .btn-lp {
  width: 100%; margin-top: 4px;
  background: var(--slate); color: #1f3a1f;
  border: none; border-radius: 6px; padding: 16px 22px;
  font-family: var(--f-sans); font-weight: 800; font-size: 16.5px;
  cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 9px;
  transition: background .15s, transform .12s;
}
.lp-form-card .btn-lp:hover { background: #ffd534; transform: translateY(-1px); }
.lp-form-card .btn-lp:active { transform: scale(0.99); }
.lp-form-fine {
  font-family: var(--f-sans); font-size: 12px; line-height: 1.5;
  color: rgba(26,31,36,0.56); margin: 13px 0 0; text-align: center;
}
.lp-form-fine a { color: rgba(26,31,36,0.72); }
@media (max-width: 560px) {
  .lp-fgrid { grid-template-columns: 1fr; gap: 0; }
  .lp-form-card { padding: 22px 18px 20px; }
}

/* v3 hero grid: give the form card a bit more room */
.lp-hero .lp-hero-inner { grid-template-columns: 1fr 452px; align-items: center; }
@media (max-width: 1024px) { .lp-hero .lp-hero-inner { grid-template-columns: 1fr; gap: 32px; } }

/* v3 hero fit: shrink the display H1 so the headline holds two lines and the
   dual CTAs stay above the fold, and top-align the form card with the copy. */
.lp-hero .lp-hero-copy h1 { font-size: clamp(26px, 3.9vw, 50px); margin-bottom: 20px; }
.lp-hero .lp-hero-inner { align-items: start; padding-top: clamp(38px, 4vw, 54px); padding-bottom: clamp(38px, 4vw, 54px); }
.lp-hero .lp-offer { margin-bottom: 20px; }
.lp-hero .lp-lede { margin-bottom: 22px; }
.lp-hero .lp-proof { margin-bottom: 22px; padding: 18px 20px; }
.lp-hero { min-height: 0; }

/* v3 ribbon on mobile: break after item 1 and drop the middle claim so no
   separator is ever left orphaned at the end of a wrapped line. */
@media (max-width: 700px) {
  .lp-ribbon-v3 .rb-1 { flex-basis: 100%; }
  .lp-ribbon-v3 .rb-d1,
  .lp-ribbon-v3 .rb-2,
  .lp-ribbon-v3 .rb-d2 { display: none; }
}

/* ============================================================
   v4 -- pain-filtered reviews, Instagram, map service area,
   final CTA + footer + sticky call bar.
   ============================================================ */

/* ---- REVIEWS: pick-your-problem ---- */
.lp-rv { background: var(--paper); padding: clamp(56px, 6vw, 84px) 24px; }
.lp-rv-inner { max-width: var(--container); margin: 0 auto; }
.lp-rv-eyebrow {
  font-family: var(--f-sans); font-size: 12px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--slate-dark); margin-bottom: 10px;
}
.lp-rv-title {
  font-family: var(--f-display); font-weight: 900;
  font-size: clamp(28px, 4vw, 50px); line-height: 1.05;
  letter-spacing: -0.02em; color: var(--ink); margin-bottom: 28px;
}
.lp-rv-title em { color: var(--slate); font-style: normal; }
.lp-rv-picker {
  background: #fff; border: 1px solid rgba(26,31,36,0.12);
  border-left: 5px solid var(--orange); border-radius: 8px;
  padding: 20px 22px; margin-bottom: 32px; max-width: 620px;
  box-shadow: 0 6px 22px rgba(26,31,36,0.06);
}
.lp-rv-picker label {
  display: block; font-family: var(--f-sans); font-weight: 800;
  font-size: clamp(15px, 1.8vw, 18px); color: var(--ink); margin-bottom: 12px;
}
.lp-rv-selectwrap { position: relative; }
.lp-rv-selectwrap select {
  width: 100%; appearance: none; -webkit-appearance: none;
  font-family: var(--f-sans); font-size: 16px; font-weight: 600; color: var(--ink);
  padding: 13px 44px 13px 14px; cursor: pointer;
  border: 1.5px solid rgba(26,31,36,0.24); border-radius: 6px; background: #fff;
  transition: border-color .15s, box-shadow .15s;
}
.lp-rv-selectwrap select:hover { border-color: rgba(26,31,36,0.4); }
.lp-rv-selectwrap select:focus {
  outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(48,80,48,0.14);
}
.lp-rv-chev {
  position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  color: var(--orange); pointer-events: none;
}
.lp-rv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.lp-rv-card {
  background: var(--ink); border-radius: 10px;
  border-top: 3px solid var(--slate);
  padding: 22px 22px 20px;
  display: flex; flex-direction: column;
}
.lp-rv-card[hidden] { display: none; }
.lp-rv-stars { color: var(--slate); font-size: 15px; letter-spacing: 2px; margin-bottom: 12px; }
.lp-rv-text {
  font-family: var(--f-sans); font-size: 15px; line-height: 1.62;
  color: rgba(250,246,241,0.88); margin: 0 0 16px; flex: 1;
}
.lp-rv-name {
  font-family: var(--f-sans); font-weight: 700; font-size: 13.5px;
  color: rgba(250,246,241,0.6);
}
.lp-rv-none {
  font-family: var(--f-sans); font-size: 16px; color: var(--slate-dark);
  background: #fff; border: 1px dashed rgba(26,31,36,0.2);
  border-radius: 8px; padding: 24px; text-align: center; margin: 0;
}
.lp-rv-none a { color: var(--orange); font-weight: 700; }
@media (max-width: 900px) { .lp-rv-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .lp-rv-grid { grid-template-columns: 1fr; } }

/* ---- INSTAGRAM ---- */
.lp-ig { background: var(--orange); padding: clamp(52px, 5.5vw, 78px) 24px; }
.lp-ig-inner {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 56px); align-items: center;
}
.lp-ig-eyebrow {
  font-family: var(--f-sans); font-size: 12px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--slate); margin-bottom: 10px;
}
.lp-ig-title {
  font-family: var(--f-display); font-weight: 900;
  font-size: clamp(26px, 3.6vw, 44px); line-height: 1.08;
  letter-spacing: -0.02em; color: var(--paper); margin-bottom: 14px;
}
.lp-ig-title em { color: var(--slate); font-style: normal; }
.lp-ig-body {
  font-family: var(--f-sans); font-size: clamp(15px, 1.6vw, 17px); line-height: 1.6;
  color: rgba(250,246,241,0.8); margin: 0 0 22px; max-width: 46ch;
}
.lp-ig-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--slate); color: #1f3a1f; text-decoration: none;
  font-family: var(--f-sans); font-weight: 800; font-size: 16px;
  padding: 14px 22px; border-radius: 6px; transition: background .15s, transform .12s;
}
.lp-ig-btn:hover { background: #ffd534; transform: translateY(-2px); }
.lp-ig-reels { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.lp-ig-reel {
  position: relative; aspect-ratio: 9 / 14;
  border-radius: 10px; overflow: hidden; text-decoration: none;
  background: linear-gradient(150deg, #23331f 0%, #101314 100%);
  border: 1px solid rgba(250,246,241,0.16);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
  transition: transform .16s, border-color .16s;
}
.lp-ig-reel:hover { transform: translateY(-3px); border-color: var(--slate); }
.lp-ig-play {
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(245,197,24,0.16); color: var(--slate);
  display: flex; align-items: center; justify-content: center;
}
.lp-ig-reel-lbl {
  font-family: var(--f-sans); font-weight: 700; font-size: 13px;
  color: rgba(250,246,241,0.78); letter-spacing: 0.04em;
}
@media (max-width: 900px) { .lp-ig-inner { grid-template-columns: 1fr; } }
@media (max-width: 520px) { .lp-ig-reels { grid-template-columns: 1fr 1fr; gap: 10px; } }

/* ---- SERVICE AREA MAP ---- */
.lp-area-map {
  border-radius: 10px; overflow: hidden;
  border: 1px solid rgba(250,246,241,0.18);
  background: #0d0f10;
}
.lp-area-map iframe { display: block; width: 100%; filter: saturate(0.9); }
.lp-area-addr {
  font-family: var(--f-sans); font-size: 13.5px; margin: 0;
  padding: 12px 16px; color: rgba(250,246,241,0.72);
  background: rgba(250,246,241,0.05);
}
.lp-area-addr a { color: var(--slate); font-weight: 700; }
@media (max-width: 900px) { .lp-area-map iframe { height: 320px; } }

/* ---- FINAL CTA ---- */
.lp-final { background: #16191a; padding: clamp(64px, 7vw, 104px) 24px; text-align: center; }
.lp-final-inner { max-width: 860px; margin: 0 auto; }
.lp-final-eyebrow {
  font-family: var(--f-sans); font-size: clamp(15px, 1.9vw, 20px); font-weight: 600;
  color: rgba(250,246,241,0.82); margin-bottom: 14px; line-height: 1.4;
}
.lp-final-title {
  font-family: var(--f-display); font-weight: 900;
  font-size: clamp(30px, 5.4vw, 62px); line-height: 1.03;
  letter-spacing: -0.02em; color: var(--paper); margin-bottom: 16px;
}
.lp-final-title em { color: var(--slate); font-style: normal; }
.lp-final-sub {
  font-family: var(--f-sans); font-weight: 800;
  font-size: clamp(13px, 1.6vw, 17px); letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--slate); margin: 0 0 34px;
}
.lp-final-actions { display: flex; flex-direction: column; gap: 14px; align-items: center; }
.lp-final-call, .lp-final-form {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; max-width: 460px; box-sizing: border-box;
  font-family: var(--f-display); font-weight: 900;
  font-size: clamp(17px, 2.1vw, 22px); letter-spacing: 0.01em;
  padding: 20px 28px; border-radius: 7px; text-decoration: none;
  transition: background .15s, border-color .15s, transform .12s;
}
.lp-final-call { border: 2px solid rgba(250,246,241,0.85); color: var(--paper); }
.lp-final-call:hover { background: rgba(250,246,241,0.1); transform: translateY(-2px); }
.lp-final-form { background: var(--slate); color: #1f3a1f; border: 2px solid var(--slate); }
.lp-final-form:hover { background: #ffd534; border-color: #ffd534; transform: translateY(-2px); }

/* ---- FOOTER ---- */
.lp-footer-v3 { background: #101314; padding: clamp(44px, 5vw, 66px) 24px calc(clamp(44px, 5vw, 66px) + 78px); }
.lp-footer-v3-inner { max-width: var(--container); margin: 0 auto; }
.lp-footer-logo { height: 60px; width: auto; display: block; margin-bottom: 18px; }
.lp-footer-blurb {
  font-family: var(--f-sans); font-size: 15.5px; line-height: 1.6;
  color: rgba(250,246,241,0.74); margin: 0 0 12px; max-width: 52ch;
}
.lp-footer-meta { font-family: var(--f-sans); font-size: 14.5px; color: rgba(250,246,241,0.62); margin: 0 0 18px; }
.lp-footer-meta a { color: var(--slate); font-weight: 700; text-decoration: none; }
.lp-footer-legal { font-family: var(--f-sans); font-size: 12.5px; color: rgba(250,246,241,0.4); margin: 0; }

/* ---- STICKY CALL BAR ---- */
.lp-callbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 200;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--slate); color: #1f3a1f; text-decoration: none;
  font-family: var(--f-display); font-weight: 900; font-size: 19px;
  padding: 17px 20px; letter-spacing: 0.01em;
  box-shadow: 0 -6px 22px rgba(0,0,0,0.3);
}
.lp-callbar:hover { background: #ffd534; }
@media (max-width: 520px) { .lp-callbar { font-size: 17px; padding: 15px 16px; } }

/* v4 fixes: keep the final-CTA number on one line; make IG reel tiles compact
   buttons with a real facility photo behind them rather than tall empty boxes. */
.lp-final-title .nowrap { white-space: nowrap; }
.lp-ig-reel {
  aspect-ratio: 1 / 1;
  background-size: cover;
  background-position: center;
  isolation: isolate;
}
.lp-ig-reel::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(160deg, rgba(31,58,31,0.82) 0%, rgba(16,19,20,0.88) 100%);
}
.lp-ig-reel:hover::before { background: linear-gradient(160deg, rgba(31,58,31,0.7) 0%, rgba(16,19,20,0.8) 100%); }
.lp-ig-reels { gap: 12px; max-width: 480px; margin-left: auto; }
@media (max-width: 900px) { .lp-ig-reels { margin-left: 0; max-width: 420px; } }

/* v4 IG reels -- final sizing. Supersedes the two tuning blocks above:
   fill the column, portrait 4:5 tiles, label that never overflows. */
.lp-ig-reels {
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  max-width: none;
  margin-left: 0;
}
.lp-ig-reel { aspect-ratio: 4 / 5; padding: 12px; text-align: center; }
.lp-ig-play { width: 46px; height: 46px; }
.lp-ig-reel-lbl { font-size: 12.5px; max-width: 100%; }
@media (max-width: 900px) { .lp-ig-reels { max-width: 460px; } }
@media (max-width: 520px) { .lp-ig-reels { gap: 10px; } .lp-ig-play { width: 40px; height: 40px; } }
.lp-ig-reel::before { background: linear-gradient(160deg, rgba(31,58,31,0.62) 0%, rgba(16,19,20,0.74) 100%); }
.lp-ig-reel-lbl { text-shadow: 0 1px 6px rgba(0,0,0,0.7); }

/* ============================================================
   v5 -- WHY section, step photos, value photo band, IG autoplay
   video tiles, scroll reveal.
   ============================================================ */

/* ---- scroll reveal ---- */
.js .lp-reveal { opacity: 0; transform: translateY(16px); transition: opacity .5s ease, transform .5s cubic-bezier(.2,.7,.3,1); }
/* Scoped to html.js (form.js flips no-js -> js). Without JS the observer never
   runs, so an unscoped rule left the whole page permanently invisible. */
.js .lp-reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .js .lp-reveal { opacity: 1; transform: none; transition: none; } }

/* ---- WHY RIDGESIDE ---- */
.lp-why { background: var(--paper); padding: clamp(56px, 6vw, 88px) 24px; border-top: 1px solid var(--line); }
.lp-why-inner {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(28px, 4vw, 56px); align-items: center;
}
.lp-why-media { position: relative; }
.lp-why-media img { width: 100%; height: auto; display: block; border-radius: 12px; }
.lp-why-badge {
  position: absolute; left: -14px; bottom: -18px;
  background: var(--slate); color: #1f3a1f;
  border-radius: 10px; padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 12px 34px rgba(26,31,36,0.22);
}
.lp-why-badge-num { font-family: var(--f-display); font-weight: 900; font-size: 40px; line-height: 1; letter-spacing: -0.03em; }
.lp-why-badge-lbl { font-family: var(--f-sans); font-weight: 800; font-size: 12.5px; line-height: 1.3; letter-spacing: 0.02em; }
.lp-why-eyebrow {
  font-family: var(--f-sans); font-size: 12px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--orange); margin-bottom: 10px;
}
.lp-why-title {
  font-family: var(--f-display); font-weight: 900;
  font-size: clamp(27px, 3.8vw, 46px); line-height: 1.06;
  letter-spacing: -0.02em; color: var(--ink); margin-bottom: 14px;
}
.lp-why-title em { color: var(--orange); font-style: normal; }
.lp-why-lead {
  font-family: var(--f-sans); font-size: clamp(15px, 1.7vw, 17.5px); line-height: 1.62;
  color: var(--slate-dark); margin: 0 0 22px; max-width: 54ch;
}
.lp-why-list { list-style: none; margin: 0 0 26px; padding: 0; display: grid; gap: 13px; }
.lp-why-list li {
  position: relative; padding-left: 32px;
  font-family: var(--f-sans); font-size: 15.5px; line-height: 1.55; color: var(--slate-dark);
}
.lp-why-list li strong { color: var(--ink); font-weight: 800; }
.lp-why-list li::before {
  content: ''; position: absolute; left: 0; top: 3px; width: 20px; height: 20px;
  border-radius: 50%; background: var(--orange);
  -webkit-mask: none; mask: none;
}
.lp-why-list li::after {
  content: ''; position: absolute; left: 4px; top: 8px; width: 12px; height: 12px;
  background: var(--slate);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/contain no-repeat;
}
.lp-why-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.lp-why-actions .lp-btn-primary { flex: 0 1 auto; }
.lp-why-ghost { flex: 0 1 auto; border-color: rgba(26,31,36,0.32); color: var(--ink); }
.lp-why-ghost:hover { background: rgba(26,31,36,0.06); border-color: var(--ink); }
@media (max-width: 900px) {
  .lp-why-inner { grid-template-columns: 1fr; }
  .lp-why-badge { left: auto; right: 12px; bottom: -16px; }
}

/* ---- STEP PHOTOS ---- */
.lp-step-photo { margin: -4px -4px 16px; border-radius: 8px; overflow: hidden; aspect-ratio: 16 / 10; }
.lp-step-photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.lp-step:hover .lp-step-photo img { transform: scale(1.05); }

/* ---- VALUE PHOTO BAND ---- */
.lp-value-band {
  border-radius: 10px; overflow: hidden; margin-bottom: clamp(26px, 3vw, 38px);
  border: 1px solid rgba(250,246,241,0.14);
}
.lp-value-band img { width: 100%; height: auto; display: block; }

/* ---- IG AUTOPLAY VIDEO TILES ---- */
.lp-ig-vid {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%; object-fit: cover; display: block;
}

/* v5 fix: 3-up photo strip replaces the ultrawide band (a 21:9 crop cut the
   subject out of the frame). Also lift the step numbers off the cream card. */
.lp-value-strip {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
  margin-bottom: clamp(26px, 3vw, 38px);
}
.lp-value-strip picture { display: block; border-radius: 10px; overflow: hidden; border: 1px solid rgba(250,246,241,0.14); }
.lp-value-strip img { width: 100%; height: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; transition: transform .45s ease; }
.lp-value-strip picture:hover img { transform: scale(1.04); }
@media (max-width: 700px) { .lp-value-strip { grid-template-columns: 1fr 1fr; } .lp-value-strip picture:last-child { display: none; } }
.lp-step-num { color: var(--orange) !important; opacity: 0.55; }

/* ============================================================
   v6 -- click-through process stepper on a photo background,
   compressed value grid (no photo strip).
   ============================================================ */
.lp-stp {
  position: relative;
  padding: clamp(56px, 6vw, 88px) 24px;
  background: var(--ink) url('/assets/img/lp-dt-steps-bg-1600.webp') center / cover no-repeat;
}
.lp-stp::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(16,19,20,0.9) 0%, rgba(31,58,31,0.9) 100%);
}
@media (max-width: 900px) { .lp-stp { background-image: url('/assets/img/lp-dt-steps-bg-900.webp'); } }
.lp-stp-inner { position: relative; max-width: var(--container); margin: 0 auto; }
.lp-stp-eyebrow {
  font-family: var(--f-sans); font-size: 12px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--slate); margin-bottom: 10px;
}
.lp-stp-title {
  font-family: var(--f-display); font-weight: 900;
  font-size: clamp(27px, 3.8vw, 46px); line-height: 1.06;
  letter-spacing: -0.02em; color: var(--paper); margin-bottom: clamp(24px, 3vw, 34px);
}
.lp-stp-title em { color: var(--slate); font-style: normal; }
.lp-stp-box {
  background: rgba(10,12,11,0.5);
  border: 1px solid rgba(250,246,241,0.16);
  border-radius: 12px; overflow: hidden;
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.lp-stp-tabs { display: grid; grid-template-columns: repeat(4, 1fr); }
.lp-stp-tab {
  appearance: none; border: 0; cursor: pointer; text-align: left;
  background: transparent; color: rgba(250,246,241,0.62);
  padding: 18px 18px 16px;
  border-bottom: 3px solid rgba(250,246,241,0.12);
  border-right: 1px solid rgba(250,246,241,0.1);
  display: flex; flex-direction: column; gap: 6px;
  transition: background .15s, color .15s, border-color .15s;
}
.lp-stp-tab:last-child { border-right: 0; }
.lp-stp-tab:hover { background: rgba(250,246,241,0.06); color: var(--paper); }
.lp-stp-tab.is-active { color: var(--paper); background: rgba(245,197,24,0.08); border-bottom-color: var(--slate); }
.lp-stp-tab-num {
  font-family: var(--f-display); font-weight: 900; font-size: 15px;
  color: var(--slate); letter-spacing: 0.02em; line-height: 1;
}
.lp-stp-tab-lbl { font-family: var(--f-sans); font-weight: 700; font-size: 14px; line-height: 1.3; }
.lp-stp-panels { position: relative; padding: clamp(26px, 3.4vw, 42px); }
.lp-stp-panel[hidden] { display: none; }
.lp-stp-panel { animation: lpRise .38s cubic-bezier(.2,.7,.3,1) both; }
.lp-stp-panel-num {
  display: block; font-family: var(--f-display); font-weight: 900;
  font-size: clamp(38px, 6vw, 64px); line-height: 1;
  color: rgba(245,197,24,0.32); letter-spacing: -0.03em; margin-bottom: 10px;
}
.lp-stp-panel-title {
  font-family: var(--f-display); font-weight: 900;
  font-size: clamp(21px, 2.7vw, 32px); line-height: 1.1;
  color: var(--paper); margin: 0 0 12px; letter-spacing: -0.01em;
}
.lp-stp-panel-body {
  font-family: var(--f-sans); font-size: clamp(15px, 1.7vw, 18px); line-height: 1.62;
  color: rgba(250,246,241,0.82); margin: 0; max-width: 62ch;
}
.lp-stp-nav { display: flex; align-items: center; gap: 14px; margin-top: 26px; }
.lp-stp-arrow {
  appearance: none; cursor: pointer;
  width: 44px; height: 44px; border-radius: 50%;
  background: transparent; color: var(--paper);
  border: 1.5px solid rgba(250,246,241,0.4);
  display: flex; align-items: center; justify-content: center;
  transition: background .15s, border-color .15s, opacity .15s;
}
.lp-stp-arrow:hover:not(:disabled) { background: var(--slate); color: #1f3a1f; border-color: var(--slate); }
.lp-stp-arrow:disabled { opacity: 0.3; cursor: default; }
.lp-stp-count { font-family: var(--f-sans); font-size: 14px; font-weight: 600; color: rgba(250,246,241,0.6); }
.lp-stp-count b { color: var(--slate); font-weight: 800; }
@media (max-width: 760px) {
  .lp-stp-tabs { grid-template-columns: repeat(4, 1fr); }
  .lp-stp-tab { padding: 13px 10px; align-items: center; text-align: center; }
  .lp-stp-tab-lbl { display: none; }
  .lp-stp-tab-num { font-size: 17px; }
}

/* ---- compressed value grid ---- */
.lp-value-item { padding: 20px 20px 18px; }
.lp-value-check { width: 26px; height: 26px; margin-bottom: 10px; }
.lp-value-item h3 { font-size: 15.5px; margin-bottom: 6px; }
.lp-value-item p { font-size: 14px; line-height: 1.5; }
.lp-value { padding: clamp(48px, 5vw, 70px) 24px; }
.lp-value-lead { margin-bottom: clamp(26px, 3vw, 36px); }
@media (max-width: 560px) { .lp-value-item { padding: 17px 16px 15px; } }

/* Stepper panels: only hide the inactive ones when JS is running. Without JS all
   four render stacked so the whole process is still readable. */
.js .lp-stp-panel:not(.is-active) { display: none; }
.lp-stp-panel + .lp-stp-panel { margin-top: 26px; padding-top: 26px; border-top: 1px solid rgba(250,246,241,0.12); }
.js .lp-stp-panel + .lp-stp-panel { margin-top: 0; padding-top: 0; border-top: 0; }
.lp-stp-nav { display: none; }
.js .lp-stp-nav { display: flex; }
.lp-stp-tabs { display: none; }
.js .lp-stp-tabs { display: grid; }
@media (max-width: 760px) { .js .lp-stp-tabs { grid-template-columns: repeat(4, 1fr); } }

/* ============================================================
   v7 -- self-hosted autoplaying training videos (5 up).
   Replaces the Instagram link-out tiles.
   ============================================================ */
.lp-ig-inner { display: block; }
.lp-ig-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; flex-wrap: wrap; margin-bottom: clamp(26px, 3vw, 38px);
}
.lp-ig-head > div { flex: 1 1 460px; }
.lp-ig-body { margin-bottom: 0; }
.lp-ig-btn { flex: 0 0 auto; }

.lp-ig-reels {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px;
  max-width: none; margin: 0;
}
.lp-ig-tile {
  position: relative; margin: 0;
  border-radius: 12px; overflow: hidden;
  background: #0e1110;
  border: 1px solid rgba(250,246,241,0.16);
  aspect-ratio: 9 / 16;
}
.lp-ig-vid {
  position: static; inset: auto; z-index: auto;
  width: 100%; height: 100%; object-fit: cover; display: block;
  background: #0e1110;
}
.lp-ig-cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 26px 12px 11px;
  font-family: var(--f-sans); font-weight: 600; font-size: 12.5px; line-height: 1.35;
  color: #fff; text-shadow: 0 1px 6px rgba(0,0,0,0.8);
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.72) 62%);
  pointer-events: none;
}
.lp-ig-sound {
  position: absolute; inset: 0; margin: auto;
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(245,197,24,0.94); color: #1f3a1f;
  border: 0; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.lp-ig-sound[hidden] { display: none; }

@media (max-width: 1100px) { .lp-ig-reels { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px) {
  .lp-ig-reels {
    grid-template-columns: none;
    grid-auto-flow: column; grid-auto-columns: 62%;
    overflow-x: auto; scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 6px; gap: 12px;
  }
  .lp-ig-tile { scroll-snap-align: start; }
  .lp-ig-reels::-webkit-scrollbar { height: 5px; }
  .lp-ig-reels::-webkit-scrollbar-thumb { background: rgba(245,197,24,0.5); border-radius: 3px; }
}
/* 4 videos after reel-2 was pulled (burned-in "E-COLLAR" caption). */
.lp-ig-reels { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1100px) { .lp-ig-reels { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 700px) { .lp-ig-reels { grid-template-columns: none; grid-auto-flow: column; grid-auto-columns: 62%; } }

/* v9: raise contrast in the process section. The box was rgba(10,12,11,0.5)
   over a 0.9 scrim, so card and backdrop sat at nearly the same value and the
   whole block read flat. Now: lighter scrim so the photo has presence, a solid
   near-black card that clearly stacks on top, and brighter text inside it. */
.lp-stp::before {
  background: linear-gradient(180deg, rgba(16,19,20,0.74) 0%, rgba(31,58,31,0.80) 100%);
}
.lp-stp-box {
  background: #0d1610;
  border: 1px solid rgba(245,197,24,0.26);
  box-shadow: 0 26px 64px rgba(0,0,0,0.55);
  backdrop-filter: none; -webkit-backdrop-filter: none;
}
.lp-stp-title, .lp-stp-eyebrow { text-shadow: 0 2px 14px rgba(0,0,0,0.55); }
.lp-stp-tab {
  color: rgba(250,246,241,0.78);
  border-bottom-color: rgba(250,246,241,0.16);
  border-right-color: rgba(250,246,241,0.14);
}
.lp-stp-tab:hover { background: rgba(250,246,241,0.09); }
.lp-stp-tab.is-active { background: rgba(245,197,24,0.14); border-bottom-color: var(--slate); }
.lp-stp-panel-num { color: rgba(245,197,24,0.55); }
.lp-stp-panel-body { color: rgba(250,246,241,0.93); }
.lp-stp-count { color: rgba(250,246,241,0.78); }
.lp-stp-arrow { border-color: rgba(250,246,241,0.55); }

/* v10: mobile Instagram carousel controls. Desktop shows every tile at once so
   the nav is hidden there; below 700px the row scrolls and these drive it. */
.lp-ig-nav { display: none; }
@media (max-width: 700px) {
  .js .lp-ig-nav {
    display: flex; align-items: center; justify-content: center; gap: 14px;
    margin-top: 16px;
  }
  .lp-ig-reels { grid-auto-columns: 78%; scroll-padding-left: 0; }
}
.lp-ig-arrow {
  appearance: none; cursor: pointer; flex: none;
  width: 42px; height: 42px; border-radius: 50%;
  background: transparent; color: var(--paper);
  border: 1.5px solid rgba(250,246,241,0.55);
  display: flex; align-items: center; justify-content: center;
  transition: background .15s, border-color .15s, opacity .15s;
}
.lp-ig-arrow:hover:not(:disabled) { background: var(--slate); color: #1f3a1f; border-color: var(--slate); }
.lp-ig-arrow:disabled { opacity: 0.3; cursor: default; }
.lp-ig-dots { display: flex; align-items: center; gap: 8px; }
.lp-ig-dot {
  appearance: none; border: 0; cursor: pointer; padding: 0;
  width: 9px; height: 9px; border-radius: 50%;
  background: rgba(250,246,241,0.35); transition: background .15s, width .15s;
}
.lp-ig-dot.is-active { background: var(--slate); width: 24px; border-radius: 5px; }
/* Keep the carousel nav clear of the fixed call bar on mobile. */
@media (max-width: 700px) { .lp-ig { padding-bottom: calc(clamp(52px,5.5vw,78px) + 64px); } }

/* v11: centre the reviews section. The grid was repeat(3,1fr) and left-aligned,
   so a 2-result filter left a dead third column and the whole block sat left of
   centre on wide screens. Flex + justify-content:center centres any count. */
.lp-rv-inner { text-align: center; }
.lp-rv-picker { margin-left: auto; margin-right: auto; }
.lp-rv-picker label { text-align: center; }
.lp-rv-grid {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: stretch;
  gap: 18px;
}
.lp-rv-card { flex: 1 1 300px; max-width: 372px; text-align: left; }
.lp-rv-none { max-width: 620px; margin-left: auto; margin-right: auto; }
@media (max-width: 620px) { .lp-rv-card { flex: 1 1 100%; max-width: none; } }

/* v12: Instagram out-link removed, so the video section head is copy only. */
.lp-ig-head { display: block; }
.lp-ig-head > div { flex: none; }
.lp-ig-body { margin-bottom: 0; max-width: 62ch; }
/* Privacy links in the footer and the form consent fine print. */
.lp-footer-legal a { color: rgba(250,246,241,0.72); text-decoration: underline; }
.lp-footer-legal a:hover { color: var(--slate); }
.lp-form-fine a { color: rgba(26,31,36,0.72); text-decoration: underline; }

/* ================= TIDEWATER LP ADDITIONS ================= */
.lp-form-success{ text-align:center; padding:20px 6px 10px; }
.lp-form-success .ok-ic{ width:58px; height:58px; margin:0 auto 16px; border-radius:50%; background:var(--orange); color:#fff; display:flex; align-items:center; justify-content:center; }
.lp-form-success h3{ font-family:var(--f-display); font-size:26px; line-height:1.05; color:var(--ink); margin:0 0 8px; }
.lp-form-success p{ font-size:15px; color:var(--slate-dark); margin:0 0 16px; }
.lp-form-success .ok-call{ display:inline-block; padding:13px 22px; border-radius:8px; background:var(--ink); color:var(--paper); font-weight:700; letter-spacing:.02em; }
.lp-form-success .ok-call:hover{ background:var(--orange); color:#fff; }

/* Facility photo strip */
.lp-gal{ padding:clamp(56px,8vw,110px) 0; background:#fff; border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.lp-gal-inner{ max-width:var(--container); margin:0 auto; padding:0 24px; text-align:center; }
.lp-gal-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:14px; margin-top:36px; }
.lp-gal-grid figure{ margin:0; }
.lp-gal-grid img{ width:100%; aspect-ratio:1/1; object-fit:cover; border-radius:var(--r-md); box-shadow:var(--shadow-md); }
.lp-gal-cap{ font-size:13px; color:var(--slate-dark); margin-top:10px; letter-spacing:.01em; }
@media (max-width:760px){ .lp-gal-grid{ grid-template-columns:1fr 1fr; } .lp-gal-grid figure:nth-child(3){ grid-column:1 / -1; } .lp-gal-grid figure:nth-child(3) img{ aspect-ratio:16/9; } }

html.no-js .lp-reveal{ opacity:1 !important; transform:none !important; }
