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

/* ─── CUSTOM PROPERTIES ───────────────────────────────────────────────── */
:root {
  --primary:        #375F2C;
  --primary-dark:   #274520;
  --primary-mid:    #4A7A3A;
  --accent:         #C8DA9A;
  --accent-dim:     #B0C47E;
  --canvas:         #FFFFFF;
  --surface:        #F7F4ED;
  --surface-2:      #EEE9DF;
  --ink:            #141414;
  --ink-mid:        #2E2E2E;
  --muted:          #6B665C;
  --muted-light:    #9B9488;
  --border:         rgba(55,95,44,0.18);
  --border-dark:    rgba(20,20,20,0.12);
  --shadow-sm:      0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:      0 8px 28px rgba(0,0,0,0.11);
  --shadow-lg:      0 18px 48px rgba(0,0,0,0.16);
  --shadow-xl:      0 32px 72px rgba(0,0,0,0.22);
  --radius:         0px;
  --header-height:  72px;
  --section-pad:    clamp(96px, 12vh, 180px);
  --container:      1440px;
}

@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-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter Tight', sans-serif;
  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: 64px !important;
  max-width: 220px !important;
  width: auto !important;
  align-self: flex-start !important;
  object-fit: contain !important;
  flex: 0 0 auto !important;
}

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

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

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

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

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

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

.hero-split {
  display: grid; grid-template-columns: 60% 40%; min-height: 88vh; gap: 0;
}
.hero-split-text {
  background: var(--canvas);
  padding: clamp(48px, 7vw, 96px);
  display: flex; flex-direction: column; justify-content: center; z-index: 2;
}
.hero-split-photo { position: relative; overflow: hidden; background: transparent; }
.hero-split-photo > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 900px) {
  .hero-split { grid-template-columns: 1fr; min-height: auto; }
  .hero-split-photo { min-height: 60vw; order: -1; }
}

/* Heading anchor resets */
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(48px, 7vw, 120px); }
h2 { font-size: clamp(36px, 5vw, 72px); }
h3 { font-size: clamp(20px, 2.5vw, 32px); }

p { line-height: 1.68; }

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

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

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

.bleed { width: 100%; max-width: none; }

.section {
  padding-block: var(--section-pad);
}

/* ─── SCROLL PROGRESS BAR ─────────────────────────────────────────────── */
#scroll-progress,
#scrollProgress,
#scroll-bar,
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--primary);
  z-index: 9999;
  transition: width 0.1s linear;
  pointer-events: none;
}

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

.nav-logo {
  flex: 0 0 auto;
  text-decoration: none;
}
.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;
  font-family: 'Archivo', sans-serif;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.01em;
  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: var(--canvas);
  padding: 10px 22px;
  border-radius: var(--radius);
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.01em;
  transition: filter 150ms;
}
.nav-cta:hover {
  color: var(--canvas);
  text-decoration: none;
  filter: brightness(0.88);
}

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

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-cta { padding: 10px 14px; font-size: 13px; }
  .nav-pages {
    display: none;
    flex-direction: column;
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--canvas);
    padding: 24px;
    gap: 8px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    z-index: 800;
  }
  .nav-pages.open { display: flex; }
  .nav-pages a { font-size: 16px; padding: 10px 0; }
}

/* ─── BUTTONS ─────────────────────────────────────────────────────────── */
.btn,
.btn-primary,
.btn-primary-cta,
.btn-estimate-cta,
.btn-primary-sf {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: var(--canvas);
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: 15px;
  padding: 18px 32px;
  border-radius: var(--radius);
  text-decoration: none;
  border: none;
  cursor: pointer;
  letter-spacing: 0.01em;
  transition: filter 200ms, transform 200ms;
  white-space: nowrap;
}
.btn:hover,
.btn-primary:hover,
.btn-primary-cta:hover,
.btn-estimate-cta:hover,
.btn-primary-sf:hover {
  filter: brightness(0.88);
  transform: translateY(-1px);
  color: var(--canvas);
  text-decoration: none;
}

.btn-outline,
.btn-phone,
.btn-phone-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--canvas);
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: 15px;
  padding: 17px 30px;
  border-radius: var(--radius);
  border: 2px solid rgba(255,255,255,0.7);
  text-decoration: none;
  cursor: pointer;
  letter-spacing: 0.01em;
  transition: background 200ms, color 200ms, border-color 200ms;
  white-space: nowrap;
}
.btn-outline:hover,
.btn-phone:hover,
.btn-phone-cta:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
  color: var(--canvas);
  text-decoration: none;
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--canvas);
  color: var(--primary);
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: 15px;
  padding: 17px 30px;
  border-radius: var(--radius);
  border: 2px solid var(--canvas);
  text-decoration: none;
  cursor: pointer;
  transition: background 200ms, color 200ms;
}
.btn-outline-white:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--primary-dark);
  text-decoration: none;
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: var(--canvas);
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: 16px;
  padding: 18px 36px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  width: 100%;
  justify-content: center;
  letter-spacing: 0.01em;
  transition: filter 200ms;
  margin-top: 8px;
}
.btn-submit:hover { filter: brightness(0.88); }
.btn-submit svg { width: 18px; height: 18px; }

/* ─── HERO ────────────────────────────────────────────────────────────── */
.hero {
  min-height: 94vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero-overlay {
  background: linear-gradient(
    180deg,
    rgba(15,25,12,0.18) 0%,
    rgba(15,25,12,0.28) 40%,
    rgba(10,20,8,0.78) 100%
  );
}

.hero-ribbon {
  position: absolute;
  top: 28px;
  right: 32px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(20,20,20,0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--canvas);
  font-family: 'Archivo', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 10px 16px;
  border: 1px solid rgba(200,218,154,0.4);
}

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

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

.hero-inner {
  padding: clamp(48px, 7vw, 96px) clamp(24px, 6vw, 96px) clamp(56px, 8vh, 96px);
  max-width: 1440px;
  margin-inline: auto;
  width: 100%;
}

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

.hero-title {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(56px, 8vw, 132px);
  line-height: 0.96;
  letter-spacing: -0.03em;
  color: var(--canvas);
  max-width: 18ch;
  margin-bottom: 28px;
}

.hero-sub {
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  max-width: 52ch;
  line-height: 1.6;
  margin-bottom: 36px;
}

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

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

.trust-chip {
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--canvas);
  padding: 7px 14px;
  border: 1px solid rgba(200,218,154,0.55);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

/* ─── MARQUEE ─────────────────────────────────────────────────────────── */
.marquee {
  overflow: hidden;
  padding: 14px 0;
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  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-item {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: clamp(13px, 1.4vw, 18px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.2;
  color: var(--ink-mid);
}

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

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee:hover .marquee-track { animation-play-state: paused; }

/* ─── TRUST STRIP ─────────────────────────────────────────────────────── */
.trust-strip {
  background: var(--surface);
  padding-block: 40px;
}

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

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

.trust-badge-star {
  color: var(--primary);
  font-size: 14px;
}

/* ─── SERVICES BENTO ──────────────────────────────────────────────────── */
.services {
  background: var(--canvas);
  padding-block: var(--section-pad);
}

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

.services-inner > h2 {
  margin-bottom: 8px;
}

.section-eyebrow {
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  font-weight: 700;
  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: 20px;
  height: 2px;
  background: var(--primary);
  flex-shrink: 0;
}

.services-inner > h2 {
  font-size: clamp(36px, 5vw, 72px);
  margin-bottom: 48px;
}

.services-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}

.service-card {
  display: block;
  position: relative;
  overflow: hidden;
  background: var(--surface);
  text-decoration: none;
  cursor: pointer;
  aspect-ratio: 3 / 2;
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  text-decoration: none;
}

.service-card > img,
.service-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 400ms ease-out;
}
.service-card:hover > img,
.service-card:hover .service-card-img {
  transform: scale(1.04);
}

.service-card-flagship {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
  aspect-ratio: auto;
  min-height: 520px;
}

.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10,18,8,0.08) 30%,
    rgba(10,18,8,0.78) 100%
  );
  z-index: 1;
  transition: opacity 300ms;
}
.service-card:hover .service-card-overlay {
  opacity: 0.92;
}

.service-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 28px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.service-card-flagship .service-card-content {
  padding: 32px 40px;
}

.service-card-index {
  font-family: 'Archivo Black', sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}

.service-card-content h3 {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(18px, 2vw, 28px);
  color: var(--canvas);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
}

.service-card-flagship .service-card-content h3 {
  font-size: clamp(28px, 3vw, 48px);
}

.service-card-desc {
  font-size: 13.5px;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.service-card-flagship .service-card-desc {
  font-size: 15px;
  -webkit-line-clamp: 3;
}

.service-card-link {
  font-family: 'Archivo', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 4px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.service-card-link::after {
  content: '\2192';
  transition: transform 200ms;
}
.service-card:hover .service-card-link::after {
  transform: translateX(4px);
}

.services-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 40px;
  align-items: center;
}

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

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

.faq-inner > h2 {
  margin-bottom: 56px;
}

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

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

.faq-list details > summary {
  cursor: pointer;
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.3;
  letter-spacing: -0.01em;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding-block: 8px;
  color: var(--ink);
}

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

.faq-list details > summary::after {
  content: "+";
  font-family: 'Archivo Black', sans-serif;
  font-weight: 300;
  font-size: 24px;
  color: var(--primary);
  flex-shrink: 0;
  transition: transform 200ms;
}

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

.faq-list details > p,
.faq-list details > div {
  margin-top: 12px;
  font-size: 15.5px;
  line-height: 1.68;
  color: var(--ink-mid);
  padding-bottom: 8px;
  max-width: 72ch;
}

/* ─── CONTACT ─────────────────────────────────────────────────────────── */
.contact,
.contact-section {
  background: var(--canvas);
  padding-block: var(--section-pad);
}

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

.contact-form-wrap,
.contact-form-col {
  display: flex;
  flex-direction: column;
}

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

.contact-form-wrap > h2,
.contact-form-col > h2 {
  font-size: clamp(32px, 4vw, 56px);
  margin-bottom: 36px;
}

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

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

.promo-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  padding: 12px 18px;
  margin-bottom: 24px;
}
.promo-bar svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--primary-dark); }
.promo-bar-text {
  font-family: 'Archivo', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary-dark);
}
.promo-bar-text span { font-weight: 700; }

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

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

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

.form-group input,
.form-group textarea,
.form-group select {
  font-family: 'Inter Tight', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  background: var(--surface);
  border: 1.5px solid var(--border-dark);
  border-radius: var(--radius);
  padding: 13px 16px;
  outline: none;
  transition: border-color 150ms, box-shadow 150ms;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}

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

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(55,95,44,0.12);
}

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

.form-recaptcha,
.form-note {
  font-size: 11.5px;
  color: var(--muted-light);
  line-height: 1.55;
  margin-top: 8px;
  margin-bottom: 12px;
}
.form-recaptcha a,
.form-note a {
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ─── CONTACT INFO COLUMN ─────────────────────────────────────────────── */
.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--surface);
  padding: 40px 36px;
}

.promo-banner {
  background: var(--primary);
  padding: 20px 24px;
  margin-bottom: 32px;
}

.promo-label {
  font-family: 'Archivo', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}

.promo-text {
  font-family: 'Archivo Black', sans-serif;
  font-size: 16px;
  font-weight: 900;
  color: var(--canvas);
  line-height: 1.3;
  letter-spacing: -0.01em;
}

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

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-info-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-info-icon svg { width: 18px; height: 18px; color: var(--canvas); }

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

.contact-info-value {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.55;
}
.contact-info-value a {
  color: var(--ink);
  font-weight: 600;
}
.contact-info-value a:hover { color: var(--primary); }

.contact-visit-note {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border-dark);
}

.contact-visit-heading {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 6px;
}

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

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

.info-card-headline {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(24px, 3vw, 40px);
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 6px;
}

.info-card-sub {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 32px;
  line-height: 1.55;
}

.info-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding-block: 18px;
  border-bottom: 1px solid var(--border-dark);
}

.info-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--surface);
  border: 1px solid var(--border-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}
.info-icon svg { width: 18px; height: 18px; color: var(--primary); }

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

.info-row-value {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.55;
}
.info-row-value a { color: var(--primary); font-weight: 600; }

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

.service-area-label {
  font-family: 'Archivo', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

.area-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

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

.hours-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  margin-right: 6px;
}

.hours-today {
  font-size: 13px;
  color: var(--primary);
  font-weight: 600;
  display: flex;
  align-items: center;
  margin-top: 4px;
}

/* ─── PAGE HEADER (sub-pages) ─────────────────────────────────────────── */
.page-header {
  min-height: 52vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--ink);
}

.page-header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10,18,8,0.35) 0%,
    rgba(10,18,8,0.72) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.page-header-inner {
  position: relative;
  z-index: 2;
  padding: clamp(40px, 6vw, 80px) clamp(24px, 6vw, 96px);
  max-width: 1440px;
  margin-inline: auto;
  width: 100%;
}

.page-header-eyebrow,
.page-eyebrow {
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.page-header-eyebrow::before,
.page-eyebrow::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--accent);
  flex-shrink: 0;
}

.page-header-title {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(40px, 6vw, 96px);
  color: var(--canvas);
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
  max-width: 20ch;
}

.page-header-sub {
  font-size: clamp(15px, 1.4vw, 18px);
  color: rgba(255,255,255,0.8);
  max-width: 56ch;
  line-height: 1.6;
}

/* ─── SERVICES INDEX STRIP (services.html) ────────────────────────────── */
.services-index-strip {
  background: var(--ink);
  position: sticky;
  top: var(--header-height);
  z-index: 80;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  overflow-x: auto;
  scrollbar-width: none;
}
.services-index-strip::-webkit-scrollbar { display: none; }

.services-index-inner {
  display: flex;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 64px);
}

.services-index-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 24px;
  font-family: 'Archivo', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  white-space: nowrap;
  border-right: 1px solid rgba(255,255,255,0.06);
  transition: color 150ms, background 150ms;
}
.services-index-link:hover {
  color: var(--accent);
  background: rgba(255,255,255,0.05);
  text-decoration: none;
}
.services-index-link:last-child { border-right: none; }

.sil-num {
  font-family: 'Archivo Black', sans-serif;
  font-size: 11px;
  color: var(--primary-mid);
}

/* ─── SERVICE FEATURE (services.html) ────────────────────────────────── */
.service-feature {
  padding-block: var(--section-pad);
  background: var(--canvas);
}
.service-feature:nth-child(even) {
  background: var(--surface);
}

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

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

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

.service-feature-photo-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  font-family: 'Archivo', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--canvas);
  background: var(--primary);
  padding: 6px 12px;
  z-index: 2;
}

.service-feature-body {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sf-index {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(64px, 8vw, 112px);
  font-weight: 900;
  line-height: 0.85;
  color: var(--primary);
  opacity: 0.15;
  letter-spacing: -0.04em;
  margin-bottom: -8px;
  display: block;
}

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

.service-feature-body > h2 {
  font-size: clamp(28px, 3.5vw, 52px);
  margin-bottom: 20px;
}

.sf-title { /* h2 class variant */ }

.sf-desc {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 52ch;
}

.sf-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.sf-bullets li {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-mid);
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.sf-bullets li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--primary);
  flex-shrink: 0;
  margin-top: 6px;
}

/* ─── CTA BANNER ──────────────────────────────────────────────────────── */
.cta-banner {
  background: var(--primary);
  padding-block: clamp(72px, 10vh, 140px);
}

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

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

.cta-banner-headline,
.cta-banner-title {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(32px, 4.5vw, 68px);
  color: var(--canvas);
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.cta-banner-headline span,
.cta-banner-title span {
  color: var(--accent);
}

.cta-banner-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.78);
  line-height: 1.6;
  max-width: 52ch;
}

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

.cta-banner-right,
.cta-banner-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}

.cta-phone-big {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--canvas);
  color: var(--primary);
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: 15px;
  padding: 18px 28px;
  border-radius: var(--radius);
  text-decoration: none;
  border: 2px solid var(--canvas);
  transition: background 200ms, color 200ms;
  white-space: nowrap;
}
.cta-phone-big:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--primary-dark);
  text-decoration: none;
}
.cta-phone-big svg { width: 20px; height: 20px; }

.promo-tag {
  display: inline-block;
  background: var(--accent);
  color: var(--primary-dark);
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 14px;
  margin-top: 16px;
}

/* ─── GALLERY (gallery.html) ──────────────────────────────────────────── */
.gallery-section {
  background: var(--canvas);
  padding-block: var(--section-pad);
}

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

.gallery-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.gallery-header-left h2 {
  font-size: clamp(32px, 4.5vw, 64px);
  margin-top: 12px;
}
.gallery-header-left h2 span {
  color: var(--primary);
}

.filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.filter-pill {
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 8px 16px;
  border: 1px solid var(--border-dark);
  background: var(--canvas);
  cursor: pointer;
  transition: background 150ms, color 150ms, border-color 150ms;
}
.filter-pill:hover,
.filter-pill.active {
  background: var(--primary);
  color: var(--canvas);
  border-color: var(--primary);
}

/* Gallery bento grid */
.gallery-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(200px, auto);
  gap: 16px;
}

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

.gallery-card-featured {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
  aspect-ratio: auto;
  min-height: 400px;
}

.gallery-card > img,
.gallery-card-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: none;
  transition: transform 400ms ease-out;
}
.gallery-card:hover > img {
  transform: scale(1.04);
}

.gallery-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,18,8,0.75) 100%);
  z-index: 1;
}

.gallery-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 24px;
  z-index: 2;
}

.gallery-card-content h3 {
  font-size: clamp(16px, 1.8vw, 22px);
  color: var(--canvas);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.gallery-card-tag {
  font-family: 'Archivo', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 4px;
}

.gallery-card-location {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
}
.gallery-card-location svg { width: 12px; height: 12px; }

/* Non-photo gallery tiles */
.gallery-stat-card {
  background: var(--primary);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.gallery-stat-num {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(48px, 6vw, 80px);
  line-height: 0.9;
  color: var(--canvas);
  letter-spacing: -0.04em;
  margin-bottom: 8px;
}

.gallery-stat-label {
  font-family: 'Archivo', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.gallery-stat-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}

.gallery-accent-card {
  background: var(--accent);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.gallery-accent-quote {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.2;
  color: var(--primary-dark);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

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

.gallery-card-text {
  background: var(--surface);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.gallery-card-text h3 {
  font-size: clamp(16px, 1.6vw, 22px);
  color: var(--ink);
  letter-spacing: -0.02em;
}

.gallery-text-tag {
  font-family: 'Archivo', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  display: block;
  margin-bottom: 4px;
}

.gallery-text-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}

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

.gallery-service-card {
  background: var(--ink);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.gallery-service-card h3 {
  font-size: clamp(18px, 2vw, 28px);
  color: var(--canvas);
  letter-spacing: -0.02em;
  margin-top: 8px;
}

.gallery-service-num {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: 56px;
  color: var(--primary-mid);
  opacity: 0.5;
  line-height: 0.9;
  letter-spacing: -0.04em;
}

.gallery-service-name {
  font-size: 16px;
  color: var(--canvas);
  font-weight: 700;
}

.gallery-service-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}

/* ─── ABOUT STORY ─────────────────────────────────────────────────────── */
.about-story {
  background: var(--canvas);
  padding-block: var(--section-pad);
}

.about-story-inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 64px);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: start;
}

.about-story-photo-col {
  position: relative;
}

.about-story-photo-col > img {
  width: 100%;
  height: auto;
  max-height: 680px;
  object-fit: cover;
  display: block;
}

.about-story-photo-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--primary);
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
}

.badge-num {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: 32px;
  color: var(--canvas);
  line-height: 1.0;
  letter-spacing: -0.03em;
}

.badge-label {
  font-family: 'Archivo', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  text-align: center;
  margin-top: 4px;
  line-height: 1.2;
}

.about-story-text-col {
  padding-top: 12px;
}

.about-story-text-col > h2 {
  font-size: clamp(28px, 3.5vw, 52px);
  margin-bottom: 28px;
  margin-top: 16px;
}

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

.pull-quote {
  border-left: 4px solid var(--primary);
  padding-left: 24px;
  margin-block: 32px;
}

.pull-quote p {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(18px, 2.2vw, 26px);
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--primary);
  margin-bottom: 0 !important;
}

/* ─── VALUES ──────────────────────────────────────────────────────────── */
.values-section {
  background: var(--surface);
  padding-block: var(--section-pad);
}

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

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

.values-headline {
  font-size: clamp(32px, 4.5vw, 64px);
  margin-top: 12px;
}
.values-headline br + * { color: var(--primary); }

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

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

.value-card {
  background: var(--canvas);
  padding: 36px 28px;
  border-top: 3px solid var(--primary);
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}
.value-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.value-num {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: 48px;
  color: var(--primary);
  opacity: 0.2;
  line-height: 0.9;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
}

.value-title {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: 18px;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  line-height: 1.2;
}

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

/* ─── JOURNEY TIMELINE ────────────────────────────────────────────────── */
.journey-section {
  background: var(--ink);
  padding-block: var(--section-pad);
}

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

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

.journey-header h2 {
  color: var(--canvas);
  font-size: clamp(32px, 4.5vw, 64px);
  margin-top: 14px;
}

.journey-headline {
  color: var(--canvas);
}

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

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

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

.journey-step h3 {
  font-size: clamp(15px, 1.6vw, 20px);
  color: var(--canvas);
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  line-height: 1.2;
}

.step-dot {
  width: 40px;
  height: 40px;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.step-dot-inner {
  width: 14px;
  height: 14px;
  background: var(--accent);
}

.step-era {
  font-family: 'Archivo Black', sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary-mid);
  margin-bottom: 8px;
}

.step-title {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: 16px;
  color: var(--canvas);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.step-body {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.62;
}

/* ─── ABOUT EDITORIAL ─────────────────────────────────────────────────── */
.about-editorial {
  background: var(--canvas);
  padding-block: var(--section-pad);
}

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

.about-editorial-left h2 {
  font-size: clamp(28px, 3.5vw, 52px);
  margin-top: 14px;
  position: sticky;
  top: calc(var(--header-height) + 32px);
}

.about-editorial-left .section-eyebrow { margin-bottom: 8px; }

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

.about-editorial-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  text-decoration: none;
  border-bottom: 2px solid var(--primary);
  padding-bottom: 4px;
  margin-top: 12px;
  transition: gap 200ms;
}
.about-editorial-link:hover {
  text-decoration: none;
  gap: 16px;
}
.about-editorial-link svg { width: 18px; height: 18px; }

/* ─── SERVICE AREAS ───────────────────────────────────────────────────── */
.service-areas {
  background: var(--surface);
  padding-block: clamp(72px, 9vh, 120px);
}

.service-areas-inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 64px);
}

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

.service-areas-inner > h2 {
  font-size: clamp(28px, 3.5vw, 52px);
  margin-bottom: 10px;
}

.service-areas-headline {
  font-size: clamp(28px, 3.5vw, 52px);
  margin-bottom: 10px;
}

.service-areas-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 32px 0 24px;
}

.service-areas-note {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 56ch;
}

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

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

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

/* ─── FOOTER ──────────────────────────────────────────────────────────── */
.footer,
.site-footer {
  background: var(--ink);
  padding-top: clamp(64px, 8vh, 96px);
}

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

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

.footer-logo,
.footer-brand-logo {
  margin-bottom: 16px;
}

.footer-brand-name {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: 18px;
  color: var(--canvas);
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  max-width: 32ch;
  margin-bottom: 20px;
}

.footer-contact-line,
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 10px;
  text-decoration: none;
}
.footer-contact-line svg,
.footer-contact-item svg {
  width: 14px;
  height: 14px;
  color: var(--primary-mid);
  flex-shrink: 0;
}
.footer-contact-line a,
.footer-contact-item a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 150ms;
}
.footer-contact-line a:hover,
.footer-contact-item a:hover {
  color: var(--accent);
  text-decoration: none;
}

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

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

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

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

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

.footer-copy {
  font-size: 12.5px;
  color: rgba(255,255,255,0.38);
  line-height: 1.5;
}

.footer-copy-right {
  text-align: right;
}

.footer-copy a {
  color: rgba(255,255,255,0.5);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ─── MOBILE CALL PILL ────────────────────────────────────────────────── */
.mobile-call-pill,
.mobile-cta-pill,
.mobile-sticky-cta,
.mobile-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 999;
  background: var(--primary);
  color: var(--canvas);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 18px 40px -10px rgba(0,0,0,0.45);
  transition: filter 200ms, transform 200ms;
}
.mobile-call-pill:hover,
.mobile-cta-pill:hover,
.mobile-sticky-cta:hover,
.mobile-cta:hover {
  filter: brightness(0.88);
  transform: translateY(-2px);
  color: var(--canvas);
  text-decoration: none;
}
.mobile-call-pill svg,
.mobile-cta-pill svg,
.mobile-sticky-cta svg,
.mobile-cta svg,
.mobile-cta a svg {
  width: 20px;
  height: 20px;
  color: var(--canvas);
}
.mobile-cta a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--canvas);
  text-decoration: none;
}

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

/* ─── ANIMATION UTILITIES ─────────────────────────────────────────────── */
.fade-up,
.fade-left,
.fade-right,
.scale-in {
  opacity: 0;
  transition: opacity 600ms cubic-bezier(0.16,1,0.3,1),
              transform 600ms cubic-bezier(0.16,1,0.3,1);
}

.fade-up    { transform: translateY(28px); }
.fade-left  { transform: translateX(-28px); }
.fade-right { transform: translateX(28px); }
.scale-in   { transform: scale(0.95); }

.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: 60ms;  }
.stagger > *:nth-child(3)  { transition-delay: 120ms; }
.stagger > *:nth-child(4)  { transition-delay: 180ms; }
.stagger > *:nth-child(5)  { transition-delay: 240ms; }
.stagger > *:nth-child(6)  { transition-delay: 300ms; }
.stagger > *:nth-child(7)  { transition-delay: 360ms; }
.stagger > *:nth-child(8)  { transition-delay: 420ms; }

/* ─── SVG CAPS ────────────────────────────────────────────────────────── */
.contact-info-icon svg,
.info-icon svg,
.footer-contact-line svg,
.footer-contact-item svg { width: 18px; height: 18px; }

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

.cta-phone-big svg { width: 20px; height: 20px; }

.about-editorial-link svg { width: 18px; height: 18px; }

.btn svg,
.btn-primary svg,
.btn-phone svg { width: 18px; height: 18px; }

/* ─── RESPONSIVE — 1200px ─────────────────────────────────────────────── */
@media (max-width: 1200px) {
  .footer-inner {
    grid-template-columns: 1.2fr 1fr 1fr;
  }
  .footer-inner > .footer-col:last-child {
    grid-column: 1 / -1;
  }
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-story-inner {
    gap: 48px;
  }
  .contact-inner {
    grid-template-columns: 1fr 380px;
  }
}

/* ─── RESPONSIVE — 900px ──────────────────────────────────────────────── */
@media (max-width: 900px) {
  .services-bento {
    grid-template-columns: 1fr 1fr;
  }
  .service-card-flagship {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 380px;
  }
  .service-feature-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .service-feature-inner.photo-right {
    direction: ltr;
  }
  .service-feature-inner.photo-right .service-feature-photo {
    order: -1;
  }
  .about-story-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-story-photo-badge {
    right: 16px;
    bottom: 16px;
  }
  .values-header {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .journey-steps {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .journey-steps::before { display: none; }
  .about-editorial-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .about-editorial-left h2 {
    position: static;
  }
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .cta-banner-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .gallery-bento {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-card-featured {
    grid-column: 1 / -1;
    min-height: 280px;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .footer-inner > .footer-brand {
    grid-column: 1 / -1;
  }
  .hero-title { max-width: 100%; }
}

/* ─── RESPONSIVE — 640px ──────────────────────────────────────────────── */
@media (max-width: 640px) {
  .services-bento {
    grid-template-columns: 1fr;
  }
  .service-card-flagship {
    min-height: 320px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .journey-steps {
    grid-template-columns: 1fr;
  }
  .gallery-bento {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .hero-inner {
    padding-bottom: 72px;
  }
  .hero-ribbon {
    top: 14px;
    right: 14px;
    font-size: 10px;
    padding: 8px 12px;
  }
  .trust-strip-inner {
    gap: 10px;
  }
  .trust-badge {
    font-size: 10px;
    padding: 7px 12px;
  }
  .cta-banner-right,
  .cta-banner-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .services-index-link {
    padding: 12px 16px;
    font-size: 11px;
  }
}


/* === Validator patches (auto-applied) === */
/* validator patch: grid children without placement → span full row */
.contact-form-wrap { grid-column: 1 / -1; }
.form-group { grid-column: 1 / -1; }
.footer-col { grid-column: 1 / -1; }
.gallery-card { grid-column: 1 / -1; }
.about-editorial-left { 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; }
