/* ========================================================================
   Newcastle Canine — Site components
   ======================================================================== */

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 120;
  pointer-events: none;
  background: transparent;
}
.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--brand), var(--gold));
  box-shadow: 0 0 18px rgba(142,31,31,.22);
}

/* NAV ---------------------------------------------------------------- */
.nav {
  position: sticky; top: 0; z-index: 80;
  background: rgba(242,237,227,.85);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--rule-soft);
  transition: box-shadow var(--d-2) var(--ease), background var(--d-2) var(--ease);
}
.nav.is-scrolled { box-shadow: var(--shadow-sm); background: rgba(242,237,227,.94); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--s-6);
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: var(--s-4) var(--s-6);
}
.brand {
  display: flex; align-items: center; gap: var(--s-3);
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 1.18rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1;
}
.brand-logo {
  display: block;
  width: clamp(190px, 18vw, 286px);
  height: auto;
  max-height: 50px;
  object-fit: contain;
}
.footer .brand-logo,
.form-page-header .brand-logo,
.ty-brand .brand-logo {
  width: clamp(220px, 22vw, 330px);
  max-height: 58px;
}
.brand-mark {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--bg);
  display: grid; place-items: center;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.04em;
  flex-shrink: 0;
}
.brand-text { display: flex; flex-direction: column; gap: 2px; }
.brand-text small {
  font-family: var(--f-body);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.nav-links {
  display: flex; gap: var(--s-7);
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-2);
  position: relative;
  padding: 6px 0;
  transition: color var(--d-2) var(--ease);
}
.nav-links a::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px; background: var(--brand);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--d-2) var(--ease);
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--ink); }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { transform: scaleX(1); }
.nav-actions { display: flex; align-items: center; gap: var(--s-3); }
.nav-call {
  display: inline-flex; align-items: center; gap: var(--s-2);
  font-weight: 600; font-size: 0.92rem;
  color: var(--ink);
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-call svg { width: 14px; height: 14px; flex-shrink: 0; }

/* Email value — real address, wraps cleanly at the @ on narrow screens */
.cta-contact .cta-value-email { white-space: normal; overflow-wrap: break-word; }
@media (max-width: 600px) {
  .cta-contact .cta-value-email { font-size: 0.9rem; line-height: 1.3; }
  .cta-contact a { padding: var(--s-4) var(--s-4); }
  .cta-contact .cta-icon { width: 38px; height: 38px; }
}
.hamburger {
  display: none;
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid var(--rule);
  border-radius: 999px;
  align-items: center; justify-content: center;
  cursor: pointer;
}
.hamburger span { display:block; width:18px; height:1.5px; background: var(--ink); position: relative; }
.hamburger span::before, .hamburger span::after {
  content:''; position:absolute; left:0; width:18px; height:1.5px; background: var(--ink);
}
.hamburger span::before { top:-5px; }
.hamburger span::after { top:5px; }

.mob-menu {
  display: none;
  border-bottom: 1px solid var(--rule);
  background: var(--bg);
}
.mob-menu.open { display: block; }
.mob-menu-inner { padding: var(--s-4) var(--s-6); display: flex; flex-direction: column; gap: var(--s-1); }
.mob-menu a {
  padding: var(--s-3) 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--rule-soft);
}
.mob-menu a:last-of-type { border-bottom: none; }
.mob-menu .btn { margin-top: var(--s-4); }

/* HERO --------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--bg);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: clamp(48px, 7vw, 96px) var(--s-6) clamp(48px, 7vw, 100px);
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: var(--s-3);
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted);
  margin-bottom: var(--s-6);
}
.hero-eyebrow .dot { width: 6px; height: 6px; background: var(--brand); border-radius: 50%; }
.hero h1 {
  font-size: var(--t-display);
  line-height: 0.98;
  letter-spacing: -0.03em;
  font-weight: 400;
  margin-bottom: var(--s-6);
}
.hero h1 em {
  font-style: italic;
  color: var(--brand);
  font-variation-settings: 'SOFT' 100, 'WONK' 1;
}
.hero p.lead {
  font-size: 1.18rem;
  color: var(--ink-2);
  max-width: 36ch;
  margin-bottom: var(--s-7);
}
.hero-ctas { display: flex; gap: var(--s-3); flex-wrap: wrap; align-items: center; }
.hero-trust {
  margin-top: var(--s-8);
  display: flex; gap: var(--s-7) var(--s-6); flex-wrap: wrap;
  align-items: center;
}
.hero-trust .item {
  display: flex; align-items: center; gap: var(--s-3);
  font-size: 0.86rem; color: var(--muted);
  border-left: 1px solid var(--rule);
  padding-left: var(--s-4);
}
.hero-trust .item:first-child { border-left: 0; padding-left: 0; }
.hero-trust strong { color: var(--ink); font-weight: 700; font-family: var(--f-display); font-size: 1.4rem; letter-spacing: -0.02em; }

.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--ink);
  box-shadow: var(--shadow-lg);
}
.hero-visual-cutout {
  aspect-ratio: 1;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  display: grid;
  place-items: center;
  max-width: min(390px, 84vw);
  justify-self: center;
}
.hero-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 28%;
  transform: scale(var(--dog-zoom, 1.01));
  transform-origin: 50% 35%;
  will-change: transform;
}
.hero-visual-cutout img {
  width: min(100%, 365px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 34px 34px rgba(26,22,18,.14));
}
.hero-visual::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26,22,18,0) 50%, rgba(26,22,18,.55) 100%);
  pointer-events: none;
}
.hero-visual-cutout::after { display: none; }
.hero-badge {
  position: absolute;
  left: var(--s-5); bottom: var(--s-5);
  z-index: 2;
  display: flex; align-items: center; gap: var(--s-3);
  background: rgba(26,22,18,.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(250,246,236,.18);
  color: var(--bg);
  padding: var(--s-3) var(--s-4);
  border-radius: 999px;
  font-size: 0.82rem; font-weight: 600;
}
.hero-badge .pulse {
  width: 8px; height: 8px;
  background: #6DAA45;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(109,170,69,.7);
  animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(109,170,69,.55); }
  70% { box-shadow: 0 0 0 12px rgba(109,170,69,0); }
  100% { box-shadow: 0 0 0 0 rgba(109,170,69,0); }
}
.hero-rating {
  position: absolute;
  right: var(--s-5); top: var(--s-5);
  background: rgba(250,246,236,.94);
  border-radius: 14px;
  padding: var(--s-3) var(--s-4);
  display: flex; flex-direction: column;
  font-size: 0.78rem;
  box-shadow: var(--shadow-md);
}
.hero-rating .stars { color: var(--gold); letter-spacing: 1px; font-size: 0.86rem; }
.hero-rating strong { font-family: var(--f-display); font-size: 1.05rem; color: var(--ink); }

/* CONVERSION STRIP --------------------------------------------------- */
.conv-strip {
  background: var(--ink);
  color: var(--bg);
  padding: var(--s-5) var(--s-6);
}
.conv-strip-inner {
  max-width: var(--container-wide);
  margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--s-6); flex-wrap: wrap;
}
.conv-strip p { margin: 0; font-size: 0.95rem; color: rgba(250,246,236,.85); }
.conv-strip .actions { display: flex; gap: var(--s-3); flex-wrap: wrap; }

/* PLAN FINDER -------------------------------------------------------- */
.plan-finder {
  position: relative;
  background:
    radial-gradient(circle at 15% 20%, rgba(176,133,69,.12), transparent 32%),
    linear-gradient(180deg, var(--bg) 0%, var(--surface) 100%);
}
.plan-finder-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}
.plan-finder-copy {
  position: sticky;
  top: 96px;
}
.plan-finder-copy .lead {
  margin-top: var(--s-5);
  color: var(--ink-2);
}
.plan-note {
  margin-top: var(--s-5);
  padding-left: var(--s-5);
  border-left: 2px solid var(--brand);
  color: var(--muted);
  font-size: 0.96rem;
}
.plan-panel {
  border: 1px solid var(--rule);
  border-radius: var(--r-xl);
  background: rgba(250,246,236,.72);
  box-shadow: var(--shadow-lg);
  padding: var(--s-4);
  overflow: hidden;
}
.plan-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-2);
  padding: var(--s-2);
  background: var(--surface);
  border: 1px solid var(--rule-soft);
  border-radius: 18px;
}
.plan-tab {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--ink-2);
  border-radius: 14px;
  padding: 12px 10px;
  font: 700 0.78rem/1.15 var(--f-body);
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: background var(--d-2) var(--ease), color var(--d-2) var(--ease), transform var(--d-2) var(--ease);
}
.plan-tab:hover {
  color: var(--ink);
  background: rgba(26,22,18,.04);
}
.plan-tab:active { transform: translateY(1px); }
.plan-tab.active {
  background: var(--ink);
  color: var(--bg);
  box-shadow: var(--shadow-sm);
}
.plan-result {
  margin-top: var(--s-4);
  padding: clamp(24px, 4vw, 44px);
  min-height: 390px;
  border-radius: calc(var(--r-xl) - 8px);
  background:
    linear-gradient(135deg, rgba(26,22,18,.96), rgba(47,37,29,.96)),
    var(--ink);
  color: var(--bg);
  position: relative;
  overflow: hidden;
}
.plan-result::after {
  content: '';
  position: absolute;
  right: -90px;
  top: -120px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230,164,121,.22), transparent 65%);
  pointer-events: none;
}
.plan-kicker {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #E6A479;
}
.plan-result h3 {
  position: relative;
  z-index: 1;
  color: var(--bg);
  margin-top: var(--s-4);
  font-size: clamp(2rem, 1.5rem + 2vw, 3.3rem);
  letter-spacing: -0.04em;
}
.plan-result p {
  position: relative;
  z-index: 1;
  max-width: 58ch;
  color: rgba(250,246,236,.78);
  margin-top: var(--s-4);
  font-size: 1.03rem;
}
.plan-result ul {
  position: relative;
  z-index: 1;
  display: grid;
  gap: var(--s-2);
  list-style: none;
  margin: var(--s-6) 0 0;
  padding: 0;
}
.plan-result li {
  color: rgba(250,246,236,.86);
  padding-left: 24px;
  position: relative;
}
.plan-result li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 12px;
  height: 1px;
  background: #E6A479;
}
.plan-actions {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--s-4);
  margin-top: var(--s-7);
}
.plan-actions .link-arrow { color: var(--bg); }

/* MOTION POLISH ------------------------------------------------------ */
.reveal-on-scroll {
  opacity: 0;
  transition: opacity 420ms var(--ease);
}
.reveal-on-scroll.is-visible {
  opacity: 1;
}
.service-card,
.issue-tile,
.testi,
.price-card {
  will-change: transform;
}

/* ISSUE TILES (concern selector) ------------------------------------ */
.issues {
  background: var(--surface);
}
.issues-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-2);
  margin-top: var(--s-7);
}
.issue-tile {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--rule);
  padding: var(--s-6) var(--s-5);
  display: flex; flex-direction: column; gap: var(--s-3);
  transition: transform var(--d-2) var(--ease), background var(--d-2) var(--ease), border-color var(--d-2) var(--ease);
  text-decoration: none;
  color: var(--ink);
  border-radius: 4px;
  min-height: 200px;
}
.issue-tile:hover {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
  transform: translateY(-2px);
}
.issue-tile:hover .issue-num,
.issue-tile:hover .issue-link { color: var(--brand-soft); }
.issue-num {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--brand);
  letter-spacing: -0.02em;
}
.issue-title {
  font-family: var(--f-display);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
}
.issue-tile p { font-size: 0.92rem; line-height: 1.5; margin: 0; opacity: 0.85; }
.issue-link {
  margin-top: auto;
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--brand);
  display: inline-flex; align-items: center; gap: var(--s-2);
}

/* SERVICE CARDS ------------------------------------------------------ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-4);
  margin-top: var(--s-8);
}
.service-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  padding: var(--s-7);
  display: flex; flex-direction: column; gap: var(--s-4);
  transition: transform var(--d-2) var(--ease), box-shadow var(--d-2) var(--ease);
}
.service-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.service-card .meta {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.service-card h3 {
  font-size: clamp(1.6rem, 1.2rem + 1vw, 2.1rem);
}
.service-card .price-line {
  font-family: var(--f-display);
  font-size: 1.25rem;
  color: var(--ink);
}
.service-card .price-line strong {
  font-weight: 500;
  color: var(--brand);
}
.service-card ul {
  list-style: none;
  margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: var(--s-2);
}
.service-card li {
  padding-left: 22px;
  position: relative;
  font-size: 0.95rem;
  color: var(--ink-2);
  line-height: 1.5;
}
.service-card li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 12px; height: 1px;
  background: var(--brand);
}
.service-card-actions { display: flex; gap: var(--s-3); flex-wrap: wrap; margin-top: var(--s-3); }

.service-card.featured {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.service-card.featured h3 { color: var(--bg); }
.service-card.featured .meta { color: rgba(250,246,236,.55); }
.service-card.featured li { color: rgba(250,246,236,.85); }
.service-card.featured .price-line { color: var(--bg); }
.service-card.featured .price-line strong { color: #E6A479; }

/* ABOUT SECTION ----------------------------------------------------- */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}
.about-photo {
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--ink);
  box-shadow: var(--shadow-lg);
  position: relative;
}
.about-photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 18%;
}
.about-credentials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-4);
  margin: var(--s-7) 0 var(--s-7);
  padding: var(--s-6) 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.about-credentials .cred-num {
  font-family: var(--f-display);
  font-size: 2.2rem;
  letter-spacing: -0.03em;
  color: var(--brand);
  display: block;
}
.about-credentials .cred-label { font-size: 0.86rem; color: var(--muted); }

/* TESTIMONIALS ------------------------------------------------------ */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-4);
  margin-top: var(--s-8);
}
.testi {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  display: flex; flex-direction: column; gap: var(--s-4);
}
.testi .stars { color: var(--gold); letter-spacing: 2px; font-size: 1rem; }
.testi blockquote {
  margin: 0;
  font-family: var(--f-display);
  font-size: 1.18rem;
  line-height: 1.4;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.testi .who { display: flex; align-items: center; gap: var(--s-3); margin-top: auto; }
.testi .av {
  width: 40px; height: 40px;
  background: var(--ink); color: var(--bg);
  font-family: var(--f-display);
  display: grid; place-items: center;
  border-radius: 50%;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.testi .who-name { font-weight: 600; font-size: 0.95rem; }
.testi .who-sub { font-size: 0.8rem; color: var(--muted); }

/* FAQ --------------------------------------------------------------- */
.faq-list { margin-top: var(--s-7); border-top: 1px solid var(--rule); }
.faq-item { border-bottom: 1px solid var(--rule); }
.faq-q {
  width: 100%;
  background: none; border: 0;
  text-align: left;
  padding: var(--s-5) 0;
  font-family: var(--f-display);
  font-size: clamp(1.1rem, 0.9rem + 0.6vw, 1.35rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  gap: var(--s-4);
  transition: color var(--d-2) var(--ease);
}
.faq-q:hover { color: var(--brand); }
.faq-icon {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border: 1px solid var(--rule);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 1rem; font-weight: 400;
  color: var(--ink-2);
  transition: transform var(--d-3) var(--ease), background var(--d-2), color var(--d-2);
}
.faq-item.open .faq-icon { background: var(--brand); color: var(--bg); border-color: var(--brand); transform: rotate(45deg); }
.faq-a {
  display: none;
  padding: 0 0 var(--s-6);
  font-size: 1rem;
  color: var(--ink-2);
  max-width: 70ch;
  line-height: 1.65;
}
.faq-item.open .faq-a { display: block; }

/* CTA STRIP --------------------------------------------------------- */
.cta-strip {
  background: var(--ink);
  color: var(--bg);
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute; inset: -10% -10% auto auto;
  width: 60vw; height: 60vw;
  background: radial-gradient(circle, rgba(142,31,31,.35), transparent 60%);
  pointer-events: none;
}
.cta-strip-inner {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(56px, 7vw, 110px) var(--s-6);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--s-9);
  align-items: center;
}
.cta-strip h2 {
  color: var(--bg);
  font-size: clamp(2.2rem, 1.6rem + 3vw, 3.8rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin-bottom: var(--s-5);
}
.cta-strip h2 em {
  font-style: italic; color: #E6A479;
  font-variation-settings: 'SOFT' 100, 'WONK' 1;
}
.cta-strip p { color: rgba(250,246,236,.78); font-size: 1.1rem; }
.cta-strip-ctas { display: flex; gap: var(--s-3); flex-wrap: wrap; margin-top: var(--s-6); }
.cta-contact { display: flex; flex-direction: column; gap: var(--s-4); }
.cta-contact a {
  display: flex; align-items: center; gap: var(--s-4);
  padding: var(--s-5) var(--s-6);
  background: rgba(250,246,236,.04);
  border: 1px solid rgba(250,246,236,.14);
  border-radius: var(--r-lg);
  transition: background var(--d-2) var(--ease), border-color var(--d-2) var(--ease);
}
.cta-contact a:hover { background: rgba(250,246,236,.08); border-color: rgba(250,246,236,.3); }
.cta-contact .cta-label { font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(250,246,236,.55); font-weight: 600; }
.cta-contact .cta-value { font-family: var(--f-display); font-size: 1.5rem; color: var(--bg); letter-spacing: -0.02em; white-space: nowrap; }
.cta-contact .cta-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--brand);
  display: grid; place-items: center;
  color: var(--bg);
  flex-shrink: 0;
}

/* FOOTER ----------------------------------------------------------- */
.footer {
  background: #0E0B08;
  color: rgba(250,246,236,.65);
  padding: var(--s-12) 0 var(--s-6);
}
.footer-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--s-6);
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--s-8);
}
.footer .brand { color: var(--bg); }
.footer .brand-text small { color: rgba(250,246,236,.45); }
.footer .brand-mark { background: var(--brand); color: var(--bg); }
.footer .brand-text strong { color: var(--bg); font-weight: 500; }
.footer h4 {
  font-family: var(--f-body);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250,246,236,.5);
  margin-bottom: var(--s-4);
  font-weight: 600;
}
.footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: var(--s-2); }
.footer li a { font-size: 0.95rem; color: rgba(250,246,236,.7); transition: color var(--d-2) var(--ease); }
.footer li a:hover { color: var(--bg); }
.footer-tag {
  display: block;
  margin: var(--s-3) 0 var(--s-5);
  font-size: 0.92rem; color: rgba(250,246,236,.55);
  max-width: 36ch; line-height: 1.6;
}
.footer-base {
  max-width: var(--container);
  margin: var(--s-10) auto 0;
  padding: var(--s-5) var(--s-6) 0;
  border-top: 1px solid rgba(250,246,236,.08);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: var(--s-4);
  font-size: 0.82rem; color: rgba(250,246,236,.4);
}

/* MOBILE STICKY CTA ------------------------------------------------ */
.mob-sticky {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0;
  z-index: 90;
  background: rgba(26,22,18,.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 8px;
  grid-template-columns: 1fr 1.4fr;
  gap: 6px;
}
.mob-sticky a {
  display: flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 12px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  white-space: nowrap;
}
.mob-sticky .ms-call { background: rgba(250,246,236,.1); color: var(--bg); border: 1px solid rgba(250,246,236,.18); }
.mob-sticky .ms-book { background: var(--brand); color: var(--bg); }

/* PRICING PAGE ----------------------------------------------------- */
.price-hero {
  padding: clamp(56px, 7vw, 110px) 0 clamp(40px, 5vw, 80px);
  background: var(--bg);
}
.price-hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--s-6);
}
.price-hero h1 {
  font-size: var(--t-display);
  letter-spacing: -0.03em;
  line-height: 0.98;
  margin: var(--s-4) 0 var(--s-5);
  max-width: 14ch;
}
.price-hero h1 em { font-style: italic; color: var(--brand); font-variation-settings: 'SOFT' 100, 'WONK' 1; }
.price-jump {
  display: flex; flex-wrap: wrap; gap: var(--s-2);
  margin-top: var(--s-7);
  padding-top: var(--s-7);
  border-top: 1px solid var(--rule);
}
.price-jump-label {
  font-size: 0.72rem; letter-spacing: 0.16em;
  text-transform: uppercase; font-weight: 600;
  color: var(--muted);
  padding: 8px 0;
  margin-right: var(--s-3);
  align-self: center;
}
.price-jump a {
  padding: 10px 18px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink-2);
  background: var(--surface);
  transition: background var(--d-2) var(--ease), color var(--d-2) var(--ease), border-color var(--d-2) var(--ease);
}
.price-jump a:hover, .price-jump a.active { background: var(--ink); color: var(--bg); border-color: var(--ink); }

.price-section { padding: clamp(48px, 6vw, 100px) 0; scroll-margin-top: 90px; }
.price-section:nth-of-type(even) { background: var(--bg-alt); }
.price-section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-8);
  align-items: end;
  margin-bottom: var(--s-8);
}
.price-section-head h2 { font-size: var(--t-h2); max-width: 16ch; }
.price-section-head p { color: var(--muted); max-width: 50ch; }
.price-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-4);
}
.price-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.price-grid.cols-1 { grid-template-columns: 1fr; max-width: 520px; }
.price-card {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  padding: var(--s-7) var(--s-6) var(--s-6);
  display: flex; flex-direction: column;
  position: relative;
  transition: transform var(--d-2) var(--ease), box-shadow var(--d-2) var(--ease);
}
.price-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.price-card.featured { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.price-card.featured .price-name, .price-card.featured .price-amount { color: var(--bg); }
.price-card.featured .price-sub, .price-card.featured .price-meta, .price-card.featured li { color: rgba(250,246,236,.78); }
.price-card.featured .price-divider { background: rgba(250,246,236,.14); }
.price-card.premium { background: linear-gradient(165deg, #FAF6EC, #E6DECB); border-color: var(--rule); }
.price-badge {
  position: absolute;
  top: -12px; left: var(--s-6);
  padding: 6px 12px;
  background: var(--brand);
  color: var(--bg);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 999px;
}
.price-card.premium .price-badge { background: var(--gold); color: var(--ink); }
.price-name { font-family: var(--f-display); font-size: 1.6rem; letter-spacing: -0.02em; font-weight: 500; }
.price-meta { font-size: 0.82rem; color: var(--muted); margin-top: var(--s-2); }
.price-amount {
  font-family: var(--f-display);
  font-size: clamp(2.6rem, 2rem + 1.6vw, 3.4rem);
  letter-spacing: -0.04em;
  font-weight: 500;
  color: var(--brand);
  margin-top: var(--s-5);
  line-height: 0.96;
}
.price-card.featured .price-amount { color: #E6A479; }
.price-card.premium .price-amount { color: var(--ink); }
.price-sub { font-size: 0.82rem; color: var(--muted); margin-top: var(--s-2); }
.price-divider { height: 1px; background: var(--rule); margin: var(--s-6) 0; }
.price-list { list-style: none; margin: 0 0 var(--s-6); padding: 0; flex: 1; display: flex; flex-direction: column; gap: var(--s-3); }
.price-list li { font-size: 0.92rem; padding-left: 22px; position: relative; color: var(--ink-2); line-height: 1.5; }
.price-list li::before { content: ''; position: absolute; left: 0; top: 9px; width: 12px; height: 1px; background: var(--brand); }
.price-card.featured .price-list li::before { background: #E6A479; }

/* PAGE HERO (subpages) --------------------------------------------- */
.page-hero {
  background: var(--ink);
  color: var(--bg);
  padding: clamp(64px, 9vw, 130px) 0 clamp(48px, 6vw, 90px);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  right: -10%; top: -20%;
  width: 60vw; height: 60vw;
  background: radial-gradient(circle, rgba(142,31,31,.45), transparent 60%);
  pointer-events: none;
}
.page-hero-inner {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--s-6);
}
.page-hero h1 {
  color: var(--bg);
  font-size: var(--t-display);
  letter-spacing: -0.03em;
  line-height: 0.98;
  margin: var(--s-4) 0 var(--s-5);
  max-width: 14ch;
}
.page-hero h1 em { font-style: italic; color: #E6A479; font-variation-settings: 'SOFT' 100, 'WONK' 1; }
.page-hero p { color: rgba(250,246,236,.78); max-width: 56ch; font-size: 1.1rem; }
.page-hero-actions { display: flex; gap: var(--s-3); flex-wrap: wrap; margin-top: var(--s-6); }
.breadcrumb {
  font-size: 0.78rem;
  color: var(--muted);
  display: flex; gap: var(--s-2);
  letter-spacing: 0.08em;
  margin-bottom: var(--s-4);
  text-transform: uppercase;
}
.breadcrumb a { color: var(--ink-2); text-decoration: none; }
.breadcrumb a:hover { color: var(--brand); }
.page-hero .breadcrumb, .section-dark .breadcrumb { color: rgba(250,246,236,.5); }
.page-hero .breadcrumb a, .section-dark .breadcrumb a { color: rgba(250,246,236,.78); }
.page-hero .breadcrumb a:hover, .section-dark .breadcrumb a:hover { color: var(--bg); }

/* WHAT'S INCLUDED 2-COL ------------------------------------------- */
.included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-3);
  margin-top: var(--s-8);
}
.inc-card {
  padding: var(--s-6);
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  display: flex; flex-direction: column; gap: var(--s-3);
}
.inc-num {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--brand);
  letter-spacing: -0.02em;
}
.inc-card h4 {
  font-family: var(--f-display);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.1;
}
.inc-card p { font-size: 0.95rem; color: var(--ink-2); margin: 0; line-height: 1.55; }

/* FORM --------------------------------------------------------------- */
.form-page { background: var(--bg); }
.form-hero {
  padding: clamp(48px, 6vw, 90px) 0 clamp(32px, 4vw, 60px);
}
.form-hero-inner {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 var(--s-6);
}
.form-hero h1 { font-size: clamp(2rem, 1.6rem + 2vw, 3rem); margin: var(--s-4) 0 var(--s-3); }
.form-hero h1 em { color: var(--brand); font-style: italic; font-variation-settings: 'SOFT' 100, 'WONK' 1; }
.form-hero p { color: var(--muted); max-width: 56ch; }

.form-wrap {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 var(--s-6) var(--s-12);
}
.form-progress {
  display: flex; gap: 4px;
  margin: var(--s-5) 0 var(--s-7);
}
.form-progress span {
  flex: 1; height: 3px;
  background: var(--rule);
  border-radius: 2px;
}
.form-section {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  padding: var(--s-7);
  margin-bottom: var(--s-5);
}
.form-section-head {
  display: flex; align-items: center; gap: var(--s-4);
  margin-bottom: var(--s-6);
  padding-bottom: var(--s-5);
  border-bottom: 1px solid var(--rule);
}
.form-section-head .num {
  width: 34px; height: 34px;
  background: var(--brand);
  color: var(--bg);
  display: grid; place-items: center;
  border-radius: 50%;
  font-family: var(--f-display);
  font-size: 1rem;
  font-weight: 500;
  flex-shrink: 0;
}
.form-section-head h2 {
  font-size: 1.5rem;
  letter-spacing: -0.015em;
}
.form-section-head p { font-size: 0.92rem; color: var(--muted); margin: 4px 0 0; }
.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-4);
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field-full { grid-column: 1 / -1; }
.field label {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.req { color: var(--brand); }
.field-hint { font-size: 0.8rem; color: var(--muted); margin-top: 4px; }
.field input[type="text"],
.field input[type="tel"],
.field input[type="email"],
.field select,
.field textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 1rem;
  color: var(--ink);
  transition: border-color var(--d-2) var(--ease), background var(--d-2) var(--ease);
  font-family: var(--f-body);
}
.field textarea { min-height: 96px; resize: vertical; line-height: 1.5; }
.field select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231A1612' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--ink); outline: none; background: var(--surface); }

.radio-group, .check-group {
  display: flex; flex-wrap: wrap; gap: var(--s-2);
}
.radio-item, .check-item {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 14px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  background: var(--bg);
  font-size: 0.92rem;
  cursor: pointer;
  transition: border-color var(--d-2) var(--ease), background var(--d-2) var(--ease);
}
.radio-item input, .check-item input { accent-color: var(--brand); }
.radio-item:has(input:checked), .check-item:has(input:checked) {
  background: var(--ink); color: var(--bg); border-color: var(--ink);
}
.scale-row { display: flex; gap: var(--s-2); margin-top: var(--s-3); }
.scale-row label { flex: 1; }
.scale-row input { position: absolute; opacity: 0; pointer-events: none; }
.scale-btn {
  display: grid; place-items: center;
  height: 56px;
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: 8px;
  font-family: var(--f-display); font-size: 1.4rem;
  cursor: pointer;
  transition: background var(--d-2), color var(--d-2), border-color var(--d-2);
}
.scale-row label:has(input:checked) .scale-btn { background: var(--brand); color: var(--bg); border-color: var(--brand); }
.scale-labels { display: flex; justify-content: space-between; margin-top: 8px; font-size: 0.78rem; color: var(--muted); }

.sub-label {
  grid-column: 1 / -1;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand);
  padding: var(--s-3) 0 4px;
  border-top: 1px solid var(--rule);
  margin-top: var(--s-3);
}
.callout {
  padding: var(--s-4) var(--s-5);
  background: var(--brand-soft);
  border-left: 3px solid var(--brand);
  font-size: 0.92rem;
  color: var(--ink-2);
  border-radius: 6px;
}
.submit-area {
  margin-top: var(--s-6);
  padding: var(--s-7);
  background: var(--ink);
  color: var(--bg);
  border-radius: var(--r-lg);
}
.submit-area p { color: rgba(250,246,236,.7); margin-bottom: var(--s-5); }
.btn-submit {
  background: var(--brand);
  color: var(--bg);
  border: 0;
  padding: 16px 32px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background var(--d-2) var(--ease);
}
.btn-submit:hover { background: var(--brand-2); }

/* HEADER (form pages) ---------------------------------------------- */
.form-page-header {
  background: var(--ink);
  color: var(--bg);
  padding: var(--s-4) 0;
  border-bottom: 1px solid rgba(250,246,236,.08);
}
.form-page-header .brand { color: var(--bg); }
.form-page-header .brand-mark { background: var(--brand); }
.form-page-header .brand-text small { color: rgba(250,246,236,.55); }

.nav-progs {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* RESPONSIVE ------------------------------------------------------- */
@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 540px; margin: 0 auto; }
  .hero-visual-cutout { max-width: min(340px, 82vw); }
  .plan-finder-grid { grid-template-columns: 1fr; }
  .plan-finder-copy { position: static; }
  .price-grid, .price-grid.cols-3 { grid-template-columns: repeat(2, 1fr); }
  .testi-grid, .included-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .nav-links, .nav-progs, .nav-actions .btn:not(.btn-hamburger), .nav-call { display: none; }
  .hamburger { display: inline-flex; }
  .hero-grid { padding-top: var(--s-7); padding-bottom: var(--s-7); }
  .hero h1 { font-size: clamp(2.6rem, 2rem + 4vw, 4rem); }
  .issues-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .plan-tabs { grid-template-columns: repeat(2, 1fr); }
  .plan-result { min-height: auto; }
  .about-grid, .cta-strip-inner, .price-section-head { grid-template-columns: 1fr; }
  .price-grid, .price-grid.cols-3, .testi-grid, .included-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .field-grid { grid-template-columns: 1fr; }
  .mob-sticky { display: grid; }
  body { padding-bottom: 72px; }
  .nav-inner { padding: var(--s-3) var(--s-5); }
  .hero-rating { display: none; }
}
@media (max-width: 520px) {
  .issues-grid { grid-template-columns: 1fr; }
  .plan-panel { padding: var(--s-3); border-radius: var(--r-lg); }
  .plan-tabs { grid-template-columns: 1fr; }
  .plan-tab { text-align: left; padding: 14px 16px; }
  .plan-result { padding: var(--s-6); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-base { flex-direction: column; }
  .hero-trust .item { border-left: 0; padding-left: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-progress span,
  .hero-visual img,
  .plan-tab,
  .reveal-on-scroll {
    transition: none !important;
    animation: none !important;
  }
  .hero-visual img { transform: none !important; }
  .reveal-on-scroll { opacity: 1; }
}

/* ====================================================================
   PREMIUM REDESIGN — animations, interactions, visual polish
   ==================================================================== */

/* HERO AMBIENT ORBS -------------------------------------------------- */
.hero {
  background:
    radial-gradient(ellipse 58% 72% at 92% 48%, rgba(142,31,31,.07), transparent),
    radial-gradient(ellipse 42% 52% at 4% 22%, rgba(176,133,69,.08), transparent),
    var(--bg);
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(72px);
}
.hero-orb-1 {
  width: clamp(380px, 52vw, 680px);
  height: clamp(380px, 52vw, 680px);
  background: radial-gradient(circle, rgba(142,31,31,.11), transparent 68%);
  right: -8%;
  top: -28%;
  animation: orbDrift 20s ease-in-out infinite alternate;
}
.hero-orb-2 {
  width: clamp(240px, 32vw, 460px);
  height: clamp(240px, 32vw, 460px);
  background: radial-gradient(circle, rgba(176,133,69,.13), transparent 65%);
  left: -4%;
  bottom: -8%;
  animation: orbDrift 26s ease-in-out 4s infinite alternate-reverse;
}
@keyframes orbDrift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(28px, -18px) scale(1.07); }
}
.hero-grid { position: relative; z-index: 1; }

/* HERO ENTRANCE ANIMATIONS ------------------------------------------- */
.hero-eyebrow {
  opacity: 0;
  animation: fadeSlideUp 0.65s var(--ease) 0.05s both;
}
.hero p.lead {
  opacity: 0;
  animation: fadeSlideUp 0.7s var(--ease) 0.42s both;
}
.hero-ctas {
  opacity: 0;
  animation: fadeSlideUp 0.7s var(--ease) 0.56s both;
}
.hero-trust {
  opacity: 0;
  animation: fadeSlideUp 0.7s var(--ease) 0.7s both;
}
.hero-visual-cutout {
  opacity: 0;
  animation: heroVisualIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
}
.hero-badge {
  animation: badgeUp 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) 1.1s both;
}
.hero-rating {
  animation: ratingIn 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) 1.25s both;
}
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroVisualIn {
  from { opacity: 0; transform: translateX(36px) scale(0.97); }
  to   { opacity: 1; transform: translateX(0) scale(1); }
}
@keyframes badgeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes ratingIn {
  from { opacity: 0; transform: translateX(14px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* H1 LINE REVEAL ----------------------------------------------------- */
.h1-line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.22em;
  margin-bottom: -0.14em;
}
.h1-line > span,
.h1-line > em {
  display: block;
  transform: translateY(110%);
  animation: lineReveal 0.92s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}
.h1-line:nth-child(1) > * { animation-delay: 0.18s; }
.h1-line:nth-child(2) > * { animation-delay: 0.33s; }
.h1-line:nth-child(3) > * { animation-delay: 0.48s; }
@keyframes lineReveal {
  from { transform: translateY(110%); }
  to   { transform: translateY(0); }
}

/* MARQUEE TRUST STRIP ------------------------------------------------ */
.marquee-strip {
  background: var(--ink);
  overflow: hidden;
  padding: var(--s-4) 0;
  border-top: 1px solid rgba(26,22,18,.12);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 38s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-inner {
  display: flex;
  align-items: center;
  gap: var(--s-7);
  padding-right: var(--s-7);
  flex-shrink: 0;
  white-space: nowrap;
}
.marquee-inner span {
  font-family: var(--f-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250,246,236,.7);
}
.marquee-dot {
  color: var(--brand) !important;
  font-size: 0.55rem !important;
  letter-spacing: 0 !important;
  opacity: 0.9;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* CURSOR SPOTLIGHT --------------------------------------------------- */
.cursor-spotlight {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  background: radial-gradient(
    650px circle at var(--cx, -9999px) var(--cy, -9999px),
    rgba(142, 31, 31, 0.038),
    transparent 60%
  );
}

/* ENHANCED SCROLL REVEAL (overrides existing) ----------------------- */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 520ms var(--ease) var(--stagger, 0ms),
    transform 520ms var(--ease) var(--stagger, 0ms);
}
.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* STAGGER DELAYS FOR GRIDS ------------------------------------------ */
.services-grid .service-card:nth-child(1) { --stagger: 0ms; }
.services-grid .service-card:nth-child(2) { --stagger: 90ms; }
.services-grid .service-card:nth-child(3) { --stagger: 0ms; }
.services-grid .service-card:nth-child(4) { --stagger: 90ms; }
.testi-grid .testi:nth-child(1) { --stagger: 0ms; }
.testi-grid .testi:nth-child(2) { --stagger: 110ms; }
.testi-grid .testi:nth-child(3) { --stagger: 220ms; }
.testi-grid .testi:nth-child(4) { --stagger: 330ms; }
.issues-grid .issue-tile:nth-child(1) { --stagger: 0ms; }
.issues-grid .issue-tile:nth-child(2) { --stagger: 70ms; }
.issues-grid .issue-tile:nth-child(3) { --stagger: 140ms; }
.issues-grid .issue-tile:nth-child(4) { --stagger: 210ms; }

/* 3D TILT BASE (transform-style set for JS tilt to work cleanly) ---- */
.service-card,
.testi {
  transform-style: preserve-3d;
  will-change: transform;
}
.service-card {
  transition: transform var(--d-2) var(--ease), box-shadow var(--d-2) var(--ease), border-color var(--d-2) var(--ease);
}
.service-card:hover {
  box-shadow: 0 22px 64px -18px rgba(26,22,18,.22), 0 4px 16px -6px rgba(26,22,18,.08);
}
.service-card.featured:hover {
  box-shadow: 0 22px 64px -18px rgba(142,31,31,.38), 0 4px 16px -6px rgba(142,31,31,.16);
}
.testi {
  transition: transform var(--d-2) var(--ease), box-shadow var(--d-2) var(--ease);
}
.testi:hover { box-shadow: var(--shadow-md); }

/* ABOUT PHOTO HOVER -------------------------------------------------- */
.about-photo {
  transition: transform var(--d-3) var(--ease), box-shadow var(--d-3) var(--ease);
}
.about-photo:hover {
  transform: scale(1.012);
  box-shadow: 0 44px 88px -32px rgba(26,22,18,.32);
}

/* STAT COUNT --------------------------------------------------------- */
.stat-count { font-variant-numeric: tabular-nums; }

/* REDUCED MOTION OVERRIDES ------------------------------------------ */
@media (prefers-reduced-motion: reduce) {
  .hero-eyebrow, .hero p.lead, .hero-ctas, .hero-trust,
  .hero-visual-cutout, .hero-badge, .hero-rating,
  .hero-orb, .h1-line > span, .h1-line > em {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .marquee-track { animation: none; }
  .cursor-spotlight { display: none; }
}

/* TEXT LOGO ---------------------------------------------------------- */
.brand-text-logo {
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.brand-wordmark { display: flex; flex-direction: column; gap: 2px; }
.brand-name {
  font-family: 'Barlow Condensed', var(--f-body);
  font-weight: 800;
  font-size: clamp(1.15rem, 0.95rem + 0.9vw, 1.55rem);
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1;
}
.brand-dot { color: var(--brand); }
.brand-tagline {
  font-family: var(--f-body);
  font-size: 0.55rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1;
}
.footer .brand-name { color: var(--bg); }
.footer .brand-tagline { color: rgba(250,246,236,.4); }
.form-page-header .brand-name { color: var(--bg); }
.form-page-header .brand-tagline { color: rgba(250,246,236,.4); }

/* NAV PROGRAMME PILLS ------------------------------------------------ */
.nav-progs a {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--ink-2);
  text-decoration: none;
  padding: 4px 10px;
  border: 1.5px solid var(--rule);
  border-radius: 100px;
  transition: border-color var(--d-2) var(--ease), color var(--d-2) var(--ease);
  white-space: nowrap;
}
.nav-progs a:hover {
  border-color: var(--brand);
  color: var(--brand);
}


/* 3-COLUMN SERVICES GRID -------------------------------------------- */
.services-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 860px) {
  .services-grid.cols-3 { grid-template-columns: 1fr; }
}
