/* =====================================================================
   GAC EXCAVATION — STYLES
   Brand: green primary (#02c378) + earthy secondary, editorial layout
   ===================================================================== */

/* ---------- Tokens ---------- */
:root {
  --primary: #02c378;
  --primary-rgb: 2, 195, 120;
  --primary-dark: #017246;
  --primary-dark-rgb: 1, 114, 70;
  --primary-light: #38fdb1;
  --primary-light-rgb: 56, 253, 177;

  --secondary: #222222;
  --secondary-rgb: 34, 34, 34;
  --secondary-dark: #000000;
  --secondary-dark-rgb: 0, 0, 0;
  --secondary-light: #5a5a5a;
  --secondary-light-rgb: 90, 90, 90;

  --accent: #68a30d;
  --accent-rgb: 104, 163, 13;
  --accent-dark: #385707;
  --accent-dark-rgb: 56, 87, 7;

  --text: #111827;
  --text-rgb: 17, 24, 39;
  --text-light: #d7e1f1;
  --text-light-rgb: 215, 225, 241;
  --text-muted: #d9e0ee;
  --text-muted-rgb: 217, 224, 238;

  --background: #ffffff;
  --background-rgb: 255, 255, 255;
  --bg: #ffffff;
  --bg-rgb: 255, 255, 255;
  --bg-alt: #f8fafc;
  --bg-alt-rgb: 248, 250, 252;
  --bg-dark: #111827;
  --bg-dark-rgb: 17, 24, 39;

  --surface: #ffffff;
  --surface-rgb: 255, 255, 255;
  --surface-dark: #f3f4f6;
  --surface-dark-rgb: 243, 244, 246;

  --border: #909296;
  --border-rgb: 144, 146, 150;
  --border-light: #f3f4f6;
  --border-light-rgb: 243, 244, 246;

  --accent-on-light: #68a30d;
  --accent-on-light-rgb: 104, 163, 13;

  --primary-ink: #111827;
  --primary-ink-rgb: 17, 24, 39;
  --secondary-ink: #ffffff;
  --secondary-ink-rgb: 255, 255, 255;
  --accent-ink: #111827;
  --accent-ink-rgb: 17, 24, 39;
  --bg-alt-ink: #111827;
  --bg-alt-ink-rgb: 17, 24, 39;

  /* Utility tokens */
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 18px;
  --radius-xl: 28px;
  --shadow-sm: 0 1px 3px rgba(var(--secondary-rgb), 0.08);
  --shadow: 0 6px 20px rgba(var(--secondary-rgb), 0.10);
  --shadow-lg: 0 18px 40px rgba(var(--secondary-rgb), 0.14);
  --shadow-primary: 0 8px 24px rgba(var(--primary-rgb), 0.28);
  --transition: 180ms ease;
  --transition-slow: 300ms cubic-bezier(.4, 0, .2, 1);

  --font-sans: "Helvetica Neue", Verdana, Helvetica, Arial, sans-serif;
  --font-display: "Helvetica Neue", Verdana, Helvetica, Arial, sans-serif;

  --container-max: 1240px;
  --gutter: clamp(1rem, 3vw, 2rem);

  --header-bg: #ffffff;
}

/* ---------- Reset / base ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; height: auto; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 0.5em;
  color: var(--text);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.75rem, 3.2vw, 2.4rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1rem; text-transform: uppercase; letter-spacing: 0.08em; }

p { margin: 0 0 1em; }

a { color: var(--primary-dark); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary); }
a:focus-visible { outline: 3px solid var(--primary); outline-offset: 2px; border-radius: 3px; }

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.skip-link {
  position: absolute; top: -100px; left: 8px; z-index: 999;
  background: var(--text); color: #fff; padding: 10px 16px; border-radius: 6px;
}
.skip-link:focus { top: 8px; }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary-dark);
  margin-bottom: 0.9rem;
  padding: 6px 12px;
  background: rgba(var(--primary-rgb), 0.10);
  border-radius: 999px;
}
.eyebrow--light {
  color: var(--primary-light);
  background: rgba(var(--primary-rgb), 0.18);
}

.text-accent { color: var(--primary); }

.badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(var(--primary-rgb), 0.15);
  color: var(--primary-dark);
  margin-bottom: 0.6rem;
}
.badge--accent {
  background: var(--primary-dark);
  color: #ffffff;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1;
  letter-spacing: 0.01em;
  padding: 14px 22px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
  transition: transform var(--transition), background var(--transition), color var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn .ico { width: 18px; height: 18px; }

.btn--primary {
  background: var(--primary-dark);
  color: #ffffff;
  box-shadow: var(--shadow-primary);
}
.btn--primary:hover { background: var(--primary); color: var(--primary-ink); }

.btn--ghost {
  background: #ffffff;
  color: var(--text);
  border-color: #ffffff;
}
.btn--ghost:hover { background: var(--primary); color: var(--primary-ink); border-color: var(--primary); }

.btn--dark {
  background: var(--bg-dark);
  color: #ffffff;
}
.btn--dark:hover { background: #000000; color: #ffffff; }

.btn--outline-light {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
}
.btn--outline-light:hover { background: #ffffff; color: var(--text); }

.btn--outline-dark {
  background: transparent;
  color: var(--text);
  border-color: var(--text);
}
.btn--outline-dark:hover { background: var(--text); color: #ffffff; }

.btn--link {
  background: transparent;
  padding: 0.5rem 0;
  color: var(--primary-dark);
  border: 0;
}
.btn--link:hover { color: var(--primary); }

.btn--sm { padding: 10px 16px; font-size: 0.85rem; }
.btn--lg { padding: 17px 26px; font-size: 1rem; }
.btn--block { display: flex; width: 100%; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  color: var(--primary-dark);
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: border-color var(--transition), color var(--transition), gap var(--transition);
}
.link-arrow:hover {
  color: var(--primary-dark);
  border-color: var(--primary);
  gap: 10px;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--header-bg);
  box-shadow: 0 1px 0 rgba(var(--secondary-rgb), 0.06);
}

.topbar {
  background: var(--bg-dark);
  color: #ffffff;
  font-size: 0.85rem;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 10px 0;
  flex-wrap: wrap;
}
.topbar__left,
.topbar__right {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}
.topbar__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(var(--primary-rgb), 0.22);
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.topbar__badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--primary-light);
  box-shadow: 0 0 0 rgba(var(--primary-light-rgb), 0.7);
  animation: pulse 2s infinite;
}
.topbar__meta { color: rgba(255, 255, 255, 0.75); }
.topbar__link {
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color var(--transition);
}
.topbar__link:hover { color: var(--primary-light); }
.topbar__link .ico { width: 16px; height: 16px; opacity: 0.85; }

.topbar__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-weight: 700;
  white-space: nowrap;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(var(--primary-rgb), 0.22);
}
.topbar__phone-num { white-space: nowrap; }
.topbar__phone .ico { width: 16px; height: 16px; }
.topbar__phone:hover { background: var(--primary); color: #ffffff; }

/* Navbar */
.navbar { padding: 14px 0; background: var(--header-bg); }
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  text-decoration: none;
  flex-shrink: 0;
}
.brand:hover { color: var(--text); }

.brand__mark {
  position: relative;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  transform-style: preserve-3d;
  display: inline-block;
}
.brand__cube {
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 3px;
}
.brand__cube--a { top: 0; left: 9px; background: var(--primary); transform: skewY(-30deg); }
.brand__cube--b { top: 12px; left: 0; background: var(--primary-dark); transform: skewY(30deg); width: 22px; }
.brand__cube--c { top: 12px; left: 22px; background: var(--accent); transform: skewY(30deg); width: 22px; }

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  line-height: 1.15;
  letter-spacing: 0.02em;
  color: var(--text);
  text-transform: uppercase;
  max-width: 34ch;
}
.brand__tag {
  font-size: 0.72rem;
  color: var(--secondary-light);
  margin-top: 2px;
  letter-spacing: 0.02em;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}
.nav-list {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-list a {
  display: inline-block;
  padding: 10px 12px;
  color: var(--text);
  font-weight: 600;
  font-size: 0.94rem;
  border-radius: 6px;
  position: relative;
  white-space: nowrap;
  transition: color var(--transition), background var(--transition);
}
.nav-list a:hover { color: var(--primary-dark); background: rgba(var(--primary-rgb), 0.08); }
.nav-list a.active { color: var(--primary-dark); }
.nav-list a.active::after {
  content: "";
  position: absolute;
  left: 12px; right: 12px; bottom: 4px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

.nav-cta { flex-shrink: 0; }

/* Nav dropdown */
.nav-list { flex-wrap: nowrap; }
.has-dropdown { position: relative; }
.nav-list__toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 12px;
  color: var(--text);
  font-family: inherit;
  font-weight: 600;
  font-size: 0.94rem;
  line-height: 1;
  white-space: nowrap;
  background: transparent;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  transition: color var(--transition), background var(--transition);
}
.nav-list__toggle:hover,
.has-dropdown:hover .nav-list__toggle,
.has-dropdown:focus-within .nav-list__toggle,
.nav-list__toggle[aria-expanded="true"] {
  color: var(--primary-dark);
  background: rgba(var(--primary-rgb), 0.08);
}
.nav-list__caret {
  font-size: 0.7rem;
  line-height: 1;
  transition: transform var(--transition);
}
.has-dropdown:hover .nav-list__caret,
.has-dropdown:focus-within .nav-list__caret,
.nav-list__toggle[aria-expanded="true"] .nav-list__caret {
  transform: rotate(180deg);
}
.nav-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 230px;
  margin: 0;
  padding: 8px;
  list-style: none;
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  z-index: 110;
}
.has-dropdown:hover .nav-dropdown,
.has-dropdown:focus-within .nav-dropdown,
.nav-list__toggle[aria-expanded="true"] + .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown li { margin: 0; }
.nav-dropdown a {
  display: block;
  padding: 10px 12px;
  color: var(--text);
  font-weight: 500;
  font-size: 0.94rem;
  border-radius: 6px;
}
.nav-dropdown a:hover {
  background: rgba(var(--primary-rgb), 0.10);
  color: var(--primary-dark);
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  width: 44px;
  height: 44px;
  padding: 8px;
  cursor: pointer;
  border-radius: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  margin: 5px auto;
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  color: #ffffff;
  overflow: hidden;
  min-height: min(90vh, 780px);
  display: flex;
  align-items: center;
  padding: 90px 0 100px;
  background-color: var(--bg-dark);
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(120deg, rgba(var(--bg-dark-rgb), 0.88) 0%, rgba(var(--bg-dark-rgb), 0.68) 55%, rgba(var(--bg-dark-rgb), 0.42) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.50) 100%);
}
.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero__content { max-width: 640px; }
.hero__title {
  color: #ffffff;
  margin: 0.4rem 0 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
.hero__lede {
  color: rgba(255, 255, 255, 0.94);
  font-size: 1.12rem;
  line-height: 1.55;
  max-width: 560px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
}
.hero__lede strong { color: var(--primary-light); }
.hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 1.6rem 0;
}
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.4rem;
  list-style: none;
  padding: 0;
  margin: 1.4rem 0 0;
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 500;
}
.hero__trust li { display: inline-flex; align-items: center; gap: 8px; }
.check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  background: rgba(var(--primary-rgb), 0.28);
  color: var(--primary-light);
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.85rem;
}

.hero__card {
  background: rgba(255, 255, 255, 0.98);
  color: var(--text);
  padding: 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border-top: 4px solid var(--primary);
  max-width: 360px;
  justify-self: end;
}
.hero__card-head {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary-dark);
  margin-bottom: 12px;
}
.pulse {
  display: inline-block;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 rgba(var(--primary-rgb), 0.7);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(var(--primary-rgb), 0.7); }
  70% { box-shadow: 0 0 0 12px rgba(var(--primary-rgb), 0); }
  100% { box-shadow: 0 0 0 0 rgba(var(--primary-rgb), 0); }
}
.hero__card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 8px;
}
.hero__card-text {
  color: var(--secondary-light);
  font-size: 0.95rem;
  margin: 0 0 18px;
}

/* ---------- Section base ---------- */
.section {
  padding: clamp(56px, 8vw, 96px) 0;
}
.section--dark {
  background: var(--bg-dark);
  color: var(--text-light);
}
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: #ffffff; }
.section--dark p { color: rgba(255, 255, 255, 0.85); }

.section--gallery { background: var(--bg-alt); }
.section--process { background: var(--bg); }
.section--area { background: var(--bg-alt); }
.section--contact { background: var(--bg); }
.section--services { background: var(--bg); }

.section__head { max-width: 720px; margin: 0 0 3rem; }
.section__head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section__lede { color: var(--secondary-light); font-size: 1.06rem; margin-top: 0.4rem; }
.section--dark .section__lede { color: rgba(255, 255, 255, 0.78); }

/* ---------- Value strip ---------- */
.value-strip {
  background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg) 100%);
  padding: clamp(48px, 6vw, 72px) 0;
  border-bottom: 1px solid var(--border-light);
}
.value-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}
.value {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 20px;
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.value:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.value__icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(var(--primary-rgb), 0.12);
  color: var(--primary-dark);
}
.value__icon svg { width: 22px; height: 22px; }
.value h3 {
  font-size: 1rem;
  margin: 0 0 4px;
  color: var(--text);
}
.value p {
  margin: 0;
  color: var(--secondary-light);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* ---------- Service grid ---------- */
.service-grid {
  display: grid;
  gap: 1.8rem;
}
.service-grid.service-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  min-width: 0;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(var(--primary-rgb), 0.35);
}
.service-card--feature { border-color: rgba(var(--primary-rgb), 0.35); }

.service-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--surface-dark);
}
.service-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform var(--transition-slow);
}
.service-card:hover .service-card__media img { transform: scale(1.05); }

.service-card--text-led {
  background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg) 100%);
}
.service-card--text-led .service-card__body { padding-top: 26px; }
.service-card__checklist {
  list-style: none;
  padding: 0;
  margin: 4px 0 6px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.service-card__checklist li {
  position: relative;
  padding: 6px 0 6px 24px;
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.4;
  border-bottom: 1px dashed rgba(var(--border-rgb), 0.28);
}
.service-card__checklist li:last-child { border-bottom: 0; }
.service-card__checklist li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 6px;
  color: var(--primary-dark);
  font-weight: 700;
}

.service-card__body {
  padding: 22px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  min-width: 0;
}
.service-card__body h3 { margin: 0; color: var(--text); }
.service-card__body p {
  margin: 0;
  color: var(--secondary-light);
  font-size: 0.95rem;
  line-height: 1.55;
  flex: 1;
}
.service-card__body .link-arrow {
  align-self: flex-start;
  margin-top: 4px;
}

/* Secondary services */
.secondary-services {
  margin-top: 3rem;
  padding: 32px;
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
}
.secondary-services__head {
  margin-bottom: 18px;
}
.secondary-services__head h3 {
  margin: 0 0 6px;
  color: var(--text);
}
.secondary-services__head p {
  margin: 0;
  color: var(--secondary-light);
  font-size: 0.95rem;
}
.chip-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 8px 20px;
}
.chip-list li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(var(--border-rgb), 0.35);
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
}
.chip__mark {
  color: var(--primary-dark);
  font-weight: 700;
  width: 14px;
  display: inline-block;
}

/* ---------- About (dark) ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.about-grid__col--copy p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.02rem;
  line-height: 1.65;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
  margin: 2rem 0;
  padding: 1.6rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.stat { text-align: left; }
.stat__num {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--primary-light);
  letter-spacing: -0.01em;
  line-height: 1;
}
.stat__label {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.86rem;
  letter-spacing: 0.02em;
}

.about-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.about-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 12px;
  position: relative;
}
.about-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.about-media img:first-child {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
  height: 100%;
}
.about-media img:last-child {
  grid-column: 2 / 3;
  grid-row: 1 / 3;
  height: 100%;
}

/* ---------- Process ---------- */
.steps {
  list-style: none;
  padding-left: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  counter-reset: none;
}
.step {
  position: relative;
  padding: 26px 22px 24px;
  border-radius: var(--radius);
  background: var(--bg-alt);
  border: 1px solid var(--border-light);
  transition: transform var(--transition), box-shadow var(--transition);
}
.step:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: rgba(var(--primary-rgb), 0.35);
}
.step__num {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.7rem;
  color: var(--primary-dark);
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}
.step h3 {
  color: var(--text);
  margin: 0 0 8px;
  font-size: 1.08rem;
}
.step p {
  color: var(--secondary-light);
  margin: 0;
  font-size: 0.93rem;
  line-height: 1.55;
}

/* ---------- Area ---------- */
.area-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 3rem;
  align-items: center;
}
.area-list {
  list-style: none;
  padding: 0;
  margin: 1.4rem 0 1.8rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px 20px;
}
.area-list li {
  padding: 8px 0 8px 22px;
  position: relative;
  color: var(--text);
  border-bottom: 1px solid rgba(var(--border-rgb), 0.25);
  font-weight: 500;
}
.area-list li::before {
  content: "›";
  position: absolute;
  left: 0;
  top: 8px;
  color: var(--primary);
  font-weight: 700;
}
.area-grid__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 380px;
  height: 100%;
  border: 1px solid rgba(1, 58, 36, 0.35);
  background: linear-gradient(135deg, #03251a 0%, var(--secondary) 100%);
}
.area-grid__map-svg {
  width: 100%;
  height: 100%;
  min-height: 380px;
  display: block;
}

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary) 100%);
  color: #ffffff;
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  top: -60px; right: -60px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: rgba(var(--primary-rgb), 0.18);
  pointer-events: none;
}
.cta-band__inner {
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 2rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.cta-band h2 {
  color: #ffffff;
  margin: 0 0 6px;
  font-size: clamp(1.4rem, 2.6vw, 1.8rem);
}
.cta-band p {
  color: rgba(255, 255, 255, 0.94);
  margin: 0;
  font-size: 1.02rem;
}
.cta-band__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-self: end;
}
.cta-band .btn--dark { background: #ffffff; color: var(--text); }
.cta-band .btn--dark:hover { background: var(--primary); color: var(--primary-ink); }
.cta-band .btn--outline-dark { background: transparent; color: #ffffff; border-color: #ffffff; }
.cta-band .btn--outline-dark:hover { background: #ffffff; color: var(--text); }

/* ---------- Gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 220px;
  gap: 14px;
}
.gallery__item {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface-dark);
  grid-column: span 2;
}
.gallery__item--wide { grid-column: span 3; }
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform var(--transition-slow);
}
.gallery__item:hover img { transform: scale(1.05); }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: flex-start;
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 1.6rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
}
.contact-list li:last-child { border-bottom: 0; }
.contact-list__icon {
  flex-shrink: 0;
  width: 42px; height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(var(--primary-rgb), 0.12);
  color: var(--primary-dark);
}
.contact-list__icon svg { width: 20px; height: 20px; }
.contact-list__label {
  display: block;
  font-size: 0.78rem;
  color: var(--secondary-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
}
.contact-list__value {
  display: block;
  font-weight: 700;
  color: var(--text);
  font-size: 1.08rem;
  white-space: nowrap;
  margin-top: 2px;
}
a.contact-list__value:hover { color: var(--primary-dark); }

/* Form */
.contact-form {
  background: var(--bg-alt);
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}
.field {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
}
.field label {
  font-weight: 700;
  color: var(--text);
  font-size: 0.88rem;
  margin-bottom: 6px;
}
.field input,
.field select,
.field textarea {
  font-family: inherit;
  font-size: 1rem;
  padding: 12px 14px;
  border-radius: var(--radius);
  border: 1.5px solid rgba(var(--border-rgb), 0.5);
  background: var(--surface);
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 0;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.2);
}
.field textarea { resize: vertical; min-height: 100px; }
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-note {
  margin: 14px 0 0;
  font-size: 0.86rem;
  color: var(--secondary-light);
  text-align: center;
}
.form-note a { color: var(--primary-dark); font-weight: 700; white-space: nowrap; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bg-dark);
  color: #ffffff;
  padding: 64px 0 0;
  margin-top: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 2.4rem;
  padding-bottom: 48px;
}
.footer-col h4 {
  color: #ffffff;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.footer-col p { color: rgba(255, 255, 255, 0.75); font-size: 0.94rem; line-height: 1.6; }
.brand--footer { color: #ffffff; margin-bottom: 12px; }
.brand--footer:hover { color: #ffffff; }
.brand--footer .brand__name { color: #ffffff; }
.brand--footer .brand__tag { color: rgba(255, 255, 255, 0.7); }
.footer-blurb {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.94rem;
  line-height: 1.6;
  max-width: 320px;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-list li { margin-bottom: 10px; }
.footer-list a {
  color: rgba(255, 255, 255, 0.82);
  transition: color var(--transition);
  font-size: 0.94rem;
}
.footer-list a:hover { color: var(--primary-light); }

.footer-col--contact { display: flex; flex-direction: column; }
.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(var(--primary-rgb), 0.18);
  color: #ffffff;
  font-weight: 700;
  font-size: 1.08rem;
  border-radius: var(--radius);
  white-space: nowrap;
  margin-bottom: 12px;
  align-self: flex-start;
}
.footer-phone:hover { background: var(--primary); color: #ffffff; }
.footer-phone .ico { width: 18px; height: 18px; }
.footer-email {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.94rem;
  margin-bottom: 14px;
}
.footer-email:hover { color: var(--primary-light); }
.footer-meta {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0 0 10px;
}
.footer-badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(var(--primary-rgb), 0.18);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin: 0;
  align-self: flex-start;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  padding: 20px 0;
  background: rgba(0, 0, 0, 0.28);
}
.footer-bottom__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.72);
}
.footer-bottom p { margin: 0; color: rgba(255, 255, 255, 0.72); font-size: 0.82rem; }
.footer-legal { font-size: 0.78rem; opacity: 0.8; }

/* ---------- Video container helper ---------- */
.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.video-container iframe,
.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .value-strip__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-col--contact { grid-column: 1 / -1; }
}

@media (max-width: 960px) {
  .nav-toggle { display: block; }
  .primary-nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100dvh;
    width: min(88vw, 340px);
    background: var(--bg);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 80px 24px 24px;
    box-shadow: -20px 0 40px rgba(0, 0, 0, 0.18);
    transform: translateX(100%);
    transition: transform var(--transition-slow);
    z-index: 90;
    overflow-y: auto;
  }
  .primary-nav.is-open { transform: translateX(0); }
  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
  }
  .nav-list li { border-bottom: 1px solid var(--border-light); }
  .nav-list a { padding: 14px 8px; display: block; font-size: 1rem; border-radius: 0; }
  .nav-list a.active::after { display: none; }
  .nav-cta { margin-top: 16px; align-self: stretch; text-align: center; }

  /* Dropdown in mobile drawer: always expanded, no floating panel */
  .has-dropdown { border-bottom: 1px solid var(--border-light); }
  .nav-list__toggle {
    display: none;
  }
  .nav-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    padding: 0;
    margin: 0;
    background: transparent;
    min-width: 0;
  }
  .nav-dropdown li { border-bottom: 1px solid var(--border-light); }
  .nav-dropdown li:last-child { border-bottom: 0; }
  .nav-dropdown a { padding: 14px 8px; font-size: 1rem; border-radius: 0; }

  body.nav-open { overflow: hidden; }
  body.nav-open::before {
    content: "";
    position: fixed; inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 85;
  }

  .hero { padding: 60px 0 70px; min-height: auto; }
  .hero__inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero__card { max-width: none; justify-self: stretch; }

  .about-grid { grid-template-columns: 1fr; }
  .about-media { grid-template-rows: 200px 200px; }

  .area-grid { grid-template-columns: 1fr; }
  .area-grid__map { min-height: 320px; }
  .area-grid__map-svg { min-height: 320px; }

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

  .cta-band__inner { grid-template-columns: 1fr; }
  .cta-band__actions { justify-self: start; }

  .gallery {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 180px;
  }
  .gallery__item { grid-column: span 2; }
  .gallery__item--wide { grid-column: span 2; }
}

@media (max-width: 720px) {
  .service-grid.service-grid--three { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stats-row { grid-template-columns: 1fr; gap: 1rem; }
  .about-media { grid-template-columns: 1fr; grid-template-rows: 180px 180px; }
  .about-media img:first-child,
  .about-media img:last-child { grid-column: 1; grid-row: auto; height: 100%; }
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-col--brand { grid-column: 1 / -1; }
  .footer-col--contact { grid-column: 1 / -1; }
  .topbar__inner { justify-content: center; text-align: center; }
  .topbar__left { justify-content: center; width: 100%; }
  .topbar__right { justify-content: center; width: 100%; }
  .topbar__meta { display: none; }
}

@media (max-width: 560px) {
  .service-grid.service-grid--three { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .value-strip__grid { grid-template-columns: 1fr; }
  .area-list { grid-template-columns: 1fr; }
  .gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }
  .gallery__item,
  .gallery__item--wide { grid-column: 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-col--brand,
  .footer-col--contact { grid-column: 1; }
  .footer-bottom__inner { flex-direction: column; text-align: center; }
  .brand__name { font-size: 1rem; }
  .brand__tag { display: none; }
  .hero__cta .btn { width: 100%; justify-content: center; }
}

/* Print */
@media print {
  .site-header, .site-footer, .cta-band, .hero__card { display: none; }
  body { color: #000; background: #fff; }
}

/* Motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* betterly-css-safety-net:start */
.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__media img, .hero__media video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.site-header {
  width: 100%;
  max-width: 100%;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: clamp(1.25rem, 2vw, 1.75rem);
  align-items: stretch;
}

.service-card {
  background: var(--background, #fff);
  border: 1px solid var(--border, #e1e6ed);
  border-radius: var(--radius, 12px);
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: auto;
  overflow: hidden;
}

@media (max-width: 760px) {
  .intro-grid,
  .founder-grid,
  .visit-grid,
  .feature-grid,
  .trust-grid,
  .value-grid,
  .value__grid,
  .program-grid,
  .pillar-grid,
  .link-grid,
  .two-col {
    grid-template-columns: 1fr;
  }
  .value__list,
  .values-list,
  .trust-list,
  .checklist,
  .bullets {
    grid-template-columns: 1fr;
  }
  .cta-inner {
    display: grid;
  }
  .cta-banner-inner {
    display: grid;
  }
}
/* betterly-css-safety-net:end */
