@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Archivo:wght@400;500;600;700&family=Fraunces:ital,wght@1,400;1,500&family=Inter+Tight:wght@400;500;600&display=swap');

/* ============================================================
   CUSTOM PROPERTIES
   ============================================================ */
:root {
  --primary:        #0E5C3F;
  --primary-dark:   #094d34;
  --primary-light:  #e8f2ec;
  --accent:         #0E5C3F;
  --canvas:         #FFFFFF;
  --surface:        #F7F4ED;
  --surface-2:      #efe9df;
  --ink:            #141414;
  --ink-mid:        #2d2d2d;
  --muted:          #6B665C;
  --border:         rgba(14,92,63,0.18);
  --border-dark:    rgba(0,0,0,0.10);
  --neutral-dark:   #141414;
  --neutral-light:  #FFFFFF;
  --extra1:         #F7F4ED;
  --extra2:         #6B665C;
  --header-height:  72px;

  --font-display:   'Archivo Black', sans-serif;
  --font-body:      'Inter Tight', sans-serif;
  --font-label:     'Archivo', sans-serif;
  --font-serif:     'Fraunces', serif;

  --section-py:     clamp(96px, 12vh, 180px);
  --container-max:  1440px;
  --radius:         0px;
}

@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 {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--canvas);
  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; z-index: 0;
}
.hero-inner, .hero > :not(img):not(.hero-bg):not(.hero-overlay):not(.hero-ribbon) {
  position: relative; z-index: 2;
}
.hero-overlay { position: absolute; inset: 0; z-index: 1; pointer-events: none; }

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

h1 a:hover, h2 a:hover, h3 a:hover {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

a { transition: color 150ms; color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-dark); text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 4px; }

ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

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

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

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

.wide { grid-column: span 2; }
.full { grid-column: 1 / -1; }
.bleed { width: 100%; max-width: none; margin-inline: 0; padding-inline: 0; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.03em;
  color: var(--ink);
}

h1 { font-size: clamp(48px, 7vw, 120px); }
h2 { font-size: clamp(36px, 5vw, 72px); }
h3 { font-size: clamp(22px, 2.8vw, 36px); line-height: 1.05; }

p { line-height: 1.68; }

.section-eyebrow {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  flex-shrink: 0;
}

.section-title { font-family: var(--font-display); font-weight: 900; }

.pull-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(22px, 2.8vw, 32px);
  line-height: 1.35;
  color: var(--primary);
  border-left: 3px solid var(--primary);
  padding-left: 24px;
  margin: 32px 0;
  letter-spacing: -0.01em;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 18px 32px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: filter 180ms, transform 180ms, box-shadow 180ms;
  white-space: nowrap;
  cursor: pointer;
}

.btn:hover { text-decoration: none; }

.btn-primary, .btn.btn-primary {
  background: var(--primary);
  color: #fff;
  border: 2px solid var(--primary);
}
.btn-primary:hover { filter: brightness(0.90); transform: translateY(-1px); color: #fff; }

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--ink);
}
.btn-outline:hover { background: var(--ink); color: #fff; }

.btn-outline-light {
  background: transparent;
  color: var(--surface);
  border: 2px solid var(--surface);
}
.btn-outline-light:hover { background: var(--surface); color: var(--ink); }

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.btn-outline-white:hover { background: #fff; color: var(--primary); }

.btn-phone {
  background: var(--primary);
  color: #fff;
  border: 2px solid var(--primary);
  padding: 18px 32px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: filter 180ms;
}
.btn-phone:hover { filter: brightness(0.90); color: #fff; text-decoration: none; }
.btn-phone svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-service {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  padding: 14px 0;
  border-bottom: 2px solid var(--primary);
  text-decoration: none;
  transition: gap 200ms, color 150ms;
}
.btn-service:hover { gap: 14px; text-decoration: none; color: var(--primary-dark); }
.btn-service svg { width: 16px; height: 16px; }

/* ============================================================
   CHIPS + TRUST
   ============================================================ */
.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid var(--primary);
  padding: 8px 14px;
  color: var(--ink);
  background: rgba(255,255,255,0.12);
  white-space: nowrap;
}

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

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

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

.nav-wordmark {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1;
  text-decoration: none;
}

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

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

#navLinks li { list-style: none; }

#navLinks a {
  display: inline-block;
  padding: 6px 0;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  transition: color 150ms;
}

#navLinks a:hover { color: var(--primary); text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 6px; }
#navLinks a[aria-current="page"] { color: var(--primary); border-bottom: 2px solid var(--primary); }

.nav-cta {
  flex: 0 0 auto;
  background: var(--primary);
  color: #fff;
  padding: 10px 20px;
  border-radius: 999px;
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
  transition: filter 180ms;
}
.nav-cta:hover { filter: brightness(0.92); color: #fff; text-decoration: none; }

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

@media (max-width: 899px) {
  .nav-toggle, #navToggle { display: flex; }

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

  #navLinks {
    display: none;
    flex-direction: column;
    position: absolute;
    top: var(--header-height);
    left: 0; right: 0;
    background: var(--canvas);
    padding: 24px clamp(20px, 4vw, 48px);
    gap: 4px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    z-index: 800;
  }

  #navLinks.open { display: flex; }
  #navLinks li { width: 100%; }
  #navLinks a { display: block; padding: 10px 0; font-size: 17px; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 92vh;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero > img,
.hero > img:first-of-type {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(14, 92, 63, 0.08) 0%,
    rgba(20, 20, 20, 0.18) 40%,
    rgba(14, 20, 16, 0.82) 75%,
    rgba(10, 14, 12, 0.95) 100%
  );
}

.hero-ribbon {
  position: absolute;
  top: 32px;
  right: 32px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 9px;
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(14, 92, 63, 0.40);
  padding: 10px 18px;
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
}

.ribbon-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  animation: pulse-dot 1.8s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(0.75); }
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin-inline: auto;
  width: 100%;
  padding: clamp(40px, 8vh, 96px) clamp(20px, 4vw, 60px) clamp(64px, 10vh, 120px);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hero-eyebrow {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--primary);
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(56px, 8vw, 132px);
  line-height: 0.96;
  letter-spacing: -0.03em;
  color: #fff;
  max-width: 18ch;
  margin-bottom: 24px;
}

.hero-sub {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(16px, 1.6vw, 20px);
  color: rgba(255,255,255,0.75);
  max-width: 52ch;
  line-height: 1.6;
  margin-bottom: 36px;
}

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

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

.hero-trust-chips .trust-chip {
  color: rgba(255,255,255,0.88);
  border-color: rgba(14,92,63,0.55);
  background: rgba(14,92,63,0.18);
}

@media (max-width: 640px) {
  .hero-ribbon { display: none; }
  .hero-title { font-size: clamp(48px, 11vw, 80px); }
}

/* ============================================================
   MARQUEE STRIP
   ============================================================ */
.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(--canvas);
}

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

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

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

.marquee-sep {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
  vertical-align: middle;
}

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

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--surface);
  padding: 48px 0;
}

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

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

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

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

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

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

.services-header h2 {
  margin-top: 8px;
}

.services-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--border-dark);
  padding-bottom: 0;
}

.service-tab {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 12px 22px;
  color: var(--muted);
  background: transparent;
  border: 1px solid transparent;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: color 150ms, border-color 150ms, background 150ms;
  margin-bottom: -1px;
}

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

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

.services-panels {
  position: relative;
}

.service-panel {
  display: none;
  grid-template-columns: 45% 1fr;
  gap: 0;
  min-height: 480px;
  border: 1px solid var(--border-dark);
}

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

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

.service-panel-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: none;
}

.service-panel-body {
  background: var(--surface);
  padding: clamp(32px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.service-panel-eyebrow {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
}

.service-panel-body h3 {
  font-size: clamp(26px, 3vw, 40px);
  margin-bottom: 4px;
}

.service-panel-body p {
  font-size: 16px;
  line-height: 1.68;
  color: var(--ink-mid);
  max-width: 54ch;
}

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

@media (max-width: 899px) {
  .service-panel { grid-template-columns: 1fr; }
  .service-panel-photo { min-height: 56vw; position: relative; }
  .service-panel-photo img { position: absolute; }
}

/* services-detail page */
.services-detail {
  max-width: 1320px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 60px);
  padding-block: var(--section-py);
}

.service-row {
  display: grid;
  grid-template-columns: 52% 1fr;
  gap: 0;
  margin-bottom: clamp(64px, 10vh, 120px);
  border: 1px solid var(--border-dark);
}

.service-row:nth-child(even) {
  grid-template-columns: 1fr 52%;
}
.service-row:nth-child(even) .service-row-photo { order: 2; }
.service-row:nth-child(even) .service-row-body  { order: 1; }

.service-row-photo {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  background: var(--surface-2);
}

.service-row-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: none;
  filter: grayscale(15%);
  transition: filter 400ms;
}
.service-row:hover .service-row-photo img { filter: grayscale(0%); }

.service-row-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14,92,63,0.25) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}

.service-index-num {
  position: absolute;
  bottom: 20px;
  left: 24px;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 80px;
  font-weight: 900;
  line-height: 1;
  color: var(--primary);
  opacity: 0.22;
  letter-spacing: -0.04em;
  pointer-events: none;
}

.service-row-body {
  background: var(--surface);
  padding: clamp(40px, 5vw, 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.service-row-eyebrow {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
}

.service-row-body h2 {
  font-size: clamp(30px, 3.5vw, 48px);
  line-height: 0.98;
}

.service-row-body p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-mid);
  max-width: 52ch;
}

.service-row-title { font-size: clamp(28px, 3.2vw, 46px); }

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

.service-bullets li {
  font-size: 15px;
  color: var(--ink-mid);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}
.service-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  background: var(--primary);
}

@media (max-width: 899px) {
  .service-row,
  .service-row:nth-child(even) { grid-template-columns: 1fr; }
  .service-row-photo,
  .service-row:nth-child(even) .service-row-photo { order: 0; min-height: 56vw; }
  .service-row-body,
  .service-row:nth-child(even) .service-row-body { order: 1; }
}

/* ============================================================
   PAGE HEADER (inner pages)
   ============================================================ */
.page-header {
  position: relative;
  overflow: hidden;
  min-height: 52vh;
  display: flex;
  align-items: flex-end;
  background: var(--ink);
}

.page-header > img,
.page-header > img:first-of-type {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  max-height: none;
}

.page-header-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(20,20,20,0.3) 0%, rgba(14,20,16,0.88) 100%);
}

.page-header-inner {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin-inline: auto;
  width: 100%;
  padding: 72px clamp(20px, 4vw, 60px) 64px;
}

.page-header-inner h1 {
  font-size: clamp(48px, 7vw, 96px);
  color: #fff;
  max-width: 18ch;
  margin-bottom: 16px;
}

.page-header-eyebrow {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
}

.page-header-sub {
  color: rgba(255,255,255,0.72);
  font-size: 17px;
  max-width: 52ch;
  line-height: 1.6;
  margin-top: 16px;
}

/* ============================================================
   GALLERY (index page)
   ============================================================ */
.gallery-section {
  background: var(--surface);
  padding-block: var(--section-py);
}

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

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

.gallery-feature {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16/7;
  border: 1px solid var(--border-dark);
}

.gallery-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: none;
  filter: grayscale(12%);
  transition: transform 600ms ease-out, filter 400ms;
}
.gallery-feature:hover img { transform: scale(1.02); filter: grayscale(0%); }

.gallery-feature-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 36px;
  background: linear-gradient(to top, rgba(14,20,16,0.92) 0%, transparent 100%);
  z-index: 2;
}

.gallery-caption-text {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
}

.gallery-feature-caption a {
  text-decoration: none;
  color: rgba(255,255,255,0.72);
  transition: color 150ms;
}
.gallery-feature-caption a:hover { color: #fff; text-decoration: none; }

/* FULL gallery page */
.gallery-full {
  background: var(--canvas);
  padding-block: var(--section-py);
}

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

.gallery-header-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: start;
  margin-bottom: 56px;
}

.gallery-section-label {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}

.gallery-section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.gallery-section-desc {
  font-size: 16px;
  color: var(--muted);
  max-width: 52ch;
  line-height: 1.65;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: flex-start;
}

.filter-pill {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 8px 16px;
  border: 1px solid var(--border-dark);
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  transition: color 150ms, background 150ms, border-color 150ms;
}
.filter-pill:hover { color: var(--ink); border-color: var(--ink); }
.filter-pill.active { background: var(--primary); color: #fff; border-color: var(--primary); }

/* project count strip */
.project-count-strip {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 48px;
  padding: 32px 40px;
  background: var(--surface);
  border: 1px solid var(--border-dark);
}

.count-item {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 0 32px;
}

.count-item:first-child { padding-left: 0; }

.count-num {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--primary);
}

.count-label {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
}

.count-divider {
  width: 1px;
  height: 40px;
  background: var(--border-dark);
  flex-shrink: 0;
}

/* gallery grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 64px;
}

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

.gallery-card:hover { box-shadow: 0 18px 40px -16px rgba(0,0,0,0.24); z-index: 1; }

.gallery-card.wide { grid-column: span 2; }
.gallery-card.tall { grid-row: span 2; }

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

.gallery-card.tall .gallery-card-img-wrap { aspect-ratio: 3/5; }
.gallery-card.wide .gallery-card-img-wrap { aspect-ratio: 16/7; }

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

.gallery-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14,20,16,0.75) 0%, transparent 55%);
  z-index: 1;
  pointer-events: none;
}

.gallery-card-num {
  position: absolute;
  top: 16px;
  left: 20px;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 900;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.08em;
}

.gallery-card-category {
  position: absolute;
  bottom: 16px;
  right: 16px;
  z-index: 2;
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  background: var(--primary);
  padding: 5px 10px;
}

.gallery-card-body {
  padding: 20px 24px 28px;
  background: var(--surface);
}

.gallery-card-body h3 {
  font-size: clamp(15px, 1.6vw, 20px);
  line-height: 1.1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.gallery-card-location {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 8px;
}
.gallery-card-location svg { width: 12px; height: 12px; }

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

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

.gallery-meta-item {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 5px;
}
.gallery-meta-item svg { width: 13px; height: 13px; }

.gallery-card-headline {
  font-family: var(--font-display);
  font-size: clamp(14px, 1.4vw, 18px);
}

.gallery-empty {
  text-align: center;
  padding: 80px 20px;
  color: var(--muted);
  display: none;
  font-size: 15px;
}

@media (max-width: 899px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-card.wide { grid-column: span 2; }
  .gallery-card.tall { grid-row: span 1; }
  .gallery-header-row { grid-template-columns: 1fr; }
  .project-count-strip { padding: 24px 20px; gap: 0; }
  .count-item { padding: 0 16px; }
}

@media (max-width: 640px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-card.wide { grid-column: span 1; }
}

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

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

.service-areas-text h2 {
  margin-bottom: 20px;
  font-size: clamp(36px, 5vw, 64px);
}

.service-areas-body {
  font-size: 16px;
  line-height: 1.68;
  color: var(--muted);
  margin-bottom: 28px;
}

.service-areas-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: flex-start;
}

.area-chip {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid var(--primary);
  padding: 9px 16px;
  color: var(--ink);
  background: transparent;
  transition: background 150ms, color 150ms;
  display: inline-block;
}
.area-chip:hover { background: var(--primary); color: #fff; text-decoration: none; }

.service-area-pill {
  display: inline-block;
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  padding: 7px 14px;
  color: var(--ink);
  background: transparent;
}

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

.areas-award {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border-dark);
}

.areas-award-label {
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}

.areas-award-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.01em;
}

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

/* ============================================================
   FAQ
   ============================================================ */
.faq-section {
  background: var(--surface);
  padding-block: var(--section-py);
}

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

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

.faq-header h2 { font-size: clamp(36px, 5vw, 64px); margin-top: 8px; }

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

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

.faq-question {
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 17px;
  line-height: 1.4;
  color: var(--ink);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  list-style: none;
  user-select: none;
}
.faq-question::-webkit-details-marker { display: none; }

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

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

.faq-answer {
  padding-bottom: 24px;
  padding-right: 48px;
}

.faq-answer p {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--ink-mid);
}

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

.contact-inner {
  max-width: 1320px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 60px);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: start;
}

.contact-form-col h2,
.contact-form-side h2,
.contact-form-title {
  font-size: clamp(32px, 4.5vw, 60px);
  margin-bottom: 32px;
  margin-top: 8px;
  line-height: 0.96;
}

.contact-section-label {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact-section-label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--primary);
}

.contact-form-sub {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 28px;
  margin-top: -16px;
}

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

.form-field, .form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
}

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

.form-field label, .form-group label {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  order: -1;
}

.form-field input,
.form-field textarea,
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border-dark);
  background: var(--surface);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  outline: none;
  transition: border-color 180ms, box-shadow 180ms;
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
}

.form-field input:focus,
.form-field textarea:focus,
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(14,92,63,0.12);
}

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

.form-submit, .contact-form button[type="submit"] {
  background: var(--primary);
  color: #fff;
  padding: 18px 40px;
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: filter 180ms, transform 180ms;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.form-submit:hover, .contact-form button[type="submit"]:hover {
  filter: brightness(0.90);
  transform: translateY(-1px);
}

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

/* contact info column */
.contact-info-col,
.contact-info-card {
  background: var(--surface);
  padding: clamp(32px, 4vw, 52px);
  border: 1px solid var(--border-dark);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-info-card h3 {
  font-size: clamp(22px, 2.4vw, 30px);
  margin-bottom: 28px;
}

.contact-info-block, .info-block {
  padding: 20px 0;
  border-bottom: 1px solid var(--border-dark);
}

.contact-info-block:last-of-type, .info-block:last-of-type { border-bottom: none; }

.contact-info-label, .info-block-label {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.info-block-label svg { width: 14px; height: 14px; flex-shrink: 0; }

.contact-info-phone, .info-block-value {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.info-block-value a {
  color: var(--primary);
  text-decoration: none;
}
.info-block-value a:hover { text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 4px; }

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

.contact-guarantee, .guarantee-block {
  margin-top: 24px;
  padding: 20px 24px;
  background: var(--primary-light);
  border-left: 3px solid var(--primary);
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.contact-guarantee-accent {
  width: 3px;
  height: 100%;
  background: var(--primary);
  flex-shrink: 0;
}

.contact-guarantee-text, .guarantee-block p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-mid);
}
.guarantee-block strong { color: var(--primary); font-weight: 700; }

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

.info-card-title {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 900;
  margin-bottom: 24px;
}

.info-phone-link {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
  text-decoration: none;
}
.info-phone-link:hover { text-decoration: underline; }

.social-link, .contact-social-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 6px 0;
  text-decoration: none;
  transition: color 150ms;
}
.social-link:hover, .contact-social-link:hover { color: var(--primary); text-decoration: none; }
.social-link svg, .contact-social-link svg { width: 16px; height: 16px; }

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

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

.payment-chip {
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 10px;
  border: 1px solid var(--border-dark);
  color: var(--muted);
  background: var(--canvas);
}

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

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--ink);
  padding-block: var(--section-py);
  position: relative;
  overflow: hidden;
}

.cta-banner > img:first-of-type {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: none;
  z-index: 0;
  opacity: 0.22;
}

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

.cta-banner-inner {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 60px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}

.cta-banner-eyebrow, .cta-banner-label {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
}

.cta-banner-headline, .cta-banner-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 88px);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 20px;
}

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

.cta-banner-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  max-width: 52ch;
  line-height: 1.65;
  margin-bottom: 0;
}

.cta-banner-btns, .cta-banner-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 36px;
}

.cta-banner-phone {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 36px);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #fff;
  text-decoration: none;
}
.cta-banner-phone:hover { color: var(--primary); text-decoration: none; }

.cta-phone-big {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #fff;
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
}

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

/* ============================================================
   ABOUT PAGE
   ============================================================ */

/* About Hero */
.about-hero {
  position: relative;
  overflow: hidden;
  min-height: 52vh;
  display: flex;
  align-items: flex-end;
  background: var(--ink);
}

.about-hero > img:first-of-type {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  max-height: none;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(20,20,20,0.25) 0%, rgba(14,20,16,0.88) 100%);
}

.about-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin-inline: auto;
  width: 100%;
  padding: 72px clamp(20px, 4vw, 60px) 64px;
}

.about-hero-title {
  font-size: clamp(48px, 7vw, 96px);
  color: #fff;
  max-width: 18ch;
  margin-bottom: 16px;
}

.about-hero-eyebrow {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
}

.about-hero-sub {
  color: rgba(255,255,255,0.72);
  font-size: 17px;
  max-width: 52ch;
  line-height: 1.6;
  margin-top: 16px;
}

/* Founder Story */
.founder-story {
  background: var(--canvas);
  padding-block: var(--section-py);
}

.founder-story-inner {
  max-width: 1320px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 60px);
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: clamp(48px, 7vw, 96px);
  align-items: start;
}

.founder-portrait-col { position: relative; }

.founder-portrait-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--surface-2);
}

.founder-portrait-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: none;
  filter: grayscale(12%);
}

.founder-portrait-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 96px;
  height: 96px;
  background: var(--primary);
  z-index: 2;
}

.founder-copy-col { padding-top: 8px; }

.founder-headline {
  font-size: clamp(32px, 4vw, 56px);
  margin-bottom: 28px;
  margin-top: 8px;
  line-height: 0.97;
}

.founder-body {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

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

.founder-credit {
  display: flex;
  gap: 40px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border-dark);
}

.founder-credit-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.founder-credit-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.founder-credit-role {
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

@media (max-width: 899px) {
  .founder-story-inner { grid-template-columns: 1fr; }
  .founder-portrait-wrap { aspect-ratio: 3/2; }
}

/* Values Section */
.values-section {
  background: var(--surface);
  padding-block: var(--section-py);
}

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

.values-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 64px;
}

.values-headline {
  font-size: clamp(36px, 5vw, 64px);
  margin-top: 8px;
  line-height: 0.96;
}

.values-sub {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  padding-top: 16px;
  max-width: 48ch;
}

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

.value-card {
  background: var(--canvas);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}

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

.value-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--primary);
  opacity: 0.38;
}

.value-card h3 { font-size: clamp(18px, 1.8vw, 22px); line-height: 1.1; }

.value-title { font-family: var(--font-display); }

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

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

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

/* Journey / Timeline */
.journey-section {
  background: var(--canvas);
  padding-block: var(--section-py);
}

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

.journey-header {
  margin-bottom: 64px;
  max-width: 640px;
}

.journey-headline {
  font-size: clamp(36px, 5vw, 64px);
  margin-top: 8px;
  line-height: 0.96;
}

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

.journey-step {
  background: var(--surface);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}

.journey-dot {
  width: 36px;
  height: 36px;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
  flex-shrink: 0;
}
.journey-dot svg { width: 18px; height: 18px; }

.journey-year {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: var(--primary);
}

.journey-step h3 { font-size: clamp(16px, 1.6vw, 20px); line-height: 1.1; }
.journey-title { font-size: clamp(16px, 1.5vw, 18px); }

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

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

/* About Portrait / Magazine Section */
.about-portrait-section {
  background: var(--surface);
  padding-block: var(--section-py);
}

.about-portrait-inner {
  max-width: 1320px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 60px);
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: clamp(56px, 7vw, 96px);
  align-items: center;
}

.about-portrait-copy h2, .about-portrait-headline {
  font-size: clamp(32px, 4.5vw, 60px);
  line-height: 0.96;
  margin-bottom: 24px;
  margin-top: 8px;
}

.about-portrait-body {
  font-size: 16px;
  line-height: 1.72;
  color: var(--ink-mid);
  max-width: 56ch;
  margin-bottom: 16px;
}

.about-portrait-photo {
  position: relative;
}

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

.about-portrait-accent {
  position: absolute;
  bottom: -16px;
  left: -16px;
  width: 64px;
  height: 64px;
  background: var(--primary);
  z-index: 1;
}

@media (max-width: 899px) {
  .about-portrait-inner { grid-template-columns: 1fr; }
  .about-portrait-photo img { height: 56vw; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.72);
  padding-block: 80px 0;
}

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

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

.footer-wordmark, .footer-brand-name {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1;
}

.footer-wordmark span, .footer-brand-name span { color: var(--primary); }

.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  max-width: 34ch;
}

.footer-area {
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.40);
}

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

.footer-col-heading, .footer-col-title {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.40);
}

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

.footer-links li { list-style: none; }

.footer-links a {
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  text-decoration: none;
  transition: color 150ms;
  display: inline-block;
}
.footer-links a:hover { color: #fff; text-decoration: none; }

.footer-trust { display: flex; flex-direction: column; gap: 10px; list-style: none; padding: 0; }
.footer-trust li { color: rgba(255,255,255,0.65); font-size: 14px; display: flex; align-items: center; gap: 8px; }

.footer-trust-items { display: flex; flex-direction: column; gap: 10px; list-style: none; padding: 0; }
.footer-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
}
.footer-trust-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}

.footer-contact-line, .footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
}
.footer-contact-line svg, .footer-contact-item svg { width: 14px; height: 14px; flex-shrink: 0; color: var(--primary); }
.footer-contact-line a, .footer-contact-item a { color: rgba(255,255,255,0.72); text-decoration: none; }
.footer-contact-line a:hover, .footer-contact-item a:hover { color: #fff; }

.footer-contact-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
}
.footer-contact-list li svg { width: 14px; height: 14px; color: var(--primary); flex-shrink: 0; }
.footer-contact-list li a { color: rgba(255,255,255,0.72); text-decoration: none; }
.footer-contact-list li a:hover { color: #fff; }

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-logo span {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
}

.footer-phone { font-size: 14px; color: rgba(255,255,255,0.65); }
.footer-email { font-size: 14px; color: rgba(255,255,255,0.65); }

.footer-awards {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}
.footer-award {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.footer-awards svg { width: 14px; height: 14px; color: var(--primary); }

.footer-socials { display: flex; gap: 14px; }
.footer-socials a {
  color: rgba(255,255,255,0.50);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-family: var(--font-label);
  font-weight: 700;
  text-decoration: none;
  transition: color 150ms;
}
.footer-socials a:hover { color: #fff; text-decoration: none; }

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

.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

.footer-legal {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
}

.footer-badges { display: flex; gap: 12px; }
.footer-badge {
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.30);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 4px 10px;
}

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

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

/* ============================================================
   MOBILE CALL PILL
   ============================================================ */
.mobile-call-pill,
.mobile-cta-pill,
.mobile-sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 999;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 18px 40px -10px rgba(0,0,0,0.45);
  transition: filter 180ms, transform 180ms;
}
.mobile-call-pill:hover,
.mobile-cta-pill:hover,
.mobile-sticky-cta:hover { filter: brightness(0.90); transform: translateY(-2px); color: #fff; text-decoration: none; }
.mobile-call-pill svg,
.mobile-cta-pill svg,
.mobile-sticky-cta svg { width: 18px; height: 18px; flex-shrink: 0; }
.mobile-sticky-cta a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  text-decoration: none;
}

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

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

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

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

.scale-in {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 600ms ease-out, transform 600ms ease-out;
}
.scale-in.visible { opacity: 1; transform: scale(1); }

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

/* ============================================================
   SERVICE CARD HOVER (generic)
   ============================================================ */
.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);
}

/* ============================================================
   REVIEW CARDS (if used)
   ============================================================ */
.review-card {
  padding: 28px;
  background: var(--surface-2);
}
.review-stars svg { color: var(--primary); width: 18px; height: 18px; }
.review-quote { font-size: 17px; line-height: 1.55; margin: 14px 0; }
.review-attribution { font-size: 13px; color: var(--muted); opacity: 0.75; }

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

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

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

/* ============================================================
   FAQ ACCORDION (generic details/summary)
   ============================================================ */
details.faq {
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}
details.faq > summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
details.faq > summary::-webkit-details-marker { display: none; }
details.faq > summary::after {
  content: "+";
  font-weight: 300;
  transition: transform 200ms;
}
details.faq[open] > summary::after {
  transform: rotate(45deg);
  color: var(--primary);
}
details.faq p { margin-top: 12px; line-height: 1.6; }

/* ============================================================
   PROCESS STRIP (generic, 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);
}
.step-num {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
  letter-spacing: 0.12em;
  font-family: var(--font-label);
}

/* ============================================================
   TABLES — scope dark header rules to thead only
   ============================================================ */
.services-table thead .col-service,
.services-table thead .col-desc,
.services-table thead .col-timeline,
.services-table thead .col-price {
  background: var(--ink);
  color: #fff;
}

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

/* ============================================================
   MISC
   ============================================================ */
.page-header-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: none;
  z-index: 0;
}

/* Noise / grain texture overlay on hero */
.hero::after,
.page-header::after,
.about-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  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 OVERRIDES
   ============================================================ */
@media (max-width: 640px) {
  .hero { min-height: 100svh; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .hero-ctas .btn { width: 100%; justify-content: center; }

  .services-tabs { gap: 6px; }
  .service-tab { font-size: 11px; padding: 9px 14px; }

  .faq-question { font-size: 15px; }

  .contact-inner { grid-template-columns: 1fr; }

  .cta-banner-btns,
  .cta-banner-actions { flex-direction: column; align-items: flex-start; }

  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
}

@media (min-width: 900px) {
  .founder-story-inner { grid-template-columns: 380px 1fr; }
}

@media (min-width: 1200px) {
  .founder-story-inner { grid-template-columns: 440px 1fr; }
}


/* === Validator patches (auto-applied) === */
/* validator patch: grid children without placement → span full row */
.footer-col { grid-column: 1 / -1; }
.service-row-photo { grid-column: 1 / -1; }
.gallery-filters { grid-column: 1 / -1; }
.footer-grid { grid-column: 1 / -1; }
.footer-bottom { grid-column: 1 / -1; }
.values-sub { 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; }
