/* ===========================================================
   GODECKS — brand stylesheet
   Yellow  PANTONE Yellow 012 C  #FEDD00
   Black   Carbon Black          #0B0B0C
   White                         #FFFFFF
   =========================================================== */

:root {
  /* brand constants — identical in every theme */
  --gd-yellow: #FEDD00;
  --gd-yellow-hi: #FFE740;
  --gd-yellow-lo: #E0C400;
  --gd-carbon: #0B0B0C;
  --gd-white: #FFFFFF;
  --gd-slant: -20deg;

  /* light palette (default) */
  --paper: #F7F6F1;
  --surface: #FFFFFF;
  --surface-2: #EFEDE5;
  --line: #E0DDD2;
  --line-strong: #C9C5B6;
  --text: #17171A;
  --text-muted: #6B6960;
  --band: #0B0B0C;          /* always-dark band */
  --band-text: #F4F3EE;
  --band-muted: #A3A096;
  --band-line: #26262A;
  --shadow: 0 1px 2px rgba(11,11,12,.05), 0 12px 32px -18px rgba(11,11,12,.35);
  --focus: #0B0B0C;

  --container: 1180px;
  --gutter: clamp(16px, 4vw, 40px);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --paper: #0B0B0C;
    --surface: #151517;
    --surface-2: #1D1D20;
    --line: #2B2B2F;
    --line-strong: #3C3C41;
    --text: #F3F2ED;
    --text-muted: #9D9B92;
    --band: #151517;
    --band-text: #F3F2ED;
    --band-muted: #9D9B92;
    --band-line: #2B2B2F;
    --shadow: 0 1px 2px rgba(0,0,0,.5), 0 14px 34px -18px rgba(0,0,0,.8);
    --focus: #FEDD00;
  }
}

:root[data-theme="dark"] {
  --paper: #0B0B0C;
  --surface: #151517;
  --surface-2: #1D1D20;
  --line: #2B2B2F;
  --line-strong: #3C3C41;
  --text: #F3F2ED;
  --text-muted: #9D9B92;
  --band: #151517;
  --band-text: #F3F2ED;
  --band-muted: #9D9B92;
  --band-line: #2B2B2F;
  --shadow: 0 1px 2px rgba(0,0,0,.5), 0 14px 34px -18px rgba(0,0,0,.8);
  --focus: #FEDD00;
}

/* ---------- base ---------- */
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: "Barlow", "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; }
/* <picture> is only a wrapper for the WebP source — it must not create a box */
picture { display: contents; }
a { color: inherit; }
h1, h2, h3, h4 {
  font-family: "Archivo", "Helvetica Neue", Arial, sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.02;
  text-wrap: balance;
  margin: 0;
}
p { margin: 0; }
:where(a, button, input, select, textarea, summary):focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

/* ---------- layout ---------- */
.wrap {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { padding-block: clamp(56px, 8vw, 104px); }
.section--tight { padding-block: clamp(40px, 6vw, 72px); }
.band { background: var(--gd-carbon); color: #F4F3EE; }
.band h1, .band h2, .band h3 { color: #FFFFFF; }
.band .lede, .band p { color: #B6B3A9; }
.stack { display: flex; flex-direction: column; gap: 18px; }

/* ---------- type helpers ---------- */
.eyebrow {
  font-family: "Barlow Condensed", "Barlow", Arial, sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 12px;
}
.band .eyebrow { color: var(--gd-yellow); }
.eyebrow::before {
  content: "";
  width: 26px; height: 3px;
  background: var(--gd-yellow);
  transform: skewX(var(--gd-slant));
  flex: none;
}
h1 { font-size: clamp(38px, 7.2vw, 74px); text-transform: uppercase; }
h2 { font-size: clamp(29px, 4.4vw, 46px); text-transform: uppercase; }
h3 { font-size: clamp(19px, 2.2vw, 23px); text-transform: uppercase; letter-spacing: -0.01em; }
.lede { font-size: clamp(17px, 1.9vw, 20px); color: var(--text-muted); max-width: 62ch; }
.mark-y { color: var(--gd-yellow); }
.small { font-size: 15px; color: var(--text-muted); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: "Barlow Condensed", "Barlow", Arial, sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: .09em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 26px;
  border: 2px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  transition: transform .12s ease, background-color .15s ease, color .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--gd-yellow); color: var(--gd-carbon); }
.btn--primary:hover { background: var(--gd-yellow-hi); }
.btn--ghost { border-color: currentColor; color: inherit; background: transparent; }
.btn--ghost:hover { background: var(--gd-yellow); color: var(--gd-carbon); border-color: var(--gd-yellow); }
.btn--dark { background: var(--gd-carbon); color: #fff; }
.btn--dark:hover { background: #24242a; }
.btn--lg { padding: 17px 32px; font-size: 20px; }

/* ---------- logo ---------- */
.logo { display: inline-flex; align-items: center; gap: 14px; text-decoration: none; }
.logo__mark { width: 46px; height: auto; flex: none; }
.logo__mark rect { fill: var(--gd-yellow); }
.logo__rule { width: 2px; align-self: stretch; background: currentColor; opacity: .25; }
.logo__text { display: flex; flex-direction: column; }
.logo__word {
  font-family: "Archivo", Arial, sans-serif;
  font-weight: 800;
  font-size: 27px;
  letter-spacing: -0.015em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}
.logo__word .go { color: var(--gd-yellow); }
.logo__tag {
  display: block;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  margin-top: 5px;
  opacity: .8;
}
.logo--stack { flex-direction: column; align-items: flex-start; gap: 10px; }
/* footer logo: identical lockup to the header — the footer's grey link
   colour is the only thing that needs overriding */
.logo--foot { color: #FFFFFF; }
.logo--foot .logo__word { color: #FFFFFF; }
.logo--foot .logo__word .go { color: var(--gd-yellow); }
.logo--lg .logo__mark { width: 58px; }
.logo--lg .logo__word { font-size: 40px; }

/* ---------- header ---------- */
.topbar {
  background: var(--gd-yellow);
  color: var(--gd-carbon);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: 15px;
}
.topbar .wrap {
  display: flex; flex-wrap: wrap; gap: 6px 22px;
  align-items: center; justify-content: center;
  padding-block: 8px;
}
.topbar a { text-decoration: none; font-weight: 700; }
.topbar a:hover { text-decoration: underline; }

.siteheader {
  position: sticky;
  top: env(safe-area-inset-top, 0px);
  z-index: 50;
  background: var(--gd-carbon);
  color: #fff;
  border-bottom: 1px solid #1E1E22;
}
.siteheader .wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding-block: 14px;
}
.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-weight: 600; font-size: 18px; letter-spacing: .08em;
  text-transform: uppercase; text-decoration: none;
  padding: 9px 11px; border-radius: 2px; color: #E9E7E1;
}
.nav a:hover { color: var(--gd-yellow); }
.nav a[aria-current="page"] { color: var(--gd-yellow); box-shadow: inset 0 -3px 0 var(--gd-yellow); }
.headcta { display: flex; align-items: center; gap: 14px; flex: none; }
.btn--call { gap: 9px; padding-inline: 20px; font-size: 19px; white-space: nowrap; flex: none; }
.btn__icon { width: 18px; height: 18px; fill: currentColor; flex: none; }
.btn__calllabel { display: none; }
.headphone {
  font-family: "Archivo", Arial, sans-serif; font-weight: 700; font-size: 17px;
  text-decoration: none; white-space: nowrap; color: #fff;
}
.headphone:hover { color: var(--gd-yellow); }
.navtoggle {
  display: none; background: transparent; border: 2px solid #3A3A40; color: #fff;
  border-radius: 2px; padding: 9px 12px; cursor: pointer;
  font-family: "Barlow Condensed", Arial, sans-serif; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; font-size: 16px;
}
.nav .navonly { display: none; }
@media (max-width: 1220px) {
  .nav, .headphone { display: none; }
  .nav.is-open .navonly { display: block; color: var(--gd-yellow); }
  .navtoggle { display: inline-block; }
  .nav.is-open {
    display: flex; flex-direction: column; align-items: stretch;
    position: absolute; left: 0; right: 0; top: 100%;
    background: var(--gd-carbon); border-bottom: 3px solid var(--gd-yellow);
    padding: 10px var(--gutter) 20px;
  }
  .nav.is-open a { padding: 13px 0; border-bottom: 1px solid #1E1E22; }
  .siteheader .wrap { position: relative; }
}

/* ---------- hero ---------- */
.hero { background: var(--gd-carbon); color: #fff; position: relative; overflow: hidden; }
.hero::after {
  content: ""; position: absolute; inset: auto 0 0 0; height: 6px;
  background: repeating-linear-gradient(90deg, var(--gd-yellow) 0 64px, #0B0B0C 64px 76px);
}
.hero .wrap { padding-block: clamp(48px, 7vw, 92px) clamp(44px, 6vw, 72px); }
.hero .hero__foot { padding-block: 0 clamp(26px, 3.5vw, 40px); }
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 4vw, 56px); align-items: center; }
@media (max-width: 900px) { .hero__grid { grid-template-columns: 1fr; } }
.hero h1 { font-size: clamp(34px, 5.4vw, 62px); }
.hero h1 span { display: block; }
.hero h1 .l2 { color: var(--gd-yellow); }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero--page .wrap { padding-block: clamp(36px, 5vw, 62px) clamp(30px, 4vw, 48px); }
.hero--page h1 { font-size: clamp(34px, 5.6vw, 58px); }
.hero__note {
  font-family: "Barlow Condensed", Arial, sans-serif; text-transform: uppercase;
  letter-spacing: .14em; font-size: 15px; color: #8F8C83;
}

/* ---------- stat strip ---------- */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--band-line);
}
.stats > div { padding: 22px 18px; border-right: 1px solid #1E1E22; }
.stats > div:last-child { border-right: 0; }
.stats b {
  display: block; font-family: "Archivo", Arial, sans-serif; font-weight: 800;
  font-size: clamp(26px, 3vw, 36px); color: var(--gd-yellow); line-height: 1;
  font-variant-numeric: tabular-nums;
}
.stats b.stat-word { font-size: clamp(19px, 2.1vw, 26px); line-height: 1.12; }
.stats span {
  display: block; margin-top: 7px; font-family: "Barlow Condensed", Arial, sans-serif;
  text-transform: uppercase; letter-spacing: .13em; font-size: 14px; color: #A3A096;
}
@media (max-width: 720px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stats > div:nth-child(2n) { border-right: 0; }
  .stats > div:nth-child(n+3) { border-top: 1px solid #1E1E22; }
}

/* ---------- photo placeholder ----------
   Replace each .ph block with: <img src="images/your-photo.jpg" alt="...">
------------------------------------------ */
.ph {
  position: relative;
  display: flex; align-items: flex-end;
  aspect-ratio: 4 / 3;
  max-width: 100%;
  background-color: #111114;
  background-image: repeating-linear-gradient(
      70deg,
      rgba(254,221,0,.13) 0 2px,
      rgba(254,221,0,0) 2px 15px);
  border: 1px solid #23232A;
  border-radius: 2px;
  overflow: hidden;
}
.ph::before {
  content: "PHOTO";
  position: absolute; top: 12px; left: 12px;
  font-family: "Barlow Condensed", Arial, sans-serif; font-weight: 700;
  font-size: 12px; letter-spacing: .2em;
  background: var(--gd-yellow); color: var(--gd-carbon);
  padding: 3px 9px; border-radius: 2px;
}
.ph__label {
  width: 100%;
  padding: 16px 16px 15px;
  background: linear-gradient(to top, rgba(11,11,12,.92), rgba(11,11,12,0));
  font-family: "Barlow Condensed", Arial, sans-serif;
  text-transform: uppercase; letter-spacing: .12em;
  font-size: 15px; color: #EDEBE4; font-weight: 600;
}
.ph__label em { display: block; font-style: normal; color: #86837B; letter-spacing: .1em; font-size: 13px; }
.ph--wide { aspect-ratio: 16 / 10; }
.ph--tall { aspect-ratio: 3 / 4; }

/* map embed on the contact page */
.mapwrap {
  aspect-ratio: 16 / 10;
  border: 1px solid var(--line);
  border-radius: 2px;
  overflow: hidden;
  background: var(--surface-2);
}
.mapwrap iframe { display: block; width: 100%; height: 100%; border: 0; }

/* directions card — stands in for the map where frames can't load */
.mapcard {
  position: relative;
  aspect-ratio: 16 / 10;
  border: 1px solid var(--line);
  border-radius: 2px;
  overflow: hidden;
  background: var(--gd-carbon);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 10px; padding: 24px; text-align: center;
}
.mapcard__bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  opacity: .34;
}
.mapcard > :not(.mapcard__bg) { position: relative; z-index: 1; }
.mapcard__pin {
  width: 32px; height: 32px; fill: var(--gd-yellow);
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.6));
}
.mapcard__eyebrow {
  margin: 0; font-family: "Barlow Condensed", Arial, sans-serif;
  text-transform: uppercase; letter-spacing: .16em;
  font-size: 13px; font-weight: 700; color: var(--gd-yellow);
}
.mapcard__addr {
  margin: 0; font-family: "Archivo", Arial, sans-serif;
  font-weight: 700; line-height: 1.3;
  font-size: clamp(17px, 1.7vw, 21px); color: #FFFFFF;
  text-shadow: 0 2px 10px rgba(0,0,0,.65);
}
.mapcard .btn { margin-top: 6px; }

/* ---------- cards / grids ---------- */
.grid { display: grid; gap: clamp(16px, 2.2vw, 26px); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .grid--4 { grid-template-columns: repeat(2, 1fr); } .grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 680px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 2px;
  display: flex; flex-direction: column; gap: 14px;
  padding: 26px 24px 28px;
}
.card__num {
  font-family: "Archivo", Arial, sans-serif; font-weight: 800; font-size: 14px;
  letter-spacing: .12em; color: var(--gd-carbon);
  background: var(--gd-yellow); align-self: flex-start;
  padding: 4px 10px; border-radius: 2px;
}
.card p { color: var(--text-muted); font-size: 16px; }
.card ul { margin: 0; padding-left: 18px; color: var(--text-muted); font-size: 16px; }
.card li { margin-bottom: 5px; }
.card__more {
  margin-top: auto; padding-top: 6px;
  font-family: "Barlow Condensed", Arial, sans-serif; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; font-size: 15px;
  text-decoration: none; color: var(--text);
  border-bottom: 3px solid var(--gd-yellow); align-self: flex-start;
}
.card__more:hover { color: var(--gd-yellow-lo); }

.svc { padding: 0; overflow: hidden; }
.svc .ph { aspect-ratio: 5 / 3; border: 0; border-bottom: 1px solid var(--line); }
.svc__body { display: flex; flex-direction: column; gap: 12px; padding: 22px 22px 26px; flex: 1; }

/* ---------- slanted callout bar ---------- */
.slantbar {
  background: var(--gd-yellow); color: var(--gd-carbon);
  padding-block: 20px;
}
.slantbar .wrap {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 10px 30px;
  font-family: "Barlow Condensed", Arial, sans-serif; font-weight: 700;
  text-transform: uppercase; letter-spacing: .14em; font-size: clamp(15px, 1.7vw, 18px);
}
.slantbar span { display: inline-flex; align-items: center; gap: 12px; }
.slantbar span::before {
  content: ""; width: 14px; height: 14px; flex: none;
  background: var(--gd-carbon); transform: skewX(var(--gd-slant));
}

/* ---------- process ---------- */
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; }
.steps > li {
  list-style: none; padding: 26px 20px 28px;
  border-top: 5px solid var(--gd-yellow);
  border-right: 1px solid var(--line);
}
.steps > li:last-child { border-right: 0; }
.steps b {
  font-family: "Archivo", Arial, sans-serif; font-size: 13px; letter-spacing: .16em;
  color: var(--text-muted); display: block; margin-bottom: 10px;
}
.steps h3 { margin-bottom: 8px; }
.steps p { color: var(--text-muted); font-size: 15.5px; }
.steps { margin: 0; padding: 0; }
@media (max-width: 980px) { .steps { grid-template-columns: repeat(2, 1fr); } .steps > li:nth-child(2n) { border-right: 0; } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } .steps > li { border-right: 0; } }

/* ---------- quotes ---------- */
.quote {
  background: var(--surface); border: 1px solid var(--line); border-left: 5px solid var(--gd-yellow);
  padding: 26px 24px; display: flex; flex-direction: column; gap: 16px; border-radius: 2px;
}
.quote blockquote { margin: 0; font-size: 17.5px; }
.quote footer { font-size: 15px; color: var(--text-muted); }
.quote footer b { color: var(--text); font-family: "Archivo", Arial, sans-serif; font-size: 15px; }
.stars { color: var(--gd-yellow-lo); letter-spacing: .18em; font-size: 15px; }
:root[data-theme="dark"] .stars, :root:not([data-theme="light"]) .stars { color: var(--gd-yellow); }
@media (prefers-color-scheme: light) { :root:not([data-theme="dark"]) .stars { color: #C7AE00; } }

/* ---------- faq ---------- */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer; list-style: none; padding: 20px 46px 20px 0; position: relative;
  font-family: "Archivo", Arial, sans-serif; font-weight: 700; font-size: 18px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 8px; top: 50%; transform: translateY(-50%);
  font-size: 26px; color: var(--gd-yellow-lo); line-height: 1;
}
.faq details[open] summary::after { content: "–"; }
.faq p { padding-bottom: 22px; color: var(--text-muted); max-width: 78ch; }

/* ---------- split feature ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(26px, 4vw, 56px); align-items: center; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } }
.ticks { margin: 0; padding: 0; list-style: none; display: grid; gap: 12px; }
.ticks li { display: flex; gap: 12px; align-items: flex-start; font-size: 16.5px; }
.ticks li::before {
  content: ""; width: 13px; height: 13px; margin-top: 7px; flex: none;
  background: var(--gd-yellow); transform: skewX(var(--gd-slant));
}

/* ---------- forms ---------- */
.form { display: grid; gap: 16px; }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 620px) { .form .row { grid-template-columns: 1fr; } }
.field { display: grid; gap: 7px; }
.field label {
  font-family: "Barlow Condensed", Arial, sans-serif; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em; font-size: 14px; color: var(--text-muted);
}
.field input, .field select, .field textarea {
  font: inherit; font-size: 16px; color: var(--text);
  background: var(--surface); border: 1px solid var(--line-strong);
  border-radius: 2px; padding: 12px 14px; width: 100%;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gd-yellow-lo); }
.formnote { font-size: 14.5px; color: var(--text-muted); }
.formok {
  border: 2px solid var(--gd-yellow); background: var(--surface);
  padding: 22px; border-radius: 2px;
}
.formerr {
  border: 2px solid #C2402F; background: var(--surface);
  padding: 22px; border-radius: 2px; margin-bottom: 20px;
}
.formerr h3 { color: #C2402F; }
/* honeypot: a field only a bot fills in */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ---------- contact tiles ---------- */
.infolist { display: grid; gap: 0; border-top: 1px solid var(--line); }
.infolist > div { display: grid; grid-template-columns: 150px 1fr; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.infolist dt, .infolist > div > span:first-child {
  font-family: "Barlow Condensed", Arial, sans-serif; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em; font-size: 14px; color: var(--text-muted);
}
@media (max-width: 520px) { .infolist > div { grid-template-columns: 1fr; gap: 4px; } }

/* ---------- gallery filter ---------- */
.filters { display: flex; flex-wrap: wrap; gap: 10px; }
.filters button {
  font-family: "Barlow Condensed", Arial, sans-serif; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em; font-size: 15px;
  background: var(--surface); color: var(--text);
  border: 1px solid var(--line-strong); border-radius: 2px;
  padding: 9px 16px; cursor: pointer;
}
.filters button[aria-pressed="true"] { background: var(--gd-yellow); border-color: var(--gd-yellow); color: var(--gd-carbon); }
.project { display: flex; flex-direction: column; gap: 10px; }
.project h3 { font-size: 18px; }
.project .meta {
  font-family: "Barlow Condensed", Arial, sans-serif; text-transform: uppercase;
  letter-spacing: .12em; font-size: 14px; color: var(--text-muted);
}

/* ---------- cta band ---------- */
.ctaband { background: var(--gd-yellow); color: var(--gd-carbon); }
.ctaband h2 { color: var(--gd-carbon); }
.ctaband p { color: #3A3407; }
.ctaband .wrap { display: grid; grid-template-columns: 1.3fr .7fr; gap: 28px; align-items: center; padding-block: clamp(40px, 5vw, 64px); }
@media (max-width: 800px) { .ctaband .wrap { grid-template-columns: 1fr; } }
.ctaband .actions { display: flex; flex-direction: column; gap: 12px; }

/* ---------- footer ---------- */
.sitefooter { background: var(--gd-carbon); color: #C9C6BD; }
.sitefooter a { color: #C9C6BD; text-decoration: none; }
.sitefooter a:hover { color: var(--gd-yellow); }
.footgrid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 34px;
  padding-block: clamp(44px, 6vw, 68px);
}
@media (max-width: 900px) { .footgrid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footgrid { grid-template-columns: 1fr; } }
.footgrid h4 {
  font-family: "Barlow Condensed", Arial, sans-serif; font-weight: 700;
  text-transform: uppercase; letter-spacing: .16em; font-size: 15px;
  color: var(--gd-yellow); margin-bottom: 14px;
}
.footgrid ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; font-size: 16px; }
.footbottom {
  border-top: 1px solid #1E1E22; padding-block: 20px 26px;
  display: flex; flex-wrap: wrap; gap: 10px 24px; justify-content: space-between;
  font-size: 14px; color: #7C7970;
}
.ph-note {
  display: inline-block; background: rgba(254,221,0,.12); color: inherit;
  border: 1px dashed var(--gd-yellow-lo); border-radius: 2px;
  padding: 1px 6px; font-size: .92em;
}

@media (max-width: 700px) {
  .btn--call .btn__callnum { display: none; }
  .btn--call .btn__calllabel { display: inline; }
  .btn--call { padding-inline: 15px; font-size: 18px; gap: 7px; }
  .siteheader .wrap { gap: 10px; }
  .headcta { gap: 8px; }
  .navtoggle { padding: 9px 10px; font-size: 15px; }
}
@media (max-width: 640px) {
  .logo__word { font-size: 20px; }
  .logo__mark { width: 32px; }
  .topbar { font-size: 14px; }
}

/* ===========================================================
   Real photography
   =========================================================== */
.photo {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 2px;
  background: #111114;
  max-width: 100%;
}
.photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo--wide { aspect-ratio: 16 / 10; }
.photo--4x3 { aspect-ratio: 4 / 3; }
.photo--5x3 { aspect-ratio: 5 / 3; }
.photo--4x5 { aspect-ratio: 4 / 5; }
.svc .photo { border-radius: 0; border-bottom: 1px solid var(--line); }

/* ===========================================================
   Hero slider — plain crossfading/sliding photo panel.
   No video, no background motion: the photos sit in their own
   frame beside the headline.
   =========================================================== */
.slider {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  background: #111114;
  border: 1px solid #23232A;
  aspect-ratio: 4 / 3;
  max-width: 100%;
}
.slider__track {
  display: flex;
  height: 100%;
  transition: transform .55s cubic-bezier(.4, 0, .2, 1);
  will-change: transform;
}
.slider__slide { flex: 0 0 100%; height: 100%; }
.slider__slide img { width: 100%; height: 100%; object-fit: cover; display: block; }

@media (max-width: 900px) {
  .slider { aspect-ratio: 16 / 11; }
}

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ===========================================================
   Hero slider used as a full-bleed background
   =========================================================== */
.hero--bg { position: relative; isolation: isolate; }

.slider--bg {
  position: absolute; inset: 0; z-index: 0;
  aspect-ratio: auto;
  border: 0; border-radius: 0;
  background: var(--gd-carbon);
}
.slider--bg .slider__track {
  position: absolute; inset: 0;
  display: block;
  height: 100%;
  transition: none;
  transform: none;
}
.slider--bg .slider__slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.8s ease-in-out;
}
.slider--bg .slider__slide.is-active { opacity: 1; }
.slider--bg .slider__slide.is-instant { transition: none; }
.slider--bg .slider__slide img { width: 100%; height: 100%; object-fit: cover; display: block; }

.hero-scrim {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(100deg, rgba(11,11,12,.88) 0%, rgba(11,11,12,.72) 32%,
                    rgba(11,11,12,.42) 55%, rgba(11,11,12,.16) 78%, rgba(11,11,12,.08) 100%),
    linear-gradient(to top, rgba(11,11,12,.82) 0%, rgba(11,11,12,0) 42%);
}
@media (max-width: 900px) {
  .hero-scrim {
    background: linear-gradient(180deg, rgba(11,11,12,.82) 0%, rgba(11,11,12,.74) 55%,
                                rgba(11,11,12,.88) 100%);
  }
}

.hero--bg .wrap { position: relative; z-index: 2; }
.hero--bg .stats { background: rgba(11,11,12,.62); border-top-color: #33333A; }
.hero--bg .hero__main {
  display: flex; flex-direction: column; justify-content: center; gap: 28px;
  min-height: clamp(440px, 52vw, 600px);
}
.hero--bg .hero__main .stack { max-width: 40rem; }
.hero--bg h1 { text-shadow: 0 2px 10px rgba(11,11,12,.85), 0 2px 30px rgba(11,11,12,.7); }
.hero--bg .lede { color: #E2DFD7; text-shadow: 0 1px 6px rgba(11,11,12,.95), 0 1px 18px rgba(11,11,12,.85); }
.hero--bg .hero__note { color: #BEBBB2; text-shadow: 0 1px 6px rgba(11,11,12,.95), 0 1px 16px rgba(11,11,12,.85); }

/* control cluster sits with the copy, clear of the stat strip */

.hero-controls 
.hero-controls 
.hero-controls 
.hero-controls 

.infolist--area > div { grid-template-columns: 190px 1fr; }
@media (max-width: 620px) { .infolist--area > div { grid-template-columns: 1fr; gap: 4px; } }
.footareas {
  border-top: 1px solid #1E1E22;
  padding-block: 18px 0;
  font-size: 13.5px;
  line-height: 1.7;
  color: #6F6C64;
}

@media (max-width: 400px) {
  .logo__word { font-size: 18px; }
  .logo__mark { width: 28px; }
  .logo { gap: 10px; }
  .btn--call { padding-inline: 13px; font-size: 17px; }
  .navtoggle { padding: 8px 9px; font-size: 14px; }
}

/* Highlighted word in a headline — black on brand yellow, as on the
   hero's "last." */
.hl {
  background: var(--gd-yellow);
  color: var(--gd-carbon);
  padding: 0 .1em .04em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  text-shadow: none;
}
.hero--bg h1 .hl { text-shadow: none; }
