:root {
  --navy-950: #04131f;
  --navy-900: #071b2a;
  --navy-800: #0c2a3d;
  --navy-700: #14394e;
  --red-600: #d9272e;
  --red-500: #e33a3f;
  --cream: #f7f6f2;
  --white: #ffffff;
  --ink: #102432;
  --muted: #5f6c74;
  --line: rgba(7, 27, 42, 0.14);
  --header-height: 78px;
  --container: 1220px;
  --shadow: 0 22px 70px rgba(5, 23, 36, 0.16);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--cream);
  font-family: "Satoshi", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

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

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

a {
  color: inherit;
}

[hidden] {
  display: none !important;
}

::selection {
  color: var(--white);
  background: var(--red-600);
}

:focus-visible {
  outline: 3px solid #ffbd4a;
  outline-offset: 4px;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 15px;
  color: var(--white);
  background: var(--red-600);
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.section {
  position: relative;
  padding: clamp(76px, 8vw, 124px) 24px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--red-600);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 2px;
  background: currentColor;
  content: "";
}

.eyebrow--light {
  color: rgba(255, 255, 255, 0.82);
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 13px 28px 12px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.045em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 220ms ease, background-color 220ms ease, border-color 220ms ease, transform 220ms var(--ease), box-shadow 220ms ease;
}

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

.button--red {
  color: var(--white);
  background: var(--red-600);
  box-shadow: 0 12px 32px rgba(217, 39, 46, 0.25);
}

.button--red:hover {
  background: #bf1e25;
  box-shadow: 0 15px 38px rgba(217, 39, 46, 0.34);
}

.button--ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(7, 27, 42, 0.16);
  backdrop-filter: blur(8px);
}

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

.button--navy {
  color: var(--white);
  background: var(--navy-900);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  color: var(--white);
  background: rgba(4, 19, 31, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background-color 240ms ease, box-shadow 240ms ease, backdrop-filter 240ms ease;
}

.site-header.is-scrolled {
  background: rgba(4, 19, 31, 0.96);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(16px);
}

.header__inner {
  width: min(calc(100% - 40px), var(--container));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 30px;
}

.logo {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 11px;
  color: var(--white);
  text-decoration: none;
}

.logo__mark {
  width: 72px;
  height: auto;
}

.logo__mark path,
.quote-dialog__brand path {
  fill: none;
  stroke: var(--red-600);
  stroke-width: 6;
  stroke-linecap: square;
  stroke-linejoin: miter;
}

.logo__copy {
  display: grid;
  gap: 1px;
  line-height: 1.05;
  text-transform: uppercase;
}

.logo__copy strong {
  font-size: 0.88rem;
  letter-spacing: 0.01em;
}

.logo__copy small {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.07em;
}

.logo__copy b {
  color: var(--red-600);
  font-weight: 700;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.1vw, 31px);
  margin-left: auto;
}

.site-nav a {
  position: relative;
  padding: 29px 0 25px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.055em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 19px;
  left: 0;
  height: 2px;
  background: var(--red-600);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--ease);
}

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

.header-phone {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  gap: 9px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--red-600);
  border-radius: 2px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 200ms ease, transform 200ms ease;
}

.header-phone:hover {
  background: #bf1e25;
  transform: translateY(-1px);
}

.header-phone svg {
  width: 17px;
  fill: currentColor;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  margin-left: auto;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: var(--white);
  background: transparent;
  border-radius: 2px;
  cursor: pointer;
}

.nav-toggle > span:not(.sr-only) {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 220ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] > span:nth-of-type(2) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] > span:nth-of-type(3) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] > span:nth-of-type(4) {
  transform: translateY(-7px) rotate(-45deg);
}

.scroll-progress {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--red-600), #ff605f);
  transform: scaleX(0);
  transform-origin: left;
}

.hero {
  position: relative;
  min-height: clamp(690px, 82vh, 880px);
  overflow: hidden;
  color: var(--white);
  background: var(--navy-900);
}

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

.hero__media img {
  object-fit: cover;
  object-position: center;
  transform: scale(1.015);
}

.hero__shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(2, 12, 20, 0.95) 0%, rgba(2, 12, 20, 0.83) 26%, rgba(2, 12, 20, 0.34) 55%, rgba(2, 12, 20, 0.12) 100%),
    linear-gradient(0deg, rgba(2, 12, 20, 0.45) 0%, transparent 42%);
}

.hero__grain {
  z-index: 2;
  opacity: 0.08;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.hero__inner {
  position: relative;
  z-index: 3;
  width: min(calc(100% - 48px), var(--container));
  min-height: inherit;
  margin: 0 auto;
  padding-top: calc(var(--header-height) + 82px);
  padding-bottom: 88px;
  display: flex;
  align-items: center;
}

.hero__content {
  width: min(660px, 62vw);
}

.hero h1 {
  margin: 0;
  color: var(--white);
  font-family: "Tanker", Impact, sans-serif;
  font-size: clamp(5.2rem, 8.7vw, 8.5rem);
  font-weight: 400;
  letter-spacing: 0.004em;
  line-height: 0.72;
  text-transform: uppercase;
  text-wrap: balance;
}

.hero h1 span,
.hero h1 em {
  display: block;
}

.hero h1 em {
  width: max-content;
  max-width: 100%;
  margin-top: 20px;
  margin-left: -4px;
  color: var(--red-500);
  font-family: "Permanent Marker", "Comic Sans MS", cursive;
  font-size: 0.58em;
  font-style: normal;
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.96;
  text-shadow: 0 7px 20px rgba(0, 0, 0, 0.35);
  transform: rotate(-2deg);
}

.hero__lead {
  max-width: 600px;
  margin: 35px 0 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(1.05rem, 1.5vw, 1.24rem);
  font-weight: 500;
  line-height: 1.55;
}

.hero__history {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
}

.experience-seal {
  position: absolute;
  right: 3%;
  bottom: 65px;
  width: 170px;
  height: 170px;
  display: grid;
  place-items: center;
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.34));
}

.experience-seal svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.experience-seal svg circle {
  fill: rgba(4, 19, 31, 0.78);
  stroke: var(--white);
  stroke-width: 3px;
}

.experience-seal svg circle:nth-child(2) {
  fill: none;
  stroke-width: 1px;
  stroke-dasharray: 3 4;
}

.experience-seal svg path {
  fill: var(--red-600);
  stroke: #9c0f16;
  stroke-width: 1px;
}

.experience-seal__number,
.experience-seal__years,
.experience-seal__label {
  position: absolute;
  z-index: 1;
  text-align: center;
  text-transform: uppercase;
}

.experience-seal__number {
  top: 39px;
  font-family: "Tanker", Impact, sans-serif;
  font-size: 4.1rem;
  line-height: 1;
}

.experience-seal__years {
  top: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.experience-seal__label {
  bottom: 12px;
  width: 118px;
  font-size: 0.53rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.trust-strip {
  position: relative;
  z-index: 5;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 0%, rgba(48, 92, 119, 0.22), transparent 38%),
    var(--navy-900);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-strip__inner {
  width: min(calc(100% - 48px), var(--container));
  min-height: 106px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 17px;
  padding: 24px clamp(18px, 2.4vw, 34px);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-item:first-child {
  padding-left: 0;
}

.trust-item:last-child {
  padding-right: 0;
  border-right: 0;
}

.trust-item svg {
  width: 46px;
  flex: 0 0 auto;
  fill: none;
  stroke: rgba(255, 255, 255, 0.9);
  stroke-width: 1.7;
}

.trust-item div {
  display: grid;
  gap: 2px;
}

.trust-item strong {
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.trust-item span {
  color: rgba(255, 255, 255, 0.69);
  font-size: 0.72rem;
  line-height: 1.35;
}

.services {
  overflow: hidden;
  background:
    radial-gradient(circle at 0% 0%, rgba(217, 39, 46, 0.045), transparent 28%),
    linear-gradient(180deg, #fbfaf7 0%, var(--cream) 100%);
}

.services__inner {
  width: min(100%, var(--container));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(270px, 0.95fr) minmax(0, 2.5fr);
  gap: clamp(38px, 5vw, 72px);
  align-items: center;
}

.services__intro h2,
.inspiration__intro h2,
.faq__intro h2,
.contact-cta h2 {
  margin: 0;
  font-family: "Tanker", Impact, sans-serif;
  font-size: clamp(2.9rem, 5vw, 4.6rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 0.95;
  text-transform: uppercase;
}

.services__intro > p:not(.eyebrow),
.inspiration__intro > p:not(.eyebrow) {
  margin: 24px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 24px;
  color: var(--red-600);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link span {
  font-size: 1.15rem;
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.service-grid {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.service-card {
  --mx: 50%;
  --my: 50%;
  position: relative;
  min-height: 370px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-900);
  border-radius: 2px;
  box-shadow: 0 16px 35px rgba(7, 27, 42, 0.12);
  isolation: isolate;
  transition: transform 300ms var(--ease), box-shadow 300ms ease;
}

.service-card::before {
  position: absolute;
  z-index: 4;
  inset: 0;
  background: radial-gradient(260px circle at var(--mx) var(--my), rgba(227, 58, 63, 0.38), transparent 48%);
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity 250ms ease;
}

.service-card img,
.service-card__wash {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.service-card img {
  object-fit: cover;
  transition: transform 700ms var(--ease);
}

.service-card__wash {
  z-index: 1;
  background: linear-gradient(180deg, rgba(2, 12, 20, 0.08) 20%, rgba(2, 12, 20, 0.86) 100%);
}

.service-card__icon {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 74px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.88);
  border-radius: 50%;
  background: rgba(4, 19, 31, 0.45);
  backdrop-filter: blur(8px);
  transform: translateX(-50%);
}

.service-card__icon svg {
  width: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.service-card h3 {
  position: absolute;
  z-index: 2;
  right: 8px;
  bottom: 22px;
  left: 8px;
  margin: 0;
  font-family: "Tanker", Impact, sans-serif;
  font-size: 1.45rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.offers {
  position: relative;
  color: var(--white);
  background: var(--navy-900);
}

.offers__grid {
  min-height: 430px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.offer {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.offer > img,
.offer__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.offer > img {
  object-fit: cover;
}

.offer__shade {
  z-index: 1;
  background: linear-gradient(90deg, rgba(4, 19, 31, 0.88), rgba(4, 19, 31, 0.44) 64%, rgba(4, 19, 31, 0.24));
}

.offer--interior .offer__shade {
  background: linear-gradient(90deg, rgba(4, 19, 31, 0.76), rgba(4, 19, 31, 0.36) 70%, rgba(4, 19, 31, 0.22));
}

.offer__content {
  position: relative;
  z-index: 2;
  width: min(380px, calc(100% - 100px));
  margin-left: max(36px, calc((100vw - var(--container)) / 2));
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.38);
}

.offer--interior .offer__content {
  margin-left: clamp(94px, 8vw, 160px);
}

.offer__content p {
  margin: 0 0 8px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.offer__content strong {
  display: block;
  font-family: "Tanker", Impact, sans-serif;
  font-size: clamp(3.5rem, 5vw, 5rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 0.9;
  text-transform: uppercase;
}

.offer__content strong span {
  font-size: 1.12em;
}

.offer__content h3 {
  margin: 8px 0 6px;
  font-family: "Tanker", Impact, sans-serif;
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1;
  text-transform: uppercase;
}

.offer__content small {
  display: block;
  max-width: 310px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.88rem;
  line-height: 1.5;
}

.offer-badge {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 50%;
  width: 190px;
  min-height: 220px;
  padding: 42px 21px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--navy-900);
  border: 2px solid rgba(255, 255, 255, 0.92);
  clip-path: polygon(50% 0, 90% 17%, 90% 83%, 50% 100%, 10% 83%, 10% 17%);
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.3));
  text-align: center;
  transform: translate(-50%, -50%);
}

.offer-badge::before {
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  clip-path: inherit;
  content: "";
}

.offer-badge span,
.offer-badge small,
.offer-badge strong {
  position: relative;
  z-index: 1;
}

.offer-badge span {
  max-width: 115px;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.35;
  text-transform: uppercase;
}

.offer-badge strong {
  margin: 8px 0;
  color: var(--red-500);
  font-family: "Tanker", Impact, sans-serif;
  font-size: 2.45rem;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.offer-badge small {
  font-size: 0.57rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.inspiration {
  overflow: hidden;
  background: #fbfaf7;
}

.inspiration__inner {
  width: min(100%, var(--container));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: clamp(38px, 5vw, 70px);
  align-items: center;
}

.inspiration__intro h2 {
  font-size: clamp(2.7rem, 4.3vw, 4rem);
}

.inspiration__note {
  padding-top: 15px;
  border-top: 1px solid var(--line);
  font-size: 0.72rem;
  line-height: 1.5 !important;
}

.gallery-controls {
  display: flex;
  gap: 10px;
  margin-top: 26px;
}

.gallery-controls button {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--navy-900);
  background: transparent;
  border: 1px solid rgba(7, 27, 42, 0.3);
  border-radius: 2px;
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease, opacity 180ms ease;
}

.gallery-controls button:hover {
  color: var(--white);
  background: var(--navy-900);
}

.gallery-controls button:disabled {
  opacity: 0.32;
  cursor: default;
}

.gallery-controls svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.gallery-track {
  min-width: 0;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 28px) / 3);
  gap: 14px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.gallery-track::-webkit-scrollbar {
  display: none;
}

.gallery-card {
  position: relative;
  aspect-ratio: 1.28 / 1;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: var(--navy-900);
  border-radius: 2px;
  scroll-snap-align: start;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease);
}

.gallery-card::after {
  position: absolute;
  inset: 35% 0 0;
  background: linear-gradient(180deg, transparent, rgba(2, 12, 20, 0.88));
  content: "";
  pointer-events: none;
}

.gallery-card figcaption {
  position: absolute;
  z-index: 1;
  right: 18px;
  bottom: 15px;
  left: 18px;
  display: grid;
  gap: 2px;
  color: var(--white);
}

.gallery-card figcaption strong {
  font-size: 0.86rem;
  letter-spacing: 0.02em;
}

.gallery-card figcaption span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.faq {
  color: var(--white);
  background:
    radial-gradient(circle at 15% 12%, rgba(32, 79, 106, 0.35), transparent 34%),
    linear-gradient(135deg, var(--navy-950), var(--navy-900));
}

.faq::after {
  position: absolute;
  top: 0;
  right: 4%;
  width: 270px;
  height: 100%;
  background: repeating-linear-gradient(90deg, transparent 0 26px, rgba(255, 255, 255, 0.023) 26px 27px);
  content: "";
  pointer-events: none;
}

.faq__inner {
  position: relative;
  z-index: 1;
  width: min(100%, 1080px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.78fr 1.35fr;
  gap: clamp(48px, 8vw, 110px);
}

.faq__intro p:not(.eyebrow) {
  margin: 22px 0 28px;
  color: rgba(255, 255, 255, 0.7);
}

.faq-list {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.faq-list details {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.faq-list summary {
  min-height: 75px;
  padding: 21px 56px 20px 0;
  display: flex;
  align-items: center;
  position: relative;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  list-style: none;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  position: absolute;
  top: 50%;
  right: 5px;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  transform: translateY(-50%);
}

.faq-list summary span::before,
.faq-list summary span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  height: 1px;
  background: var(--white);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 200ms ease;
}

.faq-list summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-list details p {
  margin: -4px 58px 24px 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.93rem;
  line-height: 1.7;
}

.contact-cta {
  position: relative;
  overflow: hidden;
  padding: 42px 24px;
  color: var(--white);
  background: #0a2638;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-cta__skyline {
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background:
    linear-gradient(90deg, transparent 0 35%, rgba(255, 255, 255, 0.08) 35% 36%, transparent 36% 48%, rgba(255, 255, 255, 0.06) 48% 51%, transparent 51%),
    linear-gradient(180deg, transparent 62%, rgba(1, 11, 18, 0.8) 62%);
  clip-path: polygon(0 100%, 0 75%, 9% 75%, 9% 60%, 15% 60%, 15% 72%, 23% 72%, 23% 50%, 28% 50%, 28% 68%, 36% 68%, 36% 33%, 41% 33%, 41% 64%, 50% 64%, 50% 44%, 55% 44%, 55% 70%, 63% 70%, 63% 54%, 70% 54%, 70% 73%, 78% 73%, 78% 58%, 84% 58%, 84% 71%, 91% 71%, 91% 48%, 96% 48%, 96% 66%, 100% 66%, 100% 100%);
}

.contact-cta__inner {
  position: relative;
  z-index: 1;
  width: min(100%, var(--container));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto auto;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.contact-cta h2 {
  font-size: clamp(2.7rem, 4.5vw, 4.2rem);
}

.contact-cta .eyebrow {
  margin-bottom: 9px;
}

.contact-cta__inner > div > p:last-child {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.contact-cta__phone {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  color: var(--white);
  font-family: "Tanker", Impact, sans-serif;
  font-size: clamp(2rem, 3.3vw, 3.1rem);
  letter-spacing: 0.025em;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.contact-cta__phone-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: var(--navy-900);
  background: var(--white);
  border-radius: 50%;
}

.contact-cta__phone-icon svg {
  width: 25px;
  fill: currentColor;
}

.noscript-contact {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 24px auto 0;
  color: rgba(255, 255, 255, 0.8);
}

.site-footer {
  background: linear-gradient(90deg, #e9ecec 0%, #f8f7f3 60%);
}

.site-footer__inner {
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto;
  padding: 68px 0 56px;
  display: grid;
  grid-template-columns: 1.5fr 0.7fr 0.8fr 1.1fr;
  gap: clamp(32px, 5vw, 80px);
}

.logo--footer {
  color: var(--navy-900);
}

.logo--footer .logo__copy small {
  color: rgba(7, 27, 42, 0.7);
}

.footer-brand > p {
  max-width: 330px;
  margin: 25px 0 0;
  color: #52616a;
  font-size: 0.9rem;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.footer-column h2 {
  margin: 0 0 8px;
  color: var(--navy-900);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-column a {
  color: #3d4c55;
  font-size: 0.84rem;
  text-decoration: none;
}

.footer-column a:hover {
  color: var(--red-600);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-contact p {
  margin: 8px 0 0;
  color: #5d6970;
  font-size: 0.78rem;
  line-height: 1.55;
}

.site-footer__bottom {
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto;
  padding: 19px 0 25px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #68747a;
  border-top: 1px solid rgba(7, 27, 42, 0.12);
  font-size: 0.69rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.quote-dialog {
  width: min(720px, calc(100% - 28px));
  max-height: min(90vh, 820px);
  padding: 0;
  overflow: visible;
  color: var(--ink);
  background: transparent;
  border: 0;
}

.quote-dialog::backdrop {
  background: rgba(2, 12, 20, 0.82);
  backdrop-filter: blur(8px);
}

.quote-dialog__panel {
  position: relative;
  max-height: min(90vh, 820px);
  overflow-y: auto;
  background:
    radial-gradient(circle at 100% 0, rgba(217, 39, 46, 0.08), transparent 26%),
    var(--cream);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 3px;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.45);
}

.quote-dialog__content {
  padding: clamp(38px, 6vw, 64px);
}

.quote-dialog__content h2 {
  margin: 0;
  max-width: 520px;
  color: var(--navy-900);
  font-family: "Tanker", Impact, sans-serif;
  font-size: clamp(2.8rem, 6vw, 4.6rem);
  font-weight: 400;
  line-height: 0.94;
  text-transform: uppercase;
}

.quote-dialog__content > div > p:not(.eyebrow),
.quote-success > p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
}

.quote-dialog__close {
  position: absolute;
  z-index: 4;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--navy-900);
  background: transparent;
  border: 1px solid rgba(7, 27, 42, 0.2);
  border-radius: 50%;
  cursor: pointer;
}

.quote-dialog__close svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.quote-dialog__brand {
  position: absolute;
  z-index: 3;
  top: -17px;
  left: 34px;
  width: 88px;
  padding: 12px 11px 6px;
  background: var(--navy-900);
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: 0 12px 30px rgba(7, 27, 42, 0.25);
  transform: rotate(-3deg);
}

.quote-form {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.quote-form label {
  display: grid;
  gap: 7px;
}

.quote-form label > span {
  color: var(--navy-900);
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.quote-form label b {
  color: var(--red-600);
}

.quote-form label small {
  color: #778187;
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 49px;
  padding: 11px 13px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(7, 27, 42, 0.22);
  border-radius: 2px;
  outline: 0;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.quote-form textarea {
  min-height: 112px;
  resize: vertical;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--navy-700);
  box-shadow: 0 0 0 3px rgba(20, 57, 78, 0.12);
}

.quote-form [aria-invalid="true"] {
  border-color: var(--red-600);
  box-shadow: 0 0 0 3px rgba(217, 39, 46, 0.1);
}

.quote-form__wide {
  grid-column: 1 / -1;
}

.quote-form__submit {
  justify-self: start;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--red-600);
  font-size: 0.82rem;
}

.quote-success {
  min-height: 360px;
  padding-top: 40px;
}

.quote-success a {
  color: var(--red-600);
  font-weight: 700;
}

.quote-success .button {
  margin-top: 28px;
}

@media (hover: hover) and (pointer: fine) {
  .service-card:hover {
    z-index: 2;
    box-shadow: 0 25px 55px rgba(7, 27, 42, 0.25);
    transform: translateY(-8px);
  }

  .service-card:hover::before {
    opacity: 1;
  }

  .service-card:hover img,
  .gallery-card:hover img {
    transform: scale(1.055);
  }
}

@media (max-width: 1120px) {
  :root {
    --header-height: 72px;
  }

  .header__inner {
    width: min(calc(100% - 30px), var(--container));
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    z-index: 98;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    width: min(390px, 88vw);
    padding: 36px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    background: var(--navy-950);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.32);
    transform: translateX(105%);
    visibility: hidden;
    transition: transform 320ms var(--ease), visibility 320ms;
  }

  .site-nav.is-open {
    transform: translateX(0);
    visibility: visible;
  }

  .site-nav a {
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.88rem;
  }

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

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

  .services__intro {
    max-width: 680px;
  }

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

  .offer__content {
    margin-left: 36px;
  }

  .offer--interior .offer__content {
    margin-left: 95px;
  }
}

@media (max-width: 920px) {
  .hero__content {
    width: min(630px, 74vw);
  }

  .experience-seal {
    right: 24px;
    bottom: 38px;
    width: 145px;
    height: 145px;
  }

  .experience-seal__number {
    top: 33px;
    font-size: 3.45rem;
  }

  .experience-seal__years {
    top: 85px;
  }

  .trust-strip__inner {
    grid-template-columns: 1fr 1fr;
    padding: 10px 0;
  }

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .trust-item:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .trust-item:first-child,
  .trust-item:last-child {
    padding: 22px clamp(18px, 2.4vw, 34px);
  }

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

  .inspiration__intro {
    max-width: 720px;
  }

  .gallery-controls {
    justify-content: flex-end;
  }

  .gallery-track {
    grid-auto-columns: calc((100% - 14px) / 2);
  }

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

  .faq__intro {
    max-width: 620px;
  }

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

  .contact-cta__inner > div {
    grid-column: 1 / -1;
  }

  .site-footer__inner {
    grid-template-columns: 1.4fr 0.8fr 0.8fr;
  }

  .footer-contact {
    grid-column: 2 / -1;
  }
}

@media (max-width: 720px) {
  :root {
    --header-height: 68px;
  }

  .section {
    padding: 72px 18px;
  }

  .header__inner {
    width: calc(100% - 24px);
    gap: 12px;
  }

  .logo__mark {
    width: 60px;
  }

  .logo__copy strong {
    font-size: 0.76rem;
  }

  .logo__copy small {
    font-size: 0.54rem;
  }

  .header-phone {
    min-height: 42px;
    padding: 8px 11px;
  }

  .header-phone span {
    display: none;
  }

  .hero {
    min-height: 740px;
  }

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

  .hero__shade {
    background:
      linear-gradient(90deg, rgba(2, 12, 20, 0.94) 0%, rgba(2, 12, 20, 0.7) 58%, rgba(2, 12, 20, 0.28) 100%),
      linear-gradient(0deg, rgba(2, 12, 20, 0.72) 0%, transparent 52%);
  }

  .hero__inner {
    width: calc(100% - 36px);
    padding-top: calc(var(--header-height) + 58px);
    padding-bottom: 170px;
    align-items: flex-start;
  }

  .hero__content {
    width: 100%;
  }

  .hero h1 {
    font-size: clamp(4.35rem, 20vw, 6.7rem);
  }

  .hero h1 em {
    margin-top: 18px;
    font-size: 0.52em;
  }

  .hero__lead {
    max-width: 540px;
    margin-top: 30px;
    font-size: 1rem;
  }

  .hero__history {
    max-width: 420px;
    font-size: 0.84rem;
  }

  .experience-seal {
    right: 16px;
    bottom: 22px;
    width: 134px;
    height: 134px;
  }

  .experience-seal__number {
    top: 31px;
    font-size: 3.1rem;
  }

  .experience-seal__years {
    top: 80px;
    font-size: 0.6rem;
  }

  .experience-seal__label {
    bottom: 8px;
    font-size: 0.46rem;
  }

  .trust-strip__inner {
    width: calc(100% - 26px);
  }

  .trust-item {
    gap: 12px;
    padding: 19px 13px !important;
  }

  .trust-item svg {
    width: 37px;
  }

  .trust-item strong {
    font-size: 0.66rem;
  }

  .trust-item span {
    font-size: 0.65rem;
  }

  .service-grid {
    width: calc(100vw - 18px);
    margin-right: -18px;
    padding-right: 18px;
    grid-auto-flow: column;
    grid-template-columns: none;
    grid-auto-columns: min(72vw, 270px);
    gap: 10px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .service-grid::-webkit-scrollbar {
    display: none;
  }

  .service-card {
    min-height: 400px;
    scroll-snap-align: start;
  }

  .offers__grid {
    min-height: 720px;
    grid-template-columns: 1fr;
  }

  .offer {
    min-height: 360px;
  }

  .offer__content,
  .offer--interior .offer__content {
    width: calc(100% - 70px);
    margin-left: 35px;
  }

  .offer__content strong {
    font-size: 3.8rem;
  }

  .offer-badge {
    width: 156px;
    min-height: 180px;
    padding: 34px 17px 24px;
  }

  .offer-badge strong {
    font-size: 2rem;
  }

  .gallery-track {
    width: calc(100vw - 18px);
    margin-right: -18px;
    padding-right: 18px;
    grid-auto-columns: min(83vw, 430px);
  }

  .gallery-controls {
    justify-content: flex-start;
  }

  .contact-cta {
    padding: 55px 18px;
  }

  .contact-cta__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-cta__inner > div {
    grid-column: auto;
  }

  .contact-cta__phone {
    font-size: 2.25rem;
  }

  .contact-cta__phone-icon {
    width: 44px;
    height: 44px;
  }

  .contact-cta .button {
    justify-self: start;
  }

  .site-footer__inner {
    width: calc(100% - 36px);
    grid-template-columns: 1fr 1fr;
    padding: 56px 0 44px;
    gap: 38px 28px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-contact {
    grid-column: 1 / -1;
  }

  .site-footer__bottom {
    width: calc(100% - 36px);
    flex-direction: column;
    gap: 4px;
  }

  .quote-dialog {
    width: calc(100% - 20px);
    max-height: 94vh;
  }

  .quote-dialog__panel {
    max-height: 94vh;
  }

  .quote-dialog__content {
    padding: 55px 22px 30px;
  }

  .quote-dialog__brand {
    left: 22px;
    width: 72px;
  }

  .quote-form {
    grid-template-columns: 1fr;
  }

  .quote-form__wide {
    grid-column: auto;
  }
}

@media (max-width: 430px) {
  .logo__copy {
    display: none;
  }

  .hero__inner {
    padding-top: calc(var(--header-height) + 48px);
  }

  .hero h1 {
    font-size: clamp(4rem, 21vw, 5.25rem);
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
    width: min(100%, 290px);
  }

  .hero__actions .button {
    width: 100%;
  }

  .trust-strip__inner {
    grid-template-columns: 1fr;
  }

  .trust-item {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .offer__content p {
    font-size: 0.68rem;
  }

  .offer__content h3 {
    font-size: 1.7rem;
  }

  .faq-list summary {
    min-height: 82px;
    padding-right: 44px;
    font-size: 0.92rem;
  }

  .faq-list details p {
    margin-right: 0;
  }

  .contact-cta__phone {
    gap: 10px;
    font-size: 1.9rem;
  }
}

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

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

  [data-reveal],
  [data-stagger] > *,
  [data-hero-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }
}
