@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:        #6c0d09;
  --primary-tint:   rgba(108,13,9,0.12);
  --primary-tint8:  rgba(108,13,9,0.08);
  --primary-dark:   #4e0906;
  --accent:         #6c0d09;
  --canvas:         #F4EFE6;
  --canvas-warm:    #EDE6D9;
  --surface:        #FFFFFF;
  --ink:            #1F1B16;
  --ink-mid:        #3a3530;
  --muted:          #7A7268;
  --border:         rgba(31,27,22,0.10);
  --border-strong:  rgba(31,27,22,0.18);
  --header-height:  72px;

  /* mounted-print frame token */
  --frame-border:   12px solid #F4EFE6;
  --frame-radius:   4px;

  --radius:         12px;
  --radius-btn:     10px;
  --radius-pill:    999px;

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

@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: 16px; }
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
   ============================================================ */
img { max-width: 100%; height: auto; display: block; }

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

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

.hero { position: relative; overflow: hidden; }
.hero-bg, .hero > img:first-of-type {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 45%; z-index: 0;
}
.hero-inner, .hero > :not(img):not(.hero-bg):not(.hero-overlay) { position: relative; z-index: 2; }
.hero-overlay { position: absolute; inset: 0; z-index: 1; pointer-events: none; }

.page-header, [class*="page-header"], .about-feature, .about-hero {
  position: relative; overflow: hidden; max-height: 64vh;
}
.page-header > img, [class*="page-header"] > img, .page-header-bg,
.about-feature > img:first-of-type, .about-hero-bg,
.page-header img:first-of-type {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 45%; z-index: 0;
}
section > img:first-child:not([class*="logo"]):not(.nav-logo) { max-height: 64vh; object-fit: cover; }
section img:not(.hero-bg):not(.page-header-bg):not([class*="full-bleed"]):not([class*="logo"]) { max-height: 720px; }

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

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

/* ============================================================
   HEADING ANCHORS
   ============================================================ */
h1 a, h2 a, h3 a, .hero-title a, .hero-eyebrow a, .hero-sub a {
  color: inherit; text-decoration: none; border-bottom: 0;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -0.015em;
  color: var(--ink);
}
h1 { font-size: clamp(48px, 7vw, 96px); }
h2 { font-size: clamp(36px, 5vw, 68px); }
h3 { font-size: clamp(22px, 2.5vw, 32px); }
h4 { font-size: clamp(16px, 1.8vw, 20px); }

p { line-height: 1.7; }

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

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

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container { 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); }
.section-inner { max-width: var(--content-max); margin-inline: auto; padding-inline: clamp(20px, 5vw, 48px); }

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

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 30px; border-radius: var(--radius-btn);
  font-family: 'Inter Tight', sans-serif; font-size: 15px; font-weight: 600;
  line-height: 1; text-decoration: none; cursor: pointer;
  border: 2px solid transparent; transition: filter 180ms, background 180ms, color 180ms, border-color 180ms;
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary); color: var(--canvas);
  border-color: var(--primary);
}
.btn-primary:hover { filter: brightness(0.88); color: var(--canvas); text-decoration: none; }
.btn-outline {
  background: transparent; color: var(--canvas);
  border-color: rgba(244,239,230,0.55);
}
.btn-outline:hover { background: rgba(244,239,230,0.12); color: var(--canvas); text-decoration: none; border-color: var(--canvas); }
.btn-canvas {
  background: var(--canvas); color: var(--ink);
  border-color: var(--canvas);
}
.btn-canvas:hover { filter: brightness(0.95); color: var(--ink); text-decoration: none; }
.btn-canvas-outline {
  background: transparent; color: var(--canvas);
  border-color: rgba(244,239,230,0.6);
}
.btn-canvas-outline:hover { background: rgba(244,239,230,0.15); color: var(--canvas); text-decoration: none; }
.btn-phone {
  background: var(--primary); color: var(--canvas);
  border-color: var(--primary);
}
.btn-phone:hover { filter: brightness(0.88); color: var(--canvas); text-decoration: none; }

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

.filter-pill { cursor: pointer; border: none; background: var(--primary-tint); transition: background 180ms, color 180ms; }
.filter-pill.active, .filter-pill:hover { background: var(--primary); color: var(--canvas); }

/* ============================================================
   SECTION EYEBROW
   ============================================================ */
.section-eyebrow, .page-header-eyebrow, .page-eyebrow,
.contact-info-eyebrow, .form-eyebrow, .cta-banner-eyebrow, .cta-eyebrow,
.info-eyebrow, .mv-label, .footer-col-title, .footer-col-label {
  display: block;
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}
.section-eyebrow::after {
  content: '';
  display: block;
  width: 32px; height: 2px;
  background: var(--primary);
  margin-top: 8px;
}

/* ============================================================
   SITE HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 900;
  background: var(--canvas);
  border-bottom: 1px solid var(--border);
}
.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; text-decoration: none; }
.nav-logo img { max-height: 44px; max-width: 200px; width: auto; object-fit: contain; }

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

.nav-cta {
  flex: 0 0 auto;
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--primary); color: var(--canvas) !important;
  padding: 10px 20px; border-radius: var(--radius-pill);
  font-size: 14px; font-weight: 600; text-decoration: none !important;
  white-space: nowrap; transition: filter 180ms;
}
.nav-cta:hover { filter: brightness(0.88); color: var(--canvas) !important; text-decoration: none !important; }
.nav-cta svg { width: 16px; height: 16px; }

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

@media (max-width: 900px) {
  .top-nav { gap: 16px; padding-inline: 20px; }
  .nav-toggle { display: flex; }
  .nav-pages {
    display: none;
    position: absolute; top: 60px; left: 0; right: 0;
    background: var(--canvas);
    padding: 20px 24px; gap: 4px;
    border-bottom: 1px solid var(--border);
    z-index: 800;
  }
  .nav-pages.open { display: flex; flex-direction: column; }
  .nav-pages ul { flex-direction: column; align-items: flex-start; gap: 0; justify-content: flex-start; }
  .nav-pages a { padding: 12px 0; font-size: 16px; width: 100%; }
  .nav-cta .nav-cta-label { display: none; }
  .nav-cta { padding: 10px 12px; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 92vh;
  display: flex; align-items: flex-end;
  background: var(--ink);
}
.hero > img, .hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 35%;
  z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    160deg,
    rgba(31,27,22,0.30) 0%,
    rgba(31,27,22,0.55) 50%,
    rgba(108,13,9,0.40) 100%
  );
}
.booking-ribbon {
  position: absolute; top: 0; right: 0; z-index: 3;
  background: var(--primary); color: var(--canvas);
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px; font-weight: 600; letter-spacing: 0.10em; text-transform: uppercase;
  padding: 10px 20px;
  border-bottom-left-radius: 8px;
}
.hero-inner {
  position: relative; z-index: 2;
  width: 100%; max-width: var(--content-max);
  margin-inline: auto;
  padding: clamp(48px, 8vw, 96px) clamp(20px, 5vw, 48px);
  padding-bottom: clamp(64px, 9vh, 112px);
  display: flex; flex-direction: column; align-items: flex-start; gap: 20px;
}
.hero-eyebrow {
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(244,239,230,0.80);
}
.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: var(--canvas);
  max-width: 14ch;
}
.hero-sub {
  font-family: 'Inter Tight', sans-serif;
  font-size: clamp(16px, 1.6vw, 19px);
  font-weight: 450; line-height: 1.55;
  color: rgba(244,239,230,0.82);
  max-width: 46ch;
}
.hero-ctas {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-top: 8px;
}
.hero-trust-chips {
  list-style: none;
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 12px;
}
.hero-trust-chips .trust-chip {
  background: rgba(108,13,9,0.18);
  color: rgba(244,239,230,0.92);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(244,239,230,0.15);
}

@media (max-width: 640px) {
  .hero { min-height: 100svh; }
  .hero-title { font-size: clamp(56px, 14vw, 80px); }
  .hero-ctas { flex-direction: column; gap: 10px; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--surface);
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-strip-inner {
  max-width: var(--content-max); margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: center;
  gap: 10px 16px;
}
.trust-strip .trust-chip, .trust-strip .trust-pill {
  font-size: 12px;
}

/* ============================================================
   MARQUEE STRIP
   ============================================================ */
.marquee-strip {
  overflow: hidden;
  padding: 14px 0;
  background: var(--canvas-warm);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  max-height: 64px; position: relative; z-index: 1;
}
.marquee-track {
  display: flex; gap: 48px; white-space: nowrap;
  animation: marquee 35s linear infinite;
}
.marquee-strip:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  display: flex; align-items: center; gap: 24px;
  font-family: 'Inter Tight', sans-serif;
  font-size: clamp(13px, 1.4vw, 15px); font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted); line-height: 1.2;
}
.marquee-item span { flex-shrink: 0; }
.marquee-item span:nth-child(even) { color: var(--primary); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   MOUNTED PRINT FRAME — the unique move
   ============================================================ */
.service-card-img-wrap img,
.gallery-frame img,
.gallery-card-photo img,
.feature-block-photo img,
.portrait-frame img {
  border: var(--frame-border);
  border-radius: var(--frame-radius);
  outline: 1px solid var(--border);
}

/* ============================================================
   SERVICES BENTO
   ============================================================ */
.services {
  background: var(--canvas);
  padding-block: var(--section-py);
}
.services .section-inner { display: flex; flex-direction: column; gap: 48px; }
.services-header { max-width: 56ch; }
.services-header .section-title {
  font-size: clamp(40px, 5.5vw, 72px);
  margin-top: 4px; margin-bottom: 16px;
}
.services-header p { font-size: 17px; color: var(--muted); line-height: 1.65; }

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

/* large card spans 2 columns */
.service-card-large {
  grid-column: 1 / 3;
}

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

.service-card-img-wrap {
  overflow: hidden; flex-shrink: 0;
  background: var(--canvas-warm);
}
.service-card-large .service-card-img-wrap { height: 300px; }
.service-card .service-card-img-wrap { height: 200px; }
.service-card-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  border: var(--frame-border) !important;
  max-height: none !important;
  transition: transform 400ms ease;
}
.service-card:hover .service-card-img-wrap img { transform: scale(1.04); }

.service-card-body {
  padding: 24px 28px; display: flex; flex-direction: column; gap: 8px; flex: 1;
}
.service-card-num {
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--primary);
}
.service-card-body h3 {
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.15; margin-bottom: 4px;
}
.service-card-desc { font-size: 14px; color: var(--muted); line-height: 1.55; }
.service-card-link {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 13px; font-weight: 600;
  color: var(--primary); margin-top: auto; padding-top: 12px;
}
.service-card-link svg { width: 16px; height: 16px; transition: transform 200ms; }
.service-card:hover .service-card-link svg { transform: translateX(4px); }

.services-cta {
  text-align: center;
}

@media (max-width: 900px) {
  .services-bento { grid-template-columns: repeat(2, 1fr); }
  .service-card-large { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .services-bento { grid-template-columns: 1fr; }
  .service-card-large { grid-column: auto; }
}

/* ============================================================
   GALLERY (index)
   ============================================================ */
.gallery {
  background: var(--surface);
  padding-block: var(--section-py);
}
.gallery .section-inner { display: flex; flex-direction: column; gap: 40px; }
.gallery-header .section-eyebrow { display: block; margin-bottom: 8px; }
.gallery-frame {
  overflow: hidden; border-radius: var(--radius);
  max-height: 520px;
}
.gallery-frame img {
  width: 100%; height: 100%;
  object-fit: cover; max-height: 520px !important;
  border: var(--frame-border) !important;
}
.gallery-cta { text-align: center; }

/* ============================================================
   GALLERY PAGE
   ============================================================ */
.gallery-section {
  background: var(--canvas);
  padding-block: var(--section-py);
}
.gallery-section .gallery-header {
  max-width: var(--content-max); margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
  margin-bottom: 32px;
}
.gallery-intro { font-size: 17px; color: var(--muted); max-width: 56ch; margin-top: 8px; }

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

.gallery-grid {
  max-width: var(--content-max); margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
  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);
  display: flex; flex-direction: column;
}
.gallery-card-wide { grid-column: span 2; }
.gallery-card-tall { grid-row: span 2; }

.gallery-card-photo {
  position: relative; overflow: hidden;
  aspect-ratio: 4 / 3;
  flex-shrink: 0;
}
.gallery-card-tall .gallery-card-photo { aspect-ratio: 3 / 4; }
.gallery-card-wide .gallery-card-photo { aspect-ratio: 16 / 7; }

.gallery-card-photo img {
  width: 100%; height: 100%;
  object-fit: cover; max-height: none !important;
  border: var(--frame-border) !important;
  transition: transform 400ms ease;
}
.gallery-card:hover .gallery-card-photo img { transform: scale(1.04); }
.gallery-card-tag {
  position: absolute; top: 12px; left: 12px;
  background: rgba(244,239,230,0.92);
  color: var(--ink); font-size: 11px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 10px; border-radius: var(--radius-pill);
  backdrop-filter: blur(4px);
}
.gallery-card-body {
  padding: 18px 20px;
}
.gallery-card-body h3 { font-size: 17px; margin-bottom: 6px; }
.gallery-card-location {
  display: flex; align-items: center; gap: 5px;
  font-size: 12px; color: var(--muted);
  font-family: 'Inter Tight', sans-serif;
  font-weight: 500; letter-spacing: 0.04em; margin-bottom: 4px;
}
.gallery-card-location svg { width: 14px; height: 14px; }
.gallery-card-desc { font-size: 14px; color: var(--muted); line-height: 1.5; }

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

/* ============================================================
   FAQ
   ============================================================ */
.faq, .faq-section {
  background: var(--canvas);
  padding-block: var(--section-py);
}
.faq .section-inner, .faq-inner {
  max-width: var(--content-max); margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
}
.faq-header, .faq-inner > .section-eyebrow { margin-bottom: 40px; }
.faq-headline, .faq-inner > h2 {
  font-size: clamp(36px, 5vw, 64px);
  margin-top: 6px;
}
.faq-list { max-width: 780px; }

details.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
details.faq-item > summary {
  cursor: pointer;
  font-family: 'Inter Tight', sans-serif;
  font-size: 17px; font-weight: 600;
  list-style: none; display: flex;
  justify-content: space-between; align-items: center;
  gap: 16px; user-select: none;
}
details.faq-item > summary::-webkit-details-marker { display: none; }
details.faq-item > summary::after {
  content: "+"; flex-shrink: 0;
  font-size: 22px; font-weight: 300; color: var(--primary);
  transition: transform 200ms;
}
details.faq-item[open] > summary::after { transform: rotate(45deg); }
.faq-answer { margin-top: 14px; font-size: 16px; line-height: 1.7; color: var(--ink-mid); }
.faq-chevron { width: 20px; height: 20px; color: var(--primary); flex-shrink: 0; }

/* about.html faq */
.faq-section { background: var(--surface); }

/* ============================================================
   TEAM CTA BANNER
   ============================================================ */
.team-cta {
  background: var(--primary);
  padding-block: clamp(64px, 8vh, 96px);
}
.team-cta-inner {
  max-width: var(--content-max); margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.team-cta-text h2 {
  font-size: clamp(32px, 4vw, 56px);
  color: var(--canvas);
}
.team-cta-text p { font-size: 17px; color: rgba(244,239,230,0.75); margin-top: 10px; }

/* ============================================================
   CTA BANNER (services/gallery/about)
   ============================================================ */
.cta-banner {
  position: relative; overflow: hidden;
  background: var(--ink);
  padding-block: clamp(72px, 10vh, 120px);
}
.cta-banner > img, .cta-banner-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0; max-height: none !important;
}
.cta-banner::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(160deg, rgba(31,27,22,0.70) 0%, rgba(108,13,9,0.55) 100%);
}
.cta-banner-inner {
  position: relative; z-index: 2;
  max-width: var(--content-max); margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
  display: flex; flex-direction: column; gap: 20px;
}
.cta-banner-eyebrow { color: rgba(244,239,230,0.72); }
.cta-banner-title, .cta-headline {
  font-size: clamp(40px, 5.5vw, 76px);
  color: var(--canvas); line-height: 1.0;
}
.cta-banner-phone {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 3.5vw, 46px);
  color: var(--canvas); text-decoration: none;
}
.cta-banner-phone:hover { color: var(--canvas); text-decoration: underline; }
.cta-banner-text h2 { color: var(--canvas); }
.cta-banner-text p { color: rgba(244,239,230,0.75); font-size: 18px; margin-top: 6px; }
.cta-banner-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }
.cta-sub { font-size: 17px; color: rgba(244,239,230,0.78); }
.cta-buttons { display: flex; flex-wrap: wrap; gap: 12px; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact, .contact-section {
  background: var(--canvas);
  padding-block: var(--section-py);
}
.contact .section-inner, .contact-inner {
  max-width: var(--content-max); margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px; align-items: start;
}

.contact-form-wrap h2, .contact-form-wrap > h2 {
  font-size: clamp(32px, 4vw, 52px);
  margin-bottom: 32px;
}
.form-headline { font-size: clamp(28px, 3.5vw, 44px); margin-bottom: 24px; }

.contact-form { 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: 6px; }
.form-group label {
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--muted);
}
.form-group input, .form-group textarea, .form-group select {
  padding: 14px 16px;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  background: var(--surface);
  font-family: 'Inter Tight', sans-serif; font-size: 16px;
  color: var(--ink); outline: none;
  transition: border-color 180ms;
  width: 100%;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--primary);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 16px 32px; border-radius: var(--radius-btn);
  background: var(--primary); color: var(--canvas);
  font-family: 'Inter Tight', sans-serif; font-size: 15px; font-weight: 600;
  border: none; cursor: pointer; transition: filter 180ms;
  align-self: flex-start;
}
.form-submit:hover { filter: brightness(0.88); }
.form-submit svg { width: 18px; height: 18px; }

.contact-info-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 36px;
  border: 1px solid var(--border);
}
.contact-info-card h3 { font-size: 22px; margin-bottom: 24px; }
.info-block { display: flex; flex-direction: column; gap: 20px; }
.info-item { display: flex; align-items: flex-start; gap: 14px; }
.info-icon {
  flex-shrink: 0; width: 40px; height: 40px;
  background: var(--primary-tint);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
}
.info-icon svg { width: 20px; height: 20px; color: var(--primary); }
.info-item-label {
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 2px;
}
.info-item-value { font-size: 16px; color: var(--ink); line-height: 1.5; }
.info-item-value a { color: var(--primary); }
.info-divider { border: none; border-top: 1px solid var(--border); margin: 4px 0; }

/* contact.html */
.contact-info { background: var(--surface); border-radius: var(--radius); padding: 36px; border: 1px solid var(--border); }
.contact-info-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
.contact-info-icon { flex-shrink: 0; width: 40px; height: 40px; background: var(--primary-tint); border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.contact-info-icon svg { width: 20px; height: 20px; color: var(--primary); }
.contact-info-label { font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 2px; }
.contact-info-val { font-size: 16px; color: var(--ink); }
.contact-info-val a { color: var(--primary); }

.service-area-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 4px; }
.social-links { display: flex; gap: 10px; margin-top: 4px; }
.social-link {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--primary-tint); color: var(--primary);
  transition: background 180ms;
}
.social-link:hover { background: var(--primary); color: var(--canvas); text-decoration: none; }
.social-link svg { width: 18px; height: 18px; }

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

/* ============================================================
   PAGE HEADER (sub-pages)
   ============================================================ */
.page-header {
  min-height: clamp(280px, 40vh, 480px);
  display: flex; align-items: flex-end;
}
.page-header-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(31,27,22,0.72) 0%, rgba(31,27,22,0.30) 100%);
}
.page-header-inner {
  position: relative; z-index: 2;
  max-width: var(--content-max); margin-inline: auto;
  padding: clamp(40px, 6vh, 72px) clamp(20px, 5vw, 48px);
  width: 100%;
}
.page-header-eyebrow { color: rgba(244,239,230,0.72); margin-bottom: 10px; }
.page-header-title, .page-header-inner h1 {
  font-size: clamp(48px, 7vw, 96px);
  color: var(--canvas); line-height: 0.98;
}
.page-header-sub, .page-sub {
  font-size: clamp(15px, 1.5vw, 18px);
  color: rgba(244,239,230,0.78); margin-top: 12px;
}
.page-title {
  font-size: clamp(48px, 7vw, 96px);
  color: var(--canvas); line-height: 0.98;
}
.page-eyebrow { color: rgba(244,239,230,0.72); }

/* ============================================================
   SERVICE FEATURE BLOCKS (services.html)
   ============================================================ */
.feature-blocks {
  background: var(--canvas);
  padding-block: var(--section-py);
}
.feature-block-wrap-alt {
  background: var(--surface);
  padding-block: var(--section-py);
}
.feature-block {
  max-width: var(--content-max); margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.feature-block.reverse { direction: rtl; }
.feature-block.reverse > * { direction: ltr; }

.feature-block-photo {
  overflow: hidden; border-radius: var(--radius);
}
.feature-block-photo img {
  width: 100%; aspect-ratio: 4 / 3;
  object-fit: cover; max-height: none !important;
  border: var(--frame-border) !important;
  border-radius: var(--frame-radius);
}

.feature-block-body { display: flex; flex-direction: column; gap: 16px; }
.feature-block-body h2 { font-size: clamp(28px, 3.5vw, 46px); margin-top: 8px; }
.feature-block-body p { font-size: 17px; color: var(--muted); line-height: 1.7; }
.feature-block-bullets { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.feature-block-bullets li {
  padding-left: 20px; position: relative;
  font-size: 15px; color: var(--ink-mid); line-height: 1.6;
}
.feature-block-bullets li::before {
  content: '';
  position: absolute; left: 0; top: 10px;
  width: 8px; height: 2px;
  background: var(--primary);
}
.feature-block-body a { align-self: flex-start; }

@media (max-width: 900px) {
  .feature-block { grid-template-columns: 1fr; direction: ltr; }
  .feature-block.reverse { direction: ltr; }
  .feature-block-photo { order: -1; }
}

/* ============================================================
   ABOUT STORY
   ============================================================ */
.about-story {
  background: var(--canvas);
  padding-block: var(--section-py);
}
.about-story-inner {
  max-width: var(--content-max); margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.about-portrait-col { display: flex; flex-direction: column; gap: 12px; }
.portrait-frame {
  overflow: hidden; border-radius: var(--radius);
}
.portrait-frame img {
  width: 100%; aspect-ratio: 3 / 4;
  object-fit: cover; max-height: none !important;
  border: var(--frame-border) !important;
}
.portrait-caption {
  font-size: 13px; color: var(--muted);
  font-style: italic; text-align: center;
}

.about-copy-col { display: flex; flex-direction: column; gap: 20px; }
.about-headline { font-size: clamp(32px, 4.5vw, 60px); margin-top: 6px; }
.about-body p { font-size: 17px; line-height: 1.72; color: var(--ink-mid); margin-bottom: 14px; }
.about-chips { display: flex; flex-wrap: wrap; gap: 8px; }

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

/* ============================================================
   MISSION / VISION
   ============================================================ */
.mission-vision {
  background: var(--surface);
  padding-block: var(--section-py);
}
.mv-inner {
  max-width: var(--content-max); margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.mv-block {
  padding: 40px;
  background: var(--canvas);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 12px;
}
.mv-label {
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--primary);
}
.mv-block h3 { font-size: clamp(22px, 2.5vw, 30px); }
.mv-text { font-size: 16px; color: var(--ink-mid); line-height: 1.68; }

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

/* ============================================================
   VALUES SECTION
   ============================================================ */
.values-section {
  background: var(--canvas);
  padding-block: var(--section-py);
}
.values-inner {
  max-width: var(--content-max); margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
  display: flex; flex-direction: column; gap: 48px;
}
.values-header { max-width: 48ch; }
.values-headline { font-size: clamp(32px, 4vw, 52px); margin-top: 8px; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.value-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 10px;
}
.value-num {
  font-family: 'DM Serif Display', serif;
  font-size: 40px; line-height: 1;
  color: var(--primary); opacity: 0.35;
}
.value-card h3 { font-size: 18px; }
.value-body { font-size: 14px; color: var(--muted); line-height: 1.6; }

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

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--ink);
  color: rgba(244,239,230,0.72);
  padding-top: clamp(64px, 8vh, 96px);
}
.footer-inner {
  max-width: var(--content-max); margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
  display: grid;
  grid-template-columns: 240px repeat(3, 1fr);
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand { display: flex; flex-direction: column; gap: 12px; }
.footer-brand-name {
  font-family: 'DM Serif Display', serif;
  font-size: 18px; color: var(--canvas);
}
.footer-brand p, .footer-tagline {
  font-size: 14px; color: rgba(244,239,230,0.55); line-height: 1.6;
}
.footer-col-title, .footer-col-label {
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(244,239,230,0.45);
  margin-bottom: 16px;
}
.footer-col ul, .footer-links {
  list-style: none;
  display: flex; flex-direction: column; gap: 8px;
}
.footer-col a {
  font-size: 14px; color: rgba(244,239,230,0.65);
  text-decoration: none; transition: color 150ms;
}
.footer-col a:hover { color: var(--canvas); text-decoration: none; }

.footer-contact-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; color: rgba(244,239,230,0.65);
  margin-bottom: 8px;
}
.footer-contact-item a { color: rgba(244,239,230,0.65); }
.footer-contact-item a:hover { color: var(--canvas); text-decoration: none; }
.footer-contact-item svg { width: 16px; height: 16px; flex-shrink: 0; color: rgba(244,239,230,0.45); }

.footer-bottom {
  border-top: 1px solid rgba(244,239,230,0.10);
  padding: 20px clamp(20px, 5vw, 48px);
  max-width: var(--content-max); margin-inline: auto;
  width: 100%;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 8px;
  font-size: 13px; color: rgba(244,239,230,0.40);
}
.footer-copyright { font-size: 13px; color: rgba(244,239,230,0.40); }
.footer-legal { display: flex; gap: 16px; }
.footer-legal a { color: rgba(244,239,230,0.40); text-decoration: none; }
.footer-legal a:hover { color: var(--canvas); }
.footer-stars { display: flex; gap: 2px; }
.footer-stars svg { width: 14px; height: 14px; color: #e8b84b; }
.footer-rating { display: flex; align-items: center; gap: 8px; }

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

/* ============================================================
   MOBILE CTA PILL / STICKY CALL
   ============================================================ */
.mobile-sticky-cta, .mobile-cta, .mobile-cta-pill {
  position: fixed; bottom: 18px; right: 18px; z-index: 999;
  display: none;
}
.mobile-sticky-cta a, .mobile-cta a, .mobile-cta-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary); color: var(--canvas) !important;
  padding: 14px 22px; border-radius: var(--radius-pill);
  font-family: 'Inter Tight', sans-serif;
  font-size: 14px; font-weight: 600;
  text-decoration: none !important;
  box-shadow: 0 18px 40px -10px rgba(0,0,0,0.45);
  transition: filter 180ms;
}
.mobile-sticky-cta a:hover, .mobile-cta a:hover, .mobile-cta-pill:hover {
  filter: brightness(0.88); text-decoration: none !important;
}
.mobile-sticky-cta svg, .mobile-cta a svg, .mobile-cta-pill svg { width: 20px; height: 20px; }

.mobile-call-pill {
  position: fixed; bottom: 18px; right: 18px; z-index: 999;
  display: none;
  align-items: center; gap: 8px;
  background: var(--primary); color: var(--canvas) !important;
  padding: 14px 22px; border-radius: var(--radius-pill);
  font-family: 'Inter Tight', sans-serif;
  font-size: 14px; font-weight: 600;
  text-decoration: none !important;
  box-shadow: 0 18px 40px -10px rgba(0,0,0,0.45);
  transition: filter 180ms;
}
.mobile-call-pill:hover { filter: brightness(0.88); text-decoration: none !important; color: var(--canvas) !important; }
.mobile-call-pill svg { width: 20px; height: 20px; }

@media (max-width: 900px) {
  .mobile-sticky-cta { display: block; }
  .mobile-cta { display: block; }
  .mobile-cta-pill { display: inline-flex; }
  .mobile-call-pill { display: inline-flex; }
}

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

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

.stagger > *:nth-child(1)  { transition-delay: 0ms; }
.stagger > *:nth-child(2)  { transition-delay: 80ms; }
.stagger > *:nth-child(3)  { transition-delay: 160ms; }
.stagger > *:nth-child(4)  { transition-delay: 240ms; }
.stagger > *:nth-child(5)  { transition-delay: 320ms; }
.stagger > *:nth-child(6)  { transition-delay: 400ms; }
.stagger > *:nth-child(7)  { transition-delay: 480ms; }
.stagger > *:nth-child(8)  { transition-delay: 560ms; }

/* ============================================================
   PROCESS (unused in this brief, included for completeness)
   ============================================================ */
.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 (generic fallback)
   ============================================================ */
.review-card { padding: 28px; border-radius: 12px; background: var(--primary-tint8); }
.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; }

/* ============================================================
   MISC
   ============================================================ */
::selection { background: var(--primary-tint); color: var(--ink); }
:focus-visible { outline: 2px solid var(--primary); outline-offset: 3px; }

@media (max-width: 640px) {
  .cta-banner-actions { flex-direction: column; }
  .cta-banner-actions .btn { justify-content: center; }
  .team-cta-inner { flex-direction: column; align-items: flex-start; }
}


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