@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,600;0,9..144,700;0,9..144,900;1,9..144,600&family=Inter+Tight:wght@400;450;500;600;700&display=swap');

/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --primary:        #2C5C0C;
  --primary-hover:  #234a09;
  --primary-light:  #e8f0e0;
  --accent:         #759461;
  --accent-light:   #c4d4b4;
  --canvas:         #FAF6EE;
  --surface:        #FFFFFF;
  --ink:            #1A1814;
  --ink-mid:        #3a3530;
  --muted:          #6B6660;
  --muted-light:    #9e9990;
  --border:         rgba(44,92,12,0.18);
  --border-neutral: rgba(26,24,20,0.12);
  --shadow-sm:      0 2px 8px -2px rgba(26,24,20,0.10);
  --shadow-md:      0 8px 28px -8px rgba(26,24,20,0.16);
  --shadow-lg:      0 24px 56px -16px rgba(26,24,20,0.22);
  --radius:         8px;
  --radius-pill:    999px;
  --section-py:     clamp(72px, 9vh, 120px);
  --max-w:          1240px;
  --max-w-wide:     1400px;
}

/* ============================================================
   RESET + GLOBAL
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter Tight', system-ui, sans-serif;
  font-weight: 450;
  background: var(--canvas);
  color: var(--ink);
  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;
}

/* ============================================================
   LINKS
   ============================================================ */
a { color: var(--ink); transition: color 150ms; text-decoration: none; }
a:hover { color: var(--primary); text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 4px; }

/* ============================================================
   LAYOUT
   ============================================================ */
.wrap {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
}
.wide-container {
  width: 100%;
  max-width: var(--max-w-wide);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
}
h1 { font-size: clamp(44px, 6.5vw, 96px); }
h2 { font-size: clamp(32px, 4.5vw, 64px); }
h3 { font-size: clamp(20px, 2.5vw, 28px); }
p { line-height: 1.7; }

.eyebrow,
.section-eyebrow,
.hero-eyebrow,
.cred-eyebrow,
p.eyebrow {
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.eyebrow::before,
.section-eyebrow::before,
p.eyebrow::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 1px;
  flex-shrink: 0;
}
/* Hero eyebrow — no bullet, different treatment */
.hero-eyebrow::before { display: none; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 16px 28px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 200ms, color 200ms, border-color 200ms, transform 150ms;
  white-space: nowrap;
}
.btn-primary, .btn-submit {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.btn-primary:hover, .btn-submit:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover {
  background: var(--ink);
  color: var(--canvas);
  text-decoration: none;
  transform: translateY(-1px);
}
.btn-phone {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.btn-phone:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
  color: #fff;
  text-decoration: none;
}
.btn-sm {
  font-size: 13px;
  padding: 10px 18px;
}
.btn-submit {
  width: 100%;
  justify-content: center;
  font-size: 16px;
  padding: 18px 32px;
  border: none;
}

/* ============================================================
   CHIPS
   ============================================================ */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 14px;
  border: 1px solid var(--primary);
  border-radius: var(--radius-pill);
  color: var(--ink);
  background: transparent;
  white-space: nowrap;
}
.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 16px;
  border: 1px solid var(--primary);
  border-radius: var(--radius-pill);
  color: var(--ink);
  background: var(--canvas);
  white-space: nowrap;
}

/* ============================================================
   UTILITY BAR
   ============================================================ */
.util-bar,
.utility-bar {
  background: var(--primary);
  color: var(--surface);
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px;
  font-weight: 500;
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 900;
}
.util-bar .wrap,
.utility-bar .wrap,
.utility-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-inline: clamp(20px, 5vw, 60px);
  max-width: var(--max-w);
  margin-inline: auto;
}
.util-left, .utility-left {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--surface);
  opacity: 0.9;
}
.util-right, .utility-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.util-right a, .utility-right a {
  color: var(--surface);
  font-weight: 600;
  font-size: 12px;
  text-decoration: none;
  transition: opacity 150ms;
}
.util-right a:hover, .utility-right a:hover {
  opacity: 0.75;
  text-decoration: none;
  color: var(--surface);
}
.util-right svg, .utility-right svg { width: 14px; height: 14px; }
.util-divider, .sep {
  color: rgba(255,255,255,0.35);
  user-select: none;
}

/* ============================================================
   NAV
   ============================================================ */
#nav, nav#nav, nav.nav {
  position: sticky;
  top: 40px;
  z-index: 800;
  background: var(--surface);
  border-bottom: 1px solid var(--border-neutral);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0 clamp(20px, 5vw, 60px);
  max-width: var(--max-w);
  margin-inline: auto;
  height: 64px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo:hover { text-decoration: none; color: var(--ink); }
.nav-logo-text {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.1;
  color: var(--ink);
}
#navLinks, ul#navLinks {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  margin-left: auto;
}
#navLinks li { display: block; }
#navLinks a {
  display: block;
  padding: 8px 14px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-mid);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 150ms;
  border-radius: var(--radius);
}
#navLinks a:hover { color: var(--primary); text-decoration: none; }
.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 24px;
}
.nav-phone {
  font-family: 'Inter Tight', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
  color: var(--ink);
}
.nav-toggle svg { width: 24px; height: 24px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--canvas);
  padding: clamp(64px, 10vh, 120px) 0 clamp(56px, 8vh, 100px);
  overflow: hidden;
}
.hero-super {
  position: absolute;
  top: -20px;
  right: -60px;
  font-family: 'Fraunces', serif;
  font-size: clamp(200px, 28vw, 420px);
  font-weight: 900;
  color: var(--primary);
  opacity: 0.04;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  letter-spacing: -0.06em;
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  max-width: 780px;
}
.hero-bar {
  width: 48px;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
  margin-bottom: 20px;
}
.hero-eyebrow {
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
}
.hero-title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: clamp(56px, 8.5vw, 140px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 24px;
}
.hero-title span { color: var(--primary); }
.hero-sub {
  font-family: 'Inter Tight', sans-serif;
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 450;
  color: var(--muted);
  line-height: 1.6;
  max-width: 560px;
  margin-bottom: 36px;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}
.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
}
.hero-trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin-top: 32px;
}

/* Hero supergraphic (services.html) */
.hero-accent-block {
  position: absolute;
  top: 0;
  right: 0;
  width: 6px;
  height: 100%;
  background: var(--primary);
}
.hero-supergraphic {
  position: absolute;
  top: 50%;
  right: clamp(40px, 8vw, 120px);
  transform: translateY(-50%);
  font-family: 'Fraunces', serif;
  font-size: clamp(180px, 22vw, 320px);
  font-weight: 900;
  line-height: 1;
  color: var(--primary);
  opacity: 0.05;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.06em;
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--surface);
  border-top: 1px solid var(--border-neutral);
  border-bottom: 1px solid var(--border-neutral);
  padding: 20px 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.trust-strip::-webkit-scrollbar { display: none; }
.trust-strip .wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.trust-strip-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding-inline: clamp(20px, 5vw, 60px);
  max-width: var(--max-w);
  margin-inline: auto;
  width: 100%;
}
.trust-badge,
.tbadge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 16px;
  border: 1px solid var(--primary);
  border-radius: var(--radius-pill);
  color: var(--ink);
  background: var(--canvas);
  white-space: nowrap;
  flex-shrink: 0;
}
.tbadge svg { width: 14px; height: 14px; color: var(--primary); }
.trust-strip-divider {
  width: 1px;
  height: 20px;
  background: var(--border-neutral);
  flex-shrink: 0;
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee,
.marquee-strip {
  overflow: hidden;
  padding: 18px 0;
  border-top: 1px solid var(--border-neutral);
  border-bottom: 1px solid var(--border-neutral);
  max-height: 80px !important;
  position: relative;
  z-index: 1;
  background: var(--canvas);
}
.marquee-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: marquee 35s linear infinite;
  width: max-content;
}
.marquee:hover .marquee-track,
.marquee-strip:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-item, .mi {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: clamp(13px, 1.4vw, 18px) !important;
  line-height: 1.2 !important;
  color: var(--ink-mid);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.marquee-item::after, .mi::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
}
.marquee-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  margin-left: 12px;
}

/* ============================================================
   SERVICES — INDEX
   ============================================================ */
.services { padding: var(--section-py) 0; }
.services-hd {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
}
.services-hd a {
  font-family: 'Inter Tight', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}
.services-title {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: clamp(32px, 4.5vw, 64px);
  line-height: 1.0;
  letter-spacing: -0.02em;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* Service card — index */
.sc {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: var(--ink);
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
  border: 1px solid var(--border-neutral);
}
.sc:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  text-decoration: none;
  color: var(--ink);
}
.sc img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  max-height: 180px;
}
.sc-body {
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.sc-body h3 {
  font-family: 'Fraunces', serif;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.sc-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
  flex: 1;
}
.sc-arrow {
  display: inline-flex;
  align-items: center;
  color: var(--primary);
  margin-top: 10px;
  font-size: 13px;
  font-weight: 600;
  transition: transform 200ms;
}
.sc-arrow svg { width: 18px; height: 18px; }
.sc:hover .sc-arrow { transform: translateX(4px); }

/* ============================================================
   SERVICES — SERVICES PAGE (tabbed)
   ============================================================ */
.services-header {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
  padding-top: var(--section-py);
  padding-bottom: 40px;
}
.services-tabs-wrapper {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
  margin-bottom: 48px;
  overflow-x: auto;
  scrollbar-width: none;
}
.services-tabs-wrapper::-webkit-scrollbar { display: none; }
.services-tabs {
  display: flex;
  gap: 8px;
  width: max-content;
}
.service-tab {
  font-family: 'Inter Tight', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 20px;
  border: 1px solid var(--border-neutral);
  border-radius: var(--radius-pill);
  background: var(--surface);
  color: var(--muted);
  cursor: pointer;
  transition: background 180ms, color 180ms, border-color 180ms;
  white-space: nowrap;
}
.service-tab:hover { border-color: var(--primary); color: var(--primary); }
.service-tab.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.services-panels {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
  padding-bottom: var(--section-py);
}
.service-panel { display: none; }
.service-panel.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.service-panel-img {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.service-panel-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 100%;
}
.service-panel-no-img {
  border-radius: var(--radius);
  background: var(--primary-light);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-panel-no-img-text {
  font-family: 'Fraunces', serif;
  font-size: clamp(32px, 5vw, 72px);
  font-weight: 600;
  color: var(--primary);
  opacity: 0.25;
}
.service-panel-body { display: flex; flex-direction: column; gap: 16px; }
.service-panel-body h3 {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.service-panel-body p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
}
.service-panel-body a.btn { margin-top: 8px; align-self: flex-start; }

/* ============================================================
   ABOUT
   ============================================================ */
.about { padding: var(--section-py) 0; }
.about-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
}
.about-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 64px;
  align-items: center;
}
/* index: photo left, content right — reversed from services.html */
.about-grid > div:first-child {
  grid-column: 1;
}
.about-grid > div:last-child {
  grid-column: 2;
}
.about-grid img {
  width: 100%;
  height: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: var(--radius);
}
.about-grid > div:first-child {
  border-radius: var(--radius);
  overflow: hidden;
}
.about-grid h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
/* services.html about layout */
.about-content {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
}
.about-photo {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
}
.about-photo img {
  border-radius: var(--radius);
  width: 100%;
  object-fit: cover;
}
/* services.html: about is a split */
#about.about {
  padding: var(--section-py) 0;
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.about-content { padding: 0; max-width: none; }
.about-photo { padding: 0; max-width: none; }
.about-body {
  font-size: clamp(16px, 1.6vw, 18px);
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 24px;
}
.about-rule {
  width: 48px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  margin-bottom: 20px;
}
.about-divider {
  width: 48px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  margin: 20px 0;
}
.about-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.about-chip {
  display: inline-flex;
  align-items: center;
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 14px;
  border: 1px solid var(--primary);
  border-radius: var(--radius-pill);
  color: var(--ink);
  background: transparent;
  white-space: nowrap;
}
.about-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: var(--ink);
}

/* ============================================================
   STATS
   ============================================================ */
.stats, .stats-band {
  padding: clamp(56px, 7vh, 96px) 0;
  background: var(--primary);
}
.stats-grid, .stats-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat { display: flex; flex-direction: column; align-items: center; }
.stat-num, .gallery-stat-num, .gc-num {
  font-family: 'Fraunces', serif;
  font-size: clamp(48px, 8vw, 80px);
  font-weight: 700;
  line-height: 1;
  color: #fff;
  letter-spacing: -0.03em;
}
.stat-label, .gallery-stat-label, .gc-label {
  font-family: 'Inter Tight', sans-serif;
  font-size: clamp(11px, 1vw, 14px);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.65);
  margin-top: 8px;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery { padding: var(--section-py) 0; }
.gallery-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.gallery-split > img {
  width: 100%;
  height: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: var(--radius);
  grid-column: 1;
}
.gallery-content {
  grid-column: 2;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.gallery-content h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.gallery-body {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 32px;
}
.gallery-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.gc {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border-neutral);
}
.gc-num {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  letter-spacing: -0.02em;
}
.gc-label {
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}

/* services.html gallery */
.gallery-header {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
  padding-top: var(--section-py);
  padding-bottom: 40px;
}
.gallery-feature {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
  padding-bottom: var(--section-py);
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
  align-items: start;
}
.gallery-img-wrap {
  grid-column: 1;
  border-radius: var(--radius);
  overflow: hidden;
}
.gallery-img-wrap img { width: 100%; object-fit: cover; max-height: 480px; }
.gallery-img { width: 100%; object-fit: cover; border-radius: var(--radius); }
.gallery-stats {
  grid-column: 2;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.gallery-stat-card {
  padding: 24px;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border-neutral);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.gallery-stat-num { font-family: 'Fraunces', serif; font-size: clamp(32px, 4vw, 56px); font-weight: 700; color: var(--primary); line-height: 1; }
.gallery-stat-label { font-family: 'Inter Tight', sans-serif; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-top: 4px; }
.gallery-stat-desc { font-size: 14px; color: var(--muted); line-height: 1.55; margin-top: 8px; }

/* ============================================================
   CREDENTIALS
   ============================================================ */
.credentials { padding: var(--section-py) 0; background: var(--surface); }
.credentials-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
}
.credentials-header {
  margin-bottom: 48px;
}
.credentials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.credential-badge {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 28px;
  background: var(--canvas);
  border-radius: var(--radius);
  border: 1px solid var(--border-neutral);
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}
.credential-badge:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.credential-icon { width: 40px; height: 40px; color: var(--primary); }
.credential-icon svg { width: 40px; height: 40px; }
.credential-name {
  font-family: 'Inter Tight', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.02em;
}
.credential-detail {
  font-family: 'Inter Tight', sans-serif;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

/* index credentials */
.cred-eyebrow {
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
}
.cred-eyebrow::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 1px;
  flex-shrink: 0;
}
.cred-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.cbadge {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 24px;
  background: var(--canvas);
  border-radius: var(--radius);
  border: 1px solid var(--border-neutral);
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}
.cbadge:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.cbadge svg { width: 32px; height: 32px; color: var(--primary); }

/* ============================================================
   SERVICE AREAS
   ============================================================ */
.service-areas { padding: var(--section-py) 0; }
.service-areas-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
}
.service-areas-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}
.service-areas-header { margin-bottom: 40px; }
.areas-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: start;
}
.areas-layout > div:first-child { grid-column: 1; }
.areas-layout > div:last-child { grid-column: 2; }
.areas-cloud, .area-pill-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.apill, .area-pill {
  display: inline-flex;
  align-items: center;
  font-family: 'Inter Tight', sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  color: var(--ink);
  background: var(--surface);
  transition: background 160ms, border-color 160ms, color 160ms;
  text-decoration: none;
}
.apill:hover, .area-pill:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  text-decoration: none;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq { padding: var(--section-py) 0; background: var(--surface); }
.faq-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
}
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: start;
}
.faq-layout > div:first-child { grid-column: 1; }
.faq-layout > div:last-child { grid-column: 2; }
.faq-label { max-width: none; }
.faq-label h2, .faq-layout h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.05;
}
.faq-items, .faq-list { display: flex; flex-direction: column; }
details.faq,
.faq-items details,
.faq-list details {
  border-bottom: 1px solid var(--border-neutral);
  padding: 18px 0;
}
details.faq > summary,
.faq-items details > summary,
.faq-list details > summary {
  cursor: pointer;
  font-family: 'Inter Tight', sans-serif;
  font-size: 16px;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--ink);
  gap: 16px;
}
details.faq > summary::-webkit-details-marker,
.faq-items details > summary::-webkit-details-marker,
.faq-list details > summary::-webkit-details-marker { display: none; }
.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--primary);
  transition: transform 200ms;
}
details[open] .faq-chevron { transform: rotate(180deg); }
details.faq p,
.faq-items details p,
.faq-list details p {
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
}

/* ============================================================
   TESTIMONIALS / REVIEWS
   ============================================================ */
.testimonials { padding: var(--section-py) 0; }
.testimonials-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
}
.testimonials-header { margin-bottom: 48px; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.review-card {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border-neutral);
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}
.review-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.review-stars {
  display: flex;
  gap: 2px;
  color: var(--primary);
}
.review-stars svg { width: 18px; height: 18px; color: var(--primary); }
.review-quote {
  font-size: 17px;
  line-height: 1.55;
  margin: 14px 0;
  color: var(--ink);
  font-style: italic;
}
.review-attribution {
  font-family: 'Inter Tight', sans-serif;
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
}
.review-role {
  display: block;
  font-size: 11px;
  font-weight: 400;
  color: var(--muted-light);
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact { padding: var(--section-py) 0; }
.contact-inner,
.contact-section-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-form-col { grid-column: 1; }
.contact-info-col { grid-column: 2; }
.contact-form-col h2,
.contact-layout > div:first-child h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 600;
  line-height: 1.05;
  margin-bottom: 8px;
}
.contact-sub,
.contact-intro,
.form-desc {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 28px;
}
.contact-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 3.5vw, 48px);
}
/* form */
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.fg, .form-field, .form-group {
  display: flex;
  flex-direction: column-reverse;
  gap: 5px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.fg label, .form-field label, .form-group label {
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 150ms;
}
.fg input:focus ~ label,
.fg textarea:focus ~ label,
.form-field input:focus ~ label,
.form-field textarea:focus ~ label,
.form-group input:focus ~ label,
.form-group textarea:focus ~ label,
.form-group select:focus ~ label { color: var(--primary); }
.fg input,
.fg textarea,
.fg select,
.form-field input,
.form-field textarea,
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  font-family: 'Inter Tight', sans-serif;
  font-size: 15px;
  font-weight: 450;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--border-neutral);
  border-radius: var(--radius);
  padding: 14px 16px;
  outline: none;
  transition: border-color 160ms;
  appearance: none;
}
.fg input:focus,
.fg textarea:focus,
.fg select:focus,
.form-field input:focus,
.form-field textarea:focus,
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--primary); }
.fg textarea, .form-field textarea, .form-group textarea {
  min-height: 120px;
  resize: vertical;
}

/* contact info */
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.ci-label {
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.ci-value {
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.5;
}
.ci-value a { color: var(--primary); font-weight: 600; }
.ci-value a:hover { text-decoration: underline; }
.ci-chips { display: flex; flex-wrap: wrap; gap: 8px; }

/* contact-info items (services + contact pages) */
.contact-info-items { display: flex; flex-direction: column; gap: 20px; }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.info-icon { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; background: var(--primary-light); border-radius: var(--radius); flex-shrink: 0; }
.info-icon svg { width: 20px; height: 20px; color: var(--primary); }
.info-label { font-family: 'Inter Tight', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 2px; }
.info-value { font-size: 15px; color: var(--ink); line-height: 1.5; }
.info-value a { color: var(--primary); font-weight: 600; }
.info-card {
  background: var(--canvas);
  border-radius: var(--radius);
  border: 1px solid var(--border-neutral);
  padding: 28px;
  margin-top: 28px;
}
.info-card-title {
  font-family: 'Inter Tight', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 20px;
}
.contact-social { margin-top: 24px; }
.social-label { font-family: 'Inter Tight', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.social-links { display: flex; gap: 12px; }
.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  background: var(--canvas);
  border: 1px solid var(--border-neutral);
  color: var(--ink);
  transition: background 160ms, border-color 160ms, color 160ms;
}
.social-link:hover { background: var(--primary); border-color: var(--primary); color: #fff; text-decoration: none; }
.social-link svg { width: 18px; height: 18px; }

/* CTA band (contact page) */
.cta-band {
  background: var(--primary);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 20px;
}
.cta-band-label {
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 8px;
}
.cta-band-phone a {
  font-family: 'Fraunces', serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  line-height: 1.1;
}
.cta-band-phone a:hover { color: rgba(255,255,255,0.85); text-decoration: none; }
.cta-band-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  margin-top: 8px;
}

/* ============================================================
   CONTACT HERO (contact.html)
   ============================================================ */
.contact-hero {
  padding: clamp(64px, 10vh, 100px) 0 clamp(48px, 6vh, 80px);
  background: var(--canvas);
  position: relative;
  overflow: hidden;
}
.contact-hero-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
  position: relative;
  z-index: 2;
}
.contact-hero-inner h1 {
  font-size: clamp(44px, 6.5vw, 96px);
  margin-bottom: 16px;
}
.contact-hero-sub {
  font-size: clamp(16px, 1.8vw, 20px);
  color: var(--muted);
  max-width: 560px;
  line-height: 1.6;
}
.contact-section { padding: var(--section-py) 0; }

/* ============================================================
   FOOTER
   ============================================================ */
footer, footer.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.75);
  padding: clamp(56px, 7vh, 96px) 0 0;
}
.footer-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
}
.footer-top {
  padding-bottom: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 56px;
}
.footer-brand { display: flex; flex-direction: column; gap: 12px; }
.footer-brand-name {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  line-height: 1.1;
}
.footer-brand-tagline, .footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.55;
  max-width: 260px;
}
.footer-col { display: flex; flex-direction: column; gap: 16px; }
.footer-col h4,
.fcol-title,
.footer-col-title {
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 8px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
}
.footer-links li { display: block; }
.footer-links a, nav.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 150ms;
}
.footer-links a:hover, nav.footer-links a:hover {
  color: #fff;
  text-decoration: none;
}
.footer-contact-info { display: flex; flex-direction: column; gap: 6px; }
.footer-contact-info p { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.55; }
.footer-contact-info a { color: rgba(255,255,255,0.75); }
.footer-contact-info a:hover { color: #fff; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 10px;
}
.footer-contact-item svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: rgba(255,255,255,0.75); }
.footer-contact-item a:hover { color: #fff; }
.footer-phone-link { color: rgba(255,255,255,0.9); font-weight: 600; font-size: 16px; }
.footer-social { display: flex; gap: 10px; margin-top: 4px; }
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.65);
  transition: background 160ms, color 160ms;
}
.footer-social a:hover { background: var(--primary); color: #fff; text-decoration: none; }
.footer-social a svg, .footer-social svg { width: 16px; height: 16px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy, .footer-bottom-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}
.footer-legal { font-size: 13px; color: rgba(255,255,255,0.35); }
.footer-certs, .footer-bottom .footer-certs {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.footer-cert, .footer-cert-chip, .footer-cert-badge {
  font-family: 'Inter Tight', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-pill);
  color: rgba(255,255,255,0.45);
}
.footer-cert-badge { background: transparent; }

/* ============================================================
   ANIMATION UTILITIES
   ============================================================ */
.fade-up    { opacity: 0; transform: translateY(28px); transition: opacity 600ms ease, transform 600ms ease; }
.fade-left  { opacity: 0; transform: translateX(-28px); transition: opacity 600ms ease, transform 600ms ease; }
.fade-right { opacity: 0; transform: translateX(28px);  transition: opacity 600ms ease, transform 600ms ease; }
.scale-in   { opacity: 0; transform: scale(0.96);       transition: opacity 600ms ease, transform 600ms ease; }
.stagger    { }
.stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 500ms ease, transform 500ms ease;
}
.fade-up.visible,
.fade-left.visible,
.fade-right.visible,
.scale-in.visible   { opacity: 1; transform: none; }
.stagger.visible > * { opacity: 1; transform: none; }
.stagger.visible > *:nth-child(1) { transition-delay: 0ms; }
.stagger.visible > *:nth-child(2) { transition-delay: 80ms; }
.stagger.visible > *:nth-child(3) { transition-delay: 160ms; }
.stagger.visible > *:nth-child(4) { transition-delay: 240ms; }
.stagger.visible > *:nth-child(5) { transition-delay: 320ms; }
.stagger.visible > *:nth-child(6) { transition-delay: 400ms; }
.stagger.visible > *:nth-child(7) { transition-delay: 480ms; }
.stagger.visible > *:nth-child(8) { transition-delay: 560ms; }

/* ============================================================
   MOBILE CALL PILL
   ============================================================ */
.mobile-call-pill {
  display: none;
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 999;
  background: var(--primary);
  color: #fff;
  font-family: 'Inter Tight', sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 14px 22px;
  border-radius: var(--radius-pill);
  box-shadow: 0 18px 40px -10px rgba(0,0,0,0.45);
  text-decoration: none;
  align-items: center;
  gap: 8px;
  transition: background 180ms, transform 150ms;
}
.mobile-call-pill:hover { background: var(--primary-hover); text-decoration: none; color: #fff; transform: translateY(-2px); }
.mobile-call-pill svg { width: 18px; height: 18px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .mobile-call-pill { display: inline-flex; }
  #navLinks { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--surface); border-bottom: 1px solid var(--border-neutral); padding: 12px 0; z-index: 700; box-shadow: var(--shadow-md); }
  #navLinks.open { display: flex; }
  #navLinks li { width: 100%; }
  #navLinks a { padding: 12px 24px; border-radius: 0; }
  #nav, nav#nav { position: sticky; top: 0; z-index: 800; }
  .util-bar, .utility-bar { display: none; }
  .nav-toggle { display: flex; align-items: center; justify-content: center; }
  .nav-cta { display: none; }
  .hero-title { font-size: clamp(44px, 12vw, 80px); }
  .services-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-grid > div:first-child { grid-column: 1; }
  .about-grid > div:last-child { grid-column: 1; }
  .about-inner { grid-template-columns: 1fr; gap: 32px; }
  .gallery-split { grid-template-columns: 1fr; }
  .gallery-split > img { grid-column: 1; max-height: 320px; }
  .gallery-content { grid-column: 1; }
  .gallery-cards { grid-template-columns: repeat(2, 1fr); }
  .stats-grid, .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .contact-inner, .contact-section-inner, .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .contact-form-col { grid-column: 1; }
  .contact-info-col { grid-column: 1; }
  .cred-grid { grid-template-columns: repeat(2, 1fr); }
  .credentials-grid { grid-template-columns: repeat(2, 1fr); }
  .areas-layout { grid-template-columns: 1fr; gap: 32px; }
  .areas-layout > div:first-child { grid-column: 1; }
  .areas-layout > div:last-child { grid-column: 1; }
  .faq-layout { grid-template-columns: 1fr; gap: 32px; }
  .faq-layout > div:first-child { grid-column: 1; }
  .faq-layout > div:last-child { grid-column: 1; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .service-panel.active { grid-template-columns: 1fr; gap: 32px; }
  .gallery-feature { grid-template-columns: 1fr; }
  .gallery-img-wrap { grid-column: 1; }
  .gallery-stats { grid-column: 1; }
  .reviews-grid { grid-template-columns: 1fr; }
  .services-header, .gallery-header, .testimonials-inner, .credentials-inner, .service-areas-inner, .faq-inner { padding-inline: clamp(16px, 5vw, 40px); }
  .form-row { grid-template-columns: 1fr; }
}

@media (min-width: 640px) and (max-width: 899px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .mobile-call-pill { display: none; }
  nav#nav { position: sticky; top: 40px; }
}

@media (max-width: 640px) {
  .hero-title { font-size: clamp(44px, 13vw, 72px); }
  .stats-grid, .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .cred-grid { grid-template-columns: 1fr 1fr; }
  .gallery-cards { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .trust-strip-inner { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 4px; }
}

@media (min-width: 1200px) {
  .services-grid { grid-template-columns: repeat(4, 1fr); }
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================================
   SUCCESS MESSAGE
   ============================================================ */
#msg, #contact-msg {
  display: none;
  padding: 16px 20px;
  border-radius: var(--radius);
  background: var(--primary-light);
  border: 1px solid var(--border);
  color: var(--primary);
  font-family: 'Inter Tight', sans-serif;
  font-size: 15px;
  font-weight: 600;
  margin-top: 16px;
}
#msg.visible, #contact-msg.visible { display: block; }


/* === Validator patches (auto-applied) === */
/* validator patch: grid children without placement → span full row */
.fade-up { grid-column: 1 / -1; }
.fade-left { grid-column: 1 / -1; }
.fade-right { grid-column: 1 / -1; }
.gc { grid-column: 1 / -1; }
.cbadge { grid-column: 1 / -1; }
.service-panel-img { grid-column: 1 / -1; }
.service-panel-body { grid-column: 1 / -1; }
.form-field { grid-column: 1 / -1; }
.form-group { grid-column: 1 / -1; }
.footer-brand { grid-column: 1 / -1; }
.footer-col { grid-column: 1 / -1; }
/* validator patch: never hide a wrapper that contains a heading */
.service-panel { display: block !important; }
