/* ============================================================
   NATURE'S CALL — HOMEPAGE STYLES
   Depends on tokens.css (must be loaded before this file).
   ============================================================ */

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

html { scroll-behavior: smooth; }
body {
  font-family: var(--nc-font-body);
  background: var(--nc-off-white);
  color: var(--nc-text-primary);
  font-weight: var(--nc-weight-light);
  overflow-x: hidden;
}

/* ── SECTION LABEL SYSTEM ── */
.section-label {
  position: absolute;
  top: 12px; left: 12px;
  background: rgba(45,122,58,0.92);
  color: var(--nc-text-inverse);
  font-family: var(--nc-font-body);
  font-size: 10px;
  font-weight: var(--nc-weight-medium);
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--nc-radius-sm);
  z-index: 50;
}

/* ── CONTAINER ── */
.container {
  width: 100%;
  max-width: var(--nc-container-max);
  margin-inline: auto;
  padding-inline: var(--nc-container-pad);
}

/* ── EYEBROW ── */
.eyebrow {
  font-family: var(--nc-font-body);
  font-size: 11px;
  font-weight: var(--nc-weight-medium);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--nc-text-gold);
  display: block;
  margin-bottom: .75rem;
}

/* ── GOLD LINE ── */
.gold-line {
  display: block;
  width: 36px;
  height: 1px;
  background: var(--nc-gold);
  margin-bottom: 1.25rem;
}

/* ═══════════════════════════════
   1. NAV
═══════════════════════════════ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: var(--nc-z-nav);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem clamp(1.5rem, 5vw, 4rem);
  background: transparent;
  transition: background var(--nc-duration-slow) var(--nc-ease),
              padding var(--nc-duration-slow) var(--nc-ease);
}
/* Top-of-page scrim: a soft dark gradient behind the nav so the
   white logo and links stay legible over photo heroes. Fades down
   so the photo still reads as edge-to-edge. Hidden once the nav
   gains its solid background on scroll. */
nav::before {
  content: '';
  position: absolute;
  inset: -1rem 0 -3rem;
  background: linear-gradient(to bottom, rgba(0,0,0,.45) 0%, rgba(0,0,0,0) 100%);
  pointer-events: none;
  z-index: -1;
  transition: opacity var(--nc-duration-slow) var(--nc-ease);
}
nav.scrolled::before { opacity: 0; }
nav.scrolled {
  background: rgba(26,26,22,.95);
  backdrop-filter: blur(12px);
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.nav-logo {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: var(--nc-text-inverse);
  line-height: 1;
  text-shadow: 0 1px 8px rgba(0,0,0,.35);
  transition: text-shadow var(--nc-duration-base) var(--nc-ease);
}
nav.scrolled .nav-logo { text-shadow: none; }
.footer-brand .nav-logo { align-items: flex-start; }
.nav-logo-img {
  display: block;
  height: 56px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,.35));
  transition: height var(--nc-duration-slow) var(--nc-ease),
              filter var(--nc-duration-base) var(--nc-ease);
}
nav.scrolled .nav-logo-img { height: 44px; filter: none; }
.nav-logo-tagline {
  font-family: var(--nc-font-body);
  font-size: 11px;
  font-weight: var(--nc-weight-medium);
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--nc-gold-light);
  white-space: nowrap;
  transition: font-size var(--nc-duration-slow) var(--nc-ease),
              color var(--nc-duration-base) var(--nc-ease);
}
nav.scrolled .nav-logo-tagline { font-size: 10px; }
.footer-brand .nav-logo-img { height: 72px; }
.footer-brand .nav-logo-tagline {
  font-size: 12px;
  color: var(--nc-gold-light);
}
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-family: var(--nc-font-body);
  font-size: 13px;
  font-weight: var(--nc-weight-regular);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--nc-text-inverse);
  text-decoration: none;
  text-shadow: 0 1px 8px rgba(0,0,0,.35);
  transition: color var(--nc-duration-base) var(--nc-ease),
              text-shadow var(--nc-duration-base) var(--nc-ease);
}
.nav-links a:hover { color: var(--nc-gold-light); }
nav.scrolled .nav-links a { text-shadow: none; }

/* Hamburger toggle — hidden on desktop, shown on mobile */
.nav-menu-toggle {
  display: none;
  background: transparent;
  border: .5px solid rgba(250,250,247,.35);
  border-radius: var(--nc-radius-sm);
  width: 44px;
  height: 44px;
  padding: 0;
  cursor: pointer;
  position: relative;
  transition: border-color var(--nc-duration-base) var(--nc-ease);
}
.nav-menu-toggle:hover { border-color: rgba(250,250,247,.7); }
.nav-menu-bars,
.nav-menu-bars::before,
.nav-menu-bars::after {
  display: block;
  position: absolute;
  width: 18px;
  height: 1.5px;
  background: var(--nc-text-inverse);
  left: 50%;
  transition: transform var(--nc-duration-base) var(--nc-ease),
              top var(--nc-duration-base) var(--nc-ease),
              background var(--nc-duration-base) var(--nc-ease);
}
.nav-menu-bars {
  top: 50%;
  transform: translate(-50%, -50%);
}
.nav-menu-bars::before { content: ''; top: -6px; transform: translateX(-50%); }
.nav-menu-bars::after  { content: ''; top:  6px; transform: translateX(-50%); }
nav.menu-open .nav-menu-bars { background: transparent; }
nav.menu-open .nav-menu-bars::before { top: 0; transform: translateX(-50%) rotate(45deg); }
nav.menu-open .nav-menu-bars::after  { top: 0; transform: translateX(-50%) rotate(-45deg); }

/* ═══════════════════════════════
   2. HERO
═══════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  height: 100dvh; /* respects mobile browser chrome; 100vh is the fallback */
  min-height: 680px;
  background: var(--nc-deep-slate);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(26,26,22,.78) 0%,
      rgba(26,26,22,.55) 90px,
      rgba(26,26,22,.25) 160px,
      transparent 240px
    ),
    linear-gradient(
      to top,
      rgba(26,26,22,.92) 0%,
      rgba(26,26,22,.5) 40%,
      rgba(26,26,22,.15) 70%,
      transparent 100%
    );
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 3;
  padding: 0 clamp(1.5rem, 5vw, 4rem) 9rem;
  max-width: 900px;
}
.hero-headline {
  font-family: var(--nc-font-display);
  font-size: clamp(3.2rem, 6.5vw, 5.5rem);
  font-weight: var(--nc-weight-light);
  line-height: 1.08;
  letter-spacing: -.02em;
  color: var(--nc-text-inverse);
  margin-bottom: 1.5rem;
}
.hero-headline em {
  font-style: italic;
  color: var(--nc-gold-light);
}
.hero-sub {
  font-family: var(--nc-font-body);
  font-size: 1.1875rem;
  font-weight: var(--nc-weight-regular);
  color: rgba(250,250,247,.88);
  max-width: 700px;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}
.hero-btns {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}
.btn-primary {
  font-family: var(--nc-font-body);
  font-size: 11px;
  font-weight: var(--nc-weight-medium);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--nc-text-inverse);
  background: var(--nc-green);
  border: none;
  padding: .85rem 2rem;
  border-radius: var(--nc-radius-sm);
  cursor: pointer;
  text-decoration: none;
  transition: background var(--nc-duration-base) var(--nc-ease);
  display: inline-block;
}
.btn-primary:hover { background: var(--nc-green-hover); }
.btn-primary--slate { background: var(--nc-deep-slate); }
.btn-primary--slate:hover { background: var(--nc-charcoal); }
.btn-ghost {
  font-family: var(--nc-font-body);
  font-size: 11px;
  font-weight: var(--nc-weight-regular);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(250,250,247,.8);
  background: transparent;
  border: .5px solid rgba(250,250,247,.35);
  padding: .85rem 2rem;
  border-radius: var(--nc-radius-sm);
  cursor: pointer;
  text-decoration: none;
  transition: border-color var(--nc-duration-base) var(--nc-ease),
              color var(--nc-duration-base) var(--nc-ease);
  display: inline-block;
}
.btn-ghost:hover {
  border-color: rgba(250,250,247,.7);
  color: var(--nc-text-inverse);
}

/* Trust strip */
.hero-trust {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 3;
  border-top: .5px solid var(--nc-border-dark);
  background: rgba(26,26,22,.72);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: stretch;
  padding-bottom: env(safe-area-inset-bottom); /* clears home indicator on iOS */
}
.trust-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.75rem 1.5rem;
  border-right: .5px solid var(--nc-border-dark);
  border-top: 1px solid rgba(200,164,90,.25);
}
.trust-item:last-child { border-right: none; }
.trust-num {
  font-family: var(--nc-font-display);
  font-size: clamp(2.35rem, 3.2vw, 2.85rem);
  font-weight: var(--nc-weight-light);
  color: var(--nc-gold-light);
  line-height: 1;
}
.trust-lbl {
  font-family: var(--nc-font-body);
  font-size: 11px;
  font-weight: var(--nc-weight-regular);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(250,250,247,.7);
  margin-top: .4rem;
}

/* ═══════════════════════════════
   3. SERVICES
═══════════════════════════════ */
.services {
  background: var(--nc-off-white);
  padding: 6rem 0;
  position: relative;
}
.section-header { margin-bottom: 3.5rem; }
.section-header--centered {
  text-align: center;
  max-width: 560px;
  margin-inline: auto;
}
.section-header--centered .gold-line { margin-inline: auto; }
.section-heading {
  font-family: var(--nc-font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: var(--nc-weight-light);
  line-height: 1.15;
  letter-spacing: -.02em;
  color: var(--nc-text-primary);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--nc-linen-mid);
  border: 1px solid var(--nc-linen-mid);
}
.service-card {
  background: var(--nc-off-white);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: background var(--nc-duration-base) var(--nc-ease);
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--nc-green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--nc-duration-slow) var(--nc-ease);
}
.service-card:hover { background: var(--nc-warm-linen); }
.service-card:hover::after { transform: scaleX(1); }
.service-icon {
  width: 40px; height: 40px;
  border: .5px solid var(--nc-linen-mid);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  color: var(--nc-green);
  border-radius: var(--nc-radius-sm);
}
.service-name {
  font-family: var(--nc-font-display);
  font-size: 1.3rem;
  font-weight: var(--nc-weight-regular);
  color: var(--nc-text-primary);
  line-height: 1.2;
}
.service-desc {
  font-family: var(--nc-font-body);
  font-size: 1rem;
  font-weight: var(--nc-weight-light);
  color: var(--nc-text-muted);
  line-height: 1.65;
  flex: 1;
}
.service-link {
  font-family: var(--nc-font-body);
  font-size: 11px;
  font-weight: var(--nc-weight-medium);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--nc-green);
  display: flex;
  align-items: center;
  gap: .4rem;
}
.services-footer {
  margin-top: 2rem;
  text-align: center;
}
.link-plain {
  font-family: var(--nc-font-body);
  font-size: 12px;
  font-weight: var(--nc-weight-regular);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--nc-stone-dark);
  text-decoration: none;
  border-bottom: .5px solid var(--nc-stone-light);
  padding-bottom: 2px;
  transition: color var(--nc-duration-base) var(--nc-ease),
              border-color var(--nc-duration-base) var(--nc-ease);
}
.link-plain:hover {
  color: var(--nc-text-primary);
  border-color: var(--nc-text-primary);
}

/* ═══════════════════════════════
   4. FEATURED PROJECTS
═══════════════════════════════ */
.projects {
  background: var(--nc-deep-slate);
  padding: 6rem 0;
  position: relative;
}
.projects .section-heading { color: var(--nc-text-inverse); }
.projects-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  grid-template-rows: auto auto;
  gap: 1px;
  background: var(--nc-charcoal-light);
  margin-top: 3rem;
}
.project-card {
  background: var(--nc-charcoal-mid);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 320px;
  text-decoration: none;
}
.project-card.large {
  grid-row: span 2;
  min-height: 640px;
}
.project-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform var(--nc-duration-slower) var(--nc-ease);
}
.project-card:hover .project-img {
  transform: scale(1.05);
}
.project-card picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.project-card picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform var(--nc-duration-slower) var(--nc-ease);
}
.project-card:hover picture img {
  transform: scale(1.05);
}
.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,22,.88) 0%, transparent 55%);
  z-index: 1;
}
.project-info {
  position: relative;
  z-index: 2;
  padding: 2rem;
}
.project-type {
  font-family: var(--nc-font-body);
  font-size: 10px;
  font-weight: var(--nc-weight-medium);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--nc-gold);
  display: block;
  margin-bottom: .5rem;
}
.project-name {
  font-family: var(--nc-font-display);
  font-size: 1.5rem;
  font-weight: var(--nc-weight-light);
  color: var(--nc-text-inverse);
  line-height: 1.2;
  margin-bottom: .35rem;
}
.project-card.large .project-name { font-size: 2rem; }
.project-location {
  font-family: var(--nc-font-body);
  font-size: .8rem;
  color: var(--nc-stone);
  display: flex;
  align-items: center;
  gap: .3rem;
}
.project-arrow {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  z-index: 2;
  width: 36px; height: 36px;
  border: .5px solid var(--nc-border-dark);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--nc-stone);
  font-size: 14px;
  transition: border-color var(--nc-duration-base) var(--nc-ease),
              color var(--nc-duration-base) var(--nc-ease);
}
.project-card:hover .project-arrow {
  border-color: var(--nc-gold);
  color: var(--nc-gold);
}
.projects-footer {
  margin-top: 2.5rem;
  text-align: center;
}
.projects-footer .link-plain { color: var(--nc-stone); border-color: var(--nc-charcoal-light); }
.projects-footer .link-plain:hover { color: var(--nc-text-inverse); border-color: var(--nc-stone); }

/* ═══════════════════════════════
   5. ABOUT
═══════════════════════════════ */
.about {
  background: var(--nc-warm-linen);
  padding: 6rem 0;
  position: relative;
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 5rem;
  row-gap: 1.5rem;
  align-items: start;
}
.about-img {
  grid-row: 1 / 3;
  align-self: center;
  position: relative;
  aspect-ratio: 4/5;
  background: var(--nc-linen-mid);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.about-img-accent {
  position: absolute;
  bottom: -1rem; right: -1rem;
  width: 120px; height: 120px;
  border: .5px solid var(--nc-gold);
  z-index: -1;
}

.about-copy-head h2 {
  font-family: var(--nc-font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: var(--nc-weight-light);
  line-height: 1.2;
  letter-spacing: -.01em;
  color: var(--nc-text-primary);
  margin-bottom: 0;
}
.about-copy-head h2 em {
  font-style: italic;
  color: var(--nc-stone-dark);
}
.about-copy-body p {
  font-family: var(--nc-font-body);
  font-size: 1rem;
  font-weight: var(--nc-weight-light);
  line-height: 1.75;
  color: var(--nc-text-secondary);
  margin-bottom: 1rem;
}
.about-copy-body p:last-of-type { margin-bottom: 2rem; }

/* ═══════════════════════════════
   6. PROCESS
═══════════════════════════════ */
.process {
  background: var(--nc-off-white);
  padding: 6rem 0;
  position: relative;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 3.5rem;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 2.2rem;
  left: 12.5%;
  right: 12.5%;
  height: .5px;
  background: var(--nc-gold);
  opacity: .4;
  z-index: 0;
}
.process-step {
  padding: 0 2rem;
  text-align: center;
  position: relative;
  z-index: 1;
}
.process-step:first-child { padding-left: 0; }
.process-step:last-child { padding-right: 0; }
.step-dot {
  width: 44px; height: 44px;
  border: .5px solid var(--nc-gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
  background: var(--nc-off-white);
  font-family: var(--nc-font-display);
  font-size: 1.1rem;
  font-weight: var(--nc-weight-regular);
  color: var(--nc-gold);
}
.step-title {
  font-family: var(--nc-font-display);
  font-size: 1.35rem;
  font-weight: var(--nc-weight-regular);
  color: var(--nc-text-primary);
  margin-bottom: .75rem;
  line-height: 1.2;
}
.step-desc {
  font-family: var(--nc-font-body);
  font-size: .9375rem;
  font-weight: var(--nc-weight-light);
  color: var(--nc-text-muted);
  line-height: 1.65;
}

/* ═══════════════════════════════
   7. REVIEWS
═══════════════════════════════ */
.reviews {
  background: var(--nc-deep-slate);
  padding: 6rem 0;
  position: relative;
}
.reviews .section-heading { color: var(--nc-text-inverse); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--nc-charcoal-light);
  margin-top: 3rem;
}
.review-card {
  background: var(--nc-charcoal);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.review-stars {
  color: var(--nc-gold);
  font-size: 13px;
  letter-spacing: .1em;
}
.review-text {
  font-family: var(--nc-font-display);
  font-size: 1.05rem;
  font-weight: var(--nc-weight-light);
  font-style: italic;
  color: rgba(250,250,247,.85);
  line-height: 1.7;
  flex: 1;
}
.review-author {
  border-top: .5px solid var(--nc-charcoal-light);
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: .2rem;
}
.review-name {
  font-family: var(--nc-font-body);
  font-size: .8125rem;
  font-weight: var(--nc-weight-medium);
  color: var(--nc-text-inverse);
  letter-spacing: .04em;
}
.review-project {
  font-family: var(--nc-font-body);
  font-size: .75rem;
  font-weight: var(--nc-weight-light);
  color: var(--nc-stone);
  letter-spacing: .04em;
}
.reviews-footer {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.reviews-footer .link-plain { color: var(--nc-stone); border-color: var(--nc-charcoal-light); }
.reviews-footer .link-plain:hover { color: var(--nc-text-inverse); border-color: var(--nc-stone); }
.reviews-aggregate {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.agg-num {
  font-family: var(--nc-font-display);
  font-size: 2.5rem;
  font-weight: var(--nc-weight-light);
  color: var(--nc-text-inverse);
  line-height: 1;
}
.agg-detail {
  display: flex; flex-direction: column; gap: .2rem;
}
.agg-stars { color: var(--nc-gold); font-size: 14px; letter-spacing: .08em; }
.agg-count {
  font-family: var(--nc-font-body);
  font-size: .75rem;
  color: var(--nc-stone);
  letter-spacing: .06em;
}

/* ═══════════════════════════════
   8. SERVICE AREA
═══════════════════════════════ */
.service-area {
  background: var(--nc-warm-linen);
  padding: 6rem 0;
}
.area-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 5rem;
  row-gap: 1.5rem;
  align-items: start;
}
.area-map {
  grid-row: 1 / 3;
  align-self: center;
  aspect-ratio: 4/3;
  background: var(--nc-linen-mid);
  position: relative;
  overflow: hidden;
  border: .5px solid var(--nc-linen-mid);
}
.area-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.area-map-label {
  font-family: var(--nc-font-body);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--nc-stone-light);
}
.area-copy-head h2 {
  font-family: var(--nc-font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: var(--nc-weight-light);
  line-height: 1.2;
  color: var(--nc-text-primary);
  margin-bottom: 0;
}
.area-copy-body p {
  font-family: var(--nc-font-body);
  font-size: 1rem;
  font-weight: var(--nc-weight-light);
  color: var(--nc-text-secondary);
  line-height: 1.75;
  margin-bottom: 2rem;
}
.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 2rem;
}
.area-tag {
  font-family: var(--nc-font-body);
  font-size: 11px;
  font-weight: var(--nc-weight-regular);
  letter-spacing: .08em;
  color: var(--nc-stone-dark);
  border: .5px solid var(--nc-linen-mid);
  padding: .4rem .9rem;
  border-radius: var(--nc-radius-sm);
  background: var(--nc-off-white);
}
.area-tag.primary {
  background: var(--nc-deep-slate);
  color: var(--nc-text-inverse);
  border-color: var(--nc-deep-slate);
}

/* ═══════════════════════════════
   9. CONTACT / CTA
═══════════════════════════════ */
.contact {
  background: var(--nc-off-white);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
  position: relative;
  z-index: 1;
}
.contact-copy h2 {
  font-family: var(--nc-font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: var(--nc-weight-light);
  line-height: 1.15;
  color: var(--nc-text-primary);
  margin-bottom: 1.5rem;
}
.contact-copy p {
  font-family: var(--nc-font-body);
  font-size: 1rem;
  font-weight: var(--nc-weight-light);
  color: var(--nc-text-secondary);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 380px;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-detail {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.contact-detail-icon {
  width: 32px; height: 32px;
  border: .5px solid var(--nc-linen-mid);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  color: var(--nc-gold-dark);
  border-radius: var(--nc-radius-sm);
  flex-shrink: 0;
}
.contact-detail-text {
  font-family: var(--nc-font-body);
  font-size: .875rem;
  font-weight: var(--nc-weight-light);
  color: var(--nc-text-secondary);
}
.contact-form {
  background: var(--nc-warm-linen);
  padding: 2.5rem;
  border: .5px solid var(--nc-linen-mid);
}
.form-heading {
  font-family: var(--nc-font-display);
  font-size: 1.4rem;
  font-weight: var(--nc-weight-light);
  color: var(--nc-text-primary);
  margin-bottom: .5rem;
}
.form-sub {
  font-family: var(--nc-font-body);
  font-size: .8125rem;
  font-weight: var(--nc-weight-light);
  color: var(--nc-text-secondary);
  margin-bottom: 1.75rem;
  line-height: 1.5;
}
.form-group { margin-bottom: 1rem; }
.form-label {
  display: block;
  font-family: var(--nc-font-body);
  font-size: 10px;
  font-weight: var(--nc-weight-medium);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--nc-stone-dark);
  margin-bottom: .4rem;
}
.form-input {
  width: 100%;
  background: var(--nc-off-white);
  border: .5px solid var(--nc-linen-mid);
  color: var(--nc-text-primary);
  font-family: var(--nc-font-body);
  font-size: .875rem;
  font-weight: var(--nc-weight-light);
  padding: .75rem 1rem;
  border-radius: 0;
  outline: none;
  transition: border-color var(--nc-duration-base) var(--nc-ease);
}
.form-input:focus { border-color: var(--nc-gold-dark); }
.form-input::placeholder { color: var(--nc-stone-light); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-select {
  width: 100%;
  background: var(--nc-off-white);
  border: .5px solid var(--nc-linen-mid);
  color: var(--nc-text-secondary);
  font-family: var(--nc-font-body);
  font-size: .875rem;
  font-weight: var(--nc-weight-light);
  padding: .75rem 1rem;
  border-radius: 0;
  outline: none;
  appearance: none;
  cursor: pointer;
}
.form-textarea {
  width: 100%;
  background: var(--nc-off-white);
  border: .5px solid var(--nc-linen-mid);
  color: var(--nc-text-primary);
  font-family: var(--nc-font-body);
  font-size: .875rem;
  font-weight: var(--nc-weight-light);
  padding: .75rem 1rem;
  border-radius: 0;
  outline: none;
  resize: vertical;
  min-height: 140px;
  transition: border-color var(--nc-duration-base) var(--nc-ease);
}
.form-textarea::placeholder { color: var(--nc-stone-light); }
.form-textarea:focus { border-color: var(--nc-gold-dark); }
.form-submit {
  width: 100%;
  background: var(--nc-green);
  color: var(--nc-text-inverse);
  font-family: var(--nc-font-body);
  font-size: 11px;
  font-weight: var(--nc-weight-medium);
  letter-spacing: .12em;
  text-transform: uppercase;
  border: none;
  padding: 1rem;
  border-radius: var(--nc-radius-sm);
  cursor: pointer;
  margin-top: .5rem;
  transition: background var(--nc-duration-base) var(--nc-ease);
}
.form-submit:hover { background: var(--nc-green-hover); }

/* ═══════════════════════════════
   HOMEPAGE CTA BLOCK (Section 8)
═══════════════════════════════ */
.cta-block {
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
}
.cta-block .section-heading { margin-bottom: 1.25rem; }
.cta-block-sub {
  font-family: var(--nc-font-body);
  font-size: 1rem;
  color: var(--nc-text-secondary);
  line-height: 1.7;
  max-width: 460px;
  margin: 0 auto 2rem;
}
.cta-nap {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  align-items: center;
  margin-bottom: 2.5rem;
}
.cta-nap .contact-detail { justify-content: center; }
.cta-nap .contact-detail-text a {
  color: var(--nc-text-secondary);
  text-decoration: none;
}
.cta-nap .contact-detail-text a:hover { color: var(--nc-gold-dark); }

/* ═══════════════════════════════
   FOOTER
═══════════════════════════════ */
footer {
  background: var(--nc-charcoal);
  padding: 3rem 0 2rem;
  border-top: .5px solid rgba(250,250,247,.12);
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}
.footer-brand .nav-logo { color: var(--nc-text-inverse); }
.footer-brand p {
  font-family: var(--nc-font-body);
  font-size: .875rem;
  font-weight: var(--nc-weight-light);
  color: rgba(250,250,247,.7);
  line-height: 1.7;
  margin-top: 1rem;
  max-width: 280px;
}
.footer-social {
  display: flex;
  gap: .75rem;
  margin-top: 1.25rem;
  align-items: center;
}
.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: .5px solid rgba(250,250,247,.2);
  border-radius: var(--nc-radius-sm);
  color: rgba(250,250,247,.6);
  text-decoration: none;
  transition: color var(--nc-duration-base) var(--nc-ease),
              border-color var(--nc-duration-base) var(--nc-ease);
}
.footer-social-link:hover {
  color: var(--nc-text-inverse);
  border-color: rgba(250,250,247,.5);
}
.footer-col h4 {
  font-family: var(--nc-font-body);
  font-size: 10px;
  font-weight: var(--nc-weight-medium);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--nc-gold-light);
  margin-bottom: 1rem;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.footer-col ul li a {
  font-family: var(--nc-font-body);
  font-size: .875rem;
  font-weight: var(--nc-weight-light);
  color: rgba(250,250,247,.65);
  text-decoration: none;
  transition: color var(--nc-duration-base) var(--nc-ease);
}
.footer-col ul li a:hover { color: var(--nc-text-inverse); }
.footer-contact-addr {
  font-family: var(--nc-font-body);
  font-size: .875rem;
  font-weight: var(--nc-weight-light);
  color: rgba(250,250,247,.65);
  line-height: 1.6;
}
.footer-bottom {
  border-top: .5px solid rgba(250,250,247,.15);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-copy {
  font-family: var(--nc-font-body);
  font-size: .75rem;
  font-weight: var(--nc-weight-light);
  color: rgba(250,250,247,.6);
}
.footer-credit-link {
  color: rgba(250,250,247,.6);
  text-decoration: none;
  transition: color var(--nc-duration-base) var(--nc-ease);
}
.footer-credit-link:hover { color: var(--nc-text-inverse); }

/* ═══════════════════════════════
   INNER PAGE HERO
═══════════════════════════════ */
.page-hero {
  background: var(--nc-deep-slate);
  padding: 9rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .eyebrow { color: var(--nc-gold-light); }
.page-hero .gold-line { background: var(--nc-gold-light); }
.page-hero .section-heading,
.page-hero h1 {
  font-family: var(--nc-font-display);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: var(--nc-weight-light);
  line-height: 1.1;
  letter-spacing: -.01em;
  color: var(--nc-text-inverse);
  text-shadow: 0 2px 18px rgba(0,0,0,.45);
}
.page-hero em { color: var(--nc-gold-light); font-style: italic; }
/* Kicker-below-headline pattern: H1 first, then either an .eyebrow
   (uppercase-tracked label) or a .page-hero-tagline (editorial sentence).
   Gold is reserved for the H1 italic so the kicker reads neutral white.
   Text shadow matches the nav legibility treatment. */
.page-hero--img h1 + .eyebrow,
.page-hero h1 + .page-hero-tagline {
  margin-top: .85rem;
  margin-bottom: 0;
  color: rgba(250,250,247,.85);
  text-shadow: 0 1px 8px rgba(0,0,0,.5);
}
.page-hero-tagline {
  font-family: var(--nc-font-display);
  font-style: italic;
  font-size: clamp(1.125rem, 1.6vw, 1.375rem);
  font-weight: var(--nc-weight-regular);
  line-height: 1.4;
  max-width: 640px;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.page-hero-bg picture,
.page-hero-bg picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26,26,22,.10) 0%,
    rgba(26,26,22,.22) 50%,
    rgba(26,26,22,.65) 100%
  );
}
/* Taller hero for project pages with background photo */
.page-hero--img {
  padding: 5rem 0 4.5rem;
  min-height: min(85vh, 800px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
/* When the hero has the absolute stats overlay, reserve room above it */
.page-hero--with-stats { padding-bottom: 9rem; }

/* Project hero stats — dark glass strip overlaid at the bottom of the
   hero, mirroring the homepage .hero-trust treatment. */
.project-hero-stats {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 3;
  background: rgba(26,26,22,.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: .5px solid var(--nc-border-dark);
  padding-bottom: env(safe-area-inset-bottom);
}
.project-hero-stats-grid {
  display: flex;
  align-items: stretch;
}
.project-hero-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.4rem 1rem;
  border-right: .5px solid var(--nc-border-dark);
  border-top: 1px solid rgba(200,164,90,.22);
  text-align: center;
}
.project-hero-stat:last-child { border-right: none; }
.project-hero-stat-value {
  font-family: var(--nc-font-display);
  font-size: clamp(1.25rem, 1.9vw, 1.65rem);
  font-weight: var(--nc-weight-light);
  color: var(--nc-text-inverse);
  line-height: 1.15;
  /* Lining + tabular figures so numeric values like "2026" sit at cap
     height instead of Cormorant's default oldstyle numerals (which look
     visually smaller next to letter-based values). */
  font-feature-settings: "lnum" 1, "tnum" 1;
}
.project-hero-stat-label {
  font-family: var(--nc-font-body);
  font-size: 11px;
  font-weight: var(--nc-weight-regular);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(250,250,247,.62);
  margin-bottom: .45rem;
}

/* ═══════════════════════════════
   CONTACT PAGE
═══════════════════════════════ */
.contact-hero {
  background: var(--nc-deep-slate);
  padding: 10rem 0 4rem;
}
.contact-hero .eyebrow { color: var(--nc-gold-light); }
.contact-hero .gold-line { background: var(--nc-gold-light); }
.contact-hero h1 {
  font-family: var(--nc-font-display);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: var(--nc-weight-light);
  color: var(--nc-text-inverse);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}
.contact-hero h1 em { font-style: italic; }
.contact-hero-sub {
  font-family: var(--nc-font-body);
  font-size: 1.0625rem;
  color: rgba(250,250,247,.78);
  line-height: 1.7;
  max-width: 760px;
  margin-bottom: 3.5rem;
}
.contact-trust-strip {
  display: flex;
  border-top: .5px solid var(--nc-border-dark);
}
.contact-trust-item {
  flex: 1;
  padding: 1.5rem 0;
  border-right: .5px solid var(--nc-border-dark);
  text-align: center;
}
.contact-trust-item:last-child { border-right: none; }
.contact-trust-num {
  display: block;
  font-family: var(--nc-font-display);
  font-size: 2rem;
  font-weight: var(--nc-weight-light);
  color: var(--nc-text-inverse);
  line-height: 1;
}
.contact-trust-lbl {
  display: block;
  font-family: var(--nc-font-body);
  font-size: 10px;
  font-weight: var(--nc-weight-medium);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--nc-stone);
  margin-top: .4rem;
}
.contact-body {
  background: var(--nc-off-white);
  padding: 3rem 0 6rem;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.contact-steps-eyebrow {
  font-family: var(--nc-font-body);
  font-size: 11px;
  font-weight: var(--nc-weight-medium);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--nc-gold-dark);
  margin-bottom: 1.25rem;
}
.contact-step {
  display: flex;
  gap: .875rem;
  align-items: flex-start;
}
.contact-step + .contact-step { margin-top: 1.125rem; }
.contact-step-num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: .5px solid var(--nc-gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--nc-font-body);
  font-size: 10px;
  color: var(--nc-gold-dark);
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-step-title {
  font-family: var(--nc-font-body);
  font-size: 1rem;
  font-weight: var(--nc-weight-medium);
  color: var(--nc-text-primary);
  line-height: 1.4;
}
.contact-step-desc {
  font-family: var(--nc-font-body);
  font-size: .875rem;
  color: var(--nc-text-secondary);
  line-height: 1.65;
  margin-top: .25rem;
}
.contact-reach {
  border-top: .5px solid var(--nc-linen-mid);
  padding-top: 2rem;
}
.contact-reach-eyebrow {
  font-family: var(--nc-font-body);
  font-size: 11px;
  font-weight: var(--nc-weight-medium);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--nc-gold-dark);
  margin-bottom: 1rem;
}
.contact-reach-area {
  font-family: var(--nc-font-body);
  font-size: .8125rem;
  color: var(--nc-stone);
  line-height: 1.6;
  margin-top: 1rem;
  font-style: italic;
}
.contact-photo {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--nc-radius-lg);
}
.contact-quote {
  border-left: 2px solid var(--nc-gold-dark);
  padding-left: 1.25rem;
}
.contact-quote-text {
  font-family: var(--nc-font-display);
  font-style: italic;
  font-size: 1.0625rem;
  color: var(--nc-text-secondary);
  line-height: 1.65;
  margin-bottom: .5rem;
}
.contact-quote-attr {
  font-family: var(--nc-font-body);
  font-size: .75rem;
  font-weight: var(--nc-weight-medium);
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--nc-stone);
}
.form-label-opt {
  font-weight: var(--nc-weight-light);
  color: var(--nc-stone);
  font-size: .8em;
}

/* ── MOBILE STICKY CTA BAR ── */
.mobile-cta-bar {
  display: none; /* desktop: hidden */
}

/* ── SCROLL ANIMATION SETUP ── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s var(--nc-ease), transform .7s var(--nc-ease);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ═══════════════════════════════
   PROJECT DETAIL PAGE
═══════════════════════════════ */
.project-stats-bar {
  background: var(--nc-off-white);
  border-bottom: .5px solid var(--nc-linen-mid);
}
.project-stats {
  display: flex;
  flex-wrap: wrap;
}
.project-stat {
  flex: 1;
  min-width: 140px;
  padding: 1.5rem 2rem;
  border-right: .5px solid var(--nc-linen-mid);
}
.project-stat:last-child { border-right: none; }
.project-stat-label {
  display: block;
  font-family: var(--nc-font-body);
  font-size: 10px;
  font-weight: var(--nc-weight-medium);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--nc-stone);
  margin-bottom: .5rem;
}
.project-stat-value {
  font-family: var(--nc-font-body);
  font-size: .9375rem;
  font-weight: var(--nc-weight-medium);
  color: var(--nc-text-primary);
}

.project-intro-section {
  background: var(--nc-off-white);
  padding: 6rem 0 6.5rem;
}
.project-intro-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 5rem;
  align-items: start;
}
.project-intro-text .eyebrow {
  color: var(--nc-gold-dark);
  margin-bottom: 1rem;
}
.project-intro-text .eyebrow::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--nc-gold-dark);
  margin-top: 1rem;
}
.project-intro-text h2 {
  font-family: var(--nc-font-display);
  font-size: clamp(2rem, 3.4vw, 2.85rem);
  font-weight: var(--nc-weight-light);
  color: var(--nc-text-primary);
  line-height: 1.15;
  letter-spacing: -.01em;
  margin-bottom: 2rem;
}
.project-intro-text h2 em {
  font-style: italic;
  color: var(--nc-gold-dark);
}
.project-intro-text p {
  font-family: var(--nc-font-body);
  font-size: 1.0625rem;
  font-weight: var(--nc-weight-light);
  color: var(--nc-text-secondary);
  line-height: 1.85;
  margin-bottom: 1.5rem;
}
.project-intro-text p:last-child { margin-bottom: 0; }

/* Scope card: white-on-cream "card on a card" with gold top accent and
   numbered items. Sticky so it follows down the long intro on desktop. */
.project-scope-card {
  background: #fff;
  border: .5px solid var(--nc-linen-mid);
  border-top: 3px solid var(--nc-gold-dark);
  padding: 2.5rem 2.25rem 2.75rem;
  position: sticky;
  top: 6rem;
  box-shadow: 0 1px 3px rgba(26,26,22,.04);
}
.project-scope-eyebrow {
  display: block;
  font-family: var(--nc-font-body);
  font-size: 11px;
  font-weight: var(--nc-weight-medium);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--nc-gold-dark);
  position: relative;
  padding-bottom: 1.15rem;
  margin-bottom: 1.6rem;
}
.project-scope-eyebrow::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 32px;
  height: 1px;
  background: var(--nc-gold-dark);
}
.project-scope-list {
  list-style: none;
  counter-reset: scope;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.project-scope-list li {
  counter-increment: scope;
  display: flex;
  gap: 1.15rem;
  align-items: baseline;
  font-family: var(--nc-font-body);
  font-size: .9375rem;
  font-weight: var(--nc-weight-light);
  color: var(--nc-text-secondary);
  line-height: 1.45;
  padding-left: 0;
  position: static;
}
.project-scope-list li::before {
  content: counter(scope, decimal-leading-zero);
  font-family: var(--nc-font-display);
  font-style: italic;
  font-size: 1.0625rem;
  font-weight: var(--nc-weight-regular);
  color: var(--nc-gold-dark);
  flex: 0 0 1.75em;
  background: none;
  border-radius: 0;
  width: auto;
  height: auto;
  position: static;
  top: auto;
  letter-spacing: .02em;
}

.project-feature-section {
  background: var(--nc-deep-slate);
  line-height: 0;
}
.project-feature-section figure {
  margin: 0;
}
.project-feature-section picture,
.project-feature-section img {
  width: 100%;
  max-height: 620px;
  object-fit: cover;
  display: block;
}
.project-feature-section figcaption {
  line-height: 1.5;
  text-align: center;
  font-family: var(--font-body, "Jost", sans-serif);
  font-weight: 300;
  font-size: 0.8125rem;
  color: var(--nc-stone);
  padding: 0.875rem 1.25rem 1rem;
  letter-spacing: 0.02em;
}

.project-gallery-section {
  background: var(--nc-warm-linen);
  padding: 5rem 0 6rem;
}
.project-gallery-section .section-heading { color: var(--nc-text-primary); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 6px;
  grid-auto-flow: dense;
  margin-top: 3rem;
}
.gallery-item {
  overflow: hidden;
  cursor: zoom-in;
  position: relative;
  background: var(--nc-linen-mid);
  transition: transform .35s var(--nc-ease), box-shadow .35s var(--nc-ease);
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item.feature { grid-column: span 2; grid-row: span 2; }
.gallery-item picture { display: block; width: 100%; height: 100%; }
.gallery-item picture img,
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (hover: hover) {
  .gallery-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(26,26,22,.18);
    z-index: 2;
  }
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,10,8,.94);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 3rem 5rem;
}
.lightbox.open { display: flex; }
.lightbox-img {
  max-width: 100%;
  max-height: 88vh;
  object-fit: contain;
  display: block;
}
.lightbox-close {
  position: fixed;
  top: 1.25rem;
  right: 1.75rem;
  background: none;
  border: none;
  color: rgba(250,250,247,.7);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: color .2s;
  font-weight: 300;
}
.lightbox-close:hover { color: var(--nc-off-white); }
.lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: .5px solid rgba(250,250,247,.25);
  color: rgba(250,250,247,.7);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.25rem;
  transition: color .2s, border-color .2s;
}
.lightbox-nav:hover { color: var(--nc-off-white); border-color: rgba(250,250,247,.6); }
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }
.lightbox-counter {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--nc-font-body);
  font-size: 11px;
  letter-spacing: .12em;
  color: rgba(250,250,247,.45);
}

.project-cta-section {
  background: var(--nc-off-white);
  padding: 5.5rem 0 6.5rem;
  text-align: center;
}
.project-cta-section p {
  font-family: var(--nc-font-body);
  font-size: 1rem;
  font-weight: var(--nc-weight-light);
  color: var(--nc-text-secondary);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
}

/* ═══════════════════════════════
   BEFORE/AFTER SLIDER
   Used on /our-work/ landing and on the Hockessin project page.
   Markup driven by [data-ba-slider]; JS toggles --ba-position
   on the .ba-slider__viewer element.
═══════════════════════════════ */
.ba-slider {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}
.ba-slider__viewer {
  position: relative;
  aspect-ratio: 4/3;
  border: 1px solid var(--nc-charcoal);
  border-radius: 4px;
  overflow: hidden;
  user-select: none;
  touch-action: pan-y;
  --ba-position: 50%;
}
.ba-slider__before,
.ba-slider__after {
  position: absolute;
  inset: 0;
}
.ba-slider__before picture,
.ba-slider__after picture,
.ba-slider__before img,
.ba-slider__after img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ba-slider__after {
  clip-path: inset(0 0 0 var(--ba-position));
}
.ba-slider__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--ba-position);
  width: 44px;
  margin-left: -22px;
  background: transparent;
  border: none;
  padding: 0;
  cursor: ew-resize;
  touch-action: none;
  z-index: 2;
}
.ba-slider__handle::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  margin-left: -1px;
  background: var(--nc-gold-light);
  box-shadow: 0 0 6px rgba(0,0,0,.35);
}
.ba-slider__handle-knob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--nc-gold-light);
  color: var(--nc-charcoal);
  font-family: var(--nc-font-body);
  font-weight: var(--nc-weight-medium);
  font-size: 1.1rem;
  display: grid;
  place-items: center;
  box-shadow: 0 2px 10px rgba(0,0,0,.3);
}
.ba-slider__handle:focus-visible {
  outline: none;
}
.ba-slider__handle:focus-visible .ba-slider__handle-knob {
  outline: 2px solid var(--nc-gold-dark);
  outline-offset: 3px;
}
.ba-slider__label {
  position: absolute;
  bottom: 1rem;
  font-family: var(--nc-font-body);
  font-size: 11px;
  font-weight: var(--nc-weight-medium);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--nc-text-inverse);
  background: rgba(26,26,22,.6);
  padding: .25rem .55rem;
  border-radius: 2px;
  pointer-events: none;
  z-index: 1;
}
.ba-slider__label--before { left: 1rem; }
.ba-slider__label--after { right: 1rem; }
.ba-slider__caption {
  margin-top: 1rem;
  text-align: center;
  font-family: var(--nc-font-body);
  font-size: .9375rem;
  font-weight: var(--nc-weight-light);
  color: var(--nc-text-secondary);
}

/* Project page Before & After section wrapper (uses .ba-slider component) */
.project-before-after-section {
  background: var(--nc-warm-linen);
  padding: 5rem 0;
}
.project-before-after-section .section-heading { color: var(--nc-text-primary); }
.project-before-after-section .section-heading em { color: var(--nc-gold-dark); font-style: italic; }
.project-before-after-section .eyebrow { color: var(--nc-gold-dark); }
.project-before-after-section .gold-line { background: var(--nc-gold-dark); }

/* ═══════════════════════════════
   /OUR-WORK/ LANDING — NEW SECTIONS
   Intro, featured transformation, browse-by-service, stats band, CTA.
   Project grid (.projects / .projects-grid / .project-card) is unchanged.
═══════════════════════════════ */

/* Combined page hero + intro on a light background.
   Top padding clears the fixed nav (matches .page-hero spacing);
   the nav's built-in dark scrim keeps the white nav legible. */
.our-work-intro {
  background: var(--nc-off-white);
  padding: 9rem 0 4rem;
}
.our-work-intro .container {
  max-width: 760px;
}
.our-work-intro .eyebrow { color: var(--nc-gold-dark); }
.our-work-intro .gold-line { background: var(--nc-gold-dark); }
.our-work-intro .section-heading {
  font-family: var(--nc-font-display);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: var(--nc-weight-light);
  line-height: 1.1;
  color: var(--nc-text-primary);
  margin-bottom: 1.75rem;
}
.our-work-intro .section-heading em {
  color: var(--nc-gold-dark);
  font-style: italic;
}
.our-work-intro p {
  font-family: var(--nc-font-body);
  font-weight: var(--nc-weight-light);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--nc-text-secondary);
}

/* Featured transformation (slider) */
.featured-transformation {
  background: var(--nc-warm-linen);
  padding: 5rem 0;
}
.featured-transformation .section-header--centered { margin-bottom: 2.5rem; }
.featured-transformation .eyebrow { color: var(--nc-gold-dark); }
.featured-transformation .gold-line { background: var(--nc-gold-dark); }
.featured-transformation .section-heading { color: var(--nc-text-primary); }
.featured-transformation .section-heading em {
  color: var(--nc-gold-dark);
  font-style: italic;
}
.featured-transformation-meta {
  display: block;
  text-align: center;
  margin-top: .75rem;
  font-family: var(--nc-font-body);
  font-size: 11px;
  font-weight: var(--nc-weight-medium);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--nc-stone);
}
.featured-transformation-cta {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

/* Force the project grid section background even if .projects has no
   declared bg in the homepage context. The grid sits inside the dark
   slot of the landing-page alternation pattern. */
.our-work-projects {
  background: var(--nc-deep-slate);
}
.our-work-projects .section-header--centered .section-heading {
  color: var(--nc-text-inverse);
}
.our-work-projects .section-header--centered .eyebrow {
  color: var(--nc-gold-light);
}
.our-work-projects .section-header--centered .gold-line {
  background: var(--nc-gold-light);
}
.our-work-projects .section-header--centered .section-heading em {
  color: var(--nc-gold-light);
  font-style: italic;
}
/* 3-column grid sized for the full 6-card portfolio.
   Greenville (the .large card) spans 2 cols × 2 rows = 4 slots;
   the remaining 5 cards each take 1 slot, filling a perfect 3×3 grid. */
.our-work-projects .projects-grid {
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  margin-top: 2.5rem;
}
.our-work-projects .project-card.large {
  grid-column: span 2;
  grid-row: span 2;
}

/* Browse by service */
.browse-by-service {
  background: var(--nc-off-white);
  padding: 5rem 0;
}
.browse-by-service .eyebrow { color: var(--nc-gold-dark); }
.browse-by-service .gold-line { background: var(--nc-gold-dark); }
.browse-by-service-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}
.service-link-card {
  display: block;
  padding: 1.5rem 1.25rem;
  background: #fff;
  border: 1px solid var(--nc-linen-mid, #E4DDD0);
  border-radius: 4px;
  text-decoration: none;
  color: inherit;
  transition: border-color .25s ease, transform .25s ease;
}
.service-link-card:hover {
  border-color: var(--nc-gold-dark);
  transform: translateY(-2px);
}
.service-link-card-name {
  display: block;
  font-family: var(--nc-font-display, 'Cormorant Garamond', serif);
  font-size: 1.375rem;
  font-weight: var(--nc-weight-light);
  color: var(--nc-text-primary);
  margin-bottom: .5rem;
}
.service-link-card-desc {
  display: block;
  font-family: var(--nc-font-body);
  font-size: .875rem;
  font-weight: var(--nc-weight-light);
  color: var(--nc-text-secondary);
  margin-bottom: .75rem;
}
.service-link-card-arrow {
  display: inline-block;
  font-family: var(--nc-font-body);
  font-size: .8125rem;
  font-weight: var(--nc-weight-medium);
  letter-spacing: .04em;
  color: var(--nc-gold-dark);
}

/* Stats + service area band */
.our-work-stats {
  background: var(--nc-warm-linen);
  padding: 5rem 0;
}
.our-work-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.stat-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.stat-tile-value {
  display: block;
  font-family: var(--nc-font-display, 'Cormorant Garamond', serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: var(--nc-weight-light);
  color: var(--nc-text-primary);
  line-height: 1.1;
  margin-bottom: .5rem;
}
.stat-tile-label {
  display: block;
  font-family: var(--nc-font-body);
  font-size: 11px;
  font-weight: var(--nc-weight-medium);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--nc-stone);
}
.our-work-stats-text p {
  font-family: var(--nc-font-body);
  font-weight: var(--nc-weight-light);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--nc-text-secondary);
  margin-bottom: 1.25rem;
}
.our-work-stats-text a {
  font-family: var(--nc-font-body);
  font-size: .875rem;
  font-weight: var(--nc-weight-medium);
  letter-spacing: .04em;
  color: var(--nc-gold-dark);
  text-decoration: none;
  border-bottom: 1px solid var(--nc-gold-dark);
}
.our-work-stats-text a:hover { color: var(--nc-text-primary); }

/* Final CTA — light background, deliberately separate from charcoal footer */
.our-work-cta {
  background: var(--nc-off-white);
  padding: 6rem 0;
  text-align: center;
}
.our-work-cta .eyebrow { color: var(--nc-gold-dark); }
.our-work-cta .gold-line { background: var(--nc-gold-dark); margin-inline: auto; }
.our-work-cta h2 {
  font-family: var(--nc-font-display, 'Cormorant Garamond', serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: var(--nc-weight-light);
  color: var(--nc-text-primary);
  margin-bottom: 1.25rem;
}
.our-work-cta h2 em { color: var(--nc-gold-dark); font-style: italic; }
.our-work-cta p {
  max-width: 560px;
  margin: 0 auto 2rem;
  font-family: var(--nc-font-body);
  font-weight: var(--nc-weight-light);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--nc-text-secondary);
}

/* ═══════════════════════════════
   RESPONSIVE
═══════════════════════════════ */
@media (max-width: 720px) {
  /* Services: 2x2 grid instead of squished 4-across */
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card { padding: 1.75rem 1.25rem; }

  /* Trust strip: 3-column single row */
  .hero-trust {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .trust-item {
    border-right: .5px solid var(--nc-border-dark);
    border-bottom: none;
    text-align: center;
    padding: 1.35rem .5rem;
  }
  .trust-item:last-child { border-right: none; }
  .trust-num { font-size: 1.9rem; }
  .trust-lbl {
    font-size: 10px;
    text-align: center;
    line-height: 1.4;
  }

  /* Hero: strip back to centered headline only — image/video needs to breathe */
  .hero-content {
    padding-bottom: 11rem;
    text-align: center;
    max-width: 100%;
    padding-inline: clamp(1.5rem, 6vw, 3rem);
  }
  .hero-content .eyebrow { display: none; }
  .hero-sub { display: none; }
  .hero-btns { display: none; }

  /* Nav: 3-col grid puts the logo dead-center with the hamburger flush
     right. The 44px placeholder column on the left mirrors the toggle
     width so column 2 is symmetric and the logo truly centers. */
  nav {
    display: grid;
    grid-template-columns: 44px 1fr 44px;
    align-items: center;
    padding: 1rem clamp(1rem, 4vw, 2rem);
  }
  .nav-logo {
    grid-column: 2;
    justify-self: center;
    align-items: center;
  }
  .nav-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    grid-column: 3;
    justify-self: end;
  }

  /* Dropdown panel — fades in below the nav when menu-open is set */
  .nav-links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    list-style: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(26,26,22,.98);
    backdrop-filter: blur(12px);
    padding: .5rem 0;
    border-top: .5px solid var(--nc-border-dark);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity var(--nc-duration-base) var(--nc-ease),
                transform var(--nc-duration-base) var(--nc-ease),
                visibility 0s linear var(--nc-duration-base);
  }
  nav.menu-open .nav-links {
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: opacity var(--nc-duration-base) var(--nc-ease),
                transform var(--nc-duration-base) var(--nc-ease),
                visibility 0s;
  }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: .9rem clamp(1.5rem, 5vw, 2rem);
    font-size: 13px;
    color: rgba(250,250,247,.85);
    border-bottom: .5px solid var(--nc-border-dark);
  }
  .nav-links li:last-child a { border-bottom: none; }
  /* Force solid nav background while menu is open so the dropdown
     reads as one continuous panel even at top-of-page transparent state */
  nav.menu-open {
    background: rgba(26,26,22,.96);
    backdrop-filter: blur(12px);
  }

  /* Logo: trim slightly on small screens so the nav doesn't feel cramped */
  .nav-logo-img { height: 44px; }
  nav.scrolled .nav-logo-img { height: 36px; }
  .nav-logo-tagline { font-size: 9px; letter-spacing: .22em; }
  nav.scrolled .nav-logo-tagline { font-size: 8px; }
  .footer-brand .nav-logo-img { height: 56px; }
  .footer-brand .nav-logo-tagline { font-size: 10px; }

  /* Projects: single column */
  .projects-grid {
    grid-template-columns: 1fr;
  }
  .project-card.large {
    grid-row: span 1;
    min-height: 280px;
  }
  .project-card {
    min-height: 240px;
  }
  .project-card.large .project-name { font-size: 1.5rem; }

  /* /our-work/ portfolio grid collapses to single column too — match
     the homepage mobile behavior with specificity that beats the
     desktop .our-work-projects override above. */
  .our-work-projects .projects-grid {
    grid-template-columns: 1fr;
  }
  .our-work-projects .project-card.large {
    grid-column: span 1;
    grid-row: span 1;
  }

  /* About: heading → image → body */
  .about-inner {
    grid-template-columns: 1fr;
    row-gap: 2rem;
  }
  .about-copy-head { order: 1; }
  .about-img {
    order: 2;
    grid-row: auto;
    aspect-ratio: 3/2;
  }
  .about-copy-body { order: 3; }

  /* Process: stack vertically */
  .process-steps {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    max-width: 400px;
    margin-inline: auto;
  }
  .process-steps::before {
    display: none;
  }
  .process-step {
    padding: 0;
  }

  /* Reviews: single column */
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .reviews-footer {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
  }

  /* Service Area: heading → map → body */
  .area-inner {
    grid-template-columns: 1fr;
    row-gap: 2rem;
  }
  .area-copy-head { order: 1; }
  .area-map       { order: 2; grid-row: auto; }
  .area-copy-body { order: 3; }

  /* Contact section (homepage CTA layout) */
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .contact-form {
    padding: 2rem 1.25rem;
  }
  .form-row {
    grid-template-columns: 1fr;
  }

  /* Inner page hero */
  .page-hero { padding: 7rem 0 3rem; }
  .page-hero--img { min-height: min(75vh, 560px); padding: 4rem 0 3rem; }
  .page-hero--with-stats { padding-bottom: 12rem; }
  .project-hero-stat { padding: 1rem .5rem; }
  .project-hero-stat-value { font-size: .95rem; }
  .project-hero-stat-label {
    font-size: 9px;
    letter-spacing: .12em;
    margin-bottom: .35rem;
  }

  /* Contact page */
  .contact-hero { padding: 8rem 0 3rem; }
  .contact-trust-strip { display: grid; grid-template-columns: repeat(3, 1fr); }
  .contact-body { padding: 2rem 0 4rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-main { order: -1; }

  /* Mobile sticky CTA bar */
  .mobile-cta-bar {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: calc(var(--nc-z-nav) - 1);
    background: rgba(26,26,22,.96);
    backdrop-filter: blur(12px);
    padding: 1rem clamp(1.25rem, 5vw, 2rem);
    padding-bottom: calc(1rem + env(safe-area-inset-bottom));
    border-top: .5px solid var(--nc-border-dark);
    transform: translateY(100%);
    transition: transform .35s var(--nc-ease);
  }
  .mobile-cta-bar.visible {
    transform: translateY(0);
  }
  .mobile-cta-bar .btn-primary {
    flex: 1;
    text-align: center;
    padding: .8rem 1rem;
  }
  .mobile-cta-secondary {
    font-family: var(--nc-font-body);
    font-size: 11px;
    font-weight: var(--nc-weight-medium);
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(250,250,247,.65);
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--nc-duration-base) var(--nc-ease);
  }
  .mobile-cta-secondary:hover { color: var(--nc-text-inverse); }

  /* Project detail page */
  .project-intro-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .project-stats {
    flex-wrap: wrap;
  }
  .project-stat {
    min-width: 0;
    flex: 1 1 calc(50% - 1px);
    padding: 1.125rem 1.25rem;
  }
  .project-stat:nth-child(2n) { border-right: none; }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
    gap: 4px;
  }
  .lightbox { padding: 4rem 1rem 3rem; }
  .lightbox-prev { left: .5rem; }
  .lightbox-next { right: .5rem; }

  /* Footer: brand full-width centered, columns side by side */
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    text-align: center;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
  .footer-col--contact {
    grid-column: 1 / -1;
  }
  .footer-col--contact ul {
    align-items: center;
  }
  .footer-brand .nav-logo {
    align-items: center;
    margin-inline: auto;
  }
  .footer-brand p {
    margin-inline: auto;
  }
  .footer-col ul {
    align-items: center;
  }
  .footer-social {
    justify-content: center;
  }
  .footer-bottom {
    flex-direction: column;
    gap: .75rem;
    text-align: center;
  }

  /* Before/after slider: expand to full width, larger touch target */
  .ba-slider { max-width: 100%; }
  /* Bigger touch target on the knob only — the handle must keep
     stretching top-to-bottom so the knob stays vertically centered. */
  .ba-slider__handle { width: 52px; margin-left: -26px; }
  .ba-slider__handle-knob { width: 52px; height: 52px; }
  .project-before-after-section { padding: 3.5rem 0; }
  .browse-by-service-grid {
    grid-template-columns: 1fr;
    gap: .75rem;
  }
  .our-work-stats-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .stat-tiles { gap: 1rem; }
  .our-work-intro { padding: 7rem 0 2.5rem; }
  .featured-transformation,
  .browse-by-service,
  .our-work-stats { padding: 3.5rem 0; }
  .our-work-cta { padding: 4.5rem 0; }
}

/* ============================================================
   PAY NOW PAGE
   ============================================================ */

.pay-body {
  background: var(--nc-off-white);
  padding: 5rem 0 7rem;
}

.pay-wrap {
  max-width: 640px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.pay-intro {
  text-align: center;
}

.pay-intro p {
  font-size: 1rem;
  color: var(--nc-text-secondary);
  line-height: 1.7;
  margin-bottom: .75rem;
}

.pay-intro p:last-child { margin-bottom: 0; }

.pay-intro-note {
  font-size: .9375rem;
}

.pay-intro-note a {
  color: var(--nc-text-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.pay-intro-note a:hover {
  color: var(--nc-green);
}

/* Surcharge breakdown */
.pay-breakdown {
  background: var(--nc-warm-linen);
  border: 1px solid var(--nc-linen-mid);
  border-radius: var(--nc-radius-sm);
  padding: 1rem 1.25rem;
  display: none;
  flex-direction: column;
  gap: .5rem;
  margin-top: .25rem;
}

.pay-breakdown--active {
  display: flex;
}

.pay-breakdown-row {
  display: flex;
  justify-content: space-between;
  font-size: .9375rem;
  color: var(--nc-text-secondary);
}

.pay-breakdown-total {
  border-top: 1px solid var(--nc-linen-mid);
  padding-top: .5rem;
  margin-top: .25rem;
  font-weight: var(--nc-weight-medium);
  color: var(--nc-text-primary);
  font-size: 1rem;
}

/* Security note */
.pay-security-note {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  font-size: .8125rem;
  color: var(--nc-stone);
  line-height: 1.5;
  margin-top: .5rem;
}

.pay-security-note svg {
  flex-shrink: 0;
  margin-top: 2px;
}

/* Mobile */
@media (max-width: 640px) {
  .pay-body {
    padding: 3.5rem 0 5rem;
  }
}

/* ============================================================
   THANK YOU PAGE
   ============================================================ */

.thankyou-body {
  background: var(--nc-off-white);
  padding: 5rem 0 8rem;
}

.thankyou-wrap {
  max-width: 580px;
  margin-inline: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.thankyou-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--nc-warm-linen);
  border: 1px solid var(--nc-linen-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--nc-green);
}

.thankyou-lead {
  font-size: 1.125rem;
  color: var(--nc-text-secondary);
  line-height: 1.75;
}

.thankyou-sub {
  font-size: 1rem;
  color: var(--nc-stone);
  line-height: 1.65;
}

.thankyou-contact {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  align-items: center;
}

.thankyou-contact-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .9375rem;
  color: var(--nc-text-primary);
  text-decoration: none;
  transition: color var(--nc-duration-base) var(--nc-ease);
}

.thankyou-contact-item:hover { color: var(--nc-green); }

.thankyou-home {
  margin-top: .5rem;
}

@media (max-width: 640px) {
  .thankyou-body {
    padding: 3.5rem 0 6rem;
  }

  .thankyou-lead {
    font-size: 1rem;
  }
}

/* ═══════════════════════════════
   SERVICES INDEX PAGE
═══════════════════════════════ */

/* Section 2 — positioning intro (off-white) */
.services-intro {
  background: var(--nc-off-white);
  padding: 6rem 0;
}
.services-intro-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
.services-intro-head h2 { margin: 0; }
.services-intro-body p {
  font-family: var(--nc-font-body);
  font-size: 1.0625rem;
  font-weight: var(--nc-weight-light);
  line-height: 1.7;
  color: var(--nc-text-secondary);
  margin: 0 0 1.25rem;
}
.services-intro-body p:last-child { margin-bottom: 0; }

/* Section 3 — service disciplines (deep-slate) */
.services-disciplines {
  background: var(--nc-deep-slate);
  padding: 6rem 0;
  position: relative;
}
.services-disciplines .section-heading { color: var(--nc-text-inverse); }
.services-disciplines .section-heading em { color: var(--nc-gold-light); }
.services-disciplines .eyebrow { color: var(--nc-gold-light); }
.services-disciplines .gold-line { background: var(--nc-gold-light); }

.service-feature {
  display: block;
  background: var(--nc-charcoal);
  text-decoration: none;
  overflow: hidden;
  transition: transform var(--nc-duration-base) var(--nc-ease),
              box-shadow var(--nc-duration-base) var(--nc-ease);
  border-bottom: 2px solid transparent;
}
.service-feature:hover { border-bottom-color: var(--nc-gold-light); }
.service-feature:hover .service-feature-img picture img,
.service-feature:hover .service-feature-img img { transform: scale(1.04); }
.service-feature:hover .service-feature-link { color: var(--nc-gold-light); }

.service-feature-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--nc-deep-slate);
}
.service-feature-img picture,
.service-feature-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform var(--nc-duration-slower) var(--nc-ease);
}

.service-feature-body {
  padding: 2rem 2rem 2.25rem;
  display: flex;
  flex-direction: column;
  gap: .85rem;
}
.service-feature-body .eyebrow { color: var(--nc-gold-light); margin-bottom: -.25rem; }
.service-feature-name {
  font-family: var(--nc-font-display);
  font-size: 1.625rem;
  font-weight: var(--nc-weight-light);
  line-height: 1.2;
  letter-spacing: -.01em;
  color: var(--nc-text-inverse);
  margin: 0;
}
.service-feature-desc {
  font-family: var(--nc-font-body);
  font-size: .9375rem;
  font-weight: var(--nc-weight-light);
  line-height: 1.65;
  color: var(--nc-stone);
  margin: 0;
}
.service-feature-link {
  font-family: var(--nc-font-body);
  font-size: 11px;
  font-weight: var(--nc-weight-medium);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--nc-gold-light);
  margin-top: auto;
  transition: color var(--nc-duration-base) var(--nc-ease);
}

/* Lead service (Hardscaping): full-width, image-left/body-right on desktop */
.service-feature--lead {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  margin-top: 3rem;
  margin-bottom: 1px;
  background: var(--nc-charcoal);
}
.service-feature--lead .service-feature-img {
  aspect-ratio: auto;
  height: 100%;
  min-height: 420px;
}
.service-feature--lead .service-feature-body {
  padding: 3rem 3rem 3rem;
  justify-content: center;
}
.service-feature--lead .service-feature-name {
  font-size: 2.25rem;
  margin-top: .25rem;
}
.service-feature--lead .service-feature-desc {
  font-size: 1rem;
  max-width: 44ch;
}

/* Grid for the four supporting services */
.service-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--nc-charcoal-light);
}

/* Section 4 — proof / featured projects (warm-linen) */
.services-proof {
  background: var(--nc-warm-linen);
  padding: 6rem 0;
}

/* Section 5 — why us (off-white) */
.services-why {
  background: var(--nc-off-white);
  padding: 6rem 0;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  margin-top: 1rem;
}
.why-item {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--nc-linen-mid);
}
.why-num {
  font-family: var(--nc-font-display);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--nc-gold-dark);
  letter-spacing: .02em;
}
.why-title {
  font-family: var(--nc-font-display);
  font-size: 1.375rem;
  font-weight: var(--nc-weight-light);
  line-height: 1.25;
  color: var(--nc-text-primary);
  margin: 0;
}
.why-desc {
  font-family: var(--nc-font-body);
  font-size: .9375rem;
  font-weight: var(--nc-weight-light);
  line-height: 1.65;
  color: var(--nc-text-secondary);
  margin: 0;
}

/* Section 6 — services CTA (warm-linen) */
.services-cta {
  background: var(--nc-warm-linen);
  padding: 6rem 0;
}

/* Responsive */
@media (max-width: 980px) {
  .services-intro-inner { grid-template-columns: 1fr; gap: 2rem; }
  .service-feature--lead { grid-template-columns: 1fr; }
  .service-feature--lead .service-feature-img { min-height: 0; aspect-ratio: 16 / 10; }
  .service-feature--lead .service-feature-body { padding: 2.25rem 2rem 2.5rem; }
  .service-feature--lead .service-feature-name { font-size: 1.875rem; }
  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
}

@media (max-width: 720px) {
  .services-intro,
  .services-disciplines,
  .services-proof,
  .services-why,
  .services-cta { padding: 4rem 0; }
  .service-feature-grid { grid-template-columns: 1fr; }
  .service-feature-body { padding: 1.75rem 1.5rem 2rem; }
  .service-feature--lead .service-feature-body { padding: 2rem 1.5rem 2.25rem; }
  .why-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .why-item { text-align: center; align-items: center; }

  /* Services hero — square contained video on mobile */
  .hero--video {
    height: auto;
    min-height: 0;
    justify-content: flex-start;
    padding: 6.5rem 0 3.5rem;
    overflow: visible;
  }
  .hero--video .hero-media {
    position: relative;
    inset: auto;
    width: min(80vw, 420px);
    margin: 0 auto 2rem;
    aspect-ratio: 1 / 1;
    overflow: hidden;
  }
  .hero--video .hero-overlay { display: none; }
  .hero--video .hero-content {
    padding: 0 clamp(1.5rem, 5vw, 4rem);
    max-width: 100%;
  }
}

