:root {
  --ink: #0a0a0a;
  --ink-2: #111;
  --panel: #171717;
  --paper: #f0eee9;
  --paper-2: #e5e2dc;
  --white: #fff;
  --muted: #aaa7a0;
  --line: rgba(255, 255, 255, .14);
  --dark-line: rgba(10, 10, 10, .14);
  --accent: #d3a15a;
  --accent-light: #efc887;
  --radius: 2px;
  --container: min(1380px, calc(100vw - 80px));
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

button,
input,
select {
  font: inherit;
}

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

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

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

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

em {
  color: var(--accent);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.page-progress {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: transparent;
  pointer-events: none;
}

.page-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--accent);
}

.cursor-glow {
  position: fixed;
  z-index: 20;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  pointer-events: none;
  opacity: .12;
  background: radial-gradient(circle, rgba(211, 161, 90, .75), transparent 65%);
  transform: translate(-50%, -50%);
  mix-blend-mode: screen;
}

.site-header {
  position: absolute;
  z-index: 100;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 94px;
  padding: 0 42px;
  color: var(--white);
  border-bottom: 1px solid var(--line);
  transition: background .35s ease, min-height .35s ease, transform .35s ease;
}

.site-header.is-fixed {
  position: fixed;
  min-height: 72px;
  background: rgba(9, 9, 9, .92);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--ink);
  background: var(--accent);
  font-size: 25px;
  font-weight: 900;
  letter-spacing: -.08em;
  transform: skewX(-8deg);
}

.brand-type {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-type b {
  font-size: 22px;
  letter-spacing: .14em;
  line-height: 1;
}

.brand-type small {
  color: #b8b8b8;
  font-size: 8px;
  letter-spacing: .36em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 40px);
  margin-left: auto;
  margin-right: auto;
}

.desktop-nav a {
  position: relative;
  color: #d5d5d5;
  font-size: 13px;
  letter-spacing: .04em;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.header-phone {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 3px;
}

.header-phone span {
  color: #8b8b8b;
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.header-phone b {
  font-size: 14px;
  letter-spacing: .04em;
}

.phone-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
}

.phone-list a {
  color: inherit;
}

.phone-list--header {
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
}

.phone-list--contact {
  flex-direction: column;
  gap: 3px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 26px;
  cursor: pointer;
  color: var(--ink);
  border: 1px solid var(--accent);
  border-radius: 0;
  background: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
  transition: color .25s ease, background .25s ease, transform .25s ease;
}

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

.button svg {
  width: 20px;
  margin-left: 26px;
}

.button--small {
  min-height: 42px;
  padding: 0 20px;
  font-size: 10px;
}

.button--ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, .3);
  background: transparent;
}

.button--ghost:hover {
  color: var(--ink);
  border-color: var(--accent);
  background: var(--accent);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 12px 8px;
  cursor: pointer;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 27px;
  height: 1px;
  margin: 6px auto;
  background: currentColor;
  transition: transform .3s ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  z-index: 90;
  inset: 0;
  display: flex;
  visibility: hidden;
  flex-direction: column;
  justify-content: center;
  padding: 120px 40px 50px;
  color: var(--white);
  background: #0c0c0c;
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity .35s ease, transform .35s ease, visibility .35s;
}

.mobile-menu.is-open {
  visibility: visible;
  opacity: 1;
  transform: none;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
}

.mobile-menu nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 19px 0;
  border-bottom: 1px solid var(--line);
  font-family: Georgia, serif;
  font-size: clamp(28px, 7vw, 46px);
}

.mobile-menu nav span {
  color: var(--accent);
  font-family: Arial, sans-serif;
  font-size: 10px;
}

.mobile-menu__footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-top: 48px;
  color: #aaa;
}

.mobile-menu__footer a {
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
}

.mobile-menu__footer p {
  margin: 0;
  text-align: right;
}

.hero {
  position: relative;
  display: flex;
  min-height: 880px;
  height: 100svh;
  align-items: center;
  color: var(--white);
  background: var(--ink);
  overflow: hidden;
}

.hero__media,
.hero__media img,
.hero__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__media img {
  object-fit: cover;
  object-position: center;
  animation: heroZoom 14s ease-out both;
}

@keyframes heroZoom {
  from { transform: scale(1.07); }
  to { transform: scale(1); }
}

.hero__overlay {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, .96) 0%, rgba(5, 5, 5, .75) 37%, rgba(5, 5, 5, .08) 72%),
    linear-gradient(0deg, rgba(5, 5, 5, .8) 0%, transparent 45%),
    linear-gradient(180deg, rgba(5, 5, 5, .3) 0%, transparent 22%);
}

.hero__content {
  position: relative;
  z-index: 2;
  width: var(--container);
  margin: auto;
  padding-top: 40px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
  color: #b8b8b8;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 34px;
  height: 1px;
  background: var(--accent);
}

.eyebrow--dark {
  color: #65625e;
}

.hero h1 {
  max-width: 940px;
  margin: 28px 0 30px;
  font-size: clamp(54px, 6.5vw, 104px);
  font-weight: 300;
  letter-spacing: -.055em;
  line-height: .94;
}

.hero h1 em {
  font-size: .84em;
  letter-spacing: -.045em;
}

.hero__lead {
  max-width: 570px;
  margin: 0;
  color: #bbb;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-top: 42px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
}

.play-icon {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  padding-left: 2px;
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 50%;
  color: var(--accent);
  font-size: 8px;
  transition: border-color .25s ease, transform .25s ease;
}

.text-link:hover .play-icon {
  border-color: var(--accent);
  transform: scale(1.08);
}

.hero__bottom {
  position: absolute;
  z-index: 3;
  right: 42px;
  bottom: 0;
  left: 42px;
  display: grid;
  grid-template-columns: repeat(3, minmax(100px, 165px)) 1fr;
  min-height: 115px;
  border-top: 1px solid var(--line);
}

.hero-stat {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--line);
}

.hero-stat b {
  color: var(--white);
  font-family: Georgia, serif;
  font-size: 27px;
  font-weight: 400;
}

.hero-stat span {
  margin-top: 4px;
  color: #777;
  font-size: 9px;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.hero-address {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  color: #8d8d8d;
  font-size: 10px;
  letter-spacing: .06em;
  line-height: 1.65;
  text-transform: uppercase;
}

.hero-address svg {
  width: 23px;
  color: var(--accent);
}

.hero-address b {
  color: #ddd;
}

.scroll-hint {
  position: absolute;
  z-index: 5;
  right: 24px;
  top: 49%;
  display: flex;
  align-items: center;
  gap: 15px;
  color: #737373;
  font-size: 8px;
  letter-spacing: .2em;
  text-transform: uppercase;
  transform: rotate(90deg);
  transform-origin: right center;
}

.scroll-hint i {
  position: relative;
  width: 65px;
  height: 1px;
  background: #555;
  overflow: hidden;
}

.scroll-hint i::after {
  position: absolute;
  width: 25px;
  height: 1px;
  content: "";
  background: var(--accent);
  animation: scrollLine 1.8s ease-in-out infinite;
}

@keyframes scrollLine {
  from { transform: translateX(-30px); }
  to { transform: translateX(70px); }
}

.ticker {
  padding: 20px 0;
  color: #171717;
  background: var(--accent);
  overflow: hidden;
}

.ticker__track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 34px;
  white-space: nowrap;
  animation: ticker 24s linear infinite;
}

.ticker span {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .26em;
}

.ticker i {
  font-size: 11px;
}

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

.section {
  width: var(--container);
  margin: 0 auto;
  padding: 135px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.5fr .65fr;
  align-items: end;
  gap: 90px;
  margin-bottom: 70px;
}

.section-heading h2,
.results h2,
.calculator h2,
.reviews h2,
.faq h2,
.contact-section h2,
.modal h2 {
  margin: 20px 0 0;
  font-size: clamp(46px, 5.2vw, 82px);
  font-weight: 300;
  letter-spacing: -.055em;
  line-height: .98;
}

.section-heading p {
  margin: 0 0 4px;
  color: #6c6964;
  font-size: 15px;
  line-height: 1.8;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #cfcbc4;
  border: 1px solid #cfcbc4;
}

.service-showcase {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: -25px 0 46px;
}

.service-photo-card {
  position: relative;
  min-height: 410px;
  cursor: pointer;
  background: #151515;
  overflow: hidden;
  isolation: isolate;
}

.service-photo-card img {
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease), filter .45s ease;
}

.service-photo-card::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.84)),
    linear-gradient(90deg, rgba(0,0,0,.4), transparent 55%);
  opacity: .75;
  transition: opacity .35s ease;
}

.service-photo-card__overlay {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 26px;
  color: var(--white);
  transform: translateY(74px);
  transition: transform .45s var(--ease);
}

.service-photo-card__overlay span {
  color: var(--accent-light);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.service-photo-card__overlay h3 {
  margin: 11px 0 12px;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -.04em;
}

.service-photo-card__overlay p {
  margin: 0 0 22px;
  color: var(--white);
  font-family: Georgia, serif;
  font-size: 25px;
}

.service-photo-card__overlay small {
  display: inline-flex;
  margin: -12px 0 18px;
  padding: 6px 9px;
  color: var(--ink);
  background: var(--accent);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.service-photo-card__overlay .button {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .3s ease, transform .3s ease, color .25s ease, background .25s ease;
}

.service-photo-card:hover img,
.service-photo-card:focus-within img {
  filter: brightness(.72);
  transform: scale(1.06);
}

.service-photo-card:hover::after,
.service-photo-card:focus-within::after {
  opacity: 1;
}

.service-photo-card:hover .service-photo-card__overlay,
.service-photo-card:focus-within .service-photo-card__overlay {
  transform: none;
}

.service-photo-card:hover .button,
.service-photo-card:focus-within .button {
  opacity: 1;
  transform: none;
}

.service-card {
  position: relative;
  display: flex;
  min-height: 430px;
  flex-direction: column;
  padding: 32px;
  background: var(--paper);
  overflow: hidden;
  transition: color .4s ease, background .4s ease;
}

.service-card::before {
  position: absolute;
  inset: auto 0 0;
  height: 4px;
  content: "";
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}

.service-card:not(.service-card--featured):not(.service-card--cta):hover {
  color: var(--white);
  background: #161616;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card__top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #817e78;
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.service-card__top span {
  color: var(--accent);
}

.service-card__icon {
  display: grid;
  width: 93px;
  height: 93px;
  margin: 54px 0 auto;
  place-items: center;
  color: #aaa59c;
  border: 1px solid #d3cfc8;
  border-radius: 50%;
  transition: color .3s ease, border-color .3s ease, transform .4s var(--ease);
}

.service-card:hover .service-card__icon {
  color: var(--accent);
  border-color: var(--accent);
  transform: rotate(8deg);
}

.service-card__icon svg {
  width: 44px;
}

.service-card__body {
  position: relative;
  z-index: 2;
  margin-top: auto;
}

.service-card__body h3,
.service-card--cta h3 {
  margin: 0 0 14px;
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -.03em;
}

.service-card__body p {
  min-height: 48px;
  margin: 0;
  color: #77736c;
  font-size: 13px;
  line-height: 1.65;
  transition: color .3s ease;
}

.service-card:hover .service-card__body p {
  color: #aaa;
}

.service-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 25px;
  padding-top: 18px;
  border-top: 1px solid var(--dark-line);
  font-size: 11px;
}

.service-card:hover .service-card__meta {
  border-color: var(--line);
}

.service-card__meta b {
  color: var(--accent);
  font-size: 14px;
}

.service-card__meta span {
  color: #89857f;
}

.service-card__arrow {
  position: absolute;
  z-index: 3;
  right: 26px;
  bottom: 105px;
  display: grid;
  width: 40px;
  height: 40px;
  cursor: pointer;
  place-items: center;
  color: #777;
  border: 1px solid var(--dark-line);
  border-radius: 50%;
  background: transparent;
  font-size: 18px;
  transition: all .3s ease;
}

.service-card:hover .service-card__arrow {
  color: var(--ink);
  border-color: var(--accent);
  background: var(--accent);
  transform: rotate(45deg);
}

.service-card--featured {
  min-height: 520px;
  grid-row: span 1;
  color: var(--white);
}

.service-card--featured .service-card__image,
.service-card--featured .service-card__image::after {
  position: absolute;
  inset: 0;
}

.service-card--featured .service-card__image::after {
  content: "";
  background: linear-gradient(0deg, rgba(5,5,5,.9), rgba(5,5,5,.05) 70%);
}

.service-card--featured img {
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}

.service-card--featured:hover img {
  transform: scale(1.04);
}

.service-card--featured .service-card__body p {
  color: #b4b4b4;
}

.service-card--featured .service-card__meta {
  border-color: var(--line);
}

.service-card--featured .service-card__arrow {
  color: var(--white);
  border-color: var(--line);
}

.service-card--cta {
  justify-content: space-between;
  color: var(--white);
  background: var(--accent);
}

.service-card--cta__label {
  color: rgba(0,0,0,.55);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.service-card--cta h3 {
  max-width: 350px;
  margin-top: 30px;
  color: var(--ink);
  font-size: 31px;
  line-height: 1.18;
}

.round-button {
  display: grid;
  width: 74px;
  height: 74px;
  margin-left: auto;
  cursor: pointer;
  place-items: center;
  color: var(--white);
  border: 0;
  border-radius: 50%;
  background: var(--ink);
  font-size: 24px;
  transition: transform .35s var(--ease);
}

.round-button:hover {
  transform: rotate(45deg) scale(1.05);
}

.results {
  display: grid;
  grid-template-columns: .75fr 1.35fr;
  min-height: 760px;
  color: var(--white);
  background: var(--ink);
}

.results__intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px clamp(50px, 6vw, 115px);
}

.results__intro p {
  max-width: 430px;
  margin: 35px 0;
  color: #989898;
  font-size: 14px;
  line-height: 1.85;
}

.result-points {
  display: flex;
  flex-direction: column;
  gap: 13px;
  color: #c0c0c0;
  font-size: 12px;
}

.result-points span {
  display: flex;
  align-items: center;
  gap: 11px;
}

.result-points i {
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  color: var(--ink);
  border-radius: 50%;
  background: var(--accent);
  font-size: 10px;
  font-style: normal;
}

.comparison {
  position: relative;
  min-height: 680px;
  overflow: hidden;
}

.comparison > img,
.comparison__before,
.comparison__before img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.comparison__before {
  z-index: 2;
  width: 50%;
  overflow: hidden;
  border-right: 1px solid rgba(255,255,255,.8);
}

.comparison__before img {
  width: calc(100vw * .675);
  max-width: none;
  filter: grayscale(.75) saturate(.45) brightness(.72) contrast(.9);
}

.comparison__range {
  position: absolute;
  z-index: 5;
  inset: 0;
  width: 100%;
  height: 100%;
  cursor: ew-resize;
  opacity: 0;
}

.comparison__handle {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 50%;
  display: flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--ink);
  border: 6px solid rgba(255,255,255,.3);
  border-radius: 50%;
  background: var(--accent);
  background-clip: padding-box;
  font-size: 19px;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.comparison__label {
  position: absolute;
  z-index: 3;
  top: 32px;
  padding: 9px 14px;
  color: var(--white);
  background: rgba(0,0,0,.55);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.comparison__label--before { left: 30px; }
.comparison__label--after { right: 30px; }

.section-heading--compact {
  align-items: center;
}

.portfolio-filters {
  display: flex;
  justify-content: flex-end;
  gap: 7px;
  flex-wrap: wrap;
}

.portfolio-filters button {
  padding: 10px 15px;
  cursor: pointer;
  color: #77736d;
  border: 1px solid #cbc7bf;
  background: transparent;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: all .25s ease;
}

.portfolio-filters button:hover,
.portfolio-filters button.is-active {
  color: var(--white);
  border-color: var(--ink);
  background: var(--ink);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 16px;
}

.project {
  position: relative;
  min-height: 370px;
  overflow: hidden;
  background: #191919;
  transition: opacity .3s ease, transform .3s ease;
}

.project--wide {
  min-height: 500px;
}

.project.is-hidden {
  display: none;
}

.project img {
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease), filter .5s ease;
}

.project:hover img {
  filter: brightness(.8);
  transform: scale(1.035);
}

.project__overlay {
  position: absolute;
  inset: auto 0 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 70px 28px 25px;
  color: var(--white);
  background: linear-gradient(0deg, rgba(0,0,0,.8), transparent);
}

.project__overlay span {
  font-size: 17px;
  font-weight: 500;
}

.project__overlay b {
  color: var(--accent-light);
  font-size: 9px;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.calculator {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 850px;
  color: var(--white);
  background: #121212;
}

.calculator__visual {
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 85px clamp(45px, 6vw, 100px);
  overflow: hidden;
}

.calculator__visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(8,8,8,.92), rgba(8,8,8,.12) 65%);
}

.calculator__visual > img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  filter: saturate(.75);
}

.calculator__visual-content {
  position: relative;
  z-index: 2;
}

.calculator__visual-content p {
  max-width: 420px;
  margin: 30px 0 0;
  color: #aaa;
  font-size: 13px;
  line-height: 1.75;
}

.calculator__form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px clamp(50px, 7vw, 120px);
  background: #181818;
}

.calc-step {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.calc-step__head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}

.calc-step__head span {
  color: var(--accent);
  font-size: 9px;
}

.calc-step__head h3 {
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .04em;
}

.choice-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.choice-row input,
.extras input {
  position: absolute;
  opacity: 0;
}

.choice-row label span {
  display: grid;
  min-height: 46px;
  cursor: pointer;
  place-items: center;
  color: #858585;
  border: 1px solid #3b3b3b;
  font-size: 10px;
  letter-spacing: .06em;
  transition: all .25s ease;
}

.choice-row input:checked + span {
  color: var(--ink);
  border-color: var(--accent);
  background: var(--accent);
}

.select-wrap {
  position: relative;
  display: block;
}

.select-wrap select,
.modal select {
  width: 100%;
  min-height: 52px;
  padding: 0 44px 0 15px;
  color: #ddd;
  border: 1px solid #3b3b3b;
  border-radius: 0;
  outline: 0;
  background: #202020;
  font-size: 12px;
  appearance: none;
}

.select-wrap svg {
  position: absolute;
  top: 17px;
  right: 16px;
  width: 17px;
  color: var(--accent);
  pointer-events: none;
}

.extras {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.extras label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  color: #bbb;
  font-size: 11px;
}

.extras label span {
  display: flex;
  align-items: center;
  gap: 11px;
}

.extras i {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border: 1px solid #4b4b4b;
  font-size: 11px;
  font-style: normal;
  transition: all .2s ease;
}

.extras input:checked + span i {
  border-color: var(--accent);
  background: var(--accent);
}

.extras input:checked + span i::after {
  color: var(--ink);
  content: "✓";
}

.extras b {
  color: #777;
  font-size: 10px;
  font-weight: 500;
}

.calc-total {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 8px 30px;
  padding-top: 30px;
}

.calc-total > span {
  color: #858585;
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.calc-total strong {
  grid-row: span 2;
  color: var(--accent-light);
  font-family: Georgia, serif;
  font-size: 34px;
  font-weight: 400;
}

.calc-total small {
  color: #5f5f5f;
  font-size: 9px;
}

.calc-total .button {
  grid-column: 1 / -1;
  margin-top: 20px;
}

.about {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 110px;
}

.quote-mark {
  display: block;
  height: 75px;
  color: var(--accent);
  font-family: Georgia, serif;
  font-size: 100px;
  line-height: 1;
}

.about blockquote {
  margin: 25px 0 50px;
  font-family: Georgia, serif;
  font-size: clamp(27px, 3vw, 43px);
  line-height: 1.3;
}

.about__person {
  display: flex;
  align-items: center;
  gap: 16px;
}

.about__avatar,
.review-avatar {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--white);
  border-radius: 50%;
  background: #292929;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
}

.about__person p {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin: 0;
}

.about__person b {
  font-size: 13px;
}

.about__person span {
  color: #7a7771;
  font-size: 10px;
}

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

.about__facts article {
  min-height: 230px;
  padding: 30px;
  border-right: 1px solid var(--dark-line);
  border-bottom: 1px solid var(--dark-line);
}

.about__facts article > span {
  color: var(--accent);
  font-size: 10px;
}

.about__facts h3 {
  margin: 48px 0 12px;
  font-size: 18px;
  font-weight: 500;
}

.about__facts p {
  margin: 0;
  color: #77736d;
  font-size: 12px;
  line-height: 1.65;
}

.reviews {
  padding-bottom: 125px;
  color: var(--white);
  background: var(--ink);
  overflow: hidden;
}

.reviews__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-bottom: 70px;
}

.review-controls {
  display: flex;
  gap: 8px;
}

.review-controls button {
  display: grid;
  width: 50px;
  height: 50px;
  cursor: pointer;
  place-items: center;
  color: var(--white);
  border: 1px solid var(--line);
  background: transparent;
  font-size: 18px;
  transition: all .25s ease;
}

.review-controls button:hover {
  color: var(--ink);
  border-color: var(--accent);
  background: var(--accent);
}

.review-viewport {
  width: var(--container);
  margin: auto;
  overflow: hidden;
}

.review-track {
  display: flex;
  gap: 16px;
  transition: transform .6s var(--ease);
}

.review-card {
  display: flex;
  min-width: calc((100% - 32px) / 3);
  min-height: 345px;
  flex-direction: column;
  padding: 34px;
  border: 1px solid var(--line);
  background: #111;
}

.stars {
  color: var(--accent);
  font-size: 11px;
  letter-spacing: .18em;
}

.review-card > p {
  margin: 36px 0 auto;
  color: #d0d0d0;
  font-family: Georgia, serif;
  font-size: 18px;
  line-height: 1.65;
}

.review-card > div:last-child {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 35px;
}

.review-card b {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 11px;
}

.review-card small {
  color: #676767;
  font-size: 9px;
  font-weight: 400;
}

.faq {
  display: grid;
  grid-template-columns: .6fr 1.4fr;
  gap: 110px;
}

.faq__list {
  border-top: 1px solid var(--dark-line);
}

.faq-item {
  border-bottom: 1px solid var(--dark-line);
}

.faq-item button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 25px 0;
  cursor: pointer;
  border: 0;
  background: transparent;
  text-align: left;
  font-size: 15px;
}

.faq-item button i {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid #c9c5bd;
  border-radius: 50%;
  font-size: 18px;
  font-style: normal;
  transition: all .3s ease;
}

.faq-item.is-open button i {
  color: var(--ink);
  border-color: var(--accent);
  background: var(--accent);
  transform: rotate(45deg);
}

.faq-item > div {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .35s ease;
}

.faq-item > div p {
  min-height: 0;
  margin: 0;
  color: #716e68;
  font-size: 13px;
  line-height: 1.75;
  overflow: hidden;
}

.faq-item.is-open > div {
  grid-template-rows: 1fr;
}

.faq-item.is-open > div p {
  padding: 0 60px 24px 0;
}

.contact-section {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 100px;
  padding: 120px max(40px, calc((100vw - 1380px) / 2));
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(5,5,5,.96), rgba(5,5,5,.78)),
    url("assets/hero-detailing.jpg") center / cover;
}

.contact-section__content p {
  max-width: 560px;
  margin: 30px 0 40px;
  color: #a0a0a0;
  font-size: 14px;
  line-height: 1.75;
}

.contact-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.contact-card {
  padding: 40px;
  border: 1px solid var(--line);
  background: rgba(12,12,12,.75);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
}

.contact-card > div:not(:last-child) {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 19px 0;
  border-bottom: 1px solid var(--line);
}

.contact-card small {
  color: #6f6f6f;
  font-size: 8px;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.contact-card a,
.contact-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

.contact-card__socials {
  display: flex;
  gap: 9px;
  padding-top: 24px;
}

.contact-card__socials a {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 9px;
  font-weight: 800;
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 45px;
  min-height: 120px;
  padding: 0 42px;
  color: #777;
  background: #080808;
  border-top: 1px solid var(--line);
  font-size: 10px;
}

.site-footer p {
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 25px;
  color: #aaa;
}

.modal {
  position: fixed;
  z-index: 500;
  inset: 0;
  display: grid;
  visibility: hidden;
  place-items: center;
  opacity: 0;
  transition: opacity .3s ease, visibility .3s;
}

.modal.is-open {
  visibility: visible;
  opacity: 1;
}

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

.modal__dialog {
  position: relative;
  width: min(760px, calc(100vw - 30px));
  max-height: calc(100svh - 30px);
  padding: 48px;
  background: var(--paper);
  overflow-y: auto;
  transform: translateY(25px);
  transition: transform .4s var(--ease);
}

.modal.is-open .modal__dialog {
  transform: none;
}

.modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  border: 1px solid var(--dark-line);
  border-radius: 50%;
  background: transparent;
  font-size: 26px;
  font-weight: 200;
}

.modal h2 {
  font-size: 48px;
}

.modal__dialog > p {
  margin: 20px 0 30px;
  color: #6c6964;
  font-size: 13px;
  line-height: 1.65;
}

.modal form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.modal label {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.modal label > span {
  color: #64615c;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.modal input,
.modal select,
.modal textarea {
  min-height: 51px;
  padding: 0 14px;
  color: var(--ink);
  border: 1px solid #c9c5be;
  outline: 0;
  background: transparent;
}

.modal input:focus,
.modal select:focus,
.modal textarea:focus {
  border-color: var(--accent);
}

.modal textarea {
  min-height: 82px;
  padding-top: 13px;
  resize: vertical;
}

.modal form small {
  color: #8b8780;
  font-size: 8px;
  line-height: 1.5;
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.booking-grid__wide {
  grid-column: 1 / -1;
}

.booking-car {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  margin: 0;
  padding: 0;
  border: 0;
}

.booking-car legend,
.field-label {
  display: block;
  grid-column: 1 / -1;
  margin-bottom: 8px;
  color: #64615c;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.booking-car label {
  display: block;
}

.booking-car input {
  position: absolute;
  opacity: 0;
}

.booking-car label span {
  display: grid;
  min-height: 44px;
  padding: 0 8px;
  cursor: pointer;
  place-items: center;
  color: #716e68;
  border: 1px solid #c9c5be;
  font-size: 9px;
  text-align: center;
  transition: all .2s ease;
}

.booking-car input:checked + span {
  color: var(--ink);
  border-color: var(--accent);
  background: var(--accent);
}

.booking-slots {
  display: flex;
  min-height: 42px;
  gap: 7px;
  flex-wrap: wrap;
}

.booking-slots p {
  margin: 8px 0 0;
  color: #837f78;
  font-size: 11px;
}

.booking-slots button {
  min-width: 66px;
  min-height: 38px;
  padding: 0 10px;
  cursor: pointer;
  color: #595650;
  border: 1px solid #c9c5be;
  background: transparent;
  font-size: 10px;
  font-weight: 700;
  transition: all .2s ease;
}

.booking-slots button:hover,
.booking-slots button.is-selected {
  color: var(--ink);
  border-color: var(--accent);
  background: var(--accent);
}

.booking-summary {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 5px 25px;
  padding: 17px 0;
  border-top: 1px solid var(--dark-line);
  border-bottom: 1px solid var(--dark-line);
}

.booking-summary > span {
  color: #77736d;
  font-size: 9px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.booking-summary strong {
  grid-row: span 2;
  color: #9b6b2f;
  font-family: Georgia, serif;
  font-size: 25px;
  font-weight: 400;
}

.booking-summary small {
  color: #8b8780;
}

.booking-error {
  min-height: 0;
  color: #a43b32;
  font-size: 11px;
  font-weight: 600;
}

.booking-error:not(:empty) {
  min-height: 36px;
  padding: 11px 13px;
  border-left: 2px solid #a43b32;
  background: rgba(164, 59, 50, .08);
}

.modal .button:disabled {
  cursor: wait;
  opacity: .55;
}

.toast {
  position: fixed;
  z-index: 700;
  right: 24px;
  bottom: 24px;
  display: flex;
  width: min(390px, calc(100vw - 32px));
  flex-direction: column;
  gap: 6px;
  padding: 21px 23px;
  color: var(--white);
  border-left: 3px solid var(--accent);
  background: #181818;
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity .3s ease, transform .3s ease;
}

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

.toast b {
  font-size: 12px;
}

.toast span {
  color: #999;
  font-size: 10px;
  line-height: 1.5;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}

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

@media (max-width: 1180px) {
  :root {
    --container: min(100% - 48px, 1080px);
  }

  .desktop-nav,
  .header-phone {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .header-actions {
    margin-left: auto;
  }

  .hero h1 {
    font-size: clamp(54px, 8vw, 86px);
  }

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

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

  .results {
    grid-template-columns: 1fr 1.3fr;
  }

  .comparison__before img {
    width: 56.5vw;
  }

  .calculator__form {
    padding-right: 45px;
    padding-left: 45px;
  }

  .about,
  .faq {
    gap: 60px;
  }
}

@media (max-width: 860px) {
  :root {
    --container: calc(100% - 36px);
  }

  .site-header {
    min-height: 76px;
    padding: 0 18px;
  }

  .header-actions .button {
    display: none;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .hero {
    min-height: 780px;
  }

  .hero__media img {
    object-position: 62% center;
  }

  .hero__overlay {
    background:
      linear-gradient(90deg, rgba(5,5,5,.94), rgba(5,5,5,.34)),
      linear-gradient(0deg, rgba(5,5,5,.94), transparent 65%);
  }

  .hero h1 {
    font-size: clamp(45px, 11vw, 72px);
  }

  .hero__lead {
    max-width: 490px;
    font-size: 15px;
  }

  .hero__bottom {
    right: 18px;
    left: 18px;
    grid-template-columns: repeat(3, 1fr);
    min-height: 100px;
  }

  .hero-address,
  .scroll-hint {
    display: none;
  }

  .section {
    padding: 95px 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 50px;
  }

  .section-heading p {
    max-width: 600px;
  }

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

  .results__intro {
    padding: 90px 40px 60px;
  }

  .comparison {
    min-height: 580px;
  }

  .comparison__before img {
    width: 100vw;
  }

  .section-heading--compact {
    align-items: start;
  }

  .portfolio-filters {
    justify-content: flex-start;
  }

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

  .project,
  .project--wide {
    min-height: 350px;
  }

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

  .calculator__visual {
    min-height: 600px;
  }

  .calculator__form {
    padding: 65px 40px;
  }

  .about,
  .faq {
    grid-template-columns: 1fr;
  }

  .review-card {
    min-width: calc((100% - 16px) / 2);
  }

  .contact-section {
    grid-template-columns: 1fr;
    gap: 55px;
    padding-right: 30px;
    padding-left: 30px;
  }

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

  .site-footer p {
    display: none;
  }
}

@media (max-width: 600px) {
  .cursor-glow {
    display: none;
  }

  .brand-type b {
    font-size: 18px;
  }

  .mobile-menu {
    padding-right: 22px;
    padding-left: 22px;
  }

  .mobile-menu__footer {
    display: block;
  }

  .mobile-menu__footer p {
    margin-top: 12px;
    text-align: left;
  }

  .hero {
    min-height: 740px;
    align-items: flex-start;
  }

  .hero__content {
    padding-top: 145px;
  }

  .hero__media img {
    object-position: 68% center;
  }

  .hero__overlay {
    background:
      linear-gradient(90deg, rgba(5,5,5,.92), rgba(5,5,5,.15)),
      linear-gradient(0deg, rgba(5,5,5,.96) 0%, rgba(5,5,5,.3) 75%);
  }

  .eyebrow {
    font-size: 8px;
    letter-spacing: .18em;
  }

  .hero h1 {
    margin-top: 22px;
    max-width: 350px;
    font-size: clamp(38px, 10vw, 44px);
    line-height: 1.05;
  }

  .hero__lead {
    max-width: 360px;
    font-size: 13px;
  }

  .hero__actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
    margin-top: 28px;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__bottom {
    min-height: 88px;
  }

  .hero-stat {
    padding: 0 8px;
  }

  .hero-stat b {
    font-size: 20px;
  }

  .hero-stat span {
    font-size: 7px;
  }

  .ticker {
    padding: 15px 0;
  }

  .section {
    padding: 75px 0;
  }

  .section-heading h2,
  .results h2,
  .calculator h2,
  .reviews h2,
  .faq h2,
  .contact-section h2 {
    font-size: 42px;
  }

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

  .service-showcase {
    grid-template-columns: 1fr;
    margin-top: -15px;
  }

  .service-photo-card {
    min-height: 330px;
  }

  .service-photo-card__overlay,
  .service-photo-card:hover .service-photo-card__overlay {
    transform: none;
  }

  .service-photo-card__overlay .button {
    opacity: 1;
    transform: none;
  }

  .service-card,
  .service-card--featured {
    min-height: 410px;
  }

  .results__intro {
    padding: 75px 18px 55px;
  }

  .comparison {
    min-height: 410px;
  }

  .comparison > img,
  .comparison__before img {
    object-position: center;
  }

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

  .project,
  .project--wide {
    min-height: 310px;
  }

  .project__overlay {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .calculator__visual {
    min-height: 520px;
    padding: 55px 18px;
  }

  .calculator__form {
    padding: 50px 18px;
  }

  .choice-row {
    gap: 5px;
  }

  .choice-row label span {
    font-size: 8px;
  }

  .calc-total {
    grid-template-columns: 1fr;
  }

  .calc-total strong {
    grid-row: auto;
    font-size: 30px;
  }

  .about {
    gap: 65px;
  }

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

  .about__facts article {
    min-height: 190px;
  }

  .about__facts h3 {
    margin-top: 30px;
  }

  .reviews {
    padding-bottom: 75px;
  }

  .reviews__head {
    align-items: flex-start;
    flex-direction: column;
    gap: 35px;
    padding-bottom: 45px;
  }

  .review-card {
    min-width: 100%;
    min-height: 320px;
    padding: 28px;
  }

  .review-card > p {
    font-size: 16px;
  }

  .faq {
    gap: 45px;
  }

  .faq-item button {
    gap: 25px;
    font-size: 13px;
  }

  .contact-section {
    padding: 75px 18px;
  }

  .contact-actions {
    flex-direction: column;
  }

  .contact-card {
    padding: 26px;
  }

  .site-footer {
    grid-template-columns: 1fr auto;
    gap: 20px;
    padding: 25px 18px;
  }

  .footer-links {
    display: none;
  }

  .modal__dialog {
    padding: 40px 25px 28px;
  }

  .modal h2 {
    font-size: 39px;
  }

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

  .booking-grid__wide {
    grid-column: auto;
  }

  .booking-car {
    grid-template-columns: 1fr;
  }

  .booking-summary {
    grid-template-columns: 1fr;
  }

  .booking-summary strong {
    grid-row: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
