:root {
  color-scheme: dark;
  --ink: #07090b;
  --ink-soft: #101417;
  --panel: #151a1e;
  --paper: #edf0f1;
  --paper-muted: #aeb6bb;
  --line: rgba(237, 240, 241, 0.17);
  --line-dark: rgba(7, 9, 11, 0.16);
  --accent: #1683ff;
  --accent-soft: rgba(22, 131, 255, 0.16);
  --shell: min(1240px, calc(100vw - 48px));
  --display: "Arial Narrow", "Roboto Condensed", "Helvetica Neue", Arial, sans-serif;
  --body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font: 400 1rem/1.6 var(--body);
  -webkit-font-smoothing: antialiased;
}

.intro-pending body {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

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

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  transform: translateY(-150%);
  padding: 10px 16px;
  background: var(--accent);
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.skip-link:focus {
  transform: none;
}

.brand-intro {
  position: fixed;
  z-index: 999;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  visibility: hidden;
  background: #020302;
  opacity: 0;
  pointer-events: none;
  isolation: isolate;
}

.intro-pending .brand-intro {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  animation: intro-exit 2.8s cubic-bezier(.78, 0, .22, 1) forwards;
}

.brand-intro-glow {
  position: absolute;
  z-index: -1;
  width: min(78vw, 920px);
  aspect-ratio: 1.3;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(22, 131, 255, .32) 0%, rgba(0, 92, 255, .1) 42%, transparent 70%);
  filter: blur(26px);
  opacity: 0;
  transform: scale(.45);
}

.intro-pending .brand-intro-glow {
  animation: intro-glow 2.25s cubic-bezier(.2, .75, .2, 1) forwards;
}

.brand-intro-logo {
  width: min(78vw, 790px);
  clip-path: inset(49% 0 49% 0);
  opacity: 0;
  transform: scale(.9);
}

.brand-intro-logo img {
  width: 100%;
  filter: drop-shadow(0 0 30px rgba(22, 131, 255, .32));
}

.intro-pending .brand-intro-logo {
  animation: intro-logo 1.65s .18s cubic-bezier(.2, .75, .2, 1) forwards;
}

.brand-intro-scan {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, transparent 10%, rgba(94, 177, 255, .98) 50%, transparent 90%);
  box-shadow: 0 0 34px 7px rgba(22, 131, 255, .42);
  opacity: 0;
  transform: translateX(-46vw);
}

.intro-pending .brand-intro-scan {
  animation: intro-scan 1.5s .35s ease-in-out forwards;
}

.brand-intro-line {
  position: absolute;
  bottom: clamp(74px, 10vh, 110px);
  width: min(280px, 58vw);
  height: 1px;
  overflow: hidden;
  background: rgba(255,255,255,.12);
}

.brand-intro-line span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--accent);
  transform: translateX(-100%);
}

.intro-pending .brand-intro-line span {
  animation: intro-line 1.75s .4s cubic-bezier(.2, .75, .2, 1) forwards;
}

.brand-intro-skip {
  position: absolute;
  right: 28px;
  bottom: 24px;
  padding: 10px;
  border: 0;
  background: transparent;
  color: rgba(255,255,255,.52);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
}

.brand-intro-skip:hover,
.brand-intro-skip:focus-visible {
  color: var(--accent);
}

@keyframes intro-logo {
  0% { clip-path: inset(49% 0 49% 0); opacity: 0; transform: scale(.9); filter: blur(9px); }
  48% { opacity: 1; filter: blur(0); }
  100% { clip-path: inset(0 0 0 0); opacity: 1; transform: scale(1); filter: blur(0); }
}

@keyframes intro-glow {
  0% { opacity: 0; transform: scale(.45); }
  58% { opacity: 1; transform: scale(1); }
  100% { opacity: .72; transform: scale(1.08); }
}

@keyframes intro-scan {
  0% { opacity: 0; transform: translateX(-46vw); }
  15% { opacity: .95; }
  85% { opacity: .95; }
  100% { opacity: 0; transform: translateX(46vw); }
}

@keyframes intro-line {
  to { transform: translateX(0); }
}

@keyframes intro-exit {
  0%, 72% { opacity: 1; clip-path: inset(0 0 0 0); visibility: visible; }
  100% { opacity: 0; clip-path: inset(0 0 100% 0); visibility: hidden; }
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 88px;
  padding: 0 32px;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  transition: background 220ms ease, min-height 220ms ease, backdrop-filter 220ms ease;
}

.site-header.is-scrolled {
  min-height: 72px;
  background: rgba(7, 9, 11, 0.88);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: max-content;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  aspect-ratio: 1;
  color: var(--ink);
  background: var(--accent);
  font: 900 1.25rem/1 var(--display);
  transform: skewX(-8deg);
}

.brand-logo-lockup {
  width: 126px;
  height: 84px;
  overflow: visible;
  background: none;
  transform: none;
}

.brand-logo-lockup img {
  position: static;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  filter: none;
  mix-blend-mode: normal;
}

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

.site-nav a,
.header-call {
  position: relative;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--accent);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-call {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 10px;
}

.header-call svg {
  width: 17px;
  fill: none;
  stroke: var(--accent);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.menu-button {
  display: none;
}

.hero {
  position: relative;
  min-height: 820px;
  height: 100svh;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
}

.hero-media,
.hero-shade,
.hero-grid {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  filter: saturate(0.72) contrast(1.05);
  transform: scale(1.01);
}

.hero-shade {
  background: linear-gradient(90deg, rgba(4, 6, 8, 0.96) 0%, rgba(4, 6, 8, 0.76) 36%, rgba(4, 6, 8, 0.17) 70%, rgba(4, 6, 8, 0.1) 100%), linear-gradient(0deg, rgba(4, 6, 8, 0.65) 0%, transparent 30%);
}

.hero-grid {
  opacity: 0.17;
  background-image: linear-gradient(rgba(255,255,255,.13) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.13) 1px, transparent 1px);
  background-size: 10vw 10vw;
  mask-image: linear-gradient(90deg, #000 0%, transparent 64%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding-top: 72px;
}

.eyebrow,
.section-kicker,
.visit-label {
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 0 0 24px;
  color: var(--accent);
}

.eyebrow::before {
  width: 38px;
  height: 1px;
  background: currentColor;
  content: "";
}

.hero h1,
.intro-copy h2,
.section-head h2,
.reviews-head h2,
.visit-copy h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.88;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 850px;
  font-size: clamp(5.6rem, 10.4vw, 10.2rem);
}

h1 em,
h2 em {
  color: var(--accent);
  font-style: normal;
  -webkit-text-stroke: 1px currentColor;
}

.hero-intro {
  max-width: 590px;
  margin: 32px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  line-height: 1.55;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 24px;
  border: 1px solid transparent;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button svg {
  width: 19px;
  margin-left: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

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

.button-primary {
  background: var(--accent);
  color: var(--ink);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #62adff;
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.38);
  color: #fff;
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.rating-card {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: auto auto auto;
  align-items: center;
  gap: 17px;
  min-width: 390px;
  padding: 24px 30px;
  background: var(--accent);
  color: var(--ink);
  text-decoration: none;
}

.rating-number {
  font: 900 3.7rem/0.9 var(--display);
  letter-spacing: -0.06em;
}

.rating-meta {
  display: grid;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.rating-meta span {
  margin-bottom: 3px;
  letter-spacing: 0.08em;
}

.rating-card svg {
  width: 24px;
  margin-left: auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  transition: transform 180ms ease;
}

.rating-card:hover svg,
.rating-card:focus-visible svg {
  transform: translate(3px, -3px);
}

.hero-index {
  position: absolute;
  z-index: 2;
  bottom: 30px;
  left: 32px;
  color: rgba(255, 255, 255, 0.45);
  font: 700 0.62rem/1 var(--body);
  letter-spacing: 0.15em;
}

.service-ribbon {
  overflow: hidden;
  background: var(--ink);
  color: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.ribbon-track {
  display: flex;
  align-items: center;
  gap: 34px;
  width: max-content;
  min-height: 70px;
  animation: ribbon 28s linear infinite;
  padding-left: 34px;
  white-space: nowrap;
}

.ribbon-track span {
  font: 850 0.75rem/1 var(--body);
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.ribbon-track i {
  width: 7px;
  height: 7px;
  background: var(--accent);
  transform: rotate(45deg);
}

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

.intro-section,
.reviews-section {
  padding-block: clamp(90px, 10vw, 150px);
}

.section-kicker {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #5b656b;
}

.section-kicker span {
  display: grid;
  place-items: center;
  width: 33px;
  height: 33px;
  border: 1px solid currentColor;
  color: var(--ink);
  font-size: 0.64rem;
  letter-spacing: 0.03em;
}

.section-kicker-light {
  color: var(--paper-muted);
}

.section-kicker-light span {
  color: var(--accent);
}

.intro-copy {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.45fr);
  align-items: end;
  gap: 8vw;
  margin-top: 50px;
}

.intro-copy h2 {
  max-width: 880px;
  font-size: clamp(4rem, 8vw, 7.5rem);
}

.intro-copy h2 em {
  color: transparent;
  -webkit-text-stroke-color: var(--ink);
}

.intro-copy p,
.section-head p,
.visit-copy p {
  margin: 0 0 10px;
  color: #4b555b;
  font-size: 1.03rem;
  line-height: 1.75;
}

.result-gallery {
  position: relative;
  display: grid;
  grid-template-columns: 1.5fr 0.72fr;
  gap: 22px;
  align-items: end;
  margin-top: clamp(70px, 8vw, 115px);
}

.result-shot {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #c9ced0;
}

.result-shot-main {
  aspect-ratio: 1.45;
}

.result-shot-side {
  aspect-ratio: 0.81;
  margin-bottom: 72px;
}

.result-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(.2,.7,.2,1);
}

.result-shot-main img {
  object-position: 50% 52%;
}

.result-shot:hover img {
  transform: scale(1.035);
}

.result-shot figcaption {
  position: absolute;
  inset: auto 0 0;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 22px 24px;
  background: linear-gradient(0deg, rgba(4,6,8,.82), transparent);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.result-note {
  position: absolute;
  right: calc(36% - 48px);
  bottom: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 152px;
  aspect-ratio: 1;
  padding: 20px;
  background: var(--accent);
  text-align: center;
  text-transform: uppercase;
}

.result-note-number {
  font: 900 2.9rem/0.9 var(--display);
  letter-spacing: -0.05em;
}

.result-note span:last-child {
  font-size: 0.63rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  line-height: 1.5;
}

.project-showcase {
  margin-top: clamp(100px, 12vw, 180px);
}

.project-showcase-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line-dark);
}

.project-showcase-head .eyebrow {
  margin-bottom: 18px;
  color: #667077;
}

.project-showcase-head h3 {
  margin: 0;
  font: 900 clamp(2.8rem, 5.6vw, 5.6rem)/0.9 var(--display);
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.project-showcase-head h3 em {
  color: transparent;
  font-style: normal;
  -webkit-text-stroke: 1px var(--ink);
}

.project-showcase-head a {
  flex: 0 0 auto;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--ink);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.project-showcase-head a span {
  display: inline-block;
  margin-left: 12px;
  transition: transform 180ms ease;
}

.project-showcase-head a:hover span,
.project-showcase-head a:focus-visible span {
  transform: translate(3px, -3px);
}

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

.project-card {
  position: relative;
  height: clamp(280px, 31vw, 420px);
  margin: 0;
  overflow: hidden;
  background: #c9ced0;
  isolation: isolate;
}

.project-card-wide {
  grid-column: span 8;
}

.project-card-detail {
  grid-column: span 4;
}

.project-card-half {
  grid-column: span 6;
}

.project-card-m4 {
  grid-column: span 7;
}

.project-card-m4-wide {
  grid-column: span 5;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms cubic-bezier(.2,.7,.2,1), filter 400ms ease;
}

.project-card:nth-child(1) img { object-position: 50% 50%; }
.project-card:nth-child(2) img { object-position: 50% 50%; }
.project-card:nth-child(3) img { object-position: 50% 52%; }
.project-card:nth-child(5) img { object-position: 50% 55%; }

.project-card::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(3, 5, 6, .82) 100%);
  content: "";
  pointer-events: none;
}

.project-card:hover img {
  filter: saturate(1.06);
  transform: scale(1.025);
}

.project-card figcaption {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding: 24px;
  color: #fff;
  text-transform: uppercase;
}

.project-card figcaption strong {
  font: 900 1.3rem/1 var(--display);
  letter-spacing: -0.02em;
}

.project-card figcaption span {
  color: rgba(255, 255, 255, .72);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.services-section,
.visit-section {
  position: relative;
  overflow: hidden;
  padding-block: clamp(90px, 10vw, 150px);
  background: var(--ink);
  color: #fff;
}

.section-head {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  align-items: end;
  gap: 7vw;
}

.section-head .section-kicker {
  grid-column: 1 / -1;
}

.section-head h2,
.reviews-head h2,
.visit-copy h2 {
  margin-top: 34px;
  font-size: clamp(3.8rem, 7.2vw, 7rem);
}

.section-head p {
  color: var(--paper-muted);
}

.service-list {
  margin-top: 80px;
  border-top: 1px solid var(--line);
}

.service-item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
  min-height: 170px;
  border-bottom: 1px solid var(--line);
}

.service-number {
  align-self: start;
  padding-top: 39px;
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.service-item h3 {
  margin: 0 0 10px;
  font: 900 clamp(2.1rem, 4vw, 3.6rem)/1 var(--display);
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.service-item p {
  max-width: 730px;
  margin: 0;
  color: var(--paper-muted);
}

.service-tag {
  padding: 9px 13px;
  border: 1px solid rgba(255,255,255,.27);
  border-radius: 999px;
  color: var(--paper-muted);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.assurance-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 90px;
  border: 1px solid var(--line);
}

.assurance-grid > div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 17px;
  align-items: start;
  min-height: 130px;
  padding: 30px 26px;
  border-right: 1px solid var(--line);
}

.assurance-grid > div:last-child {
  border-right: 0;
}

.assurance-grid strong {
  color: var(--accent);
  font-size: 0.64rem;
  letter-spacing: 0.1em;
}

.assurance-grid span {
  font: 800 0.78rem/1.5 var(--body);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.reviews-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-top: 34px;
}

.reviews-head h2 {
  max-width: 820px;
}

.reviews-head a,
.visit-card a {
  flex: 0 0 auto;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 18px;
  margin-top: 65px;
}

.review-card {
  display: flex;
  flex-direction: column;
  min-height: 350px;
  margin: 0;
  padding: 32px;
  border: 1px solid var(--line-dark);
  background: #fff;
}

.review-card-featured {
  background: var(--accent);
  border-color: var(--accent);
}

.stars {
  color: var(--ink);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
}

.review-card blockquote {
  margin: auto 0 35px;
  font: 800 clamp(1.45rem, 2.4vw, 2.15rem)/1.25 var(--display);
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.review-card p {
  margin: 0;
  color: #687177;
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.review-card-featured p {
  color: rgba(7, 9, 11, 0.65);
}

.visit-glow {
  position: absolute;
  top: -25vw;
  right: -20vw;
  width: 65vw;
  height: 65vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(22,131,255,.16), transparent 65%);
}

.visit-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: clamp(50px, 9vw, 130px);
  align-items: center;
}

.visit-copy h2 {
  max-width: 760px;
}

.visit-copy p {
  max-width: 580px;
  margin: 32px 0;
  color: var(--paper-muted);
}

.visit-card {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.025);
}

.visit-card-block {
  padding: 34px;
  border-bottom: 1px solid var(--line);
}

.visit-label {
  display: block;
  margin-bottom: 21px;
  color: var(--accent);
}

.visit-card address {
  margin-bottom: 20px;
  font: normal 800 1.65rem/1.35 var(--display);
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.hours-list {
  margin: 0;
}

.hours-list div {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.hours-list div:last-child {
  border-bottom: 0;
}

.hours-list dt,
.hours-list dd {
  margin: 0;
  font-size: 0.88rem;
}

.hours-list dt {
  color: var(--paper-muted);
}

.hours-list dd {
  font-weight: 750;
}

.visit-card-footer {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  padding: 27px 34px;
}

.site-footer {
  padding-block: 34px;
  background: #030405;
  color: #fff;
  border-top: 1px solid var(--line);
}

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

.footer-inner p {
  margin: 0;
  color: rgba(255,255,255,.48);
  font-size: 0.64rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-inner p:last-child {
  justify-self: end;
}

.whatsapp-button {
  position: fixed;
  z-index: 98;
  right: 24px;
  bottom: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 56px;
  padding: 0 19px;
  background: #25d366;
  box-shadow: 0 14px 36px rgba(0, 0, 0, .28);
  color: #04170b;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.whatsapp-button svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.whatsapp-button:hover,
.whatsapp-button:focus-visible {
  background: #4ae17d;
  box-shadow: 0 18px 42px rgba(0, 0, 0, .34);
  transform: translateY(-2px);
}

.mobile-call {
  display: none;
}

.booking-page {
  min-height: 100vh;
  background: var(--ink);
  color: var(--paper);
}

.booking-page .site-header {
  background: rgba(7, 9, 11, .94);
}

.booking-main {
  position: relative;
  overflow: hidden;
  padding: 160px 0 110px;
  background:
    radial-gradient(circle at 14% 16%, rgba(22, 131, 255, .17), transparent 28%),
    linear-gradient(135deg, #07090b 0%, #0b1015 55%, #07090b 100%);
}

.booking-main::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 76px 76px;
  content: "";
  -webkit-mask-image: linear-gradient(to bottom, #000, transparent 82%);
  mask-image: linear-gradient(to bottom, #000, transparent 82%);
  pointer-events: none;
}

.quote-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(560px, 1.28fr);
  gap: clamp(60px, 9vw, 132px);
  align-items: start;
}

.quote-intro {
  position: sticky;
  top: 136px;
}

.quote-back {
  display: inline-flex;
  align-items: center;
  margin-bottom: 64px;
  color: var(--paper-muted);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.quote-back ol {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.quote-back li + li::before {
  margin-right: 10px;
  color: rgba(255,255,255,.36);
  content: "/";
}

.quote-back a {
  color: inherit;
  text-decoration: none;
}

.quote-back a:hover,
.quote-back a:focus-visible {
  color: var(--accent);
}

.quote-intro h1 {
  max-width: 540px;
  margin: 22px 0 26px;
  font: 900 clamp(4.2rem, 7.4vw, 7.8rem)/.8 var(--display);
  letter-spacing: -.07em;
  text-transform: uppercase;
}

.quote-intro h1 em {
  display: block;
  color: var(--accent);
  font-style: normal;
}

.quote-intro > p:last-of-type {
  max-width: 480px;
  margin: 0;
  color: var(--paper-muted);
  font-size: 1.05rem;
}

.quote-promise {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 25px 18px;
  margin-top: 58px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.quote-promise > span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  background: var(--accent);
  color: var(--ink);
  font-size: .68rem;
  font-weight: 900;
}

.quote-promise div {
  display: grid;
  gap: 3px;
}

.quote-promise strong {
  font: 850 1rem/1.2 var(--display);
  letter-spacing: .02em;
  text-transform: uppercase;
}

.quote-promise small {
  color: var(--paper-muted);
  font-size: .82rem;
}

.quote-form {
  padding: clamp(28px, 4.5vw, 58px);
  background: #f0f2f3;
  color: var(--ink);
  box-shadow: 0 28px 80px rgba(0,0,0,.3);
}

.quote-step {
  min-width: 0;
  margin: 0 0 48px;
  padding: 0 0 48px;
  border: 0;
  border-bottom: 1px solid var(--line-dark);
}

.quote-step legend {
  width: 100%;
  margin: 0 0 12px;
  padding: 0;
  font: 900 clamp(1.55rem, 2.3vw, 2.15rem)/1 var(--display);
  letter-spacing: -.025em;
  text-transform: uppercase;
}

.quote-step legend span {
  margin-right: 15px;
  color: var(--accent);
  font-size: .75rem;
  letter-spacing: .1em;
  vertical-align: middle;
}

.field-help {
  margin: 0 0 24px;
  color: #657078;
  font-size: .88rem;
}

.service-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.service-option,
.location-option {
  position: relative;
  cursor: pointer;
}

.service-option input,
.location-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.service-option-body,
.location-option > span {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 116px;
  padding: 20px 50px 20px 21px;
  border: 1px solid rgba(7, 9, 11, .17);
  background: #fff;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.service-option-body::after,
.location-option > span::after {
  position: absolute;
  top: 19px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border: 1px solid rgba(7, 9, 11, .26);
  border-radius: 50%;
  content: "";
}

.service-option strong,
.location-option strong {
  font: 900 1.08rem/1.05 var(--display);
  letter-spacing: .01em;
  text-transform: uppercase;
}

.service-option small,
.location-option small {
  margin-top: 7px;
  color: #687177;
  font-size: .78rem;
  line-height: 1.4;
}

.service-option:hover .service-option-body,
.location-option:hover > span {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.service-option input:focus-visible + .service-option-body,
.location-option input:focus-visible + span {
  outline: 3px solid rgba(22, 131, 255, .28);
  outline-offset: 2px;
}

.service-option input:checked + .service-option-body,
.location-option input:checked + span {
  border-color: var(--accent);
  background: var(--accent-soft);
}

.service-option input:checked + .service-option-body::after,
.location-option input:checked + span::after {
  border-color: var(--accent);
  background: var(--accent);
  box-shadow: inset 0 0 0 5px #fff;
}

.form-grid,
.location-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.location-option > span {
  min-height: 105px;
}

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

.field > span {
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.field > span small {
  color: #6d767b;
  font-size: inherit;
  font-weight: 700;
  letter-spacing: .04em;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid rgba(7, 9, 11, .2);
  border-radius: 0;
  background: #fff;
  color: var(--ink);
  font: 600 1rem/1.4 var(--body);
}

.field input {
  min-height: 58px;
  padding: 0 16px;
}

.field textarea {
  min-height: 128px;
  padding: 16px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--accent);
  outline: 3px solid rgba(22, 131, 255, .18);
  outline-offset: 0;
}

.quote-submit {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.quote-submit-note,
.quote-error {
  margin: 14px 0 0;
  color: #687177;
  font-size: .82rem;
  text-align: center;
}

.quote-error {
  color: #9b1c1c;
}

.booking-footer {
  position: relative;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(.2,.7,.2,1);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 960px) {
  :root { --shell: min(100% - 36px, 760px); }

  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 76px;
    padding-inline: 18px;
  }

  .header-call { display: none; }

  .menu-button {
    display: grid;
    gap: 7px;
    width: 42px;
    height: 42px;
    padding: 13px 9px;
    border: 0;
    background: transparent;
  }

  .menu-button span:not(.sr-only) {
    display: block;
    width: 100%;
    height: 1px;
    background: #fff;
    transition: transform 180ms ease;
  }

  .menu-button[aria-expanded="true"] span:nth-of-type(2) { transform: translateY(4px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:nth-of-type(3) { transform: translateY(-4px) rotate(-45deg); }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 8px 18px 22px;
    background: rgba(7, 9, 11, 0.96);
    border-top: 1px solid var(--line);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .site-nav a {
    padding: 15px 3px;
    border-bottom: 1px solid var(--line);
  }

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

  .hero { min-height: 750px; }
  .hero h1 { font-size: clamp(4.4rem, 14vw, 7.5rem); }
  .hero-content { justify-content: flex-end; padding-bottom: 170px; }
  .hero-media img { object-position: 60% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(4,6,8,.9), rgba(4,6,8,.12)), linear-gradient(0deg, rgba(4,6,8,.96) 0%, rgba(4,6,8,.34) 54%, transparent 75%); }
  .rating-card { min-width: 360px; }
  .hero-index { display: none; }

  .intro-copy,
  .section-head,
  .visit-grid { grid-template-columns: 1fr; }
  .intro-copy { gap: 35px; }
  .intro-copy p,
  .section-head p { max-width: 620px; }
  .result-gallery { grid-template-columns: 1.1fr .8fr; }
  .result-note { right: calc(42% - 42px); width: 130px; }
  .project-card { height: 360px; }

  .assurance-grid { grid-template-columns: repeat(2, 1fr); }
  .assurance-grid > div:nth-child(2) { border-right: 0; }
  .assurance-grid > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }

  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .review-card-featured { grid-column: 1 / -1; }
  .review-card { min-height: 290px; }

  .quote-layout { grid-template-columns: 1fr; }
  .quote-intro { position: static; }
  .quote-intro h1 { max-width: 720px; }
  .quote-intro > p:last-of-type { max-width: 660px; }
  .quote-promise { max-width: 660px; }

  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-inner p:nth-child(2) { display: none; }
}

@media (max-width: 640px) {
  :root { --shell: calc(100vw - 32px); }
  body { padding-bottom: 70px; }
  body.booking-page { padding-bottom: 0; }

  .brand-logo-lockup { width: 105px; height: 70px; }
  .brand-intro-logo { width: min(94vw, 520px); }
  .brand-intro-line { bottom: 94px; }
  .brand-intro-skip { right: 16px; bottom: 16px; }
  .hero { min-height: 700px; height: 100svh; }
  .hero-content { padding-bottom: 205px; }
  .hero h1 { font-size: clamp(3.35rem, 17vw, 5.3rem); }
  .hero-intro { margin-top: 22px; font-size: 1rem; }
  .hero-actions { margin-top: 26px; }
  .button { width: 100%; }
  .button-ghost { display: none; }
  .rating-card { right: 16px; bottom: 86px; left: 16px; min-width: 0; padding: 17px 19px; }
  .rating-number { font-size: 2.9rem; }

  .intro-section,
  .reviews-section,
  .services-section,
  .visit-section { padding-block: 80px; }

  .intro-copy h2,
  .section-head h2,
  .reviews-head h2,
  .visit-copy h2 { font-size: clamp(3.4rem, 17vw, 5rem); }

  .result-gallery { grid-template-columns: 1fr; gap: 16px; margin-top: 55px; }
  .result-shot-main { aspect-ratio: 1; }
  .result-shot-side { aspect-ratio: 1.05; margin: 0; }
  .result-note { right: -4px; bottom: auto; top: calc(50% - 66px); width: 118px; }
  .result-shot figcaption { padding: 18px; }

  .project-showcase { margin-top: 95px; }
  .project-showcase-head { display: block; }
  .project-showcase-head a { display: inline-block; margin-top: 28px; }
  .project-grid { grid-template-columns: 1fr; gap: 12px; }
  .project-card,
  .project-card-wide,
  .project-card-detail,
  .project-card-half,
  .project-card-m4,
  .project-card-m4-wide { grid-column: auto; height: 390px; }
  .project-card:nth-child(2),
  .project-card:nth-child(3) { height: 470px; }
  .project-card:nth-child(4),
  .project-card:nth-child(6) { height: 250px; }
  .project-card figcaption { padding: 20px; }

  .service-list { margin-top: 52px; }
  .service-item { grid-template-columns: 36px 1fr; gap: 16px; min-height: 0; padding-block: 30px; }
  .service-number { padding-top: 8px; }
  .service-item h3 { font-size: 2.3rem; }
  .service-tag { display: none; }

  .assurance-grid { grid-template-columns: 1fr; margin-top: 60px; }
  .assurance-grid > div { min-height: 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .assurance-grid > div:last-child { border-bottom: 0; }

  .reviews-head { display: block; }
  .reviews-head a { display: inline-block; margin-top: 28px; }
  .reviews-grid { grid-template-columns: 1fr; margin-top: 45px; }
  .review-card-featured { grid-column: auto; }
  .review-card { min-height: 280px; }

  .booking-main { padding: 122px 0 75px; }
  .quote-layout { gap: 52px; }
  .quote-back { margin-bottom: 44px; }
  .quote-intro h1 { font-size: clamp(3.55rem, 18vw, 5.1rem); }
  .quote-intro > p:last-of-type { font-size: 1rem; }
  .quote-promise { margin-top: 40px; }
  .quote-form { padding: 28px 20px; }
  .quote-step { margin-bottom: 38px; padding-bottom: 38px; }
  .service-options,
  .form-grid,
  .location-options { grid-template-columns: 1fr; }
  .service-option-body { min-height: 104px; }

  .visit-card-block { padding: 28px 24px; }
  .visit-card-footer { padding: 24px; }
  .visit-card address { font-size: 1.45rem; }

  .footer-inner { display: block; }
  .footer-inner p:last-child { margin-top: 22px; }

  .whatsapp-button {
    right: 16px;
    bottom: 86px;
    width: 56px;
    min-height: 56px;
    padding: 0;
  }

  .whatsapp-button span { display: none; }

  .mobile-call {
    position: fixed;
    z-index: 99;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    padding: 0 20px;
    background: var(--accent);
    color: var(--ink);
    font-size: 0.72rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
  }

  .mobile-call strong { font-weight: 900; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .brand-intro { display: none; }
}
