@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');

/* ============================================================
   CUSTOM PROPERTIES
   ============================================================ */
:root {
  --primary:        #2aa11d;
  --primary-dim:    #1e7614;
  --primary-glow:   rgba(42, 161, 29, 0.18);
  --accent:         #2aa11d;

  --canvas:         #0C0C0F;
  --surface:        #1A1814;
  --surface-2:      #201e1a;
  --surface-3:      #252220;

  --ink:            #F4F1EA;
  --ink-mid:        #ccc8be;
  --muted:          #8E8A82;
  --muted-dim:      #5c5952;

  --border:         rgba(244, 241, 234, 0.1);
  --border-brand:   rgba(42, 161, 29, 0.4);

  --header-height:  72px;

  --radius-sm:      4px;
  --radius-md:      8px;
  --radius-pill:    999px;

  --section-py:     clamp(112px, 14vh, 180px);
  --content-max:    1200px;
  --wide-max:       1400px;
}

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

/* ============================================================
   GLOBAL 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', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

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

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

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

.page-header, [class*="page-header"], .about-feature, .about-hero {
  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
   ============================================================ */
a { color: var(--ink); text-decoration: none; transition: color 150ms ease; }
a:hover { color: var(--primary); text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 4px; }

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

/* ============================================================
   TYPOGRAPHY TOKENS
   ============================================================ */
.display-title,
h1.hero-title,
h1.page-header-title,
h2.magazine-headline,
h2.about-editorial-headline,
h2.cta-banner-title,
h2.faq-title,
h2.section-title,
h2.service-block-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.01em;
}

.eyebrow, .section-eyebrow, .section-label,
.page-header-eyebrow, .faq-eyebrow, .cta-eyebrow,
.cta-banner-eyebrow, .service-block-index,
.magazine-body-eyebrow, .info-block-label,
.info-label, .gallery-stat-label, .footer-col-title,
.footer-col-heading {
  font-family: 'IBM Plex Mono', 'Courier New', monospace;
  font-weight: 500;
  font-size: clamp(10px, 1.1vw, 12px);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Accent / italic display word (unique move) */
em.accent, span.accent-word {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 600;
  font-size: 1.25em;
  color: var(--primary);
  line-height: inherit;
}

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

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

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

#scrollBar, .scroll-bar {
  position: fixed; top: 0; left: 0; right: 0; height: 3px;
  background: var(--border); z-index: 9998;
}

/* ============================================================
   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 {
  height: var(--header-height);
  max-width: 1320px;
  margin-inline: auto;
  padding-inline: 28px;
  display: flex;
  align-items: center;
  gap: 32px;
}

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

.nav-logo:hover { text-decoration: none; }

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

.nav-pages a {
  display: inline-block;
  padding: 6px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-mid);
  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 li.active a,
.nav-pages a[aria-current="page"] {
  color: var(--primary);
  border-bottom: 2px solid var(--primary);
  padding-bottom: 4px;
  text-decoration: none;
}

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

.nav-cta:hover { filter: brightness(0.92); color: #fff; text-decoration: none; }

.nav-cta-icon { width: 18px; height: 18px; flex-shrink: 0; }

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

@media (max-width: 900px) {
  .nav-toggle { display: flex; margin-left: auto; }
  .nav-cta-text { display: none; }
  .nav-cta { padding: 10px 12px; }

  .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;
    justify-content: flex-start;
  }

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

  .nav-pages a { font-size: 18px; padding: 10px 0; }
}

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

.hero-overlay {
  background: linear-gradient(
    135deg,
    rgba(10, 20, 8, 0.85) 0%,
    rgba(12, 12, 15, 0.55) 45%,
    rgba(8, 8, 10, 0.88) 100%
  );
}

.hero-inner {
  padding: clamp(64px, 10vw, 120px) clamp(24px, 5vw, 80px) clamp(72px, 10vw, 120px);
  max-width: 860px;
}

.hero-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 500;
  font-size: clamp(10px, 1.1vw, 12px);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 20px;
}

.hero-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-size: clamp(72px, 9vw, 144px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--ink);
  max-width: 14ch;
  margin-bottom: 28px;
}

.hero-title em.accent {
  font-style: italic;
  color: var(--primary);
  font-size: 1em;
}

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

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

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

/* ============================================================
   BUTTONS
   ============================================================ */
.btn, .btn-primary, .btn-cta-primary, .btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  padding: 18px 32px;
  border-radius: var(--radius-sm);
  font-family: 'Inter Tight', sans-serif;
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: filter 200ms, transform 200ms;
  white-space: nowrap;
}

.btn:hover, .btn-primary:hover, .btn-cta-primary:hover, .btn-submit:hover {
  filter: brightness(0.9);
  transform: translateY(-1px);
  color: #fff;
  text-decoration: none;
}

.btn-ghost, .btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--ink);
  padding: 17px 31px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(244, 241, 234, 0.25);
  font-family: 'Inter Tight', sans-serif;
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 200ms, color 200ms;
  white-space: nowrap;
}

.btn-ghost:hover, .btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  text-decoration: none;
}

.btn-service {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  transition: filter 200ms;
}
.btn-service:hover { filter: brightness(0.9); color: #fff; text-decoration: none; }

.btn-pair {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

/* ============================================================
   TRUST CHIPS
   ============================================================ */
.trust-chip, .trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mid);
  border: 1px solid rgba(244, 241, 234, 0.18);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.trust-sep {
  color: var(--primary);
  font-size: 10px;
  opacity: 0.7;
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--canvas);
  border-top: 1px solid rgba(244, 241, 234, 0.08);
  border-bottom: 1px solid rgba(244, 241, 234, 0.08);
  padding: 32px 0;
}

.trust-strip-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  justify-content: center;
}

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

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

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

.marquee-dot {
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}

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

/* ============================================================
   SERVICES (TABBED — INDEX PAGE)
   ============================================================ */
.services {
  padding-block: var(--section-py);
  background: var(--canvas);
}

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

.services-header .eyebrow { margin-bottom: 12px; }

.services-header .display-title {
  font-size: clamp(40px, 5vw, 72px);
}

.services-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}

.service-tab {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  background: transparent;
  border: 1px solid rgba(244, 241, 234, 0.15);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all 200ms;
  white-space: nowrap;
}

.service-tab:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.service-tab.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.services-panels { position: relative; }

.service-panel {
  display: none;
  grid-template-columns: 45% 55%;
  gap: 0;
  min-height: 480px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.service-panel.active { display: grid; }

.service-panel-visual {
  background: var(--surface);
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 36px;
  min-height: 420px;
  border-right: 1px solid var(--border-brand);
}

.panel-numeral {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-style: italic;
  font-size: clamp(120px, 18vw, 220px);
  line-height: 0.8;
  color: rgba(42, 161, 29, 0.12);
  position: absolute;
  bottom: -16px;
  right: -8px;
  pointer-events: none;
  user-select: none;
}

.service-panel-body {
  background: var(--surface);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.service-panel-body h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.0;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 8px;
}

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

@media (max-width: 640px) {
  .service-panel { grid-template-columns: 1fr; }
  .service-panel-visual { min-height: 180px; }
}

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

.gallery-header { margin-bottom: 48px; }
.gallery-header .eyebrow { margin-bottom: 12px; }
.gallery-header .display-title { font-size: clamp(40px, 5vw, 72px); }

.gallery-layout {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 24px;
  margin-bottom: 32px;
  align-items: start;
}

.gallery-main-img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  width: 100%;
  border-radius: var(--radius-sm);
  display: block;
  max-height: none !important;
}

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

.gallery-stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 1px solid var(--border-brand);
  border-radius: var(--radius-sm);
  padding: 28px 24px;
  text-align: center;
}

.gallery-stat-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  color: var(--primary);
  letter-spacing: -0.02em;
}

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

.gallery-cta-row {
  display: flex;
  justify-content: flex-start;
}

@media (max-width: 640px) {
  .gallery-layout { grid-template-columns: 1fr; }
  .gallery-stat-col { flex-direction: row; overflow-x: auto; }
  .gallery-stat-card { flex: 0 0 160px; }
}

/* ============================================================
   SERVICE AREAS
   ============================================================ */
.service-areas {
  padding-block: var(--section-py);
  background: var(--canvas);
  border-top: 1px solid var(--border);
}

.service-areas .eyebrow { margin-bottom: 12px; }
.service-areas .display-title { font-size: clamp(36px, 4.5vw, 64px); margin-bottom: 40px; }

.areas-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

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

.area-pill:hover { border-color: var(--primary); color: var(--primary); }

.areas-note {
  font-size: 14px;
  color: var(--muted);
  font-style: italic;
}

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

.faq-section {
  padding-block: var(--section-py);
  background: var(--canvas);
}

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

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

.faq-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.01em;
}

.faq .display-title { font-size: clamp(36px, 5vw, 72px); margin-bottom: 48px; }
.faq .eyebrow { margin-bottom: 12px; }

.faq-list {
  border-top: 1px solid var(--border);
}

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

details.faq > summary,
.faq-list details > summary {
  cursor: pointer;
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  transition: color 200ms;
}

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

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

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

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

.faq-answer, .faq-list details p {
  font-size: 15px;
  color: var(--ink-mid);
  line-height: 1.7;
  padding-bottom: 22px;
  padding-right: 40px;
}

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

.team-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.team-cta-phrase {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-style: italic;
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.1;
  color: var(--ink);
  max-width: 60ch;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact, .contact-section {
  padding-block: var(--section-py);
  background: var(--canvas);
  border-top: 1px solid var(--border);
}

.contact .eyebrow,
.contact-section .eyebrow { margin-bottom: 12px; }

.contact .display-title { font-size: clamp(36px, 5vw, 64px); margin-bottom: 48px; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 64px;
  align-items: start;
}

form.contact-form, .contact-grid > form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

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

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

.form-field input,
.form-field textarea,
.form-field select,
.contact-grid input,
.contact-grid textarea {
  background: var(--surface);
  border: 1px solid rgba(244, 241, 234, 0.12);
  color: var(--ink);
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-family: 'Inter Tight', sans-serif;
  font-size: 15px;
  transition: border-color 200ms;
  width: 100%;
}

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

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

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

.contact-info h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1.05;
  margin-bottom: 32px;
}

.info-block { margin-bottom: 20px; }

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

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

.info-value a, .info-block-value a, .info-block-value-sm a {
  color: var(--ink-mid);
  transition: color 150ms;
}

.info-value a:hover, .info-block-value a:hover, .info-block-value-sm a:hover {
  color: var(--primary);
}

.info-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 20px 0;
}

/* Contact info card (contact.html) */
.contact-info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 2px solid var(--primary);
  border-radius: var(--radius-sm);
  padding: 36px;
}

.contact-form-block { }

.contact-form-heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-style: italic;
  font-size: clamp(22px, 2.5vw, 32px);
  color: var(--ink);
  margin-bottom: 24px;
}

.hours-list { list-style: none; padding: 0; }
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
  font-size: 14px;
  color: var(--ink-mid);
}
.hours-day { color: var(--muted); }
.hours-time { color: var(--ink-mid); }

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

.payment-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.payment-chip {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid rgba(244, 241, 234, 0.12);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
}

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

/* ============================================================
   PAGE HEADER (sub-pages)
   ============================================================ */
.page-header {
  min-height: clamp(280px, 40vh, 480px);
  display: flex;
  align-items: center;
}

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

.page-header-inner {
  position: relative;
  z-index: 2;
  padding: 80px clamp(24px, 5vw, 80px);
}

.page-header-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: 16px;
}

.page-header-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 16px;
}

.page-header-title em, .page-header-title span.accent-word {
  font-style: italic;
  color: var(--primary);
}

.page-header-sub {
  font-size: clamp(15px, 1.5vw, 18px);
  color: var(--ink-mid);
  max-width: 52ch;
}

/* ============================================================
   SERVICES FEATURE BLOCKS (services.html)
   ============================================================ */
.services-feature {
  padding-block: var(--section-py);
  background: var(--canvas);
}

.services-feature-intro {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  margin-bottom: 80px;
  text-align: center;
}

.services-feature-intro .section-label { margin-bottom: 12px; }

.services-feature-intro h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 20px;
}

.services-feature-intro h2 em {
  font-style: italic;
  color: var(--primary);
}

.services-feature-intro p {
  font-size: 17px;
  color: var(--ink-mid);
  max-width: 60ch;
  margin-inline: auto;
}

.service-block {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  margin-bottom: 80px;
}

.service-block:last-of-type { margin-bottom: 0; }

.service-block-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

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

.service-block-visual {
  background: var(--surface);
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  border-right: 1px solid rgba(42, 161, 29, 0.2);
  min-height: 360px;
}

.service-block-inner.reverse .service-block-visual {
  border-right: none;
  border-left: 1px solid rgba(42, 161, 29, 0.2);
}

.service-block-index {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
}

.service-block-tagline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-style: italic;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.05;
  color: var(--ink-mid);
}

.service-block-visual-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.service-visual-chip {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid rgba(244, 241, 234, 0.12);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

.service-block-body {
  background: var(--surface);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.service-block-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-size: clamp(28px, 3.5vw, 52px);
  line-height: 1.0;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 8px;
}

.service-block-name em {
  font-style: italic;
  color: var(--primary);
}

.service-block-desc {
  font-size: 15px;
  color: var(--ink-mid);
  line-height: 1.7;
}

.service-block-bullets {
  list-style: none;
  padding: 0;
  margin: 4px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.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: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--primary);
}

@media (max-width: 768px) {
  .service-block-inner { grid-template-columns: 1fr; }
  .service-block-inner.reverse { direction: ltr; }
  .service-block-visual { min-height: 200px; border-right: none; border-bottom: 1px solid rgba(42, 161, 29, 0.2); }
  .service-block-inner.reverse .service-block-visual { border-left: none; border-bottom: 1px solid rgba(42, 161, 29, 0.2); }
}

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

.cta-banner-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(42, 161, 29, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner-line {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

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

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

.cta-eyebrow, .cta-banner-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
}

.cta-banner-title, .cta-banner h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-size: clamp(40px, 5.5vw, 80px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.cta-banner-title em, .cta-banner h2 em,
.cta-banner-title span.accent-word { color: var(--primary); font-style: italic; }

.cta-banner-sub, .cta-banner p {
  font-size: 17px;
  color: var(--ink-mid);
  max-width: 52ch;
}

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

.cta-banner-actions, .cta-pair {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: center;
}

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

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

.filter-pill {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  background: transparent;
  border: 1px solid rgba(244, 241, 234, 0.15);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all 200ms;
}

.filter-pill:hover, .filter-pill.active {
  border-color: var(--primary);
  color: var(--primary);
}

.project-grid {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.project-card {
  background: var(--surface);
  padding: 36px;
  border: 1px solid var(--border);
  transition: transform 250ms ease-out, box-shadow 250ms ease-out, border-color 250ms;
  cursor: pointer;
  position: relative;
}

.project-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px -12px rgba(0, 0, 0, 0.5);
  border-color: var(--border-brand);
  z-index: 2;
}

.project-card.featured {
  grid-column: span 2;
  grid-row: span 1;
  border-top: 2px solid var(--primary);
}

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

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

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

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

.project-index {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-style: italic;
  font-size: 48px;
  color: rgba(42, 161, 29, 0.15);
  line-height: 1;
  margin-bottom: 8px;
}

.project-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-size: clamp(22px, 2.5vw, 32px);
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 12px;
}

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

.project-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 12px;
}

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

@media (max-width: 768px) {
  .project-grid { grid-template-columns: 1fr; }
  .project-card.featured { grid-column: auto; }
}

/* ============================================================
   ABOUT PAGE — MAGAZINE STORY
   ============================================================ */
.magazine-story {
  padding-block: var(--section-py);
  background: var(--canvas);
}

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

.magazine-portrait {
  position: sticky;
  top: calc(var(--header-height) + 24px);
}

.magazine-portrait img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius-sm);
  filter: grayscale(20%) contrast(1.05);
  max-height: none !important;
}

.portrait-caption {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 12px;
  text-align: center;
}

.magazine-body-eyebrow { margin-bottom: 16px; }

.magazine-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 32px;
}

.magazine-headline span.accent-word {
  font-style: italic;
  color: var(--primary);
  font-size: 1.25em;
}

.magazine-text p {
  font-size: 17px;
  color: var(--ink-mid);
  line-height: 1.75;
  margin-bottom: 20px;
}

.magazine-pull-quote {
  border-left: 2px solid var(--primary);
  padding: 20px 24px;
  margin: 32px 0;
}

.magazine-pull-quote p {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-style: italic;
  font-size: clamp(20px, 2.5vw, 28px);
  color: var(--ink);
  line-height: 1.3;
}

.magazine-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
}

.mag-chip {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mid);
  border: 1px solid rgba(244, 241, 234, 0.15);
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  transition: border-color 200ms, color 200ms;
}

.mag-chip:hover { border-color: var(--primary); color: var(--primary); }

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

/* ============================================================
   ABOUT PAGE — VALUES
   ============================================================ */
.values-section {
  padding-block: var(--section-py);
  background: var(--surface);
  border-top: 1px solid var(--border);
}

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

.section-eyebrow { margin-bottom: 12px; }

.section-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 56px;
}

.section-title span.accent-word {
  font-style: italic;
  color: var(--primary);
  font-size: 1.25em;
}

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

.value-card {
  background: var(--surface-2);
  padding: 36px;
  border-top: 2px solid transparent;
  transition: border-color 250ms;
}

.value-card:hover { border-color: var(--primary); }

.value-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-style: italic;
  font-size: 56px;
  color: rgba(42, 161, 29, 0.2);
  line-height: 1;
  display: block;
  margin-bottom: 12px;
}

.value-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-size: clamp(20px, 2vw, 28px);
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 12px;
}

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

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

@media (max-width: 480px) {
  .values-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   ABOUT PAGE — TIMELINE
   ============================================================ */
.timeline-section {
  padding-block: var(--section-py);
  background: var(--canvas);
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 56px;
  position: relative;
}

.timeline-grid::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--border-brand);
}

.timeline-step {
  position: relative;
  padding-top: 48px;
}

.timeline-dot {
  position: absolute;
  top: 12px;
  left: 0;
  width: 18px;
  height: 18px;
  border: 1px solid var(--primary);
  border-radius: 50%;
  background: var(--canvas);
  display: flex;
  align-items: center;
  justify-content: center;
}

.timeline-dot-inner {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
}

.timeline-year {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}

.timeline-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-size: clamp(18px, 2vw, 24px);
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 8px;
}

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

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

@media (max-width: 480px) {
  .timeline-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   ABOUT PAGE — CREW STRIP
   ============================================================ */
.crew-section {
  padding-block: var(--section-py);
  background: var(--surface);
  max-width: 100%;
}

.crew-section .section-eyebrow,
.crew-section .section-title {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
}

.crew-section .section-title { margin-bottom: 40px; }

.crew-strip-wrap {
  position: relative;
  max-height: 420px;
  overflow: hidden;
}

.crew-strip-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center 30%;
  filter: grayscale(25%) contrast(1.05);
  display: block;
  max-height: none !important;
}

.crew-strip-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(8, 8, 10, 0.88) 0%, rgba(12, 12, 15, 0.2) 60%, rgba(8, 8, 10, 0.7) 100%);
  display: flex;
  align-items: center;
  padding: 48px clamp(24px, 5vw, 80px);
}

.crew-strip-text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-style: italic;
  font-size: clamp(24px, 3.5vw, 44px);
  color: var(--ink);
  max-width: 48ch;
  line-height: 1.2;
}

/* ============================================================
   ABOUT PAGE — EDITORIAL SECTION
   ============================================================ */
.about-editorial {
  padding-block: var(--section-py);
  background: var(--canvas);
}

.about-editorial-inner {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 80px;
  align-items: center;
}

.about-editorial-portrait {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-sm);
  filter: grayscale(15%) contrast(1.05);
  width: 100%;
  max-height: none !important;
}

.about-editorial-body .section-eyebrow { margin-bottom: 12px; }

.about-editorial-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-size: clamp(32px, 4vw, 60px);
  line-height: 0.95;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 24px;
}

.about-editorial-headline span.accent-word {
  font-style: italic;
  color: var(--primary);
  font-size: 1.25em;
}

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

.about-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border-brand);
}

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

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

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

.footer-brand { display: flex; flex-direction: column; gap: 12px; }
.footer-brand-name em {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  color: var(--primary);
  font-size: 1.15em;
}

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

.footer-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-mid);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: color 150ms;
  margin-top: 8px;
}

.footer-phone-link:hover { color: var(--primary); text-decoration: none; }
.footer-phone-icon { width: 16px; height: 16px; }

.footer-col-title, .footer-col-heading {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

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

.footer-links a, .footer-col ul a {
  font-size: 14px;
  color: var(--ink-mid);
  text-decoration: none;
  transition: color 150ms;
}

.footer-links a:hover, .footer-col ul a:hover { color: var(--primary); text-decoration: none; }

.footer-text-sm { font-size: 13px; color: var(--muted); line-height: 1.5; }

.footer-contact-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 8px; }

.footer-contact-line {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-mid);
  text-decoration: none;
  transition: color 150ms;
}

.footer-contact-line:hover { color: var(--primary); text-decoration: none; }
.footer-contact-line svg { width: 14px; height: 14px; flex-shrink: 0; }

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

.footer-info-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--muted);
}

.footer-info-icon { width: 14px; height: 14px; flex-shrink: 0; color: var(--primary); margin-top: 2px; }

.footer-info-item a { color: var(--ink-mid); transition: color 150ms; text-decoration: none; }
.footer-info-item a:hover { color: var(--primary); }

.footer-bottom {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  padding-block: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

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

.footer-payment {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  flex-wrap: wrap;
}

.footer-trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-chip {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid rgba(244, 241, 234, 0.1);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

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

@media (max-width: 480px) {
  .footer-inner, .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ============================================================
   MOBILE STICKY CTA
   ============================================================ */
.mobile-sticky-cta, .mobile-call-pill, .mobile-cta-pill {
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: #fff;
  padding: 14px 22px;
  border-radius: var(--radius-pill);
  box-shadow: 0 18px 40px -10px rgba(0, 0, 0, 0.45);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: filter 200ms, transform 200ms;
}

.mobile-sticky-cta > a,
.mobile-cta-pill > a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
}

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

.mobile-sticky-cta:hover,
.mobile-call-pill:hover,
.mobile-cta-pill:hover {
  filter: brightness(0.9);
  transform: translateY(-2px);
  text-decoration: none;
  color: #fff;
}

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

/* ============================================================
   ANIMATION UTILITIES
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-right {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.scale-in {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

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

/* ============================================================
   MISC COMPONENTS
   ============================================================ */

/* Featured section */
.featured { }

/* 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); }

/* SVG caps */
svg { flex-shrink: 0; }
.faq-chevron { width: 20px; height: 20px; }
.footer-info-icon { width: 14px; height: 14px; }
.nav-cta-icon { width: 18px; height: 18px; }
.footer-phone-icon { width: 16px; height: 16px; }

/* Info blocks */
.info-block-label { margin-bottom: 4px; }
.info-block-value { font-size: 15px; color: var(--ink-mid); }
.info-block-value-sm { font-size: 14px; color: var(--ink-mid); display: block; }

/* ============================================================
   NOISE TEXTURE OVERLAY
   ============================================================ */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9990;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .hero-inner { padding-inline: 24px; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .services-tabs { gap: 6px; }
  .service-tab { font-size: 10px; padding: 7px 14px; }
  .about-editorial-inner { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .trust-strip-row { flex-direction: column; align-items: flex-start; gap: 10px; }
  .trust-sep { display: none; }
  .hero-trust-chips { gap: 8px; }
  .project-grid { grid-template-columns: 1fr; }
  .gallery-filter-bar { gap: 6px; }
}


/* === Validator patches (auto-applied) === */
/* validator patch: grid children without placement → span full row */
.gallery-main-img { grid-column: 1 / -1; }
.gallery-stat-col { grid-column: 1 / -1; }
.service-block-visual { grid-column: 1 / -1; }
.service-block-body { grid-column: 1 / -1; }
.footer-brand { grid-column: 1 / -1; }
.footer-col { grid-column: 1 / -1; }
.magazine-body { grid-column: 1 / -1; }
.form-field { grid-column: 1 / -1; }
.footer-grid { grid-column: 1 / -1; }
.footer-bottom { 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; }
