:root {
  --ink: #11110f;
  --muted-ink: #3f403d;
  --linen: #f4f3ef;
  --paper: #fbfaf7;
  --brand-grey: #adadab;
  --soft-grey: #d8d7d2;
  --line: rgba(17, 17, 15, 0.18);
  --white-line: rgba(255, 255, 255, 0.22);
  --page-pad: clamp(1.25rem, 4vw, 5rem);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

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

::selection {
  color: var(--paper);
  background: var(--ink);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  color: var(--paper);
  background: var(--ink);
  transform: translateY(-150%);
}

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

.scroll-progress {
  position: fixed;
  z-index: 200;
  inset: 0 0 auto;
  height: 2px;
  background: transparent;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--paper);
  transform: scaleX(0);
  transform-origin: left;
}

.site-header {
  position: absolute;
  z-index: 100;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  min-height: 5.5rem;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--page-pad);
  color: white;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  transition: background 250ms ease, color 250ms ease, min-height 250ms ease;
}

.site-header.is-fixed {
  position: fixed;
  min-height: 4.5rem;
  color: var(--ink);
  background: rgba(244, 243, 239, 0.94);
  border-color: var(--line);
  backdrop-filter: blur(16px);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: inherit;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-decoration: none;
  text-transform: uppercase;
}

.wordmark-mark {
  display: flex;
  width: 7rem;
  height: 4.35rem;
  align-items: center;
  justify-content: center;
  flex: none;
}

.wordmark-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: invert(1) drop-shadow(0 0 1px rgba(255, 255, 255, 0.95));
}

.site-header.is-fixed .wordmark-mark img,
.footer-wordmark .wordmark-mark img {
  filter: drop-shadow(0 0 1px rgba(17, 17, 15, 0.7));
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2.5rem);
}

.site-header nav a {
  position: relative;
  font-size: 0.75rem;
  font-weight: 650;
  letter-spacing: 0.11em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-header nav a:not(.header-cta)::after {
  position: absolute;
  bottom: -0.35rem;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

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

.header-cta {
  padding: 0.8rem 1rem;
  color: var(--ink);
  background: var(--paper);
}

.is-fixed .header-cta {
  color: var(--paper);
  background: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  align-items: end;
  overflow: hidden;
  color: white;
  background: #171816;
}

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

.hero-media {
  background-image: url("/assets/images/generated/laundry-hero.webp");
  background-position: center;
  background-size: cover;
  transform: scale(1.06);
  animation: hero-settle 1.8s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(7, 8, 7, 0.9) 0%, rgba(7, 8, 7, 0.6) 38%, rgba(7, 8, 7, 0.12) 72%),
    linear-gradient(0deg, rgba(7, 8, 7, 0.48), transparent 44%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(57rem, 100%);
  padding: 9rem var(--page-pad) clamp(5rem, 10vh, 8rem);
}

.eyebrow {
  margin: 0 0 1.25rem;
  color: var(--muted-ink);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow-light,
.hero-kicker {
  color: rgba(255, 255, 255, 0.66);
}

.hero-kicker,
.hero h1,
.hero-copy,
.hero-actions {
  opacity: 0;
  transform: translateY(24px);
  animation: hero-up 700ms ease forwards;
}

.hero-kicker { animation-delay: 160ms; }
.hero h1 { animation-delay: 280ms; }
.hero-copy { animation-delay: 420ms; }
.hero-actions { animation-delay: 540ms; }

.hero h1,
.section h2,
.services h2,
.contact h2,
.dispatch-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.9;
}

.hero h1 {
  max-width: 12ch;
  font-size: clamp(4rem, 9.5vw, 9.6rem);
}

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

.hero h1 em,
.story-copy h2 em {
  color: var(--brand-grey);
  font-weight: 400;
}

.hero-copy {
  max-width: 35rem;
  margin: 1.6rem 0 2.4rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.button {
  display: inline-flex;
  min-height: 3.5rem;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  padding: 0.9rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 0;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 220ms ease, background 220ms ease, transform 220ms ease;
}

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

.button-light {
  color: var(--ink);
  background: var(--paper);
}

.button-light:hover,
.button-light:focus-visible {
  color: white;
  background: var(--brand-grey);
}

.text-link,
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.4rem 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-underline-offset: 0.4rem;
  text-transform: uppercase;
}

.hero-note {
  position: absolute;
  z-index: 1;
  right: var(--page-pad);
  bottom: 2rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.sector-line {
  display: flex;
  min-height: 5.25rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 var(--page-pad);
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  white-space: nowrap;
}

.sector-line i {
  width: 3px;
  height: 3px;
  flex: 0 0 auto;
  background: var(--brand-grey);
  border-radius: 50%;
}

.section {
  padding-right: var(--page-pad);
  padding-left: var(--page-pad);
}

.brand-story {
  display: grid;
  grid-template-columns: minmax(8rem, 0.35fr) minmax(20rem, 0.85fr) minmax(22rem, 1fr);
  gap: clamp(2rem, 5vw, 6rem);
  align-items: start;
  padding-top: clamp(6rem, 11vw, 10rem);
  padding-bottom: clamp(6rem, 11vw, 10rem);
}

.section-label {
  display: flex;
  gap: 0.7rem;
  align-items: center;
  color: #686965;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-label span {
  color: var(--ink);
}

.section-label-light,
.section-label-light span {
  color: rgba(255, 255, 255, 0.56);
}

.story-copy h2,
.process h2 {
  font-size: clamp(3.25rem, 6vw, 6.8rem);
}

.lead {
  max-width: 37rem;
  margin: 2rem 0 2.2rem;
  color: var(--muted-ink);
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
}

.story-figure {
  position: relative;
  aspect-ratio: 4 / 3;
  align-self: center;
  margin: 0;
  overflow: hidden;
  background: var(--brand-grey);
}

.story-figure::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(17, 17, 15, 0.12);
  content: "";
  pointer-events: none;
}

.story-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.services {
  padding: clamp(6rem, 10vw, 9rem) 0;
  color: var(--paper);
  background: var(--ink);
}

.services-intro,
.process-heading {
  display: grid;
  grid-template-columns: minmax(8rem, 0.35fr) 1.85fr;
  gap: clamp(2rem, 5vw, 6rem);
}

.services h2 {
  max-width: 12ch;
  font-size: clamp(3.25rem, 7vw, 7.4rem);
}

.services-layout {
  display: grid;
  grid-template-columns: minmax(20rem, 0.95fr) minmax(22rem, 1.05fr);
  gap: clamp(3rem, 7vw, 8rem);
  align-items: start;
  margin-top: clamp(4rem, 8vw, 8rem);
}

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

.service-list article {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1.25rem;
  padding: 1.7rem 0;
  border-bottom: 1px solid var(--white-line);
}

.service-list article > span,
.step-number {
  color: var(--brand-grey);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.service-list h3,
.process-steps h3 {
  margin: 0 0 0.55rem;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 400;
  letter-spacing: -0.035em;
}

.service-list p {
  max-width: 31rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
}

.image-window {
  position: relative;
  margin: 0;
  overflow: hidden;
}

.image-window img {
  width: 100%;
  height: calc(100% + 6rem);
  object-fit: cover;
  transform: translateY(var(--parallax-y, -3rem));
  will-change: transform;
}

.service-image {
  height: min(48rem, 70vw);
  min-height: 35rem;
}

.service-image figcaption {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  padding: 0.6rem 0.8rem;
  color: var(--ink);
  background: var(--paper);
  font-size: 0.62rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.process {
  padding-top: clamp(6rem, 11vw, 10rem);
  padding-bottom: clamp(6rem, 11vw, 10rem);
}

.process-steps {
  margin-top: clamp(4rem, 8vw, 7rem);
  margin-left: calc(17.5% + 2rem);
  border-top: 1px solid var(--line);
}

.process-steps article {
  display: grid;
  grid-template-columns: 5rem 1fr;
  gap: 1.25rem;
  padding: 2.2rem 0;
  border-bottom: 1px solid var(--line);
}

.process-steps p {
  max-width: 40rem;
  margin: 0;
  color: #62635f;
}

.dispatch-feature {
  display: grid;
  min-height: 52rem;
  grid-template-columns: 1.25fr 0.75fr;
  color: var(--ink);
  background: var(--soft-grey);
}

.dispatch-media {
  min-height: 45rem;
}

.dispatch-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 6vw, 7rem);
}

.dispatch-copy h2 {
  max-width: 11ch;
  font-size: clamp(3rem, 5.3vw, 6rem);
}

.dispatch-copy > p:not(.eyebrow) {
  max-width: 32rem;
  margin: 2rem 0 2.5rem;
  color: var(--muted-ink);
  font-size: 1.04rem;
}

.dispatch-copy ul {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.dispatch-copy li {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.contact {
  display: grid;
  grid-template-columns: minmax(20rem, 0.78fr) minmax(30rem, 1.22fr);
  gap: clamp(3rem, 8vw, 9rem);
  padding: clamp(6rem, 11vw, 10rem) var(--page-pad);
  color: var(--paper);
  background: var(--ink);
}

.contact-heading {
  position: sticky;
  top: 7rem;
  align-self: start;
}

.contact h2 {
  max-width: 10ch;
  font-size: clamp(4rem, 7.6vw, 8rem);
}

.contact-heading > p:last-child {
  max-width: 30rem;
  margin: 2rem 0 0;
  color: rgba(255, 255, 255, 0.58);
}

.quote-form {
  border-top: 1px solid var(--white-line);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 2rem;
}

.quote-form label:not(.consent):not(.honeypot) {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding-top: 1.35rem;
}

.quote-form label > span:first-child {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 2.75rem;
  padding: 0 0 0.85rem;
  color: var(--paper);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--white-line);
  border-radius: 0;
  outline: 0;
  transition: border-color 180ms ease;
}

.quote-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--brand-grey) 50%),
    linear-gradient(135deg, var(--brand-grey) 50%, transparent 50%);
  background-position: calc(100% - 10px) 48%, calc(100% - 5px) 48%;
  background-repeat: no-repeat;
  background-size: 5px 5px;
}

.quote-form select option {
  color: var(--ink);
}

.quote-form textarea {
  resize: vertical;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: white;
}

.quote-form input[aria-invalid="true"],
.quote-form select[aria-invalid="true"],
.quote-form textarea[aria-invalid="true"] {
  border-color: #f2a6a6;
}

.message-field {
  margin-top: 1rem;
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  align-items: start;
  margin: 1.5rem 0 2rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.75rem;
}

.consent input {
  width: 1rem;
  height: 1rem;
  margin-top: 0.18rem;
  accent-color: var(--brand-grey);
}

.consent a {
  text-underline-offset: 0.2rem;
}

.form-footer {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.form-status {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
}

.form-status.is-error {
  color: #f2b8b8;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 3rem var(--page-pad);
  background: var(--brand-grey);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.site-footer p,
.footer-links a {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.company-line {
  grid-column: 1 / -1;
  padding-top: 1.5rem;
  color: rgba(17, 17, 15, 0.64);
  border-top: 1px solid rgba(17, 17, 15, 0.2);
  font-size: 0.62rem !important;
}

.legal-page {
  min-height: 100vh;
  padding: 8rem var(--page-pad);
  background: var(--paper);
}

.legal-page article {
  max-width: 50rem;
  margin: 0 auto;
}

.legal-page h1 {
  margin: 1rem 0 3rem;
  font-family: var(--serif);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.legal-page h2 {
  margin: 3rem 0 0.8rem;
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 400;
}

.legal-page p,
.legal-page li {
  color: var(--muted-ink);
}

.legal-back {
  display: inline-block;
  margin-top: 3rem;
}

.reveal {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes hero-up {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes hero-settle {
  to { transform: scale(1); }
}

@media (max-width: 980px) {
  .brand-story {
    grid-template-columns: 9rem 1fr;
  }

  .story-figure {
    grid-column: 2;
  }

  .services-layout,
  .dispatch-feature,
  .contact {
    grid-template-columns: 1fr;
  }

  .service-image {
    height: 42rem;
  }

  .dispatch-feature {
    min-height: auto;
  }

  .dispatch-media {
    min-height: 42rem;
  }

  .dispatch-copy {
    padding: 5rem var(--page-pad);
  }

  .contact-heading {
    position: static;
  }
}

@media (max-width: 720px) {
  :root {
    --page-pad: 1.2rem;
  }

  .site-header {
    min-height: 4.5rem;
  }

  .wordmark > span:last-child,
  .site-header nav > a:not(.header-cta) {
    display: none;
  }

  .site-header nav {
    gap: 0;
  }

  .header-cta {
    min-height: 2.75rem;
    padding: 0.7rem 0.8rem;
    font-size: 0.63rem !important;
  }

  .hero {
    min-height: 47rem;
  }

  .hero-media {
    background-position: 64% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(7, 8, 7, 0.86), rgba(7, 8, 7, 0.35)),
      linear-gradient(0deg, rgba(7, 8, 7, 0.75), rgba(7, 8, 7, 0.05) 65%);
  }

  .hero-content {
    padding-bottom: 4.5rem;
  }

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

  .hero-kicker {
    max-width: 30ch;
    letter-spacing: 0.16em;
    line-height: 1.5;
  }

  .services h2,
  .contact h2 {
    max-width: 100%;
    font-size: clamp(2.75rem, 12vw, 3.1rem);
    line-height: 0.96;
  }

  .contact-heading > p:last-child {
    max-width: 32ch;
  }

  .service-list article p {
    max-width: 27ch;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
  }

  .hero-note {
    display: none;
  }

  .sector-line {
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .sector-line::-webkit-scrollbar {
    display: none;
  }

  .brand-story,
  .services-intro,
  .process-heading {
    grid-template-columns: 1fr;
  }

  .brand-story {
    gap: 2.5rem;
  }

  .story-figure {
    grid-column: 1;
  }

  .story-figure {
    aspect-ratio: 4 / 3;
  }

  .services-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .service-image,
  .dispatch-media {
    min-height: 30rem;
    height: 70vh;
  }

  .process-steps {
    margin-left: 0;
  }

  .process-steps article {
    grid-template-columns: 3rem 1fr;
  }

  .dispatch-copy {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }

  .contact {
    gap: 4rem;
  }

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

  .form-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer {
    gap: 1.3rem;
  }

  .company-line {
    grid-column: 1;
  }
}

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

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

  .reveal,
  .hero-kicker,
  .hero h1,
  .hero-copy,
  .hero-actions {
    opacity: 1;
    transform: none;
  }

  .image-window img {
    transform: none;
  }
}
