@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@300;400;500;600&family=IBM+Plex+Mono:wght@400;500&display=swap');

/* ============================================================
   CUSTOM PROPERTIES
   ============================================================ */
:root {
  --primary:        #98C970;
  --accent:         #7A9E5B;
  --canvas:         #0C0C0F;
  --surface:        #1A1814;
  --surface-2:      #222018;
  --ink:            #F4F1EA;
  --ink-mid:        #C8C4BC;
  --muted:          #8E8A82;
  --border:         rgba(244, 241, 234, 0.10);
  --border-brand:   rgba(152, 201, 112, 0.28);
  --primary-dim:    rgba(152, 201, 112, 0.12);
  --primary-glow:   rgba(152, 201, 112, 0.22);

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

  --header-height:  72px;
  --section-py:     clamp(80px, 12vh, 160px);
  --content-max:    1200px;
  --wide-max:       1400px;
  --radius:         4px;
  --radius-lg:      8px;
  --transition:     220ms ease-out;
}

@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.68;
  font-size: clamp(15px, 1.1vw, 17px);
  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 {
  max-height: 48px !important;
  max-width: 200px !important;
  width: auto !important;
  align-self: flex-start !important;
  object-fit: contain !important;
  flex: 0 0 auto !important;
}

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

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

section > img:first-child:not([class*="logo"]):not(.nav-logo) {
  max-height: 64vh; object-fit: cover;
}

section img:not(.hero-bg):not(.page-header-bg):not([class*="full-bleed"]):not([class*="logo"]) {
  max-height: 720px;
}

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

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

/* Base anchor */
a { color: var(--primary); transition: color var(--transition); text-decoration: none; }
a:hover { color: var(--primary); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 4px; }

/* ============================================================
   TYPOGRAPHY UTILITIES
   ============================================================ */
.brand-word {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 600;
  font-size: 1.25em;
  color: var(--primary);
  line-height: 1;
}

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

.mono-eyebrow,
.section-eyebrow,
.page-header-eyebrow {
  font-family: var(--ff-mono);
  font-weight: 500;
  font-size: clamp(10px, 1vw, 12px);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 12px;
}

.hairline {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--primary);
  margin-bottom: 20px;
}

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

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

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

.section-title {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: clamp(40px, 5vh, 64px);
  max-width: 16ch;
}

.section-heading {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: clamp(36px, 4vh, 56px);
  max-width: 18ch;
}

.section-heading em, .section-title em {
  font-family: var(--ff-display);
  font-style: italic;
  color: var(--primary);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn, .btn-primary, .btn-ghost, .btn-ghost-dark, .btn-dark, .btn-submit, .form-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-body);
  font-weight: 500;
  font-size: clamp(13px, 1.1vw, 15px);
  letter-spacing: 0.01em;
  padding: 16px 30px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform var(--transition), filter var(--transition), background var(--transition), color var(--transition);
  white-space: nowrap;
  text-decoration: none;
  border: none;
}

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

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

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

.btn-dark {
  background: var(--surface);
  color: var(--ink);
  border: 1px solid var(--border);
}
.btn-dark:hover {
  background: var(--surface-2);
  text-decoration: none;
}

/* SVG inside buttons */
.btn svg, .btn-primary svg, .btn-ghost svg, .btn-ghost-dark svg,
.btn-dark svg, .btn-submit svg, .form-submit svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

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

.top-nav {
  height: var(--header-height);
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(16px, 3vw, 28px);
  display: flex;
  align-items: center;
  gap: 24px;
}

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

.nav-logo img {
  max-height: 44px !important;
  max-width: 180px !important;
  width: auto !important;
  height: auto !important;
}

.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-family: var(--ff-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-mid);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color var(--transition);
}

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

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

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

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

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

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

.nav-toggle svg { width: 24px; height: 24px; }

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

  .nav-pages {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--canvas);
    padding: 20px 24px;
    gap: 4px;
    border-bottom: 1px solid rgba(244, 241, 234, 0.08);
    z-index: 899;
    align-items: flex-start;
    justify-content: flex-start;
  }

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

  .nav-pages a {
    padding: 10px 0;
    font-size: 16px;
    width: 100%;
  }

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

  .nav-cta {
    padding: 10px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    justify-content: center;
  }
}

/* ============================================================
   HERO
   ============================================================ */
#hero.hero {
  min-height: 96vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--canvas);
  padding-bottom: clamp(60px, 8vh, 100px);
  overflow: visible;
}

.hero-super {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

/* Supergraphic background text handled via hero-super pseudo / JS */

.hero-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: clamp(80px, 10vh, 120px) clamp(20px, 4vw, 48px) 0;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-family: var(--ff-mono);
  font-size: clamp(10px, 0.9vw, 12px);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-eyebrow-rule {
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--primary);
  flex-shrink: 0;
}

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

.hero-title em, .hero-title .brand-word {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 600;
  color: var(--primary);
  font-size: inherit;
  line-height: inherit;
}

.hero-deck {
  font-family: var(--ff-body);
  font-size: clamp(15px, 1.3vw, 18px);
  color: var(--ink-mid);
  line-height: 1.6;
  max-width: 52ch;
  margin-bottom: 12px;
}

.hero-sub {
  font-family: var(--ff-body);
  font-size: clamp(13px, 1.1vw, 15px);
  color: var(--muted);
  margin-bottom: clamp(28px, 3.5vh, 40px);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: clamp(28px, 3.5vh, 40px);
}

.hero-ctas .btn:first-child {
  background: var(--primary);
  color: var(--canvas);
  border: none;
}

.hero-ctas .btn:first-child:hover {
  filter: brightness(1.08);
  text-decoration: none;
  color: var(--canvas);
}

.hero-ctas .btn-ghost svg { width: 16px; height: 16px; }

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

.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--ff-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 6px 12px;
  border: 1px solid rgba(244, 241, 234, 0.12);
  border-radius: 999px;
  white-space: nowrap;
}

.trust-chip-star { color: var(--primary); border-color: var(--border-brand); }
.trust-chip-star::before { content: '★'; color: var(--primary); font-size: 10px; }

.trust-sep {
  color: var(--primary);
  font-size: 14px;
  line-height: 1;
  margin: 0 6px;
}

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

.trust-strip-inner {
  max-width: var(--wide-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 0;
  row-gap: 8px;
}

.trust-badge {
  font-family: var(--ff-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 4px 14px;
  white-space: nowrap;
}

.trust-badge-primary {
  color: var(--primary);
}

.trust-sep {
  color: var(--primary);
  font-size: 8px;
  line-height: 1;
  opacity: 0.6;
}

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

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

.service-tab {
  font-family: var(--ff-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--muted);
  background: transparent;
  border: 1px solid rgba(244, 241, 234, 0.12);
  border-radius: 999px;
  padding: 8px 18px;
  cursor: pointer;
  transition: color var(--transition), border-color var(--transition), background var(--transition);
  white-space: nowrap;
}

.service-tab:hover {
  color: var(--ink);
  border-color: rgba(244, 241, 234, 0.28);
}

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

.services-panels {
  position: relative;
}

.service-panel {
  display: none;
  grid-template-columns: 45% 1fr;
  gap: 48px;
  align-items: stretch;
  min-height: 420px;
}

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

.service-panel-img {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface);
}

.service-panel-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: none;
  filter: saturate(0.85);
}

.service-panel-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 12px 0;
}

.service-panel-body h3 {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 20px;
  max-width: 20ch;
}

.service-panel-body h3 .brand-word,
.service-panel-body h3 em {
  color: var(--primary);
  font-style: italic;
}

.service-panel-body p {
  color: var(--ink-mid);
  line-height: 1.68;
  font-size: 15px;
  margin-bottom: 14px;
  max-width: 48ch;
}

.service-panel-body a.btn,
.service-panel-body a {
  align-self: flex-start;
  margin-top: 8px;
}

.service-name { color: var(--primary); }

@media (max-width: 768px) {
  .service-panel.active {
    display: flex;
    flex-direction: column;
  }
  .service-panel-img {
    min-height: 240px;
    position: relative;
  }
  .service-panel-img img {
    position: absolute;
    max-height: none;
  }
}

/* ============================================================
   GALLERY PREVIEW (index.html)
   ============================================================ */
.gallery-preview {
  background: var(--canvas);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  margin-bottom: 32px;
}

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

.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: none;
  transition: transform 600ms ease-out;
  filter: saturate(0.80);
}

.gallery-tile:hover img {
  transform: scale(1.04);
  filter: saturate(1);
}

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

.gallery-stat-card {
  grid-column: 2;
  grid-row: 2;
  background: var(--surface);
  border-radius: var(--radius);
  border-top: 2px solid var(--primary);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.gallery-stat-num {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.0;
  color: var(--primary);
  letter-spacing: -0.02em;
}

.gallery-stat-label {
  font-family: var(--ff-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
  margin-bottom: 8px;
}

.gallery-stat-sub {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

.gallery-cta-row {
  display: flex;
  justify-content: flex-start;
  margin-top: 8px;
}

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

/* ============================================================
   SERVICE AREAS
   ============================================================ */
.service-areas {
  background: var(--canvas);
}

.areas-intro {
  color: var(--ink-mid);
  max-width: 52ch;
  margin-bottom: 28px;
  font-size: 15px;
}

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

.area-pill {
  font-family: var(--ff-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 7px 16px;
  border: 1px solid rgba(244, 241, 234, 0.10);
  border-radius: 999px;
  white-space: nowrap;
  transition: color var(--transition), border-color var(--transition);
}

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

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

.areas-note a { color: var(--primary); }

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

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

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

.faq-item > summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  font-family: var(--ff-body);
  font-weight: 500;
  font-size: clamp(15px, 1.3vw, 17px);
  color: var(--ink);
  transition: color var(--transition);
  gap: 20px;
}

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

.faq-item > summary .faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--muted);
  transition: transform 240ms ease, color 200ms;
}

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

.faq-answer {
  padding: 0 0 24px;
  color: var(--ink-mid);
  line-height: 1.68;
  font-size: 15px;
  max-width: 64ch;
}

.faq-footer {
  font-size: 14px;
  color: var(--muted);
}

.faq-footer a { color: var(--primary); }

/* ============================================================
   TEAM CTA
   ============================================================ */
.team-cta {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: clamp(60px, 8vh, 96px) clamp(20px, 4vw, 48px);
}

.team-cta-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.team-cta-headline {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(32px, 4.5vw, 60px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--ink);
  max-width: 20ch;
}

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

.team-cta-sub {
  font-size: 15px;
  color: var(--muted);
  max-width: 52ch;
  line-height: 1.6;
}

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

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

.contact-form {
  background: var(--surface);
  border-radius: var(--radius-lg);
  border-top: 2px solid var(--primary);
  padding: 36px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

.contact-phone-display {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.0;
  letter-spacing: -0.01em;
}

.contact-phone-display a {
  color: var(--ink);
  text-decoration: none;
}

.contact-phone-display a:hover {
  color: var(--primary);
  text-decoration: none;
}

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

.contact-text a { color: var(--primary); }

.cert-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  display: inline-block;
}

.cert-card-id {
  font-family: var(--ff-mono);
  font-size: 12px;
  color: var(--primary);
  letter-spacing: 0.08em;
}

.cert-card-name {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

.contact-certs-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.guarantee-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-mid);
}

.guarantee-mark svg { width: 18px; height: 18px; color: var(--primary); flex-shrink: 0; }
.guarantee-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--primary); flex-shrink: 0; margin-top: 6px; }
.guarantee-title { font-weight: 600; font-size: 13px; color: var(--ink); }
.guarantee-body { font-size: 12px; color: var(--muted); }

.guarantees-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.guarantees-strip {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: clamp(36px, 5vh, 56px) 0;
}

.guarantees-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
}

.contact-socials, .info-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.contact-socials a, .info-socials a, .social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--muted);
  transition: color var(--transition), border-color var(--transition);
  text-decoration: none;
}

.contact-socials a:hover, .info-socials a:hover, .social-link:hover {
  color: var(--primary);
  border-color: var(--border-brand);
  text-decoration: none;
}

.contact-socials a svg, .info-socials a svg { width: 16px; height: 16px; }

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

/* ============================================================
   FORM ELEMENTS
   ============================================================ */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

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

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

.form-input, input[type="text"], input[type="email"], input[type="tel"],
input[type="number"], select, textarea {
  background: rgba(244, 241, 234, 0.04);
  border: 1px solid rgba(244, 241, 234, 0.12);
  border-radius: var(--radius);
  color: var(--ink);
  font-family: var(--ff-body);
  font-size: 14px;
  padding: 12px 14px;
  width: 100%;
  transition: border-color var(--transition);
  outline: none;
  -webkit-appearance: none;
}

.form-input:focus, input:focus, select:focus, textarea:focus {
  border-color: var(--primary);
  background: rgba(152, 201, 112, 0.04);
}

.form-textarea, textarea {
  resize: vertical;
  min-height: 120px;
  font-family: var(--ff-body);
}

select option {
  background: var(--surface);
  color: var(--ink);
}

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

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

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

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}

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

.footer-brand-logo img, .footer-logo img {
  max-height: 40px !important;
  max-width: 160px !important;
  width: auto !important;
}

.footer-tagline {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 17px;
  color: var(--muted);
  line-height: 1.4;
}

.footer-tagline em { color: var(--primary); }

.footer-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 28ch;
}

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

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

.footer-links a, .footer-links li a {
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
  transition: color var(--transition);
}

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

.footer-contact-line {
  font-size: 13px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

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

.footer-contact-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 4px;
}

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

.footer-social-row, .footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.footer-social-link, .footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--muted);
  transition: color var(--transition), border-color var(--transition);
  text-decoration: none;
}

.footer-social-link:hover, .footer-socials a:hover {
  color: var(--primary);
  border-color: var(--border-brand);
  text-decoration: none;
}

.footer-social-link svg, .footer-socials a svg { width: 14px; height: 14px; }

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

.footer-copy, .footer-bottom p { font-size: 12px; color: var(--muted); }

.footer-lic-row {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.footer-lic {
  font-size: 11px;
  color: var(--muted);
  font-family: var(--ff-mono);
}

.footer-lic-dot { opacity: 0.4; }

.footer-licenses { font-size: 11px; color: var(--muted); font-family: var(--ff-mono); }
.footer-creds { display: flex; align-items: center; gap: 6px; }
.footer-creds span { font-size: 11px; color: var(--muted); font-family: var(--ff-mono); }

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

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

/* ============================================================
   PAGE HEADER (sub-pages)
   ============================================================ */
.page-header {
  background: var(--surface);
  min-height: clamp(240px, 35vh, 400px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

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

.page-header-inner {
  position: relative;
  z-index: 2;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: clamp(48px, 7vh, 80px) clamp(20px, 4vw, 48px) clamp(40px, 5vh, 60px);
}

.page-header-super {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.page-header-supergraphic {
  position: absolute;
  top: -20px; right: -10px;
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(120px, 18vw, 220px);
  line-height: 1.0;
  color: rgba(244, 241, 234, 0.03);
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
  letter-spacing: -0.04em;
}

.page-header-eyebrow {
  font-family: var(--ff-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  display: block;
  margin-bottom: 12px;
}

.page-header-title {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(40px, 6vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--ink);
  max-width: 16ch;
  margin-bottom: 14px;
}

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

.page-header-sub {
  font-size: clamp(14px, 1.2vw, 17px);
  color: var(--ink-mid);
  max-width: 52ch;
  line-height: 1.6;
}

.page-header-divider {
  width: 40px;
  height: 1px;
  background: var(--primary);
  margin-top: 20px;
}

/* ============================================================
   SERVICE FEATURE (services.html)
   ============================================================ */
.service-feature {
  background: var(--canvas);
  padding: clamp(80px, 10vh, 120px) 0;
  border-bottom: 1px solid var(--border);
}

.service-feature-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.service-feature.photo-right .service-feature-inner {
  direction: rtl;
}

.service-feature.photo-right .service-feature-inner > * {
  direction: ltr;
}

.service-photo-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
}

.service-photo-wrap img {
  width: 100%;
  max-height: 520px;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.82);
  transition: filter 400ms ease;
}

.service-feature:hover .service-photo-wrap img {
  filter: saturate(0.95);
}

.service-photo-index {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: var(--ff-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(12, 12, 15, 0.75);
  padding: 4px 10px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}

.service-content { display: flex; flex-direction: column; gap: 14px; }

.service-content .section-eyebrow { margin-bottom: 0; }

.service-title {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--ink);
  max-width: 18ch;
}

.service-title span { color: var(--primary); }

.service-desc {
  font-size: 15px;
  color: var(--ink-mid);
  line-height: 1.68;
  max-width: 52ch;
}

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

.service-bullets li {
  font-size: 14px;
  color: var(--ink-mid);
  padding-left: 18px;
  position: relative;
}

.service-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 1px;
  background: var(--primary);
}

.service-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.price-callout {
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 2px solid var(--primary);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  gap: 24px;
  align-items: center;
  margin-top: 8px;
}

.price-callout-label {
  font-family: var(--ff-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}

.price-callout-value {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 600;
  font-size: 24px;
  color: var(--primary);
  line-height: 1;
}

.price-sep {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .service-feature-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .service-feature.photo-right .service-feature-inner {
    direction: ltr;
  }
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: clamp(60px, 8vh, 96px) 0;
}

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

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

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

.cta-banner-headline, .cta-headline {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--ink);
  max-width: 18ch;
}

.cta-banner-headline span, .cta-headline em {
  color: var(--primary);
  font-style: italic;
}

.cta-banner-meta, .cta-sub {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 48ch;
}

.cta-banner-phone, .cta-banner-title {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(18px, 2.5vw, 28px);
  color: var(--ink);
}

.cta-banner-trust, .cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cta-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(244, 241, 234, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.cta-trust-icon {
  width: 28px;
  height: 28px;
  color: var(--primary);
  flex-shrink: 0;
}

svg.cta-trust-icon { width: 28px; height: 28px; }

.cta-trust-text { display: flex; flex-direction: column; gap: 2px; }

.cta-trust-label {
  font-family: var(--ff-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.cta-trust-value {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
}

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

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

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

/* ============================================================
   GALLERY FILTER (gallery.html)
   ============================================================ */
.gallery-filter {
  background: var(--canvas);
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: var(--header-height);
  z-index: 10;
}

.gallery-filter-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

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

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

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

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

/* ============================================================
   GALLERY GRID FULL (gallery.html)
   ============================================================ */
.gallery-grid-section {
  background: var(--canvas);
  padding: clamp(40px, 6vh, 72px) 0;
}

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

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

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

.gallery-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -16px rgba(0, 0, 0, 0.5);
}

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

.gallery-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: none;
  filter: saturate(0.80);
  transition: filter 400ms ease, transform 400ms ease;
}

.gallery-card:hover .gallery-card-photo img {
  filter: saturate(1.0);
  transform: scale(1.04);
}

.gallery-card-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  font-family: var(--ff-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  background: var(--primary);
  color: var(--canvas);
  padding: 3px 10px;
  border-radius: 999px;
}

.gallery-card-cat {
  position: absolute;
  top: 10px;
  left: 10px;
  font-family: var(--ff-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  background: rgba(12, 12, 15, 0.70);
  color: var(--muted);
  padding: 3px 10px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}

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

.gallery-card-body h2 {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.gallery-card-location {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--ff-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

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

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

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

.gallery-meta-item {
  font-size: 11px;
  color: var(--muted);
  font-family: var(--ff-mono);
}

.gallery-meta-label { color: var(--primary); margin-right: 4px; }
.gallery-meta-value { color: var(--muted); }

.gallery-empty {
  display: none;
  grid-column: 1 / -1;
  padding: 60px;
  text-align: center;
  color: var(--muted);
  font-size: 15px;
}

.gallery-empty a { color: var(--primary); }

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

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

/* ============================================================
   FOUNDER STORY (about.html)
   ============================================================ */
.founder-story {
  background: var(--canvas);
  padding: var(--section-py) 0;
}

.founder-story-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 72px;
  align-items: start;
}

.founder-portrait-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
}

.founder-portrait-wrap img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  filter: saturate(0.75) brightness(0.95);
}

.founder-portrait-meta {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.portrait-rule {
  flex: 1;
  height: 1px;
  background: var(--primary);
  opacity: 0.5;
}

.portrait-meta-label {
  font-family: var(--ff-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  white-space: nowrap;
  background: rgba(12, 12, 15, 0.75);
  padding: 4px 10px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}

.founder-text-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-top: 8px;
}

.founder-text-col p {
  font-size: 16px;
  color: var(--ink-mid);
  line-height: 1.72;
  max-width: 58ch;
}

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

/* ============================================================
   VALUES CARDS (about.html)
   ============================================================ */
.values-section {
  background: var(--canvas);
  padding: var(--section-py) 0;
  border-top: 1px solid var(--border);
}

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

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

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

.value-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -16px rgba(0, 0, 0, 0.4);
}

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

.value-card h3 {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(18px, 1.8vw, 22px);
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.value-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

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

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

/* ============================================================
   JOURNEY TIMELINE (about.html)
   ============================================================ */
.journey-section {
  background: var(--surface);
  padding: var(--section-py) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

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

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

.journey-step {
  position: relative;
  z-index: 1;
  padding: 0 12px;
}

.journey-dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.journey-dot-label {
  font-family: var(--ff-mono);
  font-size: 10px;
  font-weight: 500;
  color: var(--primary);
}

.journey-step h3 {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(16px, 1.5vw, 20px);
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.1;
}

.journey-step p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

.journey-step-title {
  font-family: var(--ff-display);
  font-style: italic;
  color: var(--ink);
}

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

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

/* ============================================================
   CREW STRIP (about.html)
   ============================================================ */
.crew-section {
  background: var(--canvas);
  padding: var(--section-py) 0;
}

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

.crew-photo-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  min-height: 400px;
}

.crew-photo-wrap img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  filter: saturate(0.75) brightness(0.85);
}

.crew-photo-scrim {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(12,12,15,0.92) 0%, transparent 100%);
  z-index: 1;
}

.crew-members-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 28px;
}

.crew-member { display: flex; flex-direction: column; gap: 2px; }

.crew-member-name {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
  line-height: 1.1;
}

.crew-member-role {
  font-family: var(--ff-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.crew-member-cert {
  font-family: var(--ff-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--primary);
}

/* ============================================================
   ABOUT EDITORIAL (about.html)
   ============================================================ */
.about-editorial {
  background: var(--surface);
  padding: var(--section-py) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

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

.about-text-col p {
  font-size: 15px;
  color: var(--ink-mid);
  line-height: 1.72;
  max-width: 58ch;
}

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

.about-chip {
  font-family: var(--ff-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 6px 14px;
  border: 1px solid rgba(244, 241, 234, 0.10);
  border-radius: 999px;
}

.about-accent-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 4px;
}

.about-stat-block {
  background: var(--canvas);
  border: 1px solid var(--border);
  border-top: 2px solid var(--primary);
  border-radius: var(--radius);
  padding: 20px 20px;
}

.about-stat-num {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.0;
  color: var(--primary);
  letter-spacing: -0.02em;
}

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

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

/* ============================================================
   CREDENTIALS (about.html)
   ============================================================ */
.credentials-section {
  background: var(--canvas);
  padding: var(--section-py) 0;
}

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

.credentials-band {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.credential-badge {
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 2px solid var(--primary);
  border-radius: var(--radius);
  padding: 20px 20px 16px;
  transition: transform 250ms ease-out;
}

.credential-badge:hover { transform: translateY(-2px); }

.credential-badge-label {
  font-family: var(--ff-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.credential-badge-value {
  font-family: var(--ff-mono);
  font-size: 13px;
  font-weight: 500;
  color: var(--primary);
  letter-spacing: 0.04em;
}

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

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

.contact-form-wrap {
  background: var(--surface);
  border-radius: var(--radius-lg);
  border-top: 2px solid var(--primary);
  padding: 40px;
}

.contact-form-header {
  margin-bottom: 28px;
}

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

.contact-form-headline {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--ink);
  max-width: 18ch;
}

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

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

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

.info-card-headline {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(22px, 2.5vw, 32px);
  color: var(--ink);
  margin-bottom: 24px;
  line-height: 1.0;
  letter-spacing: -0.01em;
}

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

.info-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.info-row:last-of-type { border-bottom: none; }

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

.info-row-body { flex: 1; }

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

.info-row-value {
  font-size: 14px;
  color: var(--ink-mid);
  line-height: 1.55;
}

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

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

.info-social-link, .info-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--muted);
  transition: color var(--transition), border-color var(--transition);
  text-decoration: none;
}

.info-social-link:hover, .info-socials a:hover {
  color: var(--primary);
  border-color: var(--border-brand);
  text-decoration: none;
}

.info-social-link svg, .info-socials a svg { width: 14px; height: 14px; }

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

@media (max-width: 900px) {
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .contact-info-card { position: static; }
}

/* ============================================================
   MOBILE STICKY CTA
   ============================================================ */
.mobile-sticky-cta, .mobile-cta-pill, .mobile-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: var(--canvas);
  padding: 14px 22px;
  border-radius: 999px;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 18px 40px -10px rgba(0, 0, 0, 0.55), 0 4px 12px rgba(152, 201, 112, 0.25);
  transition: transform var(--transition), filter var(--transition);
}

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

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

.mobile-sticky-cta > a, .mobile-cta > a {
  display: inherit;
  align-items: inherit;
  gap: inherit;
  color: inherit;
  text-decoration: none;
}

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

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

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

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

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

.stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 540ms ease-out, transform 540ms 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: 70ms; }
.stagger.visible > *:nth-child(3) { transition-delay: 140ms; }
.stagger.visible > *:nth-child(4) { transition-delay: 210ms; }
.stagger.visible > *:nth-child(5) { transition-delay: 280ms; }
.stagger.visible > *:nth-child(6) { transition-delay: 350ms; }
.stagger.visible > *:nth-child(7) { transition-delay: 420ms; }
.stagger.visible > *:nth-child(8) { transition-delay: 490ms; }
.stagger.visible > *:nth-child(n+9) { transition-delay: 560ms; }

/* ============================================================
   SERVICE CARD HOVER
   ============================================================ */
.service-card {
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -16px rgba(0,0,0,0.18);
}

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

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

.marquee-item {
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: clamp(13px, 1.4vw, 18px);
  line-height: 1.2;
  font-family: var(--ff-mono);
  color: var(--muted);
}

.marquee-item .trust-sep { color: var(--primary); }

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

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

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

.stat-num {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 600;
  line-height: 1;
  color: var(--primary);
  letter-spacing: -0.02em;
}

.stat-label {
  font-family: var(--ff-mono);
  font-size: clamp(10px, 1vw, 12px);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-top: 8px;
}

/* ============================================================
   PROCESS (if used)
   ============================================================ */
.process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}

.process-step {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
}

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

/* ============================================================
   REVIEW CARDS
   ============================================================ */
.review-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-top: 2px solid var(--primary);
}

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

.review-quote {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.55;
  margin: 14px 0;
  color: var(--ink);
}

.review-attribution {
  font-family: var(--ff-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ============================================================
   TABLE CELLS
   ============================================================ */
.services-table { width: 100%; border-collapse: collapse; }

.services-table thead .col-service,
.services-table thead .col-desc,
.services-table thead .col-timeline,
.services-table thead .col-price {
  background: var(--surface);
  color: var(--primary);
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 12px 16px;
  text-align: left;
}

.services-table tbody .col-service,
.services-table tbody .col-desc,
.services-table tbody .col-timeline,
.services-table tbody .col-price {
  background: transparent;
  color: var(--ink-mid);
  font-size: 14px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
}

/* ============================================================
   MISCELLANEOUS
   ============================================================ */
.hairline {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--primary);
  margin-bottom: 20px;
}

/* Supergraphic hero text */
.hero-super {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(160px, 22vw, 320px);
  line-height: 1.0;
  color: rgba(244, 241, 234, 0.025);
  white-space: nowrap;
  position: absolute;
  top: clamp(-20px, -2vh, 0px);
  right: -5%;
  letter-spacing: -0.04em;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

/* Ensure hero-inner is above supergraphic */
.hero-inner { z-index: 2; position: relative; }

/* Service feature alternation bg */
.service-feature:nth-child(even) { background: var(--canvas); }

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

/* ============================================================
   RESPONSIVE HELPERS
   ============================================================ */
@media (max-width: 640px) {
  .hero-title {
    font-size: clamp(52px, 13vw, 80px);
  }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
  .services-tabs { gap: 6px; }
  .service-tab { font-size: 10px; padding: 7px 14px; }
  .cta-form .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .hero-trust-chips { gap: 6px; }
  .trust-chip { font-size: 9px; padding: 5px 10px; }
}

@media (min-width: 900px) {
  .about-editorial-inner { align-items: start; }
}

/* ============================================================
   CONTACT INFO BLOCK SOCIAL LINKS
   ============================================================ */
.contact-socials svg { width: 16px; height: 16px; }
.info-socials svg { width: 16px; height: 16px; }

/* Defensive SVG caps */
svg { flex-shrink: 0; }

.faq-chevron { width: 20px !important; height: 20px !important; }
.guarantee-mark svg { width: 20px !important; height: 20px !important; }
.info-row-icon svg { width: 18px !important; height: 18px !important; }
.nav-cta-icon { width: 18px !important; height: 18px !important; }
.nav-toggle svg { width: 24px !important; height: 24px !important; }
.cta-trust-icon { width: 28px !important; height: 28px !important; }
.gallery-card-location svg { width: 12px !important; height: 12px !important; }
.form-submit svg { width: 18px !important; height: 18px !important; }
.btn-ghost svg { width: 16px !important; height: 16px !important; }
.btn-ghost-dark svg { width: 16px !important; height: 16px !important; }
.cta-actions .btn-ghost svg { width: 16px !important; height: 16px !important; }


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