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

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --primary:        #047F55;
  --primary-tint:   rgba(4, 127, 85, 0.12);
  --primary-dark:   #035e3f;
  --accent:         #5EA74E;
  --canvas:         #F4EFE6;
  --canvas-deep:    #EDE7D8;
  --surface:        #FFFFFF;
  --ink:            #1F1B16;
  --ink-mid:        #3d3830;
  --muted:          #7A7268;
  --muted-light:    #a09890;
  --border:         rgba(31, 27, 22, 0.10);
  --border-mid:     rgba(31, 27, 22, 0.16);
  --shadow-card:    0 2px 20px rgba(31, 27, 22, 0.07);
  --shadow-lift:    0 18px 48px -12px rgba(31, 27, 22, 0.18);
  --radius:         12px;
  --radius-sm:      8px;
  --radius-pill:    999px;
  --header-height:  72px;
  --section-py:     clamp(96px, 12vh, 152px);
  --max-w:          1240px;
  --wide-w:         1400px;
  /* mounted-print: sand inner border = canvas color */
  --mount-border:   var(--canvas);
  --mount-width:    12px;
}

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

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

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

/* Universal image cap — no <img> may overflow its container, ever */
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; object-position: center 45%; 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; object-position: center 45%; 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; }

.hero-split { display: grid; grid-template-columns: 60% 40%; min-height: 88vh; gap: 0; }
.hero-split-text {
  background: var(--canvas); padding: clamp(48px, 7vw, 96px);
  display: flex; flex-direction: column; justify-content: center; z-index: 2;
}
.hero-split-photo { position: relative; overflow: hidden; background: transparent; }
.hero-split-photo > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 900px) {
  .hero-split { grid-template-columns: 1fr; min-height: auto; }
  .hero-split-photo { min-height: 60vw; order: -1; }
}

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

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--ink);
}

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); }

p { line-height: 1.7; }

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

strong { font-weight: 600; }
em { font-style: italic; }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }
.wide-container { max-width: var(--wide-w); margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }
.section-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }
.bleed { width: 100%; }

/* ============================================================
   SCROLL PROGRESS
   ============================================================ */
#scrollProgress, #scroll-progress, #scrollBar, div.scroll-progress, div.scroll-bar {
  position: fixed; top: 0; left: 0; height: 3px;
  background: var(--primary); width: 0%; z-index: 9999;
  transition: width 0.1s linear;
}

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

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

.nav-logo { flex: 0 0 auto; }
.nav-logo img { max-height: 44px; max-width: 200px; width: auto; object-fit: contain; }

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

.nav-pages li { list-style: none; }

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

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

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

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-cta .nav-cta-label { display: none; }

  .nav-pages {
    display: none; flex-direction: column;
    position: absolute; top: var(--header-height);
    left: 0; right: 0;
    background: var(--canvas);
    padding: 24px 28px; gap: 4px;
    border-bottom: 1px solid rgba(31, 27, 22, 0.08);
    justify-content: flex-start;
    z-index: 899;
  }
  .nav-pages.open { display: flex; }
  .nav-pages a { padding: 12px 0; font-size: 16px; }
}

/* ============================================================
   SECTION EYEBROW + HEADINGS
   ============================================================ */
.section-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: 16px;
}

.section-eyebrow-line {
  display: block;
  width: 40px; height: 2px;
  background: var(--primary);
  margin-bottom: 20px;
}

.section-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400; line-height: 1.0;
  letter-spacing: -0.02em; color: var(--ink);
  margin-bottom: 20px;
}

.section-sub {
  font-size: 17px; line-height: 1.7;
  color: var(--muted); max-width: 52ch;
  margin-top: 12px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn, .btn-primary, .btn-ghost, .btn-outline, .form-submit {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600; font-size: 15px;
  padding: 16px 30px; border-radius: var(--radius-sm);
  cursor: pointer; border: none; text-decoration: none;
  transition: filter 150ms, transform 150ms, box-shadow 150ms;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.btn:hover, .btn-primary:hover { text-decoration: none; }

.btn-primary {
  background: var(--primary); color: #fff;
}
.btn-primary:hover { filter: brightness(0.92); color: #fff; transform: translateY(-1px); }

.btn-ghost {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.55);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.25); color: #fff; text-decoration: none; }

.btn-outline {
  background: transparent; color: var(--primary);
  border: 1.5px solid var(--primary);
}
.btn-outline:hover { background: var(--primary); color: #fff; text-decoration: none; }

/* ============================================================
   HERO
   ============================================================ */
#hero.hero {
  min-height: 92vh;
  display: flex; align-items: flex-end;
  background: var(--ink);
}

.hero-overlay {
  background: linear-gradient(
    160deg,
    rgba(31, 27, 22, 0.55) 0%,
    rgba(4, 127, 85, 0.35) 100%
  );
}

.hero-inner {
  padding: clamp(48px, 8vh, 96px) clamp(24px, 5vw, 80px);
  max-width: calc(var(--max-w) + 80px);
  margin: 0 auto; width: 100%;
  padding-bottom: clamp(64px, 10vh, 112px);
}

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

.hero-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(72px, 9vw, 132px);
  font-weight: 400; line-height: 0.98;
  letter-spacing: -0.025em;
  color: #fff;
  max-width: 14ch;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.65;
  color: rgba(255,255,255,0.82);
  max-width: 48ch;
  margin-bottom: 36px;
}

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

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

.trust-chip {
  display: inline-flex; align-items: center;
  padding: 7px 14px;
  background: rgba(4, 127, 85, 0.15);
  color: #e8f5ef;
  border-radius: var(--radius-pill);
  font-family: 'Inter Tight', sans-serif;
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  backdrop-filter: blur(6px);
}

@media (max-width: 640px) {
  #hero.hero { min-height: 88vh; }
  .hero-title { font-size: clamp(52px, 13vw, 80px); }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
}

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

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

.trust-badge {
  display: inline-flex; align-items: center;
  padding: 7px 14px;
  background: var(--primary-tint);
  color: var(--primary);
  border-radius: var(--radius-pill);
  font-family: 'Inter Tight', sans-serif;
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
}

/* ============================================================
   MARQUEE STRIP
   ============================================================ */
.marquee-strip {
  overflow: hidden; padding: 14px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--canvas-deep);
  max-height: 64px; position: relative; z-index: 1;
}

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

.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(13px, 1.4vw, 18px);
  line-height: 1.2; color: var(--ink-mid);
  display: flex; align-items: center; gap: 20px;
}

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

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

/* ============================================================
   MOUNTED PRINT (signature boutique effect)
   ============================================================ */
.mounted-print, .mounted-surface {
  border: var(--mount-width) solid var(--mount-border);
  border-radius: var(--radius);
  overflow: hidden;
  display: block;
}

.mounted-print img, .mounted-surface img {
  display: block; width: 100%; height: 100%;
  object-fit: cover;
}

/* In sections with white background, adjust mount border */
.service-feature .mounted-print,
.service-feature .mounted-surface,
.contact-section .mounted-print {
  border-color: var(--surface);
}

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

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

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

.service-tab {
  display: inline-flex; align-items: center;
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  background: transparent;
  border: 1.5px solid var(--border-mid);
  color: var(--ink); cursor: pointer;
  font-family: 'Inter Tight', sans-serif;
  font-size: 14px; font-weight: 600;
  letter-spacing: 0.04em;
  transition: all 200ms;
  white-space: nowrap;
}
.service-tab:hover { border-color: var(--primary); color: var(--primary); }
.service-tab.active {
  background: var(--primary); color: #fff;
  border-color: var(--primary);
}

.services-panels { position: relative; }

.service-panel {
  display: none;
  grid-template-columns: 45% 1fr;
  gap: 48px;
  align-items: start;
  min-height: 480px;
}
.service-panel.active { display: grid; }

.service-panel-img {
  width: 100%; height: 420px;
  border: var(--mount-width) solid var(--canvas);
  border-radius: var(--radius);
  overflow: hidden; flex-shrink: 0;
}
.service-panel-img img {
  width: 100%; height: 100%; object-fit: cover;
  max-height: none;
}

.service-panel-body {
  display: flex; flex-direction: column;
  justify-content: flex-start;
  padding-top: 8px;
}

.service-panel-body h3 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 400; line-height: 1.05;
  letter-spacing: -0.02em; margin-bottom: 20px;
  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 {
  margin-top: 24px; align-self: flex-start;
}

@media (max-width: 900px) {
  .service-panel.active { grid-template-columns: 1fr; }
  .service-panel-img { height: 280px; }
}

/* ============================================================
   GALLERY SECTION (index)
   ============================================================ */
.gallery-section {
  background: var(--surface);
  padding: var(--section-py) 0;
}

.gallery-intro { margin-bottom: 48px; }

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

/* Override the global gallery tile aspect ratio for index */
.gallery-section .gallery-tile {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius);
  border: var(--mount-width) solid var(--surface);
  transition: transform 250ms ease-out;
  position: relative;
}
.gallery-section .gallery-tile:hover { transform: scale(1.02); }
.gallery-section .gallery-tile.gallery-tile-tall {
  grid-row: span 2;
  aspect-ratio: auto;
}
.gallery-section .gallery-tile img {
  width: 100%; height: 100%; object-fit: cover;
  max-height: none;
}

@media (max-width: 640px) {
  .gallery-section .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-section .gallery-tile.gallery-tile-tall { grid-row: auto; aspect-ratio: 4/3; }
}

/* ============================================================
   SERVICE AREAS SECTION
   ============================================================ */
.service-areas-section {
  background: var(--canvas);
  padding: var(--section-py) 0;
}

.areas-intro { margin-bottom: 48px; }

.areas-cloud {
  display: flex; flex-wrap: wrap; gap: 10px;
}

.area-chip, .area-pill {
  display: inline-flex; align-items: center;
  padding: 9px 18px;
  background: var(--primary-tint);
  color: var(--primary);
  border-radius: var(--radius-pill);
  font-family: 'Inter Tight', sans-serif;
  font-size: 14px; font-weight: 600;
  letter-spacing: 0.04em;
  transition: background 150ms;
}
.area-chip:hover, .area-pill:hover { background: rgba(4,127,85,0.2); }

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section {
  background: var(--surface);
  padding: var(--section-py) 0;
}

.faq-intro { margin-bottom: 48px; }

.faq-list { max-width: 760px; }

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

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

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

.faq-answer {
  padding: 0 0 20px;
  font-size: 16px; line-height: 1.7;
  color: var(--muted);
}

/* ============================================================
   TEAM CTA STRIP
   ============================================================ */
.team-cta-strip {
  background: var(--canvas-deep);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
}

.team-cta-inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}

.team-cta-text {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 400; color: var(--ink);
}

.team-cta-inner a.btn-primary { flex-shrink: 0; }

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

.contact-intro { margin-bottom: 48px; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}

/* Contact form */
.contact-form {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 40px;
  border: 1px solid var(--border);
}

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

.form-field, .form-group {
  display: flex; flex-direction: column; gap: 6px;
  margin-bottom: 20px;
}

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

.form-input, input[type="text"], input[type="email"],
input[type="tel"], input[type="phone"],
select, textarea, .form-select, .form-textarea,
form input:not([type="submit"]):not([type="button"]),
form select, form textarea {
  font-family: 'Inter Tight', sans-serif;
  font-size: 15px; font-weight: 450;
  color: var(--ink);
  background: var(--canvas);
  border: 1.5px solid var(--border-mid);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  width: 100%;
  transition: border-color 150ms, box-shadow 150ms;
  -webkit-appearance: none;
  appearance: none;
}
.form-input:focus, form input:focus, form select:focus, form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(4,127,85,0.12);
}

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

.form-submit {
  background: var(--primary); color: #fff;
  width: 100%; justify-content: center;
  padding: 16px; margin-top: 4px;
  font-size: 16px;
}
.form-submit:hover { filter: brightness(0.92); }

.form-note {
  font-size: 13px; color: var(--muted);
  text-align: center; margin-top: 12px;
}

/* Contact info column */
.contact-info-col {
  display: flex; flex-direction: column; gap: 0;
}

.info-block {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.info-block:first-child { padding-top: 0; }
.info-block:last-child { border-bottom: none; }

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

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

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 20px; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: 72px 0 0;
}

.footer-inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

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

.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-brand img { max-height: 48px !important; filter: brightness(0) invert(1); opacity: 0.9; }
.footer-brand-name, .footer-brand-tagline, .footer-tagline {
  font-size: 14px; line-height: 1.6;
  color: rgba(255,255,255,0.55);
}

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

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

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

.footer-contact-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.footer-contact-list li { font-size: 14px; color: rgba(255,255,255,0.65); }

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

.footer-hours-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 6px; }
.footer-hours-list li { font-size: 14px; color: rgba(255,255,255,0.65); }

.footer-socials { display: flex; gap: 12px; margin-top: 8px; }
.footer-socials a { color: rgba(255,255,255,0.5); transition: color 150ms; }
.footer-socials a:hover { color: #fff; text-decoration: none; }
.footer-socials svg { width: 20px; height: 20px; }

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

.footer-bottom-copy, .footer-copy, .footer-bottom span:first-child, .footer-bottom > p:first-child {
  font-size: 13px; color: rgba(255,255,255,0.4);
}

.footer-bottom-creds, .footer-license, .footer-bottom-badges,
.footer-license-badges, .footer-badges {
  display: flex; flex-wrap: wrap; gap: 8px; align-items: center;
}

.footer-badge {
  display: inline-flex; align-items: center;
  padding: 4px 10px;
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius-pill);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.footer-contact-line {
  display: flex; gap: 16px; align-items: center; margin-top: 8px;
}
.footer-contact-line a { color: rgba(255,255,255,0.65); }
.footer-contact-line a:hover { color: #fff; text-decoration: none; }
.footer-contact-line svg { width: 16px; height: 16px; }

.footer-logo { display: inline-block; }
.footer-logo img { max-height: 44px !important; }

.footer-email a, .footer-phone a { color: rgba(255,255,255,0.65); }

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

/* ============================================================
   MOBILE CALL PILL
   ============================================================ */
.mobile-cta-pill, .mobile-cta-sticky, .mobile-sticky-cta, .mobile-cta {
  position: fixed;
  bottom: 18px; right: 18px;
  z-index: 999;
  display: flex;
}

.mobile-cta-pill > a, .mobile-cta-sticky > a,
.mobile-sticky-cta > a, .mobile-cta,
a.mobile-cta-pill {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--primary); color: #fff;
  padding: 14px 22px; border-radius: var(--radius-pill);
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600; font-size: 15px;
  text-decoration: none;
  box-shadow: 0 18px 40px -10px rgba(0,0,0,0.45);
  transition: transform 150ms, filter 150ms;
}
.mobile-cta-pill > a:hover, .mobile-cta-sticky > a:hover,
.mobile-sticky-cta > a:hover, a.mobile-cta-pill:hover {
  transform: translateY(-2px); filter: brightness(0.92);
  text-decoration: none; color: #fff;
}
.mobile-cta-pill svg, .mobile-cta-sticky svg,
.mobile-sticky-cta svg, a.mobile-cta-pill svg {
  width: 20px; height: 20px; flex-shrink: 0;
}

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

/* ============================================================
   PAGE HEADER (sub-pages)
   ============================================================ */
.page-header {
  min-height: 52vh;
  display: flex; align-items: flex-end;
  background: var(--ink);
}

.page-header-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    160deg,
    rgba(31,27,22,0.60) 0%,
    rgba(4,127,85,0.30) 100%
  );
  pointer-events: none;
}

.page-header-inner {
  position: relative; z-index: 2;
  padding: clamp(40px, 6vh, 72px) clamp(24px, 5vw, 80px);
  max-width: calc(var(--max-w) + 80px);
  margin: 0 auto; width: 100%;
}

.page-header-inner h1 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 400; line-height: 0.98;
  letter-spacing: -0.025em; color: #fff;
  max-width: 18ch;
}

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

.page-header-sub {
  font-size: 17px; color: rgba(255,255,255,0.75);
  line-height: 1.65; margin-top: 16px;
  max-width: 48ch;
}

/* ============================================================
   SERVICE FEATURES (services.html alternating sections)
   ============================================================ */
.service-feature {
  padding: var(--section-py) 0;
}
.service-feature:nth-child(odd) { background: var(--canvas); }
.service-feature:nth-child(even) { background: var(--surface); }

.service-feature-inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.service-feature-inner.reverse { direction: rtl; }
.service-feature-inner.reverse > * { direction: ltr; }

.service-feature-photo {
  border: var(--mount-width) solid var(--canvas);
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.service-feature:nth-child(even) .service-feature-photo { border-color: var(--surface); }
.service-feature-photo img {
  width: 100%; height: 100%; object-fit: cover; max-height: none;
}

.service-feature-body { display: flex; flex-direction: column; gap: 16px; }

.service-eyebrow {
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--primary);
}

.service-feature-body h2 {
  font-size: clamp(28px, 3.5vw, 46px);
  margin: 0;
}

.service-desc { font-size: 16px; line-height: 1.7; color: var(--ink-mid); }

.service-bullets {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 8px;
}
.service-bullets li {
  font-size: 15px; color: var(--ink-mid);
  padding-left: 20px; position: relative; line-height: 1.5;
}
.service-bullets li::before {
  content: '';
  position: absolute; left: 0; top: 8px;
  width: 6px; height: 6px;
  border-radius: 50%; background: var(--primary);
}

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

@media (max-width: 900px) {
  .service-feature-inner,
  .service-feature-inner.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--primary);
  padding: clamp(72px, 9vh, 112px) 0;
  position: relative; overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.cta-banner-inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  position: relative; z-index: 1;
  text-align: center;
}

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

.cta-banner-inner h2 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400; color: #fff; line-height: 1.0;
  letter-spacing: -0.02em; margin-bottom: 20px;
}

.cta-banner-sub, .cta-banner-inner > p:not(.cta-banner-eyebrow) {
  font-size: 18px; color: rgba(255,255,255,0.8);
  margin-bottom: 36px; max-width: 52ch; margin-left: auto; margin-right: auto;
}

.cta-banner-phone {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(28px, 4vw, 48px);
  color: #fff; display: block; margin-bottom: 28px;
  text-decoration: none;
}
.cta-banner-phone:hover { text-decoration: none; color: rgba(255,255,255,0.85); }

.cta-banner-actions, .cta-banner-btns, .cta-pair {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}

.cta-banner .btn-primary {
  background: #fff; color: var(--primary);
}
.cta-banner .btn-primary:hover { background: var(--canvas); color: var(--primary); }

.cta-banner .btn-outline, .cta-banner .btn-ghost {
  border-color: rgba(255,255,255,0.5); color: #fff;
}
.cta-banner .btn-outline:hover { background: rgba(255,255,255,0.12); color: #fff; }

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

.about-story-grid {
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: clamp(48px, 6vw, 88px);
  align-items: start;
}

.about-portrait-wrap {
  border: var(--mount-width) solid var(--canvas);
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  position: sticky; top: calc(var(--header-height) + 24px);
}
.about-portrait-wrap img {
  width: 100%; height: 100%; object-fit: cover; max-height: none;
}

.about-story-content { display: flex; flex-direction: column; gap: 24px; }

.about-display-heading {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 400; line-height: 1.05;
  letter-spacing: -0.02em; color: var(--ink);
}

.about-story-body p { font-size: 17px; line-height: 1.72; color: var(--ink-mid); margin-bottom: 16px; }

.about-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.about-chip {
  display: inline-flex; align-items: center;
  padding: 8px 16px;
  background: var(--primary-tint);
  color: var(--primary);
  border-radius: var(--radius-pill);
  font-family: 'Inter Tight', sans-serif;
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.06em;
}

@media (max-width: 900px) {
  .about-story-grid { grid-template-columns: 1fr; }
  .about-portrait-wrap { position: static; aspect-ratio: 16/9; }
}

/* ============================================================
   VALUES SECTION
   ============================================================ */
.values-section {
  background: var(--surface);
  padding: var(--section-py) 0;
}

.values-inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

.values-inner > h2 {
  margin-bottom: 12px;
}

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

.value-card {
  background: var(--canvas);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--border);
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}
.value-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }

.value-icon {
  width: 32px; height: 32px;
  color: var(--primary); margin-bottom: 16px;
}

.value-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 20px; font-weight: 400;
  color: var(--ink); margin-bottom: 10px;
}

.value-body { font-size: 15px; line-height: 1.65; color: var(--muted); }

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

/* ============================================================
   TIMELINE SECTION
   ============================================================ */
.timeline-section {
  background: var(--canvas);
  padding: var(--section-py) 0;
}

.timeline-section > h2 {
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  margin-bottom: 48px;
}

.timeline-section .section-eyebrow {
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: block; margin-bottom: 16px;
}

.timeline-track {
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

.timeline-track::before {
  content: '';
  position: absolute;
  top: 20px; left: calc(clamp(20px, 4vw, 48px) + 20px);
  right: clamp(20px, 4vw, 48px);
  height: 2px;
  background: var(--border-mid);
  z-index: 0;
}

.timeline-step {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; gap: 8px;
}

.timeline-dot {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--canvas);
  border: 2px solid var(--border-mid);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
}

.timeline-dot-inner {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--primary);
}

.timeline-year {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 24px; font-weight: 400;
  color: var(--primary);
}

.timeline-label {
  font-family: 'Inter Tight', sans-serif;
  font-size: 14px; font-weight: 600;
  color: var(--ink);
}

.timeline-desc { font-size: 14px; line-height: 1.6; color: var(--muted); }

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

/* ============================================================
   CREW SECTION
   ============================================================ */
.crew-section {
  background: var(--surface);
  padding: var(--section-py) 0;
}

.crew-inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

.crew-inner > h2 { margin-bottom: 12px; }

.crew-photo-wrap {
  width: 100%; max-width: 780px;
  aspect-ratio: 16/9; overflow: hidden;
  border-radius: var(--radius);
  border: var(--mount-width) solid var(--surface);
  margin: 40px 0 20px;
}
.crew-photo-wrap img { width: 100%; height: 100%; object-fit: cover; max-height: none; }

.crew-caption {
  font-size: 14px; color: var(--muted);
  font-style: italic; margin-top: 12px;
}

/* ============================================================
   CREDENTIALS SECTION
   ============================================================ */
.credentials-section {
  background: var(--canvas);
  padding: var(--section-py) 0;
}

.credentials-inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

.credentials-inner > h2 { margin-bottom: 12px; }

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

.credential-badge {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 6px;
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}
.credential-badge:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }

.credential-label {
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--primary);
}

.credential-value {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 22px; font-weight: 400;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}

.credential-note { font-size: 13px; line-height: 1.55; color: var(--muted); }

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

/* ============================================================
   GALLERY PAGE (gallery.html bento grid)
   ============================================================ */
.gallery-inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

.gallery-header {
  display: flex; align-items: flex-end;
  justify-content: space-between; gap: 24px;
  margin-bottom: 32px; flex-wrap: wrap;
}

.gallery-headline-block h2 { font-size: clamp(32px, 4.5vw, 56px); }

.gallery-count-badge {
  display: flex; flex-direction: column; align-items: flex-end; gap: 2px;
}

.count-num {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 48px; line-height: 1; color: var(--primary);
}

.count-label {
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted);
}

.gallery-filters {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 32px;
}

.filter-pill {
  display: inline-flex; align-items: center;
  padding: 8px 16px; border-radius: var(--radius-pill);
  background: transparent; border: 1.5px solid var(--border-mid);
  color: var(--ink-mid); cursor: pointer;
  font-family: 'Inter Tight', sans-serif;
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.04em;
  transition: all 200ms;
}
.filter-pill:hover { border-color: var(--primary); color: var(--primary); }
.filter-pill.active { background: var(--primary); color: #fff; border-color: var(--primary); }

/* Bento grid for gallery page */
#galleryGrid.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 16px;
}

/* Bento tiles — override global aspect-ratio for the mixed tile types */
#galleryGrid .gallery-tile {
  aspect-ratio: auto;
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 250ms ease-out;
}

#galleryGrid .gallery-tile.feature-tile {
  grid-column: span 2;
  grid-row: span 2;
}

#galleryGrid .stat-tile,
#galleryGrid .quote-tile,
#galleryGrid .service-tile,
#galleryGrid .guarantee-tile,
#galleryGrid .location-tile,
#galleryGrid .brand-strip-tile {
  grid-column: auto; grid-row: auto;
}

.gallery-tile-photo {
  position: relative; overflow: hidden;
  aspect-ratio: 4/3;
}
.gallery-tile-photo img { width: 100%; height: 100%; object-fit: cover; max-height: none; }

.gallery-tile-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(31,27,22,0.7) 0%, transparent 50%);
  opacity: 0; transition: opacity 250ms;
  display: flex; align-items: flex-end;
}
.gallery-tile:hover .gallery-tile-overlay { opacity: 1; }
.gallery-tile-overlay-text { padding: 20px; color: #fff; }

.gallery-tile-body { padding: 20px; background: var(--surface); }
.gallery-tile-body h3 { font-size: 18px; margin-bottom: 8px; }

.tile-tag-row { display: flex; gap: 8px; align-items: center; margin-bottom: 8px; }
.tile-category-tag {
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--primary);
}
.tile-num { font-size: 11px; color: var(--muted); }

.tile-meta { display: flex; gap: 12px; align-items: center; margin-top: 10px; }
.tile-meta-item {
  display: flex; align-items: center; gap: 4px;
  font-size: 12px; color: var(--muted);
}
.tile-meta-item svg { width: 14px; height: 14px; }

/* Bento specialty tiles */
.stat-tile, .quote-tile, .service-tile, .guarantee-tile,
.location-tile, .brand-strip-tile {
  background: var(--canvas); padding: 28px;
  display: flex; flex-direction: column; gap: 8px;
  min-height: 180px; justify-content: center;
}

.stat-tile-num {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(36px, 5vw, 56px); color: var(--primary); line-height: 1;
}
.stat-tile-label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted);
}
.stat-tile-sub { font-size: 13px; color: var(--muted); }

.qt-stars { display: flex; gap: 3px; }
.qt-stars svg { width: 16px; height: 16px; color: #f59e0b; }
.qt-mark { font-family: 'DM Serif Display', serif; font-size: 48px; color: var(--primary); line-height: 0.6; margin: 8px 0; }
.qt-text { font-size: 15px; line-height: 1.55; color: var(--ink-mid); font-style: italic; }
.qt-author { font-size: 12px; font-weight: 600; color: var(--muted); margin-top: 8px; }

.st-label { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--primary); }
.st-title { font-family: 'DM Serif Display', serif; font-size: 22px; line-height: 1.05; color: var(--ink); }
.st-arrow { display: inline-flex; align-items: center; gap: 8px; color: var(--primary); font-size: 14px; font-weight: 600; margin-top: 12px; text-decoration: none; }
.st-arrow svg { width: 18px; height: 18px; }
.st-arrow:hover { text-decoration: none; }

.gt-icon svg { width: 28px; height: 28px; color: var(--primary); }
.gt-label { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.gt-title { font-family: 'DM Serif Display', serif; font-size: 20px; line-height: 1.05; color: var(--ink); }
.gt-sub { font-size: 13px; color: var(--muted); }

.lt-label { display: flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--primary); margin-bottom: 8px; }
.lt-label svg { width: 16px; height: 16px; }
.lt-areas { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 4px; }
.lt-areas li { font-size: 14px; color: var(--ink-mid); }

.bst-headline { font-family: 'DM Serif Display', serif; font-size: 22px; color: var(--ink); line-height: 1.1; }
.bst-headline em { color: var(--primary); font-style: italic; }
.bst-cta { display: inline-flex; align-items: center; gap: 8px; color: var(--primary); font-size: 14px; font-weight: 600; text-decoration: none; margin-top: 16px; }
.bst-cta svg { width: 18px; height: 18px; }

@media (max-width: 900px) {
  #galleryGrid.gallery-grid { grid-template-columns: repeat(2, 1fr); }
  #galleryGrid .gallery-tile.feature-tile { grid-column: span 2; grid-row: auto; }
}
@media (max-width: 640px) {
  #galleryGrid.gallery-grid { grid-template-columns: 1fr; }
  #galleryGrid .gallery-tile.feature-tile { grid-column: auto; }
}

/* ============================================================
   CONTACT PAGE (contact.html split layout)
   ============================================================ */
.contact-split {
  max-width: var(--max-w); margin: 0 auto;
  padding: var(--section-py) clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 64px;
  align-items: start;
}

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

.contact-form-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400; line-height: 1.0; margin-bottom: 12px;
}

.contact-form-sub { font-size: 16px; color: var(--muted); margin-bottom: 32px; }

.contact-form-side .section-eyebrow { margin-bottom: 8px; }

.contact-info-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 36px;
  border: 1px solid var(--border);
  position: sticky; top: calc(var(--header-height) + 24px);
}

.contact-info-card h3 {
  font-size: clamp(20px, 2.5vw, 28px); margin-bottom: 4px;
}

.info-card-label {
  font-size: 13px; color: var(--muted);
  margin-bottom: 24px;
}

.info-block { padding: 16px 0; border-bottom: 1px solid var(--border); }
.info-block:last-child { border-bottom: none; }

.info-item { display: flex; align-items: flex-start; gap: 12px; }
.info-icon svg { width: 18px; height: 18px; color: var(--primary); flex-shrink: 0; margin-top: 2px; }
.info-item-label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 4px;
}
.info-item-value { font-size: 15px; color: var(--ink); line-height: 1.5; }
.info-item-value a { color: var(--primary); }

.info-divider { height: 1px; background: var(--border); margin: 4px 0; }

.service-area-pills { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }

.info-card-guarantee {
  background: var(--primary-tint);
  border-radius: var(--radius-sm);
  padding: 16px; margin-top: 20px;
}
.guarantee-label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--primary); margin-bottom: 4px;
}
.guarantee-text { font-size: 14px; line-height: 1.55; color: var(--ink-mid); }

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

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

.stat-num {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 400; line-height: 1; color: var(--primary);
}

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

/* ============================================================
   REVIEW CARDS
   ============================================================ */
.review-card {
  padding: 28px; border-radius: 12px;
  background: rgba(31,27,22,0.02);
  border: 1px solid var(--border);
}
.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; }

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

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

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

.stagger > * {
  opacity: 0; transform: translateY(20px);
  transition: opacity 500ms ease-out, transform 500ms ease-out;
}
.stagger.visible > *:nth-child(1)  { opacity: 1; transform: none; transition-delay: 0ms; }
.stagger.visible > *:nth-child(2)  { opacity: 1; transform: none; transition-delay: 80ms; }
.stagger.visible > *:nth-child(3)  { opacity: 1; transform: none; transition-delay: 160ms; }
.stagger.visible > *:nth-child(4)  { opacity: 1; transform: none; transition-delay: 240ms; }
.stagger.visible > *:nth-child(5)  { opacity: 1; transform: none; transition-delay: 320ms; }
.stagger.visible > *:nth-child(6)  { opacity: 1; transform: none; transition-delay: 400ms; }
.stagger.visible > *:nth-child(7)  { opacity: 1; transform: none; transition-delay: 480ms; }
.stagger.visible > *:nth-child(8)  { opacity: 1; transform: none; transition-delay: 560ms; }

/* ============================================================
   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 UTILITIES
   ============================================================ */
.reverse { /* layout order flip — flex/grid only, never transform */ }

.info-block-label + .info-block-value { display: block; }

/* SVG caps — any unsized svg must never inflate */
svg { display: block; }
.faq-chevron { width: 20px; height: 20px; flex-shrink: 0; }
.value-icon  { width: 32px; height: 32px; }
.info-icon svg, .footer-contact-item svg { width: 18px; height: 18px; }

/* Grain overlay for the hero area */
#hero::after {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 128px 128px;
  opacity: 0.4;
}

/* Supergraphic brand wash */
.services-section::before,
.faq-section::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 40%; height: 40%;
  background: radial-gradient(circle at top right, rgba(4,127,85,0.06), transparent 70%);
  pointer-events: none;
}
.services-section { position: relative; }
.faq-section { position: relative; }

/* ============================================================
   RESPONSIVE OVERRIDES
   ============================================================ */
@media (max-width: 1200px) {
  .contact-grid { grid-template-columns: 1fr 320px; }
}

@media (max-width: 900px) {
  .service-panel.active { min-height: auto; }
  .cta-banner-actions, .cta-banner-btns, .cta-pair { flex-direction: column; align-items: center; }
  .team-cta-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .services-tabs { gap: 6px; }
  .service-tab { font-size: 13px; padding: 7px 14px; }
  .hero-ctas .btn, .hero-ctas .btn-ghost { width: 100%; justify-content: center; }
  .credentials-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 24px 16px; }
}


/* === Validator patches (auto-applied) === */
/* validator patch: grid children without placement → span full row */
.mounted-surface { grid-column: 1 / -1; }
.form-field { grid-column: 1 / -1; }
.footer-brand { grid-column: 1 / -1; }
.footer-col { grid-column: 1 / -1; }
.form-group { 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; }
