/*
Theme Name: Detailing Life
Author: Detailing Life
Description: Luxury monochrome car detailing studio theme.
Version: 1.0.7
Text Domain: detailing-life
*/

:root {
  --black: #050505;
  --soft-black: #0c0c0c;
  --graphite: #171717;
  --line: rgba(255, 255, 255, .17);
  --white: #f2f2ef;
  --muted: #a2a2a0;
  --pad: clamp(24px, 5vw, 80px);
  --sans: "Manrope", "Noto Sans JP", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--black); }
body { margin: 0; overflow-x: hidden; background: var(--black); color: var(--white); font-family: var(--sans); font-size: 15px; line-height: 1.8; }
body.is-menu-open { overflow: hidden; }
html.is-loading,
body.is-loading,
html:has(.page-loader:not(.is-done)),
body:has(.page-loader:not(.is-done)) {
  height: 100%;
  overflow: hidden;
  overscroll-behavior: none;
}
a { color: inherit; text-decoration: none; }
img, video, canvas { display: block; max-width: 100%; }
button { color: inherit; font: inherit; }
.container { width: min(100%, 1600px); margin: 0 auto; padding-inline: var(--pad); }
.section { padding-block: clamp(110px, 14vw, 230px); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

.page-loader {
  position: fixed;
  z-index: 9999;
  inset: 0;
  overflow: hidden;
  color: var(--white);
  background: #050505;
  will-change: transform;
}
.page-loader__trace {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: min(1120px, 90vw);
  pointer-events: none;
  transform: translate(-50%, -50%);
}
.page-loader__trace svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}
.page-loader__trace-base,
.page-loader__trace-path,
.page-loader__trace-fill {
  font-family: var(--sans);
  font-size: 185px;
  font-weight: 500;
  letter-spacing: .035em;
  stroke-linecap: round;
  stroke-linejoin: bevel;
  stroke-miterlimit: 1;
}
.page-loader__trace-base {
  fill: #050505;
  stroke: rgba(255,255,255,.1);
  stroke-width: 1;
  paint-order: stroke fill;
}
.page-loader__trace-path {
  fill: #050505;
  stroke: #f2f2ef;
  stroke-width: 1.55;
  stroke-dasharray: 3200;
  stroke-dashoffset: 3200;
  paint-order: stroke fill;
  filter: drop-shadow(0 0 8px rgba(255,255,255,.36));
}
.page-loader__trace-fill {
  fill: #fff;
  opacity: 0;
  filter: drop-shadow(0 0 22px rgba(255,255,255,.78));
}
.page-loader__word {
  position: absolute;
  z-index: 3;
  bottom: clamp(104px, 13vh, 158px);
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: clamp(10px, .85vw, 13px);
  font-weight: 600;
  letter-spacing: .34em;
  line-height: 1;
  white-space: nowrap;
  transform: translateX(-50%);
}
.page-loader__word::before {
  content: "AUTOMOTIVE DETAILING / TRACE 01";
  margin-bottom: 18px;
  color: #6d716f;
  font-size: 8px;
  font-weight: 500;
  letter-spacing: .28em;
}
.page-loader__word::after {
  content: "AOMORI — JAPAN";
  margin-top: 18px;
  color: #6d716f;
  font-size: 8px;
  font-weight: 500;
  letter-spacing: .28em;
}
.page-loader__line {
  position: absolute;
  z-index: 3;
  bottom: clamp(56px, 8vh, 96px);
  left: 50%;
  width: min(340px, 72vw);
  height: 1px;
  overflow: visible;
  background: rgba(255,255,255,.14);
  transform: translateX(-50%);
}
.page-loader__line::after {
  content: "PATH / FLASH / OPEN";
  position: absolute;
  top: 13px;
  right: 0;
  color: #565a58;
  font-size: 7px;
  letter-spacing: .22em;
}
.page-loader__line span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--white);
  box-shadow: 0 0 18px rgba(255,255,255,.3);
  transform: scaleX(0);
  transform-origin: left center;
}
.page-loader.is-done {
  display: none;
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 600px) {
  .page-loader__trace { width: 105vw; }
  .page-loader__word { bottom: 112px; }
  .page-loader__line { bottom: 63px; }
}

.site-header { position: fixed; z-index: 100; top: 0; left: 0; width: 100%; min-height: 96px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 22px var(--pad); border-bottom: 1px solid transparent; transition: background .35s, border-color .35s, min-height .35s; }
.site-header.is-scrolled { min-height: 74px; background: rgba(5, 5, 5, .82); border-color: var(--line); backdrop-filter: blur(14px); }
.site-logo { width: 58px; display: block; flex: 0 0 auto; }
.site-logo img { width: 100%; height: auto; }
.global-nav { display: flex; gap: clamp(22px, 2.2vw, 34px); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.global-nav a, .site-footer nav a { position: relative; }
.global-nav a::after, .site-footer nav a::after { content: ""; position: absolute; left: 0; bottom: -5px; width: 100%; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform .3s; }
.global-nav a:hover::after, .site-footer nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.header-contact { justify-self: end; display: flex; align-items: center; gap: 40px; padding-bottom: 6px; border-bottom: 1px solid var(--white); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; }
.menu-button, .mobile-menu { display: none; }

.hero { position: relative; min-height: 100svh; overflow: hidden; background: #101010; }
.hero__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.1); }
.hero__veil { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.18) 55%, rgba(0,0,0,.52) 100%), linear-gradient(0deg, rgba(0,0,0,.55), transparent 50%); }
.hero__wash { pointer-events: none; position: absolute; z-index: 1; inset: 0; overflow: hidden; mix-blend-mode: screen; opacity: .42; }
.hero__wash::before { content: ""; position: absolute; inset: -20% -45%; background: linear-gradient(105deg, transparent 37%, rgba(255,255,255,.1) 48%, rgba(255,255,255,.32) 50%, rgba(255,255,255,.08) 52%, transparent 63%); transform: translateX(-45%); animation: coating-sweep 8s cubic-bezier(.45,0,.25,1) infinite 1.4s; }
.hero__wash span { position: absolute; top: -18%; width: 1px; height: 48%; background: linear-gradient(to bottom, transparent, rgba(255,255,255,.7), transparent); filter: blur(.2px); transform: rotate(9deg); animation: water-run 5.4s ease-in infinite; }
.hero__wash span:nth-child(1) { left: 18%; animation-delay: .2s; }
.hero__wash span:nth-child(2) { left: 43%; height: 35%; animation-delay: 2.4s; }
.hero__wash span:nth-child(3) { left: 68%; height: 58%; animation-delay: 1.1s; }
.hero__wash span:nth-child(4) { left: 84%; height: 42%; animation-delay: 3.2s; }
.hero__content { position: relative; z-index: 2; min-height: 100svh; display: flex; flex-direction: column; justify-content: flex-end; padding-top: 150px; padding-bottom: clamp(35px, 6vh, 74px); }
.eyebrow { margin: 0; color: #bcbcbc; font-size: 11px; font-weight: 600; letter-spacing: .24em; text-transform: uppercase; }
.hero__eyebrow { margin: 0 0 2vh .55vw; }
.hero__title { margin: 0; font-size: clamp(68px, 13.7vw, 228px); font-weight: 500; line-height: .76; letter-spacing: -.07em; }
.hero__line { display: block; overflow: hidden; padding-right: .1em; }
.hero__line > span { display: block; }
.hero__line--indent { padding-left: 15vw; }
.hero__bottom { display: flex; justify-content: space-between; align-items: end; margin-top: clamp(35px, 7vh, 90px); padding-left: .55vw; }
.hero__bottom > p { margin: 0; color: #d0d0d0; font-size: 14px; line-height: 2; }
.circle-link { width: 104px; height: 104px; border: 1px solid rgba(255,255,255,.5); border-radius: 50%; display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 4px; font-size: 10px; letter-spacing: .14em; text-transform: uppercase; transition: color .3s, background .3s; }
.circle-link i { position: relative; display: block; width: 1px; height: 14px; margin-top: 2px; background: currentColor; font-size: 0; font-style: normal; line-height: 1; transform: none; }
.circle-link i::after { content: ""; position: absolute; left: 50%; bottom: 0; width: 6px; height: 6px; border-right: 1px solid currentColor; border-bottom: 1px solid currentColor; transform: translateX(-50%) rotate(45deg); transform-origin: center; }
.circle-link:hover { color: var(--black); background: var(--white); }
.intro.section { position: relative; z-index: 2; overflow: visible; padding-bottom: 0; background: var(--white); color: var(--black); }
.intro__grid { display: flex; flex-direction: column; align-items: center; }
.display-copy { margin: 0; text-align: center; font-size: clamp(52px, 8.3vw, 138px); font-weight: 500; line-height: 1.08; letter-spacing: -.065em; }
.intro__body { width: min(1120px, 100%); margin: clamp(75px, 8vw, 120px) auto 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); align-items: start; gap: clamp(40px, 5vw, 78px); text-align: center; font-size: 15px; line-height: 2.15; }
.intro__body p { margin: 0; }
.philosophy-slider { position: relative; z-index: 4; width: 100%; margin-top: clamp(90px, 11vw, 165px); overflow: hidden; transform: translateY(50%); }
.philosophy-slider__track { width: max-content; display: flex; transform: translate3d(0, 0, 0); backface-visibility: hidden; will-change: transform; }
.philosophy-slider__track.is-ready { animation: philosophy-loop 54s linear infinite; }
.philosophy-slider__group { flex: 0 0 auto; display: flex; gap: clamp(10px, 1.2vw, 18px); padding-right: clamp(10px, 1.2vw, 18px); }
.philosophy-slider figure { width: clamp(270px, 31vw, 500px); aspect-ratio: 16 / 10; flex: 0 0 auto; margin: 0; overflow: hidden; border: 1px solid rgba(255,255,255,.14); background: #d8d8d4; }
.philosophy-slider img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.04); transform: scale(1.01); transition: filter .6s, transform .8s; }
.philosophy-slider figure:hover > img { transform: scale(1.045); }

.services { position: relative; z-index: 1; padding-top: clamp(285px, 25vw, 430px); background: var(--black); }
.section-heading { display: flex; justify-content: flex-end; margin-bottom: clamp(60px, 9vw, 135px); }
.section-title { margin: 0; font-size: clamp(76px, 12vw, 200px); font-weight: 500; line-height: .78; letter-spacing: -.07em; }
.service-list { border-top: 1px solid var(--line); }
.service-item { position: relative; isolation: isolate; overflow: hidden; display: grid; grid-template-columns: 7% 35% 1fr auto; align-items: center; min-height: 170px; padding: 26px 18px 26px 0; border-bottom: 1px solid var(--line); cursor: pointer; transition: background .35s, padding .35s; }
.service-item::before { content: ""; position: absolute; z-index: -1; inset: 0; background: linear-gradient(105deg, transparent 36%, rgba(255,255,255,.015) 44%, rgba(255,255,255,.13) 50%, rgba(255,255,255,.015) 56%, transparent 64%); transform: translateX(-120%); transition: transform 1s cubic-bezier(.25,.75,.25,1); }
.service-item::after { content: ""; position: absolute; z-index: -1; right: 9%; bottom: 22%; width: 5px; height: 5px; border: 1px solid rgba(255,255,255,.5); border-radius: 50%; box-shadow: 24px -12px 0 -1px rgba(255,255,255,.34), 48px 5px 0 -1px rgba(255,255,255,.24); opacity: 0; transform: translateY(-10px); transition: opacity .45s, transform .7s; }
.service-item:hover { padding-left: 18px; background: #101010; }
.service-item:hover::before { transform: translateX(120%); }
.service-item:hover::after { opacity: 1; transform: translateY(0); }
.service-item__no { color: #777; font-size: 11px; }
.service-item h3 { margin: 0; font-size: clamp(25px, 2.5vw, 42px); font-weight: 500; letter-spacing: -.04em; }
.service-item div p, .service-item__desc { color: var(--muted); font-size: 13px; }
.service-item div p { margin: 5px 0 0; }
.service-item__desc { width: min(360px, 85%); margin: 0; line-height: 2; }
.service-item__arrow { font-size: 24px; }

.strengths { position: relative; height: 360vh; background: #070808; }
.strengths__sticky { position: sticky; top: 0; height: 100vh; min-height: 650px; overflow: hidden; }
.strengths__media { position: absolute; z-index: 1; inset: 0; overflow: hidden; background: #090a0a; }
.strengths__image { position: absolute; inset: 0; margin: 0; opacity: 0; visibility: hidden; transform: scale(1.04); transition: opacity .85s ease, transform 1.4s cubic-bezier(.2,.7,.2,1), visibility .85s; }
.strengths__image.is-active { opacity: 1; visibility: visible; transform: scale(1); }
.strengths__image img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.65) contrast(1.08) brightness(.68); }
.strengths__image:nth-child(1) img { object-position: center 58%; }
.strengths__image:nth-child(2) img { object-position: center 50%; }
.strengths__image:nth-child(3) img { object-position: center 56%; }
.strengths__overlay { position: absolute; z-index: 3; inset: 0; width: auto; overflow: hidden; pointer-events: none; }
.strengths__overlay::before { content: ""; position: absolute; top: -8%; bottom: -8%; left: -7%; width: 82%; background: linear-gradient(90deg, rgba(5,6,6,.97) 0%, rgba(5,6,6,.92) 58%, rgba(5,6,6,.76) 100%); filter: blur(30px); transform: skewX(-15deg) translateZ(0); transform-origin: center; }
.strengths__overlay::after { display: none; }
.strengths__light { position: absolute; z-index: 4; top: -25%; bottom: -25%; left: -25%; width: 13%; pointer-events: none; background: linear-gradient(90deg, transparent, rgba(255,255,255,.2), transparent); filter: blur(15px); transform: rotate(12deg); transition: left 1.1s cubic-bezier(.2,.75,.2,1); }
.strengths[data-active-strength="0"] .strengths__light { left: 8%; }
.strengths[data-active-strength="1"] .strengths__light { left: 46%; }
.strengths[data-active-strength="2"] .strengths__light { left: 88%; }
.strengths__content { position: relative; z-index: 2; height: 100%; }
.strengths__heading { position: absolute; top: clamp(90px, 12vh, 130px); left: var(--pad); width: min(35vw, 500px); }
.strengths__heading > p { margin: 0 0 28px; color: #8d9291; font-size: 11px; font-weight: 600; letter-spacing: .25em; }
.strengths__heading h2 { margin: 0; font-size: clamp(50px, 5.5vw, 92px); font-weight: 500; line-height: .84; letter-spacing: -.065em; }
.strengths__panels { position: absolute; inset: 0; }
.strength-card { position: absolute; left: var(--pad); bottom: clamp(80px, 11vh, 125px); width: min(34vw, 470px); padding: clamp(24px, 2.6vw, 38px) 0 0; overflow: hidden; border-top: 1px solid rgba(255,255,255,.22); opacity: 0; visibility: hidden; transform: translate3d(0, 26px, 0); transition: opacity .65s ease, transform .85s cubic-bezier(.2,.75,.2,1), visibility .65s; }
.strength-card::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 1px; background: rgba(255,255,255,.9); transform: scaleX(0); transform-origin: left; transition: transform 1s ease .15s; }
.strength-card.is-active { opacity: 1; visibility: visible; transform: translate3d(0, 0, 0); }
.strength-card.is-active::before { transform: scaleX(1); }
.strength-card__no { display: block; margin-bottom: clamp(28px, 4vh, 44px); color: #747978; font-size: 11px; letter-spacing: .16em; }
.strength-card__en { margin: 0 0 12px; color: #aeb2b1; font-size: 11px; font-weight: 600; letter-spacing: .22em; }
.strength-card h3 { margin: 0 0 24px; font-size: clamp(26px, 2.6vw, 41px); font-weight: 500; line-height: 1.35; letter-spacing: -.045em; }
.strength-card > p:last-child { margin: 0; color: #c1c4c3; font-size: 14px; line-height: 2.05; }
.strengths__progress { position: absolute; right: var(--pad); bottom: 32px; width: min(50vw, 620px); display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 16px; color: #878b8a; font-size: 10px; letter-spacing: .15em; }
.strengths__progress i { display: block; height: 1px; overflow: hidden; background: rgba(255,255,255,.18); }
.strengths__progress b { display: block; width: 100%; height: 100%; background: rgba(255,255,255,.86); transform: scaleX(0); transform-origin: left; }

.pricing { background: var(--white); color: var(--black); }
.section-heading--price { grid-template-columns: 2fr 1fr; }
.pricing__lead { width: min(390px, 100%); margin: 0 0 10px; font-size: 13px; line-height: 2.1; }
.price-table { border-top: 1px solid #111; }
.price-row { display: grid; grid-template-columns: 2fr repeat(3, 1fr); align-items: center; min-height: 116px; border-bottom: 1px solid #c8c8c5; }
.price-row > span:not(:first-child) { text-align: center; font-size: 13px; }
.price-row b { display: block; font-size: clamp(18px, 2vw, 29px); font-weight: 500; letter-spacing: -.03em; }
.price-row small { color: #777; font-size: 10px; }
.price-row--head { min-height: 55px; color: #777; font-size: 9px; letter-spacing: .16em; text-transform: uppercase; }
.price-note { display: flex; justify-content: space-between; align-items: center; margin-top: 30px; }
.price-note p { margin: 0; color: #777; font-size: 9px; }
.text-link { padding-bottom: 4px; border-bottom: 1px solid; font-size: 11px; }

.works { background: #080808; }
.works-grid { width: min(100%, 820px); margin-inline: auto; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(8px, 1.1vw, 16px); }
.work-card { position: relative; aspect-ratio: 1; overflow: hidden; background: #111; }
.work-card a { position: absolute; inset: 0; display: grid; place-items: center; overflow: hidden; }
.work-card img, .work-card video { position: absolute; inset: 0; display: block; width: 100%; height: 100%; min-width: 100%; min-height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.06); transform: scale(1.015); transition: filter .65s, transform 1s cubic-bezier(.2,.7,.2,1); }
.work-card video { background: #111; }
.work-card a::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.68), transparent 45%); opacity: .6; transition: opacity .4s; }
.work-card a:hover img, .work-card a:hover video { filter: grayscale(1) contrast(1.06); transform: scale(1.055); }
.work-card a:hover::after { opacity: .88; }
.work-card__caption { position: absolute; z-index: 2; left: 18px; bottom: 15px; color: rgba(255,255,255,.9); font-size: 10px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; opacity: 0; transform: translateY(7px); transition: opacity .4s, transform .4s; }
.work-card a:hover .work-card__caption { opacity: 1; transform: translateY(0); }
.work-card--instagram { background: #ec317c; color: #fff; }
.work-card--instagram a { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; padding: 22px; text-align: center; background: radial-gradient(circle at 31% 28%, rgba(255,224,116,.96) 0, rgba(255,151,74,.88) 21%, transparent 43%), linear-gradient(135deg, #ff694b 0%, #ee287e 52%, #613be8 100%); }
.work-card--instagram a::before { content: ""; position: absolute; inset: 14px; border: 1px solid rgba(255,255,255,.24); transition: inset .45s, border-color .45s; }
.work-card--instagram a::after { display: none; }
.work-card--instagram svg { width: 46px; fill: none; stroke: currentColor; stroke-width: 1.35; }
.work-card--instagram span { font-size: 12px; font-weight: 700; letter-spacing: .18em; }
.work-card--instagram small { display: none; }
.work-card--instagram a:hover::before { inset: 8px; border-color: rgba(255,255,255,.7); }
.works-more { display: flex; justify-content: center; margin-top: clamp(48px, 6vw, 86px); }
.works-more__link { width: min(100%, 230px); display: flex; justify-content: space-between; align-items: center; padding: 19px 22px; border: 1px solid rgba(255,255,255,.42); font-size: 11px; font-weight: 600; letter-spacing: .18em; transition: color .35s, background .35s, border-color .35s; }
.works-more__link:hover { color: var(--black); background: var(--white); border-color: var(--white); }
.works-more__link i { font-size: 16px; font-style: normal; }

.contact { position: relative; overflow: hidden; padding: 80px 0 clamp(125px, 14vw, 220px); background: var(--white); color: var(--black); }
.contact__marquee { display: flex; width: max-content; margin-bottom: 160px; color: #d4d4d0; font-size: clamp(72px, 11vw, 180px); font-weight: 500; line-height: 1; letter-spacing: -.06em; white-space: nowrap; }
.contact__inner h2 { margin: 0 0 35px; font-size: clamp(50px, 7vw, 118px); font-weight: 500; line-height: 1.1; letter-spacing: -.06em; }
.contact__inner > p { margin: 0; color: #555; font-size: 14px; line-height: 2; }
.contact__services { margin-top: clamp(60px, 8vw, 110px); border-top: 1px solid #111; }
.contact__services a { position: relative; isolation: isolate; display: grid; grid-template-columns: 30% 1fr auto; align-items: center; min-height: clamp(105px, 9vw, 145px); padding: 20px 4px; overflow: hidden; border-bottom: 1px solid #aaa; transition: color .45s, padding .45s; }
.contact__services a::before { content: ""; position: absolute; z-index: -1; inset: 0; background: #0a0a0a; transform: translateY(102%); transition: transform .5s cubic-bezier(.2,.75,.2,1); }
.contact__services a:hover { padding-inline: 24px; color: var(--white); }
.contact__services a:hover::before { transform: translateY(0); }
.contact__services span { font-size: clamp(25px, 3vw, 45px); font-weight: 500; letter-spacing: -.035em; }
.contact__services small { color: #666; font-size: 13px; transition: color .45s; }
.contact__services a:hover small { color: #c8c8c5; }
.contact__services i { font-size: 24px; font-style: normal; }

.site-footer { position: relative; overflow: hidden; padding: 0 0 25px; background: var(--black); }
.footer-cta { position: relative; isolation: isolate; overflow: hidden; padding-block: clamp(100px, 12vw, 185px); border-bottom: 1px solid var(--line); background: #080808; }
.footer-cta__visual { position: absolute; z-index: 0; inset: 0; width: 100%; overflow: hidden; background: #080808; }
.footer-cta__visual img { width: 100%; height: 100%; object-fit: cover; object-position: center 55%; filter: grayscale(1) contrast(1.08) brightness(.62); transform: scale(1.03); }
.footer-cta__visual::before { content: ""; position: absolute; z-index: 2; top: -8%; bottom: -8%; left: -7%; width: 82%; background: linear-gradient(90deg, rgba(8,8,8,.98) 0%, rgba(8,8,8,.93) 58%, rgba(8,8,8,.78) 100%); filter: blur(30px); transform: skewX(-15deg) translateZ(0); transform-origin: center; }
.footer-cta__visual::after { content: ""; position: absolute; z-index: 1; inset: 0; background: rgba(8,8,8,.14); }
.footer-cta__inner { position: relative; z-index: 2; display: block; }
.footer-cta__word { margin: 0; color: #8b8e8d; font-size: 12px; font-weight: 600; letter-spacing: .28em; }
.footer-cta__content h2 { margin: clamp(42px, 5vw, 72px) 0 0; font-size: clamp(52px, 7.8vw, 128px); font-weight: 500; line-height: 1.03; letter-spacing: -.065em; }
.footer-cta__content > p { margin: clamp(35px, 4vw, 60px) 0 0; color: #a8abaa; font-size: 14px; line-height: 2; }
.footer-cta__content > a { width: min(100%, 560px); display: flex; justify-content: space-between; align-items: center; margin-top: clamp(45px, 6vw, 80px); padding: 24px 2px; border-top: 1px solid rgba(255,255,255,.5); border-bottom: 1px solid rgba(255,255,255,.5); font-size: 14px; transition: padding .35s, color .35s, background .35s; }
.footer-cta__content > a:hover { padding-inline: 18px; color: var(--black); background: var(--white); }
.footer-cta__content i { font-size: 20px; font-style: normal; }
.site-footer__main { display: grid; grid-template-columns: minmax(180px, 25%) 1fr; align-items: start; gap: clamp(65px, 9vw, 150px); padding-block: clamp(85px, 10vw, 150px) 95px; }
.site-logo--footer { width: clamp(92px, 8vw, 126px); }
.site-footer__brand { display: flex; flex-direction: column; align-items: flex-start; }
.site-footer__social { display: flex; gap: 12px; margin-top: 35px; }
.site-footer__social a { width: 39px; height: 39px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; transition: border-color .3s, background .3s, transform .3s; }
.site-footer__social a:hover { border-color: var(--white); background: rgba(255,255,255,.08); transform: translateY(-3px); }
.site-footer__social img { width: 17px; height: 17px; object-fit: contain; opacity: .92; }
.site-footer__content { min-width: 0; }
.site-footer nav { display: flex; flex-wrap: wrap; align-items: center; gap: 18px clamp(26px, 3vw, 52px); padding-bottom: clamp(42px, 5vw, 70px); border-bottom: 1px solid var(--line); font-size: 12px; letter-spacing: .09em; text-transform: uppercase; }
.site-footer__details { display: grid; grid-template-columns: 1.25fr 1fr 1fr; gap: clamp(35px, 5vw, 85px); padding-top: clamp(42px, 5vw, 68px); }
.site-footer__details span { display: block; margin-bottom: 20px; color: #747776; font-size: 10px; font-weight: 600; letter-spacing: .2em; }
.site-footer__details address, .site-footer__details p, .site-footer__details a { margin: 0; color: #b6b9b8; font-size: 13px; font-style: normal; line-height: 2; }
.site-footer__details a { padding-bottom: 4px; border-bottom: 1px solid rgba(255,255,255,.3); }
.site-footer__wordmark { width: 100%; max-width: 100%; display: flex; justify-content: center; margin: 0 auto -2.5vw; overflow: visible; color: #151616; font-size: clamp(82px, 16.2vw, 280px); font-weight: 700; line-height: .72; letter-spacing: -.075em; text-align: center; white-space: nowrap; }
.site-footer__bottom { position: relative; z-index: 2; display: flex; justify-content: space-between; padding-top: 20px; border-top: 1px solid var(--line); color: #888; font-size: 10px; letter-spacing: .08em; }

@media (hover: hover) and (pointer: fine) {
  main > section:not(:first-child) img,
  .footer-cta__visual img {
    transition: filter .6s ease;
  }

  main > section:not(:first-child) img:hover,
  main > section:not(:first-child) figure:hover img,
  main > section:not(:first-child) a:hover img,
  main > section:not(:first-child) [class*="__media"]:hover img,
  .strengths:hover .strengths__image.is-active img,
  .purchase-value:hover .purchase-value__media img,
  .footer-cta:hover .footer-cta__visual img {
    filter: none !important;
  }
}

.service-hero { position: relative; min-height: 92svh; overflow: hidden; background: #0a0a0a; }
.service-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.08) brightness(.62); }
.service-hero__veil { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.78), rgba(0,0,0,.18) 65%), linear-gradient(0deg, rgba(0,0,0,.6), transparent 55%); }
.service-hero__content { position: relative; z-index: 1; min-height: 92svh; display: flex; flex-direction: column; justify-content: flex-end; padding-top: 150px; padding-bottom: clamp(65px, 9vh, 110px); }
.service-hero__content > p:first-child { margin: 0 0 25px; color: #bbb; font-size: 11px; font-weight: 600; letter-spacing: .25em; }
.service-hero h1 { margin: 0; font-size: clamp(72px, 15vw, 245px); font-weight: 500; line-height: .75; letter-spacing: -.07em; }
.service-hero__lead { align-self: flex-end; margin: clamp(45px, 7vh, 90px) 0 0; font-size: 15px; line-height: 2; }
.service-story { background: var(--white); color: var(--black); }
.service-story__grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr); gap: clamp(50px, 7vw, 110px); align-items: start; }
.service-story h2 { margin: 0; font-size: clamp(46px, 5vw, 80px); font-weight: 500; line-height: 1.08; letter-spacing: -.06em; white-space: nowrap; }
.service-story p { margin: 0 0 30px; color: #555; font-size: 15px; line-height: 2.15; }
.service-story a { width: min(100%, 520px); display: flex; justify-content: space-between; margin-top: 70px; padding: 24px 2px; border-top: 1px solid #111; border-bottom: 1px solid #111; font-size: 13px; }

.global-nav a[aria-current="page"], .site-footer nav a[aria-current="page"] { color: var(--white); }
.global-nav a[aria-current="page"]::after, .site-footer nav a[aria-current="page"]::after { transform: scaleX(1); }
.page-kicker { margin: 0 0 34px; color: #898d8c; font-size: 11px; font-weight: 600; letter-spacing: .25em; text-transform: uppercase; }
.subpage-hero__bottom { display: flex; justify-content: space-between; align-items: flex-end; gap: 50px; margin-top: clamp(45px, 7vh, 90px); }
.subpage-hero__bottom .service-hero__lead { align-self: auto; margin: 0; }
.subpage-hero__bottom > a { display: inline-flex; align-items: center; gap: 34px; padding-bottom: 6px; border-bottom: 1px solid rgba(255,255,255,.7); font-size: 11px; letter-spacing: .14em; white-space: nowrap; }
.about-editorial-hero { position: relative; min-height: 100svh; overflow: hidden; background: #070808; }
.about-editorial-hero__media { position: absolute; top: 0; right: 0; width: 62%; height: 100%; overflow: hidden; }
.about-editorial-hero__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, #070808 0%, rgba(7,8,8,.9) 7%, rgba(7,8,8,.25) 37%, rgba(7,8,8,.08) 100%), linear-gradient(0deg, rgba(7,8,8,.65), transparent 40%); }
.about-editorial-hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 58%; filter: grayscale(1) contrast(1.08) brightness(.72); }
.about-editorial-hero__content { position: relative; z-index: 1; min-height: 100svh; display: flex; flex-direction: column; padding-top: 130px; padding-bottom: clamp(40px, 6vh, 74px); }
.about-editorial-hero__top, .about-editorial-hero__bottom { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; }
.about-editorial-hero__top p { margin: 0; color: #a7aaa9; font-size: 10px; font-weight: 600; letter-spacing: .23em; }
.about-editorial-hero h1 { margin: auto 0 0; font-size: clamp(96px, 16.2vw, 270px); font-weight: 500; line-height: .73; letter-spacing: -.075em; }
.about-editorial-hero__bottom { margin-top: clamp(60px, 9vh, 120px); padding-left: .5vw; }
.about-editorial-hero__bottom p { margin: 0; color: #d2d3d1; font-size: 15px; line-height: 2; }
.about-editorial-hero__bottom a { display: inline-flex; align-items: center; gap: 34px; padding-bottom: 6px; border-bottom: 1px solid rgba(255,255,255,.7); font-size: 11px; letter-spacing: .14em; white-space: nowrap; }

.about-manifesto { overflow: hidden; background: var(--white); color: var(--black); }
.about-manifesto h2 { width: min(1320px, 100%); margin: 0; font-size: clamp(66px, 9vw, 146px); font-weight: 500; line-height: .96; letter-spacing: -.07em; white-space: nowrap; }
.about-manifesto__body { display: grid; grid-template-columns: minmax(250px, .8fr) minmax(0, 1.2fr); gap: clamp(65px, 11vw, 180px); width: min(1120px, 100%); margin: clamp(90px, 11vw, 175px) 0 0 auto; padding-top: clamp(34px, 4vw, 62px); border-top: 1px solid #b8b8b4; }
.about-manifesto__lead { margin: 0; color: #181818; font-size: clamp(18px, 1.7vw, 27px); line-height: 1.9; letter-spacing: -.02em; }
.about-manifesto__body > div > p { margin: 0 0 30px; color: #555; font-size: 15px; line-height: 2.15; }
.about-manifesto__body a { width: min(100%, 520px); display: flex; justify-content: space-between; margin-top: 70px; padding: 24px 2px; border-top: 1px solid #111; border-bottom: 1px solid #111; font-size: 13px; }

.about-beliefs { overflow: hidden; background: #080909; }
.about-beliefs__layout { display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(380px, .88fr); gap: clamp(70px, 10vw, 170px); align-items: start; }
.about-beliefs__head { position: sticky; top: 125px; }
.about-beliefs__head .page-kicker { margin-bottom: clamp(55px, 7vw, 100px); }
.about-beliefs__head h2 { margin: 0; font-size: clamp(72px, 9.3vw, 154px); font-weight: 500; line-height: .78; letter-spacing: -.075em; }
.about-beliefs__head > p:last-child { margin: clamp(48px, 6vw, 85px) 0 0; color: #bec1c0; font-size: clamp(18px, 1.8vw, 28px); letter-spacing: -.025em; }
.about-beliefs__rail { border-top: 1px solid var(--line); }
.about-beliefs__rail article { min-height: clamp(210px, 19vw, 300px); display: flex; flex-direction: column; justify-content: center; padding: clamp(35px, 4vw, 58px) 0; border-bottom: 1px solid var(--line); }
.about-beliefs__rail span { color: #747978; font-size: 9px; font-weight: 600; letter-spacing: .2em; }
.about-beliefs__rail h3 { margin: 28px 0 16px; font-size: clamp(28px, 3.1vw, 48px); font-weight: 500; line-height: 1.2; letter-spacing: -.04em; }
.about-beliefs__rail p { width: min(460px, 100%); margin: 0; color: #a9acab; font-size: 14px; line-height: 2.05; }
.about-craft { position: relative; height: clamp(620px, 65vw, 830px); min-height: 0; overflow: hidden; background: #080909; }
.about-craft__media { position: absolute; inset: 0; }
.about-craft__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,5,5,.94) 0%, rgba(5,5,5,.74) 38%, rgba(5,5,5,.13) 72%), linear-gradient(0deg, rgba(5,5,5,.82), transparent 47%); }
.about-craft__slide { position: absolute; inset: 0; margin: 0; opacity: 0; transform: scale(1.035); transition: opacity 1.15s ease, transform 1.8s cubic-bezier(.2,.7,.2,1); }
.about-craft__slide.is-active { opacity: 1; transform: scale(1); }
.about-craft__slide img { width: 100%; height: 100%; object-fit: cover; object-position: center 56%; filter: grayscale(1) contrast(1.08) brightness(.72); }
.about-craft__content { position: relative; z-index: 2; height: 100%; min-height: 0; }
.about-craft__panel { position: absolute; top: 50%; left: var(--pad); width: calc(100% - (var(--pad) * 2)); opacity: 0; visibility: hidden; transform: translate3d(0, calc(-50% + 24px), 0); transition: opacity .9s ease, transform 1.1s cubic-bezier(.2,.7,.2,1), visibility .9s; }
.about-craft__panel.is-active { opacity: 1; visibility: visible; transform: translate3d(0, -50%, 0); }
.about-craft__panel h2 { width: min(980px, 82%); margin: 0; font-size: clamp(50px, 5.2vw, 84px); font-weight: 500; line-height: 1.03; letter-spacing: -.065em; white-space: nowrap; }
.about-craft__copy { width: min(560px, 45%); display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 3vw, 45px); margin-top: clamp(65px, 8vw, 110px); }
.about-craft__copy p { margin: 0; color: #b8bbba; font-size: 13px; line-height: 2.05; }
.about-craft__index { position: absolute; z-index: 3; right: var(--pad); bottom: clamp(30px, 4vw, 58px); width: min(28vw, 390px); display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 16px; color: #b5b8b7; font-size: 9px; letter-spacing: .18em; }
.about-craft__index i { height: 1px; background: rgba(255,255,255,.45); }
.about-store { background: #deded9; color: var(--black); }
.about-store.section { padding-block: clamp(82px, 8vw, 125px); }
.about-store__heading { display: block; margin-bottom: clamp(42px, 5vw, 70px); }
.about-store__heading .page-kicker { margin: 0 0 12px; color: #676967; }
.about-store__heading > div > span { color: #777a78; font-size: 9px; letter-spacing: .18em; }
.about-store__heading h2 { width: min(920px, 100%); margin: clamp(38px, 4vw, 58px) 0 0; font-size: clamp(42px, 4.6vw, 74px); font-weight: 500; line-height: 1.08; letter-spacing: -.055em; white-space: nowrap; }
.about-store__grid { min-width: 0; display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(45px, 7vw, 105px); align-items: start; }
.about-store__media { position: relative; width: 100%; min-width: 0; min-height: 0; aspect-ratio: 16 / 10; margin: 0; overflow: hidden; background: #bbb; }
.about-store__media img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.08); }
.about-store__media figcaption { position: absolute; right: 20px; bottom: 18px; padding: 7px 10px; color: #ddd; background: rgba(0,0,0,.58); font-size: 8px; letter-spacing: .2em; }
.about-store__details { min-width: 0; display: flex; flex-direction: column; border-top: 1px solid #111; }
.about-store__details > div { display: grid; grid-template-columns: 27% 1fr; gap: 25px; padding: clamp(17px, 1.7vw, 25px) 0; border-bottom: 1px solid #aaa; }
.about-store__details span { color: #6b6d6b; font-size: 9px; font-weight: 600; letter-spacing: .19em; }
.about-store__details p, .about-store__details address, .about-store__details > div > a { min-width: 0; margin: 0; overflow-wrap: anywhere; color: #242424; font-size: 14px; font-style: normal; line-height: 2; }
.about-store__details > div > a { width: max-content; border-bottom: 1px solid #777; }
.about-store__contact { display: flex; justify-content: space-between; align-items: center; margin-top: auto; padding: 26px 2px; border-top: 1px solid #111; border-bottom: 1px solid #111; font-size: 13px; transition: padding .35s, color .35s, background .35s; }
.about-store__contact:hover { padding-inline: 18px; color: var(--white); background: var(--black); }
.about-store__contact i { font-size: 20px; font-style: normal; }

.page-service-links { background: #090909; }
.page-service-links__heading { display: grid; grid-template-columns: .75fr 1.25fr; align-items: end; gap: 60px; margin-bottom: clamp(70px, 9vw, 135px); }
.page-service-links__heading .page-kicker { margin: 0 0 12px; }
.page-service-links__heading h2 { margin: 0; font-size: clamp(46px, 6vw, 94px); font-weight: 500; line-height: 1.08; letter-spacing: -.06em; }
.page-service-links__list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.page-service-links__list a { min-height: clamp(180px, 18vw, 270px); display: flex; flex-direction: column; justify-content: space-between; padding: clamp(24px, 2.7vw, 40px); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: color .35s, background .35s; }
.page-service-links__list a:hover { color: var(--black); background: var(--white); }
.page-service-links__list span { color: #777b7a; font-size: 10px; letter-spacing: .18em; }
.page-service-links__list strong { font-size: clamp(18px, 1.65vw, 26px); font-weight: 500; letter-spacing: -.025em; }
.page-service-links__list small { display: none; }
.page-service-links__list i { align-self: flex-end; font-size: 19px; font-style: normal; }

.service-highlights { background: #080909; }
.service-highlights__title { width: min(1050px, 100%); margin: 0; font-size: clamp(50px, 5.4vw, 86px); font-weight: 500; line-height: 1.04; letter-spacing: -.065em; white-space: nowrap; }
.service-highlights__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(35px, 5vw, 82px); margin-top: clamp(100px, 12vw, 180px); }
.service-highlights__grid article { padding-top: 25px; border-top: 1px solid var(--line); }
.service-highlights__grid span { color: #777b7a; font-size: 10px; letter-spacing: .16em; }
.service-highlights__grid h3 { margin: 44px 0 22px; font-size: clamp(21px, 2vw, 32px); font-weight: 500; letter-spacing: -.025em; }
.service-highlights__grid p { margin: 0; color: #aaadac; font-size: 14px; line-height: 2.1; }
.service-visual-loop { width: 100%; height: clamp(300px, 31vw, 470px); overflow: hidden; background: #090909; }
.service-visual-loop__track { width: max-content; display: flex; transform: translate3d(0, 0, 0); backface-visibility: hidden; will-change: transform; }
.service-visual-loop__track.is-ready { animation: service-visual-loop 58s linear infinite; }
.service-visual-loop__group { flex: 0 0 auto; display: flex; gap: clamp(6px, .7vw, 11px); padding-right: clamp(6px, .7vw, 11px); }
.service-visual-loop figure { width: clamp(310px, 35vw, 540px); height: clamp(300px, 31vw, 470px); flex: 0 0 auto; margin: 0; overflow: hidden; background: #141414; }
.service-visual-loop img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.08); transform: scale(1.01); transition: filter .65s, transform .85s; }
.service-visual-loop figure:hover > img { transform: scale(1.045); }
.service-page--wash .service-visual-loop figure:first-child img { object-position: center 68%; }
.service-page--cleaning .service-visual-loop img { object-position: center; }

.cursor-stalker {
  position: fixed;
  z-index: 9998;
  top: 0;
  left: 0;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  mix-blend-mode: difference;
  transform: translate3d(-100px, -100px, 0) translate(-50%, -50%);
  transition: width .28s ease, height .28s ease, border-color .28s ease, background-color .28s ease, opacity .2s ease;
  will-change: transform;
}
.cursor-stalker::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #fff;
  transform: translate(-50%, -50%);
  transition: opacity .2s;
}
.cursor-stalker.is-visible { opacity: 1; }
.cursor-stalker.is-interactive { width: 54px; height: 54px; background: rgba(255,255,255,.08); }
.cursor-stalker.is-media { width: 104px; height: 104px; border-color: rgba(255,255,255,.92); background: rgba(255,255,255,.035); }
.cursor-stalker.is-media::after { opacity: 0; }
.cursor-stalker.is-pressed { width: 26px; height: 26px; }

@media (pointer: coarse) {
  .cursor-stalker { display: none; }
}

.service-process { background: #0d0e0e; }
.service-process__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(60px, 7vw, 110px); align-items: start; }
.service-process h2 { margin: 0; font-size: clamp(42px, 4.2vw, 68px); font-weight: 500; line-height: 1.1; letter-spacing: -.06em; white-space: nowrap; }
.service-process ol { margin: 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.service-process li { display: grid; grid-template-columns: 12% 1fr; gap: 20px; min-height: 135px; padding: 30px 0; border-bottom: 1px solid var(--line); }
.service-process li > span { color: #777b7a; font-size: 10px; letter-spacing: .14em; }
.service-process h3 { margin: 0 0 10px; font-size: clamp(20px, 2vw, 30px); font-weight: 500; letter-spacing: -.025em; }
.service-process li p { margin: 0; color: #a8abaa; font-size: 14px; line-height: 2; }

.service-pricing { background: var(--white); color: var(--black); }
.service-pricing__heading { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(280px, .55fr); align-items: end; gap: clamp(50px, 8vw, 130px); margin-bottom: clamp(75px, 9vw, 135px); }
.service-pricing__heading h2 { margin: 0; font-size: clamp(58px, 8vw, 132px); font-weight: 500; line-height: .9; letter-spacing: -.065em; }
.service-pricing__heading > p { margin: 0 0 5px; color: #5e6160; font-size: 14px; line-height: 2.1; }
.service-price-list { border-top: 1px solid #111; }
.service-price-list__head, .service-price-list article { display: grid; grid-template-columns: minmax(260px, .72fr) minmax(570px, 1.28fr); gap: clamp(38px, 6vw, 90px); align-items: center; }
.service-price-list__head { min-height: 58px; color: #777; font-size: 9px; letter-spacing: .18em; }
.service-price-list__head span:last-child { text-align: right; }
.service-price-list article { min-height: clamp(118px, 10vw, 160px); padding: 26px 0; border-bottom: 1px solid #c7c7c3; }
.service-price-list article h3 { margin: 0 0 10px; font-size: clamp(22px, 2.4vw, 38px); font-weight: 500; letter-spacing: -.035em; }
.service-price-list article p { margin: 0; color: #666; font-size: 13px; line-height: 1.9; }
.service-size-prices { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: clamp(6px, 1vw, 16px); margin: 0; }
.service-size-prices > div { min-width: 0; padding-left: clamp(6px, 1vw, 16px); border-left: 1px solid #c9c9c4; }
.service-size-prices dt { color: #777; font-size: 9px; font-weight: 600; letter-spacing: .16em; }
.service-size-prices dd { margin: 5px 0 0; font-size: clamp(15px, 1.35vw, 22px); font-weight: 500; line-height: 1.3; letter-spacing: -.035em; white-space: nowrap; }
.service-pricing__note { margin: 28px 0 0; color: #777; font-size: 10px; line-height: 1.9; }

@media (max-width: 900px) {
  .site-header { min-height: 76px; grid-template-columns: 1fr auto; }
  .global-nav, .header-contact { display: none; }
  .menu-button { position: relative; display: block; width: 42px; height: 42px; padding: 0; border: 0; background: transparent; cursor: pointer; }
  .menu-button i { position: absolute; top: 50%; left: 5px; display: block; width: 32px; height: 1px; background: currentColor; transform-origin: center; transition: transform .3s ease; }
  .menu-button i:first-of-type { transform: translateY(-5px); }
  .menu-button i:last-of-type { transform: translateY(5px); }
  .menu-button[aria-expanded="true"] i:first-of-type { transform: translateY(0) rotate(45deg); }
  .menu-button[aria-expanded="true"] i:last-of-type { transform: translateY(0) rotate(-45deg); }
  .mobile-menu { position: fixed; z-index: 90; inset: 0; display: grid; align-items: center; overflow-y: auto; visibility: hidden; opacity: 0; background: #080808; transition: opacity .35s, visibility .35s; }
  .mobile-menu.is-open { visibility: visible; opacity: 1; }
  .mobile-menu nav { width: 100%; display: flex; flex-direction: column; align-items: flex-start; gap: clamp(10px, 1.8vh, 18px); padding: 96px var(--pad) 42px; font-family: var(--sans); font-size: clamp(28px, 7vw, 52px); font-weight: 500; line-height: 1.14; letter-spacing: -.035em; text-align: left; text-transform: uppercase; }
  .hero__line--indent { padding-left: 8vw; }
  .section-heading { justify-content: flex-start; }
  .intro__body { width: 100%; margin-top: 70px; }
  .service-item { grid-template-columns: 10% 1fr auto; }
  .service-item__desc { display: none; }
  .strengths__heading h2 { font-size: 64px; }
  .strength-card { width: min(38vw, 390px); }
  .strengths__progress { width: 50vw; }
  .section-heading--price { grid-template-columns: 1fr; }
  .site-footer__main { grid-template-columns: 1fr; gap: 70px; }
  .site-footer__details { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .service-story__grid { grid-template-columns: 1fr; }
  .service-highlights__grid { grid-template-columns: 1fr; gap: 55px; }
  .service-highlights__grid article { display: grid; grid-template-columns: 10% 32% 1fr; gap: 25px; align-items: start; }
  .service-highlights__grid h3 { margin: 0; }
  .service-process__grid { grid-template-columns: 1fr; }
  .about-manifesto__body { grid-template-columns: 1fr 1fr; }
  .about-beliefs__layout { grid-template-columns: 1fr; }
  .about-beliefs__head { position: static; }
  .about-beliefs__head h2 { font-size: clamp(76px, 15vw, 118px); }
  .about-beliefs__rail { margin-top: 90px; }
  .about-craft__panel h2 { width: min(700px, 78%); }
  .about-craft__copy { width: min(520px, 58%); }
  .about-craft__index { width: min(34vw, 320px); }
  .about-store__grid { grid-template-columns: 1fr; }
  .about-store__media { width: min(720px, 100%); aspect-ratio: 16 / 9; }
  .page-service-links__heading, .service-pricing__heading { grid-template-columns: 1fr; }
  .service-pricing__heading > p { width: min(560px, 100%); }
  .service-price-list__head, .service-price-list article { grid-template-columns: 1fr; gap: 30px; }
  .service-price-list__head { grid-template-columns: 1fr auto; }
}

@media (max-width: 600px) {
  :root { --pad: 20px; }
  body { font-size: 14px; }
  .section { padding-block: 105px; }
  .hero { min-height: 100svh; background: #050505; }
  .hero__video {
    inset: 0 0 auto;
    height: 60vh;
    height: 60svh;
    object-position: center;
    -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 82%, transparent 100%);
    mask-image: linear-gradient(to bottom, #000 0%, #000 82%, transparent 100%);
  }
  .hero__wash::before { content: none; animation: none; }
  .hero__content { padding-bottom: 25px; }
  .hero__title { font-size: clamp(61px, 20.5vw, 92px); line-height: .82; }
  .hero__line--indent { padding-left: 0; }
  .hero__bottom { align-items: flex-end; }
  .hero__bottom > p { max-width: 235px; font-size: 11px; }
  .circle-link { width: 74px; height: 74px; }
  .display-copy { font-size: 49px; }
  .intro__body { grid-template-columns: 1fr; gap: 25px; }
  .intro__body { text-align: left; }
  .philosophy-slider { margin-top: 70px; transform: translateY(50%); }
  .philosophy-slider__track.is-ready { animation-duration: 32s; }
  .philosophy-slider figure { width: 245px; }
  .services { padding-top: 190px; }
  .section-title { font-size: 72px; }
  .service-item { min-height: 125px; grid-template-columns: 10% 1fr auto; padding-right: 0; }
  .service-item h3 { font-size: 22px; }
  .strengths { height: 330vh; }
  .strengths__sticky { min-height: 620px; }
  .strengths__image img { filter: grayscale(.45) contrast(1.05) brightness(.82); }
  .strengths__overlay { inset: 0; width: auto; }
  .strengths__overlay::before { top: -6%; bottom: -6%; left: -18%; width: 88%; background: linear-gradient(90deg, rgba(5,6,6,.97) 0%, rgba(5,6,6,.88) 45%, rgba(5,6,6,.54) 68%, rgba(5,6,6,.16) 86%, transparent 100%); filter: blur(12px); transform: skewX(-7deg) translateZ(0); }
  .strengths__overlay::after { display: none; }
  .strengths__heading { top: 92px; width: min(76%, 310px); }
  .strengths__heading > p { margin-bottom: 16px; }
  .strengths__heading h2 { color: rgba(242,242,239,.78); font-size: 45px; }
  .strength-card { left: 20px; right: auto; bottom: 66px; width: min(76%, 310px); padding: 24px 0 0; transform: translate3d(0, 24px, 0); }
  .strength-card.is-active { transform: translate3d(0, 0, 0); }
  .strength-card__no { margin-bottom: 28px; }
  .strength-card h3 { margin-bottom: 18px; font-size: 25px; }
  .strength-card > p:last-child { font-size: 12px; line-height: 2; }
  .strengths__progress { right: 20px; bottom: 22px; width: calc(100% - 40px); }
  .price-row { grid-template-columns: 1.8fr repeat(3, .7fr); min-height: 94px; }
  .price-row b { font-size: 15px; }
  .price-row small { font-size: 8px; }
  .price-row > span:not(:first-child) { font-size: 10px; }
  .price-note { align-items: flex-start; flex-direction: column; gap: 25px; }
  .works-grid { align-items: stretch; gap: 6px; }
  .work-card { width: 100%; min-width: 0; }
  .work-card a { width: 100%; height: 100%; }
  .work-card__caption { left: 8px; bottom: 7px; font-size: 8px; letter-spacing: .08em; }
  .work-card--instagram a { gap: 9px; padding: 10px; }
  .work-card--instagram a::before { inset: 7px; }
  .work-card--instagram svg { width: 28px; }
  .work-card--instagram span { font-size: 9px; letter-spacing: .12em; }
  .work-card--instagram small { display: none; }
  .works-more { margin-top: 40px; }
  .works-more__link { width: 190px; padding: 16px 18px; }
  .contact__marquee { margin-bottom: 100px; }
  .contact__inner h2 { font-size: 48px; }
  .contact__services a { grid-template-columns: 1fr auto; min-height: 100px; }
  .contact__services small { grid-column: 1; margin-top: 3px; }
  .contact__services i { grid-column: 2; grid-row: 1 / span 2; }
  .footer-cta { padding-block: 95px; }
  .footer-cta__visual { width: 100%; opacity: 1; }
  .footer-cta__visual img { filter: grayscale(.55) contrast(1.05) brightness(.78); }
  .footer-cta__visual::before { top: -6%; bottom: -6%; left: -18%; width: 102%; background: linear-gradient(90deg, rgba(8,8,8,.97) 0%, rgba(8,8,8,.9) 48%, rgba(8,8,8,.56) 70%, rgba(8,8,8,.16) 88%, transparent 100%); filter: blur(12px); transform: skewX(-7deg) translateZ(0); }
  .footer-cta__visual::after { background: rgba(8,8,8,.08); }
  .footer-cta__content h2 { font-size: 47px; }
  .footer-cta__content > p { max-width: 280px; line-height: 2; }
  .site-footer__main { gap: 58px; padding-block: 70px; }
  .site-logo--footer { width: 96px; }
  .site-footer nav { gap: 16px 25px; font-size: 11px; }
  .site-footer__details { grid-template-columns: 1fr; gap: 35px; }
  .site-footer__details span { margin-bottom: 10px; }
  .site-footer__wordmark { box-sizing: border-box; width: 100vw; max-width: none; padding: 0; margin: 0 auto -2px; font-size: 15.2vw; line-height: .82; letter-spacing: -.075em; }
  .site-footer__bottom { gap: 20px; }
  .service-hero { min-height: 82svh; }
  .service-hero__content { min-height: 82svh; }
  .service-hero h1 { font-size: clamp(62px, 19vw, 88px); }
  .service-page--coating .service-hero h1 { font-size: clamp(58px, 17.5vw, 82px); }
  .service-page--cleaning .service-hero h1 { font-size: clamp(53px, 15.4vw, 72px); }
  .subpage-hero__bottom { align-items: flex-start; flex-direction: column; gap: 28px; margin-top: 45px; }
  .service-hero__lead { align-self: flex-start; margin-top: 0; font-size: 13px; }
  .subpage-hero__bottom > a { gap: 25px; }
  .service-story a { margin-top: 50px; }
  .about-editorial-hero__media { width: 100%; }
  .about-editorial-hero__media::after { background: linear-gradient(90deg, rgba(7,8,8,.92), rgba(7,8,8,.38)), linear-gradient(0deg, rgba(7,8,8,.82), transparent 58%); }
  .about-editorial-hero__content { padding-top: 108px; padding-bottom: 32px; }
  .about-editorial-hero__top p:last-child { display: none; }
  .about-editorial-hero h1 { font-size: clamp(76px, 25vw, 105px); }
  .about-editorial-hero__bottom { align-items: flex-start; flex-direction: column; gap: 28px; margin-top: 52px; }
  .about-editorial-hero__bottom p { font-size: 13px; }
  .about-manifesto h2 { font-size: 44px; }
  .about-manifesto__body { grid-template-columns: 1fr; gap: 42px; margin-top: 75px; }
  .about-manifesto__lead { font-size: 18px; }
  .about-manifesto__body > div > p { font-size: 14px; }
  .about-manifesto__body a { margin-top: 48px; }
  .page-kicker { margin-bottom: 24px; }
  .service-highlights__title { font-size: 38px; }
  .service-highlights__grid { margin-top: 78px; gap: 48px; }
  .service-highlights__grid article { display: block; padding-top: 20px; }
  .service-highlights__grid h3 { margin: 28px 0 16px; font-size: 23px; }
  .service-highlights__grid p { font-size: 13px; }
  .about-beliefs__head .page-kicker { margin-bottom: 46px; }
  .about-beliefs__head h2 { font-size: clamp(58px, 18vw, 76px); line-height: .82; }
  .about-beliefs__head > p:last-child { margin-top: 42px; font-size: 18px; }
  .about-beliefs__rail { margin-top: 70px; }
  .about-beliefs__rail article { min-height: 0; padding: 36px 0; }
  .about-beliefs__rail h3 { margin: 22px 0 13px; font-size: 27px; }
  .about-beliefs__rail p { font-size: 13px; }
  .about-craft { height: 690px; min-height: 0; }
  .about-craft__media::after { background: linear-gradient(90deg, rgba(5,5,5,.87), rgba(5,5,5,.28)), linear-gradient(0deg, rgba(5,5,5,.94), rgba(5,5,5,.2) 76%); }
  .about-craft__content { height: 100%; min-height: 0; }
  .about-craft__panel { top: auto; bottom: 62px; left: 20px; width: calc(100% - 40px); transform: translate3d(0, 24px, 0); }
  .about-craft__panel.is-active { transform: translate3d(0, 0, 0); }
  .about-craft__panel h2 { width: 100%; font-size: 38px; }
  .about-craft__copy { width: 100%; grid-template-columns: 1fr; gap: 20px; margin-top: 48px; }
  .about-craft__copy p { font-size: 13px; }
  .about-craft__index { top: 112px; right: 20px; bottom: auto; width: 140px; }
  .about-store__heading { margin-bottom: 45px; }
  .about-store__heading h2 { margin-top: 34px; font-size: 38px; }
  .about-store__grid { gap: 34px; }
  .about-store__media { aspect-ratio: 16 / 10; }
  .about-store__details > div { grid-template-columns: 29% 1fr; gap: 18px; padding: 19px 0; }
  .about-store__contact { margin-top: 28px; }
  .page-service-links__heading { gap: 24px; margin-bottom: 58px; }
  .page-service-links__heading h2 { font-size: 44px; }
  .page-service-links__list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .page-service-links__list a { min-height: 158px; padding: 22px; }
  .page-service-links__list strong { font-size: 19px; }
  .service-visual-loop { height: clamp(190px, 54vw, 220px); }
  .service-visual-loop__track.is-ready { animation-duration: 34s; }
  .service-visual-loop figure { width: 76vw; height: clamp(190px, 54vw, 220px); }
  .service-process__grid { gap: 58px; }
  .service-story h2 { font-size: 42px; }
  .service-process h2 { font-size: 34px; }
  .service-story h2,
  .about-manifesto h2,
  .about-craft__panel h2,
  .about-store__heading h2,
  .service-highlights__title,
  .service-process h2 { white-space: normal; }
  .service-process li { min-height: 118px; padding: 25px 0; }
  .service-pricing__heading { gap: 35px; margin-bottom: 65px; }
  .service-pricing__heading h2 { font-size: 54px; line-height: .95; }
  .service-pricing__heading > p { font-size: 13px; }
  .service-price-list__head { grid-template-columns: 1fr auto; gap: 15px; }
  .service-price-list article { grid-template-columns: 1fr; min-height: 0; gap: 24px; padding: 29px 0; }
  .service-price-list article h3 { font-size: 21px; }
  .service-price-list article p { padding-right: 0; font-size: 12px; }
  .service-size-prices { width: 100%; gap: 2px; }
  .service-size-prices > div { padding-left: 5px; }
  .service-size-prices dt { font-size: 8px; }
  .service-size-prices dd { margin-top: 4px; font-size: clamp(10px, 3vw, 12px); letter-spacing: -.05em; }
}

@keyframes water-run {
  0% { transform: translate3d(0, -65vh, 0) rotate(9deg); opacity: 0; }
  16% { opacity: .8; }
  70%, 100% { transform: translate3d(12vw, 150vh, 0) rotate(9deg); opacity: 0; }
}

@keyframes coating-sweep {
  0%, 18% { transform: translateX(-48%); opacity: 0; }
  30% { opacity: 1; }
  62%, 100% { transform: translateX(48%); opacity: 0; }
}

@keyframes philosophy-loop {
  to { transform: translate3d(-50%, 0, 0); }
}

@keyframes service-visual-loop {
  to { transform: translate3d(-50%, 0, 0); }
}

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