/* ============================================================
   Door3D — Rebuilt Stylesheet
   Warm editorial / luxury card aesthetic
   ============================================================ */

/* --- Font Faces --- */
@font-face {
  font-family: 'Montserrat';
  src: url('../assets/fonts/Montserrat-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-display: swap;
}

@font-face {
  font-family: 'Titillium Web';
  src: url('../assets/fonts/TitilliumWeb-Regular.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'Titillium Web';
  src: url('../assets/fonts/TitilliumWeb-Light.ttf') format('truetype');
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: 'Titillium Web';
  src: url('../assets/fonts/TitilliumWeb-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: 'Wondra';
  src: url('../assets/fonts/Wondra.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
}

/* --- CSS Variables --- */
:root {
  --bg: #f6f3ea;
  --surface: #fffdf8;
  --surface-strong: #10210d;
  --text: #142014;
  --muted: #5c6759;
  --line: rgba(16, 33, 13, 0.12);
  --gold: #c48d26;
  --gold-soft: rgba(196, 141, 38, 0.14);
  --green: #296216;
  --green-deep: #17350e;
  --white-on-dark: #f5f1e8;

  --radius-xl: 38px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 10px;

  --shadow-lg: 0 28px 70px rgba(5, 14, 6, 0.14);
  --shadow-md: 0 18px 45px rgba(5, 14, 6, 0.1);
  --shadow-sm: 0 6px 20px rgba(5, 14, 6, 0.06);

  --max: 1160px;
  --ease: 220ms ease;
  --ease-spring: 400ms cubic-bezier(0.34, 1.56, 0.64, 1);

  --font-heading: 'Montserrat', 'Franklin Gothic Medium', sans-serif;
  --font-body: 'Titillium Web', 'Trebuchet MS', sans-serif;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(196, 141, 38, 0.08), transparent 24%),
    linear-gradient(180deg, #f9f7f1 0%, #f4f0e6 100%);
  overflow-x: hidden;
}

img { display: block; width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; border: none; background: none; cursor: pointer; }
ul, ol { list-style: none; margin: 0; padding: 0; }

/* --- Shell (container) --- */
.shell {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

/* --- Section Label --- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-label::before,
.section-label::after {
  content: "";
  width: 32px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}

/* --- Pill Badge --- */
.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: #f3efe4;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-height: 52px;
  padding: 0 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease), color var(--ease), border-color var(--ease);
  cursor: pointer;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn--gold {
  background: linear-gradient(135deg, #d49b31 0%, #b57e1f 100%);
  color: #120d04;
  box-shadow: 0 18px 38px rgba(196, 141, 38, 0.24);
}

.btn--gold:hover {
  box-shadow: 0 22px 44px rgba(196, 141, 38, 0.32);
}

.btn--ghost {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white-on-dark);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
}

.btn--surface {
  border-color: var(--line);
  background: var(--surface);
  color: var(--green-deep);
  box-shadow: var(--shadow-md);
}

.btn--surface:hover {
  box-shadow: var(--shadow-lg);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 14px 0;
  transition: padding var(--ease), box-shadow 160ms ease;
}

.nav.scrolled {
  padding: 8px 0;
  background: rgba(255, 253, 248, 0.98);
  backdrop-filter: blur(18px) saturate(160%);
  box-shadow: 0 10px 32px rgba(5, 14, 6, 0.08);
}

body.nav-open {
  overflow: hidden;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1.5rem;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(135deg, rgba(11, 22, 9, 0.34), rgba(11, 22, 9, 0.14));
  backdrop-filter: blur(18px) saturate(150%);
  box-shadow: 0 18px 38px rgba(5, 14, 6, 0.18);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.nav.scrolled .nav__inner {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  flex-shrink: 0;
  align-self: center;
  position: relative;
  top: 0;
  transition: opacity var(--ease);
}

.nav__brand:hover { opacity: 0.85; }

.nav__brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 37px;
  flex-shrink: 0;
  overflow: visible;
  position: relative;
  top: 4px;
  filter: drop-shadow(0 3px 8px rgba(5, 14, 6, 0.12));
}

.nav__brand-mark img {
  width: 80px;
  height: auto;
  display: block;
  max-width: none;
  object-fit: contain;
  object-position: left center;
  backface-visibility: hidden;
  transform: translate(-8px, -5px) translateZ(0);
}

.nav__brand-icon {
  width: 44px;
  height: 44px;
  padding: 6px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  display: grid;
  place-items: center;
}

.nav__brand-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav.scrolled .nav__brand-icon {
  background: rgba(41, 98, 22, 0.08);
  border-color: rgba(41, 98, 22, 0.12);
}

.nav__wordmark {
  width: 168px;
  height: auto;
  display: block;
  position: relative;
  top: 5px;
  left: 0;
  filter: drop-shadow(0 10px 22px rgba(5, 14, 6, 0.34));
  transition: filter var(--ease), transform var(--ease);
}

.nav.scrolled .nav__wordmark {
  filter: none;
}

.nav__brand:hover .nav__wordmark {
  transform: translateY(-1px);
}

.nav__links {
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  justify-content: center;
  gap: clamp(1.35rem, 1.8vw, 1.9rem);
  min-width: 0;
  margin-left: 0.75rem;
  margin-right: 1rem;
}

.nav__link {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.1rem;
  color: rgba(245, 241, 232, 0.88);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.5rem 0;
  position: relative;
  transition: color var(--ease);
}

.nav.scrolled .nav__link {
  color: var(--green-deep);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--ease);
}

.nav__link:hover::after,
.nav__link.is-active::after {
  width: 100%;
}

.nav__link:hover { color: #fff; }
.nav.scrolled .nav__link:hover { color: var(--green); }

/* Dropdown */
.nav__dropdown { position: relative; }

.nav__dropdown--split {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.nav__dropdown--split .nav__link {
  padding-right: 0;
}

.nav__dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.82rem;
  color: rgba(245, 241, 232, 0.88);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.5rem 0;
  transition: color var(--ease);
}

.nav.scrolled .nav__dropdown-toggle {
  color: var(--green-deep);
}

.nav__dropdown--split .nav__dropdown-toggle {
  padding-left: 0.1rem;
  padding-right: 0;
}

.nav__dropdown-toggle:hover { color: #fff; }
.nav.scrolled .nav__dropdown-toggle:hover { color: var(--green); }

.nav__chevron {
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform var(--ease);
}

.nav__dropdown:hover .nav__chevron,
.nav__dropdown.open .nav__chevron {
  transform: rotate(-135deg) translateY(-2px);
}

.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 238px;
  background: rgba(255, 253, 248, 0.97);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 0.75rem 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--ease), visibility var(--ease), transform var(--ease);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(12px);
}

.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown.open .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav__dropdown-item {
  display: block;
  padding: 0.6rem 1.5rem;
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--text);
  letter-spacing: 0.02em;
  transition: background var(--ease), color var(--ease);
}

.nav__dropdown-item:hover {
  background: var(--gold-soft);
  color: var(--green-deep);
}

.nav__dropdown-menu a {
  display: block;
  padding: 12px 20px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--green-deep);
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: background var(--ease), color var(--ease);
}

.nav__dropdown-menu a:hover {
  background: var(--gold-soft);
  color: var(--gold);
}

/* Nav CTA */
.nav__cta {
  --glow-color: #c48d26;
  --glow-spread-color: rgba(196, 141, 38, 0.34);
  --enhanced-glow-color: rgba(255, 241, 214, 0.96);
  --btn-color: #296216;
  --btn-shadow-color: rgba(23, 53, 14, 0.48);
  min-height: 46px;
  padding: 0 30px;
  justify-content: center;
  margin-left: auto;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  position: relative;
  overflow: visible;
  isolation: isolate;
  white-space: nowrap;
  border: 0.18em solid var(--glow-color);
  border-radius: 999px;
  color: var(--enhanced-glow-color);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 44%),
    linear-gradient(135deg, #2f6f1a 0%, #296216 44%, #17350e 100%);
  outline: none;
  box-shadow:
    0 0 0.9em 0.14em rgba(196, 141, 38, 0.56),
    0 0 2.4em 0.48em var(--glow-spread-color),
    0 14px 30px var(--btn-shadow-color),
    inset 0 0 0.72em 0.12em rgba(196, 141, 38, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
  text-shadow:
    0 0 0.12em rgba(255, 241, 214, 0.92),
    0 0 0.55em rgba(196, 141, 38, 0.72),
    0 1px 0 rgba(12, 30, 8, 0.82);
  transform-origin: center;
  will-change: transform, box-shadow, background, color;
  transition:
    color 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.nav__cta::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0) 52%),
    linear-gradient(110deg, transparent 26%, rgba(255, 236, 198, 0.24) 48%, transparent 68%);
  background-size: 100% 100%, 220% 100%;
  background-position: center, 132% 50%;
  opacity: 0.78;
  pointer-events: none;
  transition: background-position 0.42s ease, opacity 0.3s ease;
  z-index: -2;
}

.nav__cta::after {
  content: "";
  position: absolute;
  top: 112%;
  left: 8%;
  width: 84%;
  height: 100%;
  border-radius: inherit;
  background-color: var(--glow-spread-color);
  filter: blur(1.35em);
  opacity: 0.42;
  transform: perspective(2.4em) rotateX(38deg) scale(1, 0.42);
  transition: opacity 0.3s ease, transform 0.3s ease, filter 0.3s ease;
  pointer-events: none;
  z-index: -3;
}

.nav__cta:hover {
  color: #10210d;
  border-color: var(--enhanced-glow-color);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0) 42%),
    linear-gradient(135deg, #d5a141 0%, #c48d26 46%, #a87420 100%);
  transform: translateY(-2px);
  box-shadow:
    0 0 1em 0.2em rgba(196, 141, 38, 0.82),
    0 0 3.2em 1em rgba(196, 141, 38, 0.4),
    0 14px 26px rgba(23, 53, 14, 0.28),
    inset 0 0 0.78em 0.16em rgba(255, 247, 226, 0.74),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  text-shadow:
    0 1px 0 rgba(255, 247, 226, 0.44),
    0 0 0.16em rgba(255, 247, 226, 0.16);
}

.nav__cta:hover::before {
  background-position: center, -18% 50%;
  opacity: 0.7;
}

.nav__cta:focus-visible {
  outline: 2px solid rgba(255, 239, 205, 0.72);
  outline-offset: 4px;
  transform: translateY(-2px);
}

.nav__cta:active {
  box-shadow:
    0 0 0.6em 0.18em rgba(196, 141, 38, 0.78),
    0 0 2em 0.78em rgba(196, 141, 38, 0.34),
    inset 0 0 0.5em 0.16em rgba(255, 247, 226, 0.68);
}

.nav__cta:hover::after {
  opacity: 0.58;
  filter: blur(1.5em);
  transform: perspective(2.4em) rotateX(38deg) scale(1.02, 0.46);
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  margin-left: auto;
  z-index: 101;
}

.nav__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white-on-dark);
  border-radius: 2px;
  transition: transform var(--ease), opacity var(--ease);
}

.nav.scrolled .nav__hamburger span {
  background: var(--green-deep);
}

.nav__hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile overlay */
.nav__mobile {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  min-height: 100vh;
  background: rgba(11, 22, 9, 0.96);
  backdrop-filter: blur(16px);
  display: none;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 0.55rem;
  padding: calc(96px + env(safe-area-inset-top, 0px)) 24px calc(32px + env(safe-area-inset-bottom, 0px));
  overflow-y: auto;
  overscroll-behavior: contain;
  z-index: 99;
}

.nav__mobile.open {
  display: flex;
}

.nav__mobile .nav__link,
.nav__mobile .nav__dropdown-toggle {
  display: flex;
  width: min(100%, 420px);
  min-height: 44px;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  color: var(--white-on-dark);
  font-size: 1.04rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  line-height: 1.15;
  text-align: center;
  padding: 0.2rem 0;
}

.nav__mobile .nav__dropdown-item {
  color: rgba(245, 241, 232, 0.7);
  text-align: center;
}

.nav__mobile-section-toggle {
  display: inline-flex;
  width: min(100%, 420px);
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  margin: 0.2rem auto 0;
  padding: 0.25rem 0;
  border: 0;
  background: transparent;
  color: var(--white-on-dark);
  font: inherit;
  font-size: 1.14rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  line-height: 1.12;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
}

.nav__mobile-section-icon {
  width: 0.52rem;
  height: 0.52rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform var(--ease);
}

.nav__mobile-section-toggle[aria-expanded="true"] .nav__mobile-section-icon {
  transform: rotate(225deg) translate(-2px, -1px);
}

.nav__mobile-submenu {
  display: grid;
  gap: 0.18rem;
  width: min(100%, 420px);
  margin: -0.1rem auto 0.35rem;
  padding: 0.1rem 0 0.35rem;
}

.nav__mobile-submenu[hidden] {
  display: none;
}

.nav__mobile-submenu .nav__link {
  min-height: 36px;
  color: rgba(245, 241, 232, 0.78);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.11em;
}

.nav__mobile-submenu .nav__link:hover,
.nav__mobile-submenu .nav__link:focus-visible {
  color: var(--white-on-dark);
}

.nav__mobile-overview-link {
  color: rgba(245, 241, 232, 0.92) !important;
}

.nav__mobile-label {
  display: block;
  width: min(100%, 420px);
  margin: 0.45rem auto 0.05rem;
  padding: 0.4rem 0 0.05rem;
  font-size: 1.14rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  color: var(--white-on-dark);
  opacity: 1;
}

.nav__link--indent {
  padding-left: 0 !important;
  font-size: 1rem;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 600px;
  padding: 140px 0 60px;
  border-bottom-right-radius: 96px;
  background:
    linear-gradient(180deg, rgba(7, 17, 8, 0.18) 0%, rgba(7, 17, 8, 0.75) 100%),
    url("https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?auto=format&fit=crop&w=1920&q=80") center/cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 17, 7, 0.82) 0%, rgba(8, 17, 7, 0.32) 56%, rgba(8, 17, 7, 0.18) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(100%, 640px);
  padding-top: 64px;
  color: var(--white-on-dark);
}

.hero__eyebrow { margin-bottom: 20px; }

.hero h1 {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2.8rem, 6.5vw, 5.4rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
}

.hero h1 span {
  display: block;
  margin-top: 0.15em;
  color: #C48D26;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.03em;
  text-shadow: 0 8px 20px rgba(95, 60, 10, 0.2);
}

.hero__copy {
  width: min(100%, 52ch);
  margin: 22px 0 0;
  color: rgba(245, 241, 232, 0.82);
  font-size: 1.04rem;
  line-height: 1.7;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: min(100%, 640px);
  margin-top: 36px;
}

.hero__metric {
  padding: 18px 20px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
}

.hero__metric strong {
  display: block;
  color: #fff7e9;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -0.04em;
}

.hero__metric span {
  display: block;
  margin-top: 6px;
  color: rgba(245, 241, 232, 0.78);
  font-size: 0.78rem;
  line-height: 1.45;
  letter-spacing: 0.06em;
}

/* ============================================================
   MAIN
   ============================================================ */
.main {
  padding: 52px 0 64px;
}

/* ============================================================
   SERVICES GRID
   ============================================================ */
.services-grid {
  margin-bottom: 44px;
}

.services-grid__header {
  max-width: 620px;
  margin-bottom: 36px;
}

.services-grid__header h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: var(--green-deep);
}

.services-grid__header p {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.72;
}

.services-grid__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  display: flex;
  flex-direction: column;
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 248, 0.88);
  border: 1px solid rgba(16, 33, 13, 0.08);
  box-shadow: var(--shadow-sm);
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(196, 141, 38, 0.2);
}

.service-card__icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--gold-soft);
  color: var(--gold);
  margin-bottom: 18px;
  box-shadow: inset 0 0 0 1px rgba(196, 141, 38, 0.14);
}

.service-card h3 {
  margin: 0 0 10px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  color: var(--green-deep);
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.62;
  flex: 1;
}

.service-card__tag {
  display: inline-flex;
  align-items: center;
  margin-top: 16px;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(41, 98, 22, 0.06);
  border: 1px solid rgba(41, 98, 22, 0.1);
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  width: fit-content;
}

.service-card--future {
  opacity: 0.7;
  border-style: dashed;
}

.service-card--future .service-card__tag {
  background: var(--gold-soft);
  border-color: rgba(196, 141, 38, 0.2);
  color: var(--gold);
}

/* ============================================================
   SPLIT — Editorial Two-Column
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.85fr);
  gap: 34px;
  align-items: center;
  margin-bottom: 44px;
  border-radius: var(--radius-xl);
  background: rgba(255, 253, 248, 0.88);
  border: 1px solid rgba(16, 33, 13, 0.08);
  box-shadow: var(--shadow-lg);
}

.split__text {
  padding: 38px 34px;
}

.split__text h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: var(--green-deep);
}

.split__text > p {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.72;
}

.split__list {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.split__list li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  align-items: start;
}

.split__badge {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: var(--gold-soft);
  color: var(--gold);
  font-weight: 700;
  font-size: 0.88rem;
  box-shadow: inset 0 0 0 1px rgba(196, 141, 38, 0.14);
}

.split__list strong {
  display: block;
  margin-bottom: 3px;
  font-size: 1rem;
  color: var(--green-deep);
}

.split__list span {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.62;
}

.split__visual {
  position: relative;
  overflow: hidden;
  border-radius: 0 var(--radius-xl) var(--radius-xl) 0;
  min-height: 100%;
}

.split__visual img {
  aspect-ratio: 0.92;
  object-fit: cover;
  height: 100%;
}

.split__floating {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: min(100% - 40px, 260px);
  padding: 20px;
  border-radius: 24px;
  background: rgba(11, 22, 9, 0.9);
  color: var(--white-on-dark);
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.22);
}

.split__floating strong {
  display: block;
  color: #f7d184;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.split__floating span {
  display: block;
  margin-top: 8px;
  font-size: 0.92rem;
  line-height: 1.52;
  color: rgba(243, 239, 228, 0.82);
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery {
  padding: 38px;
  margin-bottom: 44px;
  border-radius: var(--radius-xl);
  background: rgba(255, 253, 248, 0.88);
  border: 1px solid rgba(16, 33, 13, 0.08);
  box-shadow: var(--shadow-lg);
}

.gallery__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  margin-bottom: 28px;
}

.gallery__header h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: var(--green-deep);
}

.gallery__header p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.72;
  max-width: 52ch;
}

.gallery__filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.gallery__filter {
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  color: var(--green-deep);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--ease), color var(--ease), transform var(--ease), border-color var(--ease);
}

.gallery__filter.is-active,
.gallery__filter:hover,
.gallery__filter:focus-visible {
  background: var(--green-deep);
  color: #f4f1e7;
  border-color: var(--green-deep);
  transform: translateY(-1px);
}

.gallery__stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 28px;
}

.gallery__stat {
  padding: 18px 18px 16px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(245, 240, 229, 0.9) 100%);
  border: 1px solid rgba(16, 33, 13, 0.08);
}

.gallery__stat strong {
  display: block;
  color: var(--gold);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.55rem;
  letter-spacing: -0.04em;
}

.gallery__stat span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.45;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Masonry */
.masonry {
  column-count: 4;
  column-gap: 16px;
}

.masonry__item {
  break-inside: avoid;
  margin-bottom: 16px;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 20px;
  background: transparent;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: transform var(--ease), box-shadow var(--ease);
}

.gallery-card:hover,
.gallery-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 24px 56px rgba(5, 14, 6, 0.18);
}

.gallery-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.gallery-card__meta {
  position: absolute;
  inset: auto 14px 14px 14px;
  padding: 12px 14px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(12, 23, 9, 0.2) 0%, rgba(12, 23, 9, 0.88) 100%);
  color: #f6f2e7;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--ease), transform var(--ease);
}

.gallery-card:hover .gallery-card__meta,
.gallery-card:focus-visible .gallery-card__meta {
  opacity: 1;
  transform: translateY(0);
}

.gallery-card__meta strong {
  display: block;
  font-size: 0.86rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gallery-card__meta span {
  display: block;
  margin-top: 4px;
  color: rgba(246, 242, 231, 0.72);
  font-size: 0.8rem;
  line-height: 1.4;
}

[data-filter][hidden] {
  display: none !important;
}

/* ============================================================
   INDUSTRY TILES
   ============================================================ */
.industries {
  margin-bottom: 44px;
}

.industries__header {
  max-width: 620px;
  margin-bottom: 28px;
}

.industries__header h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: var(--green-deep);
}

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

.industry-tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-lg);
}

.industry-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.industry-tile:hover img {
  transform: scale(1.06);
}

.industry-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 22, 9, 0.08) 0%, rgba(11, 22, 9, 0.78) 100%);
}

.industry-tile__content {
  position: absolute;
  inset: auto 24px 28px 24px;
  z-index: 1;
  color: var(--white-on-dark);
}

.industry-tile__content h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
}

.industry-tile__content p {
  margin: 8px 0 0;
  color: rgba(245, 241, 232, 0.78);
  font-size: 0.92rem;
  line-height: 1.5;
}

.industry-tile__link {
  display: inline-block;
  margin-top: 14px;
  color: #f7d184;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform var(--ease);
}

.industry-tile:hover .industry-tile__link {
  transform: translateX(6px);
}

/* ============================================================
   STATS BAND
   ============================================================ */
.stats-band {
  margin-bottom: 44px;
  padding: 38px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(196, 141, 38, 0.16), transparent 32%),
    linear-gradient(180deg, #10210d 0%, #091307 100%);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.stats-band__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.stats-band__item {
  text-align: center;
  padding: 20px 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.stats-band__item strong {
  display: block;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.04em;
  color: #f7d184;
}

.stats-band__item span {
  display: block;
  margin-top: 8px;
  color: rgba(245, 241, 232, 0.72);
  font-size: 0.84rem;
  line-height: 1.52;
}

/* ============================================================
   PROCESS — How It Works
   ============================================================ */
.process {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
  gap: 34px;
  align-items: start;
  margin-bottom: 44px;
  padding: 38px;
  border-radius: var(--radius-xl);
  background: rgba(255, 253, 248, 0.88);
  border: 1px solid rgba(16, 33, 13, 0.08);
  box-shadow: var(--shadow-lg);
}

.process__header h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: var(--green-deep);
}

.process__header p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.72;
}

.process__steps {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.process__step {
  padding: 22px 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(16, 33, 13, 0.08);
}

.process__step strong {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--green-deep);
  font-size: 1rem;
  font-weight: 700;
}

.process__step strong::before {
  content: attr(data-step);
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: var(--gold-soft);
  color: var(--gold);
  font-size: 0.84rem;
  font-weight: 700;
  flex-shrink: 0;
}

.process__step p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.95rem;
}

.process__aside {
  padding: 30px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(196, 141, 38, 0.16), transparent 32%),
    linear-gradient(180deg, #10210d 0%, #091307 100%);
  color: var(--white-on-dark);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.process__aside h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.8rem;
  letter-spacing: -0.04em;
}

.process__aside p {
  margin: 14px 0 0;
  color: rgba(245, 241, 232, 0.78);
  line-height: 1.7;
}

.process__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.process__chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #f7d184;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  margin-bottom: 28px;
  padding: clamp(26px, 3vw, 34px);
  border-radius: var(--radius-xl);
  background: rgba(255, 253, 248, 0.88);
  border: 1px solid rgba(16, 33, 13, 0.08);
  box-shadow: var(--shadow-lg);
}

.faq__header {
  margin-bottom: 22px;
}

.faq__header h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: var(--green-deep);
}

.faq__list {
  display: grid;
  gap: 0;
}

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

.faq-item:last-child {
  border-bottom: none;
}

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 16px 0;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--green-deep);
  transition: color var(--ease);
}

.faq-item__question:hover {
  color: var(--green);
}

.faq-item__chevron {
  width: 12px;
  height: 12px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform var(--ease);
  flex-shrink: 0;
}

.faq-item.open .faq-item__chevron {
  transform: rotate(-135deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item.open .faq-item__answer {
  max-height: 300px;
}

.faq-item__answer p {
  padding: 0 0 20px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.96rem;
}

/* ============================================================
   CTA STRIP
   ============================================================ */
.cta-strip {
  position: relative;
  overflow: hidden;
  margin-bottom: 44px;
  padding: 38px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top left, rgba(196, 141, 38, 0.22), transparent 24%),
    linear-gradient(135deg, #143110 0%, #0b1608 65%, #080f06 100%);
  color: var(--white-on-dark);
  box-shadow: var(--shadow-lg);
}

.cta-strip__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.cta-strip h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.cta-strip p {
  max-width: 54ch;
  margin: 14px 0 0;
  color: rgba(245, 241, 232, 0.8);
  line-height: 1.7;
}

/* ============================================================
   CONTACT BAND
   ============================================================ */
.contact-band {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.72fr);
  gap: 34px;
  align-items: center;
  margin-bottom: 44px;
  padding: 38px;
  border-radius: var(--radius-xl);
  background: rgba(255, 253, 248, 0.88);
  border: 1px solid rgba(16, 33, 13, 0.08);
  box-shadow: var(--shadow-lg);
}

.contact-band h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: var(--green-deep);
}

.contact-band > div > p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.72;
}

.contact-band__panel {
  padding: 28px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(248, 243, 233, 0.96) 100%);
  border: 1px solid rgba(16, 33, 13, 0.08);
}

.contact-band__list {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.contact-band__item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--green-deep);
  font-size: 0.96rem;
}

.contact-band__dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #d4a243, #b37c1d);
  box-shadow: 0 0 0 6px rgba(196, 141, 38, 0.12);
  flex: 0 0 auto;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  margin-top: 0;
  padding: 48px 0 0;
  background: #121814;
  color: rgba(245, 241, 232, 0.82);
}

.footer__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(3, minmax(0, 0.6fr));
  gap: 32px;
  align-items: start;
}

.footer__brand {
  max-width: 38ch;
}

.footer__brand img {
  width: 140px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1) sepia(0.15) saturate(0.5);
}

.footer__brand p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(245, 241, 232, 0.62);
}

.footer__col strong {
  display: block;
  margin-bottom: 14px;
  color: #c48d26;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer__col a {
  display: block;
  margin-bottom: 10px;
  color: rgba(245, 241, 232, 0.68);
  font-size: 0.92rem;
  line-height: 1.5;
  transition: color var(--ease);
}

.footer__col a:hover {
  color: var(--white-on-dark);
}

.footer__bar {
  margin-top: 40px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.82rem;
  color: rgba(245, 241, 232, 0.42);
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(7, 12, 7, 0.92);
  z-index: 200;
}

.lightbox.is-open {
  display: grid;
}

.lightbox__dialog {
  position: relative;
  width: min(100%, 1120px);
  max-height: min(88vh, 920px);
  padding: 18px;
  border-radius: 30px;
  background: #0d170b;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.lightbox__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white-on-dark);
  font-size: 1.5rem;
  line-height: 1;
}

.lightbox__frame img {
  max-height: min(74vh, 780px);
  width: 100%;
  object-fit: contain;
  border-radius: 22px;
}

.lightbox__caption {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 14px;
  color: rgba(245, 241, 232, 0.8);
  font-size: 0.94rem;
  line-height: 1.6;
}

.lightbox__caption strong {
  color: var(--white-on-dark);
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition:
    opacity 620ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.reveal.visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  will-change: auto;
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal.visible {
    opacity: 1;
    transform: none;
    transition: none;
    will-change: auto;
  }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1060px) {
  .services-grid__cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .split,
  .process,
  .contact-band,
  .cta-strip__inner,
  .gallery__header {
    grid-template-columns: 1fr;
  }

  .split__visual {
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
    max-height: 400px;
  }

  .split__visual img {
    aspect-ratio: 16/9;
  }

  .gallery__filters {
    justify-content: flex-start;
  }

  .masonry {
    column-count: 3;
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}

@media (max-width: 1180px) {
  .nav__links,
  .nav__cta {
    display: none;
  }

  .nav__mobile .nav__cta {
    display: inline-flex;
    min-width: 214px;
    margin-top: 1rem !important;
    justify-content: center;
  }

  .nav__hamburger {
    display: flex;
  }
}

@media (max-width: 820px) {
  .nav__links,
  .nav__cta {
    display: none;
  }

  .nav__mobile .nav__cta {
    display: inline-flex;
    min-width: 214px;
    margin-top: 1rem !important;
    justify-content: center;
  }

  .nav__hamburger {
    display: flex;
  }

  .hero {
    min-height: 500px;
    padding-top: 110px;
    border-bottom-right-radius: 64px;
  }

  .industries__grid {
    grid-template-columns: 1fr;
  }

  .industry-tile {
    aspect-ratio: 16/9;
  }

  .stats-band__inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery__stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .masonry {
    column-count: 2;
  }
}

@media (max-width: 600px) {
  .shell {
    width: min(calc(100% - 20px), var(--max));
  }

  .hero {
    min-height: 440px;
    padding-top: 100px;
    border-bottom-right-radius: 44px;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 8vw, 3.2rem);
  }

  .hero__metrics {
    grid-template-columns: 1fr;
  }

  .services-grid__cards {
    grid-template-columns: 1fr;
  }

  .stats-band__inner {
    grid-template-columns: 1fr;
  }

  .gallery,
  .process,
  .cta-strip,
  .contact-band,
  .faq,
  .stats-band {
    padding: 24px;
  }

  .split__text {
    padding: 24px;
  }

  .gallery__stats {
    grid-template-columns: 1fr;
  }

  .masonry {
    column-count: 1;
  }

  .footer__inner {
    grid-template-columns: 1fr;
  }

  .footer__bar-inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-strip__inner {
    text-align: center;
  }

  .cta-strip__inner .btn {
    justify-self: center;
  }
}
