/* MLK9 Myrtle Beach. Bold direct-response. Green + orange.
   Primary #364f32 (green, sampled from MLK9 logo), Secondary #ea8b2a, Ink #1a1f24, Paper #faf6f1, White #ffffff */

:root {
  --orange: #364f32;
  --orange-dark: #243a20;
  --orange-light: #779873;
  --slate: #ea8b2a;
  --slate-dark: #2d3b2a;
  --slate-light: #f9c693;
  --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; }
}

/* 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: var(--paper);
  line-height: 1;
  letter-spacing: -0.02em;
}
.review-badge-stars { display: flex; gap: 5px; }
.review-badge-label {
  font-size: 14px;
  color: rgba(250, 246, 241, 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(--paper);
  border: 2px solid var(--slate);
  padding: 12px 28px;
  border-radius: var(--r-sm);
  transition: 120ms ease;
  letter-spacing: 0.01em;
}
.btn-review-all:hover { background: var(--slate); color: var(--ink); }

@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);
}
@media (max-width: 800px) {
  .area-inner { grid-template-columns: 1fr; padding: 28px; }
}

/* 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, #243a20 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-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/hero-1200.webp') center 28% / 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(36px, 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(234,139,42,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, #ea8b2a 0%, #d47316 100%);
  color: #fff;
  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(234,139,42,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, #ea8b2a 0%, #d47316 100%);
    color: #fff;
    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(234,139,42,0.55);
    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, #ea8b2a 0%, #d47316 100%);
  color: #fff;
  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(234,139,42,0.42);
  transition: transform 120ms ease, box-shadow 120ms ease;
}
.btn-lp-anchor:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(234,139,42,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; }
}
