:root {
  --black: #080808;
  --graphite: #171717;
  --graphite-soft: #242424;
  --orange: #f47a24;
  --orange-deep: #ad450e;
  --cream: #f5f2ea;
  --cream-deep: #ebe6db;
  --white: #ffffff;
  --ink: #161616;
  --muted: #625f59;
  --line: rgba(8, 8, 8, 0.18);
  --line-light: rgba(255, 255, 255, 0.2);
  --display: "Bahnschrift Condensed", "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  --sans: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --shell: min(1240px, calc(100% - 48px));
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body,
a {
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

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

figure,
blockquote {
  margin-inline: 0;
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-stretch: condensed;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.95;
}

h1 {
  max-width: 8.7em;
  margin-bottom: 28px;
  font-size: clamp(4rem, 6.3vw, 7.15rem);
  text-wrap: balance;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(3rem, 5vw, 5.8rem);
  text-wrap: balance;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.55rem, 2.3vw, 2.35rem);
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  translate: 0 -160%;
  background: var(--orange);
  color: var(--black);
  font-weight: 800;
}

.skip-link:focus {
  translate: 0;
}

:focus-visible {
  outline: 3px solid var(--orange-deep);
  outline-offset: 4px;
}

.site-header :focus-visible,
.hero :focus-visible,
.scale :focus-visible,
.contact :focus-visible,
.site-footer :focus-visible {
  outline-color: var(--orange);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(8, 8, 8, 0.9);
  color: var(--white);
  backdrop-filter: blur(18px);
  transition: background-color 220ms ease, box-shadow 220ms ease;
}

.site-header::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  width: var(--scroll-progress, 0%);
  height: 2px;
  background: var(--orange);
  content: "";
  pointer-events: none;
}

.site-header.is-scrolled {
  background: rgba(8, 8, 8, 0.97);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.24);
}

.header-shell {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto minmax(100px, 1fr);
  align-items: center;
  width: min(1400px, calc(100% - 40px));
  min-height: 78px;
  margin-inline: auto;
  gap: 32px;
  transition: min-height 240ms var(--ease-out);
}

.site-header.is-scrolled .header-shell {
  min-height: 66px;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  min-height: 44px;
  min-width: 0;
  gap: 13px;
  text-decoration: none;
}

.brand img {
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  object-fit: cover;
  transition: width 240ms var(--ease-out), height 240ms var(--ease-out);
}

.site-header.is-scrolled .brand img {
  width: 44px;
  height: 44px;
}

.brand-copy {
  display: grid;
  min-width: 0;
  gap: 2px;
  line-height: 1.05;
}

.brand-copy strong {
  color: var(--white);
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-wrap: balance;
  text-transform: uppercase;
}

.brand-copy small {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}

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

.primary-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding-block: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  scale: 0 1;
  background: var(--orange);
  content: "";
  transform-origin: left;
  transition: scale 180ms ease;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after,
.primary-nav a.is-active::after {
  scale: 1 1;
}

.primary-nav a.is-active {
  color: var(--white);
}

.header-call {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  min-height: 44px;
  padding: 10px 18px;
  border: 1px solid var(--orange);
  background: var(--orange);
  color: var(--black);
  font-size: 0.86rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 180ms ease, color 180ms ease;
}

.hero {
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.hero-stage {
  display: grid;
  grid-template-columns: minmax(440px, 0.82fr) minmax(650px, 1.18fr);
  width: min(1440px, 100%);
  min-height: 720px;
  margin-inline: auto;
}

.hero-stage > * {
  min-width: 0;
}

.hero-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 720px;
  padding: clamp(50px, 5.4vw, 82px);
  overflow: hidden;
  border-right: 1px solid var(--line-light);
  background:
    radial-gradient(circle at 100% 0%, rgba(244, 122, 36, 0.18), transparent 28%),
    linear-gradient(145deg, #080808 0%, #111111 100%);
  color: var(--white);
}

.hero-copy::before,
.hero-copy::after {
  position: absolute;
  border: 1px solid rgba(244, 122, 36, 0.18);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.hero-copy::before {
  top: -170px;
  right: -150px;
  width: 420px;
  height: 420px;
}

.hero-copy::after {
  top: -108px;
  right: -88px;
  width: 296px;
  height: 296px;
}

.hero-copy > * {
  position: relative;
  z-index: 1;
}

.hero-lockup {
  display: flex;
  align-items: center;
  margin-bottom: 34px;
  gap: 16px;
}

.hero-lockup img {
  width: 84px;
  height: 84px;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  object-fit: cover;
}

.hero-lockup p {
  display: grid;
  margin: 0;
  gap: 5px;
  line-height: 1.05;
}

.hero-lockup strong {
  font-family: var(--display);
  font-size: 1.2rem;
  letter-spacing: 0.09em;
  text-wrap: balance;
  text-transform: uppercase;
}

.hero-lockup span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.74rem;
  letter-spacing: 0.04em;
}

.eyebrow,
.section-kicker {
  margin-bottom: 24px;
  color: var(--orange-deep);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  gap: 10px;
  color: var(--orange);
}

.eyebrow span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(244, 122, 36, 0.14);
}

.hero-copy h1 {
  max-width: 7.7em;
  color: var(--white);
  font-size: clamp(4.15rem, 5.7vw, 6.4rem);
}

.hero-intro {
  max-width: 34rem;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(1rem, 1.3vw, 1.14rem);
}

.hero-services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 34rem;
  margin-bottom: 30px;
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.hero-services a {
  display: flex;
  align-items: center;
  min-height: 50px;
  padding: 10px 14px;
  gap: 11px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 750;
  text-decoration: none;
  transition: background-color 180ms ease, color 180ms ease;
}

.hero-services a span {
  color: var(--orange);
  font-family: var(--display);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 28px;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 21px;
  border: 1px solid transparent;
  font-size: 0.88rem;
  font-weight: 850;
  letter-spacing: 0.025em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button-primary {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--black);
}

.button-primary:hover {
  border-color: var(--orange);
  background: transparent;
  color: var(--orange);
}

.button-outline {
  border-color: var(--black);
  color: var(--black);
}

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

.button-light-outline {
  border-color: rgba(255, 255, 255, 0.62);
  color: var(--white);
}

.button-light-outline:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--black);
}

.button-facebook {
  gap: 9px;
  border-color: var(--white);
  background: var(--white);
  color: var(--black);
}

.facebook-mark {
  display: grid;
  width: 23px;
  height: 23px;
  flex: 0 0 auto;
  place-items: end center;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  font-family: Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1;
}

.button-instagram {
  gap: 9px;
  border-color: rgba(255, 255, 255, 0.62);
  background: var(--graphite);
  color: var(--white);
}

.instagram-mark {
  position: relative;
  display: grid;
  width: 23px;
  height: 23px;
  flex: 0 0 auto;
  border: 1px solid var(--orange);
  border-radius: 7px;
}

.instagram-mark::before {
  position: absolute;
  inset: 6px;
  border: 1px solid var(--orange);
  border-radius: 50%;
  content: "";
}

.instagram-mark::after {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--orange);
  content: "";
}

.hero-direct {
  max-width: 34rem;
  margin-bottom: 0;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.8rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-visual {
  display: grid;
  grid-template-columns: minmax(0, 1.32fr) minmax(230px, 0.68fr);
  grid-template-rows: minmax(0, 1fr) auto;
  min-height: 720px;
  padding: 12px;
  gap: 12px;
  background: var(--black);
}

.hero-media,
.hero-inset {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--graphite);
}

.hero-media {
  grid-row: 1 / 3;
  min-height: 696px;
}

.hero-media::after {
  position: absolute;
  inset: 40% 0 0;
  background: linear-gradient(transparent, rgba(8, 8, 8, 0.76));
  content: "";
  pointer-events: none;
}

.hero-media img,
.hero-inset img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media img {
  min-height: 696px;
  object-position: 56% 46%;
}

.hero-media figcaption {
  position: absolute;
  z-index: 1;
  right: 24px;
  bottom: 22px;
  left: 24px;
  display: grid;
  padding-left: 14px;
  border-left: 3px solid var(--orange);
  color: var(--white);
  line-height: 1.15;
}

.hero-media figcaption strong {
  font-family: var(--display);
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-media figcaption span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.72rem;
}

.hero-inset {
  min-height: 394px;
  border: 1px solid rgba(244, 122, 36, 0.7);
}

.hero-inset img {
  min-height: 394px;
  object-position: 57% 44%;
}

.hero-inset figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 12px 14px;
  background: rgba(8, 8, 8, 0.86);
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.65rem;
  font-weight: 750;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.hero-proof-stack {
  display: grid;
  align-self: end;
  border-top: 1px solid var(--line-light);
  background: var(--graphite);
}

.hero-proof-stack p {
  display: grid;
  min-width: 0;
  min-height: 82px;
  margin: 0;
  padding: 14px 16px;
  border-right: 0;
  border-bottom: 1px solid var(--line-light);
  align-content: center;
  line-height: 1.2;
}

.hero-proof-stack p:last-child {
  border-bottom: 0;
}

.hero-proof-stack strong {
  color: var(--orange);
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 850;
  letter-spacing: 0.01em;
}

.hero-proof-stack span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.68rem;
}

.section {
  padding-block: clamp(86px, 10vw, 148px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(270px, 0.65fr);
  align-items: end;
  margin-bottom: clamp(48px, 6vw, 80px);
  gap: clamp(36px, 8vw, 120px);
}

.section-heading > * {
  min-width: 0;
}

.section-heading h2,
.section-heading p:last-child {
  margin-bottom: 0;
}

.section-heading > p {
  color: var(--muted);
}

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

.service-bands {
  border-bottom: 1px solid var(--line);
}

.service-band {
  border-top: 1px solid var(--line);
  transition: background-color 260ms ease;
}

.service-band summary {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  align-items: center;
  min-height: 124px;
  padding: 26px 4px;
  gap: 26px;
  cursor: pointer;
  list-style: none;
}

.service-band summary::-webkit-details-marker {
  display: none;
}

.service-band summary::marker {
  content: "";
}

.service-index {
  color: var(--orange-deep);
  font-family: var(--display);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.service-name {
  max-width: 18em;
  font-family: var(--display);
  font-size: clamp(2rem, 3.6vw, 3.85rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.95;
  text-wrap: balance;
  transition: color 180ms ease, translate 240ms var(--ease-out);
}

.service-action {
  display: flex;
  align-items: center;
  min-height: 44px;
  gap: 14px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-action i {
  position: relative;
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  transition: background-color 180ms ease, border-color 180ms ease, rotate 260ms var(--ease-out);
}

.service-action i::before,
.service-action i::after {
  position: absolute;
  width: 14px;
  height: 2px;
  background: var(--orange-deep);
  content: "";
  transition: scale 220ms var(--ease-out);
}

.service-action i::after {
  rotate: 90deg;
}

.service-band[open] {
  background: rgba(255, 255, 255, 0.42);
}

.service-band[open] .service-action i {
  border-color: var(--orange);
  background: var(--orange);
}

.service-band[open] .service-action i::before,
.service-band[open] .service-action i::after {
  background: var(--black);
}

.service-band[open] .service-action i::after {
  scale: 1 0;
}

.service-panel {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  translate: -28px 0;
  transition: grid-template-rows 480ms var(--ease-out), opacity 300ms ease, translate 480ms var(--ease-out);
}

.service-band[open] .service-panel {
  grid-template-rows: 1fr;
  opacity: 1;
  translate: 0;
}

.service-band.is-opening .service-panel,
.service-band.is-closing .service-panel {
  opacity: 0;
  translate: -28px 0;
}

.service-band.is-measuring .service-panel {
  transition: none;
}

.service-band.is-closing .service-action i {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.35);
}

.service-band.is-closing .service-action i::before,
.service-band.is-closing .service-action i::after {
  background: var(--orange-deep);
}

.service-band.is-closing .service-action i::after {
  scale: 1 1;
}

.service-panel-inner {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  min-height: 0;
  padding: 16px 4px 34px;
  overflow: hidden;
  gap: 26px;
}

.service-panel-inner > span {
  grid-column: 2;
  color: var(--orange-deep);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-panel-inner p {
  grid-column: 2;
  max-width: 48rem;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
}

.service-band:nth-child(even) {
  background: rgba(255, 255, 255, 0.35);
}

@media (min-width: 821px) {
  .service-band[open] {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    align-items: stretch;
  }

  .service-band[open] summary {
    grid-column: 1;
    grid-row: 1;
    grid-template-columns: 72px minmax(0, 1fr) 44px;
    min-height: 158px;
    padding-right: 26px;
    border-right: 1px solid var(--line);
  }

  .service-band[open] .service-action-label {
    display: none;
  }

  .service-band[open] .service-name {
    font-size: clamp(2.2rem, 3vw, 3.3rem);
  }

  .service-band[open] .service-panel {
    grid-column: 2;
    grid-row: 1;
    grid-template-rows: 1fr;
    align-self: stretch;
  }

  .service-band[open] .service-panel-inner {
    grid-template-columns: 1fr;
    align-content: center;
    padding: 30px clamp(34px, 4vw, 62px);
  }

  .service-band[open] .service-panel-inner > span,
  .service-band[open] .service-panel-inner p {
    grid-column: 1;
  }
}

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

.section-kicker-dark {
  color: var(--orange);
}

.scale-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  align-items: end;
  margin-bottom: 64px;
  gap: clamp(36px, 8vw, 120px);
}

.scale-heading .section-kicker {
  grid-column: 1 / -1;
  margin-bottom: -18px;
}

.scale-heading h2,
.scale-heading > p:last-child {
  margin-bottom: 0;
}

.scale-heading > p:last-child {
  color: rgba(255, 255, 255, 0.65);
}

.scale-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 46px;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.scale-grid article {
  padding: clamp(34px, 5vw, 66px);
}

.scale-grid article:first-child {
  padding-left: 0;
  border-right: 1px solid var(--line-light);
}

.scale-grid article:last-child {
  padding-right: 0;
}

.scale-label {
  margin-bottom: 30px;
  color: var(--orange);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scale-grid h3 {
  max-width: 12em;
  color: var(--white);
  font-size: clamp(2.25rem, 4vw, 4.3rem);
}

.scale-grid ul {
  display: grid;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.scale-grid li {
  padding-block: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.72);
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--orange-deep);
  font-weight: 850;
  text-decoration-color: currentColor;
  text-decoration-thickness: 2px;
  text-underline-offset: 7px;
  transition: color 180ms ease, text-underline-offset 180ms ease;
}

.text-link-light {
  color: var(--orange);
}

.about {
  background: var(--cream-deep);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(360px, 1.08fr);
  align-items: stretch;
  gap: clamp(50px, 9vw, 130px);
}

.about-grid > * {
  min-width: 0;
}

.about-media {
  position: relative;
  min-height: 660px;
  margin-block: 0;
  overflow: hidden;
  background: var(--graphite);
}

.about-media::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 8px;
  height: 44%;
  background: var(--orange);
  content: "";
}

.about-media img {
  width: 100%;
  height: 100%;
  min-height: 660px;
  object-fit: cover;
  object-position: 50% 42%;
}

.about-media figcaption {
  position: absolute;
  z-index: 2;
  right: 8px;
  bottom: 0;
  left: 0;
  padding: 18px 22px;
  background: rgba(8, 8, 8, 0.88);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: 30px;
}

.about-copy h2 {
  max-width: 10.4em;
}

.about-copy > p:not(.section-kicker) {
  max-width: 43rem;
  color: var(--muted);
}

.about-brand {
  display: flex;
  align-items: center;
  max-width: 32rem;
  margin: 24px 0 30px;
  padding: 16px;
  gap: 16px;
  border: 1px solid var(--line);
  background: var(--cream);
}

.about-brand img {
  width: 64px;
  height: 64px;
  flex: 0 0 auto;
  border-radius: 12px;
  object-fit: cover;
}

.about-brand p {
  display: grid;
  margin: 0;
  line-height: 1.2;
}

.about-brand strong {
  font-family: var(--display);
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.about-brand span {
  color: var(--muted);
  font-size: 0.75rem;
}

.reviews {
  background: var(--cream);
}

.review-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.review {
  display: flex;
  flex-direction: column;
  min-height: 390px;
  padding: clamp(30px, 5vw, 58px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.review:nth-child(2),
.review:nth-child(3) {
  background: rgba(255, 255, 255, 0.34);
}

.review-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 34px;
  gap: 12px;
  color: var(--muted);
  font-size: 0.73rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.stars {
  color: var(--orange-deep);
  letter-spacing: 0.09em;
}

.review blockquote {
  margin-bottom: 34px;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.05vw, 2.05rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.review > p {
  margin: auto 0 0;
  color: var(--orange-deep);
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact {
  padding-block: clamp(86px, 10vw, 148px);
  border-top: 6px solid var(--orange);
  background: var(--black);
  color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(330px, 0.85fr);
  gap: clamp(56px, 10vw, 140px);
}

.contact-grid > * {
  min-width: 0;
}

.contact h2 {
  max-width: 8.5em;
  color: var(--white);
}

.contact-main > p:not(.section-kicker) {
  max-width: 38rem;
  color: rgba(255, 255, 255, 0.66);
}

.contact-phone {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  margin: 46px 0 30px;
  padding-block: 22px;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  text-decoration: none;
}

.contact-phone-label {
  grid-column: 1 / -1;
  margin-bottom: 6px;
  color: var(--orange);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-phone strong {
  overflow-wrap: anywhere;
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 5rem);
  letter-spacing: -0.03em;
  line-height: 1;
}

.contact-phone-action {
  align-self: center;
  padding: 8px 12px;
  border: 1px solid var(--line-light);
  color: var(--orange);
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 0;
}

.contact-details {
  display: grid;
  align-content: start;
  border-top: 1px solid var(--line-light);
}

.schedule,
.contact-details address,
.map-link,
.social-links {
  padding-block: 26px;
  border-bottom: 1px solid var(--line-light);
}

.schedule {
  display: grid;
  gap: 18px;
}

.schedule-heading {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.live-dot {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 6px rgba(244, 122, 36, 0.13);
}

.schedule-heading p,
.contact-details address {
  display: grid;
  margin: 0;
  gap: 4px;
  font-style: normal;
}

.schedule-heading p span,
.contact-details address span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.76rem;
}

.schedule-list {
  display: grid;
  margin: 0;
}

.schedule-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  min-height: 44px;
  gap: 18px;
  border-top: 1px solid var(--line-light);
}

.schedule-row dt,
.schedule-row dd {
  margin: 0;
}

.schedule-row dt {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.8rem;
}

.schedule-row dd {
  color: var(--white);
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.025em;
  white-space: nowrap;
}

.map-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  text-decoration: none;
}

.map-link > span {
  display: grid;
}

.map-link small {
  color: var(--orange);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.map-action {
  flex: 0 0 auto;
  padding: 8px 11px;
  border: 1px solid var(--line-light);
  color: var(--orange);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 30px;
}

.social-links a {
  min-height: 44px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  font-weight: 750;
  line-height: 44px;
  text-underline-offset: 5px;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 620ms ease, transform 720ms var(--ease-out);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

.js .service-band[data-reveal] {
  transition: background-color 260ms ease, opacity 620ms ease, transform 720ms var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .header-call:hover {
    background: transparent;
    color: var(--orange);
  }

  .button-facebook:hover {
    border-color: var(--orange);
    background: var(--orange);
    color: var(--black);
  }

  .button-instagram:hover {
    border-color: var(--orange);
    color: var(--orange);
  }

  .hero-services a:hover {
    background: var(--orange);
    color: var(--black);
  }

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

  .service-band summary:hover .service-name {
    color: var(--orange-deep);
    translate: 7px 0;
  }

  .service-band summary:hover .service-action i {
    border-color: var(--orange);
  }

  .text-link:hover {
    text-underline-offset: 10px;
  }

  .contact-phone:hover,
  .map-link:hover,
  .social-links a:hover {
    color: var(--orange);
  }
}

.site-footer {
  padding-block: 30px;
  border-top: 1px solid var(--line-light);
  background: var(--black);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 1.2fr) 1fr;
  align-items: center;
  gap: 30px;
}

.brand-footer img {
  width: 44px;
  height: 44px;
  border-radius: 10px;
}

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

.footer-grid > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.7rem;
  line-height: 1.4;
  text-align: center;
}

.footer-grid > a:last-child {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  min-height: 44px;
  color: var(--orange);
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 850;
}

@media (max-width: 1100px) {
  .header-shell {
    grid-template-columns: minmax(250px, 1fr) auto;
  }

  .primary-nav {
    display: none;
  }

  .hero-stage {
    grid-template-columns: minmax(390px, 0.9fr) minmax(0, 1.1fr);
  }

  .hero-stage,
  .hero-copy,
  .hero-visual {
    min-height: 680px;
  }

  .hero-copy {
    padding: 44px;
  }

  .hero-copy h1 {
    font-size: clamp(3.75rem, 6vw, 5.2rem);
  }

  .hero-visual {
    grid-template-columns: minmax(0, 1.24fr) minmax(190px, 0.76fr);
  }

  .hero-media,
  .hero-media img {
    min-height: 656px;
  }

  .hero-inset,
  .hero-inset img {
    min-height: 360px;
  }
}

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

  html {
    scroll-padding-top: 76px;
  }

  .header-shell {
    width: calc(100% - 28px);
    min-height: 70px;
    gap: 14px;
  }

  .brand img {
    width: 46px;
    height: 46px;
    border-radius: 10px;
  }

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

  .brand-copy small {
    font-size: 0.65rem;
  }

  .header-call {
    min-height: 44px;
    padding-inline: 15px;
  }

  .hero-stage {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero-copy {
    min-height: 0;
    padding: clamp(44px, 8vw, 68px) max(18px, calc((100vw - 680px) / 2));
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .hero-copy h1 {
    max-width: 8.2em;
    font-size: clamp(4rem, 11vw, 5.7rem);
  }

  .hero-visual {
    grid-template-columns: minmax(0, 1.4fr) minmax(210px, 0.6fr);
    min-height: 640px;
  }

  .hero-media,
  .hero-media img {
    min-height: 616px;
  }

  .hero-media img {
    object-position: 54% 42%;
  }

  .hero-inset,
  .hero-inset img {
    min-height: 348px;
  }

  .section-heading,
  .scale-heading,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .section-heading,
  .scale-heading {
    align-items: start;
    gap: 18px;
  }

  .scale-heading .section-kicker {
    margin-bottom: 0;
  }

  .service-band summary {
    grid-template-columns: 52px minmax(0, 1fr) auto;
    min-height: 108px;
    gap: 18px;
  }

  .service-name {
    font-size: clamp(2rem, 6vw, 3.1rem);
  }

  .service-panel-inner {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 18px;
  }

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

  .scale-grid article:first-child,
  .scale-grid article:last-child {
    padding-inline: 0;
  }

  .scale-grid article:first-child {
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .about-grid {
    gap: 44px;
  }

  .about-media,
  .about-media img {
    min-height: min(118vw, 720px);
  }

  .about-copy {
    padding-block: 0;
  }

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

  .review {
    min-height: 0;
  }

  .review:nth-child(3) {
    background: transparent;
  }

  .review:nth-child(even) {
    background: rgba(255, 255, 255, 0.34);
  }

  .contact-grid {
    gap: 70px;
  }

  .footer-grid {
    grid-template-columns: 1fr auto;
  }

  .footer-grid > p {
    grid-column: 1 / -1;
    grid-row: 2;
    text-align: left;
  }
}

@media (max-width: 520px) {
  :root {
    --shell: calc(100% - 30px);
  }

  body {
    font-size: 16px;
  }

  .header-shell {
    grid-template-columns: minmax(0, 1fr) auto;
    width: calc(100% - 24px);
    min-height: 66px;
    gap: 8px;
  }

  .site-header.is-scrolled .header-shell {
    min-height: 60px;
  }

  .brand {
    gap: 9px;
  }

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

  .site-header.is-scrolled .brand img {
    width: 38px;
    height: 38px;
  }

  .brand-copy strong {
    max-width: none;
    overflow: visible;
    font-size: 0.78rem;
    letter-spacing: 0.035em;
    line-height: 1.05;
    text-overflow: clip;
    text-wrap: balance;
    white-space: normal;
  }

  .brand-copy small {
    display: none;
  }

  .header-call {
    min-width: 82px;
    padding-inline: 10px;
    font-size: 0.72rem;
  }

  .hero-copy {
    padding: 34px 15px 42px;
  }

  .hero-lockup {
    margin-bottom: 26px;
  }

  .hero-lockup img {
    width: 66px;
    height: 66px;
    border-radius: 14px;
  }

  .hero-lockup strong {
    font-size: 1rem;
  }

  .eyebrow {
    margin-bottom: 20px;
  }

  .hero-copy h1 {
    margin-bottom: 22px;
    font-size: clamp(3.15rem, 16vw, 4.35rem);
  }

  .hero-intro {
    margin-bottom: 24px;
    font-size: 1rem;
  }

  .hero-services {
    margin-bottom: 26px;
  }

  .hero-services a {
    min-height: 46px;
    padding-inline: 10px;
    gap: 8px;
    font-size: 0.72rem;
  }

  .hero-actions,
  .contact-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .hero-visual {
    position: relative;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    min-height: 0;
    padding: 10px;
    gap: 10px;
  }

  .hero-media {
    grid-row: 1;
    aspect-ratio: 4 / 5;
    min-height: 0;
  }

  .hero-media img {
    min-height: 0;
    object-position: 52% 42%;
  }

  .hero-inset {
    position: absolute;
    z-index: 2;
    top: 28px;
    right: 24px;
    width: 37%;
    min-height: 0;
    aspect-ratio: 3 / 4;
    border: 5px solid var(--black);
    outline: 1px solid var(--orange);
  }

  .hero-inset img {
    min-height: 0;
    object-position: 54% 43%;
  }

  .hero-inset figcaption {
    display: none;
  }

  .hero-proof-stack {
    grid-row: 2;
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-proof-stack p {
    min-height: 78px;
    padding: 12px 9px;
    border-right: 1px solid var(--line-light);
    border-bottom: 0;
  }

  .hero-proof-stack p:last-child {
    border-right: 0;
  }

  .hero-proof-stack strong {
    font-size: 0.94rem;
  }

  .hero-proof-stack span {
    font-size: 0.6rem;
  }

  .section {
    padding-block: 78px;
  }

  h2 {
    font-size: clamp(2.8rem, 14vw, 4rem);
  }

  .service-band summary {
    grid-template-columns: 36px minmax(0, 1fr) 42px;
    min-height: 94px;
    padding-block: 20px;
    gap: 10px;
  }

  .service-name {
    font-size: 2rem;
  }

  .service-action-label {
    display: none;
  }

  .service-action,
  .service-action i {
    width: 42px;
    height: 42px;
  }

  .service-panel-inner {
    grid-template-columns: 36px minmax(0, 1fr);
    padding-bottom: 26px;
    gap: 10px;
  }

  .scale-grid h3 {
    font-size: 2.65rem;
  }

  .about-media,
  .about-media img {
    min-height: 132vw;
  }

  .about-brand {
    padding: 12px;
  }

  .about-brand img {
    width: 56px;
    height: 56px;
  }

  .review {
    padding: 30px 24px;
  }

  .review blockquote {
    font-size: 1.4rem;
  }

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

  .contact-phone strong {
    font-size: clamp(2.2rem, 12vw, 3.4rem);
  }

  .contact-phone-action {
    display: none;
  }

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

  .footer-grid > p,
  .footer-grid > a:last-child {
    grid-column: 1;
    justify-self: start;
    text-align: left;
  }

  .footer-grid > p {
    grid-row: auto;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-lockup,
  .hero-copy .eyebrow,
  .hero-copy h1,
  .hero-intro,
  .hero-services,
  .hero-actions,
  .hero-direct {
    animation: hero-rise 680ms var(--ease-out) both;
  }

  .hero-copy .eyebrow {
    animation-delay: 70ms;
  }

  .hero-copy h1 {
    animation-delay: 130ms;
  }

  .hero-intro {
    animation-delay: 190ms;
  }

  .hero-services {
    animation-delay: 250ms;
  }

  .hero-actions {
    animation-delay: 310ms;
  }

  .hero-direct {
    animation-delay: 370ms;
  }

  .hero-media img {
    animation: hero-photo 1.1s var(--ease-out) both;
  }

  .hero-inset {
    animation: hero-inset 820ms 240ms var(--ease-out) both;
  }

  @keyframes hero-rise {
    from {
      opacity: 0;
      transform: translateY(22px);
    }
  }

  @keyframes hero-photo {
    from {
      opacity: 0.3;
      scale: 1.045;
    }
  }

  @keyframes hero-inset {
    from {
      opacity: 0;
      transform: translateX(24px);
    }
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .site-header,
  .hero-actions,
  .contact-actions,
  .social-links,
  .skip-link {
    display: none;
  }

  body,
  .hero,
  .scale,
  .contact,
  .site-footer {
    background: var(--white);
    color: var(--black);
  }

  details.service-band > .service-panel {
    display: grid !important;
    grid-template-rows: 1fr !important;
    opacity: 1 !important;
    translate: 0 !important;
  }
}
