/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --teal:       #01696F;
  --teal-mid:   #0C4E54;
  --teal-dark:  #1B474D;
  --teal-light: #E6F2F2;
  --teal-pale:  #F0F8F8;
  --amber:      #964219;
  --amber-bg:   #FFF8EC;
  --text:       #28251D;
  --muted:      #7A7974;
  --faint:      #BAB9B4;
  --border:     #D4D1CA;
  --bg:         #FAFAF8;
  --surface:    #F7F6F2;
  --white:      #FFFFFF;

  --font-display: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --shadow-sm:  0 1px 3px rgb(0 0 0 / 0.08), 0 1px 2px rgb(0 0 0 / 0.06);
  --shadow-md:  0 4px 16px rgb(0 0 0 / 0.08), 0 2px 6px rgb(0 0 0 / 0.06);
  --shadow-lg:  0 12px 40px rgb(0 0 0 / 0.10), 0 4px 12px rgb(0 0 0 / 0.07);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.2; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── NAV ─────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 250, 248, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s ease;
}
.nav.scrolled { box-shadow: var(--shadow-sm); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-mark {
  width: 32px;
  height: 32px;
  color: var(--teal);
  flex-shrink: 0;
}
.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--teal-mid);
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--teal); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.15s;
  text-decoration: none;
  border: none;
  line-height: 1;
}
.btn:active { transform: scale(0.98); }

.btn-nav {
  background: var(--teal);
  color: var(--white);
  padding: 9px 18px;
}
.btn-nav:hover { background: var(--teal-mid); }

.btn-primary {
  background: var(--teal);
  color: var(--white);
  padding: 14px 28px;
  font-size: 15px;
  box-shadow: 0 2px 8px rgb(1 105 111 / 0.3);
}
.btn-primary:hover { background: var(--teal-mid); box-shadow: 0 4px 14px rgb(1 105 111 / 0.35); }

.btn-ghost {
  background: transparent;
  color: var(--teal-mid);
  padding: 14px 20px;
  font-size: 15px;
}
.btn-ghost:hover { background: var(--teal-light); }

.btn-outline {
  background: transparent;
  color: var(--teal);
  border: 1.5px solid var(--teal);
  padding: 11px 22px;
}
.btn-outline:hover { background: var(--teal-light); }

.btn-full { width: 100%; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
  display: block;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  z-index: 99;
  padding: 16px 24px 24px;
  transform: translateY(-100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-link {
  display: block;
  font-size: 16px;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.mobile-link:last-child { border-bottom: none; }
.cta-link {
  color: var(--teal);
  font-weight: 700;
}

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: clamp(80px, 12vw, 140px) 0 clamp(60px, 8vw, 100px);
  overflow: hidden;
  background: var(--white);
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, var(--border) 1px, transparent 1px),
    linear-gradient(to bottom, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.35;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black, transparent);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.badge-pill {
  display: inline-block;
  background: var(--teal-light);
  color: var(--teal-mid);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}

.hero-heading {
  font-size: clamp(38px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.07;
  color: var(--text);
  margin-bottom: 24px;
}
.hero-heading .accent { color: var(--teal); }

.hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--muted);
  max-width: 640px;
  line-height: 1.65;
  margin-bottom: 40px;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  padding: 24px 32px;
  background: var(--surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  width: fit-content;
  gap: 0;
}
.stat {
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat:first-child { padding-left: 0; }
.stat-num {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
}
.stat-unit {
  font-size: 16px;
  font-weight: 600;
}
.stat-label {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
  white-space: nowrap;
}
.stat-div {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

/* ── TRUST BAR ──────────────────────────────────────────── */
.trust-bar {
  background: var(--teal-mid);
  padding: 16px 0;
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.9);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 24px;
}
.trust-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: rgba(255,255,255,0.7);
}
.trust-sep {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.2);
}

/* ── SECTION COMMON ────────────────────────────────────── */
.section { padding: clamp(64px, 8vw, 120px) 0; }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}
.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}
.section-header h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.65;
}

/* ── SERVICES ───────────────────────────────────────────── */
.services { background: var(--surface); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.featured-card {
  border-color: var(--teal);
  border-width: 2px;
  background: var(--teal-pale);
}
.service-icon {
  width: 44px;
  height: 44px;
  background: var(--teal-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--teal);
}
.featured-card .service-icon { background: var(--teal-light); }
.service-icon svg { width: 22px; height: 22px; }
.service-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 16px;
}
.service-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.service-list li {
  font-size: 13px;
  color: var(--muted);
  padding-left: 16px;
  position: relative;
}
.service-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-size: 12px;
}

/* ── PRICING ────────────────────────────────────────────── */
.pricing-section { background: var(--white); }

.pricing-group { margin-bottom: 60px; }
.pricing-group-label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.hourly-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.hourly-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
}
.accent-card {
  border-color: var(--teal);
  background: var(--teal-light);
}
.hourly-rate {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 6px;
}
.hourly-rate span {
  font-size: 16px;
  font-weight: 600;
  color: var(--muted);
}
.hourly-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.hourly-detail {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}

.retainer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: start;
}
.retainer-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}
.retainer-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.retainer-featured {
  background: var(--teal-mid);
  border-color: var(--teal-mid);
  color: white;
}
.retainer-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  white-space: nowrap;
}
.retainer-tier {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.retainer-featured .retainer-tier { color: rgba(255,255,255,0.7); }
.retainer-price {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 6px;
}
.retainer-featured .retainer-price { color: white; }
.retainer-price span {
  font-size: 15px;
  font-weight: 600;
  color: var(--muted);
}
.retainer-price span.small { font-size: 12px; }
.retainer-featured .retainer-price span { color: rgba(255,255,255,0.65); }
.retainer-desc {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 20px;
}
.retainer-featured .retainer-desc { color: rgba(255,255,255,0.65); }
.retainer-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}
.retainer-features li {
  font-size: 13px;
  color: var(--muted);
  padding-left: 18px;
  position: relative;
  line-height: 1.45;
}
.retainer-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
  font-size: 12px;
}
.retainer-featured .retainer-features li { color: rgba(255,255,255,0.85); }
.retainer-featured .retainer-features li::before { color: rgba(255,255,255,0.8); }
.retainer-featured .btn-outline {
  border-color: white;
  color: white;
}
.retainer-featured .btn-outline:hover { background: rgba(255,255,255,0.15); }

.pricing-note {
  background: var(--teal-light);
  border: 1px solid rgba(1,105,111,0.2);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  font-size: 14px;
  color: var(--teal-mid);
  line-height: 1.6;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

/* ── COVERAGE ───────────────────────────────────────────── */
.coverage-section { background: var(--surface); }
.coverage-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: center;
}
.coverage-text h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 16px;
}
.coverage-text > p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 36px;
}
.county-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}
.county-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.county-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 4px;
}
.county-dot.navarro { background: var(--teal); }
.county-dot.ellis   { background: var(--teal-dark); }
.county-dot.henderson { background: #20808D; }
.county-item strong {
  font-size: 15px;
  font-weight: 700;
  display: block;
  margin-bottom: 2px;
}
.county-item span {
  font-size: 13px;
  color: var(--muted);
}
.coverage-note {
  background: var(--teal-light);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 13px;
  color: var(--teal-mid);
  line-height: 1.5;
}
.tx-map {
  width: 100%;
  max-width: 420px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--white);
  padding: 12px;
  box-shadow: var(--shadow-sm);
}

/* ── WHY WTL ─────────────────────────────────────────────── */
.why-section { background: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 40px;
}
.why-card { padding: 8px 0; }
.why-num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  color: var(--teal-light);
  line-height: 1;
  margin-bottom: 12px;
}
.why-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.why-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* ── TEAM ────────────────────────────────────────────────── */
.team-section { background: var(--surface); }
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  display: flex;
  gap: 28px;
  transition: box-shadow 0.2s;
}
.team-card:hover { box-shadow: var(--shadow-md); }
.team-avatar {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
}
.team-avatar svg { width: 80px; height: 80px; }
.team-info { flex: 1; }
.team-info h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 4px;
}
.team-role {
  font-size: 13px;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.team-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 14px;
}
.team-location svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  color: var(--faint);
}
.team-info p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 16px;
}
.team-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.team-tags span {
  font-size: 11px;
  font-weight: 600;
  color: var(--teal-mid);
  background: var(--teal-light);
  padding: 3px 10px;
  border-radius: 100px;
}

/* Coming Soon team card */
.team-card--coming-soon {
  opacity: 0.88;
  border: 1.5px dashed var(--teal-medium, #1A8A92);
}
.coming-soon-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
  background: var(--gold, #C9952A);
  border-radius: 4px;
  padding: 2px 7px;
  margin-left: 8px;
  vertical-align: middle;
  line-height: 1.6;
}

.team-note {
  text-align: center;
  margin-top: 32px;
  font-size: 14px;
  color: var(--muted);
  font-style: italic;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* ── CONTACT ─────────────────────────────────────────────── */
.contact-section { background: var(--white); }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-text h2 {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 16px;
}
.contact-text > p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 32px;
}
.contact-details { display: flex; flex-direction: column; gap: 14px; }
.contact-detail {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
}
.contact-detail svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--teal);
}
.contact-detail a {
  color: var(--teal);
  font-weight: 600;
}
.contact-detail a:hover { text-decoration: underline; }

.contact-form-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(1,105,111,0.12);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select { cursor: pointer; }

.form-success {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--teal-light);
  border: 1px solid rgba(1,105,111,0.2);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 14px;
  color: var(--teal-mid);
  font-weight: 600;
}
.form-success svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--teal);
}
.form-success[hidden] { display: none; }

.form-error {
  background: #fdf2f2;
  border: 1px solid #e8b4b4;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 14px;
  color: #8b1a1a;
  font-weight: 500;
  margin-top: 8px;
}
.form-error[hidden] { display: none; }
/* Trust note below submit button */
.form-trust-note {
  font-size: 13px;
  color: var(--text-muted, #6b7a80);
  text-align: center;
  margin-top: -6px;
  line-height: 1.5;
}


/* Sending state — visual feedback while fetch is in flight */
#submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* ── FOOTER ──────────────────────────────────────────────── */
.footer { background: var(--teal-dark); color: rgba(255,255,255,0.9); }
.footer-inner {
  padding: 64px 24px 48px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-logo .logo-mark { color: rgba(255,255,255,0.9); }
.footer-logo .logo-text { color: rgba(255,255,255,0.9); }
.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  max-width: 300px;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 4px;
}
.footer-col a, .footer-col span {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.footer-col a:hover { color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 24px;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 8px;
}

/* ── ANIMATIONS ─────────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1), transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-in.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .hourly-grid { grid-template-columns: repeat(2, 1fr); }
  .retainer-grid { grid-template-columns: repeat(2, 1fr); }
  .coverage-layout { grid-template-columns: 1fr; gap: 48px; }
  .coverage-map-area { display: flex; justify-content: center; }
  .tx-map { max-width: 320px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-links { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: block; }

  .hero-stats {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px;
    gap: 16px;
  }
  .stat { padding: 0; }
  .stat-div { display: none; }

  .trust-inner { justify-content: flex-start; overflow-x: auto; gap: 0; }
  .trust-sep { display: none; }
  .trust-item { white-space: nowrap; }

  .services-grid { grid-template-columns: 1fr; }
  .hourly-grid { grid-template-columns: 1fr 1fr; }
  .retainer-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .team-card { flex-direction: column; gap: 20px; }
  .why-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-bottom .container { flex-direction: column; gap: 4px; }
}

@media (max-width: 480px) {
  .hourly-grid { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px 20px; }
  .logo-text { font-size: 14px; }
}

/* ── Skip to main content (accessibility) ── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  background: var(--teal-dark, #0C4E54);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 0 0 6px 6px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 0;
}

/* ── CWV / Performance: compositor hints ── */
/* Promote animated elements to their own GPU layer to prevent layout thrash */
.fade-in {
  will-change: opacity, transform;
}
.fade-in.visible {
  will-change: auto; /* release after animation completes */
}
.mobile-menu {
  will-change: transform;
}
/* hero-grid mask fallback for older Safari (mask-image prefix) */
.hero-grid {
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black, transparent);
}
