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

/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --primary:        #E58325;
  --primary-dim:    #c97018;
  --accent:         #855428;
  --canvas:         #0C0C0F;
  --surface:        #1A1814;
  --surface-2:      #221f1a;
  --ink:            #F4F1EA;
  --ink-mid:        #C8C3B8;
  --muted:          #8E8A82;
  --border:         rgba(244,241,234,0.10);
  --border-brand:   rgba(229,131,37,0.35);
  --header-height:  72px;

  --ff-display: 'Cormorant Garamond', Georgia, serif;
  --ff-body:    'Inter Tight', system-ui, sans-serif;
  --ff-mono:    'IBM Plex Mono', 'Courier New', monospace;

  --radius:   4px;
  --radius-lg: 8px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

@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;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--ff-body);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
}

/* Universal image cap */
img { max-width: 100%; height: auto; display: block; }

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

.nav img, header img, .header img, .nav-logo img, .logo img {
  max-height: 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 45%; z-index: 0;
}
.hero-inner, .hero > :not(img):not(.hero-bg):not(.hero-overlay):not(.hero-ribbon) {
  position: relative; z-index: 2;
}
.hero-overlay { position: absolute; inset: 0; z-index: 1; pointer-events: none; }

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

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

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

/* ============================================================
   TYPOGRAPHY BASE
   ============================================================ */
h1, h2, h3, h4 {
  font-family: var(--ff-display);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.01em;
  color: var(--ink);
}

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

ul { list-style: none; padding: 0; margin: 0; }

strong { color: var(--ink); font-weight: 600; }

/* Display italic accent — the unique move */
.display-em, .accent-word, em.display-em {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1.25em;
  color: var(--primary);
  font-weight: 600;
  line-height: 1;
}
.hw em, .st em, .about-story-headline em,
.about-secondary-title em, .cta-banner-title em,
.cta-banner-headline em, .page-header-title em,
.contact-form-title em, .gallery-section-title em,
.footer-brand-tagline em, h1 em, h2 em {
  font-style: italic;
  color: var(--primary);
}

/* Eyebrow / label */
.ey, .faq-eyebrow, .page-header-eyebrow, .cta-banner-eyebrow,
.about-story-eyebrow, .about-secondary-eyebrow,
.contact-section-eyebrow, .info-card-label, .service-block-eyebrow,
.cta-banner-sub {
  font-family: var(--ff-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--primary);
  display: block;
  margin-bottom: 14px;
}

/* ============================================================
   LAYOUT HELPERS
   ============================================================ */
.si {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
}

.container {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
}

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

/* Section rhythm */
section, .services, .gallery, .faq, .contact, .about-story,
.about-secondary, .cta-banner, .gallery-section {
  padding-block: clamp(80px, 12vh, 160px);
}

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

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

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

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

.nav-pages {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-pages ul,
ul#navLinks {
  display: flex;
  gap: 28px;
  align-items: center;
  list-style: none;
  padding: 0; margin: 0;
}

.nav-pages a,
#navLinks a {
  display: inline-block;
  padding: 6px 0;
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-mid);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 150ms;
}

.nav-pages a:hover,
#navLinks a:hover {
  color: var(--ink);
  text-decoration: none;
}

.nav-pages a[aria-current="page"],
#navLinks a[aria-current="page"] {
  color: var(--primary);
  border-bottom: 2px solid var(--primary);
  text-decoration: none;
}

.nav-cta {
  flex: 0 0 auto;
}

.nav-cta a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: var(--canvas);
  padding: 10px 20px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: filter 150ms;
}
.nav-cta a:hover { filter: brightness(0.92); color: var(--canvas); text-decoration: none; }

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

/* ============================================================
   BUTTONS
   ============================================================ */
.btn, .btn-primary, .btn-ghost, .btn-submit, .form-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 18px 32px;
  border-radius: var(--radius);
  font-family: var(--ff-body);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: filter 180ms, transform 180ms, box-shadow 180ms;
  text-decoration: none;
  border: none;
  white-space: nowrap;
  line-height: 1;
}

.btn-primary, .btn-submit, .form-submit {
  background: var(--primary);
  color: var(--canvas);
}
.btn-primary:hover, .btn-submit:hover, .form-submit:hover {
  filter: brightness(0.92);
  transform: translateY(-1px);
  color: var(--canvas);
  text-decoration: none;
}

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

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

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

.hero-overlay {
  background:
    radial-gradient(ellipse at 0% 100%, rgba(133,84,40,0.45) 0%, transparent 60%),
    linear-gradient(to top, rgba(12,12,15,0.92) 0%, rgba(12,12,15,0.55) 50%, rgba(12,12,15,0.82) 100%);
}

.hero-ribbon {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--primary);
  z-index: 3;
  opacity: 0.6;
}

.hero-inner {
  padding: clamp(60px, 10vh, 120px) clamp(24px, 6vw, 96px) clamp(72px, 10vh, 120px);
  max-width: 900px;
}

.hero-eyebrow {
  font-family: var(--ff-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--primary);
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(64px, 9vw, 144px);
  font-weight: 600;
  line-height: 0.93;
  letter-spacing: -0.02em;
  color: var(--ink);
  max-width: 14ch;
  margin-bottom: 28px;
}

.hw { display: block; }

.hero-sub {
  font-size: clamp(15px, 1.6vw, 18px);
  color: var(--ink-mid);
  max-width: 54ch;
  line-height: 1.65;
  margin-bottom: 36px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

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

.chip {
  font-family: var(--ff-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-mid);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 14px;
}

/* ============================================================
   TRUST STRIP (index page)
   ============================================================ */
.trust-wrap {
  background: var(--surface);
  border-top: 1px solid var(--border-brand);
  border-bottom: 1px solid var(--border);
  padding: 24px clamp(20px, 5vw, 64px);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 0;
  max-width: 1200px;
  margin-inline: auto;
}

.tp {
  font-family: var(--ff-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-mid);
  padding: 5px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
}

.tp-hot {
  color: var(--primary);
  border-color: var(--border-brand);
}

.tsep, .trust-sep {
  color: var(--primary);
  font-size: 14px;
  padding: 0 8px;
  opacity: 0.5;
  flex-shrink: 0;
}

/* About / Contact page trust strip */
.trust-strip {
  background: var(--surface);
  border-top: 1px solid var(--border-brand);
  border-bottom: 1px solid var(--border);
  padding: 20px clamp(20px, 5vw, 64px);
}

.trust-strip-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  max-width: 1200px;
  margin-inline: auto;
}

.trust-chip {
  font-family: var(--ff-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-mid);
  padding: 5px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
}

.trust-chip-dot {
  color: var(--primary);
  font-size: 14px;
  opacity: 0.5;
}

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

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

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

.mi {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  font-family: var(--ff-mono);
  font-size: clamp(13px, 1.4vw, 16px);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  line-height: 1.2;
}

.dot {
  color: var(--primary);
  font-size: 18px;
  line-height: 1;
}

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

/* ============================================================
   SERVICES (index)
   ============================================================ */
.services {
  background: var(--canvas);
}

.srv-hd {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 56px;
  gap: 24px;
}

.srv-hd > div {
  flex: 1;
}

.srv-hd a {
  font-family: var(--ff-mono);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  flex-shrink: 0;
  align-self: flex-end;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--primary);
  text-decoration: none;
}
.srv-hd a:hover { text-decoration: none; opacity: 0.8; }

.st {
  font-family: var(--ff-display);
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--ink);
}

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

.srv-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  display: block;
  text-decoration: none;
  background: var(--surface);
}

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

.srv-card:hover img {
  transform: scale(1.04);
  filter: grayscale(0%);
}

.srv-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,12,15,0.92) 0%, rgba(12,12,15,0.2) 55%, transparent 100%);
  z-index: 1;
  transition: opacity 300ms;
}

.srv-card:hover .srv-scrim {
  opacity: 0.7;
}

.srv-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px 20px;
  z-index: 2;
}

.srv-num {
  font-family: var(--ff-mono);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--primary);
  margin-bottom: 6px;
}

.srv-body h3 {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 600;
  line-height: 1.0;
  color: var(--ink);
  margin-bottom: 6px;
}

.srv-desc {
  font-size: 13px;
  color: var(--ink-mid);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 300ms, transform 300ms;
  line-height: 1.5;
}

.srv-card:hover .srv-desc {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   GALLERY (index — feature panel)
   ============================================================ */
.gallery {
  background: var(--canvas);
}

.gal-hd {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 24px;
}

.gal-hd a {
  font-family: var(--ff-mono);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  flex-shrink: 0;
  align-self: flex-end;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--primary);
  text-decoration: none;
}

.gal-feature {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 2px;
  align-items: stretch;
}

.gal-photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.gal-photo img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  max-height: none;
  transition: transform 600ms var(--ease-out);
}

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

.gal-photo > a {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.gal-side {
  background: var(--surface);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 36px 28px;
  border-top: 1px solid var(--border-brand);
}

.gal-stat { margin-bottom: 32px; }

.gal-num {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 600;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}

.gal-lbl {
  font-family: var(--ff-mono);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
}

.gal-cta {
  border-top: 1px solid var(--border);
  padding-top: 24px;
}

.gal-cta a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  text-decoration: none;
  border-bottom: 1px solid var(--primary);
  padding-bottom: 3px;
}

.gal-cta-hl {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 20px;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.2;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  background: var(--canvas);
}

.faq-inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
  padding-block: clamp(80px, 12vh, 160px);
}

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

.faq-header h2 {
  font-family: var(--ff-display);
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.faq-list {
  max-width: 780px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  cursor: pointer;
  font-family: var(--ff-display);
  font-size: clamp(17px, 1.8vw, 22px);
  font-weight: 600;
  color: var(--ink);
  list-style: none;
  user-select: none;
}

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

.faq-chev {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--muted);
  transition: transform 220ms var(--ease-out), color 220ms;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-chev svg {
  width: 16px;
  height: 16px;
  color: inherit;
}

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

.faq-ans, .faq-answer {
  padding: 0 0 22px;
  font-size: 16px;
  color: var(--ink-mid);
  line-height: 1.7;
  max-width: 66ch;
}

/* details on about/contact pages */
section.faq details,
div.faq-list details {
  border-bottom: 1px solid var(--border);
}

section.faq details > summary,
div.faq-list details > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  cursor: pointer;
  font-family: var(--ff-display);
  font-size: clamp(16px, 1.8vw, 21px);
  font-weight: 600;
  color: var(--ink);
  list-style: none;
}

section.faq details > summary::-webkit-details-marker { display: none; }
section.faq details > summary::after {
  content: "+";
  font-weight: 300;
  font-size: 22px;
  color: var(--muted);
  transition: transform 200ms, color 200ms;
  flex-shrink: 0;
  font-family: var(--ff-body);
}
section.faq details[open] > summary::after {
  transform: rotate(45deg);
  color: var(--primary);
}

section.faq details > p,
div.faq-list details > p {
  padding: 0 0 20px;
  color: var(--ink-mid);
  font-size: 16px;
  line-height: 1.7;
}

.faq-chevron {
  width: 16px; height: 16px;
  color: var(--muted);
  transition: transform 220ms, color 220ms;
  flex-shrink: 0;
}

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

/* ============================================================
   CONTACT (index)
   ============================================================ */
.contact {
  background: var(--canvas);
}

.con-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-top: 56px;
}

/* Forms — shared */
.fg {
  display: flex;
  flex-direction: column-reverse;
  gap: 6px;
  margin-bottom: 20px;
}

.fl {
  font-family: var(--ff-mono);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  transition: color 200ms;
}

.fg input, .fg textarea,
.form-group input, .form-group textarea, .form-group select,
.contact-form input, .contact-form textarea, .contact-form select,
.form-field input, .form-field textarea, .form-field select,
.form-input {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--ink);
  font-family: var(--ff-body);
  font-size: 15px;
  padding: 14px 16px;
  width: 100%;
  transition: border-color 200ms;
  outline: none;
  -webkit-appearance: none;
}

.fg input:focus, .fg textarea:focus,
.form-group input:focus, .form-group textarea:focus, .form-group select:focus,
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus,
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  border-color: var(--primary);
}

.fg input:focus + .fl,
.form-group input:focus + label,
.form-group textarea:focus + label { color: var(--primary); }

.fg textarea, .form-group textarea, .contact-form textarea, .form-field textarea {
  min-height: 120px;
  resize: vertical;
}

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

.form-group, .form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group label, .form-field label, .form-label {
  font-family: var(--ff-mono);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

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

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

.form-select {
  cursor: pointer;
}

/* Contact info column */
.ci-item {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.ci-item:first-child { border-top: 1px solid var(--border); }

.ci-lbl, .areas-lbl {
  font-family: var(--ff-mono);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--primary);
  margin-bottom: 6px;
}

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

.ci-val a, .ci-body a {
  color: var(--ink);
}

.ci-body { color: var(--ink-mid); font-size: 15px; line-height: 1.6; }

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

.area-tag, .area-pill {
  font-family: var(--ff-mono);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--muted);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px 12px;
}

/* ============================================================
   PAGE HEADER (sub-pages)
   ============================================================ */
.page-header {
  min-height: clamp(320px, 45vh, 560px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

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

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

.page-header-inner {
  position: relative;
  z-index: 2;
  padding: clamp(40px, 7vh, 80px) clamp(24px, 6vw, 96px) clamp(48px, 7vh, 80px);
  max-width: 900px;
}

.page-header-title {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(42px, 6vw, 96px);
  font-weight: 600;
  line-height: 0.93;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 12px 0 16px;
}

.page-header-sub {
  font-size: 17px;
  color: var(--ink-mid);
  max-width: 56ch;
  line-height: 1.65;
}

.page-header-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
  list-style: none;
}

.page-header-chip {
  font-family: var(--ff-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-mid);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 5px 14px;
}

/* ============================================================
   SERVICES DETAIL (services.html)
   ============================================================ */
.services-index-strip {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.services-index-inner {
  display: flex;
  gap: 0;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
}

.service-index-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 20px;
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color 150ms, border-color 150ms;
}

.service-index-link:hover {
  color: var(--ink);
  border-bottom-color: var(--border);
  text-decoration: none;
}

.service-index-num {
  font-family: var(--ff-mono);
  font-size: 10px;
  color: var(--primary);
  font-weight: 500;
}

.services-detail {
  padding-block: 0;
  background: var(--canvas);
}

.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: clamp(480px, 55vh, 680px);
  border-bottom: 1px solid var(--border);
}

.service-block.reverse .service-block-photo { order: 2; }
.service-block.reverse .service-block-body  { order: 1; }

.service-block-photo {
  position: relative;
  overflow: hidden;
}

.service-block-photo img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  max-height: none;
  transition: transform 600ms var(--ease-out), filter 400ms;
  filter: grayscale(15%);
}

.service-block:hover .service-block-photo img {
  transform: scale(1.03);
  filter: grayscale(0%);
}

.service-block-photo-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to right, rgba(12,12,15,0.3) 0%, transparent 60%);
}

.service-block.reverse .service-block-photo-overlay {
  background: linear-gradient(to left, rgba(12,12,15,0.3) 0%, transparent 60%);
}

.service-block-num {
  position: absolute;
  top: 24px; left: 24px;
  z-index: 2;
  font-family: var(--ff-mono);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--primary);
  background: rgba(12,12,15,0.7);
  padding: 5px 12px;
  border-radius: 999px;
}

.service-block-body {
  background: var(--canvas);
  padding: clamp(40px, 6vw, 80px) clamp(36px, 5vw, 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-block-divider {
  width: 40px;
  height: 1px;
  background: var(--primary);
  margin: 16px 0 24px;
}

.service-block-body h2 {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 20px;
}

.service-block-copy {
  margin-bottom: 24px;
}

.service-block-copy p {
  font-size: 16px;
  color: var(--ink-mid);
  line-height: 1.7;
  margin-bottom: 12px;
}

.display-em {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1.25em;
  color: var(--primary);
  font-weight: 600;
}

.service-block-features {
  list-style: none;
  margin-bottom: 28px;
}

.service-block-features li {
  font-size: 14px;
  color: var(--ink-mid);
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-block-features li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}

.service-block-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: var(--canvas);
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  align-self: flex-start;
  transition: filter 180ms;
}
.service-block-cta:hover { filter: brightness(0.92); color: var(--canvas); text-decoration: none; }

.service-block-cta svg { width: 16px; height: 16px; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--surface);
  border-top: 1px solid var(--border-brand);
  padding-block: clamp(80px, 12vh, 140px);
}

.cta-banner-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
  align-items: center;
}

.cta-banner-eyebrow {
  font-family: var(--ff-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--primary);
  margin-bottom: 16px;
}

.cta-banner-headline, .cta-banner-title {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(32px, 4.5vw, 64px);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 20px;
}

.cta-banner-body, .cta-banner-sub {
  font-size: 16px;
  color: var(--ink-mid);
  line-height: 1.65;
  margin-bottom: 28px;
}

.cta-banner-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 22px;
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}
.cta-banner-phone svg { width: 20px; height: 20px; color: var(--primary); }
.cta-banner-phone:hover { text-decoration: none; opacity: 0.85; color: var(--primary); }

.cta-banner-actions, .cta-banner-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cta-form { }

.cta-form-title {
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 20px;
}

.cta-form form { display: flex; flex-direction: column; gap: 0; }

/* ============================================================
   GALLERY SECTION (gallery.html)
   ============================================================ */
.gallery-section {
  background: var(--canvas);
  padding-inline: clamp(20px, 5vw, 64px);
}

.gallery-header-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto 32px;
}

.gallery-section-title {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(32px, 4.5vw, 64px);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.gallery-count {
  font-family: var(--ff-mono);
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.filter-pill {
  font-family: var(--ff-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--muted);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 7px 16px;
  background: transparent;
  cursor: pointer;
  transition: color 150ms, border-color 150ms, background 150ms;
}

.filter-pill:hover {
  color: var(--ink);
  border-color: rgba(244,241,234,0.25);
}

.filter-pill.active {
  color: var(--canvas);
  background: var(--primary);
  border-color: var(--primary);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1200px;
  margin-inline: auto;
}

.gallery-card {
  background: var(--surface);
  overflow: hidden;
  border-radius: 0;
  transition: transform 250ms ease-out;
}

.gallery-card:hover { transform: translateY(-2px); }

.gallery-card-img-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.gallery-card-img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  max-height: none;
  transition: transform 500ms var(--ease-out);
  filter: grayscale(10%);
}

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

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

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

.gallery-card-body {
  padding: 18px 20px 20px;
}

.gallery-card-body h3 {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 19px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.1;
}

.gallery-card-meta-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.gallery-card-category {
  font-family: var(--ff-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  font-weight: 500;
}

.gallery-card-location {
  font-size: 12px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 4px;
}

.gallery-card-location svg { width: 12px; height: 12px; }

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

.gallery-card-stats {
  display: flex;
  gap: 16px;
  border-top: 1px solid var(--border);
  padding-top: 12px;
}

.gallery-stat { flex: 1; }

.gallery-stat-label {
  font-family: var(--ff-mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  display: block;
  margin-bottom: 3px;
}

.gallery-stat-value {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-mid);
}

.gallery-empty {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--muted);
  padding: 60px 0;
  font-family: var(--ff-mono);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hairline {
  height: 1px;
  background: var(--border);
  max-width: 1200px;
  margin: 0 auto;
}

/* ============================================================
   ABOUT STORY
   ============================================================ */
.about-story {
  background: var(--canvas);
}

.about-story-grid {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
  padding-block: clamp(80px, 12vh, 160px);
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 72px;
  align-items: start;
}

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

.about-portrait-wrap {
  position: relative;
  overflow: hidden;
}

.about-portrait-wrap img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
  filter: grayscale(15%);
  display: block;
}

.about-portrait-accent {
  position: absolute;
  top: -6px; left: -6px;
  width: 60px; height: 60px;
  border-top: 2px solid var(--primary);
  border-left: 2px solid var(--primary);
  z-index: 2;
}

.about-portrait-accent-br {
  position: absolute;
  bottom: -6px; right: -6px;
  width: 60px; height: 60px;
  border-bottom: 2px solid var(--primary);
  border-right: 2px solid var(--primary);
  z-index: 2;
}

.about-portrait-caption {
  font-family: var(--ff-mono);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-top: 14px;
  text-align: center;
}

.about-story-col { }

.about-story-headline {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 28px;
}

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

.about-story-body strong { color: var(--ink); }

.about-divider {
  width: 40px;
  height: 1px;
  background: var(--primary);
  margin: 24px 0;
}

.service-areas-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 12px 0 16px;
}

.service-areas-list li {
  font-family: var(--ff-mono);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--muted);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px 12px;
}

/* Value cards */
.about-values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.about-value-card {
  background: var(--surface);
  border-top: 1px solid var(--primary);
  padding: 20px;
  border-radius: var(--radius);
}

.about-value-label {
  font-family: var(--ff-mono);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--primary);
  margin-bottom: 8px;
}

.about-value-title {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
  line-height: 1.1;
}

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

/* ============================================================
   ABOUT SECONDARY
   ============================================================ */
.about-secondary {
  background: var(--surface);
  border-top: 1px solid var(--border-brand);
}

.about-secondary-inner {
  max-width: 720px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
  padding-block: clamp(80px, 12vh, 160px);
}

.about-secondary-title {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 28px;
}

.about-secondary-inner p {
  font-size: 17px;
  color: var(--ink-mid);
  line-height: 1.75;
  margin-bottom: 16px;
}

.about-secondary-inner em {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1.2em;
  color: var(--primary);
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
  padding-block: clamp(80px, 12vh, 160px);
  align-items: start;
}

.contact-section-eyebrow {
  font-family: var(--ff-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--primary);
  margin-bottom: 16px;
}

.contact-form-title {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 12px;
}

.contact-form-sub {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 32px;
}

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

.contact-info-card {
  background: var(--surface);
  border-top: 2px solid var(--primary);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: sticky;
  top: calc(var(--header-height) + 24px);
}

.info-card-label {
  font-family: var(--ff-mono);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--primary);
  margin-bottom: 20px;
}

.info-block {
  padding: 16px 0;
}

.info-block-label {
  font-family: var(--ff-mono);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 6px;
}

.info-block-value {
  font-size: 15px;
  color: var(--ink);
  line-height: 1.5;
}

.info-block-value a { color: var(--ink); }
.info-block-value a:hover { color: var(--primary); text-decoration: none; }

.info-block > a {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 22px;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  display: block;
}
.info-block > a:hover { text-decoration: none; opacity: 0.85; }

.info-phone-link {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 22px;
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

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

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

.emergency-callout {
  background: rgba(229,131,37,0.08);
  border: 1px solid var(--border-brand);
  border-radius: var(--radius);
  padding: 16px;
  margin-top: 20px;
}

.emergency-callout-label {
  font-family: var(--ff-mono);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  margin-bottom: 6px;
}

.emergency-callout-text {
  font-size: 14px;
  color: var(--ink-mid);
  line-height: 1.5;
}

.btn-submit {
  background: var(--primary);
  color: var(--canvas);
  border: none;
  padding: 16px 32px;
  border-radius: var(--radius);
  font-family: var(--ff-body);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  transition: filter 180ms;
  align-self: flex-start;
}
.btn-submit:hover { filter: brightness(0.92); }
.btn-submit svg { width: 16px; height: 16px; }

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

/* index footer */
.fi-inner {
  max-width: 1200px;
  margin-inline: auto;
  padding: clamp(56px, 8vh, 96px) clamp(20px, 5vw, 64px) 0;
}

.fg-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.fb-tag {
  font-family: var(--ff-mono);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-top: 14px;
}

.fb-phone {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 18px;
  color: var(--primary);
  margin-top: 8px;
}

.fc-title, .footer-col-title, .footer-col-heading {
  font-family: var(--ff-mono);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-bottom: 16px;
  display: block;
}

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

.fc-links a, .footer-links a, .footer-nav-list a, .footer-service-list a {
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
  transition: color 150ms;
}

.fc-links a:hover, .footer-links a:hover, .footer-nav-list a:hover, .footer-service-list a:hover {
  color: var(--ink);
  text-decoration: none;
}

.fc-text {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

.fb-bottom, .footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.fb-copy, .footer-copy {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}

/* services/gallery/about/contact footer */
.footer-inner {
  max-width: 1200px;
  margin-inline: auto;
  padding: clamp(56px, 8vh, 96px) clamp(20px, 5vw, 64px) 0;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 0;
}

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

.footer-brand-name {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
}

.footer-tagline, .footer-brand-tagline {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

.footer-brand-tagline em {
  font-family: var(--ff-display);
  font-style: italic;
  color: var(--primary);
  font-size: 1.1em;
}

.footer-brand-sub {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  margin-top: 4px;
}

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

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

.footer-contact-item svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; color: var(--primary); }
.footer-contact-item a { color: var(--muted); text-decoration: none; }
.footer-contact-item a:hover { color: var(--primary); text-decoration: none; }

.footer-col { }

.footer-areas {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.8;
}

.footer-area-accent {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1.15em;
  color: var(--primary);
}

.footer-service-areas {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}

.footer-legal {
  display: flex;
  gap: 16px;
}

.footer-legal a {
  font-size: 12px;
  color: var(--muted);
  text-decoration: none;
}

.footer-legal a:hover { color: var(--primary); text-decoration: none; }

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

.mob-call a, .mobile-call a, .mobile-call-pill a, .mobile-cta a,
a.mob-call, a.mobile-call, a.mobile-call-pill, a.mobile-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: var(--canvas);
  padding: 14px 22px;
  border-radius: 999px;
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 18px 40px -10px rgba(0,0,0,0.45);
  transition: filter 180ms, transform 180ms;
  white-space: nowrap;
}

.mob-call svg, .mobile-call svg, .mobile-call-pill svg, .mobile-cta svg,
a.mob-call svg, a.mobile-call svg, a.mobile-call-pill svg, a.mobile-cta svg {
  width: 20px; height: 20px;
  color: var(--canvas);
}

.mob-call a:hover, .mobile-call a:hover, .mobile-call-pill a:hover, .mobile-cta a:hover,
a.mob-call:hover, a.mobile-call:hover, a.mobile-call-pill:hover, a.mobile-cta:hover {
  filter: brightness(0.92);
  transform: translateY(-2px);
  text-decoration: none;
  color: var(--canvas);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
}

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

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

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

.stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms var(--ease-out), transform 600ms var(--ease-out);
}

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

.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; }
.stagger.visible > *:nth-child(9)  { transition-delay: 640ms; }
.stagger.visible > *:nth-child(10) { transition-delay: 720ms; }
.stagger.visible > *:nth-child(11) { transition-delay: 800ms; }
.stagger.visible > *:nth-child(12) { transition-delay: 880ms; }

/* ============================================================
   MISC UTILITIES
   ============================================================ */
svg { flex-shrink: 0; }

/* Cap SVGs that have no size attr */
.nav-toggle svg, .service-block-cta svg,
.cta-banner-phone svg, .footer-contact-item svg,
.gal-cta a svg, .faq-chev svg, .faq-chevron {
  width: 18px; height: 18px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .fg-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 900px) {
  /* Nav mobile */
  .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: 20px 28px 24px;
    border-bottom: 1px solid var(--border);
    z-index: 800;
    gap: 0;
  }

  .nav-pages.open { display: flex; }

  .nav-pages ul,
  ul#navLinks {
    flex-direction: column;
    gap: 4px;
    width: 100%;
  }

  .nav-pages a,
  #navLinks a {
    padding: 12px 0;
    font-size: 16px;
    border-bottom: 1px solid var(--border);
    display: block;
    width: 100%;
  }

  .nav-cta a span { display: none; }
  .nav-cta a { padding: 10px 14px; }

  /* Service grid */
  .srv-grid { grid-template-columns: repeat(2, 1fr); }

  /* Gallery feature */
  .gal-feature { grid-template-columns: 1fr; }
  .gal-side { flex-direction: row; gap: 32px; padding: 24px; }
  .gal-stat { margin-bottom: 0; }
  .gal-cta { border-top: none; border-left: 1px solid var(--border); padding-top: 0; padding-left: 24px; }

  /* Con grid */
  .con-grid { grid-template-columns: 1fr; gap: 40px; }

  /* About story */
  .about-story-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-portrait-col { position: static; max-width: 380px; }

  /* Contact inner */
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-info-card { position: static; }

  /* CTA banner */
  .cta-banner-inner { grid-template-columns: 1fr; gap: 40px; }

  /* Service blocks */
  .service-block { grid-template-columns: 1fr; min-height: auto; }
  .service-block.reverse .service-block-photo { order: 0; }
  .service-block.reverse .service-block-body  { order: 0; }
  .service-block-photo { aspect-ratio: 16 / 9; }
  .service-block-photo img { position: relative; inset: auto; height: auto; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .fg-grid { grid-template-columns: 1fr 1fr; }

  /* About values */
  .about-values { grid-template-columns: 1fr; }

  /* Gallery grid */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-section { padding-inline: clamp(16px, 4vw, 40px); }

  /* Mobile pill shows */
  .mob-call, .mobile-call, .mobile-call-pill, .mobile-cta { display: flex; }

  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .srv-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .fg-grid { grid-template-columns: 1fr; }
  .fb-bottom, .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
  .hero-title { font-size: clamp(52px, 14vw, 96px); }
  .gal-side { flex-direction: column; }
  .gal-cta { border-left: none; border-top: 1px solid var(--border); padding-left: 0; padding-top: 20px; }
  .services-index-inner { padding-inline: 16px; }
  .cta-banner-inner { padding-inline: 20px; }
}

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


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