@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400;1,600&family=Inter+Tight:wght@400;500;600&family=IBM+Plex+Mono:wght@400;500&display=swap');

/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --primary:        #2fa337;
  --primary-dim:    #247d2b;
  --primary-ghost:  rgba(47, 163, 55, 0.12);
  --accent:         #CCCCCC;
  --canvas:         #0C0C0F;
  --surface:        #1A1814;
  --surface-2:      #221F1A;
  --ink:            #F4F1EA;
  --ink-mid:        #C8C4BB;
  --muted:          #8E8A82;
  --border:         rgba(244, 241, 234, 0.10);
  --border-brand:   rgba(47, 163, 55, 0.35);
  --shadow-card:    0 24px 64px -16px rgba(0,0,0,0.55);
  --shadow-pill:    0 18px 40px -10px rgba(0,0,0,0.55);
  --radius:         4px;
  --radius-pill:    999px;
  --header-height:  72px;
  --section-y:      clamp(112px, 14vh, 180px);
}

@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;
  background: var(--canvas);
  color: var(--ink);
}

body {
  font-family: 'Inter Tight', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.68;
  background: var(--canvas);
  color: var(--ink);
  overflow-x: hidden;
  -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: 44px !important;
  max-width: 200px !important;
  width: auto !important;
  align-self: flex-start !important;
  object-fit: contain !important;
  flex: 0 0 auto !important;
}

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

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

.page-header, [class*="page-header"], .about-feature, .about-hero {
  position: relative; overflow: hidden; max-height: 64vh;
}
.page-header > img, [class*="page-header"] > img, .page-header-bg,
.about-feature > img:first-of-type, .about-hero-bg,
.page-header img:first-of-type {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
  z-index: 0;
}

section > img:first-child:not([class*="logo"]):not(.nav-logo) {
  max-height: 64vh; object-fit: cover;
}
section img:not(.hero-bg):not(.page-header-bg):not([class*="full-bleed"]):not([class*="logo"]) {
  max-height: 720px;
}

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

/* Headings with anchor links */
h1 a, h2 a, h3 a, .hero-title a, .hero-eyebrow a, .hero-sub a {
  color: inherit; text-decoration: none; border-bottom: 0;
}

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

ul { list-style: none; }

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

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

/* ============================================================
   TYPOGRAPHY SCALE
   ============================================================ */
.display-font,
.hero-title,
.about-headline,
.section-title,
.values-title,
.areas-title,
.ph-title,
.page-header-title,
.cta-headline,
.cta-banner-title,
.contact-form-heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-style: italic;
  line-height: 0.97;
  letter-spacing: -0.02em;
}

.hero-title    { font-size: clamp(72px, 9vw, 144px); max-width: 14ch; }
.about-headline { font-size: clamp(44px, 5.5vw, 80px); }
.section-title  { font-size: clamp(36px, 5vw, 72px); }
.values-title   { font-size: clamp(36px, 5vw, 72px); }
.areas-title    { font-size: clamp(36px, 5vw, 72px); }
.ph-title, .page-header-title { font-size: clamp(48px, 7vw, 100px); max-width: 18ch; }
.cta-headline, .cta-banner-title { font-size: clamp(40px, 6vw, 84px); max-width: 18ch; }
.contact-form-heading { font-size: clamp(36px, 4.5vw, 64px); max-width: 20ch; }

/* Service h2s on services-detail page */
.feature-block h2,
.services-detail h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-style: italic;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.0;
  letter-spacing: -0.02em;
}

/* Intro h2 on services page */
.services-intro h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-style: italic;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.0;
  letter-spacing: -0.02em;
}

/* The unique move: italic Cormorant words inside body copy */
.accent-word,
.about-body em,
.about-body strong {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 1.25em;
  font-weight: 600;
  color: var(--primary);
  line-height: 1;
  display: inline;
}

/* Labels / eyebrows */
.section-label,
.section-eyebrow,
.hero-eyebrow,
.about-eyebrow,
.values-eyebrow,
.areas-eyebrow,
.ph-eyebrow,
.page-header-eyebrow,
.page-eyebrow,
.cta-eyebrow,
.cta-banner-eyebrow,
.contact-form-label,
.contact-info-label,
.info-block-label,
.footer-col-label,
.footer-col-title,
.portrait-caption-label,
.section-sub {
  font-family: 'IBM Plex Mono', 'Courier New', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 12px;
}

.section-label { color: var(--primary); }
.hero-eyebrow  { color: var(--primary); margin-bottom: 16px; }

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

.scroll-progress { background: var(--primary); height: 2px; }

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

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

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

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

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

.nav-pages a {
  display: inline-block;
  padding: 6px 0;
  font-family: 'Inter Tight', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-mid);
  text-decoration: none;
  transition: color 150ms;
  border-bottom: 2px solid transparent;
}

.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);
  text-decoration: none;
}

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

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

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

  .nav-pages {
    display: none;
    flex-direction: column;
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--canvas);
    padding: 24px 28px;
    gap: 4px;
    border-bottom: 1px solid var(--border);
    z-index: 901;
    justify-content: flex-start;
  }
  .nav-pages.open { display: flex; }
  .nav-pages a { font-size: 17px; padding: 10px 0; color: var(--ink); }

  .nav-cta .nav-cta-text { display: none; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn,
.btn-primary,
.btn-primary-lg,
.btn-ghost,
.btn-ghost-lg,
.btn-outline,
.btn-service,
.form-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: filter 200ms ease, transform 200ms ease, box-shadow 200ms ease;
  border-radius: var(--radius);
  white-space: nowrap;
}
.btn:hover, .btn-primary:hover, .btn-primary-lg:hover { text-decoration: none; }

.btn-primary,
.btn-primary-lg {
  background: var(--primary);
  color: var(--canvas);
  border: 2px solid var(--primary);
  padding: 18px 32px;
  font-size: 15px;
}
.btn-primary-lg { padding: 20px 40px; font-size: 16px; }
.btn-primary:hover, .btn-primary-lg:hover { filter: brightness(0.9); color: var(--canvas); }

.btn-ghost,
.btn-ghost-lg {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid rgba(244, 241, 234, 0.35);
  padding: 18px 32px;
  font-size: 15px;
}
.btn-ghost-lg { padding: 20px 40px; font-size: 16px; }
.btn-ghost:hover, .btn-ghost-lg:hover {
  border-color: var(--ink);
  color: var(--ink);
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
  padding: 14px 28px;
  font-size: 14px;
}
.btn-outline:hover { background: var(--primary); color: var(--canvas); text-decoration: none; }

.btn-service {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: gap 200ms ease;
}
.btn-service:hover { gap: 14px; text-decoration: none; color: var(--primary); }
.btn-service svg { width: 16px; height: 16px; flex: 0 0 auto; }

.form-submit {
  background: var(--primary);
  color: var(--canvas);
  border: none;
  padding: 18px 36px;
  font-size: 15px;
  font-weight: 600;
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}
.form-submit:hover { filter: brightness(0.9); transform: translateY(-1px); }
.form-submit svg { width: 18px; height: 18px; flex: 0 0 auto; }

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

#hero > img:first-of-type,
.hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 25%;
  z-index: 0;
  filter: grayscale(15%) brightness(0.82);
}

.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse at 0% 100%, rgba(47, 163, 55, 0.18) 0%, transparent 60%),
    linear-gradient(
      to top,
      rgba(12, 12, 15, 0.92) 0%,
      rgba(12, 12, 15, 0.72) 35%,
      rgba(12, 12, 15, 0.48) 65%,
      rgba(12, 12, 15, 0.78) 100%
    );
}

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

.hero-title {
  margin-bottom: 20px;
  color: var(--ink);
}

.hero-title .accent-word {
  font-size: inherit;
  color: var(--primary);
  display: inline;
}

.hero-sub {
  font-size: clamp(16px, 1.8vw, 20px);
  color: var(--ink-mid);
  line-height: 1.55;
  max-width: 52ch;
  margin-bottom: 36px;
}

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

.hero-ctas .btn svg,
.hero-ctas a svg {
  width: 18px; height: 18px; flex: 0 0 auto;
}

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

.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(244, 241, 234, 0.2);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mid);
  background: rgba(255,255,255,0.04);
}

.trust-chip.star { border-color: rgba(47, 163, 55, 0.4); color: var(--primary); }

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

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

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(244, 241, 234, 0.15);
  border-radius: var(--radius-pill);
  padding: 7px 16px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mid);
}

.trust-dot,
.trust-sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--primary);
  flex: 0 0 4px;
  display: inline-block;
  margin-inline: 6px;
}

/* ============================================================
   MARQUEE SECTION
   ============================================================ */
.marquee-section {
  overflow: hidden;
  padding: 22px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--canvas);
  position: relative;
  z-index: 1;
}

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

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

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: clamp(11px, 1.2vw, 14px);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  flex-shrink: 0;
}

.marquee-item span {
  color: var(--primary);
  font-size: 0.8em;
}

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

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  padding-block: var(--section-y);
  background: var(--canvas);
}

.services-header {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  margin-bottom: 56px;
}

.services-header h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-style: italic;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 0.97;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-top: 8px;
}

.section-sub {
  font-family: 'Inter Tight', sans-serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink-mid);
  margin-top: 14px;
  max-width: 52ch;
  line-height: 1.6;
}

/* Services bento grid */
.services-bento {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 2px;
}

/* Featured card spans full first row */
.service-card.featured {
  grid-column: 1 / 3;
  grid-row: 1;
  min-height: 460px;
}

.service-card {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 320px;
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
  text-decoration: none;
  color: var(--ink);
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
  text-decoration: none;
  z-index: 2;
}

.service-card > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
  filter: grayscale(25%) brightness(0.65);
  max-height: none !important;
}

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

.service-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(12,12,15,0.88) 0%, rgba(12,12,15,0.25) 60%, transparent 100%);
  z-index: 1;
}

.service-card-body {
  position: relative; z-index: 2;
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.service-card-num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
  display: block;
}

.service-card-body h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-style: italic;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.service-card.featured .service-card-body h3 { font-size: clamp(28px, 3.5vw, 48px); }

.service-card-desc {
  font-size: 14px;
  color: var(--ink-mid);
  line-height: 1.55;
  max-width: 42ch;
  margin-top: 4px;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 10px;
  transition: gap 200ms ease;
}
.service-card:hover .service-card-link { gap: 14px; }
.service-card-link svg { width: 14px; height: 14px; flex: 0 0 auto; }

.services-cta-row {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  margin-top: 48px;
  display: flex;
  justify-content: center;
}

/* Services grid responsive */
@media (max-width: 900px) {
  .services-bento {
    grid-template-columns: 1fr 1fr;
  }
  .service-card.featured { grid-column: 1 / 3; min-height: 360px; }
}
@media (max-width: 640px) {
  .services-bento { grid-template-columns: 1fr; }
  .service-card.featured { grid-column: 1; min-height: 280px; }
  .service-card { min-height: 260px; }
}

/* ============================================================
   GALLERY PREVIEW (homepage)
   ============================================================ */
.gallery-preview {
  padding-block: var(--section-y);
  background: var(--canvas);
}

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

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

.gallery-preview-header h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-style: italic;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 0.97;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.gallery-preview-header a {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 150ms;
}
.gallery-preview-header a:hover { opacity: 0.75; text-decoration: underline; }

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

.gallery-tile {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--surface);
  display: block;
}

/* First tile spans full first row left 2 cols */
.gallery-grid-home .gallery-tile:first-child {
  grid-column: 1 / 3;
  aspect-ratio: 16 / 9;
}

.gallery-tile > img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 600ms ease, filter 600ms ease;
  filter: grayscale(20%);
  max-height: none !important;
}

.gallery-tile:hover > img { transform: scale(1.05); filter: grayscale(0%); }

.gallery-tile-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(12,12,15,0.55) 0%, transparent 60%);
  z-index: 1;
  opacity: 0;
  transition: opacity 400ms ease;
}
.gallery-tile:hover .gallery-tile-overlay { opacity: 1; }

@media (max-width: 900px) {
  .gallery-grid-home { grid-template-columns: 1fr 1fr; }
  .gallery-grid-home .gallery-tile:first-child { grid-column: 1 / 3; aspect-ratio: 16/9; }
}
@media (max-width: 640px) {
  .gallery-grid-home { grid-template-columns: 1fr 1fr; }
  .gallery-grid-home .gallery-tile:first-child { grid-column: 1 / 3; }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  padding-block: var(--section-y);
  background: var(--canvas);
  border-top: 1px solid var(--border);
}

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

.faq-header h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-style: italic;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 0.97;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-top: 8px;
}

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

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

.faq-list details > summary,
details.faq > summary {
  cursor: pointer;
  font-family: 'Inter Tight', sans-serif;
  font-size: 17px;
  font-weight: 500;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  color: var(--ink);
  gap: 24px;
  transition: color 150ms;
}

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

.faq-list details > summary .faq-chevron,
details.faq > summary .faq-chevron {
  width: 20px; height: 20px;
  flex: 0 0 20px;
  color: var(--muted);
  transition: transform 250ms ease, color 250ms ease;
}

.faq-list details[open] > summary,
details.faq[open] > summary { color: var(--primary); }

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

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

.faq-body {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-mid);
  padding-bottom: 24px;
  max-width: 72ch;
}

/* ============================================================
   TEAM CTA
   ============================================================ */
.team-cta {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 0;
}

.team-cta-inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}

.team-cta-text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-style: italic;
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
  max-width: 22ch;
}

.team-cta-text em {
  color: var(--primary);
  font-style: italic;
}

.team-cta-inner > a {
  background: var(--primary);
  color: var(--canvas);
  padding: 18px 36px;
  border-radius: var(--radius);
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: filter 200ms;
}
.team-cta-inner > a:hover { filter: brightness(0.9); color: var(--canvas); text-decoration: none; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  padding-block: var(--section-y);
  background: var(--canvas);
}

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

.contact-grid > div { /* form col */ }

.contact-grid .section-label { margin-bottom: 12px; }

.contact-grid h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-style: italic;
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: 0.97;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 36px;
}

/* forms */
.contact-form,
form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

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

.form-label,
label.form-label,
.form-group label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-input,
input.form-input,
.form-group input,
.form-group select,
#fname, #email, #phone, #message, #name, #area, #service {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 15px;
  color: var(--ink);
  width: 100%;
  transition: border-color 200ms;
  appearance: none;
}

.form-input:focus,
.form-group input:focus,
.form-group select:focus,
#fname:focus, #email:focus, #phone:focus, #name:focus, #area:focus, #service:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(47, 163, 55, 0.15);
}

.form-textarea,
textarea.form-textarea,
.form-group textarea,
#message {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 15px;
  color: var(--ink);
  width: 100%;
  min-height: 140px;
  resize: vertical;
  transition: border-color 200ms;
}
.form-textarea:focus,
#message:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(47, 163, 55, 0.15);
}

input::placeholder, textarea::placeholder { color: var(--muted); opacity: 0.7; }

/* Contact info side */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border-brand);
  border-top: 2px solid var(--primary);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 32px;
}

.contact-info-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  display: block;
  margin-bottom: 6px;
}

.contact-info-value {
  font-size: 17px;
  color: var(--ink);
  line-height: 1.55;
  margin-bottom: 24px;
}
.contact-info-value a { color: var(--ink); text-decoration: none; transition: color 150ms; }
.contact-info-value a:hover { color: var(--primary); text-decoration: underline; }

.contact-phone-big {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-style: italic;
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--primary);
  display: block;
}

.social-row {
  display: flex;
  gap: 12px;
  margin-top: 4px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--muted);
  transition: color 200ms, border-color 200ms;
  text-decoration: none;
}
.social-link:hover { color: var(--primary); border-color: var(--primary); text-decoration: none; }
.social-link svg { width: 18px; height: 18px; }

/* Contact info card (contact page) */
.contact-info-card {
  border: 1px solid var(--border-brand);
  border-top: 2px solid var(--primary);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.info-block {
  padding: 18px 0;
}
.info-block:first-child { padding-top: 0; }

.info-block-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  display: block;
  margin-bottom: 6px;
}

.info-block a {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-style: italic;
  font-size: clamp(20px, 2.5vw, 30px);
  color: var(--ink);
  text-decoration: none;
  display: block;
  transition: color 150ms;
}
.info-block a:hover { color: var(--primary); text-decoration: none; }

.info-block p { font-size: 15px; color: var(--ink-mid); line-height: 1.6; }

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

.hours-open-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(47,163,55,0.15);
  color: var(--primary);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
}
.hours-open-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--primary);
  flex: 0 0 6px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  color: var(--ink-mid);
  padding: 4px 0;
}
.day { color: var(--ink); font-weight: 500; }
.time { color: var(--muted); }

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

.area-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(244, 241, 234, 0.15);
  border-radius: var(--radius-pill);
  padding: 5px 12px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

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

/* Contact form col */
.contact-form-col { }
.contact-form-label { display: block; margin-bottom: 12px; }
.contact-form-title { }
.contact-form-heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-style: italic;
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: 0.97;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 36px;
}
.contact-form-heading em { color: var(--primary); font-style: italic; }

/* ============================================================
   PAGE HEADER (sub-pages)
   ============================================================ */
.page-header {
  position: relative;
  overflow: hidden;
  min-height: clamp(280px, 45vh, 520px);
  max-height: 64vh;
  display: flex;
  align-items: flex-end;
}

.page-header > img:first-of-type {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  z-index: 0;
  filter: grayscale(20%) brightness(0.6);
}

.page-header-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(12,12,15,0.90) 0%, rgba(12,12,15,0.50) 60%, rgba(12,12,15,0.70) 100%);
}

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

.page-header-title,
.ph-title {
  color: var(--ink);
  margin-top: 12px;
}

.page-header-title em,
.ph-title em { color: var(--primary); }

.page-header-sub,
.ph-sub {
  font-size: clamp(15px, 1.6vw, 18px);
  color: var(--ink-mid);
  margin-top: 16px;
  max-width: 52ch;
  line-height: 1.6;
}

.ph-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
  padding: 0;
}

.ph-chip {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(244, 241, 234, 0.2);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mid);
}

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

.services-inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  gap: clamp(64px, 8vw, 112px);
}

.services-intro {
  max-width: 72ch;
}

.section-eyebrow { color: var(--primary); }

.services-intro h2 em,
.services-intro em { color: var(--primary); }

.services-intro p {
  font-size: 17px;
  color: var(--ink-mid);
  line-height: 1.7;
  margin-top: 16px;
}

/* Feature block */
.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

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

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

.fb-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(15%);
  transition: transform 600ms ease;
  max-height: none !important;
}
.feature-block:hover .fb-photo img { transform: scale(1.03); }

.fb-photo::after {
  content: '';
  position: absolute; inset: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  pointer-events: none;
}

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

.fb-num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
}

.fb-body h2 { color: var(--ink); }
.fb-body h2 em { color: var(--primary); font-style: italic; }

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

.fb-bullets {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}

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

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

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

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  position: relative;
  overflow: hidden;
  padding-block: clamp(80px, 12vw, 140px);
}

.cta-banner > img:first-of-type {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  filter: grayscale(30%) brightness(0.45);
  max-height: none !important;
}

.cta-banner-bg { position: absolute; inset: 0; z-index: 0; }

.cta-banner-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(47,163,55,0.12) 0%, rgba(12,12,15,0.85) 100%);
}

.cta-banner-inner {
  position: relative; z-index: 2;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.cta-banner-eyebrow { color: var(--primary); }

.cta-banner-title {
  color: var(--ink);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-style: italic;
  font-size: clamp(40px, 6vw, 84px);
  line-height: 0.97;
  letter-spacing: -0.02em;
}
.cta-banner-title em { color: var(--primary); font-style: italic; }

.cta-banner-sub {
  font-size: clamp(15px, 1.6vw, 18px);
  color: var(--ink-mid);
  max-width: 52ch;
  line-height: 1.6;
}

.cta-banner-phone {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-style: italic;
  font-size: clamp(24px, 3vw, 40px);
  color: var(--primary);
}

.cta-banner-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cta-banner-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.cta-banner-actions a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 500;
  font-size: 15px;
  padding: 18px 32px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: filter 200ms ease, transform 200ms ease;
}

.cta-banner-actions a:first-child {
  background: var(--primary);
  color: var(--canvas);
  border: 2px solid var(--primary);
}
.cta-banner-actions a:first-child:hover { filter: brightness(0.9); color: var(--canvas); text-decoration: none; }

.cta-banner-actions a:last-child {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid rgba(244,241,234,0.35);
}
.cta-banner-actions a:last-child:hover { border-color: var(--ink); text-decoration: none; transform: translateY(-1px); color: var(--ink); }

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

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

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

.filter-pill {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 8px 20px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  transition: color 200ms, border-color 200ms, background 200ms;
}
.filter-pill:hover, .filter-pill.active {
  color: var(--canvas);
  background: var(--primary);
  border-color: var(--primary);
}

.gallery-result-count {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
}

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

.gallery-card {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  aspect-ratio: 4 / 3;
  cursor: pointer;
}

.gallery-card > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
  transition: transform 600ms ease, filter 600ms ease;
  max-height: none !important;
}

.gallery-card:hover > img { transform: scale(1.06); filter: grayscale(0%); }

.gallery-card-overlay,
.gallery-card-caption,
.gallery-card-body {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(12,12,15,0.90) 0%, rgba(12,12,15,0.35) 55%, transparent 100%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 350ms ease;
}

.gallery-card:hover .gallery-card-overlay,
.gallery-card:hover .gallery-card-caption,
.gallery-card:hover .gallery-card-body { opacity: 1; }

/* First card always visible */
.gallery-card:first-child .gallery-card-caption { opacity: 1; }

.gallery-card-badge {
  position: absolute; top: 14px; left: 14px;
  z-index: 3;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--canvas);
  background: var(--primary);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

.gallery-card-num {
  position: absolute; top: 14px; right: 14px;
  z-index: 3;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: var(--muted);
}

.gallery-card-body h3,
.gallery-card-caption h2,
.gallery-card-caption h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-style: italic;
  font-size: clamp(18px, 2vw, 26px);
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 6px;
}

.gallery-card-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--muted);
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.gallery-card-location svg { width: 12px; height: 12px; flex: 0 0 12px; }

.gallery-card-desc {
  font-size: 13px;
  color: var(--ink-mid);
  line-height: 1.5;
  margin-bottom: 12px;
}

.gallery-card-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.gallery-meta-item {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.gallery-meta-label { opacity: 0.7; }
.gallery-meta-value { color: var(--primary); }

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

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

.about-story-grid {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 80px;
  align-items: start;
}

.about-story-portrait-col {
  position: relative;
}

.about-story-portrait-col > img {
  width: 100%;
  border-radius: var(--radius);
  filter: grayscale(20%);
  display: block;
  max-height: none !important;
}

.portrait-caption {
  margin-top: 16px;
  padding: 18px 20px;
  background: var(--surface);
  border-top: 2px solid var(--primary);
  border-radius: var(--radius);
}

.portrait-caption-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  display: block;
  margin-bottom: 6px;
}

.portrait-caption-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-style: italic;
  font-size: 22px;
  color: var(--ink);
  line-height: 1.1;
}

.portrait-caption-role {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
}

.about-story-text-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

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

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

.about-services {
  margin-top: 8px;
}

.about-services-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  display: block;
  margin-bottom: 12px;
}

.about-services-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
}

.about-services-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-mid);
}
.about-services-list li::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--primary);
  flex: 0 0 5px;
}

@media (max-width: 900px) {
  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-story-portrait-col > img { max-height: 400px; }
}

/* Values section */
.values-section {
  padding-block: var(--section-y);
  background: var(--surface);
  border-top: 1px solid var(--border);
}

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

.values-header {
  margin-bottom: 56px;
}

.values-title { color: var(--ink); }
.values-title em { color: var(--primary); font-style: italic; }

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

.value-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-top: 2px solid var(--primary);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}
.value-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }

.value-num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
  display: block;
  margin-bottom: 14px;
}

.value-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-style: italic;
  font-size: 22px;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 10px;
}

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

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

/* Areas section */
.areas-section {
  padding-block: var(--section-y);
  background: var(--canvas);
  border-top: 1px solid var(--border);
}

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

.areas-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.areas-title { color: var(--ink); }
.areas-title em { color: var(--primary); font-style: italic; }

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

.areas-right { margin-top: 8px; }

.areas-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.areas-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 16px;
  color: var(--ink-mid);
}

.area-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--primary);
  flex: 0 0 8px;
}

.area-zip {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.08em;
  margin-left: auto;
}

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

/* CTA banner on about page (without photo) */
.about-story + .cta-banner,
section.cta-banner:not(:has(> img)) {
  background: var(--surface);
  border-top: 1px solid var(--border);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer,
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding-top: 80px;
}

.footer-inner,
.footer-grid {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
}

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

.footer-tagline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-style: italic;
  font-size: 18px;
  color: var(--ink-mid);
  line-height: 1.3;
}

.footer-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 36ch;
}

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

.footer-col-title,
.footer-col h4 {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
  display: block;
}

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

.footer-links li a,
.footer-col ul li a {
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
  transition: color 150ms;
}
.footer-links li a:hover,
.footer-col ul li a:hover {
  color: var(--primary);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.footer-contact-item {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  display: block;
  margin-bottom: 6px;
}
.footer-contact-item a { color: var(--muted); }
.footer-contact-item a:hover { color: var(--primary); text-decoration: underline; }

.footer-rating {
  font-size: 13px;
  color: var(--muted);
}

.footer-divider,
hr.footer-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

.footer-bottom {
  max-width: 1200px;
  margin-inline: auto;
  padding: 24px clamp(20px, 4vw, 48px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copy {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.06em;
}
.footer-copy a { color: var(--muted); }
.footer-copy a:hover { color: var(--primary); }

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

/* ============================================================
   MOBILE STICKY CTA
   ============================================================ */
.mobile-sticky-cta,
.mobile-call-pill,
.mobile-cta-pill {
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: var(--canvas);
  padding: 14px 22px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-pill);
  font-family: 'Inter Tight', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 200ms ease, filter 200ms ease;
}
.mobile-sticky-cta:hover,
.mobile-call-pill:hover,
.mobile-cta-pill:hover { transform: translateY(-2px); filter: brightness(0.92); color: var(--canvas); text-decoration: none; }

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

.mobile-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 999;
}
.mobile-cta a {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: var(--canvas);
  padding: 14px 22px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-pill);
  font-family: 'Inter Tight', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}
.mobile-cta a svg { width: 20px; height: 20px; flex: 0 0 20px; }

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

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

.fade-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1), transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}
.fade-left.visible { opacity: 1; transform: translateX(0); }

.fade-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1), transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}
.fade-right.visible { opacity: 1; transform: translateX(0); }

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

.stagger > * { opacity: 0; transform: translateY(20px); transition: opacity 600ms cubic-bezier(0.22, 1, 0.36, 1), transform 600ms cubic-bezier(0.22, 1, 0.36, 1); }
.stagger.visible > *,
.stagger > *.visible { opacity: 1; transform: translateY(0); }
.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; }

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

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

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

.stat-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: clamp(11px, 1vw, 14px);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  margin-top: 8px;
}

/* ============================================================
   MISC UTILITIES
   ============================================================ */

/* Cap any unsized SVG in flex/grid parents */
svg { display: inline-block; flex-shrink: 0; }
.service-card-link svg,
.btn svg,
.btn-service svg,
.form-submit svg,
.nav-cta svg,
.social-link svg { width: 18px; height: 18px; }

.faq-chevron { width: 20px !important; height: 20px !important; }
.gallery-card-location svg { width: 12px !important; height: 12px !important; }

/* Cormorant italic em across the whole site — the unique move */
h1 em, h2 em, h3 em {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 600;
  color: var(--primary);
}

/* Section default spacing */
.section { padding-block: var(--section-y); }

/* Featured / active state */
.featured { }
.active { }

/* Responsive typography helpers */
@media (max-width: 900px) {
  .hero-inner { padding-bottom: clamp(56px, 12vw, 96px); }
}

@media (max-width: 640px) {
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .btn-primary, .btn-primary-lg, .btn-ghost, .btn-ghost-lg { padding: 16px 24px; font-size: 14px; }
  .cta-banner-actions { flex-direction: column; align-items: flex-start; }
  .cta-banner-actions a { padding: 16px 24px; font-size: 14px; }
}


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