:root {
  color-scheme: light;
  --ink: #17211f;
  --ink-soft: #52605b;
  --surface: #ffffff;
  --surface-alt: #f4f7f2;
  --line: #dbe3dc;
  --amber: #df9331;
  --amber-dark: #a65e17;
  --sunset: #ff7a44;
  --pink: #f05aa6;
  --aqua: #56d9d2;
  --violet: #533a90;
  --green: #254b3e;
  --green-2: #416b5c;
  --steel: #31556f;
  --sky: #d8eaf2;
  --charcoal: #101817;
  --shadow: 0 18px 54px rgba(23, 33, 31, 0.14);
  --radius: 8px;
  --section: clamp(3.4rem, 7vw, 5.8rem);
  --shell: min(1180px, calc(100% - 32px));
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

main {
  overflow-x: clip;
}

img,
canvas {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

p {
  line-height: 1.72;
}

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

.skip-link:focus {
  z-index: 200;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  margin: 0;
  padding: 10px 14px;
  clip: auto;
  color: #fff;
  background: var(--charcoal);
  border-radius: var(--radius);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 14px;
  left: clamp(12px, 2.4vw, 42px);
  right: clamp(12px, 2.4vw, 42px);
  display: grid;
  grid-template-columns: minmax(190px, 1fr) auto auto;
  align-items: center;
  gap: 12px;
  min-height: 68px;
  padding: 10px 12px 10px 16px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.06)),
    rgba(11, 19, 18, 0.16);
  box-shadow:
    0 18px 54px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    inset 0 -1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(24px) saturate(170%);
  -webkit-backdrop-filter: blur(24px) saturate(170%);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.68);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.54)),
    rgba(255, 255, 255, 0.42);
  box-shadow:
    0 18px 48px rgba(16, 24, 23, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    inset 0 -1px 0 rgba(255, 255, 255, 0.3);
}

.brand,
.header-cta,
.primary-nav,
.hero-actions,
.hours,
.text-link,
.check-list li,
.contact-action,
.social-links,
.footer-bottom {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  min-width: 0;
}

.brand > span:last-child {
  min-width: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 0;
  color: var(--charcoal);
  background: transparent;
  border: 0;
  font-weight: 800;
  font-size: 0.88rem;
}

.brand-mark img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
  line-height: 1.05;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand small {
  margin-top: 3px;
  font-size: 0.74rem;
  color: currentColor;
  opacity: 0.72;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.primary-nav {
  gap: 4px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  font-size: 0.88rem;
  font-weight: 700;
}

.primary-nav a {
  position: relative;
  padding: 8px 12px;
  border-radius: 999px;
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.primary-nav a::after {
  display: none;
}

.primary-nav a:hover,
.primary-nav a:focus-visible,
.primary-nav a[aria-current="page"] {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.23), rgba(255, 255, 255, 0.08)),
    rgba(255, 255, 255, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.34),
    0 8px 22px rgba(0, 0, 0, 0.1);
}

.site-header.is-scrolled .primary-nav,
.site-header.is-open .primary-nav {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.44);
}

.site-header.is-scrolled .primary-nav a:hover,
.site-header.is-scrolled .primary-nav a:focus-visible,
.site-header.is-scrolled .primary-nav a[aria-current="page"],
.site-header.is-open .primary-nav a:hover,
.site-header.is-open .primary-nav a:focus-visible,
.site-header.is-open .primary-nav a[aria-current="page"] {
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.5)),
    rgba(255, 255, 255, 0.56);
}

.header-cta,
.nav-toggle,
.button,
.back-to-top {
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 18px;
}

.header-cta {
  justify-content: center;
  gap: 8px;
  padding: 0 16px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.07)),
    rgba(255, 255, 255, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 10px 28px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
}

.site-header.is-scrolled .header-cta,
.site-header.is-open .header-cta {
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.72);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.5)),
    rgba(255, 255, 255, 0.52);
}

.nav-toggle {
  display: none;
  width: 44px;
  place-items: center;
  color: currentColor;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.08)),
    rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.26);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
}

.site-header.is-scrolled .nav-toggle,
.site-header.is-open .nav-toggle {
  background: rgba(255, 255, 255, 0.62);
  border-color: rgba(255, 255, 255, 0.72);
}

[id] {
  scroll-margin-top: 92px;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 112px clamp(16px, 5vw, 70px) 42px;
  color: #fff;
  isolation: isolate;
}

.hero-media,
.hero-media img,
.hero-3d-canvas,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  z-index: -4;
}

.hero-media img {
  object-fit: cover;
}

.hero-3d-canvas {
  z-index: -2;
  pointer-events: none;
}

.hero-shade {
  z-index: -1;
  background:
    radial-gradient(circle at 82% 22%, rgba(240, 90, 166, 0.26), transparent 34%),
    radial-gradient(circle at 70% 75%, rgba(255, 122, 68, 0.2), transparent 30%),
    linear-gradient(90deg, rgba(9, 15, 16, 0.9) 0%, rgba(9, 15, 16, 0.62) 44%, rgba(9, 15, 16, 0.22) 100%),
    linear-gradient(0deg, rgba(9, 15, 16, 0.76) 0%, rgba(9, 15, 16, 0.08) 48%);
}

.hero-inner {
  width: min(760px, 100%);
  padding-bottom: clamp(18px, 4vh, 34px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--amber);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  font-size: 0.76rem;
}

.eyebrow::before {
  content: "";
  width: 30px;
  height: 2px;
  background: currentColor;
}

.hero h1 {
  font-size: clamp(3.8rem, 8vw, 7.7rem);
  line-height: 0.88;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 660px;
  margin-top: 22px;
  font-size: clamp(1rem, 1.7vw, 1.28rem);
  color: rgba(255, 255, 255, 0.86);
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  font-weight: 800;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.32),
    0 12px 28px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(16px) saturate(155%);
  -webkit-backdrop-filter: blur(16px) saturate(155%);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible,
.contact-action:hover,
.contact-action:focus-visible,
.social-links a:hover,
.social-links a:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--charcoal);
  border-color: rgba(255, 255, 255, 0.38);
  background:
    linear-gradient(135deg, rgba(255, 224, 150, 0.96), rgba(223, 147, 49, 0.96)),
    rgba(255, 255, 255, 0.3);
}

.button-secondary {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.06)),
    rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
}

.location-section .button-secondary {
  color: var(--ink);
  border-color: var(--line);
  background: var(--surface);
}

.hero-metrics {
  width: min(960px, 100%);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(15, 24, 23, 0.58);
  backdrop-filter: blur(16px);
  border-radius: var(--radius);
}

.hero-metrics div {
  min-height: 82px;
  padding: 14px 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-metrics div:last-child {
  border-right: 0;
}

.hero-metrics strong {
  display: block;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1;
}

.hero-metrics span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
  line-height: 1.45;
}

.cinematic-scrub {
  position: relative;
  min-height: 250svh;
  color: #fff;
  background: #080811;
}

.scrub-stage {
  position: sticky;
  top: 0;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  align-items: center;
  gap: clamp(24px, 5vw, 72px);
  overflow: hidden;
  padding: clamp(92px, 13vh, 130px) clamp(16px, 5vw, 70px) 52px;
  isolation: isolate;
}

.scrub-backdrop,
.scrub-sun,
.scrub-grid,
.scrub-visual {
  position: absolute;
  inset: 0;
}

.scrub-backdrop {
  z-index: -4;
  background:
    linear-gradient(135deg, rgba(240, 90, 166, 0.52), transparent 34%),
    linear-gradient(315deg, rgba(86, 217, 210, 0.36), transparent 38%),
    linear-gradient(180deg, #18102c 0%, #421c3f 42%, #ff7a44 74%, #f4bb61 100%);
}

.scrub-sun {
  width: min(48vw, 620px);
  height: min(48vw, 620px);
  inset: auto -8vw 8vh auto;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(255, 236, 168, 0.98), rgba(255, 122, 68, 0.78) 44%, rgba(240, 90, 166, 0.08) 68%, transparent 70%);
  filter: blur(0.2px);
}

.scrub-grid {
  top: auto;
  height: 42%;
  transform: perspective(460px) rotateX(58deg);
  transform-origin: bottom;
  background:
    linear-gradient(rgba(255, 255, 255, 0.28) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.2) 1px, transparent 1px);
  background-size: 58px 58px;
  opacity: 0.24;
  mask-image: linear-gradient(to top, #000, transparent 80%);
}

.scrub-copy,
.scrub-reel,
.scrub-progress {
  position: relative;
  z-index: 2;
}

.scrub-copy .eyebrow {
  color: #ffe3a3;
}

.scrub-copy h2 {
  max-width: 860px;
  font-size: clamp(4rem, 12vw, 11rem);
  line-height: 0.8;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 12px 36px rgba(0, 0, 0, 0.2);
}

.scrub-word {
  display: block;
  transform-origin: left center;
  will-change: transform, opacity, filter;
}

.scrub-word:nth-child(2) {
  color: #ffe3a3;
}

.scrub-word:nth-child(3) {
  color: #8df8ee;
}

.scrub-word:nth-child(4) {
  color: #ffc0df;
}

.scrub-reel {
  min-height: 330px;
}

.scrub-card {
  position: absolute;
  inset: 0;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(10, 10, 18, 0.34);
  box-shadow: 0 20px 60px rgba(9, 8, 17, 0.26);
  backdrop-filter: blur(16px);
  opacity: 0;
  transform: translateY(28px);
  will-change: transform, opacity;
}

.scrub-card.is-active {
  opacity: 1;
  transform: translateY(0);
}

.scrub-card span {
  position: absolute;
  top: 20px;
  left: 24px;
  color: #ffe3a3;
  font-size: 0.82rem;
  font-weight: 900;
}

.scrub-card h3 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.scrub-card p {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.78);
}

.scrub-visual {
  z-index: -2;
  pointer-events: none;
}

.scrub-photo {
  position: absolute;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.3);
  filter: saturate(1.24) contrast(1.02);
  will-change: transform, clip-path, opacity;
}

.scrub-photo-one {
  width: min(44vw, 680px);
  aspect-ratio: 16 / 10;
  right: 19vw;
  top: 16vh;
  clip-path: inset(0 20% 0 0);
  opacity: 0.58;
}

.scrub-photo-two {
  width: min(32vw, 470px);
  aspect-ratio: 5 / 3;
  right: 5vw;
  bottom: 13vh;
  clip-path: inset(0 0 0 24%);
  opacity: 0.64;
}

.scrub-mask {
  position: absolute;
  right: clamp(16px, 4vw, 64px);
  bottom: clamp(22px, 5vw, 70px);
  display: grid;
  color: rgba(255, 255, 255, 0.12);
  font-weight: 900;
  line-height: 0.78;
  text-align: right;
  text-transform: uppercase;
  pointer-events: none;
}

.scrub-mask strong {
  font-size: clamp(4rem, 12vw, 11rem);
}

.scrub-mask span {
  font-size: clamp(2.7rem, 8vw, 7.4rem);
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.42);
  color: transparent;
}

.scrub-progress {
  position: absolute;
  left: clamp(16px, 5vw, 70px);
  right: clamp(16px, 5vw, 70px);
  bottom: 24px;
  height: 5px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.scrub-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left;
  border-radius: inherit;
  background: linear-gradient(90deg, #ffe3a3, #ff7a44, #f05aa6, #56d9d2);
  will-change: transform;
}

.section-shell {
  width: var(--shell);
  margin: 0 auto;
}

.intro-band,
.method-section,
.project-band,
.location-section {
  background: var(--surface-alt);
}

.intro-band {
  padding: clamp(2.8rem, 6vw, 5rem) 0;
}

.intro-grid,
.method-grid,
.project-grid,
.planning-grid,
.location-grid,
.contact-grid,
.footer-grid {
  display: grid;
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.intro-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1fr);
}

.intro-grid h2,
.section-heading h2,
.method-copy h2,
.project-copy h2,
.planning-copy h2,
.location-copy h2,
.contact-copy h2 {
  font-size: clamp(1.9rem, 4.2vw, 3.6rem);
  line-height: 1.02;
}

.intro-grid p,
.section-heading p,
.method-copy p,
.project-copy p,
.planning-copy p,
.location-copy p {
  color: var(--ink-soft);
}

.services,
.capabilities,
.planning-section,
.testimonials,
.contact-section {
  padding: var(--section) 0;
}

.section-heading {
  max-width: 840px;
  margin-bottom: clamp(28px, 5vw, 54px);
}

.section-heading p:not(.eyebrow) {
  max-width: 690px;
  margin-top: 18px;
}

.service-grid,
.capability-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card,
.capability,
.testimonial,
.contact-action,
.map-panel,
.client-figure,
.client-proof-panel,
.location-panel,
.blog-card,
.proof-card,
.info-card,
.article-card,
.quote-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 10px 26px rgba(23, 33, 31, 0.06);
}

.service-card {
  overflow: hidden;
}

.service-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 5 / 3;
  object-fit: cover;
}

.service-card div {
  padding: 24px;
}

.service-card svg,
.capability svg {
  width: 32px;
  height: 32px;
  color: var(--amber-dark);
}

.service-card h3,
.capability h3 {
  margin-top: 18px;
  font-size: 1.28rem;
}

.service-card p,
.capability p,
.testimonial p,
.client-figure figcaption,
.map-panel figcaption {
  margin-top: 12px;
  color: var(--ink-soft);
}

.method-section {
  padding: var(--section) 0;
}

.method-grid {
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1fr);
}

.method-copy p {
  margin-top: 22px;
}

.text-link {
  width: max-content;
  gap: 8px;
  margin-top: 26px;
  color: var(--green);
  font-weight: 800;
}

.timeline {
  counter-reset: process;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  min-height: 220px;
  padding: 24px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
}

.timeline span {
  color: var(--amber-dark);
  font-size: 0.82rem;
  font-weight: 800;
}

.timeline strong {
  display: block;
  margin-top: 36px;
  font-size: 1.55rem;
}

.timeline p {
  margin-top: 12px;
  color: var(--ink-soft);
}

.capability-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.capability {
  min-height: 260px;
  padding: 24px;
}

.project-band,
.location-section {
  padding: var(--section) 0;
}

.project-grid,
.location-grid {
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1fr);
}

.project-copy p,
.planning-copy p,
.location-copy p {
  margin-top: 20px;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.project-tags span {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--green);
  background: rgba(255, 255, 255, 0.7);
  font-size: 0.86rem;
  font-weight: 700;
}

.client-proof-panel,
.location-panel {
  padding: clamp(22px, 3vw, 34px);
}

.panel-kicker {
  color: var(--amber-dark);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.3;
  text-transform: uppercase;
}

.client-name-grid,
.area-chip-grid {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.client-name-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.client-name-grid span,
.area-chip-grid span {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--surface-alt);
  font-weight: 800;
  line-height: 1.35;
}

.area-chip-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.location-panel {
  background:
    linear-gradient(135deg, rgba(216, 234, 242, 0.72), rgba(244, 247, 242, 0.94)),
    var(--surface);
}

.client-figure,
.map-panel {
  overflow: hidden;
  margin: 0;
}

.client-figure img,
.map-panel img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.client-figure figcaption,
.map-panel figcaption {
  margin: 0;
  padding: 14px 16px 18px;
  font-size: 0.9rem;
}

.planning-grid {
  grid-template-columns: minmax(0, 1.04fr) minmax(300px, 0.96fr);
}

.planning-image {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.planning-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  gap: 10px;
  color: var(--ink);
  font-weight: 700;
}

.check-list svg {
  width: 20px;
  height: 20px;
  color: var(--green);
  flex: 0 0 auto;
}

.testimonials {
  background: var(--charcoal);
  color: #fff;
}

.testimonials .section-heading p,
.testimonials .testimonial p,
.testimonials .testimonial footer {
  color: rgba(255, 255, 255, 0.72);
}

.testimonial {
  min-height: 250px;
  padding: 24px;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
}

.testimonial p {
  font-size: 1.05rem;
}

.testimonial footer {
  margin-top: 28px;
  font-weight: 800;
}

.text-link-light {
  color: #ffe3a3;
}

.location-copy address {
  margin: 20px 0 0;
  font-style: normal;
  font-size: 1.28rem;
  line-height: 1.5;
  font-weight: 800;
}

.hours {
  gap: 10px;
  margin: 22px 0;
  color: var(--green);
  font-weight: 800;
}

.hours svg {
  width: 22px;
  height: 22px;
}

.contact-section {
  background: linear-gradient(135deg, var(--green), var(--steel));
  color: #fff;
}

.blog-preview {
  padding: var(--section) 0;
}

.blog-card-grid,
.proof-grid,
.info-grid,
.quote-grid,
.article-grid,
.service-area-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.blog-card {
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.blog-card:hover,
.blog-card:focus-visible,
.article-card:hover,
.article-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.blog-card img,
.article-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 5 / 3;
  object-fit: cover;
}

.blog-card span,
.article-card span {
  display: block;
  margin: 18px 20px 8px;
  color: var(--amber-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.blog-card h3,
.article-card h3 {
  padding: 0 20px 22px;
  font-size: 1.24rem;
  line-height: 1.18;
}

.page-main {
  background: var(--surface);
}

.subpage-hero {
  position: relative;
  min-height: min(500px, 64svh);
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 106px clamp(16px, 5vw, 70px) 48px;
  color: #fff;
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(9, 15, 16, 0.94), rgba(9, 15, 16, 0.62)),
    var(--charcoal);
}

.subpage-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--hero-image, url("../img/aiden-hero.webp")) center / cover no-repeat;
  opacity: 0.34;
}

.subpage-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 44%;
  background: linear-gradient(0deg, rgba(9, 15, 16, 0.9), transparent);
}

.subpage-hero-inner {
  width: min(920px, 100%);
}

.subpage-hero h1 {
  font-size: clamp(2.65rem, 5.6vw, 5.4rem);
  line-height: 0.95;
}

.subpage-hero p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
}

.subpage-actions {
  margin-top: 28px;
}

.content-section {
  padding: var(--section) 0;
}

.content-section.alt {
  background: var(--surface-alt);
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.split-grid > div > h2 {
  font-size: clamp(2rem, 4.8vw, 4.2rem);
  line-height: 1;
}

.proof-card,
.info-card,
.quote-card {
  padding: 24px;
}

.proof-card svg,
.info-card svg,
.quote-card svg {
  width: 30px;
  height: 30px;
  color: var(--amber-dark);
}

.proof-card h2,
.info-card h2,
.quote-card h2 {
  margin-top: 18px;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.08;
}

.proof-card h3,
.info-card h3,
.quote-card h3 {
  margin-top: 16px;
  font-size: 1.18rem;
}

.proof-card p,
.info-card p,
.quote-card p,
.article-copy p,
.article-copy li {
  margin-top: 12px;
  color: var(--ink-soft);
}

.quote-card footer {
  margin-top: 22px;
  color: var(--green);
  font-weight: 900;
}

.client-directory {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.client-directory span {
  min-height: 76px;
  display: flex;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.35;
}

.client-board-image {
  overflow: hidden;
  margin: 0;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff;
}

.client-board-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.service-area-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.article-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.article-card {
  overflow: hidden;
}

.article-layout {
  width: min(860px, calc(100% - 32px));
  margin: 0 auto;
  padding: var(--section) 0;
}

.article-copy {
  font-size: 1.04rem;
}

.article-copy h2 {
  margin-top: 44px;
  font-size: clamp(1.8rem, 3.8vw, 3rem);
  line-height: 1.04;
}

.article-copy h3 {
  margin-top: 28px;
  font-size: 1.35rem;
}

.article-copy ul,
.article-copy ol {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding-left: 1.2rem;
}

.article-cta {
  margin-top: 44px;
  padding: 24px;
  border-radius: var(--radius);
  color: #fff;
  background: linear-gradient(135deg, var(--green), var(--steel));
}

.article-cta p {
  max-width: 620px;
  margin: 12px 0 20px;
  color: rgba(255, 255, 255, 0.76);
}

.contact-grid {
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
}

.contact-section .eyebrow {
  color: #ffe0a0;
}

.contact-copy p:not(.eyebrow) {
  max-width: 620px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.76);
}

.contact-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.contact-actions-large {
  gap: 14px;
}

.contact-action {
  min-height: 118px;
  min-width: 0;
  gap: 14px;
  padding: 20px 18px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.06)),
    rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 16px 34px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.contact-action:hover,
.contact-action:focus-visible {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.08)),
    rgba(255, 255, 255, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    0 20px 42px rgba(0, 0, 0, 0.16);
}

.contact-action svg {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  color: #f2bd70;
}

.contact-action strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
  font-size: 0.76rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.contact-action span {
  min-width: 0;
}

.contact-action > span {
  display: grid;
  gap: 2px;
}

.contact-value {
  display: block;
  color: currentColor;
  font-size: clamp(0.84rem, 1vw, 0.98rem);
  font-weight: 900;
  line-height: 1.15;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.page-main .contact-action {
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.72)),
    var(--surface);
  border-color: rgba(255, 255, 255, 0.82);
}

.page-main .contact-action strong {
  color: var(--ink);
}

.contact-intent-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.contact-intent-grid span {
  min-width: 0;
  padding: 16px;
  color: var(--ink-soft);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.58)),
    rgba(255, 255, 255, 0.48);
  box-shadow: 0 12px 32px rgba(23, 33, 31, 0.08);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
}

.contact-intent-grid strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
}

.location-copy address,
address.location-copy {
  margin: 20px 0 0;
  font-style: normal;
  font-size: 1.28rem;
  line-height: 1.5;
  font-weight: 800;
}

.site-footer {
  color: rgba(255, 255, 255, 0.74);
  background: var(--charcoal);
}

.footer-grid {
  grid-template-columns: minmax(260px, 1fr) auto auto;
  padding: 48px 0;
}

.footer-brand {
  color: #fff;
}

.site-footer p {
  max-width: 460px;
  margin-top: 18px;
}

.footer-links {
  display: grid;
  gap: 10px;
  font-weight: 700;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: #fff;
}

.social-links {
  gap: 10px;
}

.social-links a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  transition: transform 180ms ease, background 180ms ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  background: rgba(255, 255, 255, 0.1);
}

.social-links svg {
  width: 20px;
  height: 20px;
}

.footer-bottom {
  justify-content: space-between;
  gap: 18px;
  width: var(--shell);
  margin: 0 auto;
  padding: 18px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
}

.back-to-top {
  position: fixed;
  z-index: 80;
  right: 18px;
  bottom: 18px;
  width: 46px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--green);
  border-color: transparent;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 560ms ease, transform 560ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1020px) {
  .site-header {
    grid-template-columns: minmax(180px, 1fr) auto auto;
  }

  .nav-toggle {
    display: grid;
    order: 2;
  }

  .header-cta {
    order: 1;
  }

  .primary-nav {
    position: fixed;
    top: 92px;
    left: 16px;
    right: 16px;
    display: grid;
    gap: 4px;
    padding: 10px;
    color: var(--ink);
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.8)),
      rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.76);
    border-radius: 22px;
    box-shadow:
      0 18px 54px rgba(16, 24, 23, 0.14),
      inset 0 1px 0 rgba(255, 255, 255, 0.92);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
    backdrop-filter: blur(30px) saturate(185%);
    -webkit-backdrop-filter: blur(30px) saturate(185%);
  }

  .primary-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .primary-nav a {
    padding: 14px 12px;
    border-radius: 16px;
    border-bottom: 0;
    background: rgba(255, 255, 255, 0.28);
    color: var(--ink);
  }

  .primary-nav a:last-child {
    border-bottom: 0;
  }

  .intro-grid,
  .method-grid,
  .project-grid,
  .planning-grid,
  .location-grid,
  .contact-grid,
  .footer-grid,
  .split-grid {
    grid-template-columns: 1fr;
  }

  .capability-grid,
  .contact-actions,
  .contact-intent-grid,
  .client-directory,
  .blog-card-grid,
  .proof-grid,
  .info-grid,
  .quote-grid,
  .article-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cinematic-scrub {
    min-height: 260svh;
  }

  .scrub-stage {
    grid-template-columns: 1fr;
    align-content: center;
    gap: 22px;
  }

  .scrub-reel {
    width: min(100%, 520px);
    min-height: 230px;
  }

  .scrub-card {
    min-height: 230px;
  }

  .scrub-photo-one {
    width: min(70vw, 620px);
    right: -14vw;
    top: 12vh;
  }

  .scrub-photo-two {
    width: min(48vw, 420px);
    right: 3vw;
    bottom: 12vh;
  }
}

@media (max-width: 760px) {
  :root {
    --section: clamp(2.8rem, 9vw, 3.8rem);
    --shell: min(1180px, calc(100% - 28px));
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr) auto auto;
    min-height: 70px;
    padding: 10px 14px;
    gap: 10px;
    border-radius: 22px;
  }

  [id] {
    scroll-margin-top: 82px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-mark img {
    width: 34px;
    height: 34px;
  }

  .brand small,
  .header-cta span {
    display: none;
  }

  .header-cta {
    width: 44px;
    padding: 0;
  }

  .primary-nav {
    top: 92px;
  }

  .hero {
    min-height: 100svh;
    padding: 104px 16px 30px;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 4.2rem);
  }

  .hero-inner {
    padding-bottom: 16px;
  }

  .hero-copy {
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .hero-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-metrics div {
    min-height: 68px;
    padding: 10px 8px;
    border-right: 1px solid rgba(255, 255, 255, 0.14);
    border-bottom: 0;
  }

  .hero-metrics div:last-child {
    border-right: 0;
  }

  .hero-metrics strong {
    font-size: 1.55rem;
  }

  .hero-metrics span {
    font-size: 0.72rem;
    line-height: 1.25;
  }

  .cinematic-scrub {
    min-height: auto;
  }

  .scrub-stage {
    position: relative;
    min-height: auto;
    gap: 18px;
    padding: 70px 16px 42px;
  }

  .scrub-copy h2 {
    font-size: clamp(2.55rem, 12vw, 3.45rem);
    line-height: 0.9;
  }

  .scrub-copy .eyebrow {
    margin-bottom: 10px;
  }

  .scrub-reel {
    display: grid;
    gap: 10px;
    min-height: auto;
  }

  .scrub-card {
    position: relative;
    inset: auto;
    visibility: visible !important;
    opacity: 1 !important;
    transform: none !important;
    min-height: auto;
    padding: 16px;
  }

  .scrub-word {
    display: inline-block;
    visibility: visible !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    margin-right: 0.18em;
  }

  .scrub-card span {
    top: 16px;
    left: 18px;
  }

  .scrub-card h3 {
    font-size: 1.6rem;
  }

  .scrub-card p {
    font-size: 0.92rem;
    line-height: 1.55;
  }

  .scrub-photo-one {
    width: 78vw;
    right: -25vw;
    top: 14vh;
    opacity: 0.28;
  }

  .scrub-photo-two {
    width: 58vw;
    right: -16vw;
    bottom: 18vh;
    opacity: 0.3;
  }

  .scrub-mask {
    display: none;
  }

  .scrub-visual {
    display: none;
  }

  .scrub-progress {
    display: none;
  }

  .service-grid,
  .capability-grid,
  .testimonial-grid,
  .timeline,
  .contact-actions,
  .contact-intent-grid,
  .client-name-grid,
  .area-chip-grid,
  .client-directory,
  .blog-card-grid,
  .proof-grid,
  .info-grid,
  .quote-grid,
  .article-grid,
  .service-area-grid {
    grid-template-columns: 1fr;
  }

  .intro-grid h2,
  .section-heading h2,
  .method-copy h2,
  .project-copy h2,
  .planning-copy h2,
  .location-copy h2,
  .contact-copy h2 {
    font-size: clamp(1.75rem, 7.4vw, 2.35rem);
    line-height: 1.06;
  }

  .intro-grid p,
  .section-heading p,
  .method-copy p,
  .project-copy p,
  .planning-copy p,
  .location-copy p,
  .service-card p,
  .capability p,
  .testimonial p {
    line-height: 1.62;
  }

  .intro-band {
    padding: 3.25rem 0;
  }

  .section-heading {
    margin-bottom: 26px;
  }

  .service-grid,
  .capability-grid,
  .testimonial-grid {
    gap: 14px;
  }

  .service-card div,
  .timeline li,
  .capability,
  .testimonial {
    padding: 20px;
  }

  .service-card h3,
  .capability h3 {
    margin-top: 14px;
  }

  .timeline strong {
    margin-top: 24px;
  }

  .timeline li,
  .capability,
  .testimonial,
  .contact-action {
    min-height: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .subpage-hero {
    min-height: 430px;
    padding: 94px 16px 38px;
  }

  .subpage-hero h1 {
    font-size: clamp(2.15rem, 10.5vw, 3.35rem);
    line-height: 0.98;
  }

  .subpage-hero p:not(.eyebrow) {
    margin-top: 14px;
    line-height: 1.55;
  }

  .client-proof-panel,
  .location-panel,
  .proof-card,
  .info-card,
  .quote-card,
  .article-cta {
    padding: 20px;
  }

  .article-layout {
    width: min(calc(100% - 28px), 860px);
  }
}

@media (max-width: 520px) {
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: min(100%, 260px);
  }

  .hero-actions .button {
    width: 100%;
    padding: 0 14px;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
