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

/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --primary:        #8AC59A;
  --accent:         #5CB46C;
  --primary-tint:   rgba(138,197,154,0.12);
  --primary-tint-20: rgba(138,197,154,0.20);
  --canvas:         #F4EFE6;
  --surface:        #FFFFFF;
  --ink:            #1F1B16;
  --ink-mid:        #3D3830;
  --muted:          #7A7268;
  --border:         rgba(31,27,22,0.10);
  --border-strong:  rgba(31,27,22,0.18);
  --sand-inner:     #F4EFE6;
  --header-height:  72px;
  --radius:         12px;
  --radius-pill:    999px;
  --section-pad:    clamp(96px, 12vh, 152px);
  --container:      1240px;
  --wide:           1400px;
}

@media (max-width: 900px) {
  :root { --header-height: 60px; }
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
  font-size: 17px;
}

body {
  font-family: 'Inter Tight', system-ui, sans-serif;
  font-weight: 450;
  background: var(--canvas);
  color: var(--ink);
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  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: 44px !important;
  max-width: 200px !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; }

.page-header, [class*="page-header"], .about-feature, .about-hero {
  position: relative; overflow: hidden; max-height: 64vh;
}
.page-header > img, [class*="page-header"] > img, .page-header-bg,
.about-feature > img:first-of-type, .about-hero-bg,
.page-header img:first-of-type {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}

section > img:first-child:not([class*="logo"]):not(.nav-logo) {
  max-height: 64vh; object-fit: cover;
}

section img:not(.hero-bg):not(.page-header-bg):not([class*="full-bleed"]):not([class*="logo"]) {
  max-height: 720px;
}

[class*="gallery-grid"] > [class*="gallery-tile"],
[class*="gallery-grid"] > a,
[class*="gallery-grid"] > figure {
  grid-column: auto; width: auto; max-width: 100%; height: auto; min-height: 0;
}
[class*="gallery-tile"] { aspect-ratio: 4 / 3; overflow: hidden; }
[class*="gallery-tile"] > img { width: 100%; height: 100%; object-fit: cover; }

/* 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 150ms; text-decoration: none; }
a:hover { color: var(--accent); text-decoration: underline;
  text-decoration-thickness: 2px; text-underline-offset: 4px; }

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

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, .display-heading {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(48px, 7vw, 96px); }
h2 { font-size: clamp(36px, 5vw, 64px); }
h3 { font-size: clamp(22px, 2.8vw, 34px); }
h4 { font-size: clamp(18px, 2vw, 24px); }

.eyebrow, .section-eyebrow, .page-eyebrow, .svc-eyebrow,
.ph-eyebrow, .cta-eyebrow, .page-header-eyebrow {
  font-family: 'Inter Tight', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 12px;
}

.tagline, .sub, .hero-sub, .ph-sub, .services-intro,
.cta-banner-sub, .page-header-sub, .contact-form-sub, .gallery-sub {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 450;
  color: var(--muted);
  line-height: 1.6;
  font-size: clamp(15px, 1.5vw, 18px);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn, .btn-primary, .btn-ghost, .btn-white-outline, .btn-submit, .btn-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 16px 30px;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 180ms ease-out, box-shadow 180ms ease-out, filter 150ms;
  text-decoration: none;
  white-space: nowrap;
  border: none;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover {
  filter: brightness(0.92);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px -8px rgba(92,180,108,0.45);
  color: #fff; text-decoration: none;
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--border-strong);
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
  text-decoration: none;
}

.btn-white-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-white-outline:hover {
  background: rgba(255,255,255,0.12);
  color: #fff;
  text-decoration: none;
}

.btn-submit {
  background: var(--accent);
  color: #fff;
  width: 100%;
  justify-content: center;
  font-size: 16px;
  padding: 18px 30px;
}
.btn-submit:hover {
  filter: brightness(0.92);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px -8px rgba(92,180,108,0.45);
}

.btn-pair {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

/* ============================================================
   CHIPS
   ============================================================ */
.chip, .trust-chip, .trust-pill, .ph-chip, .area-chip, .area-pill,
.story-chips .chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary-tint);
  color: var(--accent);
  font-family: 'Inter Tight', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  border: none;
  white-space: nowrap;
}

.chip svg, .trust-chip svg, .trust-pill svg { width: 15px; height: 15px; flex-shrink: 0; color: var(--accent); }

/* ============================================================
   PROGRESS BAR
   ============================================================ */
#progress-bar, #scrollBar, #scrollProgress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: var(--accent);
  z-index: 9999;
  width: 0%;
  transition: width 80ms linear;
}

.scroll-bar, .scroll-progress { position: fixed; top: 0; left: 0; height: 3px; z-index: 9999; }

/* ============================================================
   SITE HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--canvas);
  border-bottom: 1px solid rgba(31,27,22,0.08);
}

.top-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  max-width: 1320px;
  margin-inline: auto;
  padding: 0 28px;
  height: var(--header-height);
}

.nav-logo { flex: 0 0 auto; }
.nav-logo img { max-height: 44px !important; }

.nav-pages {
  flex: 1;
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 28px;
  align-items: center;
}

.nav-pages a {
  display: inline-block;
  padding: 6px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  font-family: 'Inter Tight', sans-serif;
  transition: color 150ms;
}
.nav-pages a:hover {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}
.nav-pages a[aria-current="page"] {
  color: var(--accent);
  border-bottom: 2px solid var(--accent);
  padding-bottom: 4px;
  text-decoration: none;
}

.nav-cta {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--accent);
  color: #fff;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  font-family: 'Inter Tight', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: filter 150ms, transform 150ms;
}
.nav-cta:hover { filter: brightness(0.92); transform: translateY(-1px); color: #fff; text-decoration: none; }
.nav-cta svg { width: 16px; height: 16px; }
.nav-cta-label { }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--ink);
  font-size: 24px;
  cursor: pointer;
  padding: 8px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
}

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-pages {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px; left: 0; right: 0;
    background: var(--canvas);
    padding: 24px;
    gap: 4px;
    border-bottom: 1px solid rgba(31,27,22,0.08);
    justify-content: flex-start;
    z-index: 850;
  }
  .nav-pages.open { display: flex; }
  .nav-pages a { font-size: 17px; padding: 10px 0; }
  .nav-cta-label { display: none; }
  .nav-cta { padding: 10px 12px; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
}

.hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
  filter: saturate(0.9);
}

.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    160deg,
    rgba(31,27,22,0.30) 0%,
    rgba(31,27,22,0.55) 50%,
    rgba(138,197,154,0.28) 100%
  );
}

.hero-ribbon {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--primary);
  z-index: 3;
}

.hero-inner {
  position: relative; z-index: 2;
  max-width: var(--container);
  margin-inline: auto;
  width: 100%;
  padding: clamp(48px, 8vw, 96px) clamp(20px, 5vw, 48px);
  padding-bottom: clamp(64px, 9vw, 112px);
}

.hero-eyebrow {
  font-family: 'Inter Tight', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 20px;
  display: block;
}

.hero-title, .hero h1 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  font-size: clamp(56px, 8vw, 120px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: #fff;
  max-width: 14ch;
  margin-bottom: 20px;
}

.hero-sub {
  color: rgba(255,255,255,0.82);
  font-size: clamp(15px, 1.6vw, 19px);
  font-weight: 450;
  max-width: 48ch;
  margin-bottom: 36px;
  line-height: 1.55;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-ctas .btn-primary { background: var(--accent); color: #fff; border-radius: 10px; }

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

.hero-trust-chips .trust-chip {
  background: rgba(138,197,154,0.15);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.18);
  font-size: 12px;
  letter-spacing: 0.08em;
}
.hero-trust-chips .trust-chip svg { color: var(--primary); }

/* ============================================================
   MARQUEE STRIP
   ============================================================ */
.marquee-strip {
  overflow: hidden;
  padding: 14px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  max-height: 64px;
  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-strip:hover .marquee-track { animation-play-state: paused; }

.marquee-item {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: clamp(12px, 1.3vw, 16px);
  line-height: 1.2;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.marquee-hi { color: var(--accent); }
.m-dot {
  display: inline-block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--primary);
  vertical-align: middle;
}

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

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--surface);
  padding: 40px 0;
}

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

.trust-pill {
  background: var(--primary-tint);
  color: var(--accent);
}

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

.services .section-inner { }

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

.services-header .section-title {
  font-size: clamp(36px, 5vw, 64px);
  margin-bottom: 12px;
}

.services-intro {
  max-width: 56ch;
  margin-top: 12px;
}

.services-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.service-tab {
  font-family: 'Inter Tight', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  background: transparent;
  border: 1.5px solid var(--border-strong);
  color: var(--muted);
  cursor: pointer;
  transition: background 180ms, color 180ms, border-color 180ms, transform 150ms;
}
.service-tab:hover {
  border-color: var(--primary);
  color: var(--accent);
  transform: translateY(-1px);
}
.service-tab.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.services-panels { position: relative; }

.service-panel {
  display: none;
  grid-template-columns: 45% 1fr;
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  min-height: 480px;
}
.service-panel.active { display: grid; }

.service-panel-img {
  position: relative;
  overflow: hidden;
  background: var(--canvas);
}
.service-panel-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: none;
  display: block;
  /* Mounted print treatment */
  outline: 12px solid var(--sand-inner);
  outline-offset: -12px;
}

.service-panel-body {
  padding: clamp(28px, 4vw, 52px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}

.service-panel-body h3 {
  font-size: clamp(24px, 3vw, 38px);
  margin-bottom: 18px;
  color: var(--ink);
}

.service-panel-body p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-mid);
  margin-bottom: 14px;
}

.service-panel-body a.btn-primary {
  align-self: flex-start;
  margin-top: 12px;
}

@media (max-width: 760px) {
  .service-panel {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .service-panel-img {
    min-height: 220px;
    max-height: 260px;
  }
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews {
  background: var(--surface);
  padding-block: var(--section-pad);
}

.reviews .section-inner {}

.reviews .section-eyebrow { margin-bottom: 8px; }
.reviews > .section-inner > h2,
.reviews .section-inner > h2 {
  margin-bottom: 48px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

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

.review-card {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--canvas);
  border: 1px solid var(--border);
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}
.review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -16px rgba(31,27,22,0.12);
}

.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}
.review-stars svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; }

.review-quote {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 14px;
  font-style: italic;
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 17px;
}

.review-attribution {
  font-size: 13px;
  color: var(--muted);
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ============================================================
   GALLERY (index.html minimal)
   ============================================================ */
.gallery {
  background: var(--canvas);
  padding-block: var(--section-pad);
}

.gallery .section-inner {}

.gallery-sub {
  max-width: 52ch;
  margin-bottom: 36px;
  margin-top: 10px;
}

.gallery-feature-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  max-height: 600px;
}

.gallery-feature-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 600px;
  /* Mounted print */
  outline: 12px solid var(--sand-inner);
  outline-offset: -12px;
}

.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(31,27,22,0.32);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity 250ms;
}
.gallery-feature-wrap:hover .gallery-overlay { opacity: 1; }

.gallery-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--ink);
  padding: 14px 26px;
  border-radius: 10px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: transform 150ms;
}
.gallery-cta:hover { transform: scale(1.03); color: var(--ink); text-decoration: none; }
.gallery-cta svg { width: 18px; height: 18px; }

/* ============================================================
   GALLERY SECTION (gallery.html)
   ============================================================ */
.gallery-section {
  background: var(--canvas);
  padding-block: var(--section-pad);
}

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

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-block: 28px;
}

.filter-pill {
  font-family: 'Inter Tight', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--border-strong);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: background 180ms, color 180ms, border-color 180ms;
}
.filter-pill.active, .filter-pill:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

.project-card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}
.project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px -16px rgba(31,27,22,0.14);
}

.card-photo-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.card-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: none;
  transition: transform 600ms ease-out;
}
.project-card:hover .card-photo-wrap img { transform: scale(1.04); }

.card-badge {
  position: absolute;
  top: 10px; left: 10px;
  background: var(--accent);
  color: #fff;
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

.card-category {
  position: absolute;
  bottom: 10px; right: 10px;
  background: rgba(31,27,22,0.7);
  color: #fff;
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(4px);
}

.card-body {
  padding: 20px 22px;
}
.card-body h3 {
  font-size: 18px;
  margin-bottom: 8px;
  line-height: 1.2;
}

.card-location {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.card-location svg { width: 14px; height: 14px; color: var(--primary); }

.card-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.card-meta-item {
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  background: var(--primary-tint);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ============================================================
   SERVICE AREAS
   ============================================================ */
.service-areas {
  background: var(--surface);
  padding-block: var(--section-pad);
}

.areas-wrap {
  margin-top: 28px;
}

.areas-city-display {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(32px, 4.5vw, 60px);
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 28px;
  max-width: 20ch;
}

.areas-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.area-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary-tint);
  color: var(--accent);
  font-family: 'Inter Tight', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
}
.area-pill svg { width: 14px; height: 14px; flex-shrink: 0; }

.areas-note {
  font-size: 14px;
  color: var(--muted);
  margin-top: 8px;
  font-style: italic;
}

.area-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.area-chip {
  background: var(--primary-tint);
  color: var(--accent);
  font-family: 'Inter Tight', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: var(--radius-pill);
}
.area-label {
  display: block;
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 24px;
  margin-bottom: 8px;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  background: var(--canvas);
  padding-block: var(--section-pad);
}

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

details {
  border-bottom: 1px solid var(--border);
}

details summary {
  cursor: pointer;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: clamp(15px, 1.5vw, 17px);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  color: var(--ink);
  gap: 16px;
  transition: color 150ms;
}
details summary::-webkit-details-marker { display: none; }
details summary:hover { color: var(--accent); }

.faq-chevron {
  width: 20px; height: 20px;
  flex-shrink: 0;
  color: var(--muted);
  transition: transform 220ms, color 150ms;
}
details[open] .faq-chevron {
  transform: rotate(180deg);
  color: var(--accent);
}

details p {
  padding-bottom: 20px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-mid);
}

/* ============================================================
   CONTACT (index.html)
   ============================================================ */
.contact {
  background: var(--surface);
  padding-block: var(--section-pad);
}

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

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

/* ============================================================
   FORMS
   ============================================================ */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}

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

.form-group input,
.form-group textarea,
.form-group select {
  font-family: 'Inter Tight', sans-serif;
  font-size: 15px;
  font-weight: 450;
  padding: 14px 16px;
  border: 1.5px solid var(--border-strong);
  border-radius: 8px;
  background: var(--canvas);
  color: var(--ink);
  transition: border-color 150ms, box-shadow 150ms;
  outline: none;
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(138,197,154,0.20);
}

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

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

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

.form-privacy {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 18px;
  line-height: 1.5;
}
.form-privacy a { color: var(--accent); }

.contact-form { }

.contact-info { }
.info-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.info-block:last-child { border-bottom: none; }

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

.info-link-big, .info-block a {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(20px, 2.5vw, 28px);
  color: var(--ink);
  text-decoration: none;
  line-height: 1.15;
  transition: color 150ms;
}
.info-link-big:hover, .info-block a:hover { color: var(--accent); text-decoration: none; }

.info-link-sm { font-size: 15px; color: var(--muted); }
.info-text { font-size: 15px; color: var(--ink-mid); line-height: 1.6; }

.social-row, .social-links {
  display: flex;
  gap: 12px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.social-link, .social-pill, .footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  padding: 8px 14px;
  background: var(--primary-tint);
  border-radius: var(--radius-pill);
  transition: background 150ms, transform 150ms;
}
.social-link:hover, .social-pill:hover, .footer-social-link:hover {
  background: var(--primary-tint-20);
  transform: translateY(-1px);
  color: var(--accent);
  text-decoration: none;
}
.social-link svg, .social-pill svg { width: 16px; height: 16px; }

/* ============================================================
   CONTACT SECTION (contact.html)
   ============================================================ */
.contact-section { background: var(--canvas); }

.contact-form-wrap {
  background: var(--surface);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 52px);
  border: 1px solid var(--border);
}

.eyebrow-line {
  display: block;
  width: 40px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  margin-bottom: 12px;
}

.contact-form-title {
  font-size: clamp(28px, 3.5vw, 44px);
  margin-bottom: 8px;
}

.contact-info-card {
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 52px);
}

.info-card-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(22px, 2.5vw, 32px);
  color: #fff;
  margin-bottom: 32px;
  font-weight: 400;
}
.info-card-title em { font-style: italic; color: var(--primary); }

.info-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.info-row:last-of-type { border-bottom: none; }

.info-icon {
  width: 40px; height: 40px;
  background: rgba(138,197,154,0.15);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.info-icon svg { width: 20px; height: 20px; color: var(--primary); }

.info-row .info-label {
  color: rgba(255,255,255,0.55);
  font-size: 11px;
  letter-spacing: 0.10em;
  margin-bottom: 3px;
}

.info-value {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.45;
}
.info-value a { color: #fff; font-weight: 600; }
.info-value a:hover { color: var(--primary); text-decoration: none; }

.contact-info-card .area-label {
  color: rgba(255,255,255,0.55);
}
.contact-info-card .area-chip {
  background: rgba(138,197,154,0.15);
  color: var(--primary);
  border: 1px solid rgba(138,197,154,0.25);
}

.contact-info-card .social-links { margin-top: 20px; }
.contact-info-card .social-link {
  background: rgba(255,255,255,0.08);
  color: #fff;
}
.contact-info-card .social-link:hover {
  background: rgba(138,197,154,0.20);
  color: var(--primary);
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--ink);
  padding-block: clamp(72px, 10vh, 120px);
}

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

@media (max-width: 760px) {
  .cta-banner-inner { grid-template-columns: 1fr; gap: 28px; }
}

.cta-banner-left {}
.cta-eyebrow, .cta-banner-eyebrow {
  font-family: 'Inter Tight', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
  display: block;
}

.cta-banner-inner h2, .cta-banner-title {
  font-size: clamp(32px, 4.5vw, 60px);
  color: #fff;
  line-height: 1.0;
  margin-bottom: 12px;
}

.cta-banner-sub {
  color: rgba(255,255,255,0.65);
  font-size: 16px;
}

.cta-btn-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.cta-phone-num {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(20px, 2.5vw, 32px);
  color: #fff;
}

.cta-banner-right {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}

/* ============================================================
   PAGE HEADER
   ============================================================ */
.page-header {
  min-height: clamp(260px, 38vh, 480px);
  max-height: 64vh;
  display: flex;
  align-items: flex-end;
}

.page-header-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(31,27,22,0.25) 0%, rgba(31,27,22,0.65) 100%);
  z-index: 1;
}

.page-header-inner {
  position: relative; z-index: 2;
  max-width: var(--container);
  margin-inline: auto;
  width: 100%;
  padding: clamp(36px, 6vw, 72px) clamp(20px, 5vw, 48px);
}

.page-header-inner h1 {
  font-size: clamp(40px, 6vw, 88px);
  color: #fff;
  line-height: 0.98;
  max-width: 16ch;
}

.page-header-eyebrow, .page-eyebrow {
  display: block;
  font-family: 'Inter Tight', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 14px;
}

.page-header-sub { color: rgba(255,255,255,0.75); margin-top: 14px; }

.ph-chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}
.ph-chip {
  background: rgba(138,197,154,0.18);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.18);
}

/* ============================================================
   SERVICES DETAIL (services.html)
   ============================================================ */
.services-detail {
  background: var(--canvas);
  padding-block: clamp(48px, 8vh, 96px);
}

.svc-row {
  border-bottom: 1px solid var(--border);
  padding-block: clamp(64px, 9vh, 112px);
}
.svc-row:last-child { border-bottom: none; }

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

.svc-row:nth-child(even) .svc-inner {
  grid-template-columns: 1fr 45%;
}
.svc-row:nth-child(even) .svc-photo { order: 2; }
.svc-row:nth-child(even) .svc-body  { order: 1; }

@media (max-width: 900px) {
  .svc-inner { grid-template-columns: 1fr; gap: 32px; }
  .svc-row:nth-child(even) .svc-photo { order: 0; }
  .svc-row:nth-child(even) .svc-body  { order: 0; }
}

.svc-photo img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: var(--radius);
  /* Mounted print */
  outline: 12px solid var(--sand-inner);
  outline-offset: -12px;
}

.svc-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.hairline {
  display: inline-block;
  width: 32px; height: 2px;
  background: var(--accent);
  border-radius: 1px;
  vertical-align: middle;
}

.svc-body h2 {
  font-size: clamp(28px, 3.5vw, 48px);
  margin-bottom: 18px;
  line-height: 1.05;
}

.svc-body p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-mid);
  margin-bottom: 14px;
}

.svc-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-block: 20px;
}
.svc-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--ink);
  line-height: 1.5;
}
.check {
  display: flex; align-items: center; justify-content: center;
  width: 20px; height: 20px;
  background: var(--primary-tint);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
}
.check svg { width: 12px; height: 12px; color: var(--accent); }

/* ============================================================
   QUICK NAV (services.html)
   ============================================================ */
.qnav {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: var(--header-height);
  z-index: 800;
}

.qnav-inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
  display: flex;
  gap: 4px;
  overflow-x: auto;
  padding-block: 12px;
  scrollbar-width: none;
}
.qnav-inner::-webkit-scrollbar { display: none; }

.qnav-link {
  font-family: 'Inter Tight', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  text-decoration: none;
  transition: background 150ms, color 150ms;
}
.qnav-link:hover {
  background: var(--primary-tint);
  color: var(--accent);
  text-decoration: none;
}

/* ============================================================
   ABOUT STORY
   ============================================================ */
.about-story {
  background: var(--canvas);
  padding-block: var(--section-pad);
}

.about-story-grid {
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
  margin-top: 40px;
}

@media (max-width: 900px) {
  .about-story-grid { grid-template-columns: 1fr; }
}

.about-story-portrait-col {}
.about-story-text h2 {
  font-size: clamp(32px, 4.5vw, 56px);
  margin-bottom: 20px;
  line-height: 1.05;
}
.about-story-text p { font-size: 16px; line-height: 1.7; color: var(--ink-mid); margin-bottom: 16px; }

/* Mounted photo treatment — THE unique move */
.mounted-photo {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  display: block;
}
.mounted-photo img {
  width: 100%;
  object-fit: cover;
  display: block;
  /* Inner border = "mounted print" */
  outline: 12px solid var(--sand-inner);
  outline-offset: -12px;
  border-radius: var(--radius);
  max-height: 640px;
}

.story-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

/* ============================================================
   VALUES
   ============================================================ */
.values {
  background: var(--surface);
  padding-block: var(--section-pad);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

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

.value-card {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--canvas);
  border: 1px solid var(--border);
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}
.value-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -16px rgba(31,27,22,0.10);
}

.value-numeral {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 48px;
  color: var(--primary);
  line-height: 1.0;
  margin-bottom: 10px;
  opacity: 0.6;
}

.value-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  line-height: 1.2;
}
.value-card p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ============================================================
   JOURNEY / TIMELINE
   ============================================================ */
.journey {
  background: var(--canvas);
  padding-block: var(--section-pad);
}

.timeline-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
  position: relative;
}

@media (max-width: 900px) {
  .timeline-track { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .timeline-track { grid-template-columns: 1fr; }
}

.timeline-step {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  position: relative;
}

.timeline-dot {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--primary-tint);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  border: 2px solid var(--primary);
}
.dot-inner {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--accent);
}

.timeline-year {
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.timeline-step h3 {
  font-size: 18px;
  margin-bottom: 8px;
  line-height: 1.25;
}
.timeline-step p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ============================================================
   CREW STRIP
   ============================================================ */
.crew-strip {
  background: var(--surface);
  padding-block: var(--section-pad);
}

.crew-photo-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 36px;
}

.crew-photo-wrap img {
  width: 100%;
  object-fit: cover;
  max-height: 540px;
  display: block;
  filter: saturate(0.85);
  /* Mounted print */
  outline: 12px solid var(--surface);
  outline-offset: -12px;
}

.crew-quote-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: clamp(24px, 4vw, 48px);
  background: linear-gradient(to top, rgba(31,27,22,0.78) 0%, transparent 100%);
}
.crew-quote-overlay p {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(18px, 2.5vw, 28px);
  color: #fff;
  line-height: 1.2;
  font-style: italic;
  max-width: 60ch;
}

/* ============================================================
   ABOUT SECTION (index.html)
   ============================================================ */
.about-section {
  background: var(--surface);
  padding-block: var(--section-pad);
}

.about-split-grid {
  display: grid;
  grid-template-columns: 1fr 45%;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  margin-top: 0;
}

@media (max-width: 900px) {
  .about-split-grid { grid-template-columns: 1fr; }
  .about-split-photo { order: -1; }
}

.about-split-text h2 {
  font-size: clamp(30px, 4vw, 52px);
  margin-bottom: 18px;
  line-height: 1.05;
}
.about-split-text p { font-size: 16px; line-height: 1.72; color: var(--ink-mid); margin-bottom: 16px; }

.about-split-photo {}
.about-split-photo .mounted-photo img { max-height: 580px; }

/* ============================================================
   STATS
   ============================================================ */
.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);
  font-family: 'Inter Tight', sans-serif;
}

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

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

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.70);
  padding-top: clamp(64px, 8vh, 96px);
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-brand, .footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-logo-wrap, .footer-brand-logo { }
.footer-logo-wrap img, .footer-brand img, .footer-brand-col img, .footer-brand-logo img {
  max-height: 44px !important;
  filter: brightness(10);
  opacity: 0.9;
}

.footer-tagline {
  font-size: 14px;
  line-height: 1.6;
  max-width: 28ch;
  color: rgba(255,255,255,0.50);
}

.footer-social, .social-row { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-social a, .social-row a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  padding: 7px 13px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: background 150ms, color 150ms;
}
.footer-social a:hover, .social-row a:hover {
  background: rgba(138,197,154,0.18);
  color: var(--primary);
  text-decoration: none;
}
.footer-social a svg, .social-row a svg { width: 16px; height: 16px; }

.footer-col h4, .footer-col-title {
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.40);
  margin-bottom: 16px;
  display: block;
}

.footer-col ul, .footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a, .footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 150ms;
}
.footer-col a:hover, .footer-links a:hover {
  color: var(--primary);
  text-decoration: none;
}

.footer-contact-list, .footer-contact-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact-item {
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
}
.footer-contact-item svg { width: 16px; height: 16px; color: var(--primary); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: rgba(255,255,255,0.65); text-decoration: none; }
.footer-contact-item a:hover { color: var(--primary); text-decoration: none; }

.footer-contact-line {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
}
.footer-contact-line a { color: rgba(255,255,255,0.65); }
.footer-contact-line a:hover { color: var(--primary); }

.footer-tel {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 22px;
  color: #fff;
}

.footer-bottom, .footer-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-block: 20px;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 0;
}

.footer-legal-links { display: flex; gap: 16px; }
.footer-legal-links a { color: rgba(255,255,255,0.35); font-size: 13px; }
.footer-legal-links a:hover { color: var(--primary); text-decoration: none; }

.footer-socials { display: flex; gap: 12px; }
.footer-socials a { color: rgba(255,255,255,0.50); text-decoration: none; font-size: 13px; }
.footer-socials a:hover { color: var(--primary); }

/* ============================================================
   MOBILE CALL PILL
   ============================================================ */
.mobile-call-pill, .mobile-call, .mobile-cta, .mobile-sticky-cta {
  position: fixed;
  bottom: 18px; right: 18px;
  z-index: 999;
  background: var(--accent);
  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-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 150ms, filter 150ms;
}
.mobile-call-pill svg, .mobile-call svg, .mobile-cta svg, .mobile-sticky-cta svg {
  width: 20px; height: 20px; flex-shrink: 0;
}
.mobile-call-pill:hover, .mobile-call:hover, .mobile-cta:hover, .mobile-sticky-cta:hover {
  filter: brightness(0.92);
  transform: translateY(-2px);
  color: #fff;
  text-decoration: none;
}
.mobile-call > a, .mobile-sticky-cta > a {
  display: flex; align-items: center; gap: 8px;
  color: #fff; text-decoration: none;
}

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

/* ============================================================
   SECTION EYEBROW HAIRLINE
   ============================================================ */
.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px; height: 2px;
  background: var(--accent);
  border-radius: 1px;
  flex-shrink: 0;
}

/* Sections that alternate backgrounds */
.services { background: var(--canvas); }
.trust-strip { background: var(--surface); }
.reviews { background: var(--surface); }
.gallery { background: var(--canvas); }
.service-areas { background: var(--surface); }
.faq { background: var(--canvas); }
.contact { background: var(--surface); }

/* ============================================================
   ANIMATION UTILITIES
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 640ms cubic-bezier(0.22, 1, 0.36, 1),
              transform 640ms cubic-bezier(0.22, 1, 0.36, 1);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

.fade-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 640ms cubic-bezier(0.22, 1, 0.36, 1),
              transform 640ms cubic-bezier(0.22, 1, 0.36, 1);
}
.fade-left.visible { opacity: 1; transform: translateX(0); }

.fade-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 640ms cubic-bezier(0.22, 1, 0.36, 1),
              transform 640ms cubic-bezier(0.22, 1, 0.36, 1);
}
.fade-right.visible { opacity: 1; transform: translateX(0); }

.scale-in {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 600ms cubic-bezier(0.22, 1, 0.36, 1),
              transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}
.scale-in.visible { opacity: 1; transform: scale(1); }

.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; }
.stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 560ms cubic-bezier(0.22, 1, 0.36, 1),
              transform 560ms cubic-bezier(0.22, 1, 0.36, 1);
}
.stagger.visible > * { opacity: 1; transform: translateY(0); }

/* ============================================================
   SERVICE CARD HOVER
   ============================================================ */
.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.18);
}

/* ============================================================
   MISC HELPERS
   ============================================================ */
.meta-label {
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--muted);
}
.meta-value {
  font-size: 15px;
  color: var(--ink);
  font-weight: 500;
}

.display-heading {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -0.02em;
}

.fb-logo { max-height: 24px; }

/* ============================================================
   RESPONSIVE HELPERS
   ============================================================ */
@media (max-width: 640px) {
  .hero { min-height: 85vh; }
  .hero-title, .hero h1 { font-size: clamp(44px, 12vw, 72px); }
  .service-panel { min-height: auto; }
  .cta-banner-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .about-split-grid { grid-template-columns: 1fr; }
  .about-story-grid { grid-template-columns: 1fr; }
}

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

@media (min-width: 1200px) {
  .about-split-grid { grid-template-columns: 1fr 42%; }
  .about-story-grid { grid-template-columns: 38% 1fr; }
}


/* === Validator patches (auto-applied) === */
/* validator patch: grid children without placement → span full row */
.form-group { grid-column: 1 / -1; }
.cta-eyebrow { grid-column: 1 / -1; }
.cta-phone-num { grid-column: 1 / -1; }
.cta-btn-row { grid-column: 1 / -1; }
.footer-brand { grid-column: 1 / -1; }
.footer-col { grid-column: 1 / -1; }
.about-story-text { grid-column: 1 / -1; }
.about-split-text { grid-column: 1 / -1; }
.footer-brand-col { grid-column: 1 / -1; }
/* validator patch: hero must never crop its headline */
#hero, .hero { overflow: visible !important; }
:where(#hero, .hero) { padding-top: max(var(--header-height, 72px), 72px); }
/* validator patch: keep the hero photo visible, no smothering dark band */
.hero-overlay { background: linear-gradient(to top, rgba(0,0,0,0.66), rgba(0,0,0,0.34) 38%, rgba(0,0,0,0.12) 68%, rgba(0,0,0,0) 100%), linear-gradient(to right, rgba(0,0,0,0.30), rgba(0,0,0,0) 58%) !important; }
