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

:root {
  --primary: #1C542C;
  --accent: #32613F;
  --canvas: #FFFFFF;
  --surface: #F7F4ED;
  --ink: #141414;
  --muted: #6B665C;
  --primary-dark: #163f21;
  --primary-light: #2a7a40;
  --surface-border: rgba(28,84,44,0.18);
  --border: rgba(0,0,0,0.1);
  --header-height: 72px;
  --radius: 0px;
}

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

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
  font-size: 16px;
}

body {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 500;
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--canvas);
  -webkit-font-smoothing: antialiased;
}

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

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

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

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

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

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

section > img:first-child:not([class*="logo"]):not(.nav-logo) {
  max-height: 64vh; object-fit: cover;
}
section img:not(.hero-bg):not(.page-header-bg):not([class*="full-bleed"]):not([class*="logo"]) {
  max-height: 720px;
}

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--ink);
}

h1 { font-size: clamp(40px, 6vw, 88px); }
h2 { font-size: clamp(36px, 5vw, 72px); }
h3 { font-size: clamp(20px, 2.5vw, 32px); }
h4 { font-size: clamp(16px, 1.8vw, 22px); letter-spacing: 0; }

p { line-height: 1.65; }

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

/* Layout */
.container { max-width: 1200px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }
.wide-container { max-width: 1440px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }
.section-inner { max-width: 1440px; margin: 0 auto; padding: clamp(80px, 10vh, 160px) clamp(20px, 4vw, 64px); }

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

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

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

.nav-logo { flex: 0 0 auto; display: flex; align-items: center; }
.nav-logo img { max-height: 44px; max-width: 200px; width: auto; object-fit: contain; }

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

.nav-pages a {
  display: inline-block;
  padding: 6px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  font-family: 'Inter Tight', sans-serif;
  transition: color 150ms;
}
.nav-pages a:hover { color: var(--primary); text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 6px; }
.nav-pages a[aria-current="page"] { color: var(--primary); border-bottom: 2px solid var(--primary); }

.nav-cta {
  flex: 0 0 auto;
  background: var(--primary);
  color: #fff;
  padding: 10px 20px;
  border-radius: 0;
  font-weight: 700;
  font-size: 14px;
  font-family: 'Archivo', sans-serif;
  text-decoration: none;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: filter 150ms;
}
.nav-cta:hover { color: #fff; filter: brightness(0.9); text-decoration: none; }
.nav-cta-text { font-size: 14px; }

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

@media (max-width: 900px) {
  .nav-toggle { display: flex; margin-left: auto; }
  .nav-pages {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0; right: 0;
    background: var(--canvas);
    padding: 24px;
    gap: 8px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    z-index: 800;
    justify-content: flex-start;
  }
  .nav-pages.open { display: flex; }
  .nav-cta-text { display: none; }
  .top-nav { position: relative; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 18px 32px;
  border-radius: 0;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: filter 180ms, transform 180ms;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
}
.btn:hover { transform: translateY(-1px); text-decoration: none; }

.btn-primary, .btn.btn-primary {
  background: var(--primary);
  color: #fff;
}
.btn-primary:hover { filter: brightness(0.9); color: #fff; }

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

.btn-outline-white, .btn.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.12); color: #fff; }

.btn-white, .btn.btn-white {
  background: #fff;
  color: var(--primary);
}
.btn-white:hover { filter: brightness(0.95); color: var(--primary); }

.btn-phone {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.6);
}

.btn-submit {
  background: var(--primary);
  color: #fff;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 18px 40px;
  border: none;
  border-radius: 0;
  cursor: pointer;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: filter 150ms;
  width: 100%;
}
.btn-submit:hover { filter: brightness(0.9); }

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

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

.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    160deg,
    rgba(20,20,20,0.22) 0%,
    rgba(20,20,20,0.15) 40%,
    rgba(28,84,44,0.72) 100%
  );
}

.hero-ribbon {
  position: absolute;
  top: clamp(24px, 4vh, 48px);
  right: clamp(20px, 4vw, 64px);
  z-index: 3;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Archivo', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #fff;
}

.ribbon-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--primary-light);
  animation: pulse-dot 2s ease-in-out infinite;
  flex-shrink: 0;
}

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

.hero-inner {
  padding: clamp(48px, 8vh, 96px) clamp(24px, 5vw, 80px);
  max-width: 900px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-eyebrow {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.75);
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--primary-light);
  flex-shrink: 0;
}

h1.hero-title, .hero .hero-title, .hero h1 {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(48px, 8vw, 120px);
  line-height: 0.96;
  letter-spacing: -0.03em;
  color: #fff;
  max-width: 16ch;
}

.hero-sub {
  font-size: clamp(16px, 1.6vw, 20px);
  color: rgba(255,255,255,0.82);
  line-height: 1.5;
  max-width: 52ch;
  font-weight: 500;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

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

.trust-chip {
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 7px 14px;
  white-space: nowrap;
}

/* Marquee */
.marquee-section {
  overflow: hidden;
  padding: 14px 0;
  border-top: 1px solid var(--surface-border);
  border-bottom: 1px solid var(--surface-border);
  background: var(--surface);
  position: relative;
  z-index: 1;
}

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

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

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

.marquee-item {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: clamp(13px, 1.4vw, 16px);
  line-height: 1.2;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

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

/* Trust strip */
.trust-strip {
  background: var(--canvas);
  border-bottom: 1px solid var(--border);
  padding: clamp(32px, 4vh, 56px) 0;
}

.trust-strip-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 64px);
  display: flex;
  flex-wrap: wrap;
  gap: 24px 40px;
  justify-content: center;
  align-items: center;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--ink);
  border: 1px solid var(--surface-border);
  padding: 10px 16px;
  background: var(--canvas);
}

.trust-badge svg { width: 20px; height: 20px; color: var(--primary); flex-shrink: 0; }

/* Section eyebrow */
.section-eyebrow {
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.section-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--primary);
  flex-shrink: 0;
}

.section-heading {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: clamp(40px, 5vh, 72px);
}

/* Services */
.services {
  background: var(--surface);
  padding: 0;
}

.services .section-inner { padding-top: clamp(64px, 8vh, 120px); padding-bottom: clamp(64px, 8vh, 120px); }
.services .section-inner > h2 { margin-bottom: 40px; }

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

.service-tab {
  font-family: 'Archivo', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 10px 20px;
  border: 1px solid var(--surface-border);
  background: var(--canvas);
  color: var(--ink);
  cursor: pointer;
  transition: background 180ms, color 180ms, border-color 180ms;
  border-radius: 0;
}
.service-tab:hover { border-color: var(--primary); color: var(--primary); }
.service-tab.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.services-panels { position: relative; }

.service-panel {
  display: none;
  grid-template-columns: 45% 1fr;
  gap: 0;
  background: var(--canvas);
  min-height: 460px;
}
.service-panel.active { display: grid; }

.service-panel-img {
  position: relative;
  overflow: hidden;
}
.service-panel-img img {
  width: 100%; height: 100%; max-height: 100%;
  object-fit: cover;
  display: block;
}

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

.service-num {
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
}

.service-panel-body h3 {
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.service-panel-body p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
}

.service-panel-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: var(--primary);
  color: #fff;
  padding: 14px 28px;
  text-decoration: none;
  transition: filter 150ms;
  align-self: flex-start;
}
.service-panel-cta:hover { filter: brightness(0.88); color: #fff; text-decoration: none; }

@media (max-width: 900px) {
  .service-panel.active { grid-template-columns: 1fr; min-height: auto; }
  .service-panel-img { min-height: 220px; max-height: 260px; }
  .service-panel-img img { max-height: 260px; }
}

/* About section on index */
.about-magazine {
  background: var(--canvas);
  padding: clamp(80px, 10vh, 160px) 0;
  overflow: hidden;
}

.about-magazine-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 64px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: center;
}

.about-magazine-photos {
  position: relative;
  min-height: 520px;
}

.about-magazine-photos img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.about-color-block {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 200px;
  height: 200px;
  background: var(--primary);
  z-index: 0;
}

.about-magazine-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-magazine-headline {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(28px, 4vw, 56px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.about-magazine-body {
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
}

.about-magazine-quote {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: clamp(18px, 2.4vw, 28px);
  line-height: 1.35;
  color: var(--primary);
  border-left: 3px solid var(--primary);
  padding-left: 20px;
  margin: 8px 0;
}

@media (max-width: 900px) {
  .about-magazine-inner { grid-template-columns: 1fr; }
  .about-magazine-photos { min-height: 300px; }
}

/* About page */
.about-story {
  background: var(--canvas);
  padding: clamp(64px, 8vh, 120px) 0;
}

.about-story-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 64px);
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(48px, 6vw, 80px);
  align-items: start;
}

.about-story-portrait img {
  width: 100%;
  max-height: 600px;
  object-fit: cover;
}

.about-story-text { display: flex; flex-direction: column; gap: 20px; }

.about-story-headline {
  font-size: clamp(28px, 3.5vw, 52px);
  line-height: 1.0;
  letter-spacing: -0.03em;
}

.drop-cap::first-letter {
  font-family: 'Archivo Black', sans-serif;
  font-size: 3.5em;
  font-weight: 900;
  float: left;
  line-height: 0.8;
  margin: 6px 12px 0 0;
  color: var(--primary);
}

.fraunces-quote {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: clamp(18px, 2.2vw, 26px);
  line-height: 1.4;
  color: var(--primary);
  border-left: 3px solid var(--primary);
  padding-left: 20px;
  margin: 8px 0;
}

.about-attribution {
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
}

.about-story-body { font-size: 16.5px; line-height: 1.7; color: var(--muted); }

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

/* Values */
.values {
  background: var(--surface);
  padding: clamp(64px, 8vh, 120px) 0;
}

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

.values-header { margin-bottom: clamp(40px, 5vh, 64px); }

.values-headline {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.0;
  letter-spacing: -0.03em;
}

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

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

.value-card {
  padding: 32px;
  background: var(--canvas);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 12px;
  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.15); }

.value-card h3 {
  font-size: clamp(16px, 1.8vw, 22px);
  letter-spacing: -0.01em;
  color: var(--ink);
}
.value-card p { font-size: 15px; color: var(--muted); line-height: 1.6; }

/* Journey / Timeline */
.journey {
  background: var(--ink);
  padding: clamp(64px, 8vh, 120px) 0;
}

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

.journey-header { margin-bottom: clamp(48px, 6vh, 80px); }

.journey-headline {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: #fff;
}

.journey-header .section-eyebrow { color: var(--primary-light); }
.journey-header .section-eyebrow::before { background: var(--primary-light); }

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

.journey-steps::before {
  content: '';
  position: absolute;
  top: 18px;
  left: 0; right: 0;
  height: 1px;
  background: rgba(255,255,255,0.15);
  z-index: 0;
}

.journey-step {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-right: 24px;
  position: relative;
  z-index: 1;
}

.journey-dot {
  width: 36px; height: 36px;
  background: var(--primary);
  border-radius: 0;
  flex-shrink: 0;
}

.journey-marker {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 900;
  color: rgba(255,255,255,0.08);
  line-height: 1;
  letter-spacing: -0.03em;
}

.journey-content h3 {
  font-size: clamp(16px, 1.8vw, 22px);
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.journey-content p { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.6; }

@media (max-width: 900px) {
  .journey-steps { grid-template-columns: 1fr 1fr; gap: 32px; }
  .journey-steps::before { display: none; }
}
@media (max-width: 640px) {
  .journey-steps { grid-template-columns: 1fr; }
}

/* Crew strip */
.crew-strip {
  background: var(--surface);
  padding: clamp(64px, 8vh, 120px) 0;
}

.crew-strip-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 64px);
}

.crew-headline {
  font-size: clamp(28px, 4vw, 56px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 40px;
}

.crew-photo-wrap {
  position: relative;
  overflow: hidden;
  max-height: 480px;
}
.crew-photo-wrap img { width: 100%; max-height: 480px; object-fit: cover; filter: grayscale(20%); }

.crew-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(28,84,44,0.88) 0%, transparent 100%);
  padding: 32px 40px;
  display: flex;
  align-items: flex-end;
}
.crew-caption-name {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(18px, 2vw, 28px);
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1;
}
.crew-caption-text {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  margin-bottom: 6px;
}

/* Gallery */
.gallery { background: var(--canvas); }

.gallery .section-inner > h2 { margin-bottom: 12px; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 32px;
}

.gallery-tile {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
}
.gallery-tile img {
  width: 100%; height: 100%; max-height: 100%;
  object-fit: cover;
  transition: transform 400ms ease-out;
  filter: grayscale(15%);
}
.gallery-tile:hover img { transform: scale(1.04); filter: grayscale(0%); }

.gallery-cta-wrap {
  margin-top: 32px;
  text-align: center;
}

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

/* Gallery page */
.gallery-section { background: var(--canvas); padding: 0; }

.gallery-section-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(48px, 6vh, 96px) clamp(20px, 4vw, 64px);
}

.gallery-section-header {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 20px;
}

.gallery-section-label {
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--muted);
}

.gallery-count {
  font-family: 'Archivo Black', sans-serif;
  font-size: 13px;
  color: var(--primary);
  letter-spacing: -0.01em;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.filter-pill {
  font-family: 'Archivo', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 8px 18px;
  border: 1px solid var(--surface-border);
  background: var(--canvas);
  color: var(--ink);
  cursor: pointer;
  transition: background 180ms, color 180ms, border-color 180ms;
  border-radius: 0;
}
.filter-pill:hover, .filter-pill.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

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

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

.project-card {
  background: var(--canvas);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}
.project-card:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -16px rgba(0,0,0,0.18); }

.project-card-photo {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.project-card-photo img {
  width: 100%; height: 100%; max-height: 100%;
  object-fit: cover;
  transition: transform 400ms ease-out;
  filter: grayscale(10%);
}
.project-card:hover .project-card-photo img { transform: scale(1.04); filter: grayscale(0%); }

.project-card-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,20,20,0.55) 0%, transparent 60%);
  z-index: 1;
}

.project-badge {
  position: absolute;
  top: 12px; left: 12px;
  z-index: 2;
  background: var(--primary);
  color: #fff;
  font-family: 'Archivo', sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 4px 10px;
}

.project-category-tag {
  position: absolute;
  bottom: 12px; left: 12px;
  z-index: 2;
  background: rgba(0,0,0,0.55);
  color: rgba(255,255,255,0.88);
  font-family: 'Archivo', sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 4px 10px;
}

.project-card-body {
  padding: 20px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.project-card-body h2 {
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.project-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--muted);
}
.project-location svg { width: 14px; height: 14px; flex-shrink: 0; }

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

.project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.project-meta-item { display: flex; flex-direction: column; gap: 2px; }
.project-meta-lbl { font-family: 'Archivo', sans-serif; font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.18em; color: var(--muted); }
.project-meta-val { font-size: 13px; font-weight: 600; color: var(--ink); }

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

/* Service areas */
.service-areas { background: var(--surface); }

.areas-intro {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 60ch;
  margin-bottom: 32px;
}

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

.area-chip {
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  padding: 10px 18px;
  border: 1px solid var(--surface-border);
  background: var(--canvas);
  color: var(--ink);
  transition: background 180ms, color 180ms, border-color 180ms;
}
.area-chip:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

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

.faq-list { margin-top: 8px; }

details {
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}

details summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 17px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--ink);
  font-family: 'Archivo', sans-serif;
  letter-spacing: -0.01em;
  min-height: 60px;
}
details summary::-webkit-details-marker { display: none; }

.faq-chevron {
  font-size: 20px;
  font-weight: 300;
  color: var(--muted);
  flex-shrink: 0;
  transition: transform 200ms, color 200ms;
  line-height: 1;
}
.faq-chevron::after { content: "+"; }

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

.faq-answer {
  margin-top: 12px;
  line-height: 1.7;
  color: var(--muted);
  font-size: 16px;
  max-width: 72ch;
}

/* Team CTA */
.team-cta {
  background: var(--primary);
  padding: clamp(64px, 8vh, 96px) 0;
}

.team-cta-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 64px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.team-cta-label {
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.6);
  margin-bottom: 12px;
}

.team-cta-inner h2 {
  font-size: clamp(28px, 4vw, 56px);
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.0;
  max-width: 20ch;
}

.team-cta-heading {
  font-size: clamp(28px, 4vw, 56px);
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.0;
}

/* CTA banner */
.cta-banner {
  background: var(--ink);
  padding: clamp(64px, 8vh, 120px) 0;
}

.cta-banner-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 64px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-banner-eyebrow {
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
}

.cta-banner-title, .cta-banner-headline, .cta-banner-text h2 {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(28px, 4vw, 56px);
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.0;
}

.cta-banner-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
  margin-top: 8px;
}

.cta-banner-phone {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(20px, 2.5vw, 32px);
  color: rgba(255,255,255,0.9);
  letter-spacing: -0.02em;
}

.cta-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  flex-shrink: 0;
}

.cta-btn-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: #fff;
  color: var(--ink);
  padding: 16px 28px;
  border-radius: 0;
  text-decoration: none;
  transition: filter 150ms;
}
.cta-btn-light:hover { filter: brightness(0.9); color: var(--ink); text-decoration: none; }

.cta-phone { color: rgba(255,255,255,0.9); font-size: 20px; font-weight: 700; }
.cta-phone-label { font-size: 11px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.18em; }

/* Contact */
.contact { background: var(--surface); }

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  margin-top: 48px;
}

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

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }

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

.form-label, .form-group label, .form-field label {
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
}

.form-field input, .form-field select, .form-field textarea,
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 0;
  font-family: 'Inter Tight', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  background: var(--canvas);
  outline: none;
  transition: border-color 150ms;
  appearance: none;
  -webkit-appearance: none;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus,
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--primary);
}
.form-field textarea, .form-group textarea { min-height: 120px; resize: vertical; }

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

.form-submit { margin-top: 8px; }

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

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

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

.contact-info-label {
  font-family: 'Archivo', sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--muted);
}

.contact-info-value {
  font-size: 17px;
  color: var(--ink);
  font-weight: 500;
}

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

.contact-owner-quote {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 17px;
  color: var(--primary);
  line-height: 1.45;
}

.contact-guarantee {
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Contact page */
.contact-section {
  background: var(--surface);
  padding: clamp(64px, 8vh, 120px) 0;
}

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

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

.contact-form-col { display: flex; flex-direction: column; gap: 24px; }

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

.contact-info-card {
  background: var(--canvas);
  border: 1px solid var(--border);
  padding: clamp(28px, 3vw, 48px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: calc(var(--header-height) + 24px);
}

.info-card-eyebrow {
  font-family: 'Archivo', sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--primary);
}

.info-card-headline {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(20px, 2.5vw, 30px);
  line-height: 1.0;
  letter-spacing: -0.02em;
}

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

.info-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

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

.info-row-content { display: flex; flex-direction: column; gap: 2px; }

.info-row-label {
  font-family: 'Archivo', sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
}

.info-row-value { font-size: 15px; color: var(--ink); font-weight: 500; }

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

.info-card-service-areas { display: flex; flex-direction: column; gap: 10px; }

.info-sa-label {
  font-family: 'Archivo', sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
}

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

.sa-chip {
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 6px 12px;
  border: 1px solid var(--surface-border);
  background: var(--surface);
  color: var(--ink);
}

.info-card-socials { display: flex; gap: 12px; }

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  background: var(--canvas);
  color: var(--ink);
  transition: background 150ms, color 150ms;
}
.social-link:hover { background: var(--primary); color: #fff; text-decoration: none; }
.social-link svg { width: 18px; height: 18px; }

/* Guarantee strip */
.guarantee-strip {
  background: var(--canvas);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

.guarantee-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 64px);
  display: flex;
  flex-wrap: wrap;
  gap: 16px 40px;
  justify-content: center;
  align-items: center;
}

.guarantee-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink);
}
.guarantee-chip svg { width: 18px; height: 18px; color: var(--primary); flex-shrink: 0; }

/* Page header */
.page-header {
  min-height: clamp(280px, 44vh, 480px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--ink);
  padding: 0;
  position: relative;
  overflow: hidden;
}

.page-header > img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}

.page-header-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(20,20,20,0.78) 0%, rgba(20,20,20,0.3) 60%, transparent 100%);
}

.page-header-inner {
  position: relative;
  z-index: 2;
  padding: clamp(32px, 5vw, 64px) clamp(20px, 4vw, 64px);
}

.page-header-inner h1, .page-header-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(36px, 6vw, 88px);
  line-height: 0.96;
  letter-spacing: -0.03em;
  color: #fff;
}

.page-header-eyebrow, .page-eyebrow {
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.6);
  margin-bottom: 12px;
  display: block;
}

.page-header-sub, .page-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  margin-top: 8px;
  line-height: 1.5;
}

/* Services page - feature blocks */
.services-features { background: var(--canvas); }

.services-nav-strip {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 0;
  position: sticky;
  top: var(--header-height);
  z-index: 800;
  overflow-x: auto;
}
.services-nav-strip::-webkit-scrollbar { display: none; }

.services-nav-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 64px);
  display: flex;
  gap: 0;
  overflow-x: auto;
}

.services-nav-link {
  font-family: 'Archivo', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 18px 24px;
  color: var(--muted);
  text-decoration: none;
  white-space: nowrap;
  transition: color 150ms, border-bottom-color 150ms;
  border-bottom: 2px solid transparent;
}
.services-nav-link:hover { color: var(--primary); border-bottom-color: var(--primary); text-decoration: none; }
.services-nav-link[aria-current] { color: var(--primary); border-bottom-color: var(--primary); }

.service-block {
  padding: clamp(64px, 8vh, 120px) 0;
  border-bottom: 1px solid var(--border);
}
.service-block:nth-child(even) { background: var(--surface); }

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

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

.service-block-photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.service-block-photo img {
  width: 100%; height: 100%; max-height: 100%;
  object-fit: cover;
  transition: transform 400ms ease-out;
}
.service-block:hover .service-block-photo img { transform: scale(1.03); }

.service-block-index {
  position: absolute;
  bottom: 16px; left: 16px;
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 900;
  color: rgba(255,255,255,0.9);
  letter-spacing: -0.04em;
  line-height: 1;
  z-index: 2;
}

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

.service-block-eyebrow {
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 12px;
}
.service-block-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  flex-shrink: 0;
}

.service-block-content h2 {
  font-size: clamp(26px, 3.5vw, 52px);
  line-height: 1.0;
  letter-spacing: -0.03em;
}

.service-block-body p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
}

.service-block-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-block-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--ink);
}
.service-block-bullets li::before {
  content: '';
  display: block;
  width: 6px; height: 6px;
  background: var(--primary);
  flex-shrink: 0;
}

.service-block-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: var(--primary);
  color: #fff;
  padding: 16px 28px;
  text-decoration: none;
  transition: filter 150ms;
  align-self: flex-start;
}
.service-block-cta:hover { filter: brightness(0.88); color: #fff; text-decoration: none; }

@media (max-width: 900px) {
  .service-block-inner { grid-template-columns: 1fr; }
  .service-block-inner-wrap .service-block-inner { direction: ltr; }
}

/* Footer */
.site-footer, footer.footer, footer.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.75);
  padding: 0;
}

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

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

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(48px, 6vh, 80px) clamp(20px, 4vw, 64px) 0;
}
@media (max-width: 1200px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-brand-logo a { display: inline-flex; }
.footer-brand-logo img, .footer-brand img { max-height: 48px !important; filter: brightness(0) invert(1); }
.footer-brand-name {
  font-family: 'Archivo Black', sans-serif;
  font-size: 18px;
  color: #fff;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.footer-tagline { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.6; }
.footer-area { font-size: 13px; color: rgba(255,255,255,0.45); }

.footer-trust-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.footer-badge {
  font-family: 'Archivo', sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 5px 10px;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.65);
}

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

.footer-col h4, .footer-col-label, .footer-col-title {
  font-family: 'Archivo', sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 8px;
}

.footer-col ul, .footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a, .footer-links li a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 150ms;
}
.footer-col ul li a:hover, .footer-links li a:hover { color: #fff; text-decoration: none; }

.footer-contact-block, .footer-contact-info { display: flex; flex-direction: column; gap: 10px; }
.footer-addr, .footer-contact-block p { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.6; }
.footer-insured {
  font-family: 'Archivo', sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.35);
  margin-top: 8px;
  display: block;
}

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

.footer-phone-link, .footer-phone { font-size: 14px; color: rgba(255,255,255,0.65); text-decoration: none; }
.footer-phone-link:hover { color: #fff; }

.footer-bottom {
  max-width: 1440px;
  margin: 0 auto;
  padding: 24px clamp(20px, 4vw, 64px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 48px;
}
.footer-bottom p, .footer-copy, .footer-legal, .footer-bottom-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}

.footer-trust-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.footer-chip, .footer-trust-chips span {
  font-family: 'Archivo', sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 4px 10px;
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.4);
}

.footer-trust-line { font-size: 12px; color: rgba(255,255,255,0.3); }

footer address { font-style: normal; }

/* Mobile CTA pill */
.mobile-call-btn, .mobile-call-pill, .mobile-cta-pill, .mobile-cta, .mobile-sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 999;
  background: var(--primary);
  color: #fff;
  padding: 14px 22px;
  border-radius: 999px;
  box-shadow: 0 18px 40px -10px rgba(0,0,0,0.45);
  display: none;
  align-items: center;
  gap: 10px;
  font-family: 'Archivo', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: filter 150ms, transform 150ms;
}
.mobile-call-btn:hover, .mobile-call-pill:hover, .mobile-cta-pill:hover,
.mobile-sticky-cta:hover { filter: brightness(0.9); transform: translateY(-2px); color: #fff; text-decoration: none; }
.mobile-call-btn svg, .mobile-call-pill svg, .mobile-cta-pill svg,
.mobile-sticky-cta svg, .mobile-cta svg { width: 20px; height: 20px; flex-shrink: 0; }

.mobile-cta > a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  font-family: 'Archivo', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.mobile-cta > a svg { width: 20px; height: 20px; }

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

/* Animation utilities */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 600ms ease-out, transform 600ms ease-out; }
.fade-left { opacity: 0; transform: translateX(-28px); transition: opacity 600ms ease-out, transform 600ms ease-out; }
.fade-right { opacity: 0; transform: translateX(28px); transition: opacity 600ms ease-out, transform 600ms ease-out; }
.scale-in { opacity: 0; transform: scale(0.94); transition: opacity 600ms ease-out, transform 600ms ease-out; }

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

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

/* SVG caps */
svg { max-width: 100%; }
.trust-badge svg, .guarantee-chip svg, .info-icon { width: 20px; height: 20px; }
.project-location svg { width: 14px; height: 14px; }
.cta-banner-actions svg, .hero-ctas svg { width: 20px; height: 20px; }
.social-link svg { width: 18px; height: 18px; }
.footer-contact-line svg { width: 16px; height: 16px; }
.mobile-call-btn svg, .mobile-call-pill svg, .mobile-cta svg,
.mobile-cta-pill svg, .mobile-sticky-cta svg { width: 20px; height: 20px; }
.nav-cta svg { width: 18px; height: 18px; }

/* Misc utility */
.bleed { width: 100vw; margin-left: calc(-50vw + 50%); }

/* Responsive adjustments */
@media (max-width: 1200px) {
  .service-block-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .service-block-inner { grid-template-columns: 1fr; }
  .service-block-inner-wrap .service-block-inner { direction: ltr; }
  .service-block-photo { aspect-ratio: 16 / 9; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-story-inner { grid-template-columns: 1fr; }
  .about-magazine-inner { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .hero { min-height: 100svh; }
  .hero-ribbon { display: none; }
  .services-tabs { gap: 6px; }
  .service-tab { font-size: 11px; padding: 8px 14px; }
  .values-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .trust-strip-inner { gap: 12px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .cta-banner-inner { flex-direction: column; }
  .team-cta-inner { flex-direction: column; }
}


/* === Validator patches (auto-applied) === */
/* validator patch: grid children without placement → span full row */
.form-field { grid-column: 1 / -1; }
.footer-col { grid-column: 1 / -1; }
.service-block-photo { grid-column: 1 / -1; }
.service-block-content { grid-column: 1 / -1; }
.footer-grid { grid-column: 1 / -1; }
.footer-bottom { grid-column: 1 / -1; }
.footer-brand { grid-column: 1 / -1; }
