@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=IBM+Plex+Mono:wght@400;500;700&family=IBM+Plex+Sans:wght@400;500;600&display=swap');

/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --primary:        #2F4B29;
  --primary-hover:  #3a5e33;
  --canvas:         #0E1109;
  --surface:        #1A2314;
  --ink:            #EDE8E0;
  --muted:          #7A8C72;
  --cream:          #DAD3C8;
  --rule:           #DAD3C8;
  --border:         rgba(218,211,200,0.15);
  --border-strong:  rgba(218,211,200,0.3);
  --ink-mid:        #C8C0B4;
  --radius:         4px;
  --radius-pill:    999px;
  --transition:     150ms ease-out;
  --font-display:   'DM Serif Display', Georgia, serif;
  --font-body:      'IBM Plex Sans', system-ui, sans-serif;
  --font-mono:      'IBM Plex Mono', 'Courier New', monospace;
  --container:      1280px;
}

/* ============================================================
   RESET + GLOBAL
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* Universal image cap */
img { max-width: 100%; height: auto; display: block; }

section img:not(.hero-bg):not([class*="full-bleed"]):not([class*="fullbleed"]) {
  max-height: 640px;
  object-fit: cover;
}

.nav img, header img, .header img, .nav-logo img, .logo img {
  max-height: 64px !important;
  max-width: 220px !important;
  width: auto !important;
  align-self: flex-start !important;
  object-fit: contain !important;
  flex: 0 0 auto !important;
}

.footer img, footer img {
  max-height: 48px !important;
  max-width: 200px !important;
  width: auto !important;
  align-self: flex-start !important;
  object-fit: contain !important;
  flex: 0 0 auto !important;
}

.hero { position: relative; overflow: hidden; }
.hero-bg, .hero > img:first-of-type {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.hero-inner, .hero > :not(img):not(.hero-bg):not(.hero-overlay) {
  position: relative; z-index: 2;
}
.hero-overlay { position: absolute; inset: 0; z-index: 1; pointer-events: none; }

/* Anchors inside headings */
h1 a, h2 a, h3 a, .hero-title a, .hero-eyebrow a, .hero-sub a {
  color: inherit; text-decoration: none; border-bottom: 0;
}

a { color: var(--ink); transition: color var(--transition); }
a:hover { color: var(--cream); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }

ul { list-style: none; }
button { cursor: pointer; }

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 80px);
}

.wide-container {
  max-width: 1400px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 80px);
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.display { font-family: var(--font-display); font-weight: 400; line-height: 0.95; letter-spacing: -0.01em; }

/* ============================================================
   SECTION RULE + EYEBROW (the unique design move)
   ============================================================ */
.section-rule {
  border: none;
  border-top: 1px solid var(--rule);
  margin: 0 0 0 0;
  width: 100%;
}

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  padding: 8px 0 24px 0;
  position: relative;
  top: -1px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary,
.form-submit {
  display: inline-block;
  background: var(--primary);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: none;
  text-decoration: none;
  transition: background var(--transition), transform var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary:hover,
.form-submit:hover {
  background: var(--primary-hover);
  color: var(--ink);
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-phone {
  display: inline-block;
  background: transparent;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border-strong);
  text-decoration: none;
  transition: border-color var(--transition), color var(--transition);
  white-space: nowrap;
}

.btn-phone:hover {
  border-color: var(--cream);
  color: var(--cream);
  text-decoration: none;
}

/* ============================================================
   UTILITY BAR
   ============================================================ */
.util-bar {
  background: var(--surface);
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px clamp(20px, 5vw, 80px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 900;
  border-bottom: 1px solid var(--border);
}

.util-bar-left { color: var(--muted); }

.util-bar-right {
  display: flex;
  gap: 24px;
  align-items: center;
}

.util-bar-right a {
  color: var(--cream);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color var(--transition);
}

.util-bar-right a:hover { color: var(--ink); text-decoration: none; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  background: var(--canvas);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 40px;
  z-index: 800;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 5vw, 80px);
  height: 68px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex: 0 0 auto;
}

.nav-logo-name {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--ink);
  white-space: nowrap;
}

.nav-links {
  display: none;
  flex-direction: row;
  gap: 36px;
  list-style: none;
  align-items: center;
}

.nav-links li a {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color var(--transition);
}

.nav-links li a:hover {
  color: var(--ink);
  text-decoration: none;
}

.nav-cta {
  display: none;
}

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

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--ink);
  transition: transform 200ms, opacity 200ms;
}

@media (min-width: 900px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-block; }
  .nav-toggle { display: none; }
}

/* Mobile nav open state */
.nav-links.open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 68px;
  left: 0;
  right: 0;
  background: var(--canvas);
  border-bottom: 1px solid var(--border);
  padding: 24px clamp(20px, 5vw, 80px);
  gap: 20px;
  z-index: 850;
}

/* ============================================================
   HERO
   ============================================================ */
#hero {
  background: var(--canvas);
  min-height: 92vh;
  display: grid;
  grid-template-columns: 55fr 45fr;
  overflow: hidden;
}

.hero-left {
  padding: clamp(60px, 8vh, 120px) clamp(20px, 5vw, 80px) clamp(60px, 8vh, 120px) clamp(20px, 5vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(64px, 9.5vw, 140px);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 28px;
}

.hero-sub {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  align-items: center;
  margin-bottom: 36px;
  list-style: none;
}

.trust-chip {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  padding: 6px 14px;
  position: relative;
}

.trust-chip + .trust-chip::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 60%;
  width: 1px;
  background: var(--primary);
}

.trust-chip:first-child { padding-left: 0; }

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-right {
  position: relative;
  overflow: hidden;
}

.hero-right::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--cream);
  z-index: 2;
}

.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  max-height: none;
  display: block;
}

@media (max-width: 899px) {
  #hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-right {
    height: 52vw;
    min-height: 280px;
    order: -1;
  }
  .hero-right::before { display: none; }
  .hero-left {
    padding: 40px clamp(20px, 5vw, 40px);
  }
  .hero-title { font-size: clamp(48px, 10vw, 80px); }
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}

.trust-strip-inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 80px);
  display: flex;
  flex-wrap: wrap;
  gap: 0 4px;
  align-items: center;
}

.trust-strip-item {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 4px 12px;
  position: relative;
}

.trust-strip-item + .trust-strip-item::before {
  content: '\00B7';
  position: absolute;
  left: -2px;
  color: var(--muted);
  top: 50%;
  transform: translateY(-50%);
}

.trust-strip-item.city {
  color: var(--cream);
}

/* ============================================================
   SECTION SHARED
   ============================================================ */
.services-inner,
.about-inner,
.credentials-inner,
.service-areas-inner,
.contact-inner {
  max-width: var(--container);
  margin-inline: auto;
  padding: clamp(72px, 9vh, 120px) clamp(20px, 5vw, 80px);
}

/* Section alternation */
#services  { background: var(--canvas); }
#about     { background: var(--surface); }
#gallery   { background: var(--canvas); }
#credentials { background: var(--surface); }
#service-areas { background: var(--canvas); }
#contact   { background: var(--surface); }

/* ============================================================
   SERVICES
   ============================================================ */
.service-feature {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
  transition: border-color var(--transition);
}

.service-feature:nth-child(even) {
  grid-template-columns: 380px 1fr;
}

.service-feature:nth-child(even) .service-feature-content {
  order: 2;
}

.service-feature:nth-child(even) .service-feature-img {
  order: 1;
}

.service-feature-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-left: 0;
  border-left: 3px solid transparent;
  padding-left: 16px;
  transition: border-color 200ms;
}

.service-feature:hover .service-feature-content,
.service-feature:focus-within .service-feature-content {
  border-left-color: var(--primary);
}

.service-index-num {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.service-feature-content h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.service-feature-desc {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 520px;
}

.service-feature-link {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  text-decoration: none;
  margin-top: 8px;
  transition: color var(--transition);
}

.service-feature-link:hover {
  color: var(--cream);
  text-decoration: none;
}

.service-feature-img {
  height: 380px;
  overflow: hidden;
  border-radius: var(--radius);
}

.service-feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: none;
  transition: transform 400ms ease-out;
}

.service-feature:hover .service-feature-img img {
  transform: scale(1.02);
}

/* Compact service table */
.services-compact-table {
  margin-top: 16px;
}

.service-row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  transition: background var(--transition);
}

.service-row:hover {
  text-decoration: none;
}

.service-row:hover .service-row-name {
  color: var(--cream);
}

.service-row:hover .service-row-arrow {
  color: var(--primary);
  transform: translateX(4px);
}

.service-row-num {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--muted);
  min-width: 32px;
  flex-shrink: 0;
}

.service-row-name {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  flex: 1;
  transition: color var(--transition);
}

.service-row-arrow {
  font-size: 16px;
  color: var(--primary);
  flex-shrink: 0;
  transition: transform 200ms, color var(--transition);
}

@media (max-width: 899px) {
  .service-feature,
  .service-feature:nth-child(even) {
    grid-template-columns: 1fr;
  }
  .service-feature:nth-child(even) .service-feature-content { order: 2; }
  .service-feature:nth-child(even) .service-feature-img { order: 1; }
  .service-feature-img { height: 240px; }
  .service-feature-content { border-left: none; padding-left: 0; }
  .service-feature:hover .service-feature-content { border-left-color: transparent; }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-img {
  height: 380px;
  overflow: hidden;
  border-radius: var(--radius);
  border-top: 3px solid var(--primary);
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: none;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.about-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 20px;
}

.about-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 24px;
}

.about-body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink);
  line-height: 1.7;
  margin-bottom: 16px;
  opacity: 0.88;
}

.about-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.about-chip {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 6px 12px;
}

@media (max-width: 899px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .about-img { height: 260px; }
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery {
  background: var(--canvas);
  overflow: hidden;
}

.gallery-strip {
  display: flex;
  height: 340px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  gap: 0;
  scrollbar-width: none;
}

.gallery-strip::-webkit-scrollbar { display: none; }

.gallery-strip img {
  height: 340px;
  max-height: none;
  width: auto;
  min-width: 260px;
  flex-shrink: 0;
  object-fit: cover;
  scroll-snap-align: start;
  filter: saturate(0.75) contrast(1.05);
  transition: filter 400ms ease-out;
}

.gallery-strip img:hover {
  filter: saturate(1) contrast(1);
}

@media (min-width: 900px) {
  .gallery-strip {
    overflow-x: hidden;
    justify-content: stretch;
  }
  .gallery-strip img {
    flex: 1 1 0;
    min-width: 0;
    width: 0;
  }
}

/* ============================================================
   CREDENTIALS
   ============================================================ */
.credentials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px 40px;
}

.credential-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.credential-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
}

.credential-value {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.5;
}

@media (max-width: 899px) {
  .credentials-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 639px) {
  .credentials-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   SERVICE AREAS
   ============================================================ */
.service-areas-inner > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.city-name {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 64px);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.areas-sub {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--muted);
  margin-top: 16px;
  line-height: 1.6;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-form { display: flex; flex-direction: column; gap: 0; }

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
}

.form-input,
.form-textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 12px 16px;
  transition: border-color var(--transition);
  outline: none;
  width: 100%;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--primary);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--muted);
  opacity: 0.6;
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
  line-height: 1.6;
}

.form-submit {
  align-self: flex-start;
  padding: 16px 32px;
  font-size: 15px;
  font-weight: 600;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-phone-link {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 36px);
  font-weight: 400;
  color: var(--ink);
  text-decoration: none;
  line-height: 1.1;
  display: block;
}

.contact-phone-link:hover {
  color: var(--cream);
  text-decoration: none;
}

.contact-email-link {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--muted);
  text-decoration: none;
  display: block;
}

.contact-email-link:hover {
  color: var(--ink);
  text-decoration: none;
}

.contact-hours {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--muted);
  line-height: 1.7;
}

.contact-area-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.contact-chip {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
}

@media (max-width: 899px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--canvas);
  border-top: 1px solid var(--primary);
}

.footer-inner {
  max-width: var(--container);
  margin-inline: auto;
  padding: 72px clamp(20px, 5vw, 80px) 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo { flex-shrink: 0; }

.footer-name {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.1;
}

.footer-meta {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--muted);
  line-height: 1.8;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer-nav-title {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 20px;
}

.footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
}

.footer-nav-list li a {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-nav-list li a:hover {
  color: var(--ink);
  text-decoration: none;
}

.footer-contact-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer-contact-title {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 20px;
}

.footer-phone {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
  transition: color var(--transition);
}

.footer-phone:hover { color: var(--cream); text-decoration: none; }

.footer-email {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
  display: block;
  margin-bottom: 20px;
  transition: color var(--transition);
}

.footer-email:hover { color: var(--ink); text-decoration: none; }

.footer-badges {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--muted);
  line-height: 1.8;
  opacity: 0.75;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copy {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  opacity: 0.6;
  letter-spacing: 0.06em;
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  text-decoration: none;
  opacity: 0.6;
  transition: opacity var(--transition), color var(--transition);
}

.footer-legal a:hover {
  opacity: 1;
  color: var(--ink);
  text-decoration: none;
}

@media (max-width: 899px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 639px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   MOBILE CALL PILL
   ============================================================ */
.mobile-call-pill {
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 999;
  background: var(--primary);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 18px 40px -10px rgba(0,0,0,0.55);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background var(--transition), transform var(--transition);
}

.mobile-call-pill:hover {
  background: var(--primary-hover);
  text-decoration: none;
  color: var(--ink);
  transform: translateY(-2px);
}

@media (min-width: 900px) {
  .mobile-call-pill { display: none; }
}

/* ============================================================
   MARQUEE (system required)
   ============================================================ */
.marquee {
  overflow: hidden;
  padding: 18px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  max-height: 80px !important;
  position: relative;
  z-index: 1;
}

.marquee-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: marquee 35s linear infinite;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.marquee:hover .marquee-track { animation-play-state: paused; }

.marquee-item {
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: clamp(13px, 1.4vw, 18px) !important;
  line-height: 1.2 !important;
}

/* ============================================================
   STATS (system required)
   ============================================================ */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 32px;
  padding: 80px 0;
  text-align: center;
}

.stat-num {
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 900;
  line-height: 1;
  color: var(--primary);
}

.stat-label {
  font-size: clamp(11px, 1vw, 14px);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  margin-top: 8px;
}

/* ============================================================
   PROCESS (system required)
   ============================================================ */
.process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}

.process-step {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 8px;
}

.step-num {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
  letter-spacing: 0.12em;
}

/* ============================================================
   REVIEW CARDS (system required)
   ============================================================ */
.review-card {
  padding: 28px;
  border-radius: 12px;
  background: var(--surface);
}

.review-stars svg { color: var(--primary); width: 18px; height: 18px; }

.review-quote { font-size: 17px; line-height: 1.55; margin: 14px 0; }

.review-attribution {
  font-size: 13px;
  color: var(--muted);
  opacity: 0.75;
}

/* ============================================================
   FAQ (system required)
   ============================================================ */
details.faq { border-bottom: 1px solid var(--border); padding: 18px 0; }

details.faq > summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

details.faq > summary::-webkit-details-marker { display: none; }

details.faq > summary::after {
  content: "+";
  font-weight: 300;
  transition: transform 200ms;
}

details.faq[open] > summary::after {
  transform: rotate(45deg);
  color: var(--primary);
}

details.faq p { margin-top: 12px; line-height: 1.6; }

/* ============================================================
   SERVICE CARD HOVER (system required)
   ============================================================ */
.service-card { transition: transform 250ms ease-out, box-shadow 250ms ease-out; }

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -16px rgba(0,0,0,0.3);
}

/* ============================================================
   ANIMATION UTILITIES
   ============================================================ */
.fade-up,
.fade-left,
.fade-right,
.scale-in {
  opacity: 0;
  transition: opacity 600ms ease-out, transform 600ms ease-out;
}

.fade-up    { transform: translateY(28px); }
.fade-left  { transform: translateX(-28px); }
.fade-right { transform: translateX(28px); }
.scale-in   { transform: scale(0.96); }

.fade-up.visible,
.fade-left.visible,
.fade-right.visible,
.scale-in.visible {
  opacity: 1;
  transform: none;
}

.stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 500ms ease-out, transform 500ms ease-out;
}

.stagger.visible > *:nth-child(1) { transition-delay: 0ms; opacity: 1; transform: none; }
.stagger.visible > *:nth-child(2) { transition-delay: 80ms; opacity: 1; transform: none; }
.stagger.visible > *:nth-child(3) { transition-delay: 160ms; opacity: 1; transform: none; }
.stagger.visible > *:nth-child(4) { transition-delay: 240ms; opacity: 1; transform: none; }
.stagger.visible > *:nth-child(5) { transition-delay: 320ms; opacity: 1; transform: none; }
.stagger.visible > *:nth-child(6) { transition-delay: 400ms; opacity: 1; transform: none; }
.stagger.visible > *:nth-child(n+7) { transition-delay: 480ms; opacity: 1; transform: none; }

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

/* ============================================================
   MEDIA — GLOBAL MOBILE ADJUSTMENTS
   ============================================================ */
@media (max-width: 639px) {
  .trust-strip-inner { gap: 0; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas a { width: 100%; text-align: center; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .service-feature-content h2 { font-size: clamp(28px, 8vw, 40px); }
}


/* === Validator patches (auto-applied) === */
/* validator patch: grid children without placement → span full row */
.service-feature-content { grid-column: 1 / -1; }
.service-feature-img { grid-column: 1 / -1; }
.about-img { grid-column: 1 / -1; }
.about-content { grid-column: 1 / -1; }
.credential-item { grid-column: 1 / -1; }
.fade-up { grid-column: 1 / -1; }
.footer-nav { grid-column: 1 / -1; }
.footer-contact-col { grid-column: 1 / -1; }
