:root {
  --paper: #fdfdfe;
  --paper-blue: #eef7fb;
  --ink: #001023;
  --ink-soft: #294760;
  --route: #0038d6;
  --route-dark: #002ba8;
  --aqua: #45cbe8;
  --aqua-pale: #dff8fd;
  --line: #cfdee8;
  --shadow: 0 24px 54px rgba(11, 52, 89, 0.16);
  --display: "Archivo Black", sans-serif;
  --body: "Manrope", sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

/* Author rules like `.form-row { display: grid }` otherwise beat the UA
   `[hidden]` rule regardless of specificity, since normal author styles
   always win over normal UA styles in the cascade. */
[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

img,
video {
  display: block;
  max-width: 100%;
}

::selection {
  color: white;
  background: var(--route);
}

:focus-visible {
  outline: 3px solid var(--aqua);
  outline-offset: 4px;
}

a {
  color: inherit;
  text-decoration-thickness: 0.1em;
  text-underline-offset: 0.22em;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.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;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  color: white;
  background: var(--ink);
  transform: translateY(-150%);
  transition: transform 180ms var(--ease-out);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 5.25rem;
  padding: 0.65rem clamp(1rem, 4vw, 4rem);
  background: rgba(253, 253, 254, 0.94);
  border-bottom: 1px solid rgba(0, 16, 35, 0.1);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  width: fit-content;
  text-decoration: none;
}

.brand-logo {
  width: 3rem;
  height: 3rem;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0, 56, 214, 0.16));
}

.brand-name {
  font-family: var(--display);
  font-size: clamp(1rem, 1.5vw, 1.3rem);
  letter-spacing: -0.035em;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(1.3rem, 3vw, 2.8rem);
}

.site-nav a {
  position: relative;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -0.35rem;
  left: 0;
  height: 2px;
  background: var(--route);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 240ms var(--ease-out);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button,
.route-destination {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.78rem 1.25rem;
  color: white;
  background: var(--route);
  border: 0;
  border-radius: 14px;
  box-shadow: 0 10px 22px rgba(0, 56, 214, 0.22);
  font-weight: 800;
  text-decoration: none;
  transition:
    transform 180ms var(--ease-out),
    box-shadow 180ms var(--ease-out),
    background 180ms ease;
}

.button:hover,
.route-destination:hover {
  background: var(--route-dark);
  box-shadow: 0 15px 28px rgba(0, 43, 168, 0.25);
  transform: translateY(-2px);
}

.button:active,
.route-destination:active {
  box-shadow: 0 5px 12px rgba(0, 43, 168, 0.2);
  transform: translateY(1px) scale(0.985);
}

.button--small {
  min-height: 2.8rem;
  padding-inline: 1.05rem;
  font-size: 0.86rem;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(15rem, 0.82fr) minmax(25rem, 1.35fr) minmax(15rem, 0.75fr);
  align-items: center;
  width: 100%;
  height: max(100svh, 58rem);
  min-height: 58rem;
  padding: 7.5rem clamp(1.25rem, 4vw, 4.5rem) 4.5rem;
  overflow: hidden;
  isolation: isolate;
}

.hero-copy {
  z-index: 5;
  align-self: center;
  max-width: 29rem;
}

.hero h1 {
  max-width: 9ch;
  margin: 0 0 1.5rem;
  font-family: var(--display);
  font-size: clamp(3.7rem, 6.6vw, 6rem);
  line-height: 0.97;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.hero-copy p {
  max-width: 34rem;
  margin: 0 0 1.25rem;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.35vw, 1.15rem);
}

.text-link {
  color: var(--route);
  font-weight: 800;
}

.text-link span {
  display: inline-block;
  transition: transform 180ms var(--ease-out);
}

.text-link:hover span {
  transform: translateX(0.3rem);
}

.washer-portal {
  position: relative;
  z-index: 3;
  grid-column: 2;
  justify-self: center;
  width: min(42vw, 40rem);
  aspect-ratio: 1;
  filter: drop-shadow(0 28px 34px rgba(13, 52, 78, 0.19));
}

.portal-video {
  position: absolute;
  inset: 8.4%;
  width: 83.2%;
  height: 83.2%;
  object-fit: cover;
  object-position: center 45%;
  background: #dcebf1;
  border-radius: 50%;
}

.portal-ring {
  position: absolute;
  z-index: 2;
  inset: 0;
  border: clamp(1.35rem, 3vw, 2.6rem) solid #e9eff2;
  border-top-color: #ffffff;
  border-right-color: #b8c7cf;
  border-bottom-color: #7e939f;
  border-left-color: #d9e3e8;
  border-radius: 50%;
  box-shadow:
    inset 0 0 0 5px rgba(255, 255, 255, 0.86),
    inset 0 0 24px rgba(4, 50, 84, 0.2),
    0 0 0 8px rgba(69, 203, 232, 0.18);
  pointer-events: none;
}

.portal-ring-image {
  position: absolute;
  z-index: 3;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
}

.portal-ring::after {
  content: "";
  position: absolute;
  inset: 5%;
  border: 3px solid rgba(69, 203, 232, 0.42);
  border-radius: 50%;
}

.portal-status {
  position: absolute;
  z-index: 4;
  right: 7%;
  bottom: 10%;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.8rem;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(0, 16, 35, 0.14);
  font-size: 0.76rem;
  font-weight: 800;
  cursor: pointer;
}

.portal-status > span:first-child {
  width: 0.55rem;
  height: 0.55rem;
  background: #19a66a;
  border-radius: 50%;
}

.route-line {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.route-line path {
  fill: none;
  stroke: var(--route);
  stroke-width: 6px;
  vector-effect: non-scaling-stroke;
}

.route-stops {
  position: absolute;
  z-index: 6;
  inset: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  pointer-events: none;
}

.route-stop {
  position: absolute;
  pointer-events: auto;
}

.route-stop :is(button, a) {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 0.65rem;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transform: translateY(-50%);
}

.route-stop :is(button, a) > span {
  display: grid;
  place-items: center;
  flex: 0 0 var(--route-stop-dot-size, 3.35rem);
  width: var(--route-stop-dot-size, 3.35rem);
  height: var(--route-stop-dot-size, 3.35rem);
  margin-left: calc(var(--route-stop-dot-size, 3.35rem) / -2);
  color: var(--route);
  background: white;
  border: 4px solid var(--route);
  border-radius: 50%;
  box-shadow: 0 7px 18px rgba(0, 56, 214, 0.16);
  font-size: 0.72rem;
  font-weight: 800;
  transition:
    color 180ms var(--ease-out),
    background 180ms var(--ease-out),
    transform 180ms var(--ease-out);
}

.route-stop :is(button, a) b {
  max-width: 10rem;
  font-size: clamp(0.72rem, 1vw, 0.92rem);
  line-height: 1.2;
}

/* The icon is the route marker; its service name always reads outward to the right. */
.route-stop :is(button, a) > span { order: 0; }
.route-stop :is(button, a) b { order: 1; }

.route-stop :is(button, a):hover > span,
.route-stop :is(button, a):focus-visible > span,
.route-stop :is(button, a).is-active > span {
  color: white;
  background: var(--route);
  transform: scale(1.08);
}

.route-stop { transform: none; }

/* "Dry only" reads its label underneath the icon instead of to the right. Its
   circle still needs to land dead-center on the route point, so it's shifted
   up by half its own height (not half the icon+label stack) and centered
   horizontally on the container instead of the row layout's margin trick. */
.route-stop--5 :is(button, a) { flex-direction: column; gap: 0.35rem; transform: translate(-50%, calc(var(--route-stop-dot-size, 3.35rem) / -2)); }
.route-stop--5 :is(button, a) > span { margin-left: 0; }
.route-stop--5 :is(button, a) b { max-width: 6.5rem; text-align: center; white-space: normal; }

.route-stop :is(button, a) > span svg,
.destination-icon svg {
  width: 1.55rem;
  height: 1.55rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.route-destination {
  position: absolute;
  z-index: 7;
  bottom: 16%;
  left: 14%;
  gap: 0.65rem;
  min-width: 0;
  padding: 0;
  color: var(--ink);
  background: transparent;
  box-shadow: none;
  font-size: clamp(0.82rem, 1vw, 1rem);
}

.destination-icon {
  display: grid;
  place-items: center;
  width: 4.25rem;
  height: 4.25rem;
  color: white;
  background: var(--route);
  border-radius: 50%;
  box-shadow: 0 10px 22px rgba(0, 56, 214, 0.22);
}

.route-destination:hover,
.route-destination:focus-visible {
  color: var(--route);
  background: transparent;
  box-shadow: none;
}

.route-destination:hover .destination-icon { background: var(--route-dark); }

.home2-hero {
  display: grid;
  grid-template-columns: minmax(16rem, 0.82fr) minmax(22rem, 1fr) minmax(17rem, 0.7fr);
  gap: clamp(1.5rem, 3vw, 4rem);
  align-items: center;
  min-height: min(100svh, 56rem);
  padding: 8rem clamp(1.25rem, 5vw, 5.5rem) 4rem;
  overflow: hidden;
}

.home2-copy { max-width: 30rem; }
.home2-copy h1 { margin: 0 0 1.5rem; font-family: var(--display); font-size: clamp(3.5rem, 5.7vw, 5.7rem); line-height: 0.97; letter-spacing: -0.04em; text-wrap: balance; }
.home2-copy p { margin: 0 0 1.75rem; color: var(--ink-soft); font-size: clamp(1rem, 1.3vw, 1.12rem); }
.home2-copy .button { gap: 0.6rem; }
.home2-machine { position: relative; display: grid; place-items: center; }
.home2-machine::before { content: ""; position: absolute; width: 125%; aspect-ratio: 1; border: 5px solid var(--aqua-pale); border-radius: 50%; }
.home2-machine .washer-portal { width: min(39vw, 33rem); }

.home2-services { position: relative; display: grid; align-self: stretch; align-content: center; margin: 0; box-shadow: inset 0 4px 0 var(--route); }
.home2-services::before { content: ""; position: absolute; top: 1.8rem; bottom: 1.8rem; left: 1.15rem; width: 3px; background: var(--aqua); }
.home2-services p { margin: 1rem 0 0.4rem; color: var(--route); font-size: 0.76rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.home2-services a { position: relative; z-index: 1; display: grid; grid-template-columns: 2.35rem minmax(0, 1fr) auto; gap: 0.7rem; align-items: center; min-height: 3.55rem; color: var(--ink); border-bottom: 1px solid var(--line); font-size: clamp(0.78rem, 1vw, 0.95rem); font-weight: 800; text-decoration: none; transition: color 180ms var(--ease-out), transform 180ms var(--ease-out); }
.home2-services a span { display: grid; place-items: center; width: 2.3rem; height: 2.3rem; color: var(--route); background: var(--paper); border: 3px solid var(--route); border-radius: 50%; font-size: 0.61rem; }
.home2-services a b { color: var(--route); font-size: 1.15rem; transition: transform 180ms var(--ease-out); }
.home2-services a:hover, .home2-services a:focus-visible { color: var(--route); transform: translateX(0.35rem); }
.home2-services a:hover b, .home2-services a:focus-visible b { transform: translateX(0.25rem); }

.home2-intro { display: grid; grid-template-columns: minmax(18rem, 1fr) auto; gap: 3rem; align-items: end; background: var(--paper-blue); }
.home2-intro h2 { max-width: 13ch; margin: 0; font-family: var(--display); font-size: clamp(2.5rem, 4.7vw, 5rem); line-height: 1; letter-spacing: -0.04em; text-wrap: balance; }
.home2-intro p { max-width: 54ch; margin: 1.3rem 0 0; color: var(--ink-soft); }
.home2-intro .text-link { margin-bottom: 0.3rem; white-space: nowrap; }

.wash-trace {
  position: absolute;
  z-index: -1;
  width: 21rem;
  aspect-ratio: 0.76;
  border: 2px solid rgba(69, 203, 232, 0.34);
  border-radius: 1.35rem;
  pointer-events: none;
}

.wash-trace::before,
.wash-trace::after {
  content: "";
  position: absolute;
  border: 2px solid rgba(69, 203, 232, 0.24);
}

.wash-trace::before {
  inset: 26% 14% 12%;
  border-radius: 50%;
}

.wash-trace::after {
  top: 9%;
  left: 13%;
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 50%;
  box-shadow: 2rem 0 0 -2px var(--paper), 2rem 0 0 0 rgba(69, 203, 232, 0.24), 4rem 0 0 -2px var(--paper), 4rem 0 0 0 rgba(69, 203, 232, 0.24);
}

.wash-trace--one { bottom: -9rem; left: -11rem; }
.wash-trace--two { top: 4.5rem; right: -15rem; width: 27rem; }

.preview-strip {
  display: grid;
  place-items: center;
  min-height: 15rem;
  padding: 4rem 1.25rem;
  color: var(--ink);
  background: var(--paper-blue);
  border-top: 1px solid var(--line);
}

.preview-strip p {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
  text-align: center;
}

.location-line,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1rem;
  color: var(--route);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.location-line span {
  width: 0.62rem;
  height: 0.62rem;
  background: var(--aqua);
  border: 2px solid white;
  border-radius: 50%;
  box-shadow: 0 0 0 2px var(--route);
}

.section-shell {
  padding: clamp(5rem, 9vw, 8rem) clamp(1.25rem, 6vw, 6.5rem);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.55fr);
  gap: 2rem 5rem;
  align-items: end;
  max-width: 80rem;
  margin: 0 auto clamp(3rem, 5vw, 5rem);
}

.section-heading .section-kicker { grid-column: 1 / -1; margin-bottom: -1rem; }
.section-heading h2,
.about-copy h1,
.spin-copy h2,
.contact-intro h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.7rem, 5.4vw, 5.7rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.section-heading > p:last-child,
.section-heading--split > p,
.about-copy > p,
.contact-intro > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.04rem;
}

.services {
  background: var(--paper-blue);
  border-block: 1px solid var(--line);
}

.service-board {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  border-top: 3px solid var(--route);
}


.spin-story {
  position: relative;
  display: grid;
  align-items: end;
  min-height: min(82rem, 82svh);
  overflow: hidden;
  color: white;
  background: #04152b;
  isolation: isolate;
}

.spin-video,
.spin-scrim { position: absolute; inset: 0; width: 100%; height: 100%; }
.spin-video { z-index: -2; object-fit: cover; object-position: center; }
.spin-scrim { z-index: -1; background: linear-gradient(90deg, rgba(0, 16, 35, 0.88) 0%, rgba(0, 16, 35, 0.52) 46%, rgba(0, 16, 35, 0.16) 100%); }
.spin-copy { max-width: 47rem; padding: clamp(4rem, 8vw, 8rem) clamp(1.25rem, 7vw, 7rem); }
.spin-copy h2 { font-size: clamp(3.3rem, 7vw, 7.5rem); }
.spin-copy > p:not(.section-kicker) { max-width: 35rem; margin: 1.5rem 0 2rem; font-size: 1.1rem; }
.section-kicker--light { color: var(--aqua); }
.button--light { color: var(--route); background: white; box-shadow: none; }
.button--light:hover { color: white; }
.video-toggle {
  position: absolute;
  right: 1.2rem;
  bottom: 1.2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 2.8rem;
  padding: 0.65rem 0.85rem;
  color: white;
  background: rgba(0, 16, 35, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 10px;
  font-size: 0.76rem;
  font-weight: 700;
}

.about-intro {
  display: grid;
  grid-template-columns: minmax(20rem, 1fr) minmax(16rem, 0.6fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  max-width: 80rem;
  margin: 0 auto;
}
.about-intro-copy { display: grid; gap: 2rem; }
.about-intro-image { width: 100%; height: clamp(14rem, 26vw, 20rem); object-fit: cover; border-radius: 18px; box-shadow: var(--shadow); }
.about-copy { max-width: 40rem; }
.about-copy .about-lead { margin: 1.75rem 0 1rem; color: var(--ink); font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 700; line-height: 1.4; }
.about-copy > p:last-of-type { margin-bottom: 2.5rem; }
.care-points { display: grid; grid-template-columns: repeat(3, 1fr); margin: 0; border-block: 1px solid var(--line); }
.care-points div { padding: 1.2rem 0.8rem; border-right: 1px solid var(--line); }
.care-points div:last-child { border-right: 0; }
.care-points dt { color: var(--route); font-family: var(--display); font-size: 1.6rem; }
.care-points dd { margin: 0; color: var(--ink-soft); font-size: 0.75rem; }

.about-owner {
  display: grid;
  grid-template-columns: 9rem minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
  max-width: 62rem;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 3.5rem);
  background: var(--paper-blue);
  border-radius: 18px;
}
.owner-avatar {
  display: grid;
  place-items: center;
  width: 9rem;
  height: 9rem;
  color: white;
  background: linear-gradient(155deg, var(--route), var(--aqua));
  border-radius: 50%;
  box-shadow: var(--shadow);
}
.owner-avatar span { font-family: var(--display); font-size: 3rem; }
.owner-message blockquote {
  margin: 0.6rem 0 1.1rem;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.owner-byline { display: flex; align-items: baseline; gap: 0.6rem; margin: 0; }
.owner-byline b { font-size: 0.95rem; }
.owner-byline span { color: var(--ink-soft); font-size: 0.85rem; }

.about-location {
  display: grid;
  grid-template-columns: minmax(18rem, 0.8fr) minmax(20rem, 1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  max-width: 88rem;
  margin: 0 auto;
}
.location-lines { display: grid; gap: 1rem; margin: 1.4rem 0 1.6rem; padding: 0; }
.location-lines div { padding-bottom: 0.9rem; border-bottom: 1px solid var(--line); }
.location-lines dt { color: var(--route); font-size: 0.72rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.location-lines dd { margin: 0.3rem 0 0; font-weight: 700; }
.location-map { overflow: hidden; aspect-ratio: 4 / 3; border-radius: 16px; box-shadow: var(--shadow); }
.location-map iframe { display: block; width: 100%; height: 100%; border: 0; }

.gallery { background: var(--paper-blue); }
.gallery--about { background: var(--paper-blue); border-block: 1px solid var(--line); }
.section-heading--split .section-kicker { margin-bottom: 1rem; }
.gallery-grid { display: grid; grid-template-columns: 1.4fr 0.8fr 0.9fr; grid-template-rows: 18rem 18rem; gap: 1rem; max-width: 88rem; margin: 0 auto; }
.gallery-item { position: relative; margin: 0; overflow: hidden; background: #d8e7ee; }
.gallery-item--wide { grid-row: 1 / 3; }
.gallery-item--tall { grid-row: 1 / 3; grid-column: 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms var(--ease-out); }
.gallery-item:hover img { transform: scale(1.035); }
.gallery-item figcaption { position: absolute; right: 0.75rem; bottom: 0.75rem; left: 0.75rem; padding: 0.65rem 0.8rem; color: white; background: rgba(0, 16, 35, 0.8); font-size: 0.75rem; font-weight: 800; }

.contact {
  display: grid;
  grid-template-columns: minmax(22rem, 0.85fr) minmax(28rem, 1fr);
  gap: clamp(3rem, 8vw, 8rem);
  background: var(--paper-blue);
  border-block: 1px solid var(--line);
}
.contact-intro { max-width: 37rem; }
.contact-intro > p { color: var(--ink-soft); margin: 1.5rem 0 2.5rem; }
.contact-lines { border-top: 1px solid var(--line); }
.contact-lines a,
.contact-lines div { display: grid; grid-template-columns: minmax(4rem, 6.5rem) 1fr; gap: 1rem; padding: 1rem 0; color: var(--ink); border-bottom: 1px solid var(--line); text-decoration: none; }
.contact-lines span { display: inline-flex; align-items: center; gap: 0.35rem; color: var(--route); font-size: 0.72rem; font-weight: 800; text-transform: uppercase; }
.contact-lines b { overflow-wrap: anywhere; }
.contact-form { align-self: start; padding: clamp(1.5rem, 4vw, 3rem); color: var(--ink); background: white; border-radius: 18px; box-shadow: var(--shadow); }
.form-row { display: grid; gap: 0.45rem; margin-bottom: 1.15rem; }
.form-split { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-row label { font-size: 0.76rem; font-weight: 800; }
.form-row label span { color: var(--route); }
.contact-expectation { margin: -0.5rem 0 1.25rem; color: var(--ink-soft); font-size: 0.82rem; }
.form-row input,
.form-row select,
.form-row textarea { width: 100%; min-height: 3.2rem; padding: 0.7rem 0.85rem; color: var(--ink); background: #f4f9fc; border: 1px solid #aebfca; border-radius: 7px; }
.form-row textarea { resize: vertical; }
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus { border-color: var(--route); box-shadow: 0 0 0 3px rgba(69, 203, 232, 0.35); outline: 0; }
.honey { position: absolute; left: -9999px; }
.form-submit { width: 100%; justify-content: space-between; }
.form-submit:disabled { cursor: wait; opacity: 0.68; }
.form-status { min-height: 1.5rem; margin: 0.9rem 0 0; font-size: 0.82rem; font-weight: 700; }
.form-status.is-error { color: #a21b21; }
.form-status.is-success { color: #08734b; }

.site-footer { display: grid; grid-template-columns: 1fr auto; gap: 1rem 3rem; align-items: center; padding: 3.5rem clamp(1.25rem, 6vw, 6.5rem); color: white; background: var(--ink); }
.brand--footer { color: white; }
.site-footer p { margin: 0; color: #bcd0df; }
.site-footer nav { display: flex; grid-row: 1 / 3; grid-column: 2; gap: 1.4rem; }
.site-footer nav a { font-size: 0.82rem; font-weight: 700; }
.footer-contact { grid-column: 1 / -1; display: flex; flex-wrap: wrap; align-items: flex-start; gap: 0.4rem 1.4rem; margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(255, 255, 255, 0.14); font-size: 0.82rem; color: #bcd0df; }
.footer-address { line-height: 1.6; }
.footer-contact a { display: inline-flex; align-items: center; gap: 0.4rem; font-weight: 700; color: white; }
.social-icon { flex-shrink: 0; }
.site-footer small { grid-column: 1 / -1; margin-top: 2rem; color: #89a4b6; }

.home-intro {
  display: grid;
  grid-template-columns: minmax(20rem, 0.9fr) minmax(25rem, 1fr);
  gap: clamp(3rem, 9vw, 9rem);
  align-items: start;
  max-width: 88rem;
  margin: 0 auto;
}

.home-intro h2,
.page-close h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.5rem, 4.7vw, 5rem);
  line-height: 1;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.home-intro > div > p { max-width: 39rem; margin: 1.4rem 0 0; color: var(--ink-soft); font-size: 1.05rem; }

.page-route-list { border-top: 3px solid var(--route); }
.page-route-list a {
  display: grid;
  grid-template-columns: minmax(9rem, 1fr) minmax(8rem, 0.8fr) 2rem;
  gap: 1rem;
  align-items: center;
  padding: 1.2rem 0.45rem;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition: background 180ms ease;
}
.page-route-list a:hover,
.page-route-list a:focus-visible { background: var(--paper-blue); }
.page-route-list a > span:first-child { color: var(--ink-soft); font-size: 0.78rem; }
.page-route-list b { font-family: var(--display); font-size: 1.2rem; }
.page-route-list a > span:last-child { color: var(--route); font-size: 1.35rem; font-weight: 800; }
.page-route-list a:hover > span:last-child { transform: translateX(0.25rem); }

.gallery--page { background: var(--paper); }

.page-close { display: grid; justify-items: start; gap: 1.2rem; padding: clamp(4.5rem, 8vw, 7rem) clamp(1.25rem, 7vw, 7rem); color: white; background: var(--route); }
.page-close p { margin: -0.3rem 0 0; color: #dce8ff; font-size: 1.05rem; }
.page-close .button { margin-top: 0.4rem; }

.page-intro {
  display: grid;
  grid-template-columns: minmax(20rem, 1fr) minmax(16rem, 0.6fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  max-width: 80rem;
  margin: 0 auto;
  padding: clamp(6rem, 10vw, 8rem) clamp(1.25rem, 6vw, 6.5rem) clamp(3rem, 6vw, 4.5rem);
}
.page-intro h1 { margin: 0; font-family: var(--display); font-size: clamp(2.4rem, 4.2vw, 3.4rem); line-height: 1.02; letter-spacing: -0.03em; text-wrap: balance; }
.page-intro > div:first-child > p { max-width: 32rem; margin: 1rem 0 0; color: var(--ink-soft); font-size: 1.05rem; }
.page-intro-image { width: 100%; height: clamp(12rem, 22vw, 16rem); object-fit: cover; border-radius: 18px; box-shadow: var(--shadow); }

.service-item { border-bottom: 1px solid #b9cbd8; }
.service-summary {
  display: grid;
  grid-template-columns: 3.25rem minmax(0, 1fr) 2.25rem;
  gap: 1rem;
  align-items: center;
  width: 100%;
  padding: 1.45rem 0.5rem;
  color: var(--ink);
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  transition: background 180ms ease;
}
.service-summary:hover,
.service-summary:focus-visible,
.service-item.is-open .service-summary { background: white; }
.service-glyph {
  display: grid;
  place-items: center;
  width: 3.25rem;
  height: 3.25rem;
  color: var(--route);
  background: white;
  border: 3px solid var(--route);
  border-radius: 50%;
  transition: color 180ms var(--ease-out), background 180ms var(--ease-out);
}
.service-item.is-open .service-glyph { color: white; background: var(--route); }
.service-glyph svg { width: 1.5rem; height: 1.5rem; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; }
.service-copy { display: grid; grid-template-columns: minmax(10rem, 0.45fr) minmax(14rem, 1fr); align-items: center; gap: 1rem 3rem; }
.service-copy b { font-family: var(--display); font-size: clamp(1.15rem, 2.1vw, 1.75rem); line-height: 1.1; }
.service-copy small { color: var(--ink-soft); font-size: 0.9rem; }
.service-chevron { display: grid; place-items: center; color: var(--route); justify-self: end; transition: transform 220ms var(--ease-out); }
.service-chevron svg { width: 1.35rem; height: 1.35rem; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 2; }
.service-item.is-open .service-chevron { transform: rotate(180deg); }

.service-detail {
  display: grid;
  grid-template-columns: minmax(12rem, 0.4fr) minmax(16rem, 1fr);
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: center;
  padding: 0 0.5rem 2rem;
}
.service-detail img { width: 100%; height: 100%; max-height: 12rem; object-fit: cover; border-radius: 14px; box-shadow: var(--shadow); }
.service-detail-copy p { margin: 0 0 1.1rem; color: var(--ink-soft); font-size: 1rem; }

@media (max-width: 900px) {
  .home2-hero { grid-template-columns: minmax(16rem, 0.85fr) minmax(20rem, 1fr); min-height: auto; padding-bottom: 4rem; }
  .home2-services { grid-column: 1 / -1; grid-template-columns: 1fr 1fr; column-gap: 1.5rem; align-self: auto; }
  .home2-services::before { display: none; }
  .home2-services p { grid-column: 1 / -1; }
  .home2-intro { grid-template-columns: 1fr; }
  .section-heading { grid-template-columns: 1fr; }
  .section-heading .section-kicker { margin-bottom: 0; }
  .contact { grid-template-columns: 1fr; }
  .home-intro,
  .about-location { grid-template-columns: 1fr; }
  .about-owner { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .owner-byline { justify-content: center; }
  .gallery-grid { grid-template-columns: 1.15fr 0.85fr; grid-template-rows: 18rem 18rem 18rem; }
  .gallery-item--wide { grid-row: 1 / 3; }
  .gallery-item--tall { grid-row: 1 / 3; grid-column: 2; }
  .gallery-item:not(.gallery-item--wide):not(.gallery-item--tall) { grid-row: 3; }
  .site-footer { grid-template-columns: 1fr; }
  .site-footer nav { grid-row: auto; grid-column: auto; }
}

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: minmax(16rem, 0.75fr) minmax(24rem, 1.25fr);
    grid-template-rows: auto auto auto;
    align-items: start;
    height: auto;
    min-height: 0;
    padding-bottom: 4rem;
  }

  .hero-copy { grid-row: 1 / 4; align-self: center; }
  .washer-portal { grid-column: 2; grid-row: 1; width: min(53vw, 35rem); }
  .route-line { display: none; }

  .route-stops {
    position: relative;
    grid-column: 2;
    grid-row: 2;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    margin-top: 1.25rem;
    border-top: 3px solid var(--route);
    pointer-events: auto;
  }

  .route-stop { position: static; border-bottom: 1px solid var(--line); }
  .route-stop:nth-child(odd) { border-right: 1px solid var(--line); }
  .route-stop :is(button, a) { --route-stop-dot-size: 2.65rem; flex-direction: row; width: 100%; min-height: 4.5rem; padding: 0.6rem 0.45rem; gap: 0.5rem; white-space: normal; transform: none; }
  .route-stop :is(button, a) > span { margin-left: 0; border-width: 3px; }
  .route-stop :is(button, a) b { max-width: none; font-size: 0.72rem; text-align: left; }

  .route-destination {
    display: none;
  }
}

@media (max-width: 760px) {
  .home2-hero { display: flex; flex-direction: column; align-items: stretch; gap: 2rem; padding: 7.2rem 1.1rem 4rem; }
  .home2-copy { max-width: none; }
  .home2-copy h1 { font-size: clamp(3.1rem, 14vw, 4.2rem); }
  .home2-machine .washer-portal { width: min(92vw, 31rem); }
  .home2-services { display: block; }
  .home2-services a { min-height: 3.75rem; }
  .home2-intro .text-link { white-space: normal; }
  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 4.6rem;
    padding-inline: 1rem;
  }

  .brand-logo { width: 2.65rem; height: 2.65rem; }

  .menu-toggle {
    display: grid;
    gap: 4px;
    width: 2.8rem;
    height: 2.8rem;
    padding: 0.72rem;
    background: white;
    border: 1px solid var(--line);
    border-radius: 12px;
  }

  .menu-toggle > span:not(.sr-only) {
    display: block;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 0.65rem;
    background: white;
    border-radius: 14px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 0.85rem 0.75rem; }

  .hero {
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: auto;
    padding: 7.2rem 1.1rem 4rem;
    overflow: clip;
  }

  .hero-copy { max-width: none; }
  .hero h1 { font-size: clamp(3.1rem, 15vw, 4.2rem); }

  .washer-portal {
    order: 2;
    width: min(94vw, 31rem);
    margin-block: 2rem 1.6rem;
  }

  .route-line { display: none; }

  .route-stops {
    position: relative;
    order: 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    width: 100%;
    margin-top: 0.5rem;
    border-top: 3px solid var(--route);
    pointer-events: auto;
  }

  .route-stop {
    position: static;
    border-bottom: 1px solid var(--line);
  }

  .route-stop:nth-child(odd) { border-right: 1px solid var(--line); }

  .route-stop :is(button, a) {
    flex-direction: row;
    width: 100%;
    min-height: 5.3rem;
    padding: 0.75rem 0.35rem;
    white-space: normal;
    transform: none;
  }

  .route-stop :is(button, a) > span {
    flex: 0 0 auto;
    width: 2.65rem;
    height: 2.65rem;
    margin-left: 0;
    border-width: 3px;
    font-size: 0.6rem;
  }

  .route-stop :is(button, a) b { max-width: none; font-size: 0.75rem; text-align: left; }

  .route-destination {
    display: inline-flex;
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    order: 4;
    width: 100%;
    margin-top: 1.2rem;
    transform: none;
  }

  .route-destination:hover { transform: translateY(-2px); }
  .wash-trace--two { display: none; }

  .section-shell { padding-inline: 1.1rem; }
  .section-heading h2, .about-copy h1, .contact-intro h1 { font-size: clamp(2.6rem, 13vw, 4rem); }
  .service-summary { grid-template-columns: 2.6rem minmax(0, 1fr) 1.6rem; gap: 0.5rem; padding-block: 1.2rem; }
  .service-copy { display: block; }
  .service-copy small { display: block; margin-top: 0.35rem; }
  .service-glyph { width: 2.7rem; height: 2.7rem; }
  .service-detail { grid-template-columns: 1fr; }
  .service-detail img { max-height: 10rem; }
  .page-intro { grid-template-columns: 1fr; }
  .page-intro-image { order: -1; }
  .about-intro { grid-template-columns: 1fr; }
  .about-intro-image { order: -1; }
  .spin-story { min-height: 42rem; }
  .spin-video { display: none; }
  .spin-scrim { background: linear-gradient(90deg, rgba(0, 16, 35, 0.86), rgba(0, 16, 35, 0.45)), url("assets/images/washer-poster.jpg") center / cover; }
  .spin-copy { align-self: end; padding: 4rem 1.1rem; }
  .video-toggle { display: none; }
  .owner-avatar { width: 6.5rem; height: 6.5rem; }
  .owner-avatar span { font-size: 2.2rem; }
  .care-points { grid-template-columns: 1fr; }
  .care-points div { display: grid; grid-template-columns: 5rem 1fr; align-items: center; border-right: 0; border-bottom: 1px solid var(--line); }
  .care-points div:last-child { border-bottom: 0; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: repeat(4, 18rem); }
  .gallery-item, .gallery-item--wide, .gallery-item--tall, .gallery-item:not(.gallery-item--wide):not(.gallery-item--tall) { grid-row: auto; grid-column: auto; }
  .form-split { grid-template-columns: 1fr; gap: 0; }
  .contact-form { box-shadow: 0 20px 42px rgba(0, 16, 35, 0.22); }
  .site-footer nav { flex-wrap: wrap; }
  .home-intro { gap: 2.5rem; }
  .page-route-list a { grid-template-columns: 1fr auto 1.5rem; }
}

@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;
  }
  .machine-check:checked + .machine-bay::before { background-image: url("assets/images/washer-spin-still.jpg"); }
}
/* Private content administration */
.admin-link { color: var(--ink, #061238); font-size: .78rem; font-weight: 800; text-decoration: none; white-space: nowrap; }
.service-prices { margin-top: 3rem; padding: 2rem; border: 2px solid #b8ccff; border-radius: 1.25rem; background: #f6f9ff; }
.service-prices dl { display: grid; gap: 1rem; margin: 1.25rem 0 0; }
.service-prices dl div { display: flex; justify-content: space-between; gap: 1rem; border-bottom: 1px solid #cdd9f8; padding-bottom: 1rem; }
.service-prices dt, .service-prices dd { margin: 0; }.service-prices small { display: block; margin-top: .25rem; }
.admin-page { background: #eef4ff; color: #061238; }.admin-shell { width: min(900px, calc(100% - 2rem)); margin: 3rem auto; }.admin-shell h1 { margin: .75rem 0; }.admin-form, .admin-actions { display: grid; gap: 1rem; margin-top: 1.5rem; }.admin-form fieldset { display: grid; gap: .8rem; padding: 1.25rem; border: 1px solid #adc4f5; border-radius: .75rem; background: #fff; }.admin-form label { display: grid; gap: .35rem; font-weight: 700; }.admin-form input, .admin-form textarea { width: 100%; box-sizing: border-box; padding: .7rem; border: 1px solid #90a9df; border-radius: .35rem; font: inherit; }.admin-price { display: grid; grid-template-columns: 2fr 1fr 2fr; gap: .75rem; }.admin-form button, .admin-actions button { width: fit-content; padding: .75rem 1rem; border: 0; border-radius: .35rem; background: #0038d6; color: #fff; font: inherit; font-weight: 800; cursor: pointer; }.admin-notice, .admin-error { padding: .8rem 1rem; border-radius: .35rem; }.admin-notice { background: #dff6e6; }.admin-error { background: #ffe5e5; color: #7a1111; } @media (max-width: 640px) { .admin-link { display: none; }.service-prices dl div, .admin-price { display: grid; grid-template-columns: 1fr; } }

/* Homepage package calculator */
.package-calculator { background: var(--paper-blue); }
.package-calculator .section-heading { grid-template-columns: 1fr; max-width: 46rem; }

.package-price-list { max-width: 46rem; margin: 0 auto 2.5rem; padding: 1.75rem 2rem; background: white; border: 2px solid #b8ccff; border-radius: 1.25rem; box-shadow: var(--shadow); }
.package-price-list h3 { margin: 0 0 1.1rem; font-family: var(--display); font-size: 1.4rem; }
.package-price-list p { margin: 0; color: var(--ink-soft); }
.price-table { width: 100%; border-collapse: collapse; font-size: 0.92rem; }
.price-table th, .price-table td { padding: 0.6rem 0.5rem; text-align: left; border-bottom: 1px solid #dbe6f7; }
.price-table th { color: var(--ink-soft); font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.04em; }
.price-table td:not(:first-child) { font-weight: 700; }

.calculator-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2rem; max-width: 60rem; margin: 0 auto; }
.calculator-column { padding: 1.75rem 2rem; background: white; border: 2px solid #d7e4f5; border-radius: 1.25rem; }
.calculator-column h3 { margin: 0 0 1.1rem; font-family: var(--display); font-size: 1.25rem; }

.tier-toggle { display: flex; gap: 0.5rem; margin: 0.25rem 0 1.25rem; }
.tier-toggle button { flex: 1; padding: 0.6rem 0.75rem; color: var(--route); background: var(--paper-blue); border: 1px solid #b8ccff; border-radius: 10px; font-weight: 700; font-size: 0.85rem; cursor: pointer; }
.tier-toggle button.is-active { color: white; background: var(--route); border-color: var(--route); }

.batch-breakdown p { margin: 0 0 0.5rem; font-weight: 700; }
.batch-breakdown ul { margin: 0; padding-left: 1.1rem; color: var(--ink-soft); }

/* Add-ons: icon-glyph toggle buttons instead of checkboxes. */
.addon-grid { list-style: none; margin: 0 0 1rem; padding: 0; display: grid; gap: 0.6rem; }
.addon-option {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.7rem;
  width: 100%;
  padding: 0.6rem 0.7rem;
  background: #f4f9fc;
  border: 1px solid #d7e4f5;
  border-radius: 10px;
  font: inherit;
  color: inherit;
  text-align: left;
  cursor: pointer;
}
.addon-option:hover { border-color: #b8ccff; }
.addon-option.is-selected { background: var(--paper-blue); border-color: var(--route); box-shadow: 0 0 0 1px var(--route) inset; }
.addon-glyph {
  display: grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  color: var(--line);
  background: transparent;
  border: 2px dashed var(--line);
  border-radius: 8px;
  transition: color 150ms var(--ease-out), background 150ms var(--ease-out), border-color 150ms var(--ease-out);
}
.addon-glyph svg { width: 1.2rem; height: 1.2rem; }
.addon-option.is-selected .addon-glyph { color: white; background: var(--route); border-style: solid; border-color: var(--route); }
.addon-name { font-size: 0.92rem; }
.addon-option b { text-align: right; font-size: 0.85rem; }
.addon-option b small { display: block; font-weight: 500; color: var(--ink-soft); }
.addon-note { margin: 0; color: var(--ink-soft); font-size: 0.8rem; }

/* Ironing: clickable garment picker + running tally. */
.garment-instruction { margin: 0 0 1.1rem; color: var(--ink-soft); font-size: 0.9rem; }
.garment-picker { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(11rem, 1fr)); gap: 0.6rem; }
.garment-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.9rem 0.6rem;
  background: #f4f9fc;
  border: 1px solid #d7e4f5;
  border-radius: 10px;
  font: inherit;
  color: inherit;
  text-align: center;
  cursor: pointer;
  transition: transform 120ms var(--ease-out), border-color 120ms var(--ease-out);
}
.garment-option:hover, .garment-option:focus-visible { border-color: var(--route); transform: translateY(-2px); }
.garment-option:active { transform: translateY(0); }
.garment-glyph { display: grid; place-items: center; width: 2.35rem; height: 2.35rem; color: var(--route); background: white; border: 2px solid var(--route); border-radius: 50%; }
.garment-glyph svg { width: 1.15rem; height: 1.15rem; }
.garment-name { font-size: 0.85rem; font-weight: 700; }
.garment-option b { font-size: 0.85rem; color: var(--ink-soft); }

.tally-empty { margin: 0; color: var(--ink-soft); }
.tally-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.tally-table th, .tally-table td { padding: 0.55rem 0.4rem; text-align: left; border-bottom: 1px solid #dbe6f7; }
.tally-table th { color: var(--ink-soft); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.04em; }
.tally-table td:not(:first-child) { font-weight: 700; white-space: nowrap; }
.tally-glyph { display: inline-grid; place-items: center; width: 1.6rem; height: 1.6rem; margin-right: 0.5rem; color: var(--route); background: var(--paper-blue); border-radius: 6px; vertical-align: middle; }
.tally-glyph svg { width: 0.95rem; height: 0.95rem; }
.tally-qty { padding: 0.25rem 0.55rem; color: var(--route); background: var(--paper-blue); border: 1px solid #b8ccff; border-radius: 8px; font: inherit; font-weight: 700; cursor: pointer; }
.tally-qty-input { width: 3.5rem; padding: 0.25rem 0.4rem; border: 1px solid var(--route); border-radius: 8px; font: inherit; }

/* Live "your estimate" summary under the weight/time/garment inputs. */
.calculator-summary { margin-top: 1.5rem; padding-top: 1.25rem; border-top: 1px solid var(--line); }
.calculator-summary h4 { margin: 0 0 0.85rem; font-family: var(--display); font-size: 1.05rem; }
.calculator-summary h5 { margin: 1.1rem 0 0.6rem; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--ink-soft); }
.summary-empty { margin: 0; color: var(--ink-soft); font-size: 0.9rem; }
.summary-lines { display: grid; gap: 0.6rem; margin: 0; }
.summary-lines div { display: flex; justify-content: space-between; gap: 1rem; }
.summary-lines dt { color: var(--ink-soft); font-weight: 700; font-size: 0.85rem; }
.summary-lines dd { margin: 0; font-weight: 700; text-align: right; font-size: 0.85rem; }
.summary-total { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; margin: 1.1rem 0 0; padding-top: 0.9rem; border-top: 1px solid var(--line); }
.summary-total span { font-weight: 700; }
.summary-total b { font-family: var(--display); font-size: 1.4rem; color: var(--route); }

/* Add-on grid shared by the homepage summary and the order-review page. */
.addon-summary-grid { list-style: none; margin: 0; padding: 0; display: grid; gap: 0; border-top: 1px solid var(--line); }
.addon-summary-grid li { display: flex; align-items: center; gap: 0.7rem; padding: 0.65rem 0; border-bottom: 1px solid var(--line); }
.addon-summary-grid .addon-glyph { flex: 0 0 auto; width: 2rem; height: 2rem; color: white; background: var(--route); border: 0; }
.addon-summary-grid .addon-glyph svg { width: 1.05rem; height: 1.05rem; }
.addon-summary-text { display: flex; flex-direction: column; }
.addon-summary-text b { font-size: 0.88rem; }
.addon-summary-text small { color: var(--ink-soft); }
.order-addons-heading { margin: 1.5rem 0 0.5rem; font-family: var(--display); font-size: 1.05rem; }

@media (min-width: 640px) {
  .addon-summary-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 1.5rem; }
}

.calculator-total { display: flex; flex-wrap: wrap; align-items: baseline; gap: 0.6rem 1rem; max-width: 60rem; margin: 2rem auto 0; padding: 1.5rem 2rem; background: var(--route); color: white; border-radius: 1.25rem; }
.calculator-total span:first-child { font-weight: 700; }
.calculator-total b { font-family: var(--display); font-size: 2rem; }
.calculator-total small { flex-basis: 100%; color: #dce8ff; }

.place-order { display: flex; max-width: 60rem; margin: 1.5rem auto 0; }
.place-order:disabled { cursor: not-allowed; opacity: 0.55; transform: none; box-shadow: none; }

@media (max-width: 720px) {
  .calculator-grid { grid-template-columns: 1fr; }
  .package-price-list { padding: 1.4rem 1.25rem; }
  .price-table { display: block; overflow-x: auto; }
}

/* Order review page */
.order-review { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr); gap: 2.5rem; max-width: 68rem; margin: 0 auto; align-items: start; }
.order-summary-card, .order-message-card { padding: 1.75rem 2rem; background: white; border: 2px solid #d7e4f5; border-radius: 1.25rem; box-shadow: var(--shadow); }
.order-summary-card h2 { margin: 0 0 1.25rem; font-family: var(--display); font-size: 1.6rem; }
.order-summary-card dl { display: grid; gap: 0.9rem; margin: 0; }
.order-summary-card dl div { display: flex; justify-content: space-between; gap: 1rem; border-bottom: 1px solid #e5edf9; padding-bottom: 0.9rem; }
.order-summary-card dt { color: var(--ink-soft); font-weight: 700; }
.order-summary-card dd { margin: 0; font-weight: 700; text-align: right; }
.order-message-card textarea { min-height: 14rem; font-family: var(--body); font-size: 0.95rem; }
.order-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: 0.5rem; }
.order-actions .button { flex: 1; min-width: 12rem; }

@media (max-width: 900px) {
  .order-review { grid-template-columns: 1fr; }
}
