:root {
  --black: #111111;
  --black-2: #050505;
  --charcoal: #171717;
  --steel: #262626;
  --white: #ffffff;
  --muted: #c9c9c9;
  --accent: #ff4500;
  --accent-dark: #cf3500;
  --line: rgba(255,255,255,.16);
  --max: 1180px;
  --font-head: "Oswald", sans-serif;
  --font-body: "Inter", sans-serif;
  --ease: cubic-bezier(.2,.8,.2,1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

body.modal-open {
  overflow: hidden;
}

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

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

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--accent);
  font-family: var(--font-head);
  font-size: 14px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 38px;
  height: 3px;
  background: var(--accent);
}

.section-title {
  margin: 0;
  font-family: var(--font-head);
  font-size: clamp(40px, 6vw, 92px);
  line-height: .93;
  letter-spacing: -.035em;
  text-transform: uppercase;
}

.body-copy {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
  font-weight: 700;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 24px;
  border: 2px solid transparent;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
  background: var(--white);
  color: var(--black);
}

.btn:active {
  transform: translateY(0);
}

.btn-outline-dark {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}

.btn-outline-dark:hover {
  background: var(--black);
  color: var(--white);
}

.btn-dark {
  background: var(--black);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--white);
  color: var(--black);
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: 78px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,.1);
  background: rgba(5,5,5,.48);
  backdrop-filter: blur(14px);
  transition: background .25s var(--ease), height .25s var(--ease);
}

.site-header.scrolled {
  height: 64px;
  background: rgba(5,5,5,.92);
}

.header-inner {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(18px, 4vw, 52px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
  text-transform: uppercase;
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: -.02em;
}

.brand strong {
  font-size: 26px;
}

.brand span {
  margin-top: 5px;
  color: var(--accent);
  font-size: 11px;
  letter-spacing: .18em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a {
  position: relative;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.82);
  transition: color .25s var(--ease);
}

.nav a:hover,
.nav a.active {
  color: var(--white);
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 0;
  height: 3px;
  background: var(--accent);
  transition: width .25s var(--ease);
}

.nav a:hover::after,
.nav a.active::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.04);
  color: var(--white);
  cursor: pointer;
  font-size: 24px;
}

.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: flex-end;
  background-color: var(--black-2);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.08);
  backdrop-filter: grayscale(1) contrast(1.35);
  pointer-events: none;
}

.hero.page-hero {
  min-height: 56vh;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 145px 0 132px;
}

.page-hero .hero-content {
  padding: 150px 0 84px;
}

.hero-kicker {
  display: inline-block;
  margin-bottom: 22px;
  padding: 9px 14px;
  background: var(--accent);
  color: var(--black);
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 980px;
  margin: 0;
  font-family: var(--font-head);
  font-size: clamp(58px, 11vw, 156px);
  line-height: .82;
  letter-spacing: -.01em;
  text-transform: uppercase;
  text-wrap: balance;
}

.page-hero h1 {
  font-size: clamp(48px, 8.5vw, 118px);
}

.hero p {
  max-width: 760px;
  margin: 26px 0 0;
  font-size: clamp(18px, 2.3vw, 28px);
  line-height: 1.22;
  font-weight: 900;
  letter-spacing: -.03em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.info-bar-section {
  position: relative;
  z-index: 4;
  background: linear-gradient(90deg, var(--black) 0 74%, var(--charcoal) 74% 100%);
}

.info-bar {
  width: min(1120px, 76vw);
  min-width: 760px;
  margin-top: -72px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--accent);
  box-shadow: 0 24px 70px rgba(0,0,0,.38);
}

.info-card {
  position: relative;
  min-height: 210px;
  padding: 46px 42px 38px;
  border: 0;
  border-right: 1px solid rgba(0,0,0,.24);
  background: var(--accent);
  color: var(--black);
  text-align: left;
  cursor: pointer;
  transition: background .25s var(--ease), transform .25s var(--ease);
}

.info-card:last-child {
  border-right: 0;
}

.info-card:hover,
.info-card.active {
  background: #ff5c1c;
  transform: translateY(-4px);
}

.info-card h2 {
  margin: 0 0 24px;
  font-family: var(--font-head);
  font-size: clamp(30px, 3.1vw, 48px);
  line-height: .9;
  letter-spacing: -.045em;
  text-transform: uppercase;
}

.info-card p {
  max-width: 230px;
  margin: 0;
  font-family: var(--font-head);
  font-size: 22px;
  line-height: 1.04;
  font-weight: 700;
  letter-spacing: -.025em;
}

.info-card small {
  display: block;
  margin-top: 16px;
  color: rgba(0,0,0,.72);
  font-size: 12px;
  line-height: 1.45;
  font-weight: 900;
}

.services {
  background: var(--black);
}

.services-grid {
  display: grid;
  grid-template-columns: 1.03fr .97fr 1fr;
  grid-auto-rows: minmax(330px, auto);
  border-top: 1px solid rgba(255,255,255,.08);
}

.service-panel {
  position: relative;
  overflow: hidden;
  min-height: 380px;
  background: var(--charcoal);
}

.service-panel.image {
  background: var(--black-2);
}

.service-panel.image img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: grayscale(1) contrast(1.2);
  transition: transform .8s var(--ease), filter .4s var(--ease);
}

.service-panel.image:hover img {
  transform: scale(1.05);
  filter: grayscale(1) contrast(1.4) brightness(1.06);
}

.service-panel.text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 5vw, 72px);
  background: var(--black);
}

.service-panel.text.accent {
  background: var(--accent);
  color: var(--black);
}

.service-panel.text.accent .body-copy,
.service-panel.text.accent .service-meta {
  color: rgba(0,0,0,.78);
}

.service-panel.dark-wide {
  grid-column: span 1;
  background: var(--charcoal);
}

.service-panel.wide-image {
  grid-column: span 2;
}

.service-number {
  display: block;
  margin-bottom: 18px;
  font-family: var(--font-head);
  color: var(--accent);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .12em;
}

.text.accent .service-number {
  color: var(--black);
}

.service-panel h3 {
  margin: 0 0 22px;
  font-family: var(--font-head);
  font-size: clamp(34px, 4.3vw, 62px);
  line-height: .92;
  letter-spacing: -.045em;
  text-transform: uppercase;
}

.service-meta {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: rgba(255,255,255,.7);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.service-meta span {
  padding: 7px 9px;
  border: 1px solid currentColor;
}

.service-more {
  display: none;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.18);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
  font-weight: 700;
}

.text.accent .service-more {
  border-top-color: rgba(0,0,0,.2);
  color: rgba(0,0,0,.82);
}

.service-panel.open .service-more {
  display: block;
}

.mini-link {
  display: inline-block;
  width: fit-content;
  margin-top: 24px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
}

.mini-link i {
  margin-left: 8px;
  color: var(--accent);
}

.text.accent .mini-link i {
  color: var(--black);
}

.statement {
  position: relative;
  background: var(--accent);
  padding: 0 0 clamp(70px, 9vw, 130px);
}

.statement-hero {
  height: clamp(390px, 58vw, 720px);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: grayscale(1) contrast(1.25);
}

.statement-card {
  position: relative;
  width: min(980px, calc(100% - 40px));
  margin: -120px 0 0 auto;
  padding: clamp(40px, 6vw, 82px);
  background: var(--black);
  color: var(--white);
  box-shadow: 0 34px 85px rgba(0,0,0,.34);
}

.statement-card h2 {
  max-width: 830px;
  margin: 0 0 26px;
  font-family: var(--font-head);
  font-size: clamp(40px, 6vw, 78px);
  line-height: .94;
  letter-spacing: -.045em;
  text-transform: uppercase;
}

.statement-card p {
  max-width: 850px;
  margin: 0;
  color: var(--white);
  font-size: 17px;
  line-height: 1.75;
  font-weight: 800;
}

.process-strip {
  background: var(--black);
  padding: clamp(62px, 9vw, 112px) 0;
}

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

.process-header {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 42px;
  align-items: end;
  margin-bottom: 42px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.14);
}

.process-step {
  min-height: 240px;
  padding: 32px 26px;
  background: var(--charcoal);
  cursor: pointer;
  transition: background .25s var(--ease), color .25s var(--ease);
}

.process-step:hover,
.process-step.active {
  background: var(--accent);
  color: var(--black);
}

.process-step span {
  display: block;
  margin-bottom: 38px;
  font-family: var(--font-head);
  font-size: 42px;
  line-height: 1;
  letter-spacing: -.04em;
}

.process-step h3 {
  margin: 0 0 12px;
  font-family: var(--font-head);
  font-size: 25px;
  line-height: .98;
  text-transform: uppercase;
  letter-spacing: -.025em;
}

.process-step p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
  font-weight: 800;
}

.process-step:hover p,
.process-step.active p {
  color: rgba(0,0,0,.78);
}

.gallery-band {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: var(--black);
}

.gallery-band img {
  width: 100%;
  height: clamp(230px, 32vw, 430px);
  object-fit: cover;
  filter: grayscale(1) contrast(1.22);
}

.cta {
  background: var(--accent);
  color: var(--black);
  padding: clamp(68px, 10vw, 124px) 0 0;
}

.cta-inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 34px;
  align-items: center;
  padding-bottom: clamp(56px, 7vw, 88px);
}

.cta h2 {
  max-width: 860px;
  margin: 0;
  font-family: var(--font-head);
  font-size: clamp(48px, 8.5vw, 118px);
  line-height: .86;
  letter-spacing: -.06em;
  text-transform: uppercase;
}

.cta p {
  max-width: 520px;
  margin: 20px 0 0;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 900;
}

.footer {
  border-top: 1px solid rgba(0,0,0,.24);
  padding: 26px 0;
  color: var(--black);
}

.footer-inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-weight: 900;
  font-size: 13px;
}

.social {
  display: flex;
  align-items: center;
  gap: 14px;
}

.social a {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0,0,0,.28);
  transition: background .25s var(--ease), color .25s var(--ease);
}

.social a:hover {
  background: var(--black);
  color: var(--white);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0,0,0,.78);
  backdrop-filter: blur(10px);
}

.modal.show {
  display: flex;
}

.modal-card {
  position: relative;
  width: min(760px, 100%);
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  background: var(--white);
  color: var(--black);
  box-shadow: 0 40px 100px rgba(0,0,0,.5);
}

.modal-head {
  padding: 34px 34px 24px;
  background: var(--accent);
  border-bottom: 1px solid rgba(0,0,0,.16);
}

.modal-head h2 {
  margin: 0;
  font-family: var(--font-head);
  font-size: clamp(34px, 6vw, 64px);
  line-height: .9;
  letter-spacing: -.05em;
  text-transform: uppercase;
}

.modal-head p {
  margin: 12px 0 0;
  font-weight: 900;
  line-height: 1.45;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border: 2px solid var(--black);
  background: transparent;
  color: var(--black);
  cursor: pointer;
  font-size: 24px;
  transition: background .25s var(--ease), color .25s var(--ease);
}

.modal-close:hover {
  background: var(--black);
  color: var(--white);
}

.quote-form {
  padding: 32px 34px 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

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

.field label {
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: 13px;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 2px solid #d0d0d0;
  border-radius: 0;
  background: #f7f7f7;
  color: var(--black);
  padding: 14px 14px;
  outline: none;
  font-weight: 800;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}

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

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--accent);
  background: #fff;
}

.field.error input,
.field.error textarea,
.field.error select {
  border-color: #d00000;
}

.error-text {
  display: none;
  color: #b00000;
  font-size: 12px;
  font-weight: 900;
}

.field.error .error-text {
  display: block;
}

.form-status {
  display: none;
  grid-column: 1 / -1;
  padding: 16px;
  background: #111;
  color: #fff;
  font-weight: 900;
  line-height: 1.45;
}

.form-status.show {
  display: block;
}

/* ---------- Subpage layout additions ---------- */

.page-section {
  background: var(--black);
  padding: clamp(62px, 9vw, 110px) 0;
}

.page-section.tone {
  background: var(--charcoal);
}

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

.split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}

.split.reverse {
  grid-template-columns: .95fr 1.05fr;
}

.split h2 {
  margin: 0 0 24px;
}

.split .body-copy + .body-copy {
  margin-top: 16px;
}

.frame {
  margin: 0;
  border: 1px solid var(--line);
  background: var(--black-2);
}

.frame img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  filter: grayscale(1) contrast(1.2);
  transition: transform .8s var(--ease), filter .4s var(--ease);
}

.frame:hover img {
  transform: scale(1.03);
  filter: grayscale(1) contrast(1.35) brightness(1.05);
}

.frame figcaption {
  padding: 14px 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

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

.checklist li {
  display: flex;
  align-items: baseline;
  gap: 14px;
  color: var(--white);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.5;
}

.checklist li::before {
  content: "";
  flex: 0 0 auto;
  width: 11px;
  height: 11px;
  background: var(--accent);
  transform: translateY(1px);
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.12);
}

.photo-grid figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--black-2);
}

.photo-grid img {
  width: 100%;
  height: clamp(220px, 26vw, 320px);
  object-fit: cover;
  filter: grayscale(1) contrast(1.22);
  transition: transform .8s var(--ease), filter .4s var(--ease);
}

.photo-grid figure:hover img {
  transform: scale(1.06);
  filter: grayscale(1) contrast(1.4) brightness(1.08);
}

.photo-grid figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 12px 16px;
  background: linear-gradient(0deg, rgba(0,0,0,.82), rgba(0,0,0,0));
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.other-services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.14);
}

.other-services a {
  min-height: 150px;
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--charcoal);
  transition: background .25s var(--ease), color .25s var(--ease);
}

.other-services a:hover {
  background: var(--accent);
  color: var(--black);
}

.other-services strong {
  font-family: var(--font-head);
  font-size: 22px;
  line-height: 1;
  letter-spacing: -.02em;
  text-transform: uppercase;
}

.other-services span {
  margin-top: 18px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
}

.other-services a:hover span {
  color: var(--black);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 34px);
}

.contact-card {
  padding: clamp(30px, 4vw, 46px);
  background: var(--charcoal);
  border: 1px solid var(--line);
}

.contact-card h3 {
  margin: 0 0 8px;
  font-family: var(--font-head);
  font-size: clamp(26px, 3vw, 40px);
  line-height: .95;
  letter-spacing: -.03em;
  text-transform: uppercase;
}

.contact-card .role {
  margin: 0 0 22px;
  color: var(--accent);
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.contact-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.contact-card li {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.5;
  color: var(--muted);
}

.contact-card li i {
  color: var(--accent);
}

.contact-card a:hover {
  color: var(--accent);
}

.map-embed {
  width: 100%;
  height: clamp(320px, 40vw, 460px);
  border: 0;
  display: block;
  filter: grayscale(1) contrast(1.08);
}

.timeline {
  margin-top: 42px;
  display: grid;
  gap: 1px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.14);
}

.timeline-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 24px;
  padding: 28px 26px;
  background: var(--charcoal);
}

.timeline-row strong {
  font-family: var(--font-head);
  font-size: 34px;
  line-height: 1;
  letter-spacing: -.03em;
  color: var(--accent);
}

.timeline-row p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
  font-weight: 800;
}

@media (max-width: 1020px) {
  .info-bar {
    width: calc(100% - 32px);
    min-width: 0;
    margin-left: 16px;
    margin-right: 16px;
  }

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

  .service-panel.wide-image {
    grid-column: span 1;
  }

  .process-header {
    grid-template-columns: 1fr;
  }

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

  .cta-inner {
    grid-template-columns: 1fr;
  }

  .split,
  .split.reverse {
    grid-template-columns: 1fr;
  }

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

  .other-services {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 760px) {
  .site-header {
    height: 68px;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    background: rgba(5,5,5,.97);
    border-top: 1px solid rgba(255,255,255,.1);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform .3s var(--ease), opacity .3s var(--ease);
  }

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

  .nav a {
    padding: 20px;
    border-bottom: 1px solid rgba(255,255,255,.1);
    font-size: 17px;
  }

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

  .hero {
    min-height: 84vh;
  }

  .hero.page-hero {
    min-height: 60vh;
  }

  .hero-content {
    padding: 118px 0 105px;
  }

  .page-hero .hero-content {
    padding: 118px 0 64px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .info-bar-section {
    background: var(--black);
  }

  .info-bar {
    grid-template-columns: 1fr;
    margin-top: -52px;
  }

  .info-card {
    min-height: 160px;
    padding: 34px 30px;
    border-right: 0;
    border-bottom: 1px solid rgba(0,0,0,.22);
  }

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

  .service-panel {
    min-height: 320px;
  }

  .statement-card {
    width: calc(100% - 28px);
    margin-top: -84px;
  }

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

  .gallery-band {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .quote-form {
    grid-template-columns: 1fr;
    padding: 26px 22px 28px;
  }

  .modal-head {
    padding: 30px 22px 22px;
  }

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

  .other-services {
    grid-template-columns: 1fr;
  }

  .timeline-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
