/* ============================================================
   CWP Performance Horses — Main Stylesheet
   Theme: LIGHT (warm near-white #F7F8F4) with LIME accent #84CC16
   ============================================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #F7F8F4;
  --bg-soft: #EEF2E3;
  --bg-panel: #FFFFFF;
  --ink: #16180F;
  --ink-soft: #3E4322;
  --muted: #5C6240;
  --line: #E2E8D2;
  --accent: #84CC16;
  --accent-dark: #65A30D;
  --accent-deep: #4D7C0F;
  --accent-pale: #D9F99D;
  --ink-dark: #1D2408;
  --focus: #84CC16;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background-color: var(--bg);
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: "Playfair Display", Georgia, serif;
  color: var(--ink);
  line-height: 1.15;
  font-weight: 700;
}

a {
  color: var(--accent-deep);
  text-decoration: none;
}

a:hover {
  color: var(--accent-dark);
}

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

.home-page {
  width: 100%;
}

.section-inner {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-kicker {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 0.6rem;
}

.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.section-head h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  max-width: 620px;
}

.section-head-note {
  max-width: 380px;
  color: var(--muted);
  font-size: 1rem;
}

/* ============ HORSESHOE NAVIGATION ============ */

.horseshoe-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--bg);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(29, 36, 8, 0.04);
}

.horseshoe-nav.is-scrolled {
  box-shadow: 0 8px 24px rgba(29, 36, 8, 0.10);
}

.horseshoe-nav-inner {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.wordmark {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.brand:hover .wordmark {
  color: var(--accent-deep);
}

/* CSS-drawn horseshoe */
.horseshoe {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 26px;
  border: 4px solid var(--accent);
  border-top: none;
  border-radius: 0 0 16px 16px;
  flex-shrink: 0;
}

.horseshoe::before,
.horseshoe::after {
  content: "";
  position: absolute;
  top: -4px;
  width: 10px;
  height: 8px;
  background: var(--accent-dark);
  border-radius: 4px;
}

.horseshoe::before {
  left: -5px;
}

.horseshoe::after {
  right: -5px;
}

.hole {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--ink-dark);
}

.hole-1 { top: 7px; left: 5px; }
.hole-2 { top: 15px; left: 6px; }
.hole-3 { top: 6px; right: 5px; }
.hole-4 { top: 14px; right: 6px; }
.hole-5 { bottom: 4px; left: 8px; }
.hole-6 { bottom: 4px; right: 8px; }

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.75rem;
  margin-left: auto;
}

.nav-links a {
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
  padding: 6px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.2s ease;
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 22px;
  background: var(--accent);
  color: var(--ink-dark);
  font-weight: 700;
  font-size: 0.92rem;
  border-radius: 10px;
  flex-shrink: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}

.nav-cta:hover {
  background: var(--accent-dark);
  color: var(--ink-dark);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}

.nav-toggle .bar {
  width: 24px;
  height: 3px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle.is-open .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle.is-open .bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ============ HORSE HERO ============ */

.horse-hero {
  background:
    radial-gradient(1200px 520px at 85% -10%, #EAF4D2 0%, rgba(247, 248, 244, 0) 60%),
    linear-gradient(180deg, #F2F6E8 0%, var(--bg) 100%);
  padding: 64px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-deep);
  background: var(--accent-pale);
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}

.hero-copy h1 {
  font-size: clamp(2.4rem, 5vw, 3.7rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.hero-copy h1 .accent {
  color: var(--accent-deep);
}

.hero-sub {
  font-size: 1.08rem;
  color: var(--ink-soft);
  max-width: 540px;
  margin-bottom: 2rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.98rem;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: var(--ink-dark);
}

.btn-primary:hover {
  background: var(--accent-dark);
  color: var(--ink-dark);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent-deep);
  transform: translateY(-2px);
}

.btn-light {
  background: var(--bg);
  color: var(--ink-dark);
}

.btn-light:hover {
  background: var(--accent-pale);
  transform: translateY(-2px);
}

.btn-outline-light {
  background: transparent;
  color: var(--bg);
  border-color: var(--bg);
}

.btn-outline-light:hover {
  background: var(--bg);
  color: var(--ink-dark);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
}

/* CSS-drawn horse */
.hero-art {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.horse-glow {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, #D9F99D 0%, rgba(217, 249, 157, 0) 70%);
}

.horse-figure {
  position: relative;
  width: 320px;
  height: 400px;
}

.horse-neck {
  position: absolute;
  top: 170px;
  left: 120px;
  width: 120px;
  height: 220px;
  background: var(--ink-dark);
  border-radius: 50% 50% 34px 34px / 46% 46% 30px 30px;
  transform: rotate(-6deg);
}

.horse-head {
  position: absolute;
  top: 52px;
  left: 18px;
  width: 210px;
  height: 130px;
  background: var(--ink-dark);
  border-radius: 90px 70px 70px 70px;
  transform: rotate(-7deg);
}

.horse-muzzle {
  position: absolute;
  top: 96px;
  left: 4px;
  width: 78px;
  height: 64px;
  background: var(--ink-dark);
  border-radius: 40px 20px 26px 40px;
}

.horse-ear {
  position: absolute;
  top: 30px;
  left: 128px;
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 54px solid var(--accent);
  transform: rotate(-14deg);
}

.horse-eye {
  position: absolute;
  top: 88px;
  left: 128px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--bg);
  box-shadow: inset 0 0 0 3px var(--ink-dark);
}

.horse-nostril {
  position: absolute;
  top: 132px;
  left: 26px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
}

.horse-rein {
  position: absolute;
  top: 142px;
  left: 52px;
  width: 3px;
  height: 150px;
  background: var(--accent-dark);
  border-radius: 2px;
  transform: rotate(24deg);
  transform-origin: top center;
}

.horse-rein::after {
  content: "";
  position: absolute;
  top: 0;
  left: -3px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent-dark);
}

.mane {
  position: absolute;
  background: var(--accent);
  border-radius: 20px;
}

.mane-1 {
  top: 96px;
  left: 176px;
  width: 26px;
  height: 84px;
  transform: rotate(8deg);
}

.mane-2 {
  top: 190px;
  left: 168px;
  width: 24px;
  height: 96px;
  transform: rotate(6deg);
}

.mane-3 {
  top: 276px;
  left: 156px;
  width: 22px;
  height: 90px;
  transform: rotate(4deg);
}

.spark {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-dark);
}

.spark-1 { top: 40px; right: 40px; }
.spark-2 { bottom: 70px; right: 20px; width: 7px; height: 7px; }
.spark-3 { top: 150px; right: 6px; width: 6px; height: 6px; background: var(--accent); }

/* ============ STATEMENT ROW ============ */

.statement-row {
  background: var(--ink-dark);
  padding: 64px 24px;
  text-align: center;
}

.statement-text {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.5rem, 3.4vw, 2.4rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--bg);
  max-width: 940px;
  margin: 0 auto;
}

.statement-text::before {
  content: "";
  display: block;
  width: 64px;
  height: 4px;
  background: var(--accent);
  border-radius: 2px;
  margin: 0 auto 28px;
}

/* ============ ABOUT ============ */

.about-section {
  padding: 88px 0;
  background: var(--bg);
}

.about-intro {
  margin-bottom: 2.75rem;
}

.about-intro h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  max-width: 700px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
}

.about-lead p {
  font-size: 1.06rem;
  color: var(--ink-soft);
  margin-bottom: 1.25rem;
}

.about-points {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-point {
  display: flex;
  gap: 1rem;
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.5rem;
}

.point-mark {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.about-point h3 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}

.about-point p {
  color: var(--muted);
  font-size: 0.96rem;
}

/* ============ STATS ============ */

.stats-section {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 56px 0;
}

.stats-section .section-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-num {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 800;
  color: var(--accent-deep);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.02em;
}

/* ============ SERVICES (horizontal scroll + detail) ============ */

.services-section {
  padding: 88px 0;
  background: var(--bg);
}

.service-scroll {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  padding: 0.5rem 4px 1.25rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) var(--line);
}

.service-scroll::-webkit-scrollbar {
  height: 8px;
}

.service-scroll::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 4px;
}

.service-scroll::-webkit-scrollbar-track {
  background: var(--line);
  border-radius: 4px;
}

.service-card {
  flex: 0 0 300px;
  scroll-snap-align: start;
  text-align: left;
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.75rem;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  font-family: inherit;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 14px 30px rgba(29, 36, 8, 0.08);
}

.service-card.is-active {
  border-color: var(--accent);
  background: var(--accent-pale);
}

.card-index {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent-deep);
  display: block;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
}

.service-card p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.card-link {
  font-weight: 700;
  color: var(--accent-deep);
  font-size: 0.92rem;
}

.service-detail {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2rem;
  background: var(--ink-dark);
  border-radius: 20px;
  padding: 2.5rem;
  margin-top: 0.75rem;
}

.service-detail .section-kicker {
  color: var(--accent-pale);
}

.detail-copy h3 {
  font-size: 1.7rem;
  color: var(--bg);
  margin-bottom: 1rem;
}

.detail-copy p {
  color: #D9E3C6;
  font-size: 1.02rem;
  margin-bottom: 1.25rem;
}

.detail-copy ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.detail-copy ul li {
  color: #D9E3C6;
  padding-left: 1.5rem;
  position: relative;
}

.detail-copy ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
}

.detail-cta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
  border-left: 1px solid rgba(217, 249, 157, 0.18);
  padding-left: 2rem;
}

.detail-price {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-pale);
}

/* ============ PROCESS ============ */

.process-section {
  padding: 88px 0;
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
}

.process-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  counter-reset: step;
}

.process-step {
  position: relative;
  padding: 1.5rem 1.25rem 0;
}

.process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 2.3rem;
  left: 68%;
  width: 64%;
  height: 2px;
  background: var(--accent);
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--ink-dark);
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 800;
  font-size: 1.05rem;
  margin-bottom: 1.1rem;
  position: relative;
  z-index: 1;
}

.process-step h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.process-step p {
  color: var(--muted);
  font-size: 0.94rem;
}

/* ============ PROGRAMS (comparison table) ============ */

.programs-section {
  padding: 88px 0;
  background: var(--bg);
}

.compare-table {
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: var(--bg-panel);
}

.compare-head {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  background: var(--ink-dark);
}

.compare-col {
  padding: 1.5rem;
}

.compare-head .compare-feature {
  padding: 1.5rem;
}

.compare-head .compare-col h3 {
  color: var(--bg);
  font-size: 1.25rem;
  margin-bottom: 0.4rem;
}

.compare-head .compare-col p {
  color: #C8D4AE;
  font-size: 0.92rem;
}

.compare-head .compare-col-accent {
  background: var(--accent);
}

.compare-head .compare-col-accent h3 {
  color: var(--ink-dark);
}

.compare-head .compare-col-accent p {
  color: var(--ink-soft);
}

.compare-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  border-top: 1px solid var(--line);
}

.compare-row:nth-child(even) {
  background: var(--bg-soft);
}

.compare-feature {
  padding: 1.1rem 1.5rem;
  font-weight: 700;
  color: var(--ink);
  display: flex;
  align-items: center;
}

.compare-row .compare-col {
  display: flex;
  align-items: center;
  color: var(--ink-soft);
  font-size: 0.96rem;
  border-left: 1px solid var(--line);
}

.compare-row .compare-col-accent {
  background: #F3FBDD;
}

.compare-row .compare-col-accent {
  color: var(--accent-deep);
  font-weight: 600;
}

/* ============ CTA BAND ============ */

.cta-band {
  background: var(--accent);
  padding: 72px 0;
}

.cta-band-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.cta-copy h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  color: var(--ink-dark);
  margin-bottom: 0.9rem;
}

.cta-copy p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  max-width: 560px;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.cta-actions .btn {
  justify-content: center;
}

/* ============ CONTACT ============ */

.contact-section {
  padding: 88px 0;
  background: var(--bg);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
}

.contact-info h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.5rem);
  margin-bottom: 0.9rem;
}

.contact-info > p {
  color: var(--muted);
  margin-bottom: 2rem;
  font-size: 1.03rem;
}

.contact-block {
  border-top: 1px solid var(--line);
  padding: 1.1rem 0;
}

.contact-block:last-child {
  border-bottom: 1px solid var(--line);
}

.contact-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 0.3rem;
}

.contact-block a {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
}

.contact-block p {
  color: var(--ink-soft);
}

.contact-form {
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 2rem;
  box-shadow: 0 18px 40px rgba(29, 36, 8, 0.06);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-field {
  margin-bottom: 1.1rem;
  display: flex;
  flex-direction: column;
}

.form-field label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.4rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  font-family: inherit;
  font-size: 0.98rem;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  width: 100%;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
  border-color: var(--accent);
}

.form-note {
  margin-top: 0.9rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--accent-deep);
  min-height: 1.2em;
}

/* ============ FOOTER ============ */

.site-footer {
  background: var(--ink-dark);
  border-top: 4px solid var(--accent);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 2rem;
  padding-top: 56px;
  padding-bottom: 48px;
}

.footer-brand .wordmark {
  color: var(--bg);
}

.footer-brand:hover .wordmark {
  color: var(--accent-pale);
}

.footer-brand-col p {
  color: #C8D4AE;
  font-size: 0.94rem;
  margin-top: 1rem;
  max-width: 280px;
}

.footer-col h4 {
  color: var(--bg);
  font-size: 1rem;
  margin-bottom: 1.1rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-col ul a {
  color: #C8D4AE;
  font-size: 0.94rem;
}

.footer-col ul a:hover {
  color: var(--accent-pale);
}

.footer-col ul li {
  color: #C8D4AE;
  font-size: 0.94rem;
}

.footer-bottom {
  border-top: 1px solid rgba(217, 249, 157, 0.16);
  padding: 20px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom p {
  color: #9FB083;
  font-size: 0.88rem;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  color: #C8D4AE;
  font-size: 0.88rem;
  font-weight: 600;
}

.footer-legal a:hover {
  color: var(--accent-pale);
}

/* ============ SCROLL REVEAL ============ */

.fade-up {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: none;
}

/* ============ RESPONSIVE ============ */

@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-art {
    order: -1;
    min-height: 320px;
  }

  .process-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .process-step:not(:last-child)::after {
    display: none;
  }

  .about-grid,
  .contact-inner,
  .service-detail,
  .cta-band-inner {
    grid-template-columns: 1fr;
  }

  .detail-cta {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid rgba(217, 249, 157, 0.18);
    padding-top: 1.5rem;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 800px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 30px rgba(29, 36, 8, 0.10);
    padding: 0.5rem 0;
    display: none;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 14px 24px;
    font-size: 1rem;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .horseshoe-nav-inner {
    position: relative;
  }
}

@media (max-width: 640px) {
  .stats-section .section-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .process-list {
    grid-template-columns: 1fr;
  }

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

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .compare-table {
    overflow-x: auto;
  }

  .compare-head,
  .compare-row {
    min-width: 560px;
  }

  .horse-hero {
    padding: 40px 0 56px;
  }
}
