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

/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --primary:        #67a753;
  --primary-dark:   #4d8a3a;
  --primary-tint:   rgba(103,167,83,0.12);
  --accent:         #67a753;

  --canvas:         #F4EFE6;
  --canvas-dark:    #EDE7D9;
  --surface:        #FFFFFF;
  --ink:            #1F1B16;
  --ink-mid:        #3d3830;
  --muted:          #7A7268;
  --border:         rgba(31,27,22,0.10);
  --border-strong:  rgba(31,27,22,0.18);

  --mounted-border: #F4EFE6;
  --mounted-width:  12px;

  --radius:         12px;
  --radius-sm:      8px;
  --radius-pill:    999px;

  --header-height:  72px;

  --section-py: clamp(96px, 12vh, 152px);
  --content-max: 1240px;
  --wide-max: 1400px;
}

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

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 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);
  -webkit-font-smoothing: antialiased;
}

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

/* Heading links never look like 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, .h2 {
  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, .h2 { font-size: clamp(36px, 5vw, 72px); }
h3 { font-size: clamp(22px, 2.4vw, 32px); line-height: 1.1; letter-spacing: -0.01em; }
h4 { font-size: 18px; line-height: 1.2; letter-spacing: 0; }

p { line-height: 1.70; }

a { color: var(--ink); transition: color 150ms ease; 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; }

ul { list-style: none; }

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

/* Brand hairline under eyebrow */
.eyebrow::after, .section-eyebrow::after {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--primary);
  margin-top: 8px;
}

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

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

.sec { padding-block: var(--section-py); }
.sec-canvas { background: var(--canvas); }
.sec-surface { background: var(--surface); }
.on-surface { background: var(--surface); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn, .btn-primary, .btn-ghost, .btn-outline,
.btn-outline-light, .btn-outline-white, .btn-white, .btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  padding: 16px 30px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 120ms ease, box-shadow 180ms ease;
  white-space: nowrap;
}

.btn-primary, .btn-submit {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.btn-primary:hover, .btn-submit:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px -8px rgba(103,167,83,0.45);
}

.btn-ghost, .btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--border-strong);
}
.btn-ghost:hover, .btn-outline:hover {
  background: var(--ink);
  color: var(--canvas);
  border-color: var(--ink);
  text-decoration: none;
}

.btn-outline-light, .btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.55);
}
.btn-outline-light:hover, .btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  color: #fff;
  text-decoration: none;
}

.btn-white {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}
.btn-white:hover {
  background: var(--canvas);
  text-decoration: none;
}

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

.trust-dot {
  display: inline-block;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--muted);
  opacity: 0.4;
}

/* ============================================================
   MOUNTED PRINT — the unique move
   ============================================================ */
.mounted-print,
.gal-tile,
.gal-tile-tall,
.gallery-card-img-wrap,
.svc-photo,
.about-portrait-frame,
.feature-photo {
  outline: var(--mounted-width) solid var(--mounted-border);
  outline-offset: -var(--mounted-width);
  box-shadow: inset 0 0 0 var(--mounted-width) var(--mounted-border);
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
}

/* Inset border trick using pseudo + box-shadow for reliability */
.mounted-print::after,
.gal-tile::after,
.gal-tile-tall::after,
.gallery-card-img-wrap::after,
.svc-photo::after,
.about-portrait-frame::after,
.feature-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 var(--mounted-width) var(--mounted-border);
  border-radius: var(--radius);
  z-index: 2;
  pointer-events: none;
}

.mounted-print img,
.about-portrait-frame img,
.feature-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

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

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

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

.nav-cta {
  flex: 0 0 auto;
  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;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: filter 150ms;
}
.nav-cta:hover { filter: brightness(0.92); text-decoration: none; color: #fff; }
.nav-cta svg { width: 16px; height: 16px; }

.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-pages {
    display: none;
    flex-direction: column;
    position: absolute;
    top: var(--header-height);
    left: 0; right: 0;
    background: var(--canvas);
    padding: 24px;
    gap: 8px;
    border-bottom: 1px solid rgba(31,27,22,0.08);
    z-index: 899;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .nav-pages ul, ul#navLinks {
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }
  .nav-pages.open { display: flex; }
  .nav-toggle { display: flex; }
  .nav-cta .nav-cta-text { display: none; }
  .nav-cta { padding: 10px 12px; }
}

/* ============================================================
   HERO
   ============================================================ */
#hero {
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

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

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    155deg,
    rgba(31,27,22,0.55) 0%,
    rgba(31,27,22,0.40) 40%,
    rgba(103,167,83,0.35) 100%
  );
  z-index: 1;
}

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

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

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

.hero-sub {
  font-family: 'Inter Tight', sans-serif;
  font-size: clamp(16px, 1.6vw, 19px);
  font-weight: 450;
  color: rgba(255,255,255,0.82);
  max-width: 52ch;
  line-height: 1.60;
  margin-bottom: 32px;
}

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

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

.hero-chips .chip {
  background: rgba(103,167,83,0.18);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.22);
  font-size: 12px;
  letter-spacing: 0.08em;
}

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

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

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

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

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

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

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

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

.trust-chip {
  font-size: 12px;
  letter-spacing: 0.08em;
}

/* ============================================================
   SERVICES — BENTO GRID
   ============================================================ */
.svc-head {
  margin-bottom: clamp(48px, 6vw, 72px);
  max-width: 60ch;
}

.svc-head .eyebrow { margin-bottom: 16px; }
.svc-head .h2, .svc-head h2 { margin-bottom: 20px; }
.sec-sub {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 56ch;
}

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

.svc-card-wide {
  grid-column: span 2;
}

.svc-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
  color: var(--ink);
}

.svc-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -16px rgba(31,27,22,0.18);
  text-decoration: none;
  color: var(--ink);
}

.svc-photo {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 0;
  box-shadow: none;
  outline: none;
  position: relative;
}

.svc-card-wide .svc-photo { aspect-ratio: 16 / 7; }

.svc-photo::after { border-radius: 0; }

.svc-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
  max-height: none;
}

.svc-card:hover .svc-photo img { transform: scale(1.03); }

.svc-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.svc-body h3 {
  font-size: clamp(19px, 1.8vw, 24px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 0;
}

.svc-num {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--primary);
}

.svc-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.60;
  margin-top: 4px;
}

.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--primary);
  margin-top: 12px;
  transition: gap 180ms;
}

.svc-card:hover .svc-link { gap: 8px; }

@media (max-width: 900px) {
  .svc-bento { grid-template-columns: 1fr 1fr; }
  .svc-card-wide { grid-column: span 2; }
}

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

/* ============================================================
   GALLERY — TIGHT GRID
   ============================================================ */
.gal-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(40px, 5vw, 64px);
  flex-wrap: wrap;
}

.gal-head h2, .gal-head .h2 { margin-bottom: 0; }

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

.gal-tile {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius);
  display: block;
  position: relative;
  outline: none;
  box-shadow: none;
}

.gal-tile::after {
  content: '';
  position: absolute; inset: 0;
  box-shadow: inset 0 0 0 var(--mounted-width) var(--mounted-border);
  border-radius: var(--radius);
  z-index: 2;
  pointer-events: none;
}

.gal-tile-tall {
  grid-row: span 2;
  aspect-ratio: auto;
}

.gal-tile img, .gal-tile-tall img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
  max-height: none;
}

.gal-tile:hover img { transform: scale(1.04); }

.gal-cta {
  text-align: center;
  margin-top: 48px;
}

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

/* ============================================================
   REVIEWS
   ============================================================ */
.rev-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: clamp(40px, 5vw, 64px);
}

.rev-card {
  padding: 32px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
}

.rev-stars {
  display: flex;
  gap: 3px;
}

.rev-stars svg {
  width: 18px; height: 18px;
  color: var(--primary);
  fill: var(--primary);
}

.rev-quote {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.55;
  color: var(--ink);
  margin: 16px 0 20px;
  font-style: italic;
}

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

.rev-badge {
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px;
  color: var(--muted);
  display: block;
  margin-top: 4px;
}

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

/* ============================================================
   FAQ
   ============================================================ */
#faq .inner > div { margin-bottom: clamp(40px, 5vw, 64px); }

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 48px;
}

.faq-col { display: flex; flex-direction: column; }

details.faq, .faq-list details {
  border-bottom: 1px solid var(--border-strong);
  padding: 18px 0;
}

details.faq > summary, .faq-list details > summary {
  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);
  gap: 16px;
  line-height: 1.35;
}

details.faq > summary::-webkit-details-marker,
.faq-list details > summary::-webkit-details-marker { display: none; }

details.faq > summary::after,
.faq-list details > summary::after {
  content: "+";
  font-size: 22px;
  font-weight: 300;
  color: var(--primary);
  transition: transform 200ms ease;
  flex-shrink: 0;
}

details.faq[open] > summary::after,
.faq-list details[open] > summary::after {
  transform: rotate(45deg);
}

details.faq p, .faq-list details p {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.65;
  font-size: 16px;
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-list details { border-bottom: 1px solid var(--border-strong); padding: 18px 0; }

.faq-chevron {
  width: 20px; height: 20px;
  color: var(--primary);
  transition: transform 200ms ease;
  flex-shrink: 0;
}

details[open] .faq-chevron { transform: rotate(180deg); }

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

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  margin-top: clamp(40px, 5vw, 64px);
  align-items: start;
}

.contact-header { margin-bottom: clamp(32px, 5vw, 56px); }
.contact-header .eyebrow-rule {
  display: block;
  width: 48px; height: 2px;
  background: var(--primary);
  margin-bottom: 16px;
}

.form-fields {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

.form-group input,
.form-group textarea,
.form-group select,
form input,
form textarea,
form select {
  width: 100%;
  font-family: 'Inter Tight', sans-serif;
  font-size: 16px;
  font-weight: 450;
  color: var(--ink);
  background: var(--surface);
  border: 1.5px solid var(--border-strong);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  transition: border-color 150ms;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus,
form input:focus,
form textarea:focus,
form select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(103,167,83,0.15);
}

form textarea { min-height: 140px; resize: vertical; line-height: 1.6; }
form select { cursor: pointer; }

.btn-submit {
  width: 100%;
  justify-content: center;
  padding: 18px 32px;
  font-size: 16px;
  border-radius: var(--radius-sm);
}

.btn-submit svg { width: 18px; height: 18px; }

.form-note {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
  margin-top: -8px;
}

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

.ci-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.ci-item:first-child { padding-top: 0; }

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

.ci-val {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(20px, 2vw, 28px);
  color: var(--ink);
  line-height: 1.15;
}

.ci-val a { color: var(--primary); }
.ci-val a:hover { text-decoration: underline; }

.ci-val-sm {
  font-size: 16px;
  color: var(--ink-mid);
  line-height: 1.50;
}

.ci-val-sm a { color: var(--primary); }

.areas-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

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

.info-card-logo { margin-bottom: 20px; }
.info-tagline {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 20px;
  color: var(--ink);
  margin-bottom: 28px;
  line-height: 1.25;
}

.info-block { padding: 20px 0; }
.info-block:first-of-type { padding-top: 0; }
.info-block-label {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 8px;
}

.info-block-phone {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 28px;
  color: var(--primary);
}

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

.service-area-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

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

/* ============================================================
   PAGE HEADER (sub-pages)
   ============================================================ */
.page-header {
  min-height: clamp(260px, 38vw, 460px);
  display: flex;
  align-items: flex-end;
  background: var(--ink);
}

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

.page-header-inner {
  position: relative;
  z-index: 2;
  max-width: var(--content-max);
  margin-inline: auto;
  padding: clamp(32px, 5vw, 64px) clamp(24px, 5vw, 48px);
  width: 100%;
}

.page-header-inner h1 {
  color: #fff;
  font-size: clamp(48px, 7vw, 88px);
  margin-bottom: 12px;
}

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

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

/* ============================================================
   SERVICES FEATURE BLOCKS (services.html)
   ============================================================ */
.services-feature {
  padding-block: var(--section-py);
  background: var(--canvas);
}

.services-feature-intro {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(24px, 5vw, 48px);
  margin-bottom: clamp(48px, 7vw, 80px);
}

.services-feature-intro .eyebrow { margin-bottom: 12px; }
.services-feature-intro p:last-child {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  max-width: 52ch;
  color: var(--ink);
}

.feature-row-wrap {
  padding-block: clamp(48px, 6vw, 80px);
}

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

.feature-row {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(24px, 5vw, 48px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.feature-row.reverse .feature-photo { order: 2; }
.feature-row.reverse .feature-body { order: 1; }

.feature-photo {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  position: relative;
}

.feature-photo > img {
  width: 100%; height: 100%;
  object-fit: cover;
  max-height: none;
}

.feature-body .eyebrow { margin-bottom: 10px; }
.feature-body p:nth-child(2) {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(28px, 2.8vw, 40px);
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 16px;
}

.feature-body p:nth-child(3) {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.70;
  margin-bottom: 24px;
}

.feature-list {
  list-style: none;
  padding: 0; margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--ink-mid);
  line-height: 1.5;
}

.feature-list li::before {
  content: '';
  display: block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
  margin-top: 6px;
}

@media (max-width: 900px) {
  .feature-row { grid-template-columns: 1fr; gap: 32px; }
  .feature-row.reverse .feature-photo { order: 0; }
  .feature-row.reverse .feature-body { order: 0; }
}

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

.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(103,167,83,0.10) 0%, transparent 60%);
  pointer-events: none;
}

.cta-banner-inner {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(24px, 5vw, 48px);
  text-align: center;
  position: relative;
  z-index: 1;
}

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

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

.cta-banner-sub, .cta-banner-inner p:not(.cta-banner-eyebrow) {
  color: rgba(255,255,255,0.70);
  font-size: 17px;
  max-width: 52ch;
  margin-inline: auto;
  margin-bottom: 40px;
  line-height: 1.65;
}

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

.cta-banner-phone {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(24px, 3vw, 36px);
  color: var(--primary);
  display: block;
  margin-bottom: 24px;
}

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

.about-story-inner {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(24px, 5vw, 48px);
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: clamp(48px, 6vw, 88px);
  align-items: start;
}

.about-portrait-col { position: sticky; top: calc(var(--header-height) + 32px); }

.about-portrait-frame {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  position: relative;
}

.about-portrait-frame > img {
  width: 100%; height: 100%;
  object-fit: cover;
  max-height: none;
}

.about-portrait-caption {
  font-size: 13px;
  color: var(--muted);
  margin-top: 14px;
  text-align: center;
  font-style: italic;
}

.about-text-col { display: flex; flex-direction: column; gap: 0; }

.about-display-headline {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 32px;
  max-width: 22ch;
}

.about-display-headline em { font-style: italic; color: var(--primary); }

.about-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}

.about-body p {
  font-size: 17px;
  color: var(--ink-mid);
  line-height: 1.75;
  max-width: 68ch;
}

.about-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.about-chip {
  background: var(--primary-tint);
  color: var(--primary);
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 7px 14px;
  border-radius: var(--radius-pill);
}

@media (max-width: 900px) {
  .about-story-inner { grid-template-columns: 1fr; }
  .about-portrait-col { position: static; }
  .about-portrait-frame { aspect-ratio: 4 / 3; max-height: 360px; }
}

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

.values-inner {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(24px, 5vw, 48px);
}

.values-header {
  margin-bottom: clamp(40px, 5vw, 64px);
}

.values-headline {
  font-size: clamp(36px, 4.5vw, 60px);
  max-width: 28ch;
}

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

.value-card {
  padding: 32px 28px;
  border-radius: var(--radius);
  background: var(--canvas);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.value-number {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(40px, 4vw, 56px);
  color: var(--primary);
  line-height: 1.0;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.value-card h3 {
  font-size: 20px;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

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

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

.service-areas-inner {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(24px, 5vw, 48px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 80px);
  align-items: start;
}

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

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

.areas-body {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.70;
  margin-bottom: 28px;
  max-width: 52ch;
}

.areas-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
}

.areas-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-mid);
}

.areas-list li::before {
  content: '';
  display: block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}

.areas-quote-col { padding-top: 48px; }

.areas-pullquote {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(22px, 2.5vw, 32px);
  font-style: italic;
  line-height: 1.40;
  color: var(--ink);
  border-left: 3px solid var(--primary);
  padding-left: 24px;
  margin-bottom: 16px;
}

.areas-pullquote-source {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--muted);
  padding-left: 24px;
}

@media (max-width: 900px) {
  .service-areas-inner { grid-template-columns: 1fr; }
  .areas-quote-col { padding-top: 0; }
}

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

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

.section-eyebrow-line {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

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

.eyebrow-rule {
  flex: 1;
  height: 1px;
  background: var(--border-strong);
  max-width: 80px;
}

.gallery-section-header h2 {
  font-size: clamp(36px, 5vw, 66px);
  margin-bottom: 16px;
}

.gallery-intro {
  font-size: 17px;
  color: var(--muted);
  max-width: 60ch;
  line-height: 1.65;
}

.gallery-filters {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(24px, 5vw, 48px);
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-pill {
  background: var(--surface);
  color: var(--ink-mid);
  border: 1.5px solid var(--border-strong);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 150ms, color 150ms, border-color 150ms;
}

.filter-pill.active,
.filter-pill:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

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

.gallery-card {
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 250ms ease, box-shadow 250ms ease;
}

.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-card-img-wrap {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  position: relative;
  box-shadow: none;
  outline: none;
}

.gallery-card.featured .gallery-card-img-wrap { aspect-ratio: 16 / 8; }

.gallery-card-img-wrap::after {
  content: '';
  position: absolute; inset: 0;
  box-shadow: inset 0 0 0 var(--mounted-width) var(--mounted-border);
  z-index: 2; pointer-events: none;
}

.gallery-card-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
  max-height: none;
}

.gallery-card:hover .gallery-card-img-wrap img { transform: scale(1.04); }

.gallery-card-num {
  position: absolute;
  top: 16px; left: 16px;
  z-index: 3;
  background: rgba(31,27,22,0.70);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

.gallery-card-tag {
  position: absolute;
  top: 16px; right: 16px;
  z-index: 3;
  background: var(--primary-tint);
  color: var(--primary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(4px);
}

.gallery-card-body {
  padding: 24px;
}

.gallery-card-body h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.gallery-card-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 10px;
}

.gallery-card-location svg { width: 14px; height: 14px; color: var(--primary); }

.gallery-card-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.60;
  margin-bottom: 16px;
}

.gallery-card-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

.gallery-meta-item { display: flex; flex-direction: column; gap: 2px; }
.gallery-meta-label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); font-weight: 600; }
.gallery-meta-val { font-size: 14px; font-weight: 600; color: var(--ink); }

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

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

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

.footer-grid {
  display: grid;
  grid-template-columns: 280px repeat(3, 1fr);
  gap: clamp(32px, 5vw, 60px);
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.footer-brand, .footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-brand p, .footer-tagline {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255,255,255,0.55);
}

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

.footer-col { display: flex; flex-direction: column; gap: 16px; }

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

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

.footer-links li a, .footer-col ul li a, .footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 150ms;
  line-height: 1.5;
}

.footer-links li a:hover, .footer-col ul li a:hover, .footer-col a:hover {
  color: #fff;
  text-decoration: none;
}

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

.footer-areas li, .footer-areas span {
  font-size: 13px;
  color: rgba(255,255,255,0.50);
  line-height: 1.5;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
}

.footer-contact-item svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--primary); }
.footer-contact-item a { color: rgba(255,255,255,0.65); }
.footer-contact-item a:hover { color: #fff; text-decoration: none; }

.footer-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 150ms;
}
.footer-contact-link:hover { color: #fff; text-decoration: none; }
.footer-contact-link svg { width: 16px; height: 16px; color: var(--primary); }

.footer-contact-line {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.50;
}

.footer-contact-line a { color: rgba(255,255,255,0.65); }
.footer-contact-line a:hover { color: #fff; text-decoration: none; }

.footer-social { display: flex; gap: 12px; margin-top: 4px; }
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.65);
  transition: background 150ms, color 150ms;
  text-decoration: none;
}
.footer-social a:hover { background: var(--primary); color: #fff; text-decoration: none; }
.footer-social a svg { width: 16px; height: 16px; }

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

.footer-copy, .footer-bottom span {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  line-height: 1.5;
}

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

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

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

.mobile-call a, .mobile-cta a, .mobile-cta-pill,
.mobile-sticky-cta a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  padding: 14px 22px;
  border-radius: var(--radius-pill);
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 18px 40px -10px rgba(0,0,0,0.45);
  transition: background 150ms, transform 150ms;
  white-space: nowrap;
}

.mobile-call a:hover, .mobile-cta a:hover, .mobile-cta-pill:hover,
.mobile-sticky-cta a:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  text-decoration: none;
  color: #fff;
}

.mobile-call svg, .mobile-cta a svg, .mobile-cta-pill svg,
.mobile-sticky-cta a svg {
  width: 20px; height: 20px;
  flex-shrink: 0;
}

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

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

.fade-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.65s cubic-bezier(0.22,1,0.36,1), transform 0.65s cubic-bezier(0.22,1,0.36,1);
}
.fade-left.visible { opacity: 1; transform: translateX(0); }

.fade-right {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 0.65s cubic-bezier(0.22,1,0.36,1), transform 0.65s cubic-bezier(0.22,1,0.36,1);
}
.fade-right.visible { opacity: 1; transform: translateX(0); }

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

.stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s cubic-bezier(0.22,1,0.36,1), transform 0.55s cubic-bezier(0.22,1,0.36,1);
}
.stagger.visible > * { opacity: 1; transform: translateY(0); }
.stagger.visible > *:nth-child(1) { transition-delay: 0ms; }
.stagger.visible > *:nth-child(2) { transition-delay: 80ms; }
.stagger.visible > *:nth-child(3) { transition-delay: 160ms; }
.stagger.visible > *:nth-child(4) { transition-delay: 240ms; }
.stagger.visible > *:nth-child(5) { transition-delay: 320ms; }
.stagger.visible > *:nth-child(6) { transition-delay: 400ms; }
.stagger.visible > *:nth-child(7) { transition-delay: 480ms; }
.stagger.visible > *:nth-child(8) { transition-delay: 560ms; }

/* ============================================================
   CONTACT PAGE SPECIFIC
   ============================================================ */
.contact-inner {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(24px, 5vw, 48px);
  padding-block: var(--section-py);
}

/* ============================================================
   MISC OVERRIDES & HELPERS
   ============================================================ */
::selection { background: var(--primary); color: #fff; }

:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Low-opacity noise texture on canvas sections for depth */
.sec-canvas::before, body::before {
  content: '';
  position: fixed;
  inset: 0;
  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.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.025;
}

/* Ensure all SVGs in stars, icons are capped */
.rev-stars svg { width: 18px; height: 18px; }
.footer-contact-item svg, .footer-contact-link svg { width: 16px; height: 16px; }
.gallery-card-location svg { width: 14px; height: 14px; }
.faq-chevron { width: 20px; height: 20px; }
.btn svg, .nav-cta svg { width: 16px; height: 16px; }
.mobile-call svg, .mobile-cta a svg, .mobile-sticky-cta a svg { width: 20px; height: 20px; }
.footer-social a svg { width: 16px; height: 16px; }

/* ============================================================
   RESPONSIVE UTILITIES
   ============================================================ */
@media (max-width: 1200px) {
  .svc-bento { grid-template-columns: repeat(2, 1fr); }
  .svc-card-wide { grid-column: span 2; }
}

@media (max-width: 640px) {
  .hero-title { font-size: clamp(52px, 13vw, 80px); }
  .hero-ctas { flex-direction: column; width: 100%; }
  .hero-ctas a { width: 100%; justify-content: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
}


/* === Validator patches (auto-applied) === */
/* validator patch: grid children without placement → span full row */
.faq-col { grid-column: 1 / -1; }
.footer-col { grid-column: 1 / -1; }
.about-text-col { grid-column: 1 / -1; }
.areas-text-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; }
