/* ─── GROPPI ELECTRIC — Shared Stylesheet ─── */

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

:root {
  --teal-dark:   #0e2e2e;
  --teal-mid:    #1a4a4a;
  --teal-brand:  #2a9090;
  --teal-light:  #5dc4c4;
  --teal-pale:   #e0f5f5;
  --amber:       #c8a96e;
  --amber-light: #e8d0a0;
  --cream:       #f7f4ef;
  --cream-dark:  #ede9e2;
  --ink:         #1a1a18;
  --ink-mid:     #3a3a32;
  --ink-soft:    #6a6a5a;
  --ink-faint:   #9a9a8a;
  --rule:        #d8d4cc;
  /* Extended palette — frequently used values not in original token set */
  --teal-deep:        #091e1e;
  --teal-accent:      #1a7a6d;
  --teal-accent-dark: #145c57;
  --cream-mid:        #f3f1ec;
  --amber-bright:     #e8a824;
  /* Type scale — rem-based, 16px root */
  --text-xs:   0.6875rem; /* 11px — minimum for any visible text */
  --text-sm:   0.75rem;   /* 12px — labels, trust items, fine print */
  --text-ui:   0.8125rem; /* 13px — nav, secondary UI, form fields */
  --text-body: 0.9375rem; /* 15px — primary body copy */
  --text-md:   1rem;      /* 16px — base / form inputs */
  --text-lg:   1.0625rem; /* 17px — form headline, lead-in copy */
  /* Mobile nav — height of phone bar on mobile; aligns fixed nav overlay */
  --mobile-phonebar-h: 64px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Source Serif 4', Georgia, serif;
  background: var(--cream);
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  font-optical-sizing: auto;
}

.serif { font-family: 'Barlow Condensed', system-ui, sans-serif; }

/* ─── PHONE BAR (Tier 1) ─── */
.phone-bar {
  background: var(--teal-dark);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  padding: 14px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo in phone bar — color overrides for dark background */
.phone-bar .logo { flex: 1; }
.phone-bar .logo-name { color: var(--cream); }
.phone-bar .logo-sub  { color: #5a9090; }

/* Centered phone link */
.phone-bar-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.phone-bar-label {
  font-size: var(--text-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 500;
}
.phone-bar-number {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--amber);
  letter-spacing: 0.01em;
  line-height: 1;
  font-family: 'Barlow Condensed', system-ui, sans-serif;
}
.phone-bar-link:hover .phone-bar-number { color: var(--amber-light); }

/* Right CTA */
.phone-bar-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}
.phone-bar-nudge {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(245, 244, 239, 0.7);
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.phone-bar-cta {
  background: var(--amber);
  color: var(--teal-dark);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 50px;
  border: 2px solid var(--teal-dark);
  box-shadow: 4px 4px 0px 0px var(--teal-dark);
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
  transition: transform 0.15s, box-shadow 0.15s;
}
.phone-bar-cta:hover {
  transform: translate(4px, 4px);
  box-shadow: none;
}

/* ─── NAV BAR (Tier 2) — home icon · links · contact CTA ─── */
nav {
  background: var(--cream);
  border-bottom: 1px solid var(--rule);
  padding: 11px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
}
/* Shared logo styles (used in phone bar) */
.logo {
  display: flex;
  flex-direction: column;
  gap: 1px;
  text-decoration: none;
}
.logo-name {
  font-family: 'Barlow Condensed', system-ui, sans-serif;
  font-size: 1.625rem;
  font-weight: 700;
  color: var(--teal-dark);
  line-height: 1;
  letter-spacing: -0.02em;
}
.logo-sub {
  font-size: var(--text-xs);
  letter-spacing: 0.18em;
  color: var(--teal-brand);
  text-transform: uppercase;
  font-weight: 500;
}
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: var(--text-ui);
  color: var(--ink-soft);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--teal-brand); }
.nav-links a.nav-active { color: var(--teal-brand); font-weight: 500; }
/* ─── HERO (index.html) ─── */
.hero {
  display: flex;
  align-items: stretch;
  gap: 40px;
  padding: 56px 40px 56px 48px;
  background: var(--teal-dark);
  position: relative;
}
/* Grain texture — gives the dark hero that "real shop" physical quality */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
}
.hero-content {
  flex: 6;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.hero-video-container {
  flex: 4;
  min-width: 0;
  min-height: 380px;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.hero-side-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-eyebrow {
  font-size: var(--text-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #5a9494;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--teal-brand);
}
.hero-h1 {
  font-family: 'Barlow Condensed', system-ui, sans-serif;
  font-size: clamp(3rem, 6.5vw, 5.5rem);
  font-weight: 700;
  color: #e8f4f4;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}
.hero-h1 em {
  font-style: italic;
  color: var(--amber);
}
.hero-rule {
  width: 48px;
  height: 2px;
  background: var(--teal-brand);
  margin: 24px 0;
}
.hero-sub {
  font-size: var(--text-body);
  color: #6aacac;
  line-height: 1.8;
  max-width: 400px;
  font-weight: 400;
  margin-bottom: 32px;
}
.hero-btns {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--teal-brand);
  color: #e8f4f4;
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 50px;
  border: 2px solid var(--teal-dark);
  box-shadow: 4px 4px 0px 0px var(--teal-dark);
  text-decoration: none;
  display: inline-block;
  transition: transform 0.15s, box-shadow 0.15s;
}
.btn-primary:hover {
  transform: translate(4px, 4px);
  box-shadow: none;
}
.hero .btn-primary {
  background: var(--amber);
  color: var(--teal-dark);
  border-color: var(--teal-dark);
  box-shadow: 4px 4px 0px 0px var(--teal-dark);
}
.hero .btn-primary:hover {
  background: var(--amber);
}
.btn-ghost {
  font-size: var(--text-sm);
  color: #3a6a6a;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid #1e4a4a;
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.btn-ghost:hover { color: var(--teal-brand); border-color: var(--teal-brand); }
.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-stars {
  color: var(--amber);
  font-size: 14px;
  letter-spacing: 2px;
  line-height: 1;
}
.hero-rating-num {
  font-size: var(--text-ui);
  font-weight: 500;
  color: var(--teal-pale);
}
.hero-rating-text {
  font-size: var(--text-sm);
  color: var(--teal-pale);
  letter-spacing: 0.02em;
}


/* ─── TESTIMONIAL + SLIDER ─── */
.testimonial-slider-section {
  display: flex;
  align-items: stretch;
  background: var(--teal-deep);
  border-bottom: 1px solid #0f2e2e;
  position: relative;
}
.testimonial-col {
  flex: 0 0 40%;
  padding: 80px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid #0f2e2e;
}
.slider-col {
  flex: 1;
  min-width: 0;
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}
.ba-section-header {
  text-align: center;
  margin-bottom: 32px;
}
.ba-section-title {
  font-family: 'Barlow Condensed', system-ui, sans-serif;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--cream);
  display: inline-block;
  background: var(--teal-dark);
  padding: 12px 32px;
  border-radius: 4px;
  letter-spacing: -0.02em;
}
.ba-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid var(--rule);
  cursor: col-resize;
  user-select: none;
  aspect-ratio: 16 / 9;
  background: var(--teal-dark);
  touch-action: pan-y;
}
.ba-before,
.ba-after {
  position: absolute;
  inset: 0;
}
.ba-before img,
.ba-after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
.ba-after {
  clip-path: inset(0 0 0 50%);
}
.ba-label {
  position: absolute;
  bottom: 14px;
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 2px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  pointer-events: none;
}
.ba-before .ba-label { left: 14px; }
.ba-after  .ba-label { right: 14px; }
.ba-handle {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
  z-index: 10;
}
.ba-handle-bar {
  flex: 1;
  width: 2px;
  background: #ffffff;
  opacity: 0.9;
}
.ba-handle-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--teal-brand);
  border: 3px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

/* ─── TRUST STRIP ─── */
.trust-strip {
  background: var(--teal-deep);
  border-top: 1px solid #0f2e2e;
  border-bottom: 1px solid #0f2e2e;
  padding: 22px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--text-ui);
  color: #7ec8c8;
  letter-spacing: 0.03em;
  font-weight: 500;
}
.trust-check {
  color: var(--amber);
  font-size: 1rem;
  font-weight: 700;
}

/* ─── SECTION KICKER ─── */
.section-kicker {
  font-size: var(--text-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal-brand);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}
.section-kicker::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--amber);
  flex-shrink: 0;
}

/* ─── WHY WE'RE DIFFERENT ─── */
.diff-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--cream-mid);
  border-bottom: 1px solid var(--rule);
}
.diff-left {
  padding: 72px 52px 72px 44px;
}
.diff-headline {
  font-family: 'Barlow Condensed', system-ui, sans-serif;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 700;
  color: #1e2a2a;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.diff-body {
  font-size: var(--text-body);
  color: #3a4f4f;
  line-height: 1.8;
  margin-bottom: 14px;
  font-weight: 400;
}
.diff-checks {
  list-style: none;
  margin: 20px 0 24px;
}
.diff-checks li {
  position: relative;
  padding: 7px 0 7px 28px;
  font-size: var(--text-body);
  font-weight: 500;
  color: #1e2a2a;
  line-height: 1.5;
}
.diff-checks li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 7px;
  color: var(--teal-accent-dark);
  font-weight: 700;
  font-size: var(--text-ui);
}
.diff-quote {
  padding: 14px 18px 14px 28px;
  background: rgba(20, 92, 87, 0.05);
  border-radius: 4px;
  font-family: 'Source Serif 4', Georgia, serif;
  font-style: italic;
  font-size: var(--text-body);
  line-height: 1.65;
  color: #1e2a2a;
  margin: 0 0 10px;
  position: relative;
}
.diff-quote::before {
  content: '\201C';
  position: absolute;
  left: 8px;
  top: 8px;
  font-size: 1.4rem;
  color: var(--amber);
  opacity: 0.55;
  line-height: 1;
  font-style: normal;
}
.diff-attr {
  font-size: var(--text-sm);
  color: var(--ink-faint);
  letter-spacing: 0.04em;
  padding-left: 4px;
}

/* ─── DIFF FORM CARD ─── */
.diff-right {
  padding: 72px 44px 72px 52px;
  display: flex;
  align-items: flex-start;
}
.diff-form-card {
  width: 100%;
  background: #ffffff;
  border: 1px solid var(--rule);
  box-shadow: 0 8px 32px rgba(20, 92, 87, 0.10), 0 2px 8px rgba(0,0,0,0.05);
  border-radius: 12px;
  padding: 40px 36px 32px;
}
.diff-select {
  display: block;
  margin-bottom: 10px;
}
.diff-trust-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--rule);
}
.diff-trust-item {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: 0.03em;
}
.diff-star { color: #f59e0b; }
.diff-avatar-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--rule);
}
.diff-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--teal-accent-dark);
  flex-shrink: 0;
}
.diff-avatar-text {
  font-size: var(--text-sm);
  color: var(--ink-soft);
  line-height: 1.5;
}

/* ─── LEAD FORM ─── */
.form-headline {
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.45;
  margin-bottom: 24px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 10px;
}
.form-field {
  width: 100%;
  background: #fff;
  border: 1px solid #d8d4cc;
  border-radius: 2px;
  padding: 11px 14px;
  font-size: var(--text-ui);
  font-family: system-ui, -apple-system, sans-serif;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
  margin-bottom: 0;
}
.form-field:focus { border-color: var(--teal-brand); }
.form-field::placeholder { color: var(--ink-faint); }
textarea.form-field {
  height: 90px;
  resize: none;
  margin-top: 10px;
  margin-bottom: 12px;
  display: block;
}
.form-submit {
  width: 100%;
  background: var(--teal-dark);
  color: var(--teal-pale);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  font-family: system-ui, -apple-system, sans-serif;
  transition: background 0.2s;
}
.form-submit:hover { background: var(--teal-mid); }
.form-fine {
  font-size: var(--text-xs);
  color: var(--ink-faint);
  text-align: center;
  margin-top: 10px;
  letter-spacing: 0.02em;
}

/* ─── LEAD FORM STATES ─── */
#lead-success {
  display: none;
  padding: 8px 0 4px;
}
.lead-success-mark {
  font-size: var(--text-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal-brand);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.lead-success-mark::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--teal-brand);
}
.lead-success-headline {
  font-family: 'Barlow Condensed', system-ui, sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 12px;
}
.lead-success-body {
  font-size: var(--text-body);
  color: var(--ink-soft);
  line-height: 1.8;
  font-weight: 400;
}
.lead-success-body a {
  color: var(--teal-brand);
  text-decoration: none;
}
.lead-error {
  font-size: var(--text-sm);
  color: #a93226;
  margin-top: 10px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.25s ease, max-height 0.25s ease;
}
.lead-error.visible {
  max-height: 4em;
  opacity: 1;
}

/* ─── SHARED FORM GRID + EXTENDED FIELDS ─── */
/* Used on both homepage and contact page */
.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 10px;
}
textarea.contact-message {
  width: 100%;
  background: #fff;
  border: 1px solid #d8d4cc;
  border-radius: 2px;
  padding: 11px 14px;
  font-size: var(--text-ui);
  font-family: system-ui, -apple-system, sans-serif;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
  height: 120px;
  resize: none;
  display: block;
  margin-bottom: 12px;
}
textarea.contact-message:focus { border-color: var(--teal-brand); }
textarea.contact-message::placeholder { color: var(--ink-faint); }
select.form-field {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239a9a8a' 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;
  cursor: pointer;
}
.form-note {
  font-size: var(--text-xs);
  color: var(--ink-faint);
  line-height: 1.7;
  margin-top: 10px;
}
.form-error {
  font-size: var(--text-sm);
  color: #b03a2e;
  margin-top: 10px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.25s ease, max-height 0.25s ease;
}
.form-error.visible {
  max-height: 4em;
  opacity: 1;
}
button[type="submit"]:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.lead-error a { color: #a93226; }
#lead-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* ─── PULL QUOTE (inside testimonial-col) ─── */
.pull-quote-open {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 6rem;
  color: var(--amber);
  line-height: 0.5;
  display: block;
  margin-bottom: 32px;
  opacity: 0.6;
}
.pull-quote-text {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  font-style: italic;
  color: #c8e8e8;
  line-height: 1.55;
  margin-bottom: 28px;
  font-weight: 300;
}
.pull-quote-attr {
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2a5a5a;
}
.pull-quote-attr span { color: var(--teal-brand); }

/* ─── SERVICES (index.html grid) ─── */
.services-section {
  padding: 72px 40px;
  background: var(--cream-mid);
  border-bottom: 1px solid var(--rule);
}
.services-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(15,46,46,0.12);
  margin-bottom: 0;
}
.services-title {
  font-family: 'Barlow Condensed', system-ui, sans-serif;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.03em;
}
.services-note {
  font-size: var(--text-sm);
  color: var(--ink-faint);
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.services-header-left {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.services-area {
  font-size: var(--text-sm);
  color: var(--ink-faint);
  letter-spacing: 0.02em;
  line-height: 1.6;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.svc-card {
  position: relative;
  background: #ffffff;
  border: 1px solid var(--rule);
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(15, 46, 46, 0.07), 0 1px 4px rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
}
.svc-card:hover {
  box-shadow: 0 10px 36px rgba(15, 46, 46, 0.13);
  transform: translateY(-3px);
}
.svc-card-accent {
  position: absolute;
  right: 0;
  top: 0;
  width: 55%;
  height: 100%;
  background: radial-gradient(ellipse at right center, rgba(42, 144, 144, 0.10) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.svc-card-body {
  position: relative;
  z-index: 1;
  padding: 28px 28px 16px;
  flex: 1;
}
.svc-icon {
  width: 36px;
  height: 36px;
  color: var(--teal-brand);
  margin-bottom: 18px;
  display: block;
}
.svc-icon svg {
  width: 100%;
  height: 100%;
}
.svc-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.25;
}
.svc-bullets {
  font-size: var(--text-sm);
  color: var(--ink-faint);
  letter-spacing: 0.02em;
  line-height: 1.7;
}
.svc-card-footer {
  position: relative;
  z-index: 1;
  padding: 14px 28px;
  border-top: 1px solid rgba(15,46,46,0.08);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-brand);
  transition: color 0.15s;
}
.svc-card:hover .svc-card-footer {
  color: var(--amber-bright);
}

/* ─── IMAGE CAROUSEL ─── */
.carousel-section {
  background: var(--teal-dark);
  padding: 64px 0;
}
.carousel-track-wrap {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 72px;
}
.carousel-viewport {
  overflow: hidden;
  width: 100%;
}
.carousel-track {
  display: flex;
  gap: 20px;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.carousel-slide {
  flex: 0 0 calc((100% - 40px) / 3);
  min-width: 0;
}
.carousel-slide img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  border-radius: 14px;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(10, 30, 30, 0.85);
  border: 1px solid rgba(255,255,255,0.12);
  color: #d0e8e8;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, opacity 0.2s;
  z-index: 2;
}
.carousel-btn svg { width: 18px; height: 18px; }
.carousel-btn:hover { background: rgba(10, 30, 30, 1); }
.carousel-btn:disabled { opacity: 0.25; cursor: default; }
.carousel-btn--prev { left: 12px; }
.carousel-btn--next { right: 12px; }

/* ─── REVIEWS ─── */
/* ─── AREA BAND ─── */
.area-band {
  background: var(--teal-deep);
  padding: 24px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  border-top: 1px solid #0f2e2e;
}
.area-label {
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #2a5a5a;
  margin-bottom: 6px;
}
.area-towns {
  font-size: var(--text-ui);
  color: #3a6060;
  line-height: 1.8;
}
.area-phone-btn {
  background: transparent;
  border: 1px solid #1e4a4a;
  border-radius: 2px;
  padding: 12px 24px;
  font-size: var(--text-ui);
  font-weight: 500;
  color: var(--amber);
  letter-spacing: 0.06em;
  white-space: nowrap;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
  display: block;
}
.area-phone-btn:hover { border-color: var(--amber); }

/* ─── FOOTER ─── */
footer {
  background: var(--cream-mid);
  border-top: 3px solid var(--teal-accent);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 56px 48px 48px;
  max-width: 1280px;
  margin: 0 auto;
}
.footer-logo-name {
  font-family: 'Barlow Condensed', system-ui, sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: #1e2a2a;
  margin-bottom: 6px;
}
.footer-tagline {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: var(--text-sm);
  font-style: italic;
  color: #6b7f7f;
  margin-bottom: 14px;
}
.footer-desc {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: var(--text-ui);
  color: #3d4f4f;
  line-height: 1.8;
}
.footer-col-title {
  font-family: 'Barlow Condensed', system-ui, sans-serif;
  font-size: var(--text-ui);
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #1e2a2a;
  margin-bottom: 16px;
}
.footer-col-text {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: var(--text-ui);
  color: #3d4f4f;
  line-height: 2;
}
.footer-phone {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--teal-accent);
  display: block;
  margin-bottom: 10px;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-phone:hover { color: var(--teal-accent-dark); }
.footer-email {
  color: #3d4f4f;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-email:hover { color: var(--teal-accent); }
.footer-bottom {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: var(--text-xs);
  color: #6b7f7f;
  letter-spacing: 0.05em;
  background: #ebe8e1;
  padding: 16px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-social {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 22px;
}
.footer-social-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-social-text {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: var(--text-ui);
  color: #3d4f4f;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-social-text:hover { color: var(--teal-accent); }
.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--teal-accent);
  color: #fff;
  flex-shrink: 0;
  transition: background 0.2s ease;
  text-decoration: none;
}
.footer-social-link svg { width: 16px; height: 16px; display: block; }
.footer-social-link:hover { background: var(--teal-accent-dark); }
.footer-pay-icons {
  display: flex;
  flex-wrap: nowrap;
  gap: 6px;
  margin-top: 4px;
}
.footer-pay-card {
  color: #6b7f7f;
  width: 40px;
  height: 25px;
  flex-shrink: 0;
}
.footer-pay-card svg { width: 40px; height: 25px; display: block; }

/* ─── TESTIMONIALS CAROUSEL ─── */
.testimonials-section {
  /* scoped vars — override site root only within this section */
  --teal:            var(--teal-accent);
  --teal-dark:       var(--teal-accent-dark);
  --teal-light:      #e6f5f2;
  --amber:           var(--amber-bright);
  --card-bg:         #ffffff;
  --card-active-bg:  #f0faf8;
  --text-dark:       #1e2a2a;
  --text-body:       #3d4f4f;
  --text-muted:      #6b7f7f;
  --shadow-card:     0 4px 20px rgba(26,122,109,0.08);
  --shadow-card-hover: 0 8px 32px rgba(26,122,109,0.13);
  background: #fafaf8;
  padding: 80px 24px 60px;
  font-family: system-ui, -apple-system, sans-serif;
  border-bottom: 1px solid var(--rule);
}
.testimonials-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.testimonials-header h2 {
  font-family: 'Barlow Condensed', system-ui, sans-serif;
  font-size: clamp(2.25rem, 4.5vw, 3.25rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}
.testimonials-platforms {
  font-family: 'Barlow Condensed', system-ui, sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
}
.testimonials-header p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.testimonials-track-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}
.testimonials-track {
  display: flex;
  gap: 28px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.testimonial-card {
  flex: 0 0 calc(33.333% - 19px);
  min-width: 280px;
  background: var(--card-bg);
  border-radius: 16px;
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(26,122,109,0.06);
  transition: box-shadow 0.3s ease, transform 0.3s ease, background 0.3s ease;
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  left: 24px;
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 4rem;
  line-height: 1;
  color: var(--teal);
  opacity: 0.12;
  pointer-events: none;
}
.testimonial-card.active {
  background: var(--card-active-bg);
  border-color: rgba(26,122,109,0.15);
}
.testimonial-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-3px);
}
.testimonial-text {
  font-size: 0.98rem;
  line-height: 1.72;
  color: var(--text-body);
  margin-bottom: 28px;
  flex-grow: 1;
}
.testimonial-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', system-ui, sans-serif;
  font-size: 1.15rem;
  color: #fff;
  font-weight: 400;
  flex-shrink: 0;
}
.avatar-1 { background: var(--teal-accent); }
.avatar-2 { background: var(--amber-bright); color: #1e2a2a; }
.avatar-3 { background: var(--teal-accent-dark); }
.author-info h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 2px;
}
.author-info span {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 400;
}
.stars {
  display: flex;
  gap: 3px;
}
.star {
  width: 18px;
  height: 18px;
  color: var(--amber-bright);
}
.testimonials-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 48px;
}
.nav-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--teal-accent);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  color: var(--teal-accent);
}
.nav-btn:hover, .nav-btn.active {
  background: var(--teal-accent);
  color: #fff;
}
.nav-btn svg { width: 20px; height: 20px; }
@media (max-width: 900px) {
  .testimonial-card { flex: 0 0 calc(50% - 14px); }
}
@media (max-width: 600px) {
  .testimonials-section { padding: 56px 16px 48px; }
  .testimonial-card { flex: 0 0 100%; padding: 28px 24px 24px; }
  .testimonials-track { gap: 16px; }
}

/* ─── VIDEO FEATURE ─── */
.vf-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 0;
  background: #0c0f0e;
  position: relative;
}
.vf-section::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
}
.vf-left, .vf-right { position: relative; z-index: 1; }
.vf-left {
  padding: 80px 56px 80px 48px;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.vf-eyebrow {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber-bright);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.vf-eyebrow::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--amber-bright);
}
.vf-headline {
  font-family: 'Barlow Condensed', system-ui, sans-serif;
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  font-weight: 700;
  color: #f0f0eb;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 52px;
}
.vf-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.vf-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.vf-num {
  font-family: 'Barlow Condensed', system-ui, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--amber-bright);
  flex-shrink: 0;
  min-width: 28px;
  padding-top: 2px;
  letter-spacing: 0.04em;
}
.vf-item-body {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 16px;
  flex: 1;
}
.vf-item-title {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: var(--text-body);
  font-weight: 500;
  color: #d8d8d0;
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}
.vf-item-text {
  font-size: var(--text-ui);
  font-weight: 400;
  color: #6a8080;
  line-height: 1.8;
}
.vf-link {
  color: var(--amber-bright);
  text-decoration: none;
  border-bottom: 1px solid rgba(232,168,36,0.3);
  transition: border-color 0.2s;
}
.vf-link:hover { border-color: var(--amber-bright); }
.vf-right {
  padding: 80px 48px 80px 56px;
  display: flex;
  align-items: center;
}
.vf-video-sticky {
  width: 100%;
}
.vf-video {
  width: 100%;
  display: block;
  border-radius: 8px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6);
}

/* ─── CAROUSEL REVIEW PROMPT ─── */
.carousel-review-prompt {
  text-align: center;
  padding: 0 24px 44px;
}
.carousel-review-heading {
  font-family: 'Barlow Condensed', system-ui, sans-serif;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.carousel-review-icons {
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-review-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 44px;
  color: rgba(245,245,240,0.55);
  text-decoration: none;
  transition: transform 0.2s ease, color 0.2s ease;
}
.carousel-review-icon--up { color: #2ab090; }
.carousel-review-icon svg { width: 44px; height: 44px; display: block; }
.carousel-review-icon--up:hover  { transform: scale(1.12); color: var(--teal-accent); }
.carousel-review-icon--down:hover { transform: scale(1.12); color: rgba(245,245,240,0.9); }
.carousel-review-divider {
  width: 1px;
  height: 56px;
  background: rgba(245,245,240,0.15);
  flex-shrink: 0;
}

/* ─── FLOATING CONTACT WIDGET ─── */
.fw-wrap {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  gap: 8px;
  align-items: flex-end;
}
.fw-call-wrap,
.fw-menu-wrap {
  position: relative;
}
.fw-call-btn {
  display: flex;
  align-items: center;
  gap: 9px;
  background: var(--teal-brand);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 13px 20px;
  font-size: var(--text-ui);
  font-weight: 600;
  font-family: system-ui, -apple-system, sans-serif;
  letter-spacing: 0.02em;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(0,0,0,0.22);
  white-space: nowrap;
  transition: background 0.2s, box-shadow 0.2s;
  line-height: 1;
}
.fw-call-btn:hover { background: var(--teal-mid); }
.fw-call-btn svg { width: 17px; height: 17px; flex-shrink: 0; }
.fw-menu-btn {
  width: 48px;
  height: 48px;
  background: #fff;
  border: 1px solid #d8d4cc;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(0,0,0,0.12);
  transition: background 0.2s;
  padding: 0;
}
.fw-menu-btn:hover { background: #f7f4ef; }
.fw-menu-btn svg { width: 20px; height: 20px; color: #1a1a18; }
.fw-popup {
  position: absolute;
  bottom: calc(100% + 10px);
  right: 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.16), 0 2px 8px rgba(0,0,0,0.08);
  padding: 18px 20px 14px;
  min-width: 268px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.fw-popup.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.fw-popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  cursor: pointer;
  color: #9a9a8a;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: color 0.15s, background 0.15s;
}
.fw-popup-close:hover { color: #1a1a18; background: #f0ece4; }
.fw-popup-close svg { width: 15px; height: 15px; }
.fw-popup-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 0;
  color: #1a1a18;
  text-decoration: none;
  font-size: var(--text-ui);
  font-family: system-ui, -apple-system, sans-serif;
  font-weight: 500;
  border-bottom: 1px solid #f0ece4;
  transition: color 0.15s;
}
.fw-popup-link:last-of-type { border-bottom: none; padding-bottom: 0; }
.fw-popup-link:hover { color: var(--teal-brand); }
.fw-popup-link svg { width: 15px; height: 15px; flex-shrink: 0; color: var(--teal-brand); }
.fw-menu-popup { min-width: 280px; padding: 20px 20px 18px; }
.fw-menu-title {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a18;
  margin-bottom: 8px;
  margin-right: 20px;
  line-height: 1.2;
}
.fw-menu-text {
  font-size: var(--text-ui);
  color: #6a6a5a;
  line-height: 1.65;
}

/* Dark popup variant (call button tooltip) */
.fw-popup--dark {
  background: #0f2020;
  border: 1px solid rgba(255,255,255,0.1);
}
.fw-popup-close--dark { color: #6a8a8a; }
.fw-popup-close--dark:hover { color: #e0f0f0; background: rgba(255,255,255,0.08); }
.fw-popup-link--dark {
  color: #d0e8e8;
  border-bottom-color: rgba(255,255,255,0.08);
  background: none;
  border: none;
  cursor: pointer;
  width: 100%;
  text-align: left;
  font-family: system-ui, -apple-system, sans-serif;
  font-weight: 500;
  font-size: var(--text-ui);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
}
.fw-popup-link--dark:last-of-type { border-bottom: none; padding-bottom: 0; }
.fw-popup-link--dark:hover { color: var(--teal-brand); }
.fw-popup-link--dark svg { width: 15px; height: 15px; flex-shrink: 0; color: var(--teal-brand); }

/* Contact modal */
.fw-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fw-modal[hidden] { display: none; }
.fw-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}
.fw-modal-card {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 14px;
  padding: 40px 36px 32px;
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.fw-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: none;
  border: none;
  cursor: pointer;
  color: #9a9a8a;
  padding: 6px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fw-modal-close:hover { color: #1a1a18; background: #f0ece4; }
.fw-modal-close svg { width: 18px; height: 18px; }

/* ─── LIGHTBOX ─── */
.lb-overlay {
  position: fixed;
  inset: 0;
  z-index: 11000;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lb-overlay[hidden] { display: none; }

.lb-img-wrap {
  position: relative;
  max-width: 90vw;
  max-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lb-img {
  display: block;
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 4px;
  user-select: none;
}

.lb-close {
  position: fixed;
  top: 16px;
  right: 20px;
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
  z-index: 1;
}
.lb-close:hover { background: rgba(255,255,255,0.22); }
.lb-close svg { width: 20px; height: 20px; }

.lb-arrow {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  cursor: pointer;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
  z-index: 1;
}
.lb-arrow:hover { background: rgba(255,255,255,0.22); }
.lb-arrow:disabled { opacity: 0.2; cursor: default; }
.lb-arrow svg { width: 22px; height: 22px; }
.lb-arrow--prev { left: 16px; }
.lb-arrow--next { right: 16px; }

.lb-counter {
  position: fixed;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.55);
  font-family: system-ui, -apple-system, sans-serif;
  font-size: var(--text-ui);
  letter-spacing: 0.05em;
  pointer-events: none;
}

/* ─── HAMBURGER BUTTON (mobile only — hidden on desktop) ─── */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border-radius: 4px;
  color: var(--cream);
  flex-shrink: 0;
  transition: background 0.15s;
}
.nav-hamburger:hover { background: rgba(255, 255, 255, 0.1); }
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.22s ease, opacity 0.22s ease;
  pointer-events: none;
}
.nav-hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile CTA item in nav list — hidden on desktop so it doesn't appear in the desktop nav row */
.nav-mobile-cta-item { display: none; }
.nav-mobile-cta {
  display: block;
  padding: 12px 20px;
  background: var(--amber);
  color: var(--teal-dark);
  font-family: system-ui, -apple-system, sans-serif;
  font-size: var(--text-ui);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 50px;
  text-align: center;
  text-decoration: none;
  border: 2px solid var(--teal-dark);
  box-shadow: 3px 3px 0px var(--teal-dark);
  transition: transform 0.15s, box-shadow 0.15s;
}
.nav-mobile-cta:hover {
  transform: translate(3px, 3px);
  box-shadow: none;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) and (min-width: 769px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .carousel-slide { flex: 0 0 calc((100% - 20px) / 2); }
}

@media (max-width: 768px) {
  .testimonial-slider-section { flex-direction: column; }
  .testimonial-col { flex: none; padding: 48px 20px; border-right: none; border-bottom: 1px solid #0f2e2e; }
  .slider-col { padding: 40px 20px; }
  .ba-section-title { font-size: 18px; padding: 10px 20px; }
  .ba-handle-btn { width: 44px; height: 44px; }

  /* ── Mobile Tier 1: single-row phone bar (~64px) ── */
  .phone-bar {
    flex-direction: row;
    gap: 12px;
    padding: 10px 16px;
    align-items: center;
    text-align: left;
  }
  .phone-bar .logo { flex: 1; }
  .phone-bar .logo-sub { display: none; }
  .phone-bar .logo-name { white-space: nowrap; font-size: 1.25rem; }
  .phone-bar-right { display: none; }
  .phone-bar-label { display: none; }
  .phone-bar-link { gap: 0; }
  .phone-bar-number { font-size: 1.125rem; }
  .nav-hamburger { display: flex; }

  /* ── Mobile Tier 2: nav collapses to zero height ── */
  nav {
    padding: 0;
    border-bottom: none;
    height: 0;
    min-height: 0;
    overflow: visible;
    gap: 0;
  }

  /* ── Nav links hidden until menu opens ── */
  .nav-links { display: none; }

  /* ── Open state: nav-links as fixed overlay below phone bar ── */
  nav.nav-open .nav-links {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: fixed;
    top: var(--mobile-phonebar-h);
    left: 0;
    right: 0;
    background: var(--cream);
    border-top: 2px solid var(--teal-brand);
    box-shadow: 0 8px 32px rgba(14, 46, 46, 0.18);
    bottom: 0;
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 98;
    padding: 0;
    list-style: none;
    margin: 0;
  }

  /* ── Mobile CTA item (Send a Message) ── */
  nav.nav-open .nav-mobile-cta-item {
    display: block;
    padding: 20px 24px 8px 20px;
  }

  /* ── Standard nav link/button items ── */
  nav.nav-open .nav-links > li:not(.nav-has-dropdown):not(.nav-mobile-cta-item) > a,
  nav.nav-open .nav-links > li:not(.nav-has-dropdown):not(.nav-mobile-cta-item) > button {
    display: block;
    width: 100%;
    padding: 15px 20px;
    font-size: 1rem;
    font-family: system-ui, -apple-system, sans-serif;
    color: var(--ink);
    text-align: left;
    text-decoration: none;
    border: none;
    border-bottom: 1px solid rgba(14, 46, 46, 0.08);
    letter-spacing: 0.01em;
    box-sizing: border-box;
    background: none;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
  }
  nav.nav-open .nav-links > li:not(.nav-has-dropdown):not(.nav-mobile-cta-item) > a:hover,
  nav.nav-open .nav-links > li:not(.nav-has-dropdown):not(.nav-mobile-cta-item) > button:hover {
    background: rgba(42, 144, 144, 0.07);
    color: var(--teal-brand);
  }

  /* ── Services: static category label, sub-items always visible ── */
  nav.nav-open .nav-has-dropdown > button {
    display: block;
    width: 100%;
    padding: 12px 20px 6px;
    font-size: var(--text-xs);
    font-family: system-ui, -apple-system, sans-serif;
    color: var(--teal-brand);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-align: left;
    background: none;
    border: none;
    border-bottom: none;
    pointer-events: none;
    cursor: default;
  }
  nav.nav-open .nav-has-dropdown > button .nav-chevron { display: none; }
  nav.nav-open .nav-has-dropdown::after { display: none; }
  nav.nav-open .nav-dropdown {
    display: block;
    position: static;
    opacity: 1;
    pointer-events: auto;
    box-shadow: none;
    border: none;
    border-bottom: 1px solid rgba(14, 46, 46, 0.08);
    border-radius: 0;
    min-width: unset;
    padding: 0;
    background: rgba(14, 46, 46, 0.03);
    transform: none;
    transition: none;
  }
  nav.nav-open .nav-dropdown::before { display: none; }
  nav.nav-open .nav-dropdown li a {
    display: block;
    padding: 12px 20px 12px 32px;
    font-size: 0.875rem;
    color: var(--ink-soft);
    letter-spacing: 0.02em;
    text-decoration: none;
    border-bottom: 1px solid rgba(14, 46, 46, 0.05);
    transition: background 0.15s, color 0.15s;
    white-space: normal;
  }
  nav.nav-open .nav-dropdown li:last-child a { border-bottom: none; }
  nav.nav-open .nav-dropdown li a:hover {
    background: rgba(42, 144, 144, 0.07);
    color: var(--teal-brand);
  }
  .hero { flex-direction: column-reverse; gap: 0; padding: 0; min-height: unset; }
  .hero-video-container { flex: none; width: 100%; height: 240px; border-radius: 0; }
  .hero-content { padding: 40px 20px; max-width: 100%; }
  .trust-strip { padding: 12px 20px; gap: 8px 20px; justify-content: center; }
  .trust-item { font-size: var(--text-sm); }
  .trust-check { font-size: var(--text-body); }
  .vf-section { grid-template-columns: 1fr; }
  .carousel-slide { flex: 0 0 100%; }
  .carousel-track-wrap { padding: 0 56px; }
  .vf-right { order: -1; padding: 40px 24px 24px; }
  .vf-left { padding: 32px 24px 56px; border-right: none; }
  .vf-video-sticky { position: static; }
  .diff-section { grid-template-columns: 1fr; }
  .diff-left { padding: 32px 24px 36px; }
  .diff-right { padding: 0 24px 48px; }
  .diff-form-card { border-radius: 8px; padding: 28px 24px; }
  .diff-trust-row { gap: 12px; }
  .contact-form-grid { grid-template-columns: 1fr; }
  .services-section { padding: 48px 20px; }
  .services-grid { grid-template-columns: 1fr; gap: 12px; margin-top: 24px; }
  .area-band { padding: 20px; flex-direction: column; align-items: flex-start; gap: 16px; }
  .area-phone-btn { width: 100%; text-align: center; padding: 14px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; padding: 40px 24px 36px; }
  .footer-pay-icons { gap: 4px; }
  .footer-bottom { padding: 14px 24px; }
  .pull-quote-open { font-size: 60px; }

  /* ── Hero: tighter headline on narrow screens ── */
  .hero-h1 { font-size: clamp(2.5rem, 8vw, 3rem); }

  /* ── Services header: stack label + note on mobile ── */
  .services-header { flex-direction: column; gap: 8px; align-items: flex-start; }

  /* ── Testimonials: single card per view at mobile widths ── */
  .testimonials-section { padding: 48px 16px 40px; }
  .testimonials-header { margin-bottom: 32px; }
  .testimonial-card { flex: 0 0 100%; }

  /* ── VF list: tighter vertical rhythm on mobile ── */
  .vf-list { gap: 24px; }
}

/* ─── ACCESSIBILITY HELPERS ─── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ─── SKIP LINK ─── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--teal-brand);
  color: #fff;
  padding: 8px 16px;
  border-radius: 0 0 4px 4px;
  font-size: var(--text-ui);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  z-index: 99999;
  transition: top 0.15s ease;
}
.skip-link:focus { top: 0; }

/* ─── NAV DROPDOWN ─── */
nav { position: relative; z-index: 50; }
.nav-has-dropdown { position: relative; }
.nav-has-dropdown > a { cursor: pointer; }
/* invisible bridge fills the gap so hover isn't lost mid-travel */
.nav-has-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -16px;
  right: -16px;
  height: 12px;
}
.nav-chevron {
  display: inline-block;
  font-size: var(--text-xs);
  margin-left: 3px;
  opacity: 0.55;
  vertical-align: middle;
  transition: transform 0.18s ease;
  line-height: 1;
}
.nav-has-dropdown:hover .nav-chevron { transform: rotate(180deg); }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--cream);
  border: 1px solid var(--rule);
  border-radius: 6px;
  list-style: none;
  min-width: 196px;
  padding: 6px 0;
  box-shadow: 0 6px 24px rgba(0,0,0,0.10), 0 1px 4px rgba(0,0,0,0.06);
  z-index: 300;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
}
.nav-has-dropdown:hover .nav-dropdown,
.nav-has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  pointer-events: all;
}
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 50%;
  width: 9px;
  height: 9px;
  background: var(--cream);
  border-left: 1px solid var(--rule);
  border-top: 1px solid var(--rule);
  transform: translateX(-50%) rotate(45deg);
}
.nav-dropdown li a {
  display: block;
  padding: 9px 18px;
  font-size: var(--text-ui);
  color: var(--ink-soft);
  white-space: nowrap;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: color 0.15s, background 0.15s;
}
.nav-dropdown li a:hover { color: var(--teal-brand); background: rgba(42,144,144,0.05); }

/* ─── FOCUS STYLES ─── */
:focus-visible {
  outline: 2px solid var(--teal-brand);
  outline-offset: 2px;
}
/* Form fields already use border-color on focus — no outline needed */
.form-field:focus-visible,
textarea.contact-message:focus-visible {
  outline: none;
}
/* Nav and button focus ring */
.nav-btn:focus-visible,
.carousel-btn:focus-visible,
.fw-menu-btn:focus-visible {
  outline: 2px solid var(--teal-brand);
  outline-offset: 2px;
}

/* ─── NAV SERVICES BUTTON ─── */
/* Allows <button> to replace <a tabindex="0"> for proper semantics */
.nav-has-dropdown > button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-size: var(--text-ui);
  color: var(--ink-soft);
  letter-spacing: 0.02em;
  transition: color 0.2s;
  font-family: inherit;
}
.nav-has-dropdown > button:hover { color: var(--teal-brand); }

/* ─── DELIGHT ANIMATIONS ─── */
@keyframes kicker-draw {
  from { width: 0; opacity: 0; }
  to   { width: 28px; opacity: 1; }
}
@keyframes phone-pulse {
  0%   { transform: scale(1); }
  45%  { transform: scale(1.07); }
  100% { transform: scale(1); }
}
@keyframes success-fade-in {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes check-draw {
  from { stroke-dashoffset: 40; }
  to   { stroke-dashoffset: 0; }
}

/* Section kicker line-draw */
.section-kicker.kicker-ready::before {
  width: 0;
  opacity: 0;
}
.section-kicker.kicker-animate::before {
  animation: kicker-draw 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Phone bar one-time nudge */
.phone-bar-number.pulse-once {
  display: inline-block;
  animation: phone-pulse 0.55s cubic-bezier(0.25, 1, 0.5, 1);
  transform-origin: center;
}

/* Button press feedback */
.btn-primary:active {
  transform: translate(4px, 4px);
  box-shadow: none;
  transition: transform 0.06s, box-shadow 0.06s;
}
.form-submit:active {
  transform: translateY(2px);
  opacity: 0.88;
  transition: transform 0.06s, opacity 0.06s;
}

/* Form success state */
.form-success {
  animation: success-fade-in 0.5s cubic-bezier(0.25, 1, 0.5, 1) both;
  text-align: center;
  padding: 40px 16px;
}
.form-success-check {
  display: block;
  margin: 0 auto 20px;
}
.form-success-check circle {
  stroke: var(--amber);
  stroke-width: 2;
  fill: none;
  opacity: 0.2;
}
.form-success-check path {
  stroke: var(--amber);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
  animation: check-draw 0.5s 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.form-success-title {
  font-family: 'Barlow Condensed', system-ui, sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--teal-dark);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.form-success-body {
  font-size: var(--text-body);
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 300px;
  margin: 0 auto;
}
.form-success-body strong { color: var(--text-dark); font-weight: 600; }
.form-success-body a { color: var(--teal-brand); }

/* ─── SCROLL ANIMATIONS ─── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.reveal-word.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── REDUCED MOTION ─── */
@media (prefers-reduced-motion: reduce) {
  .fade-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .reveal-word {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .carousel-track,
  .testimonials-track {
    transition: none;
  }
  .phone-bar-cta,
  .btn-primary {
    transition: none;
  }
  .section-kicker.kicker-animate::before {
    animation: none;
    width: 28px;
    opacity: 1;
  }
  .phone-bar-number.pulse-once {
    animation: none;
  }
  .form-success {
    animation: none;
  }
  .form-success-check path {
    animation: none;
    stroke-dashoffset: 0;
  }
}
