/* ============================================================
   AUGMENT PERFORMANCE & PHYSICAL THERAPY
   Design System
   Colors: #0a0a0a (bg) · #c8102e (red) · #ffffff (text)
   Type: Bebas Neue (display) · Inter (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --bg:        #0a0a0a;
  --bg-2:      #111111;
  --bg-3:      #1a1a1a;
  --border:    #252525;
  --red:       #c8102e;
  --red-dark:  #a00d24;
  --gold:      #F5A623;
  --gold-dim:  rgba(245,166,35,0.12);
  --white:     #ffffff;
  --grey:      #888888;
  --grey-light:#cccccc;
  --max-w:     1200px;
  --radius:    4px;
}

/* ---- RESET ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.03em;
  line-height: 1.05;
}
h1 { font-size: clamp(3.2rem, 9vw, 7.5rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.8rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.4rem); }
h4 { font-size: 1.5rem; }
p  { color: var(--grey-light); line-height: 1.75; }

/* ---- LAYOUT ---- */
.container  { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }
.section    { padding: 6rem 0; }
.section--dark { background: var(--bg-2); }
.section--card { background: var(--bg-3); }

.accent-line {
  display: block;
  width: 52px;
  height: 3px;
  background: var(--red);
  margin-bottom: 1.5rem;
}

.section-heading { margin-bottom: 0.75rem; }
.section-sub {
  font-size: 1.05rem;
  color: var(--grey-light);
  max-width: 640px;
  margin-bottom: 3rem;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.875rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary { background: var(--red); color: var(--white); border-color: var(--red); }
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.4); }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.05); }
.btn-outline-red { background: transparent; color: var(--red); border-color: var(--red); }
.btn-outline-red:hover { background: var(--red); color: var(--white); }
.btn-lg { padding: 1.1rem 2.25rem; font-size: 0.95rem; }
.btn-gold { background: var(--gold); color: #0a0a0a; border-color: var(--gold); font-weight: 700; }
.btn-gold:hover { background: #d48f1a; border-color: #d48f1a; transform: translateY(-1px); }

/* ---- GOLD ACCENTS ---- */
.text-gold { color: var(--gold); }
/* Star rating */
.stars { color: var(--gold); letter-spacing: 0.05em; font-size: 1.1rem; }
/* Testimonial / review badge */
.review-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--gold-dim);
  border: 1px solid rgba(245,166,35,0.3);
  border-radius: 100px;
  padding: 0.45rem 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

/* ---- NAVIGATION ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.375rem 0;
  transition: background 0.3s, padding 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(10,10,10,0.96);
  padding: 0.875rem 0;
  border-color: var(--border);
  backdrop-filter: blur(10px);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.nav__logo img { height: 62px; width: auto; }
.nav__logo-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  line-height: 1.15;
}
.nav__logo-text .red { color: var(--red); }
.nav__links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}
.nav__links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-light);
  transition: color 0.2s;
}
.nav__links a:hover,
.nav__links a.active { color: var(--white); }
.nav__cta { margin-left: 1.5rem; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  transition: all 0.25s ease;
  transform-origin: center;
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  display: none;
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: rgba(10,10,10,0.98);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 2rem 2rem;
  backdrop-filter: blur(10px);
}
.nav__mobile.open { display: block; }
.nav__mobile ul {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.nav__mobile li a {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-light);
  transition: color 0.2s;
}
.nav__mobile li a:hover { color: var(--white); }
.nav__mobile .btn { width: 100%; margin-top: 0.75rem; }

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 65% 50%, rgba(200,16,46,0.09) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(200,16,46,0.04) 0%, transparent 40%);
}
/* Hex grid texture */
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='52' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon points='30,2 58,17 58,47 30,62 2,47 2,17' fill='none' stroke='rgba(255,255,255,0.025)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 60px 52px;
}
.hero__content {
  position: relative;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 9rem 2rem 5rem;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  column-gap: 4rem;
  align-items: start;
}
/* All text children stay in column 1 */
.hero__eyebrow,
.hero__title,
.hero__creds { grid-column: 1; }

/* Tagline spans full width */
.hero__sub { grid-column: 1 / -1; }

/* Tracks span full width */
.hero__tracks { grid-column: 1 / -1; }

/* Logo sits in column 2, spanning only the h1 row (row 2) */
.hero__logo-full {
  grid-column: 2;
  grid-row: 2;
  align-self: start;
  width: auto;
  max-height: 260px;
  object-fit: contain;
  object-position: left top;
  opacity: 0.92;
  transform: scale(0.936);
  transform-origin: left top;
}
.hero__eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.25rem;
}
.hero__title { margin-bottom: 0.75rem; }
.hero__title .accent { color: var(--red); }
.hero__creds {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 1.25rem;
}
.hero__sub {
  max-width: 900px;
  font-size: 1.1rem;
  color: var(--grey-light);
  margin-bottom: 3.5rem;
  line-height: 1.7;
}
.hero__tracks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  max-width: 100%;
  align-items: stretch;
}
.hero__track {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.75rem;
  transition: border-color 0.2s;
  display: flex;
  flex-direction: column;
}
.hero__track:hover { border-color: rgba(200,16,46,0.5); }
.hero__track-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.5rem;
}
.hero__track h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.45rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.6rem;
}
.hero__track p {
  font-size: 0.85rem;
  color: var(--grey);
  line-height: 1.65;
  margin-bottom: 1.375rem;
  flex: 1; /* pushes CTA to bottom */
}
.hero__track .btn { width: 100%; }
.hero__track .btn-coming-soon { display: block; width: 100%; text-align: center; }

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  padding: 10rem 0 4.5rem;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 40%, rgba(200,16,46,0.07) 0%, transparent 55%);
}
.page-hero .container { position: relative; }
.page-hero h1 { margin-bottom: 1rem; }
.page-hero__sub {
  font-size: 1.1rem;
  color: var(--grey-light);
  max-width: 600px;
  line-height: 1.7;
}
.breadcrumb {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 2rem;
}
.breadcrumb a { color: var(--red); }
.breadcrumb span { margin: 0 0.5rem; opacity: 0.4; }

/* ---- SPLIT (two-track) ---- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}
.split__panel {
  padding: 3rem 2.75rem;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}
.split__panel:last-child { border-right: none; }
.split__panel--red { background: rgba(200,16,46,0.04); }
.split__icon {
  font-size: 2rem;
  margin-bottom: 1.25rem;
}
.split__panel h3 { margin-bottom: 0.75rem; }
.split__panel > p { font-size: 0.95rem; margin-bottom: 1.75rem; }
.split__list {
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.split__list li {
  font-size: 0.875rem;
  color: var(--grey-light);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.split__list li::before {
  content: '→';
  color: var(--red);
  flex-shrink: 0;
  font-size: 0.8rem;
}
.split__panel .btn { margin-top: auto; align-self: flex-start; }

/* ---- SERVICES SPLIT (home page hover panels) ---- */
.services-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 0;
}
.services-split__panel {
  padding: 3rem 2.75rem;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  cursor: default;
  transition: background 0.3s;
}
.services-split__panel:last-child { border-right: none; }
.services-split__panel--red { background: rgba(200,16,46,0.04); }
.services-split__panel--red:hover { background: rgba(200,16,46,0.08); }
.services-split__panel:last-child:hover { background: rgba(255,255,255,0.02); }

.services-split__tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.4rem;
}
.services-split__header h3 { margin-bottom: 0.5rem; }
.services-split__hint {
  font-size: 0.78rem;
  color: var(--grey);
  letter-spacing: 0.04em;
  margin-bottom: 0;
  transition: opacity 0.3s;
}
.services-split__panel:hover .services-split__hint { opacity: 0; }

/* Service list — hidden until hover */
.services-split__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.45s ease, opacity 0.35s ease, margin 0.35s ease;
}
.services-split__panel:hover .services-split__list {
  max-height: 600px;
  opacity: 1;
  margin-top: 1.75rem;
}
.services-split__list li {
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.services-split__list li:first-child { border-top: 1px solid var(--border); }
.ssl__name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.01em;
}
.ssl__desc {
  font-size: 0.82rem;
  color: var(--grey);
  line-height: 1.6;
}

/* CTA row */
.services-split__cta {
  margin-top: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.45s ease, opacity 0.35s ease, margin 0.35s ease;
}
.services-split__panel:hover .services-split__cta {
  max-height: 80px;
  opacity: 1;
  margin-top: 1.75rem;
}

/* ---- SERVICE CARDS ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.25rem;
}
.service-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2rem;
  transition: border-color 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
}
.service-card:hover { border-color: rgba(200,16,46,0.5); transform: translateY(-2px); }
.service-card__tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.625rem;
}
.service-card h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.55rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
  line-height: 1.1;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--grey);
  line-height: 1.7;
  flex-grow: 1;
}

/* ---- PRICING CARDS ---- */
.pricing-section { margin-bottom: 5rem; }
.pricing-section:last-child { margin-bottom: 0; }
.pricing-section__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.625rem;
}
.pricing-section__title { margin-bottom: 0.5rem; }
.pricing-section__sub {
  font-size: 0.95rem;
  color: var(--grey);
  margin-bottom: 2rem;
  max-width: 560px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
  align-items: start;
}
.pricing-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s;
}
.pricing-card:hover { border-color: rgba(200,16,46,0.5); }
.pricing-card--featured { border-color: var(--red); }
.pricing-card__badge {
  background: var(--red);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  padding: 0.45rem;
}
.pricing-card__header {
  padding: 1.75rem 1.75rem 1.5rem;
  border-bottom: 1px solid var(--border);
}
.pricing-card__name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
  line-height: 1.1;
}
.pricing-card__price {
  display: flex;
  align-items: flex-start;
  gap: 0.2rem;
  margin-bottom: 0.375rem;
}
.pricing-card__currency {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  color: var(--red);
  margin-top: 0.4rem;
  letter-spacing: 0.02em;
}
.pricing-card__amount {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  line-height: 1;
  color: var(--red);
  letter-spacing: 0.02em;
}
.pricing-card__amount.placeholder {
  font-size: 2rem;
  color: var(--grey);
  margin-top: 0.6rem;
}
.pricing-card__unit {
  font-size: 1.5rem;
  color: var(--red);
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.04em;
  align-self: flex-end;
  padding-bottom: 0.15em;
}
.pricing-card__cadence {
  font-size: 0.78rem;
  color: var(--grey);
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}
.pricing-card__desc {
  font-size: 0.85rem;
  color: var(--grey);
  line-height: 1.65;
}
.pricing-card__features {
  padding: 1.25rem 1.75rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.pricing-card__features li {
  font-size: 0.85rem;
  color: var(--grey-light);
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  line-height: 1.5;
}
.pricing-card__features li:last-child { border-bottom: none; }
.pricing-card__features li::before {
  content: '✓';
  color: var(--red);
  flex-shrink: 0;
  font-weight: 700;
  font-size: 0.8rem;
  margin-top: 0.1rem;
}
.pricing-card__cta {
  padding: 1.25rem 1.75rem 1.75rem;
}
.pricing-card__cta .btn { width: 100%; }
.pricing-card__bonus {
  margin-top: 0.625rem;
  font-size: 0.78rem;
  color: var(--grey);
  text-align: center;
  line-height: 1.5;
}
.pricing-card__bonus strong { color: var(--red); }

/* ---- ABOUT ---- */
.about-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 4.5rem;
  align-items: start;
}
.about-photo {
  position: sticky;
  top: 6rem;
  aspect-ratio: 3/4;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
/* Home page teaser */
.about-grid--home .about-photo img { object-position: center top; }
/* About page: show full top of image */
.about-grid--about .about-photo img { object-position: center 5%; }
.about-photo__placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  padding: 2rem;
  line-height: 1.8;
}
.about-body h3 { margin-bottom: 1rem; margin-top: 2.5rem; }
.about-body h3:first-child { margin-top: 0; }
.about-body p { margin-bottom: 1.25rem; }
.about-body p:last-child { margin-bottom: 0; }

.certs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 1rem;
}
.cert-item {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.875rem 1rem;
}
.cert-item__org {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.25rem;
}
.cert-item__name {
  font-size: 0.82rem;
  color: var(--grey-light);
  font-weight: 500;
  line-height: 1.4;
}

/* ---- LOCATIONS / HOW WE WORK ---- */
.delivery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.delivery-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2.5rem;
  transition: border-color 0.2s;
}
.delivery-card:hover { border-color: rgba(200,16,46,0.5); }
.delivery-card__icon {
  width: 52px; height: 52px;
  background: rgba(200,16,46,0.1);
  border: 1px solid rgba(200,16,46,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}
.delivery-card h3 { margin-bottom: 0.625rem; }
.delivery-card > p { font-size: 0.95rem; margin-bottom: 1.5rem; }
.delivery-card__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.delivery-card__list li {
  font-size: 0.875rem;
  color: var(--grey-light);
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  line-height: 1.5;
}
.delivery-card__list li:last-child { border-bottom: none; }
.delivery-card__list li::before {
  content: '→';
  color: var(--red);
  flex-shrink: 0;
  font-size: 0.8rem;
  margin-top: 0.15rem;
}
.coverage-bar {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 1.5rem;
}
.coverage-bar__icon { font-size: 2rem; flex-shrink: 0; }
.coverage-bar p { font-size: 0.9rem; margin: 0; }
.coverage-bar strong { color: var(--white); }

/* ---- TESTIMONIAL ---- */
.testimonial {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.testimonial__quote {
  font-size: 1.1rem;
  color: var(--grey-light);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 2.5rem;
  position: relative;
  padding-top: 2rem;
}
.testimonial__quote::before {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: 7rem;
  color: var(--red);
  opacity: 0.2;
  position: absolute;
  top: -2.5rem;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
}
.testimonial__name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
  letter-spacing: 0.04em;
}
.testimonial__role {
  font-size: 0.82rem;
  color: var(--grey);
  margin-top: 0.3rem;
}

/* ---- TESTIMONIALS CAROUSEL ---- */
.reviews-header {
  text-align: center;
  margin-bottom: 3rem;
}
.yelp-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.9rem 1.5rem;
  text-decoration: none;
  transition: border-color 0.2s, transform 0.2s;
  margin-bottom: 2rem;
}
.yelp-badge:hover { border-color: var(--gold); transform: translateY(-2px); }
.yelp-badge__logo {
  font-size: 1.5rem;
}
.yelp-badge__text { text-align: left; }
.yelp-badge__name {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
}
.yelp-badge__rating {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.1rem;
}
.yelp-badge__stars { color: var(--gold); font-size: 0.95rem; letter-spacing: 0.03em; }
.yelp-badge__count { font-size: 0.78rem; color: var(--grey); }

/* Carousel */
.reviews-carousel {
  position: relative;
  overflow: hidden;
}
.reviews-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.review-card {
  min-width: 100%;
  padding: 0 3.5rem;
  box-sizing: border-box;
}
.review-card__inner {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2.5rem 3rem;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  transition: border-color 0.3s;
}
.review-card__inner:hover { border-color: rgba(245,166,35,0.3); }
.review-card__stars { color: var(--gold); font-size: 1.25rem; letter-spacing: 0.08em; margin-bottom: 1.25rem; }
/* Card with photo: 35% photo | 65% text side-by-side */
.review-card__inner:has(.review-card__photo) {
  display: grid;
  grid-template-columns: 35% 1fr;
  gap: 0 1.75rem;
  align-items: start;
  text-align: left;
}
.review-card__inner:has(.review-card__photo) .review-card__stars {
  grid-column: 2;
  margin-bottom: 0.75rem;
}
.review-card__inner:has(.review-card__photo) .review-card__quote {
  grid-column: 2;
}
.review-card__inner:has(.review-card__photo) .review-card__name,
.review-card__inner:has(.review-card__photo) .review-card__context {
  grid-column: 2;
}

/* Photo column */
.review-card__photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 6px;
  object-fit: cover;
  object-position: top center;
  display: block;
  border: 2px solid var(--border);
  grid-row: 1 / span 4;
}
/* Before/after transformation photo */
.review-card__transform {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin: 0 auto 1.5rem;
  max-width: 420px;
  border-radius: 6px;
  overflow: hidden;
}
.review-card__transform img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.review-card__quote {
  font-size: 1.05rem;
  color: var(--grey-light);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 2rem;
}
.review-card__name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
  letter-spacing: 0.05em;
}
.review-card__context {
  font-size: 0.8rem;
  color: var(--grey);
  margin-top: 0.2rem;
}

/* Dots */
.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}
.reviews-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
  padding: 0;
}
.reviews-dot.active { background: var(--gold); transform: scale(1.3); }

/* Nav arrows — floating on carousel sides */
.reviews-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--grey-light);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, color 0.2s;
}
.reviews-arrow--prev { left: 0; }
.reviews-arrow--next { right: 0; }
.reviews-arrow:hover { border-color: var(--gold); color: var(--gold); }

/* ---- PROCESS TIMELINE ---- */
.process-timeline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  margin-top: 3rem;
  padding-bottom: 2rem;
}
/* Connecting line */
.process-timeline::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 28px;
  right: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  z-index: 0;
}
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  flex: 1;
  cursor: default;
}
.process-step__node {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg-3);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  transition: border-color 0.25s, background 0.25s;
}
@media (hover: hover) {
  .process-step:hover .process-step__node {
    border-color: var(--gold);
    background: var(--gold-dim);
  }
}
.process-step__num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  color: var(--gold);
}
.process-step__label {
  margin-top: 0.75rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey-light);
  text-align: center;
  max-width: 80px;
}
/* Hover popup */
.process-step__popup {
  position: absolute;
  top: calc(100% + 1rem);
  left: 50%;
  transform: translateX(-50%);
  width: 240px;
  background: var(--bg-3);
  border: 1px solid var(--gold);
  border-radius: 8px;
  padding: 1.25rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
  transform: translateX(-50%) translateY(6px);
  z-index: 50;
}
/* Keep edge popups from clipping */
.process-step:first-child .process-step__popup { left: 0; transform: translateX(0); }
.process-step:last-child .process-step__popup { left: auto; right: 0; transform: translateX(0); }

@media (hover: hover) {
  .process-step:hover .process-step__popup {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }
  .process-step:first-child:hover .process-step__popup { transform: translateX(0) translateY(0); }
  .process-step:last-child:hover .process-step__popup { transform: translateX(0) translateY(0); }
}

.process-step__popup-title {
  font-weight: 700;
  color: var(--white);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}
.process-step__popup p:last-child {
  color: var(--grey-light);
  font-size: 0.875rem;
  line-height: 1.65;
  margin: 0;
}

/* Mobile: stack vertically */
@media (max-width: 680px) {
  .process-timeline {
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
  }
  .process-timeline::before {
    top: 28px;
    bottom: 28px;
    left: 27px;
    right: auto;
    width: 2px;
    height: auto;
  }
  .process-step {
    display: grid;
    grid-template-columns: 56px 1fr;
    grid-template-rows: auto auto;
    column-gap: 1.25rem;
    width: 100%;
    padding-bottom: 2rem;
  }
  .process-step__node {
    grid-column: 1;
    grid-row: 1 / span 2;
    flex-shrink: 0;
  }
  .process-step__label {
    grid-column: 2;
    grid-row: 1;
    margin-top: 0.9rem;
    text-align: left;
    max-width: none;
    font-size: 0.85rem;
  }
  .process-step__popup {
    grid-column: 2;
    grid-row: 2;
    position: static;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    width: auto;
    border-color: var(--border);
    margin-top: 0.5rem;
    display: block;
  }
}

/* ---- CONTACT / APPLICATION ---- */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 1.75rem;
  align-items: start;
}
.contact-panel {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2.5rem;
}
.contact-panel--pt { border-color: rgba(200,16,46,0.35); }
.contact-panel__tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem;
}
.contact-panel h3 { margin-bottom: 0.75rem; }
.contact-panel > p { font-size: 0.9rem; margin-bottom: 1.75rem; }
.contact-panel__info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
  padding: 1.25rem;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 4px;
}
.contact-panel__info-row {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: var(--grey-light);
}
.contact-panel__info-row span:first-child { font-size: 1rem; flex-shrink: 0; }

/* ---- FORMS ---- */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-light);
  margin-bottom: 0.5rem;
}
.form-label .req { color: var(--red); margin-left: 2px; }
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 1rem; /* 16px minimum prevents iOS auto-zoom on focus */
  transition: border-color 0.2s;
  appearance: none;
  -webkit-appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--red);
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--grey); }
.form-textarea { resize: vertical; min-height: 90px; }
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.form-select option { background: var(--bg-2); color: var(--white); }

.radio-group { display: flex; flex-direction: column; gap: 0.5rem; }
.radio-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color 0.2s;
}
.radio-option:hover { border-color: rgba(200,16,46,0.4); }
.radio-option input[type="radio"] {
  width: 16px; height: 16px;
  accent-color: var(--red);
  flex-shrink: 0;
  cursor: pointer;
}
.radio-option span { font-size: 0.875rem; color: var(--grey-light); }

.form-range-wrap { padding: 0.25rem 0; }
.form-range {
  width: 100%;
  accent-color: var(--red);
  cursor: pointer;
  height: 4px;
}
.range-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 0.375rem;
}
.range-labels span {
  font-size: 0.72rem;
  color: var(--grey);
  letter-spacing: 0.05em;
}
.range-value-display {
  text-align: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--red);
  letter-spacing: 0.04em;
  margin-top: 0.25rem;
}
.range-descriptor {
  text-align: center;
  font-size: 0.82rem;
  color: var(--grey-light);
  font-style: italic;
  letter-spacing: 0.03em;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: opacity 0.2s ease, max-height 0.25s ease, margin 0.25s ease;
  margin-bottom: 0;
}
.range-descriptor.visible {
  max-height: 1.5rem;
  opacity: 1;
  margin-bottom: 0.5rem;
}
.btn-coming-soon {
  display: inline-block;
  padding: 0.7rem 1.4rem;
  border: 1px dashed var(--border);
  color: var(--grey);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  cursor: default;
  border-radius: 2px;
  line-height: 1.5;
}

.service-hint {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: opacity 0.3s ease, max-height 0.35s ease, margin-top 0.3s ease;
  margin-top: 0;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0 1rem;
}
.service-hint.visible {
  max-height: 24rem;
  opacity: 1;
  margin-top: 0.75rem;
  padding: 1rem;
}
.service-hint__heading {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--grey);
  margin-bottom: 0.6rem;
}
.service-hint__list {
  list-style: none;
  padding: 0;
  margin: 0 0 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.service-hint__list li {
  font-size: 0.8rem;
  color: var(--grey-light);
  line-height: 1.55;
}
.service-hint__list strong {
  color: var(--white);
}
.service-hint__link {
  font-size: 0.78rem;
  color: var(--red);
  text-decoration: none;
  letter-spacing: 0.03em;
}
.service-hint__link:hover { text-decoration: underline; }

.form-note {
  font-size: 0.78rem;
  color: var(--grey);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}
.form-submit-row { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; }
.form-submit-row .btn { flex-shrink: 0; }

/* ---- FOOTER ---- */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 4.5rem 0 2rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer__brand p.brand-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.35rem;
  letter-spacing: 0.1em;
  line-height: 1.2;
  margin-bottom: 0.875rem;
}
.footer__brand p.brand-name .red { color: var(--red); }
.footer__tagline {
  font-size: 0.875rem;
  color: var(--grey);
  max-width: 270px;
  margin-bottom: 1.5rem;
  line-height: 1.65;
}
.footer__social { display: flex; gap: 0.75rem; }
.footer__social a {
  width: 38px; height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--grey-light);
  transition: all 0.2s;
}
.footer__social a:hover { border-color: var(--red); color: var(--red); }
.footer__col-heading {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer__links a {
  font-size: 0.875rem;
  color: var(--grey);
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--red); }
.footer__contact-line {
  font-size: 0.875rem;
  color: var(--grey);
  margin-bottom: 0.625rem;
  line-height: 1.5;
}
.footer__contact-line a { color: var(--grey); transition: color 0.2s; }
.footer__contact-line a:hover { color: var(--red); }
.footer__bottom {
  padding-top: 1.75rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
}
.footer__copy { font-size: 0.78rem; color: var(--grey); line-height: 1.6; }
.footer__disclaimer {
  font-size: 0.73rem;
  color: var(--grey);
  max-width: 480px;
  text-align: right;
  line-height: 1.6;
  opacity: 0.8;
}

/* ---- UTILS ---- */
.text-red    { color: var(--red); }
.text-grey   { color: var(--grey); }
.text-center { text-align: center; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-6 { margin-bottom: 3rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-wrap-gap { display: flex; flex-wrap: wrap; gap: 1rem; }

/* Horizontal rule */
.rule {
  border: none;
  border-top: 1px solid var(--border);
  margin: 4rem 0;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }

  .about-grid { grid-template-columns: 1fr; }
  .about-photo { position: static; aspect-ratio: unset; height: 360px; }

  .delivery-grid { grid-template-columns: 1fr; }
  .coverage-bar { flex-direction: column; text-align: center; gap: 1rem; }

  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  .hero__tracks { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .split__panel { border-right: none; border-bottom: 1px solid var(--border); }
  .split__panel:last-child { border-bottom: none; }
  /* Services split — stack on mobile, always show content */
  .services-split { grid-template-columns: 1fr; }
  .services-split__panel { border-right: none; border-bottom: 1px solid var(--border); }
  .services-split__panel:last-child { border-bottom: none; }
  .services-split__hint { display: none; }
  .services-split__list { max-height: 600px; opacity: 1; margin-top: 1.75rem; }
  .services-split__cta { max-height: 80px; opacity: 1; margin-top: 1.75rem; }
  .contact-split { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; }
  .footer__disclaimer { text-align: left; }
  .certs-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .section { padding: 4rem 0; }
  .container { padding: 0 1.25rem; }
  .hero__content { padding: 7.5rem 1.25rem 4rem; grid-template-columns: 1fr; }
  .hero__logo-full { display: none; }
  .page-hero { padding: 8rem 0 3.5rem; }
  h1 { font-size: 3rem; }
  h2 { font-size: 2rem; }

  /* Larger touch targets for buttons */
  .btn { min-height: 48px; white-space: normal; text-align: center; }

  /* Full-width submit row on mobile */
  .form-submit-row { flex-direction: column; align-items: stretch; }
  .form-submit-row .btn { width: 100%; }
  .form-submit-row .form-note { text-align: center; }

  /* Bigger radio tap targets */
  .radio-option { padding: 0.75rem; }

  /* Larger range slider thumb for touch */
  .form-range { height: 6px; }
  .form-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--red);
    cursor: pointer;
    margin-top: -11px;
  }
  .form-range::-moz-range-thumb {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--red);
    border: none;
    cursor: pointer;
  }

  /* btn-coming-soon full width on mobile */
  .btn-coming-soon { display: block; width: 100%; text-align: center; }

  /* Stack photo above text on narrow screens */
  .review-card__inner:has(.review-card__photo) {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .review-card__photo {
    width: 100%;
    max-width: 200px;
    aspect-ratio: 3 / 4;
    border-radius: 8px;
    object-fit: cover;
    object-position: top center;
    margin: 0 auto 1.25rem;
    grid-row: auto;
  }
  .review-card__inner:has(.review-card__photo) .review-card__stars,
  .review-card__inner:has(.review-card__photo) .review-card__quote,
  .review-card__inner:has(.review-card__photo) .review-card__name,
  .review-card__inner:has(.review-card__photo) .review-card__context {
    grid-column: 1;
  }
}
