:root {
  --bg: #000000;
  --surface: #070707;
  --surface-soft: rgba(255, 255, 255, 0.04);
  --line: rgba(255, 255, 255, 0.08);
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.82);
  --red: #eb2418;
  --red-dark: #7b180f;
  --grey: #888888;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  --radius: 26px;
  --shell: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Barlow", sans-serif;
}

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

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

.site-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 18% 16%, rgba(235, 36, 24, 0.08), transparent 14%),
    radial-gradient(circle at 82% 8%, rgba(235, 36, 24, 0.06), transparent 16%),
    linear-gradient(180deg, #000000 0%, #040404 100%);
}

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

.hero-frame {
  padding-top: 0;
}

.hero-surface {
  background: var(--surface);
  box-shadow: var(--shadow);
  width: 100%;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  gap: 28px;
  width: 100%;
  margin-inline: 0;
  padding: 6px 34px 4px;
  background: #000;
}

.topbar-home {
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.brand {
  width: 252px;
  flex: 0 0 auto;
  line-height: 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 42px;
  flex-wrap: wrap;
  margin-left: auto;
}

.nav a {
  padding: 0;
  border-radius: 0;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  transition: color 180ms ease, transform 180ms ease, opacity 180ms ease;
}

.nav a:hover,
.nav a.active {
  color: #fff;
  opacity: 0.86;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 46px;
  height: 46px;
  margin-left: auto;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  color: #fff;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.topbar.menu-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.topbar.menu-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.topbar.menu-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.button,
.text-link {
  font-weight: 700;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 26px;
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.button:hover,
.text-link:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(180deg, #d5462f 0%, #922616 100%);
  color: #fff;
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.hero {
  position: relative;
  min-height: 570px;
  overflow: hidden;
}

.hero-media,
.hero-media video,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.42) 45%, rgba(0, 0, 0, 0.74) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.52) 100%);
}

.hero-accent {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 54%;
  height: 104px;
  pointer-events: none;
}

.hero-accent-base,
.hero-accent-stripes,
.hero-accent-red {
  position: absolute;
  display: block;
}

.hero-accent-base {
  left: 0;
  right: 10%;
  bottom: 42px;
  height: 10px;
  background: linear-gradient(90deg, rgba(230, 230, 230, 0.95), rgba(155, 155, 155, 0.9));
}

.hero-accent-stripes {
  left: 0;
  bottom: 0;
  width: 130px;
  height: 54px;
  background: repeating-linear-gradient(
    -45deg,
    #4f4f52 0 10px,
    #202124 10px 18px
  );
  clip-path: polygon(0 0, 100% 0, 72% 100%, 0 100%);
}

.hero-accent-red {
  left: 72px;
  right: 0;
  bottom: 0;
  height: 58px;
  background: linear-gradient(90deg, #d72c1f 0%, #f24438 42%, #cb2015 100%);
  clip-path: polygon(0 10%, 100% 26%, 82% 100%, 0 100%, 10% 58%);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-content-home {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  min-height: 570px;
  gap: 28px;
  padding: 8px max(18px, calc((100vw - 1180px) / 2 + 10px)) 56px;
}

.hero-copy {
  max-width: 560px;
  align-self: start;
  padding-top: 42px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-kicker::before {
  content: "";
  width: 34px;
  height: 2px;
  background: linear-gradient(90deg, #ff5a4a, rgba(255, 90, 74, 0.18));
}

h1,
h2 {
  margin: 0;
  font-family: "Syne", sans-serif;
  font-weight: 800;
  text-transform: none;
  line-height: 0.93;
}

h1 {
  max-width: 8ch;
  color: #ff483c;
  font-size: clamp(58px, 9vw, 88px);
}

.hero-title {
  display: grid;
}

.hero-title span {
  display: block;
}

h2 {
  font-size: clamp(34px, 5vw, 56px);
  text-transform: uppercase;
  line-height: 0.98;
}

h3 {
  margin: 0 0 12px;
  font-size: 28px;
}

.eyebrow {
  margin: 0 0 12px;
  color: #ff6756;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 800;
}

.eyebrow.small {
  font-size: 11px;
}

.lede,
.section-head p,
.panel p,
.footer p,
.intro-strip p,
.cta-band p,
.feature-list li {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.hero-lede {
  max-width: 560px;
  margin-top: 18px;
  margin-bottom: 34px;
}

.hero-actions-stack {
  align-self: end;
  padding-bottom: 4px;
}

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

.brand-ribbon {
  margin-top: 20px;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #050505;
}

.brand-track {
  display: flex;
  align-items: center;
  gap: 30px;
  width: max-content;
  padding: 14px 0;
  animation: ribbon-scroll 32s linear infinite;
}

.brand-track img {
  flex: 0 0 auto;
  height: 52px;
  width: auto;
  max-width: none;
  opacity: 0.95;
  filter: brightness(0) invert(1);
}

.intro-strip article,
.panel,
.cta-band {
  background: #0a0a0a;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 260ms cubic-bezier(0.2, 0.8, 0.2, 1),
    border-color 260ms ease,
    box-shadow 260ms ease,
    background-color 260ms ease;
}

.intro-strip article,
.panel {
  padding: 28px;
}

.intro-strip article::before,
.panel::before,
.cta-band::before {
  content: "";
  position: absolute;
  inset: -35%;
  z-index: -1;
  background:
    radial-gradient(
      circle at var(--mx, 50%) var(--my, 50%),
      rgba(255, 84, 66, 0.28) 0%,
      rgba(201, 32, 20, 0.16) 18%,
      rgba(0, 0, 0, 0) 48%
    );
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 280ms ease, transform 360ms ease;
  pointer-events: none;
}

.intro-strip article::after,
.panel::after,
.cta-band::after {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)),
    linear-gradient(135deg, rgba(235, 36, 24, 0.06), rgba(0, 0, 0, 0.04) 55%);
  opacity: 0;
  transition: opacity 260ms ease;
  pointer-events: none;
}

.intro-strip article:hover,
.intro-strip article:focus-within,
.panel:hover,
.panel:focus-within,
.cta-band:hover,
.cta-band:focus-within {
  transform: translateY(-6px) scale(1.01);
  border-color: rgba(255, 92, 74, 0.32);
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.58),
    0 0 0 1px rgba(235, 36, 24, 0.08);
}

.intro-strip article:hover::before,
.intro-strip article:focus-within::before,
.panel:hover::before,
.panel:focus-within::before,
.cta-band:hover::before,
.cta-band:focus-within::before {
  opacity: 1;
  transform: scale(1);
}

.intro-strip article:hover::after,
.intro-strip article:focus-within::after,
.panel:hover::after,
.panel:focus-within::after,
.cta-band:hover::after,
.cta-band:focus-within::after {
  opacity: 1;
}

.section,
.page-main {
  padding-top: 78px;
}

.section-head {
  max-width: 800px;
  margin-bottom: 26px;
}

.carousel-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

.carousel-dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.26);
  transition: width 220ms ease, background-color 220ms ease, transform 220ms ease;
  cursor: pointer;
}

.carousel-dot.is-active {
  width: 24px;
  background: linear-gradient(90deg, #ff5a4a, #eb2418);
}

.pdf-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  gap: 18px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 4px 0 14px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.28) rgba(255, 255, 255, 0.06);
}

.pdf-carousel::-webkit-scrollbar {
  height: 10px;
}

.pdf-carousel::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
}

.pdf-carousel::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, rgba(235, 36, 24, 0.78), rgba(255, 255, 255, 0.18));
  border-radius: 999px;
}

.pdf-slide {
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.pdf-frame {
  width: 100%;
  height: min(78vw, 1120px);
  border: 0;
  border-radius: 26px;
  background: #111;
  box-shadow: var(--shadow);
}

.pdf-image {
  display: block;
  object-fit: contain;
  object-position: top center;
  background:
    radial-gradient(circle at top, rgba(255, 92, 74, 0.08), transparent 42%),
    #0b0b0b;
}

.pdf-actions {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.service-grid {
  display: grid;
  gap: 18px;
}

.service-showcase {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(300px, 31vw);
  grid-template-columns: none;
  gap: 22px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 4px 4px 20px;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 4px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.28) rgba(255, 255, 255, 0.06);
}

.project-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 18px;
}

.work-showcase {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(320px, 32vw);
  grid-template-columns: none;
  align-items: stretch;
  gap: 22px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 4px 4px 20px;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 4px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.28) rgba(255, 255, 255, 0.06);
}

.project-grid-page {
  grid-template-columns: repeat(3, 1fr);
  padding: 28px 0 88px;
}

.project-grid-page .project-card {
  min-height: 420px;
}

.project-card {
  display: block;
  position: relative;
  min-height: 320px;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.project-card-large {
  min-height: 520px;
  grid-row: span 2;
}

.work-showcase .project-card {
  min-height: 620px;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.work-showcase::-webkit-scrollbar {
  height: 10px;
}

.work-showcase::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
}

.work-showcase::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, rgba(235, 36, 24, 0.78), rgba(255, 255, 255, 0.18));
  border-radius: 999px;
}

.project-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.project-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.06) 0%, rgba(0, 0, 0, 0.24) 36%, rgba(0, 0, 0, 0.88) 100%);
}

.project-content {
  position: absolute;
  inset: auto 0 0;
  padding: 24px;
}

.project-tag {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.project-card h3 {
  margin: 0 0 8px;
  font-size: 28px;
}

.project-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.5;
}

.project-link {
  width: fit-content;
  min-width: 180px;
}

.work-cta-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)),
    linear-gradient(135deg, rgba(235, 36, 24, 0.22), rgba(0, 0, 0, 0.24));
}

.work-cta-card .project-overlay {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.16) 0%, rgba(0, 0, 0, 0.36) 36%, rgba(0, 0, 0, 0.92) 100%);
}

.project-card:hover img,
.project-card:focus-within img {
  transform: scale(1.04);
}

.project-video {
  width: 100%;
  border-radius: 18px;
  background: #000;
}

.service-tile {
  position: relative;
  min-height: 620px;
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  isolation: isolate;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.service-showcase::-webkit-scrollbar {
  height: 10px;
}

.service-showcase::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
}

.service-showcase::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, rgba(235, 36, 24, 0.78), rgba(255, 255, 255, 0.18));
  border-radius: 999px;
}

.service-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.service-tile-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.06) 0%, rgba(0, 0, 0, 0.18) 36%, rgba(0, 0, 0, 0.88) 100%);
}

.service-tile-content {
  position: absolute;
  inset: auto 0 0;
  padding: 24px;
}

.service-badge {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.service-tile h3 {
  margin: 0 0 8px;
  font-size: 22px;
}

.service-tile p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 16px;
  line-height: 1.5;
}

.service-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: 22px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: transform 200ms ease, background-color 200ms ease, border-color 200ms ease;
}

.service-link::after {
  content: "→";
  font-size: 20px;
  line-height: 1;
}

.service-tile:hover img,
.service-tile:focus-within img {
  transform: scale(1.04);
}

.service-tile:hover .service-link,
.service-tile:focus-within .service-link {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.74);
}

.three-up {
  grid-template-columns: repeat(3, 1fr);
}

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

.number {
  display: inline-block;
  margin-bottom: 16px;
  color: #ff5a4a;
  font-size: 13px;
  letter-spacing: 0.2em;
  font-weight: 800;
}

.text-link {
  display: inline-block;
  margin-top: 14px;
  color: #fff;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: center;
}

.mosaic {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 14px;
}

.mosaic img,
.gallery-wall img,
.about-image {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.mosaic .tall {
  grid-row: span 2;
}

.mosaic .wide {
  grid-column: span 2;
}

.stacked-panels {
  display: grid;
  gap: 18px;
}

.feature-list {
  margin: 0;
  padding-left: 18px;
}

.wa-form {
  margin-top: 22px;
}

.wa-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.field {
  display: grid;
  gap: 8px;
}

.field-full {
  grid-column: 1 / -1;
}

.field span {
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field-help {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  line-height: 1.4;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  font: inherit;
  outline: none;
  transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.field select {
  appearance: none;
}

.field select[multiple] {
  min-height: 220px;
  padding-block: 10px;
}

.field textarea {
  resize: vertical;
  min-height: 132px;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.checkbox-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.checkbox-pill:hover {
  border-color: rgba(235, 36, 24, 0.4);
  background: rgba(255, 255, 255, 0.05);
}

.checkbox-pill input {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: #eb2418;
}

.checkbox-pill:has(input:checked) {
  border-color: rgba(235, 36, 24, 0.72);
  background: rgba(235, 36, 24, 0.12);
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(235, 36, 24, 0.72);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 0 3px rgba(235, 36, 24, 0.14);
}

.wa-form-actions {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.wa-form-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.5;
}

.quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.quick-actions .button {
  min-height: 48px;
  padding: 0 20px;
}

.map-panel {
  padding: 10px;
}

.map-panel iframe {
  width: 100%;
  min-height: 360px;
  border: 0;
  border-radius: 20px;
}

.cta-band {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 20px;
  margin: 78px auto;
  padding: 32px;
}

.page-hero {
  padding: 34px 0 12px;
}

.project-page-head {
  padding: 26px 0 10px;
}

.project-page-head h1 {
  max-width: 12ch;
  color: #fff;
  font-size: clamp(40px, 7vw, 60px);
}

.project-page-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  align-items: start;
  padding: 18px 0 72px;
}

.blog-feature {
  padding-top: 6px;
}

.blog-feature-panel,
.blog-card,
.article-body {
  display: grid;
  gap: 18px;
}

.blog-card-tag,
.breadcrumbs {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.breadcrumbs {
  text-transform: none;
  letter-spacing: 0.02em;
}

.breadcrumbs a {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: #fff;
}

.blog-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
  padding: 18px 0 72px;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.article-meta span {
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.article-body h2 {
  font-size: clamp(32px, 4vw, 42px);
}

.article-body p {
  margin: 0;
}

.article-cta {
  margin-top: 10px;
}

.project-video-panel,
.project-copy-panel {
  padding: 18px;
}

.page-hero h1 {
  max-width: 11ch;
  color: #fff;
  font-size: clamp(40px, 7vw, 62px);
}

.narrow {
  max-width: 760px;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 0 0 42px;
}

.footer-logo {
  width: 180px;
  margin-bottom: 12px;
}

.footer-links {
  display: grid;
  gap: 10px;
  justify-items: end;
  align-content: start;
}

.gallery-wall {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 28px 0 88px;
}

@keyframes ribbon-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.gallery-wall .tall {
  grid-row: span 2;
}

.gallery-wall .wide {
  grid-column: span 2;
}

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

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

@media (max-width: 1080px) {
  .topbar,
  .hero-content-home,
  .intro-strip,
  .service-showcase,
  .project-grid,
  .blog-layout,
  .project-page-layout,
  .three-up,
  .two-up,
  .split-section,
  .cta-band,
  .gallery-wall,
  .mosaic {
    grid-template-columns: 1fr;
  }

  .topbar {
    width: 100%;
    padding: 8px 20px 6px;
  }

  .nav {
    justify-content: flex-start;
    gap: 22px;
  }

  .hero {
    min-height: 720px;
  }

  .hero-content-home {
    min-height: 720px;
    padding: 24px 24px 88px;
  }

  .hero-copy {
    padding-top: 12px;
  }

  .hero-actions-stack {
    justify-self: start;
  }

  .hero-accent {
    width: 62%;
    height: 92px;
  }

  .service-showcase {
    grid-auto-columns: minmax(340px, 62vw);
  }

  .pdf-frame {
    height: min(96vw, 980px);
  }

  .service-tile {
    min-height: 520px;
  }

  .brand-track img {
    height: 40px;
  }

  .project-card-large {
    min-height: 420px;
    grid-row: auto;
  }

  .project-card {
    min-height: 320px;
  }

  .work-showcase .project-card {
    min-height: 420px;
  }

  .gallery-wall .tall,
  .gallery-wall .wide,
  .mosaic .tall,
  .mosaic .wide {
    grid-column: auto;
    grid-row: auto;
  }

  .footer {
    flex-direction: column;
  }

  .footer-links {
    justify-items: start;
  }
}

@media (max-width: 720px) {
  :root {
    --shell: min(100% - 18px, 1180px);
  }

  .hero-frame {
    padding-top: 12px;
  }

  .brand {
    width: 182px;
  }

  .topbar {
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 10px 14px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 14px;
    right: 14px;
    z-index: 30;
    grid-template-columns: 1fr;
    gap: 0;
    margin-left: 0;
    padding: 10px 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    background: rgba(5, 5, 5, 0.98);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
  }

  .topbar.menu-open .nav {
    display: grid;
  }

  .nav a {
    padding: 14px 16px;
    font-size: 15px;
    line-height: 1.2;
  }

  h1 {
    max-width: none;
    font-size: clamp(30px, 11vw, 42px);
    line-height: 0.88;
    overflow-wrap: normal;
  }

  h2 {
    font-size: 38px;
  }

  .lede,
  .section-head p,
  .panel p,
  .footer p,
  .intro-strip p,
  .cta-band p,
  .feature-list li {
    font-size: 16px;
  }

  .intro-strip article,
  .panel,
  .cta-band {
    padding: 22px;
  }

  .hero-cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-cta-row .button,
  .quick-actions .button {
    width: 100%;
  }

  .wa-form-grid {
    grid-template-columns: 1fr;
  }

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

  .map-panel iframe {
    min-height: 300px;
  }

  .pdf-frame {
    height: auto;
    aspect-ratio: 0.71;
    min-height: 0;
    border-radius: 20px;
  }

  .pdf-carousel {
    gap: 12px;
    padding-bottom: 10px;
  }

  .pdf-actions .button {
    width: 100%;
  }

  .hero-accent {
    width: 70%;
    height: 56px;
  }

  .hero {
    min-height: 620px;
  }

  .hero-content-home {
    min-height: 620px;
    gap: 18px;
    padding: 42px 14px 82px;
  }

  .hero-copy {
    width: min(318px, calc(100vw - 32px));
    max-width: none;
    padding-top: 54px;
    padding-inline: 0;
    padding-bottom: 0;
    background: none;
    border: 0;
    border-radius: 0;
    backdrop-filter: none;
    box-shadow: none;
  }

  .hero-kicker {
    margin-bottom: 12px;
    font-size: 9px;
    letter-spacing: 0.2em;
  }

  .hero-kicker::before {
    width: 22px;
  }

  .hero-lede {
    max-width: 260px;
    margin-top: 14px;
    margin-bottom: 0;
    font-size: 14px;
    line-height: 1.45;
  }

  .hero-title {
    gap: 2px;
  }

  .hero-title span {
    white-space: nowrap;
  }

  .carousel-dots {
    margin-top: 10px;
  }

  .hero-actions-stack {
    justify-self: start;
    margin-top: 12px;
  }

  .hero-accent-base {
    bottom: 24px;
    height: 7px;
  }

  .hero-accent-stripes {
    width: 90px;
    height: 34px;
  }

  .hero-accent-red {
    left: 48px;
    height: 36px;
  }

  .service-tile {
    min-height: 460px;
    border-radius: 26px;
  }

  .service-showcase {
    grid-auto-columns: calc(100vw - 28px);
    gap: 16px;
    padding: 4px 0 14px;
    scroll-padding-left: 0;
  }

  .project-card {
    border-radius: 24px;
  }

  .project-grid-page {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 20px 0 56px;
  }

  .project-grid-page .project-card {
    min-height: 420px;
  }

  .project-content {
    padding: 18px;
  }

  .project-card h3 {
    font-size: 24px;
  }

  .article-meta {
    gap: 8px;
  }

  .article-meta span {
    width: fit-content;
    font-size: 12px;
  }

  .work-showcase {
    grid-auto-columns: calc(100vw - 28px);
    gap: 16px;
    padding: 4px 0 14px;
    scroll-padding-left: 0;
  }

  .project-video-panel,
  .project-copy-panel {
    padding: 16px;
  }
}
