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

:root {
  --clr-terra: #C04E27;
  --clr-terra-light: #E06232;
  --clr-charcoal: #1A1A1A;
  --clr-charcoal-mid: #2D2D2D;
  --clr-cream: #F5EDE4;
  --clr-cream-mid: #EDE0D4;
  --clr-warm-white: #FFF8F2;
  --clr-text-dark: #1A1A1A;
  --clr-text-mid: #5A4A40;
  --ff-display: 'Oswald', 'Arial Narrow', sans-serif;
  --ff-body: 'Inter', system-ui, sans-serif;
  --radius-card: 18px;
  --radius-btn: 9999px;

  /* RedHand design-system bridge (--rh-*) — matched by theme-verifier */
  --rh-bg: #1A1A1A;
  --rh-surface: #2D2D2D;
  --rh-text: #F5EDE4;
  --rh-text-2: #C8B8AF;
  --rh-accent: #C04E27;
  --rh-accent-ink: #FFFFFF;
  --rh-border: #3A3030;
  --rh-radius-card: 18px;
  --rh-radius-control: 10px;
  --rh-font-display: 'Oswald';
  --rh-font-body: 'Inter';
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-body);
  background: var(--clr-warm-white);
  color: var(--clr-text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ─────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s, padding 0.4s;
}
.nav.scrolled {
  background: var(--clr-charcoal);
  padding: 0.875rem 2rem;
  box-shadow: 0 2px 30px rgba(0,0,0,0.4);
}
.nav-brand {
  font-family: var(--ff-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  font-size: 1.15rem;
  color: var(--clr-cream);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav-brand img { height: 36px; width: auto; filter: brightness(0) invert(1); }
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  color: rgba(245,237,228,0.85);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--clr-cream); }
.nav-cta {
  background: var(--clr-terra) !important;
  color: white !important;
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-btn);
  opacity: 1 !important;
}
.nav-cta:hover { background: var(--clr-terra-light) !important; }

/* ── HERO (diagonal split) ───────────── */
.hero {
  position: relative;
  background: var(--clr-charcoal);
}
.hero.hero-diagonal {
  display: grid;
  grid-template-columns: 45% 55%;
  align-items: stretch;
  min-height: 94vh;
  overflow: hidden;
  padding: 0;
}
.hero-panel-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--clr-charcoal);
  padding: 8.5rem 3rem 4rem 2rem;
  clip-path: polygon(0 0, 93% 0, 100% 50%, 93% 100%, 0 100%);
  margin-right: -7%;
  filter: drop-shadow(4px 0 0 var(--clr-terra));
  color: var(--clr-cream);
}
.hero-panel-content .hero-title,
.hero-panel-content .hero-sub,
.hero-panel-content .hero-actions { max-width: 32rem; }
.hero-photo-panel {
  position: relative;
  overflow: hidden;
}
.hero-photo-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-photo-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,26,0.55) 0%, rgba(26,26,26,0) 35%);
}
.hero-badge {
  position: absolute;
  z-index: 4;
  top: 3rem;
  left: 2.5rem;
  background: var(--clr-terra);
  color: white;
  padding: 1.4rem 1.75rem;
  border-radius: var(--radius-card);
  box-shadow: 0 24px 50px rgba(0,0,0,0.35);
  line-height: 1;
}
.hero-badge-num {
  display: block;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 2.75rem;
  letter-spacing: -0.02em;
}
.hero-badge-label {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.4;
  max-width: 9ch;
}
.hero-eyebrow { margin-bottom: 1.5rem; }
.hero-title {
  font-family: var(--ff-display);
  text-transform: uppercase;
  font-size: clamp(2.9rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.hero-title em { color: var(--clr-terra); font-style: normal; }
.hero-sub {
  font-family: var(--ff-body);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  font-weight: 400;
  font-style: normal;
  opacity: 0.78;
  margin-bottom: 2.25rem;
  line-height: 1.65;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(245,237,228,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(245,237,228,0.4), transparent);
}

/* ── BUTTONS ─────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  border-radius: var(--radius-btn);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform 0.2s, background 0.2s, border-color 0.2s, color 0.2s;
  letter-spacing: 0.04em;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--clr-terra); color: white; }
.btn-primary:hover { background: var(--clr-terra-light); }
.btn-outline { background: transparent; color: var(--clr-cream); border: 2px solid rgba(245,237,228,0.4); }
.btn-outline:hover { border-color: var(--clr-cream); background: rgba(245,237,228,0.08); }
.btn-white { background: white; color: var(--clr-terra); }
.btn-white:hover { background: var(--clr-cream); }
.btn-terra-outline { background: transparent; color: var(--clr-terra); border: 2px solid var(--clr-terra); }
.btn-terra-outline:hover { background: var(--clr-terra); color: white; }

/* ── MARQUEE ─────────────────────────── */
.marquee-strip {
  background: var(--clr-terra);
  padding: 0.85rem 0;
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.marquee-track {
  display: inline-flex;
  gap: 0;
  animation: marquee 30s linear infinite;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 2.5rem;
  padding: 0 2.5rem;
}
.marquee-item span:not(.marquee-dot) {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: white;
}
.marquee-dot {
  flex-shrink: 0;
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
}
.marquee-dot::before { content: '\2733'; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
  .marquee-strip { overflow-x: auto; }
}

/* ── STAT BAND (full-width terra) ────── */
.stat-band {
  background: var(--clr-terra);
  padding: 3rem 2rem;
}
.stat-band-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}
.stat-band-item {
  flex: 1 1 220px;
  text-align: center;
  padding: 0.5rem 2rem;
  border-right: 1px solid rgba(255,255,255,0.25);
}
.stat-band-item:last-child { border-right: none; }
.stat-band-num {
  display: block;
  font-family: var(--ff-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(2.1rem, 4.5vw, 3.1rem);
  color: white;
  line-height: 1;
  letter-spacing: -0.01em;
}
.stat-band-label {
  display: block;
  margin-top: 0.6rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
}

/* ── SECTION BASE ────────────────────── */
.section { padding: 5.5rem 2rem; }
.container { max-width: 1200px; margin: 0 auto; }

/* label-chip: small pill badge with terra dot, used via .section-label */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--ff-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-style: italic;
  color: var(--clr-charcoal);
  border: 1.5px solid rgba(26,26,26,0.15);
  padding: 0.4rem 1.1rem 0.4rem 0.8rem;
  border-radius: var(--radius-btn);
  margin-bottom: 1.25rem;
}
.section-label::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--clr-terra);
  flex-shrink: 0;
}
.section-dark .section-label,
.contact-section .section-label,
.hero-panel-content .section-label,
.why-split-content.on-dark .section-label {
  color: var(--clr-cream);
  border-color: rgba(245,237,228,0.25);
}

.section-title {
  font-family: var(--ff-display);
  text-transform: uppercase;
  font-size: clamp(2.1rem, 4.6vw, 4rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.015em;
  margin-bottom: 1.25rem;
  color: var(--clr-charcoal);
}
.section-sub {
  font-size: 1.02rem;
  color: var(--clr-text-mid);
  max-width: 54ch;
  line-height: 1.75;
}
.section-dark { background: var(--clr-charcoal); }
.section-dark .section-title { color: var(--clr-cream); }
.section-dark .section-sub { color: rgba(245,237,228,0.65); }
.section-cream { background: var(--clr-cream); }

/* ── SERVICE CARDS (banded) ──────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.75rem;
  margin-top: 3rem;
}
.service-card {
  background: white;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  transition: transform 0.25s, box-shadow 0.25s;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 50px rgba(0,0,0,0.15);
}
.card-img-wrap {
  height: 210px;
  overflow: hidden;
  position: relative;
}
.card-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.service-card:hover .card-img-wrap img { transform: scale(1.06); }
.card-band {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  background: var(--clr-terra);
  padding: 0.7rem 1.25rem;
}
.card-band span {
  color: white;
  font-family: var(--ff-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.card-body { padding: 1.5rem 1.5rem 1.75rem; flex: 1; display: flex; flex-direction: column; }
.card-tag {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clr-terra);
  margin-bottom: 0.5rem;
}
.card-title {
  font-family: var(--ff-display);
  text-transform: uppercase;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 0.75rem;
  color: var(--clr-charcoal);
}
.card-desc {
  font-size: 0.875rem;
  color: var(--clr-text-mid);
  line-height: 1.65;
  margin-bottom: 1.4rem;
  flex: 1;
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  align-self: flex-start;
  border: 2px solid var(--clr-terra);
  color: var(--clr-terra);
  padding: 0.55rem 1.25rem;
  border-radius: var(--radius-btn);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.service-card:hover .card-link { background: var(--clr-terra); color: white; }

/* ── WHY-SPLIT (photo + overlapping badge + checklist) ── */
.why-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--clr-cream);
}
.why-split-media {
  position: relative;
  min-height: 480px;
  overflow: hidden;
}
.why-split-media img { width: 100%; height: 100%; object-fit: cover; }
.why-split-badge {
  position: absolute;
  left: 2rem;
  bottom: 2rem;
  z-index: 2;
  background: var(--clr-charcoal);
  color: var(--clr-cream);
  padding: 1.5rem 1.75rem;
  border-radius: var(--radius-card);
  box-shadow: 0 24px 50px rgba(0,0,0,0.3);
  line-height: 1;
}
.why-split-badge-num {
  display: block;
  font-family: var(--ff-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 2.5rem;
  letter-spacing: -0.01em;
  color: var(--clr-terra);
}
.why-split-badge-label {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.why-split-content {
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.why-split-content .section-title { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }

/* ── CHECK LIST (terra circles) ──────── */
.check-list { list-style: none; margin: 1.75rem 0; display: flex; flex-direction: column; gap: 1rem; }
.check-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--clr-text-mid);
}
.check-circle {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--clr-terra);
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
}

/* ── SPLIT SECTION (activities) ──────── */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}
.split-img { position: relative; overflow: hidden; }
.split-img img { width: 100%; height: 100%; object-fit: cover; }
.split-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(26,26,26,0.1), transparent);
}
.split-content {
  padding: 4.5rem 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--clr-cream);
}
.split-content .section-title { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }

/* ── BENEFITS LIST (terra circle icons) ── */
.benefits-list { list-style: none; margin-top: 1.75rem; display: flex; flex-direction: column; gap: 1rem; }
.benefit-item { display: flex; align-items: flex-start; gap: 1rem; }
.benefit-icon {
  width: 38px; height: 38px;
  background: var(--clr-terra);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: white;
  font-size: 1rem;
}
.benefit-text { font-size: 0.9rem; color: var(--clr-text-mid); line-height: 1.55; padding-top: 0.4rem; }

/* ── PARTNER LOGOS (discount section) ── */
.partners-strip {
  background: var(--clr-cream);
  padding: 3.5rem 2rem;
}
.partners-strip .section-label { display: inline-flex; }
.partners-strip .container { text-align: center; }
.partners-row {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.partner-card {
  background: white;
  border-radius: var(--radius-card);
  padding: 1.25rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  min-width: 160px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.partner-name { font-weight: 700; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.01em; }
.partner-discount {
  font-size: 0.75rem;
  color: var(--clr-terra);
  font-weight: 700;
  text-align: center;
}

/* ── CONTACT SECTION ─────────────────── */
.contact-section {
  background: var(--clr-charcoal);
  color: var(--clr-cream);
  padding: 5.5rem 2rem;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  max-width: 1000px;
  margin: 0 auto;
  align-items: start;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}
.contact-icon {
  width: 44px; height: 44px;
  background: rgba(224,98,50,0.18);
  border: 1px solid rgba(224,98,50,0.3);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--clr-terra-light);
}
.contact-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-terra-light);
  margin-bottom: 0.25rem;
}
.contact-value { font-size: 1rem; }
.contact-value a { color: var(--clr-cream); text-decoration: none; transition: color 0.2s; }
.contact-value a:hover { color: var(--clr-terra); }

/* FORM */
.form-field { margin-bottom: 1rem; }
.form-field label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,237,228,0.55);
  margin-bottom: 0.4rem;
}
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 0.875rem 1.125rem;
  background: rgba(245,237,228,0.06);
  border: 1px solid rgba(245,237,228,0.15);
  border-radius: 10px;
  color: var(--clr-cream);
  font-family: var(--ff-body);
  font-size: 0.95rem;
  transition: border-color 0.2s, background 0.2s;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(245,237,228,0.3); }
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--clr-terra);
  background: rgba(245,237,228,0.09);
}
.form-field textarea { min-height: 110px; resize: vertical; }
.form-field select { cursor: pointer; }
.form-field select option { background: var(--clr-charcoal); color: var(--clr-cream); }

/* ── CTA BANNER ──────────────────────── */
.cta-banner {
  background: var(--clr-terra);
  color: white;
  padding: 4.5rem 2rem;
  text-align: center;
}
.cta-banner .section-title { color: white; }
.cta-banner .section-sub { color: rgba(255,255,255,0.82); max-width: 55ch; margin: 0 auto 2.5rem; }

/* ── FOOTER ──────────────────────────── */
.footer {
  background: #111;
  color: rgba(245,237,228,0.55);
  padding: 4rem 2rem 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto 2.5rem;
}
.footer-brand-name {
  font-family: var(--ff-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.3rem;
  color: var(--clr-cream);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}
.footer-tagline { font-size: 0.875rem; line-height: 1.65; margin-bottom: 1.25rem; }
.footer-contact a { color: var(--clr-terra); text-decoration: none; font-size: 0.875rem; display: block; margin-bottom: 0.3rem; }
.footer-col h4 {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,237,228,0.4);
  margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a { color: rgba(245,237,228,0.55); text-decoration: none; font-size: 0.875rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--clr-cream); }
.footer-bottom {
  border-top: 1px solid rgba(245,237,228,0.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  font-size: 0.78rem;
}
.footer-bottom a { color: rgba(245,237,228,0.55); text-decoration: none; }
.footer-bottom a:hover { color: var(--clr-cream); }

/* ── PAGE HEADER (inner pages) ───────── */
.page-header {
  background: var(--clr-charcoal);
  color: var(--clr-cream);
  padding: 9rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}
.page-header-bg { position: absolute; inset: 0; }
.page-header-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.3; }
.page-header-grad {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(26,26,26,0.75), rgba(26,26,26,0.55));
}
.page-header-content { position: relative; z-index: 2; max-width: 700px; }
.page-header-eyebrow {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clr-terra-light);
  background: rgba(224,98,50,0.15);
  border: 1px solid rgba(224,98,50,0.35);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-btn);
  margin-bottom: 1.25rem;
}
.page-header h1 {
  font-family: var(--ff-display);
  text-transform: uppercase;
  font-size: clamp(2.6rem, 6vw, 4.75rem);
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: -0.015em;
  margin-bottom: 1rem;
}
.page-header .lead {
  font-size: 1.05rem;
  opacity: 0.78;
  font-style: normal;
  font-family: var(--ff-body);
  max-width: 55ch;
}

/* ── BREADCRUMB ──────────────────────── */
.breadcrumb {
  background: var(--clr-cream);
  padding: 0.875rem 2rem;
  font-size: 0.8rem;
  color: var(--clr-text-mid);
}
.breadcrumb a { color: var(--clr-terra); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin: 0 0.45rem; opacity: 0.5; }

/* ── CONTENT BLOCK ───────────────────── */
.content-wrap {
  max-width: 820px;
  margin: 0 auto;
  padding: 4rem 2rem;
}
.content-wrap p { margin-bottom: 1.25rem; font-size: 1.02rem; line-height: 1.8; color: var(--clr-text-mid); }
.content-wrap h2 {
  font-family: var(--ff-display);
  text-transform: uppercase;
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--clr-charcoal);
  margin: 2.5rem 0 1rem;
}
.content-wrap h3 {
  font-family: var(--ff-display);
  text-transform: uppercase;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.005em;
  color: var(--clr-charcoal);
  margin: 1.75rem 0 0.75rem;
}

/* PRICING TABLE */
.pricing-table { width: 100%; border-collapse: collapse; margin: 2rem 0; font-size: 0.92rem; }
.pricing-table th {
  background: var(--clr-terra); color: white; padding: 0.875rem 1.25rem; text-align: left;
  font-family: var(--ff-display); text-transform: uppercase; font-weight: 700; letter-spacing: 0.01em;
}
.pricing-table td { padding: 0.875rem 1.25rem; border-bottom: 1px solid var(--clr-cream-mid); }
.pricing-table tr:nth-child(even) td { background: var(--clr-cream); }

/* RULES LIST */
.rules-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; margin: 1.5rem 0; }
.rules-list li { padding-left: 1.5rem; position: relative; font-size: 0.95rem; color: var(--clr-text-mid); line-height: 1.55; }
.rules-list li::before { content: '—'; position: absolute; left: 0; color: var(--clr-terra); font-weight: 700; }

/* LOCATIONS GRID */
.locations-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin-top: 2.5rem; }
.location-card {
  background: white;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
}
.location-card-header {
  background: var(--clr-terra);
  color: white;
  padding: 1.75rem;
}
.location-card-header h3 {
  font-family: var(--ff-display);
  text-transform: uppercase;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.005em;
  margin-bottom: 0.25rem;
}
.location-card-header .sub { font-size: 0.8rem; opacity: 0.85; }
.location-card-body { padding: 1.5rem; }
.location-detail { font-size: 0.875rem; color: var(--clr-text-mid); margin-bottom: 0.6rem; display: flex; gap: 0.6rem; }
.location-detail a { color: var(--clr-terra); text-decoration: none; }
.location-detail a:hover { text-decoration: underline; }
.location-card-body .btn { margin-top: 1.25rem; width: 100%; justify-content: center; }

/* PRIVACY/LEGAL */
.legal-content p { margin-bottom: 1rem; }
.legal-content h2 { margin-top: 2rem; margin-bottom: 0.75rem; }

/* ── RESPONSIVE ──────────────────────── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hero.hero-diagonal { grid-template-columns: 1fr; min-height: auto; }
  .hero-panel-content {
    clip-path: none;
    margin-right: 0;
    filter: none;
    padding: 7rem 1.5rem 3rem;
  }
  .hero-photo-panel { height: 320px; order: -1; }
  .hero-badge { top: 1.25rem; right: 1.25rem; left: auto; bottom: auto; padding: 1rem 1.25rem; }
  .hero-badge-num { font-size: 2rem; }
  .why-split { grid-template-columns: 1fr; }
  .why-split-media { min-height: 320px; }
  .why-split-content { padding: 3.5rem 1.5rem; }
  .split-section { grid-template-columns: 1fr; }
  .split-img { height: 280px; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .section { padding: 3.5rem 1.25rem; }
  .services-grid { grid-template-columns: 1fr; }
  .stat-band-item { flex: 1 1 45%; border-right: none; padding: 0.75rem 0.5rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
  .hero-title { font-size: clamp(2.3rem, 12vw, 4rem); }
  .page-header { padding: 7rem 1.25rem 3rem; }
}

/* ── SKIP LINK ───────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--clr-terra);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 0 0 8px 8px;
  font-size: 0.875rem;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }
