:root {
  --black: #070707;
  --coal: #111111;
  --charcoal: #191818;
  --steel: #b9b8b2;
  --concrete: #e7e1d2;
  --muted: #aaa49a;
  --gold: #bd8b3c;
  --gold-bright: #e1b360;
  --rust: #7f3e24;
  --line: rgba(225, 179, 96, 0.28);
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.32);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 0%, rgba(189, 139, 60, 0.13), transparent 32rem),
    linear-gradient(135deg, #090909, #1a1714 45%, #0f1010);
  color: var(--concrete);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 32;
  display: grid;
  grid-template-columns: minmax(250px, auto) 1fr minmax(150px, auto);
  align-items: center;
  gap: 24px;
  min-height: 78px;
  padding: 12px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(225, 179, 96, 0.22);
  background: rgba(8, 8, 8, 0.88);
  backdrop-filter: blur(18px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand {
  justify-self: start;
  white-space: nowrap;
}

.brand img {
  width: 54px;
  height: 54px;
  border: 1px solid var(--line);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 3px rgba(189, 139, 60, 0.12);
}

.brand strong,
.footer-brand span {
  display: block;
  color: #fff7e8;
  font-weight: 800;
  line-height: 1.05;
}

.brand small {
  color: var(--gold-bright);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
}

.site-nav a,
.services-toggle {
  min-width: 84px;
  padding: 10px 12px;
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: #ddd8ce;
  font-size: 0.92rem;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.services-toggle:hover,
.services-toggle:focus-visible {
  background: rgba(225, 179, 96, 0.12);
  color: #fff;
  outline: none;
}

.site-nav a.is-current,
.services-toggle.is-current {
  color: #fff;
  box-shadow: inset 0 -2px 0 var(--gold-bright);
}

.nav-item {
  position: relative;
}

.services-toggle::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.services-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  z-index: 30;
  display: none;
  min-width: 260px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(8, 8, 8, 0.98);
  box-shadow: var(--shadow);
  transform: translateX(-50%);
}

.services-menu::before {
  position: absolute;
  top: -11px;
  left: 0;
  right: 0;
  height: 11px;
  content: "";
}

.nav-services.is-open .services-menu {
  display: grid;
}

.services-menu a {
  min-width: 0;
  width: 100%;
  padding: 11px 12px;
  text-align: left;
}

.header-call {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--gold);
  border-radius: 4px;
  color: #fff4dd;
  font-weight: 800;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
}

.menu-toggle span {
  display: block;
  flex: 0 0 auto;
  width: 20px;
  height: 2px;
  margin: 2px 0;
  background: currentColor;
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 28;
  border: 0;
  background: rgba(0, 0, 0, 0.56);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}

.nav-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 88svh;
  padding: 132px clamp(20px, 6vw, 88px) 148px;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(7, 7, 7, 0.96) 0%, rgba(7, 7, 7, 0.74) 46%, rgba(7, 7, 7, 0.42) 100%),
    radial-gradient(circle at 82% 42%, rgba(225, 179, 96, 0.22), transparent 25rem);
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  z-index: -1;
  content: "";
  background:
    linear-gradient(to top, rgba(7, 7, 7, 0.9), transparent),
    repeating-linear-gradient(115deg, rgba(225, 179, 96, 0.08) 0 2px, transparent 2px 17px);
}

.hero-bg {
  position: absolute;
  inset: 78px 0 0 auto;
  z-index: -2;
  width: min(58vw, 760px);
  min-width: 420px;
  opacity: 0.64;
  filter: saturate(0.9) contrast(1.08);
}

.hero-bg img {
  width: 100%;
  height: auto;
  transform: translateX(9%) rotate(-2deg);
}

.hero-content {
  width: min(740px, 100%);
  position: relative;
  z-index: 1;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold-bright);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

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

h1,
h2 {
  color: #fff8eb;
  line-height: 0.98;
}

h1 {
  max-width: 10ch;
  margin-bottom: 24px;
  font-family: Anton, Impact, sans-serif;
  font-size: 8.4rem;
  font-weight: 400;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 18px;
  font-size: 3.7rem;
}

h3 {
  color: #fff5e5;
  font-size: 1.2rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 640px;
  margin-bottom: 30px;
  color: #ded7ca;
  font-size: 1.18rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 4px;
  font-weight: 850;
  text-align: center;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

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

.button-primary {
  border: 1px solid #f3c670;
  background: linear-gradient(180deg, #e2b75f, #9d6d25);
  color: #120d07;
  box-shadow: 0 12px 30px rgba(189, 139, 60, 0.2);
}

.button-ghost {
  border: 1px solid rgba(231, 225, 210, 0.42);
  background: rgba(231, 225, 210, 0.06);
  color: #fff8ec;
}

.hero-strip {
  position: absolute;
  right: clamp(18px, 6vw, 88px);
  bottom: 28px;
  left: clamp(18px, 6vw, 88px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  background: rgba(10, 10, 10, 0.78);
  box-shadow: var(--shadow);
}

.hero-strip span {
  min-height: 58px;
  display: grid;
  place-items: center;
  padding: 10px;
  border-right: 1px solid rgba(225, 179, 96, 0.18);
  color: #eee9df;
  font-size: 0.84rem;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.hero-strip span:last-child {
  border-right: 0;
}

.section-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.section-band {
  background:
    linear-gradient(135deg, rgba(231, 225, 210, 0.95), rgba(191, 184, 169, 0.94)),
    repeating-linear-gradient(45deg, rgba(0, 0, 0, 0.04) 0 2px, transparent 2px 16px);
  color: #1f1d1a;
}

.intro {
  padding: 54px 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: center;
}

.section-band .section-kicker {
  color: #80551c;
}

.section-band h2 {
  color: #151412;
}

.intro p:last-child {
  margin-bottom: 0;
  color: #3f3930;
  font-size: 1.05rem;
}

.section-block {
  padding: 92px 0;
  background: rgba(9, 9, 9, 0.46);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-heading p:last-child,
.contact-copy p,
.projects p {
  color: var(--muted);
}

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

.service-card {
  display: block;
  min-height: 254px;
  padding: 24px;
  border: 1px solid rgba(231, 225, 210, 0.12);
  border-radius: 6px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015)),
    #111;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

.service-card:hover {
  border-color: rgba(225, 179, 96, 0.52);
  transform: translateY(-2px);
}

.service-card:focus-visible {
  border-color: var(--gold-bright);
  outline: 2px solid rgba(225, 179, 96, 0.32);
}

.service-number {
  display: inline-flex;
  width: 44px;
  height: 34px;
  align-items: center;
  justify-content: center;
  margin-bottom: 34px;
  border-bottom: 2px solid var(--gold-bright);
  color: var(--gold-bright);
  font-weight: 900;
}

.service-card p {
  margin-bottom: 0;
  color: #bdb6aa;
}

.proof {
  padding: 42px 0;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(7, 7, 7, 0.16);
}

.proof-item {
  min-height: 142px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.38);
}

.proof-item strong,
.proof-item span {
  display: block;
}

.proof-item strong {
  margin-bottom: 10px;
  color: #111;
  font-size: 1.2rem;
}

.proof-item span {
  color: #4a443c;
}

.process-grid,
.contact-grid,
.projects-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 56px;
}

.sticky-heading {
  position: sticky;
  top: 110px;
  align-self: start;
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline article {
  position: relative;
  min-height: 158px;
  padding: 24px 24px 24px 88px;
  border: 1px solid rgba(231, 225, 210, 0.12);
  border-radius: 6px;
  background: #121212;
}

.timeline span {
  position: absolute;
  top: 24px;
  left: 24px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-bright);
  font-weight: 900;
}

.timeline p {
  margin-bottom: 0;
  color: #bdb6aa;
}

.projects {
  position: relative;
  padding: 92px 0;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(9, 9, 9, 0.92), rgba(9, 9, 9, 0.72)),
    url("assets/demo1-logo.webp") right -120px center / min(640px, 65vw) no-repeat,
    #0e0d0c;
  border-block: 1px solid var(--line);
}

.section-link {
  width: fit-content;
  margin-top: 10px;
}

.page-hero {
  position: relative;
  padding: 154px 0 76px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(7, 7, 7, 0.95), rgba(7, 7, 7, 0.78)),
    url("assets/demo1-logo.webp") right -90px center / min(520px, 52vw) no-repeat,
    #0a0a0a;
}

.page-hero .section-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(260px, 0.5fr);
  gap: 40px;
  align-items: end;
}

.page-hero h1 {
  max-width: 11ch;
  margin-bottom: 18px;
  font-size: 5.5rem;
}

.page-hero p {
  max-width: 720px;
  margin-bottom: 0;
  color: #d6cfc3;
  font-size: 1.12rem;
}

.page-hero-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(231, 225, 210, 0.08);
  box-shadow: var(--shadow);
}

.page-hero-card strong,
.page-hero-card span {
  display: block;
}

.page-hero-card strong {
  color: var(--gold-bright);
  font-size: 1.6rem;
  line-height: 1;
}

.page-hero-card span {
  margin-top: 8px;
  color: #d8d0c4;
}

.service-subnav {
  position: sticky;
  top: 78px;
  z-index: 15;
  border-bottom: 1px solid rgba(7, 7, 7, 0.16);
  background: rgba(231, 225, 210, 0.96);
}

.service-subnav .section-inner {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-block: 12px;
}

.service-subnav a,
.service-subnav button {
  flex: 0 0 auto;
  padding: 9px 12px;
  border: 1px solid rgba(17, 17, 17, 0.15);
  border-radius: 4px;
  background: transparent;
  color: #231f19;
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
  cursor: pointer;
}

.service-subnav a:hover,
.service-subnav a:focus-visible,
.service-subnav a.is-active,
.service-subnav button:hover,
.service-subnav button:focus-visible,
.service-subnav button.is-active {
  border-color: #9d6d25;
  background: #14120f;
  color: #fff3dc;
  outline: none;
}

.content-grid,
.project-list,
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 52px;
}

.content-panel,
.project-card,
.about-panel {
  padding: 26px;
  border: 1px solid rgba(231, 225, 210, 0.12);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.045);
}

.content-panel p,
.project-card p,
.about-panel p {
  color: #bdb6aa;
}

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

.detail-list li {
  padding: 16px 18px;
  border-left: 4px solid var(--gold);
  background: rgba(231, 225, 210, 0.08);
  color: #ddd5c8;
}

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

.feature-tile {
  min-height: 170px;
  padding: 22px;
  border: 1px solid rgba(231, 225, 210, 0.12);
  border-radius: 6px;
  background: #111;
}

.feature-tile span {
  display: block;
  margin-bottom: 18px;
  color: var(--gold-bright);
  font-weight: 900;
}

.feature-tile p {
  margin-bottom: 0;
  color: #bdb6aa;
}

.cta-band {
  padding: 58px 0;
  border-top: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(231, 225, 210, 0.95), rgba(202, 193, 176, 0.95));
  color: #16130f;
}

.cta-band .section-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-band h2 {
  max-width: 700px;
  margin-bottom: 0;
  color: #16130f;
  font-size: 2.8rem;
}

.project-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--gold-bright);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.contact-page-details {
  margin-top: 0;
}

.detail-button {
  margin-top: 18px;
}

.deep-section {
  padding: 82px 0;
}

.deep-section .section-heading {
  max-width: 900px;
}

.two-column-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.two-column-list li {
  min-height: 74px;
  padding: 16px 18px;
  border: 1px solid rgba(231, 225, 210, 0.12);
  border-left: 4px solid var(--gold);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.045);
  color: #ddd5c8;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 18px 20px;
  border: 1px solid rgba(231, 225, 210, 0.12);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.045);
}

.faq-list summary {
  color: #fff5e5;
  cursor: pointer;
  font-weight: 850;
}

.faq-list p {
  margin: 12px 0 0;
  color: #bdb6aa;
}

.service-area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-area-list li {
  padding: 9px 12px;
  border: 1px solid rgba(17, 17, 17, 0.16);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.36);
  color: #231f19;
  font-weight: 800;
}

.services-page-hero h1 {
  max-width: 13ch;
}

.service-stage {
  min-height: 580px;
}

.service-detail {
  display: none;
}

.service-detail.is-active {
  display: block;
}

.seo-service-copy {
  padding: 82px 0;
}

.seo-service-copy .section-heading {
  max-width: 900px;
}

.seo-service-copy .section-heading p:last-child {
  color: #3f3930;
}

.light-tile {
  border-color: rgba(7, 7, 7, 0.14);
  background: rgba(255, 255, 255, 0.38);
}

.light-tile h3 {
  color: #171411;
}

.light-tile p {
  color: #4a443c;
}

.project-panel {
  display: grid;
  gap: 12px;
  align-self: center;
}

.project-panel div {
  min-height: 112px;
  padding: 22px;
  border-left: 4px solid var(--gold);
  background: rgba(231, 225, 210, 0.08);
  backdrop-filter: blur(4px);
}

.project-panel strong,
.project-panel span {
  display: block;
}

.project-panel strong {
  margin-bottom: 8px;
  color: #fff8eb;
  font-size: 1.14rem;
}

.project-panel span {
  color: #c9c1b5;
}

.contact {
  background:
    radial-gradient(circle at 18% 20%, rgba(127, 62, 36, 0.22), transparent 28rem),
    #0a0a0a;
}

.contact-details {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-details a {
  display: block;
  padding: 18px;
  border: 1px solid rgba(231, 225, 210, 0.12);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
}

.contact-details span {
  display: block;
  color: var(--gold-bright);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-details strong {
  color: #fff6e7;
  overflow-wrap: anywhere;
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(231, 225, 210, 0.08);
  box-shadow: var(--shadow);
}

.quote-form label {
  display: grid;
  gap: 7px;
  color: #eee8dc;
  font-size: 0.86rem;
  font-weight: 800;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(231, 225, 210, 0.18);
  border-radius: 4px;
  background: rgba(7, 7, 7, 0.82);
  color: #fff8ed;
  padding: 12px 13px;
}

.quote-form textarea {
  resize: vertical;
}

.attachment-field {
  gap: 10px;
}

.attachment-input {
  padding: 10px 12px;
  cursor: pointer;
}

.attachment-input::file-selector-button {
  margin-right: 12px;
  padding: 9px 14px;
  border: 1px solid rgba(225, 179, 96, 0.45);
  border-radius: 4px;
  background: rgba(225, 179, 96, 0.12);
  color: #fff4dd;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.attachment-help {
  color: #bdb6aa;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.5;
}

.attachment-summary {
  padding: 16px 18px;
  border: 1px solid rgba(231, 225, 210, 0.12);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
}

.g-recaptcha {
  margin-top: 6px;
}

.attachment-summary strong {
  display: block;
  margin-bottom: 8px;
  color: #fff5e5;
  font-size: 0.92rem;
}

.attachment-summary p {
  margin: 0;
  color: #bdb6aa;
}

.attachment-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.attachment-list li {
  padding: 10px 12px;
  border-left: 3px solid var(--gold);
  background: rgba(231, 225, 210, 0.08);
  color: #eee8dc;
  font-size: 0.88rem;
  font-weight: 700;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--gold-bright);
  outline: 2px solid rgba(225, 179, 96, 0.22);
}

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

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--gold-bright);
  font-weight: 700;
}

.quote-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.quote-modal.is-open {
  display: flex;
}

.quote-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 7, 7, 0.72);
  backdrop-filter: blur(8px);
}

.quote-modal__panel {
  position: relative;
  width: min(520px, 100%);
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03)),
    #111;
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.36);
}

.quote-modal__eyebrow {
  margin: 0 0 10px;
  color: var(--gold-bright);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.quote-modal__title {
  margin: 0 0 12px;
  color: #fff8eb;
  font-size: 2rem;
  line-height: 1.02;
}

.quote-modal__message {
  margin: 0 0 22px;
  color: #d6cfc3;
  font-size: 1rem;
}

.quote-modal__actions {
  display: flex;
  justify-content: flex-end;
}

.site-footer {
  padding: 28px 0;
  border-top: 1px solid var(--line);
  background: #070707;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}

.footer-brand img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.footer-inner p {
  margin: 0;
  color: var(--gold-bright);
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.footer-inner div {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  flex-wrap: wrap;
  color: #d4cec3;
  font-weight: 700;
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    padding: 12px 18px;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
    position: relative;
    z-index: 34;
  }

  .site-nav {
    position: fixed;
    inset: 0 auto 0 0;
    z-index: 31;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    width: min(86vw, 360px);
    height: 100svh;
    margin: 0;
    padding: 92px 18px 28px;
    overflow-y: auto;
    overscroll-behavior: contain;
    border-right: 1px solid var(--line);
    border-bottom: 0;
    background: rgba(8, 8, 8, 0.98);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(-104%);
    transition:
      transform 0.28s ease,
      opacity 0.22s ease,
      visibility 0s linear 0.28s;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
    transition:
      transform 0.28s ease,
      opacity 0.22s ease,
      visibility 0s linear 0s;
  }

  .site-nav a,
  .services-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-width: 0;
    min-height: 50px;
    width: 100%;
    padding: 14px 14px;
    border: 1px solid rgba(225, 179, 96, 0.12);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.03);
    font-size: 0.98rem;
    text-align: left;
  }

  .site-nav a.is-current,
  .services-toggle.is-current {
    background: rgba(225, 179, 96, 0.12);
    box-shadow: inset 3px 0 0 var(--gold-bright);
  }

  .nav-services {
    display: grid;
    gap: 8px;
  }

  .services-toggle::after {
    margin-left: auto;
  }

  .nav-services.is-open .services-toggle::after {
    transform: translateY(2px) rotate(225deg);
  }

  .services-menu {
    position: static;
    display: none;
    min-width: 0;
    margin: 0;
    padding: 8px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.04);
    transform: none;
    box-shadow: none;
  }

  .services-menu a {
    padding: 12px 14px 12px 18px;
    border: 0;
    background: transparent;
  }

  .services-menu::before {
    display: none;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .brand strong {
    font-size: 1rem;
  }

  .brand small {
    font-size: 0.72rem;
  }

  .header-call {
    display: none;
  }

  .hero {
    min-height: 86svh;
    padding-top: 116px;
  }

  h1 {
    font-size: 6.4rem;
  }

  h2 {
    font-size: 3rem;
  }

  .hero-bg {
    width: 86vw;
    min-width: 0;
    opacity: 0.34;
  }

  .hero-strip,
  .intro-grid,
  .process-grid,
  .contact-grid,
  .projects-inner,
  .page-hero .section-inner,
  .content-grid,
  .project-list,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding-top: 126px;
  }

  .page-hero h1 {
    font-size: 4.2rem;
  }

  .hero-strip {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    margin-top: 42px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-strip span:nth-child(2) {
    border-right: 0;
  }

  .hero-strip span:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(225, 179, 96, 0.18);
  }

  .service-grid,
  .proof-grid,
  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cta-band .section-inner {
    display: grid;
  }

  .sticky-heading {
    position: static;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand,
  .footer-inner div {
    justify-content: center;
  }
}

@media (max-width: 620px) {
  .brand span {
    max-width: 150px;
  }

  h1 {
    font-size: 3.8rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .hero {
    min-height: auto;
    padding-top: 104px;
    padding-bottom: 38px;
  }

  .hero-copy {
    font-size: 1rem;
  }

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

  .service-grid,
  .proof-grid,
  .feature-grid,
  .two-column-list,
  .quote-form {
    grid-template-columns: 1fr;
  }

  .page-hero h1 {
    font-size: 3.45rem;
  }

  .service-subnav {
    top: 78px;
  }

  .cta-band h2 {
    font-size: 2rem;
  }

  .hero-strip {
    display: none;
  }

  .section-block,
  .projects {
    padding: 70px 0;
  }

  .timeline article {
    padding-left: 24px;
  }

  .timeline span {
    position: static;
    margin-bottom: 18px;
  }
}
