@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:        #960C0C;
  --accent:         #CB1E1E;
  --canvas:         #F4EFE6;
  --surface:        #FFFFFF;
  --ink:            #1F1B16;
  --muted:          #7A7268;
  --primary-tint:   rgba(150, 12, 12, 0.12);
  --primary-wash:   rgba(150, 12, 12, 0.08);
  --ink-hairline:   rgba(31, 27, 22, 0.10);
  --ink-hairline-md:rgba(31, 27, 22, 0.16);
  --border:         rgba(31, 27, 22, 0.10);
  --mount-color:    #F4EFE6;
  --mount-size:     12px;
  --radius:         12px;
  --radius-sm:      8px;
  --radius-pill:    999px;
  --header-height:  72px;
  --section-py:     clamp(96px, 12vh, 152px);
  --max-w:          1240px;
  --wide-w:         1400px;
}

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

/* ─────────────────────────────────────────
   GLOBAL RESET + SMOOTH SCROLL
───────────────────────────────────────── */
*, *::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 {
  background: var(--canvas);
  color: var(--ink);
  font-family: 'Inter Tight', system-ui, sans-serif;
  font-weight: 450;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ─────────────────────────────────────────
   UNIVERSAL IMAGE CAP
───────────────────────────────────────── */
img { max-width: 100%; height: auto; display: block; }

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

.nav img, header img, .header img, .nav-logo img, .logo img {
  max-height: 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,
.page-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,
.page-hero > 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; }

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

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

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

p { line-height: 1.68; }

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

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

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

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

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

/* ─────────────────────────────────────────
   SECTION EYEBROW / LABEL
───────────────────────────────────────── */
.section-eyebrow {
  display: inline-block;
  font-family: 'Inter Tight', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
}

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

.section-eyebrow-line::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--primary);
  flex-shrink: 0;
}

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

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

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

.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

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

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

.btn-phone {
  background: var(--primary);
  color: var(--canvas);
  border-color: var(--primary);
}
.btn-phone:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--canvas);
  text-decoration: none;
}

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

.btn-banner-primary {
  background: var(--canvas);
  color: var(--primary);
  border: 2px solid var(--canvas);
  font-family: 'Inter Tight', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-decoration: none;
  transition: all 200ms;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-banner-primary:hover { background: transparent; color: var(--canvas); text-decoration: none; }

.btn-banner-outline {
  background: transparent;
  color: var(--canvas);
  border: 2px solid rgba(244, 239, 230, 0.5);
  font-family: 'Inter Tight', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-decoration: none;
  transition: all 200ms;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-banner-outline:hover { border-color: var(--canvas); background: rgba(244,239,230,0.1); color: var(--canvas); text-decoration: none; }

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

/* ─────────────────────────────────────────
   SITE HEADER / NAV
───────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--canvas);
  border-bottom: 1px solid var(--ink-hairline);
}

.top-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  height: var(--header-height);
  max-width: 1320px;
  margin-inline: auto;
  padding: 0 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;
  list-style: none;
  padding: 0; margin: 0;
  gap: 28px;
  align-items: center;
}

.nav-pages a {
  display: inline-block;
  padding: 6px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  transition: color 150ms;
  letter-spacing: 0.01em;
}

.nav-pages a:hover {
  color: var(--primary);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

.nav-pages a[aria-current="page"] {
  color: var(--primary);
  border-bottom: 2px solid var(--primary);
  padding-bottom: 4px;
}

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

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ink);
  font-size: 24px;
  padding: 8px;
  line-height: 1;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .nav-toggle { display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; margin-left: auto; }
  .nav-pages {
    display: none;
    flex-direction: column;
    position: absolute;
    top: var(--header-height);
    left: 0; right: 0;
    background: var(--canvas);
    padding: 24px 28px;
    gap: 8px;
    border-bottom: 1px solid var(--ink-hairline);
    z-index: 850;
    justify-content: flex-start;
  }
  .nav-pages.open { display: flex; }
  .nav-pages a { font-size: 16px; padding: 10px 0; }
  .nav-cta span { display: none; }
  .top-nav { position: relative; }
}

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

.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.25) 0%,
    rgba(31, 27, 22, 0.55) 45%,
    rgba(150, 12, 12, 0.30) 100%
  );
}

.hero-inner {
  position: relative; z-index: 2;
  max-width: var(--max-w);
  margin-inline: auto;
  padding: clamp(48px, 8vw, 96px) clamp(20px, 4vw, 48px);
  padding-bottom: clamp(64px, 10vh, 112px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  width: 100%;
}

.hero-eyebrow {
  font-family: 'Inter Tight', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244, 239, 230, 0.80);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px; height: 2px;
  background: var(--accent);
}

.hero-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  font-size: clamp(56px, 9vw, 120px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: var(--canvas);
  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(244, 239, 230, 0.82);
  max-width: 48ch;
  line-height: 1.6;
  margin-bottom: 32px;
}

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

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

.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(150, 12, 12, 0.16);
  color: var(--canvas);
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
}

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

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

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

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

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

.marquee-wrap: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, 17px);
  line-height: 1.2;
  color: var(--muted);
  flex-shrink: 0;
}

.marquee-item::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--primary);
  margin-right: 24px;
  vertical-align: middle;
  position: relative;
  top: -1px;
}

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

/* ─────────────────────────────────────────
   MOUNTED PHOTO — THE SIGNATURE MOVE
───────────────────────────────────────── */
.photo-mount {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  outline: var(--mount-size) solid var(--mount-color);
  outline-offset: calc(-1 * var(--mount-size));
}

.photo-mount img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: none;
}

/* Portrait frame on about page */
.portrait-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  outline: var(--mount-size) solid var(--mount-color);
  outline-offset: calc(-1 * var(--mount-size));
}

.portrait-frame img {
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: cover;
}

.portrait-caption {
  font-family: 'Inter Tight', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-align: center;
  margin-top: 12px;
}

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

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

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

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

.services-header-text { flex: 1; min-width: 240px; }

.services-header h2 {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.0;
  margin-top: 8px;
}

.services-header-desc {
  font-size: 16px;
  color: var(--muted);
  max-width: 52ch;
  margin-top: 12px;
  line-height: 1.6;
}

.services-view-all {
  font-family: 'Inter Tight', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  letter-spacing: 0.06em;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding-bottom: 4px;
  border-bottom: 2px solid var(--primary);
  transition: gap 200ms;
}
.services-view-all:hover { gap: 10px; text-decoration: none; color: var(--primary); }

/* 6-card bento: flagship takes 2 cols on desktop */
.services-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

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

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

.service-card-flagship {
  grid-column: 1 / 3;
}

.service-card-img {
  position: relative;
  overflow: hidden;
  background: var(--canvas);
}

.service-card-flagship .service-card-img {
  aspect-ratio: 16 / 7;
}

.service-card:not(.service-card-flagship) .service-card-img {
  aspect-ratio: 4 / 3;
}

.service-card-img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  max-height: none;
  transition: transform 400ms ease-out;
}

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

/* Mounted print effect on service card images */
.service-card-img::after {
  content: '';
  position: absolute; inset: 0;
  box-shadow: inset 0 0 0 var(--mount-size) var(--surface);
  border-radius: inherit;
  pointer-events: none;
  z-index: 1;
}

.service-card-body {
  padding: 20px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

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

.service-card-body h3 {
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}

.service-card-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
  flex: 1;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.04em;
  margin-top: 12px;
}
.service-card-link svg { width: 16px; height: 16px; transition: transform 200ms; }
.service-card:hover .service-card-link svg { transform: translateX(3px); }

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

@media (max-width: 600px) {
  .services-bento { grid-template-columns: 1fr; }
  .service-card-flagship { grid-column: auto; }
}

/* ─────────────────────────────────────────
   SERVICES DETAIL (services.html)
───────────────────────────────────────── */
.services-intro {
  background: var(--canvas);
  padding: clamp(48px, 6vw, 80px) 0;
  border-bottom: 1px solid var(--ink-hairline);
}

.services-intro-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.services-intro-inner h2 {
  font-size: clamp(32px, 4vw, 52px);
  max-width: 18ch;
}

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

/* Feature block (alternating service sections) */
.feature-block {
  padding: var(--section-py) 0;
}

.feature-block.canvas { background: var(--canvas); }
.feature-block.surface { background: var(--surface); }

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

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

.feature-photo {
  position: relative;
}

.feature-photo .photo-mount {
  aspect-ratio: 4 / 5;
  max-height: 580px;
}

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

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

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

.feature-body h2 {
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.feature-desc {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 52ch;
}

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

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

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

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

@media (max-width: 900px) {
  .feature-block-inner {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .feature-block-inner.reverse { direction: ltr; }
  .feature-photo .photo-mount { max-height: 380px; aspect-ratio: 3 / 2; }
}

/* ─────────────────────────────────────────
   ABOUT SECTION
───────────────────────────────────────── */
.about-section {
  background: var(--surface);
  padding: var(--section-py) 0;
}

.about-wrap {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(48px, 7vw, 96px);
  align-items: start;
}

.about-portrait-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  position: sticky;
  top: calc(var(--header-height) + 24px);
}

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

.about-headline {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  margin-top: 8px;
}

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

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

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

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

.about-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  border-bottom: 2px solid var(--primary);
  padding-bottom: 2px;
  transition: gap 200ms;
}
.about-link:hover { gap: 12px; text-decoration: none; color: var(--primary); }
.about-link svg { width: 16px; height: 16px; }

@media (max-width: 900px) {
  .about-wrap { grid-template-columns: 1fr; }
  .about-portrait-col { position: static; }
}

/* ─────────────────────────────────────────
   AREAS STRIP (about.html)
───────────────────────────────────────── */
.areas-strip {
  background: var(--canvas);
  padding: var(--section-py) 0;
  border-top: 1px solid var(--ink-hairline);
}

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

.areas-inner h2 {
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.08;
  margin-bottom: 16px;
  margin-top: 8px;
}

.areas-inner p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.68;
  margin-bottom: 20px;
}

.areas-pills {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.areas-pills li, .area-chip {
  display: inline-flex;
  align-items: center;
  background: var(--primary-tint);
  color: var(--primary);
  font-family: 'Inter Tight', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: var(--radius-pill);
}

.services-col { }

.services-col h3 {
  font-size: clamp(20px, 2.5vw, 30px);
  line-height: 1.1;
  margin-bottom: 20px;
  margin-top: 8px;
}

.services-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.services-list li {
  font-size: 15px;
  color: var(--ink);
  padding: 10px 0;
  border-bottom: 1px solid var(--ink-hairline);
  display: flex;
  align-items: center;
  gap: 10px;
}

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

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

/* ─────────────────────────────────────────
   REVIEWS
───────────────────────────────────────── */
.reviews {
  background: var(--surface);
  padding: var(--section-py) 0;
}

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

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

.reviews-header h2 {
  font-size: clamp(32px, 4vw, 56px);
  margin-top: 8px;
}

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

.review-card {
  background: var(--canvas);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--ink-hairline);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.review-stars svg {
  width: 18px; height: 18px;
  color: var(--primary);
  fill: var(--primary);
  flex-shrink: 0;
}

.review-quote {
  font-family: 'DM Serif Display', Georgia, serif;
  font-style: italic;
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.48;
  color: var(--ink);
  flex: 1;
  margin-bottom: 18px;
}

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

.review-attribution span {
  font-weight: 700;
  color: var(--ink);
}

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

/* ─────────────────────────────────────────
   GALLERY (index.html preview)
───────────────────────────────────────── */
.gallery {
  background: var(--canvas);
  padding: var(--section-py) 0;
}

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

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

.gallery-header h2 {
  font-size: clamp(32px, 4vw, 56px);
  margin-top: 8px;
}

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

.gallery-tile {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  position: relative;
  background: var(--ink-hairline);
  outline: var(--mount-size) solid var(--canvas);
  outline-offset: calc(-1 * var(--mount-size));
}

.gallery-tile img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  max-height: none;
  transition: transform 400ms ease-out;
}

.gallery-tile:hover img { transform: scale(1.05); }

.gallery-tile-tall {
  grid-row: 1 / 3;
  aspect-ratio: auto;
  min-height: 360px;
}

.gallery-more {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

.gallery-more a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--primary);
  border-bottom: 2px solid var(--primary);
  padding-bottom: 2px;
  text-decoration: none;
  transition: gap 200ms;
}
.gallery-more a:hover { gap: 12px; text-decoration: none; }

@media (max-width: 700px) {
  .gallery-grid-preview { grid-template-columns: repeat(2, 1fr); }
  .gallery-tile-tall { grid-row: auto; min-height: auto; }
}

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

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

.gallery-section-header {
  max-width: var(--max-w);
  margin-inline: auto;
  margin-bottom: 40px;
}

.gallery-section-header h2 {
  font-size: clamp(32px, 4vw, 56px);
  margin-top: 8px;
}

.filter-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.filter-pill {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--muted);
  font-family: 'Inter Tight', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--ink-hairline-md);
  cursor: pointer;
  transition: all 200ms;
}
.filter-pill:hover,
.filter-pill.active {
  background: var(--primary-tint);
  color: var(--primary);
  border-color: transparent;
}

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

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

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

.gallery-card-featured {
  grid-column: 1 / 3;
}

.gallery-card-img-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--canvas);
  outline: var(--mount-size) solid var(--surface);
  outline-offset: calc(-1 * var(--mount-size));
}

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

.gallery-card-img-wrap img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  max-height: none;
  transition: transform 400ms ease-out;
}
.gallery-card:hover .gallery-card-img-wrap img { transform: scale(1.04); }

.gallery-card-badge {
  position: absolute;
  top: 12px; left: 12px;
  z-index: 2;
  background: var(--primary);
  color: var(--canvas);
  font-family: 'Inter Tight', sans-serif;
  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: 12px; right: 12px;
  z-index: 2;
  background: rgba(31, 27, 22, 0.55);
  color: var(--canvas);
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

.gallery-card-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.gallery-card-body h3 {
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.gallery-card-location {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}
.gallery-card-location svg { width: 13px; height: 13px; }

.gallery-card-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
  flex: 1;
}

.gallery-card-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--ink-hairline);
}

.gallery-meta-item {
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px;
  color: var(--muted);
}

.gallery-meta-label {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink);
}

.gallery-meta-val { color: var(--muted); }

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

/* ─────────────────────────────────────────
   TEAM CTA STRIP
───────────────────────────────────────── */
.team-cta {
  background: var(--ink);
  padding: clamp(48px, 6vw, 72px) 0;
}

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

.team-cta-text {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(24px, 3vw, 40px);
  color: var(--canvas);
  line-height: 1.1;
  max-width: 32ch;
}

.team-cta-inner a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: var(--canvas);
  font-family: 'Inter Tight', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 16px 30px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background 200ms, transform 200ms;
  white-space: nowrap;
  flex-shrink: 0;
}
.team-cta-inner a:hover {
  background: var(--accent);
  text-decoration: none;
  color: var(--canvas);
  transform: translateY(-1px);
}

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

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

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

.faq-header h2 {
  font-size: clamp(32px, 4vw, 52px);
  margin-top: 8px;
}

details.fade-up {
  border-bottom: 1px solid var(--ink-hairline);
  padding: 20px 0;
}

details.fade-up > summary {
  cursor: pointer;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 17px;
  line-height: 1.4;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--ink);
}

details.fade-up > summary::-webkit-details-marker { display: none; }

details.fade-up > summary::after {
  content: "+";
  font-family: 'Inter Tight', sans-serif;
  font-weight: 300;
  font-size: 24px;
  color: var(--muted);
  transition: transform 200ms, color 200ms;
  flex-shrink: 0;
  line-height: 1;
}

details.fade-up[open] > summary::after {
  transform: rotate(45deg);
  color: var(--primary);
}

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

details.faq > summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

details.faq > summary::after {
  content: "+";
  font-weight: 300;
  transition: transform 200ms;
}

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

details.faq p { margin-top: 12px; line-height: 1.6; }

.faq-answer {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  padding-top: 12px;
  max-width: 68ch;
}

/* ─────────────────────────────────────────
   CTA BANNER
───────────────────────────────────────── */
.cta-banner {
  background: var(--ink);
  padding: var(--section-py) 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--primary-wash);
  pointer-events: none;
}

.cta-banner-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cta-banner-eyebrow {
  font-family: 'Inter Tight', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244, 239, 230, 0.60);
}

.cta-banner-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--canvas);
  max-width: 16ch;
}
.cta-banner-title em { font-style: italic; }

.cta-banner-sub {
  font-size: 17px;
  color: rgba(244, 239, 230, 0.72);
  max-width: 52ch;
  line-height: 1.65;
}

.cta-banner-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 8px;
}

.cta-banner-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: rgba(244, 239, 230, 0.72);
  text-decoration: none;
  transition: color 150ms;
}
.cta-banner-phone:hover { color: var(--canvas); text-decoration: none; }

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

.contact-inner,
.contact-grid {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(48px, 6vw, 80px);
  align-items: start;
}

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

.contact-form-wrap h2,
.contact-form-side h2 {
  font-size: clamp(28px, 3.5vw, 46px);
  line-height: 1.05;
  margin-bottom: 28px;
  margin-top: 8px;
}

.form-intro {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 28px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

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

.form-group.full { grid-column: 1 / -1; }

.form-group label {
  font-family: 'Inter Tight', sans-serif;
  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 {
  background: var(--surface);
  border: 1.5px solid var(--ink-hairline-md);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 16px;
  font-weight: 450;
  color: var(--ink);
  outline: none;
  transition: border-color 200ms;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--muted);
  opacity: 0.65;
}

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

.contact-submit {
  display: flex;
  justify-content: flex-start;
  margin-top: 8px;
}

/* Info column */
.contact-info-col,
.contact-info-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 36px;
  border: 1px solid var(--ink-hairline);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-title,
.info-card-headline,
.info-card-eyebrow {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(20px, 2.5vw, 30px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.info-card-eyebrow {
  font-family: 'Inter Tight', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: -12px;
}

.contact-info-item,
.info-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-info-icon,
.info-icon {
  width: 40px; height: 40px;
  background: var(--primary-tint);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
}

.contact-info-icon svg,
.info-icon svg {
  width: 18px; height: 18px;
  color: var(--primary);
}

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

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

.contact-info-value a,
.info-value a {
  color: var(--primary);
  text-decoration: none;
  transition: color 150ms;
}
.contact-info-value a:hover,
.info-value a:hover { color: var(--accent); text-decoration: underline; }

.service-area-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 4px;
}

.social-row {
  display: flex;
  gap: 10px;
  align-items: center;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  background: var(--canvas);
  border-radius: 50%;
  border: 1.5px solid var(--ink-hairline-md);
  color: var(--muted);
  text-decoration: none;
  transition: background 200ms, color 200ms, border-color 200ms;
}
.social-link:hover {
  background: var(--primary-tint);
  color: var(--primary);
  border-color: transparent;
  text-decoration: none;
}
.social-link svg { width: 16px; height: 16px; }

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

/* ─────────────────────────────────────────
   PAGE HEADER / SUB-PAGE HEROES
───────────────────────────────────────── */
.page-header {
  min-height: clamp(220px, 40vh, 400px);
  display: flex;
  align-items: flex-end;
}

.page-header-overlay,
.page-hero-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.35) 50%,
    rgba(31, 27, 22, 0.15) 100%
  );
}

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

.page-header-eyebrow {
  font-family: 'Inter Tight', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244, 239, 230, 0.72);
  margin-bottom: 10px;
}

.page-header-inner h1 {
  font-size: clamp(40px, 6vw, 80px);
  color: var(--canvas);
  line-height: 1.0;
  max-width: 16ch;
}

.page-header-sub {
  font-size: 17px;
  color: rgba(244, 239, 230, 0.75);
  max-width: 52ch;
  line-height: 1.6;
  margin-top: 14px;
}

/* About page hero (.page-hero) */
.page-hero {
  min-height: clamp(280px, 50vh, 480px);
  display: flex;
  align-items: flex-end;
}

.page-hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
  z-index: 0;
}

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

.page-hero-eyebrow {
  font-family: 'Inter Tight', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244, 239, 230, 0.72);
  margin-bottom: 10px;
}

.page-hero-title {
  font-size: clamp(40px, 6vw, 80px);
  color: var(--canvas);
  line-height: 1.0;
  max-width: 16ch;
  letter-spacing: -0.025em;
}

.page-hero-sub {
  font-size: 17px;
  color: rgba(244, 239, 230, 0.75);
  max-width: 52ch;
  line-height: 1.6;
  margin-top: 14px;
}

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
.site-footer {
  background: var(--ink);
  color: rgba(244, 239, 230, 0.72);
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(244, 239, 230, 0.12);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

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

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

.footer-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--canvas);
  text-decoration: none;
  transition: color 150ms;
}
.footer-phone-link:hover { color: var(--accent); text-decoration: none; }
.footer-phone-link svg { width: 16px; height: 16px; }

.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contacts a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(244, 239, 230, 0.65);
  text-decoration: none;
  transition: color 150ms;
}
.footer-contacts a:hover { color: var(--canvas); text-decoration: none; }
.footer-contacts a svg { width: 15px; height: 15px; }

.footer-col-title,
.footer-col-head {
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--canvas);
  margin-bottom: 16px;
}

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

.footer-col li a,
.footer-nav-list li a,
.footer-links li a {
  font-size: 14px;
  color: rgba(244, 239, 230, 0.60);
  text-decoration: none;
  transition: color 150ms;
  line-height: 1.4;
}

.footer-col li a:hover,
.footer-nav-list li a:hover,
.footer-links li a:hover {
  color: var(--canvas);
  text-decoration: none;
}

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

.footer-contact-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 8px;
}
.footer-contact-list li { font-size: 14px; color: rgba(244, 239, 230, 0.60); }
.footer-contact-list li a { color: rgba(244, 239, 230, 0.60); text-decoration: none; }
.footer-contact-list li a:hover { color: var(--canvas); }

.footer-contact-line {
  font-size: 14px;
  color: rgba(244, 239, 230, 0.60);
  line-height: 1.5;
}
.footer-contact-line a { color: rgba(244, 239, 230, 0.60); text-decoration: none; }
.footer-contact-line a:hover { color: var(--canvas); }

.footer-hours-block { margin-top: 8px; }

.footer-hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(244, 239, 230, 0.55);
  padding: 5px 0;
  border-bottom: 1px solid rgba(244, 239, 230, 0.08);
}
.footer-hours-row strong { color: rgba(244, 239, 230, 0.80); font-weight: 600; }

.footer-hours-text {
  font-size: 13px;
  color: rgba(244, 239, 230, 0.55);
  line-height: 1.9;
}

.footer-socials {
  display: flex;
  gap: 10px;
  align-items: center;
}
.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  background: rgba(244, 239, 230, 0.08);
  border-radius: 50%;
  color: rgba(244, 239, 230, 0.60);
  text-decoration: none;
  transition: background 200ms, color 200ms;
}
.footer-socials a:hover {
  background: var(--primary);
  color: var(--canvas);
  text-decoration: none;
}
.footer-socials a svg { width: 15px; height: 15px; }

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

.footer-copy {
  font-size: 13px;
  color: rgba(244, 239, 230, 0.40);
}

.footer-bottom span {
  font-size: 13px;
  color: rgba(244, 239, 230, 0.40);
}

.footer-bottom-links,
.footer-legal-links {
  display: flex;
  gap: 20px;
  list-style: none;
  padding: 0; margin: 0;
  flex-wrap: wrap;
}

.footer-bottom-links a,
.footer-legal-links li a {
  font-size: 13px;
  color: rgba(244, 239, 230, 0.40);
  text-decoration: none;
  transition: color 150ms;
}

.footer-bottom-links a:hover,
.footer-legal-links li a:hover {
  color: rgba(244, 239, 230, 0.80);
  text-decoration: none;
}

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

/* ─────────────────────────────────────────
   MOBILE CALL PILL
───────────────────────────────────────── */
.mobile-call-pill,
.mobile-cta-pill,
.mobile-sticky-cta {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

a.mobile-cta-pill:hover,
.mobile-call-pill a:hover,
.mobile-sticky-cta a:hover {
  background: var(--accent);
  text-decoration: none;
  color: var(--canvas);
  transform: translateY(-2px);
}

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

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

/* ─────────────────────────────────────────
   ANIMATION UTILITIES
───────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 600ms ease-out, transform 600ms ease-out;
}

.fade-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 600ms ease-out, transform 600ms ease-out;
}

.fade-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 600ms ease-out, transform 600ms ease-out;
}

.scale-in {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 600ms ease-out, transform 600ms ease-out;
}

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

/* ─────────────────────────────────────────
   SECTION BACKGROUND CLASSES
───────────────────────────────────────── */
.canvas { background: var(--canvas); }
.surface { background: var(--surface); }

/* ─────────────────────────────────────────
   SVG CAPS (all inline SVGs without size)
───────────────────────────────────────── */
.hero-ctas svg,
.btn svg,
.nav-cta svg,
.nav-cta-icon,
.about-link svg,
.service-card-link svg,
.gallery-card-location svg,
.contact-info-icon svg,
.info-icon svg,
.footer-contacts svg,
.footer-phone-link svg,
.footer-contact-item svg,
.social-link svg,
.footer-socials svg,
.portrait-badge svg,
.cta-banner-phone svg,
.about-chip svg,
.team-cta-inner a svg,
.services-view-all svg {
  width: 18px; height: 18px;
  flex-shrink: 0;
}

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

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

.contact-info-icon svg,
.info-icon svg { width: 18px; height: 18px; }

/* ─────────────────────────────────────────
   MISC HELPERS
───────────────────────────────────────── */
.full { grid-column: 1 / -1; }

.reverse {
  /* Layout flip — use order, not transform */
}

/* Services intro section */
.services-intro-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

/* Info card */
.info-card-headline {
  font-size: clamp(20px, 2.5vw, 32px);
}

/* Page hero inner content must be visible */
.page-hero-inner h1,
.page-header-inner h1 {
  position: relative; z-index: 2;
}

/* ─────────────────────────────────────────
   RESPONSIVE EXTRAS
───────────────────────────────────────── */
@media (max-width: 640px) {
  .hero { min-height: 88vh; }
  .hero-title { max-width: 100%; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .trust-strip-inner { justify-content: flex-start; }
  .cta-banner-actions { flex-direction: column; align-items: flex-start; }
  .team-cta-inner { flex-direction: column; align-items: flex-start; }
  .gallery-tile-tall { grid-row: auto; }
  .contact-info-col, .contact-info-card { padding: 24px; }
  details.fade-up > summary { font-size: 15px; }
}

@media (min-width: 900px) and (max-width: 1200px) {
  .services-bento { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr 1fr; gap: 32px; }
}

/* Grain texture overlay */
body::after {
  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='1'/%3E%3C/svg%3E");
  opacity: 0.025;
  pointer-events: none;
  z-index: 9998;
}


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