@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:        #4d5131;
  --primary-tint:   rgba(77,81,49,0.12);
  --primary-dark:   #3a3d24;
  --accent:         #2E4A1E;
  --canvas:         #F4EFE6;
  --surface:        #FFFFFF;
  --ink:            #1F1B16;
  --ink-mid:        #3d3830;
  --muted:          #7A7268;
  --border:         rgba(31,27,22,0.10);
  --sand-border:    #F4EFE6;
  --header-height:  72px;

  /* mounted-print inner border */
  --mount-border:   12px solid #F4EFE6;

  /* radius */
  --radius:         12px;
  --radius-pill:    999px;

  /* section rhythm */
  --section-py:     clamp(96px, 12vh, 152px);
  --content-max:    1240px;
}

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

/* ============================================================
   RESET + GLOBAL
   ============================================================ */
*, *::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 {
  background: var(--canvas);
  color: var(--ink);
  font-family: 'Inter Tight', system-ui, sans-serif;
  font-weight: 450;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
}

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

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

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

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

.hero { position: relative; overflow: hidden; }
.hero-bg, .hero > img:first-of-type {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; 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,
.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; }
}

/* Headings inside anchors inherit heading style */
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, h5 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--ink);
}

h1 { font-size: clamp(48px, 7vw, 120px); }
h2 { font-size: clamp(36px, 5vw, 72px); }
h3 { font-size: clamp(22px, 2.8vw, 36px); }
h4 { font-size: clamp(18px, 1.8vw, 24px); }

p { line-height: 1.68; }

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

ul { list-style: none; }

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

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

.section-inner {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  padding-block: var(--section-py);
}

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

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Inter Tight', system-ui, sans-serif;
  font-weight: 600; font-size: 15px;
  padding: 16px 30px;
  border-radius: 10px;
  border: 2px solid transparent;
  cursor: pointer; text-decoration: none;
  white-space: nowrap; transition: all 200ms ease-out;
  line-height: 1.2;
}

.btn-primary {
  background: var(--primary); color: var(--canvas);
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-dark); border-color: var(--primary-dark);
  color: var(--canvas); text-decoration: none;
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent; color: var(--ink);
  border-color: var(--border);
}
.btn-ghost:hover {
  border-color: var(--primary); color: var(--primary);
  text-decoration: none; transform: translateY(-1px);
}

.btn-ghost-light {
  background: transparent; color: var(--canvas);
  border-color: rgba(244,239,230,0.5);
}
.btn-ghost-light:hover {
  background: rgba(244,239,230,0.15); color: var(--canvas);
  border-color: var(--canvas); text-decoration: none;
}

.btn-outline-light {
  background: transparent; color: var(--canvas);
  border-color: rgba(244,239,230,0.6);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.1); text-decoration: none;
}

.btn-sand {
  background: var(--canvas); color: var(--primary);
  border-color: var(--canvas);
}
.btn-sand:hover {
  background: #ede7db; text-decoration: none;
}

.btn-phone {
  background: var(--primary-tint); color: var(--primary);
  border-color: transparent;
}
.btn-phone svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-phone:hover { background: rgba(77,81,49,0.2); text-decoration: none; }

.btn-full { width: 100%; justify-content: center; }

.cta-pair {
  display: flex; flex-wrap: wrap; gap: 12px; align-items: center;
}

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

.trust-pill svg, .area-pill svg { width: 14px; height: 14px; flex-shrink: 0; }

.pill {
  display: inline-block;
  background: var(--primary-tint);
  color: var(--primary);
  font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.09em;
  padding: 5px 14px; border-radius: var(--radius-pill);
}

.pill-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }

.filter-pill {
  display: inline-block;
  background: transparent;
  color: var(--muted); border: 1px solid var(--border);
  font-size: 13px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.07em;
  padding: 6px 16px; border-radius: var(--radius-pill);
  cursor: pointer; transition: all 180ms;
}
.filter-pill.active, .filter-pill:hover {
  background: var(--primary); color: var(--canvas); border-color: var(--primary);
}

/* ============================================================
   EYEBROWS
   ============================================================ */
.eyebrow, .section-eyebrow, .page-eyebrow, .page-header-eyebrow,
.service-eyebrow, .gallery-eyebrow, .cta-banner-eyebrow {
  display: block;
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--primary);
  margin-bottom: 14px;
  position: relative;
  padding-bottom: 10px;
}
.eyebrow::after, .section-eyebrow::after, .page-eyebrow::after {
  content: '';
  display: block; position: absolute; bottom: 0; left: 0;
  width: 32px; height: 2px;
  background: var(--primary);
}
.eyebrow-light { color: rgba(244,239,230,0.8); }
.eyebrow-light::after { background: rgba(244,239,230,0.5); }

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

/* ============================================================
   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-inline: auto;
  padding-inline: 28px;
  display: flex; align-items: center; gap: 32px;
}

.nav-logo { flex: 0 0 auto; display: flex; align-items: center; }
.nav-logo img { max-height: 44px; max-width: 180px; }

.nav-pages {
  flex: 1; display: flex; justify-content: center;
}
.nav-pages ul {
  display: flex; align-items: center; gap: 28px;
  list-style: none; padding: 0; margin: 0;
}
.nav-pages a {
  display: inline-block; padding: 6px 0;
  font-size: 15px; font-weight: 500;
  color: var(--ink); text-decoration: none;
  transition: color 150ms;
}
.nav-pages a:hover { color: var(--primary); text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 6px; }
.nav-pages a[aria-current="page"] {
  color: var(--primary);
  border-bottom: 2px solid var(--primary);
}

.nav-cta {
  flex: 0 0 auto;
  background: var(--primary); color: var(--canvas);
  padding: 10px 20px; border-radius: var(--radius-pill);
  font-weight: 600; font-size: 14px;
  text-decoration: none; white-space: nowrap;
  transition: filter 200ms; display: flex; align-items: center; gap: 8px;
}
.nav-cta:hover { filter: brightness(0.92); text-decoration: none; color: var(--canvas); }
.nav-cta svg { width: 18px; height: 18px; flex-shrink: 0; }
.nav-cta span.nav-cta-label { /* shown desktop */ }

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

@media (max-width: 899px) {
  .nav-toggle { display: flex; margin-left: auto; }
  .nav-cta .nav-cta-label { display: none; }
  .nav-pages {
    display: none; flex-direction: column;
    position: absolute; top: 60px; left: 0; right: 0;
    background: var(--canvas);
    padding: 24px; gap: 8px;
    border-bottom: 1px solid rgba(31,27,22,0.08);
    z-index: 800;
  }
  .nav-pages.open { display: flex; }
  .nav-pages ul { flex-direction: column; gap: 8px; align-items: flex-start; }
  .nav-pages a { font-size: 18px; padding: 8px 0; }
}

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

.hero > img:first-of-type, .hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 35%; z-index: 0;
}

.hero-overlay {
  background: linear-gradient(
    160deg,
    rgba(31,27,22,0.18) 0%,
    rgba(31,27,22,0.55) 55%,
    rgba(46,74,30,0.45) 100%
  );
}

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

.hero-eyebrow {
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: rgba(244,239,230,0.75);
  margin-bottom: 20px;
}
.hero-eyebrow::after { display: none; }

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

.hero-sub {
  font-size: clamp(16px, 1.6vw, 19px);
  color: rgba(244,239,230,0.85);
  max-width: 48ch; line-height: 1.6;
  margin-bottom: 32px;
}

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

.hero-trust-chips {
  display: flex; flex-wrap: wrap; gap: 10px;
  list-style: none; padding: 0; margin: 0;
}
.hero-trust-chips .trust-chip {
  background: rgba(77,81,49,0.22);
  color: rgba(244,239,230,0.92);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(244,239,230,0.15);
}

@media (max-width: 640px) {
  #hero.hero { min-height: 100svh; }
  .hero-title, .hero-inner h1 { font-size: clamp(52px, 13vw, 80px); }
}

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

.trust-strip-inner {
  max-width: var(--content-max);
  margin-inline: auto;
  display: flex; flex-wrap: wrap; gap: 10px; align-items: center;
  justify-content: center;
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  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;
}

.marquee: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);
}

.marquee-sep {
  color: var(--primary);
  font-size: clamp(13px, 1.4vw, 18px);
  line-height: 1.2;
}

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

/* ============================================================
   MOUNTED PRINT — the brand-defining detail
   ============================================================ */
.mounted-print, .mounted-photo, .service-panel-photo {
  position: relative;
}

.mounted-print img, .mounted-photo img {
  border: var(--mount-border);
  border-radius: var(--radius);
  display: block; width: 100%;
  object-fit: cover;
}

.mounted-print-tall {
  max-width: 520px;
}
.mounted-print-tall img {
  aspect-ratio: 4 / 5;
  height: auto; max-height: none;
}

.mounted-print-square img {
  aspect-ratio: 1 / 1;
}

/* Service panel photo also gets the mount treatment */
.service-panel-photo img {
  border: var(--mount-border);
  border-radius: var(--radius);
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  max-height: none;
}

/* ============================================================
   SERVICES (tabbed panel — index.html)
   ============================================================ */
.services {
  background: var(--surface);
  padding-block: var(--section-py);
}

.services .section-inner {
  padding-block: 0;
}

.services .section-inner > h2 {
  font-size: clamp(36px, 4.5vw, 60px);
  max-width: 20ch;
  margin-bottom: 10px;
}

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

.service-tab {
  font-family: 'Inter Tight', sans-serif;
  font-size: 13px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
  padding: 8px 18px; border-radius: var(--radius-pill);
  border: 1.5px solid var(--border);
  background: transparent; color: var(--muted);
  cursor: pointer; transition: all 180ms; white-space: nowrap;
}
.service-tab:hover { border-color: var(--primary); color: var(--primary); }
.service-tab.active {
  background: var(--primary); color: var(--canvas);
  border-color: var(--primary);
}

.services-panels { min-height: 480px; }

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

.service-panel-photo {
  border-radius: var(--radius);
  overflow: hidden;
  height: 440px;
  flex-shrink: 0;
}

.service-panel-body {
  display: flex; flex-direction: column;
  justify-content: center; gap: 16px;
  padding-block: 8px;
}

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

.service-panel-body h3 {
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.05; margin-bottom: 8px;
}

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

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

.service-panel-title { /* alias */ }

@media (max-width: 900px) {
  .service-panel { grid-template-columns: 1fr; gap: 24px; }
  .service-panel-photo { height: 260px; }
}

/* ============================================================
   SERVICES DETAIL (services.html)
   ============================================================ */
.services-detail {
  padding-block: var(--section-py);
}

.services-intro {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  padding-bottom: 48px;
}

.services-intro h2 {
  font-size: clamp(40px, 5vw, 64px);
  max-width: 22ch; margin-bottom: 16px;
}

.services-intro-body {
  font-size: 18px; color: var(--muted);
  max-width: 56ch; line-height: 1.65;
}

.service-block {
  padding-block: clamp(64px, 8vh, 96px);
  border-top: 1px solid var(--border);
}

.service-block.on-surface { background: var(--surface); }

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

/* .flip swaps layout order without mirroring */
.service-block.flip .service-block-inner {
  direction: rtl;
}
.service-block.flip .service-block-inner > * {
  direction: ltr;
}

.service-photo-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: var(--mount-border);
}

.service-photo-wrap img {
  width: 100%; height: 100%;
  object-fit: cover; border: none;
  max-height: none;
}

.service-content {
  display: flex; flex-direction: column; gap: 12px;
}

.service-index-num {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(48px, 6vw, 80px);
  color: var(--primary-tint);
  line-height: 1; display: block;
  margin-bottom: -8px;
}

.service-content h2 {
  font-size: clamp(28px, 3vw, 44px); line-height: 1.05;
}

.service-content .service-eyebrow { margin-bottom: 0; padding-bottom: 0; }
.service-content .service-eyebrow::after { display: none; }

.service-desc { color: var(--ink-mid); line-height: 1.68; }

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

@media (max-width: 900px) {
  .service-block-inner { grid-template-columns: 1fr; gap: 28px; }
  .service-block.flip .service-block-inner { direction: ltr; }
  .service-photo-wrap { order: -1; }
}

/* ============================================================
   GALLERY (index.html snippet)
   ============================================================ */
.gallery {
  background: var(--canvas);
}

.gallery-feature {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px; align-items: end;
  margin-top: 16px;
}

.gallery-feature .mounted-photo {
  overflow: hidden;
  border-radius: var(--radius);
  border: var(--mount-border);
}

.gallery-feature .mounted-photo img {
  aspect-ratio: 16 / 9;
  width: 100%; height: 100%;
  object-fit: cover;
  border: none; max-height: none;
}

.gallery-cta-block {
  padding: 32px;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.gallery-eyebrow { font-family: 'Inter Tight', sans-serif; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: var(--primary); margin-bottom: 10px; }
.gallery-headline { font-family: 'DM Serif Display', serif; font-size: clamp(24px, 2.5vw, 36px); line-height: 1.1; margin-bottom: 20px; }

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

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

.gallery-full-inner {
  max-width: 1320px; margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
}

.gallery-section-header {
  margin-bottom: 32px;
}
.gallery-section-header h2 {
  font-size: clamp(40px, 5vw, 68px); line-height: 1.0;
}
.gallery-section-header .section-eyebrow { margin-bottom: 12px; }

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

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

.gallery-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;
}
.gallery-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -16px rgba(31,27,22,0.18);
}

.gallery-card.featured {
  grid-column: span 2;
}

.gallery-photo {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: var(--mount-border);
  border-bottom: none;
}
.gallery-card.featured .gallery-photo { aspect-ratio: 16 / 7; }

.gallery-photo img {
  width: 100%; height: 100%; object-fit: cover; border: none; max-height: none;
  transition: transform 400ms ease-out;
}
.gallery-card:hover .gallery-photo img { transform: scale(1.03); }

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

.gallery-card-meta {
  display: flex; align-items: center; gap: 12px; margin-bottom: 8px;
}

.gallery-tag {
  font-size: 11px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--primary);
  background: var(--primary-tint); padding: 3px 10px; border-radius: var(--radius-pill);
}

.gallery-location {
  font-size: 12px; color: var(--muted);
  display: flex; align-items: center; gap: 4px;
}
.gallery-location svg { width: 12px; height: 12px; }

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

@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-card.featured { grid-column: span 2; }
}

@media (max-width: 640px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-card.featured { grid-column: span 1; }
}

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

.service-areas .section-inner, .service-areas-section .service-areas-wrap {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  padding-block: var(--section-py);
}

.service-areas-inner {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  padding-block: var(--section-py);
}

.service-areas .section-inner > h2,
.service-areas-title {
  font-size: clamp(36px, 4vw, 56px);
  margin-bottom: 16px;
}

.areas-sub, .service-areas-sub, .areas-note {
  color: var(--muted); font-size: 17px; line-height: 1.6;
  max-width: 52ch; margin-bottom: 32px;
}

.areas-cloud, .areas-pill-cloud, .area-pills, .area-chips {
  display: flex; flex-wrap: wrap; gap: 10px;
}

.service-areas-head {
  display: flex; flex-direction: column; gap: 0;
  margin-bottom: 32px;
}
.service-areas-head .section-eyebrow { margin-bottom: 8px; }

.service-areas-block { padding-block: var(--section-py); }

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

.faq-list {
  margin-top: 32px;
  border-top: 1px solid var(--border);
}

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

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

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

.contact .section-inner > .contact-grid,
.contact-section .contact-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: clamp(48px, 6vw, 80px);
  align-items: start;
}

.contact-form-col h2 {
  font-size: clamp(32px, 3.5vw, 52px); margin-bottom: 8px;
}
.contact-form-col .section-eyebrow { margin-bottom: 16px; }

.contact-section {
  background: var(--canvas);
  padding-block: var(--section-py);
}
.contact-section .contact-grid {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: clamp(48px, 6vw, 80px);
  align-items: start;
}

/* ============================================================
   FORMS
   ============================================================ */
.contact-form, form.contact-form {
  display: flex; flex-direction: column; gap: 20px; margin-top: 28px;
}

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

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

.form-field label, .form-group label {
  font-size: 13px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.07em;
  color: var(--muted);
}

.form-field input, .form-field textarea,
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  font-family: 'Inter Tight', sans-serif;
  font-size: 16px;
  transition: border-color 180ms;
  outline: none;
}
.form-field input:focus, .form-field textarea:focus,
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--primary);
}

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

.form-submit {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--primary); color: var(--canvas);
  font-family: 'Inter Tight', sans-serif;
  font-size: 15px; font-weight: 600;
  padding: 16px 32px; border-radius: 10px;
  border: none; cursor: pointer;
  transition: background 200ms, transform 200ms;
  width: 100%;
}
.form-submit:hover { background: var(--primary-dark); transform: translateY(-1px); }
.form-submit svg { width: 18px; height: 18px; flex-shrink: 0; }

.form-intro { color: var(--muted); font-size: 15px; margin-bottom: 4px; }

/* ============================================================
   CONTACT INFO (index + contact pages)
   ============================================================ */
.contact-info-col, .contact-info-block {
  display: flex; flex-direction: column; gap: 0;
}

.contact-info-col {
  gap: 32px; padding-top: 8px;
}

.contact-info-block {
  gap: 6px; padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0;
}
.contact-info-block:last-of-type { border-bottom: none; }

.contact-info-label, .info-section-label {
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--muted); margin-bottom: 4px;
}

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

.contact-trust-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }

.big-phone, .contact-phone, .cta-phone, .cta-phone-big {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(24px, 3vw, 40px);
  color: var(--primary); line-height: 1.1;
  text-decoration: none;
  display: block;
}
.big-phone:hover, .contact-phone:hover { text-decoration: underline; text-underline-offset: 4px; }

.info-block { margin-bottom: 28px; }
.info-contact-link {
  display: flex; align-items: center; gap: 10px;
  font-size: 17px; font-weight: 600; color: var(--ink);
}
.info-contact-link svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--primary); }
.info-contact-link:hover { color: var(--primary); }
.info-address { color: var(--ink-mid); line-height: 1.6; }
.phone-note { font-size: 13px; color: var(--muted); margin-top: 4px; }

.guarantee-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600; color: var(--primary);
  margin-bottom: 8px;
}
.guarantee-badge svg { width: 20px; height: 20px; color: var(--primary); flex-shrink: 0; }

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

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

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

.page-header-inner h1 {
  font-size: clamp(48px, 7vw, 96px); color: var(--canvas);
  max-width: 18ch; line-height: 1.0;
}

.page-header-eyebrow {
  display: block; font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: rgba(244,239,230,0.7); margin-bottom: 14px;
}
.page-header-eyebrow::after { display: none; }

.page-header-sub, .page-eyebrow {
  font-size: 16px; color: rgba(244,239,230,0.75);
  max-width: 52ch; margin-top: 12px; line-height: 1.6;
}
.page-eyebrow {
  font-size: 12px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.12em; margin-top: 0; margin-bottom: 10px;
}

/* ============================================================
   ABOUT (about.html)
   ============================================================ */
.about-wrap {
  max-width: var(--content-max); margin-inline: auto;
  padding: var(--section-py) clamp(20px, 4vw, 48px);
}

.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 72px);
  align-items: start;
}

.about-text-col {
  display: flex; flex-direction: column; gap: 0;
  padding-top: 24px;
}

.about-text-col h2 {
  font-size: clamp(32px, 3.5vw, 52px); margin-bottom: 20px;
}

.about-text-col .eyebrow { margin-bottom: 16px; }

.about-body-text p { color: var(--ink-mid); line-height: 1.7; margin-bottom: 16px; }

.about-display {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.15; margin-bottom: 20px;
}

@media (max-width: 900px) {
  .about-split { grid-template-columns: 1fr; }
  .mounted-print-tall { max-width: 100%; }
}

/* ============================================================
   FOUNDER STORY
   ============================================================ */
.founder-section {
  background: var(--surface);
  padding-block: var(--section-py);
}

.founder-wrap {
  max-width: var(--content-max); margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: clamp(40px, 6vw, 72px);
  align-items: start;
}

.founder-portrait-col { flex-shrink: 0; }

.founder-story-col h2 {
  font-size: clamp(32px, 3.5vw, 52px); margin-bottom: 20px;
}
.founder-story-col .eyebrow { margin-bottom: 16px; }

.founder-copy p { color: var(--ink-mid); line-height: 1.7; margin-bottom: 16px; }
.founder-headline { font-family: 'DM Serif Display', serif; font-size: clamp(24px, 2.5vw, 36px); margin-bottom: 12px; }
.founder-copy { /* container */ }
.crew-headline, .founder-copy h3 { font-size: clamp(22px, 2.2vw, 32px); margin-bottom: 10px; }

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

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

.values-section .section-header {
  max-width: var(--content-max); margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  margin-bottom: 48px;
}
.values-section .section-header h2 {
  font-size: clamp(36px, 4vw, 56px);
}

.values-grid {
  max-width: var(--content-max); margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.value-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  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.12);
}

.value-numeral {
  font-family: 'DM Serif Display', serif;
  font-size: 48px; color: var(--primary-tint);
  line-height: 1; margin-bottom: 8px;
}

.value-title {
  font-family: 'Inter Tight', sans-serif;
  font-size: 16px; font-weight: 700;
  color: var(--ink); margin-bottom: 8px;
}

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

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

/* ============================================================
   TIMELINE
   ============================================================ */
.timeline-section {
  background: var(--surface);
  padding-block: var(--section-py);
}

.timeline-wrap {
  max-width: var(--content-max); margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
}

.timeline-section .section-header { margin-bottom: 48px; }
.timeline-section .section-header h2 { font-size: clamp(36px, 4vw, 56px); }

.timeline-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.timeline-steps::before {
  content: '';
  position: absolute; top: 22px; left: 20px; right: 20px; height: 2px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-tint) 100%);
  z-index: 0;
}

.timeline-step {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; gap: 10px;
  padding-top: 0;
}

.timeline-dot {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--canvas); border: 3px solid var(--primary);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px; flex-shrink: 0;
}
.timeline-dot span {
  font-family: 'Inter Tight', sans-serif;
  font-size: 13px; font-weight: 700; color: var(--primary);
}

.timeline-step h3 { font-size: clamp(18px, 1.8vw, 24px); margin-bottom: 4px; }
.timeline-milestone {
  font-size: 12px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--primary);
}
.timeline-desc { font-size: 15px; color: var(--muted); line-height: 1.6; }
.timeline-title { /* alias for h3 siblings */ }

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

/* ============================================================
   CREW STRIP
   ============================================================ */
.crew-strip {
  background: var(--primary);
  padding: clamp(56px, 7vh, 88px) clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
  max-width: 100%;
}

.crew-copy {
  display: flex; flex-direction: column; gap: 0;
}
.crew-copy .eyebrow { color: rgba(244,239,230,0.65); }
.crew-copy .eyebrow::after { background: rgba(244,239,230,0.4); }
.crew-copy h2 { color: var(--canvas); font-size: clamp(32px, 4vw, 52px); margin-bottom: 16px; }
.crew-copy p { color: rgba(244,239,230,0.8); max-width: 52ch; line-height: 1.65; }
.crew-copy .pill-row .pill { background: rgba(244,239,230,0.15); color: var(--canvas); }

.crew-stat-block {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
  min-width: 280px;
}

.crew-stat { text-align: center; }
.crew-stat-num {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(40px, 5vw, 64px); line-height: 1;
  color: var(--canvas);
}
.crew-stat-label {
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.13em;
  color: rgba(244,239,230,0.65); margin-top: 6px;
}

@media (max-width: 900px) {
  .crew-strip { grid-template-columns: 1fr; }
  .crew-stat-block { min-width: auto; grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 640px) {
  .crew-stat-block { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--ink);
  position: relative; overflow: hidden;
  padding-block: var(--section-py);
}
.cta-banner > img:first-of-type {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0; opacity: 0.35;
}

.cta-banner-inner {
  position: relative; z-index: 2;
  max-width: var(--content-max); margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: clamp(40px, 5vw, 72px);
  align-items: start;
}

.cta-banner-text { display: flex; flex-direction: column; gap: 12px; }
.cta-banner-text h2 { font-size: clamp(36px, 4.5vw, 64px); color: var(--canvas); }
.cta-banner-eyebrow { color: rgba(244,239,230,0.7); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; }
.cta-banner-sub { color: rgba(244,239,230,0.75); font-size: 17px; max-width: 48ch; line-height: 1.65; }
.cta-banner-headline { font-family: 'DM Serif Display', serif; font-size: clamp(36px, 4.5vw, 64px); color: var(--canvas); line-height: 1.0; }
.cta-banner-title { font-family: 'DM Serif Display', serif; font-size: clamp(36px, 4.5vw, 64px); color: var(--canvas); line-height: 1.0; }
.cta-banner-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }
.cta-banner-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; opacity: 0.3; }

.cta-contact-card {
  background: rgba(244,239,230,0.07);
  border: 1px solid rgba(244,239,230,0.15);
  border-radius: var(--radius);
  padding: 28px;
  backdrop-filter: blur(8px);
}

.cta-contact-row {
  padding: 14px 0;
  border-bottom: 1px solid rgba(244,239,230,0.1);
}
.cta-contact-row:last-child { border-bottom: none; }

.cta-contact-label {
  font-size: 11px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.12em; color: rgba(244,239,230,0.55); margin-bottom: 4px;
}
.cta-contact-value {
  font-size: 17px; color: var(--canvas); font-weight: 500;
}
.cta-contact-value a { color: var(--canvas); }
.cta-contact-value a:hover { color: rgba(244,239,230,0.7); text-decoration: underline; }

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

/* ============================================================
   STATS (generic stat pattern)
   ============================================================ */
.stats {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 32px; padding: 80px 0; text-align: center;
}
.stat-num {
  font-size: clamp(48px, 8vw, 96px); font-weight: 900;
  line-height: 1; color: var(--primary);
}
.stat-label {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--muted); margin-top: 8px;
}

/* ============================================================
   SECTION-LEVEL BACKGROUNDS
   ============================================================ */
section:nth-of-type(even):not(.hero):not(.cta-banner):not(.founder-section):not(.timeline-section):not(.service-areas) {
  background: var(--surface);
}

/* Explicit section bg overrides */
.services, .contact { background: var(--surface); }
.gallery, .faq, .service-areas, .service-areas-section, .services-detail { background: var(--canvas); }

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

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

/* ============================================================
   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(31,27,22,0.18); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--ink); color: rgba(244,239,230,0.75);
  padding-block: 64px 0;
}

/* Multiple footer inner patterns across pages */
.footer-inner, .footer-grid {
  max-width: 1320px; margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: 260px 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
}

.footer-brand, .footer-brand-col {
  display: flex; flex-direction: column; gap: 14px;
}
.footer-brand img, .footer-brand-col img { filter: brightness(1.8); }

.footer-brand-name {
  font-family: 'DM Serif Display', serif;
  font-size: 20px; color: var(--canvas); line-height: 1.2;
}

.footer-tagline {
  font-size: 14px; line-height: 1.6;
  color: rgba(244,239,230,0.6); max-width: 32ch;
}

.footer-tagline-sub {
  font-size: 13px; color: rgba(244,239,230,0.45); margin-top: -8px;
}

.footer-contact-quick {
  display: flex; flex-direction: column; gap: 8px; margin-top: 8px;
}
.footer-contact-quick a {
  font-size: 15px; color: rgba(244,239,230,0.75); font-weight: 500;
}
.footer-contact-quick a:hover { color: var(--canvas); }

.footer-col, .footer-nav-col { display: flex; flex-direction: column; gap: 12px; }

.footer-col h4, .footer-col-head, .footer-col-label {
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: rgba(244,239,230,0.45);
  margin-bottom: 8px; display: block;
}

.footer-col ul, .footer-links { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col li a, .footer-links li a {
  font-size: 15px; color: rgba(244,239,230,0.65);
}
.footer-col li a:hover, .footer-links li a:hover { color: var(--canvas); text-decoration: none; }

.footer-contact-list { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14px; color: rgba(244,239,230,0.65);
}
.footer-contact-item svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; color: rgba(244,239,230,0.4); }
.footer-contact-item a { color: rgba(244,239,230,0.65); }
.footer-contact-item a:hover { color: var(--canvas); }

.footer-contact-links {
  display: flex; gap: 12px; margin-top: 8px; flex-wrap: wrap;
}
.footer-contact-link {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(244,239,230,0.08);
  color: rgba(244,239,230,0.65);
  transition: background 180ms, color 180ms;
}
.footer-contact-link:hover { background: var(--primary); color: var(--canvas); text-decoration: none; }
.footer-contact-link svg { width: 16px; height: 16px; }

.footer-phone, .footer-phone-link {
  font-size: 16px; font-weight: 600; color: var(--canvas);
}
.footer-email, .footer-email-link { font-size: 14px; color: rgba(244,239,230,0.65); }
.footer-addr { font-size: 13px; color: rgba(244,239,230,0.5); }

.footer-bottom {
  border-top: 1px solid rgba(244,239,230,0.08);
  padding: 20px clamp(20px, 4vw, 48px);
  max-width: 1320px; margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  flex-wrap: wrap;
}
.footer-copy, .footer-bottom p, .footer-bottom span {
  font-size: 13px; color: rgba(244,239,230,0.4);
}
.footer-bottom-links {
  display: flex; gap: 20px;
}
.footer-bottom-links a { font-size: 13px; color: rgba(244,239,230,0.4); }
.footer-bottom-links a:hover { color: rgba(244,239,230,0.7); }

.footer-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-badge {
  font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em;
  padding: 4px 12px; border-radius: var(--radius-pill);
  background: rgba(244,239,230,0.07); color: rgba(244,239,230,0.5);
}
.footer-trust { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.footer-trust span { font-size: 12px; color: rgba(244,239,230,0.4); }
.footer-trust strong { color: rgba(244,239,230,0.6); }

.footer-logo { display: flex; }

@media (max-width: 900px) {
  .footer-inner, .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer-brand, .footer-brand-col { grid-column: span 2; }
}
@media (max-width: 640px) {
  .footer-inner, .footer-grid { grid-template-columns: 1fr; }
  .footer-brand, .footer-brand-col { grid-column: span 1; }
}

/* ============================================================
   MOBILE CTA PILL (mandatory)
   ============================================================ */
.mobile-cta-pill, .mobile-call-pill, .mobile-sticky-cta {
  position: fixed; bottom: 18px; right: 18px; z-index: 999;
  display: flex; align-items: center;
}

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

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

/* ============================================================
   ANIMATION UTILITIES
   ============================================================ */
.fade-up {
  opacity: 0; transform: translateY(24px);
  transition: opacity 600ms ease-out, transform 600ms ease-out;
}
.fade-left {
  opacity: 0; transform: translateX(-24px);
  transition: opacity 600ms ease-out, transform 600ms ease-out;
}
.fade-right {
  opacity: 0; transform: translateX(24px);
  transition: opacity 600ms ease-out, transform 600ms ease-out;
}
.scale-in {
  opacity: 0; transform: scale(0.94);
  transition: opacity 500ms ease-out, transform 500ms ease-out;
}
.stagger.visible > * { transition-delay: calc(var(--i, 0) * 80ms); }

.fade-up.visible, .fade-left.visible, .fade-right.visible, .scale-in.visible {
  opacity: 1; transform: none;
}
.stagger > .fade-up { opacity: 0; transform: translateY(20px); }

/* ============================================================
   TEXTURE OVERLAY
   ============================================================ */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  opacity: 0.4;
}

/* ============================================================
   MISC ELEMENTS
   ============================================================ */
.featured { /* handled in gallery grid */ }

.on-surface { background: var(--surface); }

.section-header {
  padding-block: 0;
}
.section-header h2 { font-size: clamp(36px, 4.5vw, 64px); margin-bottom: 12px; }
.section-header .eyebrow { margin-bottom: 12px; }

/* Supergraphic brand wash */
section::before {
  pointer-events: none;
}

/* Big phone number on contact page */
.cta-phone-big {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(32px, 4vw, 56px);
  color: var(--primary); display: block; line-height: 1.1;
}

/* Table rules (defensive) */
.services-table thead .col-service,
.services-table thead .col-desc,
.services-table thead .col-timeline,
.services-table thead .col-price {
  background: var(--primary); color: var(--canvas);
}

/* ============================================================
   RESPONSIVE ADJUSTMENTS
   ============================================================ */
@media (max-width: 1200px) {
  .services-panels .service-panel { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .contact .section-inner > .contact-grid,
  .contact-section .contact-grid { grid-template-columns: 1fr; }
  .service-areas-head { flex-direction: column; }
  .crew-headline { font-size: clamp(22px, 5vw, 34px); }
}

@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .cta-pair { flex-direction: column; }
  .services-tabs { gap: 6px; }
  .service-tab { font-size: 12px; padding: 7px 14px; }
}


/* === Validator patches (auto-applied) === */
/* validator patch: grid children without placement → span full row */
.mounted-photo { grid-column: 1 / -1; }
.gallery-cta-block { grid-column: 1 / -1; }
.footer-nav-col { grid-column: 1 / -1; }
.footer-col { grid-column: 1 / -1; }
.mounted-print-tall { grid-column: 1 / -1; }
.about-text-col { grid-column: 1 / -1; }
.founder-portrait-col { grid-column: 1 / -1; }
.crew-copy { grid-column: 1 / -1; }
.crew-stat-block { grid-column: 1 / -1; }
.crew-stat { grid-column: 1 / -1; }
.form-group { grid-column: 1 / -1; }
.footer-grid { grid-column: 1 / -1; }
.footer-bottom { 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; }
