@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:       #9DD7A0;
  --accent:        #A1C98C;
  --canvas:        #0C0C0F;
  --surface:       #1A1814;
  --ink:           #F4F1EA;
  --muted:         #8E8A82;
  --border:        rgba(244,241,234,0.10);
  --border-brand:  rgba(157,215,160,0.30);
  --overlay-dark:  rgba(12,12,15,0.82);
  --header-height: 72px;
}
@media (max-width: 900px) {
  :root { --header-height: 60px; }
}

/* ─── RESET & BASE ───────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 16px); font-size: 16px; }
body { background: var(--canvas); color: var(--ink); font-family: 'Inter Tight', sans-serif; font-size: 16px; line-height: 1.7; -webkit-font-smoothing: antialiased; }

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

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

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

.hero { position: relative; overflow: hidden; }
.hero-bg, .hero > img:first-of-type { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; 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; 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 PASSTHROUGH ────────────────────────────────────────── */
h1 a, h2 a, h3 a, .hero-title a, .hero-eyebrow a, .hero-sub a {
  color: inherit; text-decoration: none; border-bottom: 0;
}

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

/* ─── SVG CAP ────────────────────────────────────────────────────────────── */
svg { display: block; }
.faq-chevron, .review-stars svg, .value-icon, .gallery-card-badge svg,
.gallery-stat svg, .footer-contact-item svg, .location-pill svg,
.footer-trust svg, .social-link svg { width: 20px; height: 20px; }
.review-stars svg { color: var(--primary); }
.nav-cta svg, .mobile-call-pill svg, .mobile-cta-pill svg, .mobile-cta a svg { width: 18px; height: 18px; }
.btn svg, .btn-ghost svg, .btn-service svg, .btn-ghost-banner svg, .btn-primary-banner svg { width: 16px; height: 16px; flex-shrink: 0; }
.scroll-progress svg { display: none; }

/* ─── SCROLL PROGRESS ────────────────────────────────────────────────────── */
#scroll-progress, #scrollProgress, #scrollBar {
  position: fixed; top: 0; left: 0; right: 0; height: 3px;
  background: transparent; z-index: 9999;
}
#scroll-progress::after, #scrollProgress::after, #scrollBar::after {
  content: ''; position: absolute; top: 0; left: 0; height: 100%;
  width: var(--scroll-pct, 0%); background: var(--primary); transition: width 80ms linear;
}

/* ─── TYPOGRAPHY ─────────────────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--ink);
}
h1 { font-size: clamp(48px, 7vw, 120px); }
h2 { font-size: clamp(36px, 5vw, 72px); }
h3 { font-size: clamp(22px, 2.5vw, 32px); line-height: 1.1; }
p { line-height: 1.7; }
em { font-style: italic; }

.eyebrow, .section-eyebrow, .page-header-eyebrow, .cta-banner-eyebrow,
.cta-banner-label, .gallery-count, .contact-section-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  display: block;
  margin-bottom: 16px;
}
.muted-para, .service-panel-num, .service-block-index { color: var(--muted); }
.accent { color: var(--primary); font-style: italic; }

/* ─── LAYOUT ─────────────────────────────────────────────────────────────── */
.container, .section-inner, .services-feature-inner, .service-areas-inner,
.gallery-inner, .cta-banner-inner, .trust-strip-inner, .contact-grid { max-width: 1200px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }
.wide-container { max-width: 1400px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }
.section-pad { padding: clamp(80px, 10vh, 140px) 0; }

/* ─── BUTTONS ────────────────────────────────────────────────────────────── */
.btn, .btn-primary, .btn-ghost, .btn-service, .btn-ghost-banner, .btn-primary-banner {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Inter Tight', sans-serif; font-size: 15px; font-weight: 500;
  padding: 18px 32px; border-radius: 4px; cursor: pointer;
  text-decoration: none; white-space: nowrap; transition: all 200ms ease-out;
  border: none; line-height: 1;
}
.btn-primary, .btn.btn-primary { background: var(--primary); color: var(--canvas); }
.btn-primary:hover, .btn.btn-primary:hover { filter: brightness(0.9); color: var(--canvas); text-decoration: none; }

.btn-ghost, .btn.btn-ghost {
  background: transparent; color: var(--ink);
  border: 1px solid rgba(244,241,234,0.25);
}
.btn-ghost:hover, .btn.btn-ghost:hover { border-color: var(--primary); color: var(--primary); text-decoration: none; }

.btn-service {
  background: var(--primary); color: var(--canvas); font-size: 14px; padding: 14px 24px;
}
.btn-service:hover { filter: brightness(0.9); text-decoration: none; color: var(--canvas); }

.btn-ghost-banner {
  background: transparent; color: var(--ink); border: 1px solid rgba(244,241,234,0.3);
}
.btn-ghost-banner:hover { border-color: var(--primary); color: var(--primary); text-decoration: none; }

.btn-primary-banner { background: var(--primary); color: var(--canvas); }
.btn-primary-banner:hover { filter: brightness(0.9); text-decoration: none; color: var(--canvas); }

/* ─── HEADER & NAV ───────────────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 900;
  background: var(--canvas); border-bottom: 1px solid rgba(244,241,234,0.06);
}
.top-nav {
  display: flex; align-items: center; gap: 32px;
  height: var(--header-height); max-width: 1320px; margin: 0 auto; padding: 0 28px;
}
.nav-logo { flex: 0 0 auto; text-decoration: none; }
.nav-logo img { max-height: 44px; max-width: 200px; width: auto; object-fit: contain; }
.nav-pages { flex: 1; display: flex; justify-content: center; }
.nav-pages ul { list-style: none; display: flex; 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;
}
.nav-pages a:hover { color: var(--primary); text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 6px; }
.nav-pages a[aria-current="page"] { color: var(--primary); border-bottom: 2px solid var(--primary); }
.nav-cta {
  flex: 0 0 auto; display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary); color: var(--canvas); padding: 10px 20px;
  border-radius: 999px; font-weight: 600; font-size: 14px; text-decoration: none; white-space: nowrap;
  transition: filter 200ms;
}
.nav-cta:hover { filter: brightness(0.92); text-decoration: none; color: var(--canvas); }
.nav-cta .cta-text { font-size: 13px; font-weight: 600; }
.nav-toggle {
  display: none; background: transparent; border: none; color: var(--ink);
  font-size: 24px; cursor: pointer; width: 44px; height: 44px;
  align-items: center; justify-content: center;
}

@media (max-width: 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; gap: 8px;
    border-bottom: 1px solid rgba(244,241,234,0.08); z-index: 800;
  }
  .nav-pages.open { display: flex; }
  .nav-pages ul { flex-direction: column; gap: 8px; }
  .nav-cta .cta-text { display: none; }
}

/* ─── HERO ───────────────────────────────────────────────────────────────── */
#hero.hero { min-height: 95vh; display: flex; align-items: flex-end; }
.hero-ribbon {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(157,215,160,0.08) 0%,
    rgba(12,12,15,0.55) 45%,
    rgba(12,12,15,0.88) 100%
  );
}
.hero-overlay {
  background: linear-gradient(
    to top,
    rgba(12,12,15,0.92) 0%,
    rgba(12,12,15,0.50) 60%,
    rgba(12,12,15,0.20) 100%
  );
}
.hero-inner {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto; padding: clamp(48px, 8vh, 96px) clamp(20px, 4vw, 48px);
  padding-bottom: clamp(64px, 10vh, 120px);
  display: flex; flex-direction: column; align-items: flex-start; gap: 24px;
  width: 100%;
}
.hero-eyebrow {
  font-family: 'IBM Plex Mono', monospace; font-size: 11px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--primary);
  margin-bottom: 0;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif; font-weight: 600; font-style: italic;
  font-size: clamp(72px, 9vw, 144px); line-height: 0.95; letter-spacing: -0.02em;
  max-width: 14ch; color: var(--ink);
}
.hero-title em { color: var(--primary); font-style: italic; }
.hero-sub { font-size: clamp(16px, 1.6vw, 19px); color: var(--muted); max-width: 50ch; line-height: 1.6; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-trust-chips { display: flex; flex-wrap: wrap; gap: 10px; list-style: none; padding: 0; margin: 0; }
.trust-chip {
  font-family: 'IBM Plex Mono', monospace; font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--muted); padding: 6px 14px;
  border: 1px solid rgba(244,241,234,0.12); border-radius: 999px;
}

/* ─── MARQUEE ────────────────────────────────────────────────────────────── */
.marquee-section {
  overflow: hidden; padding: 14px 0; border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border); max-height: 64px; background: var(--canvas);
  position: relative; z-index: 1;
}
.marquee-track {
  display: flex; gap: 48px; white-space: nowrap; animation: marquee 35s linear infinite;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-section:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  font-family: 'IBM Plex Mono', monospace; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; font-size: clamp(13px, 1.4vw, 18px); line-height: 1.2;
  color: var(--muted); display: flex; align-items: center; gap: 12px;
}
.marquee-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--primary); display: inline-block; }

/* ─── TRUST STRIP ────────────────────────────────────────────────────────── */
.trust-strip { padding: clamp(40px, 6vh, 72px) 0; border-bottom: 1px solid var(--border); }
.trust-strip-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px);
  display: flex; flex-wrap: wrap; align-items: center; gap: 16px;
}
.trust-strip-label {
  font-family: 'IBM Plex Mono', monospace; font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--primary); margin-right: 8px;
}
.trust-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 500; color: var(--muted);
  padding: 8px 16px; border: 1px solid rgba(244,241,234,0.10); border-radius: 999px;
}
.trust-badge-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--primary); flex-shrink: 0; }

/* ─── SERVICES ───────────────────────────────────────────────────────────── */
#services.services { padding: clamp(80px, 10vh, 140px) 0; }
.services-intro {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  align-items: end; margin-bottom: 56px;
}
.services-intro-left .section-title { font-size: clamp(36px, 5vw, 64px); }
.services-intro-left .section-title em { color: var(--primary); font-style: italic; }
.services-intro-right { color: var(--muted); font-size: 16px; line-height: 1.7; align-self: end; }

.services-tabs {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px;
}
.service-tab {
  font-family: 'IBM Plex Mono', monospace; font-size: 11px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted);
  padding: 10px 18px; border: 1px solid rgba(244,241,234,0.12); border-radius: 999px;
  background: transparent; cursor: pointer; transition: all 200ms;
}
.service-tab:hover { color: var(--ink); border-color: rgba(244,241,234,0.30); }
.service-tab.active { background: var(--primary); color: var(--canvas); border-color: var(--primary); }

.services-panels { min-height: 480px; }
.service-panel { display: none; }
.service-panel.active { display: grid; grid-template-columns: 45% 1fr; gap: 0; min-height: 480px; border-radius: 4px; overflow: hidden; background: var(--surface); }
.service-panel-img { position: relative; overflow: hidden; min-height: 420px; }
.service-panel-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; max-height: none !important; }
.service-panel-body {
  padding: clamp(32px, 4vw, 56px); display: flex; flex-direction: column;
  justify-content: space-between; border-top: 2px solid var(--primary);
}
.service-panel-num {
  font-family: 'IBM Plex Mono', monospace; font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--primary); margin-bottom: 12px;
}
.service-panel-title {
  font-family: 'Cormorant Garamond', serif; font-weight: 600;
  font-size: clamp(28px, 3vw, 44px); line-height: 1.05; color: var(--ink); margin-bottom: 20px;
}
.service-panel-title em { font-style: italic; color: var(--primary); }
.service-panel-desc { color: var(--muted); font-size: 16px; line-height: 1.7; margin-bottom: 32px; flex: 1; }

@media (max-width: 900px) {
  .services-intro { grid-template-columns: 1fr; gap: 24px; }
  .service-panel.active { grid-template-columns: 1fr; }
  .service-panel-img { min-height: 280px; }
}

/* ─── REVIEWS ────────────────────────────────────────────────────────────── */
#reviews { padding: clamp(80px, 10vh, 140px) 0; background: var(--surface); }
#reviews .section-title { margin-bottom: 56px; }
#reviews .section-title em { color: var(--primary); font-style: italic; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.review-card {
  padding: 36px; border-radius: 4px; background: var(--canvas);
  border-top: 1px solid var(--border-brand); display: flex; flex-direction: column; gap: 16px;
}
.review-stars { display: flex; gap: 4px; }
.review-stars svg { width: 18px; height: 18px; color: var(--primary); fill: var(--primary); }
.review-quote {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: clamp(18px, 2vw, 22px); line-height: 1.55; color: var(--ink); flex: 1;
}
.review-attribution { font-size: 13px; color: var(--muted); }
.review-verified { font-family: 'IBM Plex Mono', monospace; font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--primary); display: block; margin-top: 4px; }

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

/* ─── GALLERY (index) ────────────────────────────────────────────────────── */
#gallery { padding: clamp(80px, 10vh, 140px) 0; }
#gallery .section-inner > div:first-child {
  display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 40px;
}
#gallery .section-title em { color: var(--primary); font-style: italic; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 12px;
}
.gallery-tile { aspect-ratio: 4/3; overflow: hidden; border-radius: 4px; }
.gallery-tile img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(15%); transition: filter 300ms, transform 300ms; }
.gallery-tile:hover img { filter: grayscale(0%); transform: scale(1.03); }
.gallery-tile-tall { aspect-ratio: 3/4; grid-row: span 2; }
.gallery-text-tile {
  background: var(--surface); padding: 28px; border-radius: 4px;
  display: flex; flex-direction: column; justify-content: flex-end; aspect-ratio: 4/3;
  border-top: 1px solid var(--border-brand);
}
.gallery-text-tile p { font-family: 'Cormorant Garamond', serif; font-size: clamp(18px, 2vw, 24px); line-height: 1.2; color: var(--ink); }
.gallery-text-tile p em { color: var(--primary); font-style: italic; }
.gallery-text-tile p span { font-size: 13px; color: var(--muted); font-family: 'Inter Tight', sans-serif; line-height: 1.6; font-style: normal; }

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

/* ─── SERVICE AREAS ──────────────────────────────────────────────────────── */
#service-areas { padding: clamp(80px, 10vh, 140px) 0; }
.service-areas-inner { max-width: 1200px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }
#service-areas .section-title em { color: var(--primary); font-style: italic; }
#service-areas > div > div:first-child > div { margin-bottom: 40px; }
#service-areas p { color: var(--muted); margin-top: 12px; }
.service-areas-grid { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.area-pill {
  font-family: 'IBM Plex Mono', monospace; font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--muted); padding: 8px 16px;
  border: 1px solid rgba(244,241,234,0.12); border-radius: 999px;
  transition: border-color 200ms, color 200ms;
}
.area-pill:hover { border-color: var(--primary); color: var(--primary); }

/* ─── FAQ ────────────────────────────────────────────────────────────────── */
#faq { padding: clamp(80px, 10vh, 140px) 0; }
#faq .section-title em { color: var(--primary); font-style: italic; }
#faq .section-title { margin-bottom: 8px; }
#faq > div > div > div > p { color: var(--muted); margin-bottom: 48px; font-size: 16px; }
#faq > div > div > div > a { margin-top: 48px; display: inline-flex; }
.faq-list { margin-top: 0; }
details { border-bottom: 1px solid var(--border); }
details summary {
  cursor: pointer; font-weight: 600; font-size: 17px; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 0; gap: 16px;
}
details summary::-webkit-details-marker { display: none; }
.faq-chevron { transition: transform 250ms; flex-shrink: 0; color: var(--muted); }
details[open] .faq-chevron { transform: rotate(45deg); color: var(--primary); }
.faq-answer { padding: 0 0 22px; color: var(--muted); line-height: 1.7; font-size: 15px; }

/* ─── TEAM CTA ───────────────────────────────────────────────────────────── */
.team-cta-section { padding: clamp(64px, 8vh, 96px) 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.team-cta-inner { max-width: 1200px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.team-cta-text { font-family: 'Cormorant Garamond', serif; font-size: clamp(28px, 3.5vw, 48px); font-weight: 600; font-style: italic; line-height: 1.1; color: var(--ink); max-width: 60ch; }
.team-cta-text em { color: var(--primary); }

/* ─── CONTACT (index) ────────────────────────────────────────────────────── */
#contact.services .contact-grid,
#contact .contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; margin-top: 56px;
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label, .form-group label {
  font-family: 'IBM Plex Mono', monospace; font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--muted);
}
.form-field input, .form-field textarea, .form-group input, .form-group textarea, .form-group select {
  background: var(--surface); border: 1px solid var(--border); border-radius: 4px;
  color: var(--ink); font-family: 'Inter Tight', sans-serif; font-size: 15px;
  padding: 14px 16px; outline: none; transition: border-color 200ms; width: 100%;
}
.form-field input:focus, .form-field textarea:focus,
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--primary);
}
.form-field textarea, .form-group textarea { resize: vertical; min-height: 120px; }
.form-submit, .contact-form button[type="submit"] {
  background: var(--primary); color: var(--canvas); border: none; padding: 18px 32px;
  font-family: 'Inter Tight', sans-serif; font-size: 15px; font-weight: 600;
  border-radius: 4px; cursor: pointer; display: inline-flex; align-items: center; gap: 8px;
  transition: filter 200ms; align-self: flex-start;
}
.form-submit:hover { filter: brightness(0.9); }
.form-submit svg { width: 16px; height: 16px; }
.contact-info { display: flex; flex-direction: column; gap: 0; }
.contact-info-item { padding: 20px 0; border-bottom: 1px solid var(--border); }
.contact-info-label { font-family: 'IBM Plex Mono', monospace; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--primary); display: block; margin-bottom: 6px; }
.contact-info-sub { font-size: 14px; color: var(--muted); display: block; margin-top: 4px; }
.contact-info-value { font-size: 17px; color: var(--ink); font-weight: 500; display: block; }
.social-links { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }
.social-link { font-size: 13px; color: var(--muted); transition: color 150ms; cursor: pointer; }
.social-link:hover { color: var(--primary); }
#contact .section-title em { color: var(--primary); font-style: italic; }

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

/* ─── CTA BANNER ─────────────────────────────────────────────────────────── */
.cta-banner { padding: clamp(80px, 10vh, 120px) 0; background: var(--surface); }
.cta-banner-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px);
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 24px;
}
.cta-banner-title { font-size: clamp(36px, 5vw, 72px); }
.cta-banner-title em { color: var(--primary); font-style: italic; }
.cta-banner-title span.accent { color: var(--primary); font-style: italic; }
.cta-banner-sub { color: var(--muted); font-size: 17px; max-width: 50ch; }
.cta-banner-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* ─── PAGE HEADER ────────────────────────────────────────────────────────── */
.page-header { min-height: 50vh; display: flex; align-items: flex-end; }
.page-header-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(to top, rgba(12,12,15,0.9) 0%, rgba(12,12,15,0.3) 100%); }
.page-header-inner {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto; padding: clamp(40px, 6vh, 80px) clamp(20px, 4vw, 48px);
  width: 100%;
}
.page-header-title { font-size: clamp(48px, 7vw, 100px); color: var(--ink); }
.page-header-title em, .page-header-title span.accent { color: var(--primary); font-style: italic; }
.page-header-sub { color: var(--muted); font-size: 17px; margin-top: 16px; max-width: 55ch; }

/* ─── SERVICES FEATURE BLOCKS (services.html) ────────────────────────────── */
.services-feature { padding: clamp(64px, 8vh, 96px) 0; }
.services-feature-inner { max-width: 1200px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); display: flex; flex-direction: column; gap: 80px; }
.services-feature-block { display: grid; grid-template-columns: 1fr 1fr; gap: 0; align-items: stretch; border-radius: 4px; overflow: hidden; background: var(--surface); }
.services-feature-block.reverse { direction: rtl; }
.services-feature-block.reverse > * { direction: ltr; }
.service-block-photo { position: relative; overflow: hidden; min-height: 480px; }
.service-block-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; max-height: none !important; filter: grayscale(10%); }
.service-block-photo-scrim { position: absolute; inset: 0; background: linear-gradient(90deg, transparent 60%, rgba(26,24,20,0.6) 100%); z-index: 1; }
.service-block-content {
  padding: clamp(36px, 4vw, 56px); display: flex; flex-direction: column; justify-content: center; gap: 20px;
  border-top: 2px solid var(--primary);
}
.service-block-index {
  font-family: 'IBM Plex Mono', monospace; font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--primary);
}
.service-block-name { font-size: clamp(28px, 3vw, 44px); line-height: 1.05; }
.service-block-name em { color: var(--primary); font-style: italic; }
.service-block-desc { color: var(--muted); font-size: 15px; line-height: 1.7; }
.service-block-bullets { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.service-block-bullets li {
  font-size: 14px; color: var(--muted); padding-left: 16px; position: relative;
}
.service-block-bullets li::before { content: ''; position: absolute; left: 0; top: 10px; width: 5px; height: 5px; border-radius: 50%; background: var(--primary); }

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

/* ─── GALLERY SECTION (gallery.html) ────────────────────────────────────── */
.gallery-section { padding: clamp(80px, 10vh, 140px) 0; }
.gallery-inner { max-width: 1200px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }
.gallery-header-row { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 32px; flex-wrap: wrap; gap: 16px; }
.gallery-title { font-size: clamp(36px, 5vw, 64px); }
.gallery-title em { color: var(--primary); font-style: italic; }
.gallery-count { color: var(--muted); font-size: 14px; }
.gallery-filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.filter-btn {
  font-family: 'IBM Plex Mono', monospace; font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--muted); padding: 8px 16px;
  border: 1px solid rgba(244,241,234,0.12); border-radius: 999px; background: transparent;
  cursor: pointer; transition: all 200ms;
}
.filter-btn:hover, .filter-btn.active { color: var(--ink); border-color: var(--primary); }
.filter-btn.active { background: var(--primary); color: var(--canvas); border-color: var(--primary); }

#galleryGrid.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 12px;
}
.gallery-grid-secondary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}
.gallery-card {
  position: relative; overflow: hidden; border-radius: 4px;
  aspect-ratio: 4/3; display: block; text-decoration: none;
}
.gallery-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; max-height: none !important; transition: transform 400ms ease-out; filter: grayscale(15%); }
.gallery-card:hover img { transform: scale(1.05); filter: grayscale(0%); }
.gallery-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(12,12,15,0.85) 0%, transparent 50%); z-index: 1; opacity: 0; transition: opacity 300ms; }
.gallery-card:hover .gallery-card-overlay { opacity: 1; }
.gallery-card-num { position: absolute; top: 12px; left: 12px; z-index: 2; font-family: 'IBM Plex Mono', monospace; font-size: 10px; letter-spacing: 0.12em; color: rgba(244,241,234,0.5); }
.gallery-card-meta { position: absolute; bottom: 0; left: 0; right: 0; z-index: 2; padding: 16px; opacity: 0; transform: translateY(8px); transition: all 300ms; }
.gallery-card:hover .gallery-card-meta { opacity: 1; transform: translateY(0); }
.gallery-card-meta h3 { font-family: 'Cormorant Garamond', serif; font-size: 18px; color: var(--ink); line-height: 1.1; }
.gallery-card-badge { display: inline-flex; align-items: center; gap: 6px; background: var(--primary); color: var(--canvas); padding: 4px 10px; border-radius: 999px; font-size: 10px; font-family: 'IBM Plex Mono', monospace; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 8px; }
.gallery-card-badge svg { width: 12px; height: 12px; }
.gallery-card-desc { font-size: 13px; color: rgba(244,241,234,0.7); margin: 4px 0 8px; }
.gallery-stats { display: flex; gap: 12px; flex-wrap: wrap; }
.gallery-stat { font-family: 'IBM Plex Mono', monospace; font-size: 10px; letter-spacing: 0.1em; color: rgba(244,241,234,0.5); display: flex; align-items: center; gap: 4px; }
.gallery-stat svg { width: 12px; height: 12px; }
.gallery-card-std { }
.gallery-location-strip { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; padding-top: 12px; }
.location-label { font-family: 'IBM Plex Mono', monospace; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.location-pill { display: inline-flex; align-items: center; gap: 6px; padding: 6px 14px; border: 1px solid rgba(244,241,234,0.10); border-radius: 999px; font-size: 12px; color: var(--muted); }
.location-pill svg { width: 12px; height: 12px; }

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

/* ─── FOUNDER STORY (about.html) ─────────────────────────────────────────── */
.founder-story { padding: clamp(80px, 10vh, 140px) 0; }
.founder-story-grid { display: grid; grid-template-columns: 340px 1fr; gap: 80px; align-items: start; }
.founder-portrait-col { }
.founder-portrait-wrap { border-radius: 4px; overflow: hidden; }
.founder-portrait-wrap img { width: 100%; object-fit: cover; max-height: 480px; filter: grayscale(20%); }
.founder-portrait-caption { font-family: 'IBM Plex Mono', monospace; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-top: 12px; }
.founder-story-body { display: flex; flex-direction: column; gap: 20px; }
.founder-story-headline { font-size: clamp(32px, 4vw, 56px); line-height: 1.0; }
.founder-story-headline span.accent { color: var(--primary); font-style: italic; }
p.drop-cap::first-letter { font-family: 'Cormorant Garamond', serif; font-size: 3.5em; font-weight: 600; float: left; line-height: 0.8; padding-right: 10px; padding-top: 6px; color: var(--primary); }
.founder-divider { height: 1px; background: var(--border-brand); margin: 8px 0; }
.founder-pull-quote {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: clamp(22px, 2.5vw, 30px); line-height: 1.3; color: var(--ink);
  border-left: 2px solid var(--primary); padding-left: 24px; margin: 0;
}
.chip-row { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'IBM Plex Mono', monospace; font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--muted); padding: 8px 16px;
  border: 1px solid rgba(244,241,234,0.12); border-radius: 999px;
}
.chip-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--primary); flex-shrink: 0; }

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

/* ─── VALUES SECTION ────────────────────────────────────────────────────────── */
.values-section { padding: clamp(80px, 10vh, 140px) 0; background: var(--surface); }
.values-header { margin-bottom: 56px; }
.values-display { font-size: clamp(36px, 5vw, 64px); }
.values-display span.accent { color: var(--primary); font-style: italic; }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.value-card { background: var(--canvas); padding: 36px 28px; border-radius: 4px; border-top: 1px solid var(--border-brand); }
.value-icon { color: var(--primary); width: 28px; height: 28px; margin-bottom: 20px; }
.value-card-title { font-size: 20px; margin-bottom: 12px; line-height: 1.2; }
.value-card-title span.accent { color: var(--primary); font-style: italic; }
.value-card-body { color: var(--muted); font-size: 15px; 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; } }

/* ─── JOURNEY TIMELINE ────────────────────────────────────────────────────── */
.journey-section { padding: clamp(80px, 10vh, 140px) 0; }
.journey-header { margin-bottom: 56px; }
.journey-display { font-size: clamp(36px, 5vw, 64px); }
.journey-display span.accent { color: var(--primary); font-style: italic; }
.journey-track { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; position: relative; }
.journey-track::before { content: ''; position: absolute; top: 16px; left: 0; right: 0; height: 1px; background: var(--border-brand); z-index: 0; }
.journey-step { position: relative; z-index: 1; }
.journey-dot { width: 32px; height: 32px; border-radius: 50%; background: var(--canvas); border: 2px solid var(--primary); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.journey-dot-inner { width: 10px; height: 10px; border-radius: 50%; background: var(--primary); }
.journey-step-label { font-family: 'IBM Plex Mono', monospace; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--primary); margin-bottom: 8px; }
.journey-step-body { color: var(--muted); font-size: 15px; line-height: 1.65; }

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

/* ─── CREW SECTION ───────────────────────────────────────────────────────── */
.crew-section { padding: clamp(80px, 10vh, 140px) 0; background: var(--surface); }
.crew-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.crew-photo-wrap { border-radius: 4px; overflow: hidden; }
.crew-photo-wrap img { width: 100%; object-fit: cover; max-height: 500px; filter: grayscale(15%); }
.crew-text-col { display: flex; flex-direction: column; gap: 20px; }
.crew-display { font-size: clamp(32px, 4vw, 56px); }
.crew-display span.accent { color: var(--primary); font-style: italic; }
.crew-text-col p { color: var(--muted); font-size: 16px; line-height: 1.7; }

@media (max-width: 900px) { .crew-grid { grid-template-columns: 1fr; gap: 40px; } .crew-photo-wrap { order: -1; } }

/* ─── CONTACT PAGE ───────────────────────────────────────────────────────── */
section#contact.contact {
  padding: clamp(80px, 10vh, 140px) 0;
}
.contact-grid {
  max-width: 1200px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px);
  display: grid; grid-template-columns: 1fr 420px; gap: 64px; align-items: start;
}
.contact-form-col { display: flex; flex-direction: column; gap: 24px; }
.contact-section-label { font-family: 'IBM Plex Mono', monospace; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--primary); }
.contact-headline { font-size: clamp(36px, 5vw, 60px); }
.contact-headline em { color: var(--primary); font-style: italic; }
.contact-intro { color: var(--muted); font-size: 16px; line-height: 1.7; }
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group select { appearance: none; }
.contact-info-card {
  background: var(--surface); border-radius: 4px; padding: 36px;
  border-top: 2px solid var(--primary); display: flex; flex-direction: column; gap: 0;
}
.info-block { padding: 18px 0; }
.info-block-label { font-family: 'IBM Plex Mono', monospace; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--primary); display: block; margin-bottom: 8px; }
.info-block-value { font-size: 17px; color: var(--ink); font-weight: 500; }
.info-block-value a { color: var(--ink); text-decoration: none; }
.info-block-value a:hover { color: var(--primary); }
.info-divider { height: 1px; background: var(--border); }
.info-areas { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.area-chip { font-family: 'IBM Plex Mono', monospace; font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); padding: 5px 12px; border: 1px solid rgba(244,241,234,0.10); border-radius: 999px; }
.info-badges { display: flex; flex-wrap: wrap; gap: 10px; padding-top: 18px; }
.info-badge { font-family: 'IBM Plex Mono', monospace; font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--primary); padding: 6px 14px; border: 1px solid var(--border-brand); border-radius: 999px; }
.info-phone-link { font-size: 20px; font-weight: 600; color: var(--primary); }

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

/* ─── FOOTER ─────────────────────────────────────────────────────────────── */
footer, .site-footer {
  background: var(--surface); padding: clamp(64px, 8vh, 96px) 0 0;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px);
  display: grid; grid-template-columns: 280px repeat(3, 1fr); gap: 48px;
  padding-bottom: clamp(48px, 6vh, 72px);
}
.footer-grid {
  display: grid; grid-template-columns: 280px repeat(3, 1fr); gap: 48px;
  max-width: 1200px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px);
  padding-bottom: clamp(48px, 6vh, 72px);
}
.footer-brand { display: flex; flex-direction: column; gap: 12px; }
.footer-brand-name { font-family: 'Cormorant Garamond', serif; font-size: 18px; font-weight: 600; color: var(--ink); }
.footer-tagline { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 15px; color: var(--muted); line-height: 1.5; }
.footer-tagline em { color: var(--primary); }
.footer-contact-line { display: flex; flex-direction: column; gap: 6px; margin-top: 8px; }
.footer-contact-line a { font-size: 14px; color: var(--muted); text-decoration: none; }
.footer-contact-line a:hover { color: var(--primary); }
.footer-contact-item { font-size: 14px; color: var(--muted); display: flex; align-items: center; gap: 8px; }
.footer-contact-item a { color: var(--muted); text-decoration: none; }
.footer-contact-item a:hover { color: var(--primary); }
.footer-contact-item svg { width: 14px; height: 14px; flex-shrink: 0; }
.footer-contact-list { display: flex; flex-direction: column; gap: 8px; }
.contact-label { font-family: 'IBM Plex Mono', monospace; font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--primary); }
.footer-col { }
.footer-col-title, .footer-col-label, .footer-col h4 {
  font-family: 'IBM Plex Mono', monospace; font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--primary); margin-bottom: 20px; display: block; font-weight: 500;
}
.footer-links, .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.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: none; }
.footer-col address { font-style: normal; font-size: 14px; color: var(--muted); line-height: 1.8; }
.footer-col address a { color: var(--muted); text-decoration: none; }
.footer-col address a:hover { color: var(--primary); }
.footer-trust { display: flex; flex-wrap: wrap; gap: 8px; }
.footer-trust-chip, .footer-trust-item { font-family: 'IBM Plex Mono', monospace; font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); padding: 5px 12px; border: 1px solid rgba(244,241,234,0.10); border-radius: 999px; }
.footer-trust-sep { color: var(--primary); display: flex; align-items: center; }
.footer-logo img { max-height: 40px !important; }
.footer-bottom {
  max-width: 1200px; margin: 0 auto; padding: 24px clamp(20px, 4vw, 48px);
  border-top: 1px solid var(--border); display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-copy, .footer-legal { font-size: 13px; color: var(--muted); }

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

/* ─── MOBILE CTA PILL ────────────────────────────────────────────────────── */
.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: 999px;
  font-family: 'Inter Tight', sans-serif; font-size: 14px; font-weight: 600;
  text-decoration: none; box-shadow: 0 18px 40px -10px rgba(0,0,0,0.45);
  transition: transform 200ms, filter 200ms;
}
.mobile-call-pill:hover, .mobile-cta-pill:hover { transform: translateY(-2px); filter: brightness(0.92); text-decoration: none; color: var(--canvas); }
.mobile-call-pill svg, .mobile-cta-pill svg { width: 18px; height: 18px; flex-shrink: 0; }
.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: 999px;
  font-size: 14px; font-weight: 600; text-decoration: none;
  box-shadow: 0 18px 40px -10px rgba(0,0,0,0.45);
}
.mobile-cta a svg { width: 18px; height: 18px; }
@media (min-width: 900px) {
  .mobile-call-pill, .mobile-cta-pill, .mobile-cta { display: none; }
}

/* ─── ANIMATIONS ─────────────────────────────────────────────────────────── */
.fade-up, .fade-left, .fade-right, .scale-in {
  opacity: 0; transition: opacity 600ms ease-out, transform 600ms ease-out;
}
.fade-up { transform: translateY(28px); }
.fade-left { transform: translateX(-28px); }
.fade-right { transform: translateX(28px); }
.scale-in { transform: scale(0.94); }
.fade-up.visible, .fade-left.visible, .fade-right.visible, .scale-in.visible {
  opacity: 1; transform: none;
}
.stagger > * { opacity: 0; transform: translateY(16px); transition: opacity 500ms ease-out, transform 500ms ease-out; }
.stagger.visible > * { opacity: 1; transform: none; }
.stagger.visible > *:nth-child(1) { transition-delay: 0ms; }
.stagger.visible > *:nth-child(2) { transition-delay: 80ms; }
.stagger.visible > *:nth-child(3) { transition-delay: 160ms; }
.stagger.visible > *:nth-child(4) { transition-delay: 240ms; }
.stagger.visible > *:nth-child(5) { transition-delay: 320ms; }
.stagger.visible > *:nth-child(6) { transition-delay: 400ms; }
.stagger.visible > *:nth-child(7) { transition-delay: 480ms; }
.stagger.visible > *:nth-child(8) { transition-delay: 560ms; }

/* ─── SERVICE CARD HOVER ─────────────────────────────────────────────────── */
.service-card { transition: transform 250ms ease-out, box-shadow 250ms ease-out; }
.service-card:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -16px rgba(0,0,0,0.18); }

/* ─── UNIQUE MOVE: DISPLAY WORDS IN BODY ─────────────────────────────────── */
.services-intro-right em,
.service-panel-desc em,
.service-block-desc em,
.founder-story-body p em,
.crew-text-col p em,
.contact-intro em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.25em;
  color: var(--primary);
  line-height: inherit;
}


/* === Validator patches (auto-applied) === */
/* validator patch: grid children without placement → span full row */
.services-intro-left { grid-column: 1 / -1; }
.services-intro-right { grid-column: 1 / -1; }
.gallery-text-tile { grid-column: 1 / -1; }
.contact-form { grid-column: 1 / -1; }
.contact-info { grid-column: 1 / -1; }
.footer-col { grid-column: 1 / -1; }
.footer-grid { grid-column: 1 / -1; }
.footer-bottom { 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; }
