@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');

/* ============================================================
   CUSTOM PROPERTIES
   ============================================================ */
:root {
  --primary:        #0A9C57;
  --accent:         #1DAC66;
  --primary-dim:    rgba(10, 156, 87, 0.12);
  --primary-border: rgba(10, 156, 87, 0.28);
  --canvas:         #FAF6EE;
  --surface:        #FFFFFF;
  --ink:            #1A1814;
  --ink-mid:        #3A3530;
  --muted:          #6B6660;
  --muted-light:    #9E9992;
  --border:         rgba(26, 24, 20, 0.1);
  --border-mid:     rgba(26, 24, 20, 0.16);
  --shadow-sm:      0 2px 8px rgba(26, 24, 20, 0.06);
  --shadow-md:      0 8px 32px rgba(26, 24, 20, 0.10);
  --shadow-lg:      0 20px 60px rgba(26, 24, 20, 0.14);
  --radius:         8px;
  --radius-lg:      12px;
  --radius-pill:    999px;
  --section-py:     clamp(72px, 9vh, 120px);
  --container:      1240px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter Tight', system-ui, sans-serif;
  font-weight: 450;
  background: var(--canvas);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
}

/* 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; }

/* Heading anchor rule */
h1 a, h2 a, h3 a, .hero-title a, .hero-eyebrow a, .hero-sub a {
  color: inherit; text-decoration: none; border-bottom: 0;
}
h1 a:hover, h2 a:hover, h3 a:hover {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

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

ul, ol { list-style: none; }

svg { display: block; flex-shrink: 0; }

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

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

/* ============================================================
   TYPOGRAPHY SCALE
   ============================================================ */
h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

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.65; }

.section-eyebrow {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--primary);
  flex-shrink: 0;
}

.section-title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: clamp(32px, 4.5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 20px;
}

.section-lead {
  font-size: clamp(16px, 1.5vw, 19px);
  color: var(--muted);
  line-height: 1.6;
  max-width: 560px;
  margin-bottom: 48px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 16px 28px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 200ms ease-out, box-shadow 200ms ease-out, background 150ms;
  line-height: 1;
  white-space: nowrap;
}

.btn:hover { text-decoration: none; transform: translateY(-1px); }

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 18px rgba(10, 156, 87, 0.30);
}
.btn-primary:hover {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 28px rgba(10, 156, 87, 0.38);
}

.btn-white {
  background: var(--surface);
  color: var(--ink);
  border: 1.5px solid var(--border-mid);
}
.btn-white:hover {
  background: var(--canvas);
  color: var(--ink);
  border-color: var(--border-mid);
}

.btn-phone {
  background: transparent;
  color: var(--surface);
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  padding: 14px 24px;
}
.btn-phone:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
}
.btn-phone svg { width: 18px; height: 18px; }

.btn-nav {
  background: var(--primary);
  color: #fff;
  padding: 10px 20px;
  font-size: 13px;
  border-radius: var(--radius);
}
.btn-nav:hover { background: var(--accent); color: #fff; text-decoration: none; }

.btn-submit {
  background: var(--primary);
  color: #fff;
  width: 100%;
  justify-content: center;
  font-size: 16px;
  padding: 18px 28px;
  border-radius: var(--radius);
  box-shadow: 0 4px 18px rgba(10, 156, 87, 0.28);
  border: none;
  cursor: pointer;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  transition: background 150ms, transform 200ms, box-shadow 200ms;
}
.btn-submit:hover {
  background: var(--accent);
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(10, 156, 87, 0.36);
}

/* ============================================================
   UTILITY BAR / UTIL BAR
   ============================================================ */
.util-bar, .utility-bar {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--primary);
  color: #fff;
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 0 clamp(20px, 5vw, 48px);
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.util-bar *, .utility-bar * { color: #fff; }
.util-bar a, .utility-bar a { color: #fff; }
.util-bar a:hover, .utility-bar a:hover { color: rgba(255,255,255,0.75); text-decoration: underline; }

.util-bar-left, .utility-bar-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.util-bar-right, .utility-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.util-badge, .utility-badge {
  background: rgba(255,255,255,0.15);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.util-badge svg { width: 14px; height: 14px; display: inline-block; vertical-align: middle; }

.hide-mobile { display: none; }
@media (min-width: 640px) { .hide-mobile { display: inline-flex; } }

/* ============================================================
   NAVIGATION
   ============================================================ */
#nav, nav.nav {
  position: sticky;
  top: 42px;
  z-index: 800;
  background: var(--canvas);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo:hover { text-decoration: none; opacity: 0.85; }

#nav-toggle, button#nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--ink);
  width: 40px;
  height: 40px;
}
#nav-toggle svg { width: 24px; height: 24px; }

.nav-links {
  display: none;
  list-style: none;
  gap: 4px;
  align-items: center;
}

.nav-links li a {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: var(--ink);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: var(--radius);
  display: block;
  transition: color 150ms, background 150ms;
}
.nav-links li a:hover {
  color: var(--primary);
  background: var(--primary-dim);
  text-decoration: none;
}

.nav-cta {
  display: none;
}

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

/* 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: 12px clamp(20px, 5vw, 48px) 20px;
  gap: 2px;
  z-index: 900;
}

/* ============================================================
   HERO
   ============================================================ */
#hero.hero {
  background: var(--ink);
  min-height: 100svh;
  display: flex;
  align-items: flex-start;
  padding-top: clamp(56px, 8vh, 100px);
  padding-bottom: clamp(64px, 8vh, 96px);
}

.hero-supergraphic {
  position: absolute;
  top: -60px;
  right: -40px;
  width: clamp(280px, 45vw, 680px);
  height: clamp(280px, 45vw, 680px);
  background: var(--primary);
  opacity: 0.06;
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

.hero-bg-letter {
  position: absolute;
  bottom: -80px;
  right: clamp(-20px, 5vw, 60px);
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 900;
  font-size: clamp(320px, 40vw, 600px);
  line-height: 1;
  color: var(--primary);
  opacity: 0.05;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  letter-spacing: -0.06em;
}

.hero-inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  width: 100%;
}

.hero-hairline {
  width: 48px;
  height: 3px;
  background: var(--primary);
  margin-bottom: 24px;
  border-radius: 2px;
}

.hero-eyebrow {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--primary);
  flex-shrink: 0;
}

.hero-title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: clamp(56px, 9vw, 140px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--surface);
  margin-bottom: 28px;
  max-width: 14ch;
}

.hero-title .accent {
  color: var(--primary);
}

.hero-title em {
  font-style: italic;
  color: var(--primary);
}

.hero-sub {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 450;
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.55;
  color: rgba(250, 246, 238, 0.70);
  max-width: 52ch;
  margin-bottom: 36px;
}

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

.hero-trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
}

.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(250, 246, 238, 0.80);
  border: 1px solid var(--primary-border);
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  background: rgba(10, 156, 87, 0.08);
  white-space: nowrap;
}

.hero-accent-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--primary);
  z-index: 3;
}

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

.trust-strip-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px clamp(20px, 5vw, 48px);
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  flex-wrap: wrap;
}
.trust-strip-inner::-webkit-scrollbar { display: none; }

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ink);
  border: 1px solid var(--primary);
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  background: var(--surface);
  white-space: nowrap;
  flex-shrink: 0;
}

.trust-pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}

/* Marquee strip (index.html uses .marquee + .marquee-track + .marquee-chip) */
.marquee {
  overflow: hidden;
  padding: 14px 0;
  border-top: 1px solid var(--border-mid);
  border-bottom: 1px solid var(--border-mid);
  max-height: 80px !important;
  position: relative;
  z-index: 1;
  background: var(--canvas);
}

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

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

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

.marquee-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  font-size: clamp(11px, 1.1vw, 14px) !important;
  line-height: 1.2 !important;
  color: var(--ink);
  border: 1px solid var(--primary);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  background: var(--surface);
  white-space: nowrap;
  flex-shrink: 0;
}

.marquee-chip .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
  display: inline-block;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  padding: var(--section-py) 0;
  background: var(--canvas);
}

.services-header {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
  margin-bottom: 48px;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 0;
}

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

.service-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: var(--ink);
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
  box-shadow: var(--shadow-sm);
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -16px rgba(26, 24, 20, 0.18);
  color: var(--ink);
  text-decoration: none;
}

.service-card > img,
.service-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
  max-height: 180px;
}

.service-card-body {
  padding: 20px 24px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-card-body h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(17px, 1.8vw, 22px);
  font-weight: 600;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.service-card-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
  flex: 1;
  margin-bottom: 16px;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--primary);
  text-transform: uppercase;
  margin-top: auto;
}
.service-card-link svg { width: 16px; height: 16px; transition: transform 200ms; }
.service-card:hover .service-card-link svg { transform: translateX(3px); }

/* Services tabbed panel (services.html) */
.services-tabs-wrapper {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
  margin-bottom: 0;
}

.services-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-bottom: 0;
  border-bottom: 2px solid var(--border);
  margin-bottom: 0;
}

.service-tab {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--muted);
  background: none;
  border: none;
  padding: 12px 16px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: color 150ms, border-color 150ms;
  white-space: nowrap;
}
.service-tab:hover { color: var(--ink); }
.service-tab.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.services-panels-wrapper {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
  padding-top: 40px;
  padding-bottom: var(--section-py);
}

.service-panel {
  display: none;
  grid-template-columns: 1fr;
  gap: 40px;
}
.service-panel.active { display: grid; }

@media (min-width: 900px) {
  .service-panel { grid-template-columns: 1fr 1fr; align-items: center; }
}

.service-panel-img {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.service-panel-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  max-height: 400px;
  display: block;
}

.service-panel-body h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 20px;
}

.service-panel-body p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 16px;
}

.service-panel-body a.btn {
  margin-top: 8px;
}

/* ============================================================
   STATS
   ============================================================ */
.stats {
  background: var(--ink);
  padding: 0;
}

.stats-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0;
  max-width: var(--container);
  margin-inline: auto;
}

.stat {
  padding: clamp(48px, 6vh, 72px) clamp(24px, 4vw, 48px);
  text-align: center;
  border-right: 1px solid rgba(250, 246, 238, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.stat:last-child { border-right: none; }

.stat-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(48px, 8vw, 88px);
  font-weight: 700;
  line-height: 1;
  color: var(--primary);
  letter-spacing: -0.03em;
  display: block;
}

.stat-label {
  font-family: 'Inter Tight', sans-serif;
  font-size: clamp(11px, 1vw, 13px);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(250, 246, 238, 0.55);
  margin-top: 10px;
  font-weight: 600;
  display: block;
}

/* Gallery stat cards override */
.gallery-stat-card .stat-num { color: var(--primary); font-size: clamp(40px, 6vw, 72px); }
.gallery-stat-card .stat-label { color: var(--muted); }

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  padding: var(--section-py) 0;
  background: var(--canvas);
}

.about-grid {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 900px) {
  .about-grid {
    grid-template-columns: 3fr 5fr;
    gap: clamp(48px, 6vw, 80px);
  }
}

.about-grid > div:first-child,
.about-photo {
  grid-column: 1;
}

.about-grid > div:first-child img,
.about-photo img {
  width: 100%;
  max-height: 520px;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

.about-content {
  grid-column: 1;
}

@media (min-width: 900px) {
  .about-grid > div:first-child,
  .about-photo { grid-column: 1; }
  .about-content { grid-column: 2; }
}

.about-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(28px, 3.5vw, 52px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 20px;
}

.about-divider {
  width: 48px;
  height: 2px;
  background: var(--primary);
  margin-bottom: 24px;
  border-radius: 2px;
}

.about-body {
  font-size: clamp(15px, 1.4vw, 17px);
  color: var(--ink-mid);
  line-height: 1.7;
  margin-bottom: 28px;
}

.about-chips, .about-trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin-top: 8px;
}

.about-chip {
  display: inline-flex;
  align-items: center;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ink);
  border: 1px solid var(--primary);
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  background: var(--surface);
  white-space: nowrap;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery {
  padding: var(--section-py) 0;
  background: var(--canvas);
  border-top: 1px solid var(--border);
}

.gallery-header {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
  margin-bottom: 40px;
}

.gallery-feature {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: stretch;
}

@media (min-width: 900px) {
  .gallery-feature {
    grid-template-columns: 3fr 1fr;
    gap: 24px;
  }
}

.gallery-feature-img {
  grid-column: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.gallery-feature-img img {
  width: 100%;
  height: clamp(280px, 40vw, 520px);
  max-height: 520px;
  object-fit: cover;
  display: block;
}

.gallery-stat-stack {
  grid-column: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 900px) {
  .gallery-feature-img { grid-column: 1; }
  .gallery-stat-stack { grid-column: 2; }
}

.gallery-stat-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.gallery-stat-card .stat-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  letter-spacing: -0.03em;
}

.gallery-stat-card .stat-label {
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-top: 6px;
  font-weight: 600;
}

.gallery-stat-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
  margin-top: 10px;
}

.gallery-cta-card {
  background: var(--primary);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  min-height: 140px;
}

.gallery-cta-card p {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
}

.gallery-cta-card a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding-bottom: 2px;
  transition: border-color 150ms;
}
.gallery-cta-card a:hover { border-color: #fff; color: #fff; text-decoration: none; }

/* ============================================================
   SERVICE AREAS
   ============================================================ */
.service-areas {
  padding: var(--section-py) 0;
  background: var(--canvas);
  border-top: 1px solid var(--border);
}

.service-areas-inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
}

.areas-header {
  margin-bottom: 40px;
}

.areas-pill-cloud, .area-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
}

.area-pill {
  display: inline-flex;
  align-items: center;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--border-mid);
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  transition: border-color 150ms, color 150ms, background 150ms;
  white-space: nowrap;
  cursor: default;
}
.area-pill:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-dim);
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  padding: var(--section-py) 0;
  background: var(--canvas);
  border-top: 1px solid var(--border);
}

.contact-inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
}

.contact-grid, .contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-top: 40px;
}

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 3fr 2fr;
    gap: 64px;
    align-items: start;
  }
}

.contact-form-section, .contact-form-wrap {
  grid-column: 1;
}

.contact-info-section, .contact-info {
  grid-column: 1;
}

@media (min-width: 900px) {
  .contact-form-section, .contact-form-wrap { grid-column: 1; }
  .contact-info-section, .contact-info      { grid-column: 2; }
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

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

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
}

.form-field label {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-field input,
.form-field textarea,
.form-field select {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 450;
  font-size: 15px;
  color: var(--ink);
  background: var(--surface);
  border: 1.5px solid var(--border-mid);
  border-radius: var(--radius);
  padding: 13px 16px;
  width: 100%;
  outline: none;
  transition: border-color 150ms, box-shadow 150ms;
  appearance: none;
  -webkit-appearance: none;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--muted-light); }
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(10, 156, 87, 0.12);
}

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

.contact-info-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 24px;
}

.contact-info-block {
  margin-bottom: 28px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
}

.contact-info-icon {
  width: 36px;
  height: 36px;
  background: var(--primary-dim);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
}
.contact-info-icon svg { width: 18px; height: 18px; color: var(--primary); }

.contact-info-label {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}

.contact-info-value {
  font-size: 15px;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.5;
}

.contact-divider {
  width: 100%;
  height: 1px;
  background: var(--border);
  margin: 20px 0;
}

.social-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border-mid);
  color: var(--muted);
  transition: background 150ms, color 150ms, border-color 150ms;
  text-decoration: none;
}
.social-link svg { width: 18px; height: 18px; }
.social-link:hover {
  background: var(--primary-dim);
  border-color: var(--primary);
  color: var(--primary);
  text-decoration: none;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  padding: var(--section-py) 0;
  background: var(--canvas);
  border-top: 1px solid var(--border);
}

.faq-inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
}

.faq-list {
  margin-top: 40px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 0;
}

details.faq-item { border-bottom: 1px solid var(--border); padding: 18px 0; }
details.faq-item > summary {
  cursor: pointer;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: clamp(15px, 1.4vw, 17px);
  color: var(--ink);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 4px 0;
}
details.faq-item > summary::-webkit-details-marker { display: none; }
details.faq-item > summary::after {
  content: "+";
  font-weight: 300;
  font-size: 24px;
  color: var(--primary);
  transition: transform 200ms;
  flex-shrink: 0;
}
details.faq-item[open] > summary::after { transform: rotate(45deg); color: var(--primary); }
details.faq-item p { margin-top: 12px; line-height: 1.65; color: var(--muted); font-size: 15px; }

.faq-chevron { width: 20px; height: 20px; color: var(--primary); transition: transform 200ms; }
details.faq-item[open] .faq-chevron { transform: rotate(180deg); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--ink);
  color: rgba(250, 246, 238, 0.75);
}

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

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding: clamp(48px, 6vh, 72px) 0 clamp(40px, 5vh, 60px);
  border-bottom: 1px solid rgba(250, 246, 238, 0.08);
}

@media (min-width: 640px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1200px) {
  .footer-top { grid-template-columns: 2fr 1fr 1fr 1.5fr; }
}

.footer-brand { display: flex; flex-direction: column; gap: 12px; }
.footer-brand-name {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: 18px;
  color: #fff;
  margin-top: 10px;
}
.footer-tagline { font-size: 14px; color: rgba(250, 246, 238, 0.55); line-height: 1.5; }

.footer-section-title, .footer-col-title {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250, 246, 238, 0.40);
  margin-bottom: 16px;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links li a {
  font-size: 14px;
  color: rgba(250, 246, 238, 0.65);
  text-decoration: none;
  transition: color 150ms;
}
.footer-links li a:hover { color: #fff; text-decoration: none; }

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(250, 246, 238, 0.65);
  margin-bottom: 10px;
}
.footer-contact-item svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--primary); }
.footer-contact-item a { color: rgba(250, 246, 238, 0.65); text-decoration: none; }
.footer-contact-item a:hover { color: #fff; text-decoration: none; }

.footer-bottom {
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.footer-copy {
  font-size: 13px;
  color: rgba(250, 246, 238, 0.35);
}

.footer-legal-chips, .footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-legal-chip, .footer-badge {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(250, 246, 238, 0.40);
  border: 1px solid rgba(250, 246, 238, 0.12);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

.footer .social-links { margin-top: 4px; }
.footer .social-link {
  background: rgba(250, 246, 238, 0.06);
  border-color: rgba(250, 246, 238, 0.12);
  color: rgba(250, 246, 238, 0.55);
}
.footer .social-link:hover {
  background: rgba(10, 156, 87, 0.15);
  border-color: var(--primary);
  color: var(--primary);
}

/* ============================================================
   ANIMATION UTILITIES
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-right {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.scale-in {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

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

.stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.stagger.visible > *:nth-child(1)  { transition-delay: 0.05s; opacity: 1; transform: none; }
.stagger.visible > *:nth-child(2)  { transition-delay: 0.12s; opacity: 1; transform: none; }
.stagger.visible > *:nth-child(3)  { transition-delay: 0.19s; opacity: 1; transform: none; }
.stagger.visible > *:nth-child(4)  { transition-delay: 0.26s; opacity: 1; transform: none; }
.stagger.visible > *:nth-child(5)  { transition-delay: 0.33s; opacity: 1; transform: none; }
.stagger.visible > *:nth-child(6)  { transition-delay: 0.40s; opacity: 1; transform: none; }
.stagger.visible > *:nth-child(7)  { transition-delay: 0.47s; opacity: 1; transform: none; }
.stagger.visible > *:nth-child(8)  { transition-delay: 0.54s; opacity: 1; transform: none; }
.stagger.visible > *:nth-child(n+9){ transition-delay: 0.60s; opacity: 1; transform: none; }

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

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

/* ============================================================
   PROCESS STRIP (spare, in case used)
   ============================================================ */
.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: var(--radius);
}
.step-num {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
  letter-spacing: 0.12em;
}

/* ============================================================
   REVIEW CARDS
   ============================================================ */
.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; }

/* ============================================================
   FORM SUCCESS / ERROR STATES
   ============================================================ */
.form-success {
  display: none;
  padding: 20px;
  background: rgba(10, 156, 87, 0.1);
  border: 1px solid var(--primary);
  border-radius: var(--radius);
  color: var(--primary);
  font-weight: 600;
  font-size: 15px;
  text-align: center;
}
.form-success.show { display: block; }

.form-field.error input,
.form-field.error textarea,
.form-field.error select {
  border-color: #e05252;
}

.field-error {
  font-size: 12px;
  color: #e05252;
  font-weight: 500;
  margin-top: 2px;
}

/* ============================================================
   RESPONSIVE OVERRIDES
   ============================================================ */
@media (max-width: 639px) {
  .hero-title { font-size: clamp(44px, 12vw, 72px); }
  .services-grid { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid rgba(250, 246, 238, 0.08); }
  .stat:last-child { border-bottom: none; }
  .gallery-stat-stack { flex-direction: row; overflow-x: auto; padding-bottom: 4px; }
  .gallery-stat-card, .gallery-cta-card { min-width: 200px; }
  .footer-top { grid-template-columns: 1fr; }
}

@media (min-width: 640px) and (max-width: 899px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

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

@media (min-width: 1200px) {
  .footer-top { grid-template-columns: 2fr 1fr 1fr 1.5fr; }
}

/* Defensive: unsized SVG caps */
.contact-info-icon svg,
.contact-info-item svg,
.footer-contact-item svg { width: 18px; height: 18px; }
.nav-links li a svg,
.util-bar svg, .utility-bar svg { width: 16px; height: 16px; }
#nav-toggle svg { width: 24px; height: 24px; }
.btn svg { width: 18px; height: 18px; }
.hero-ctas svg { width: 18px; height: 18px; }
.social-link svg { width: 18px; height: 18px; }
.service-card-link svg { width: 16px; height: 16px; }

/* Thead-only dark styles (if used) */
.services-table thead .col-service,
.services-table thead .col-desc,
.services-table thead .col-timeline,
.services-table thead .col-price {
  background: var(--ink);
  color: var(--canvas);
}

/* Nav link uniformity */
#nav-links a {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: var(--radius);
  transition: color 150ms, background 150ms;
  display: block;
  background: none;
  border: none;
}
#nav-links a:hover {
  color: var(--primary);
  background: var(--primary-dim);
  text-decoration: none;
}
#nav-links a[aria-current="page"] {
  color: var(--primary);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}


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