:root {
  --blue: #0876c9;
  --blue-dark: #073e70;
  --blue-deep: #062f56;
  --blue-soft: #e8f4fc;
  --white: #ffffff;
  --off-white: #f7f9fb;
  --grey: #dce3e8;
  --text: #17222b;
  --muted: #5e6a73;
  --radius-lg: 32px;
  --radius-md: 22px;
  --shadow: 0 20px 55px rgba(6, 47, 86, 0.14);
  --shell: min(1180px, calc(100% - 40px));
  --section-gap: clamp(36px, 4.5vw, 60px);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--text);
  font-family: ui-rounded, "Avenir Next", "Segoe UI", "Trebuchet MS", sans-serif;
  font-size: 16px;
  line-height: 1.68;
  letter-spacing: 0.006em;
  -webkit-font-smoothing: antialiased;
}

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

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

a {
  color: inherit;
}

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

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  transform: translateY(-150%);
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--white);
  color: var(--blue-deep);
  font-weight: 700;
}

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

.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;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section-divider {
  display: block;
  width: var(--shell);
  height: 0;
  margin: var(--section-gap) auto;
  border-top: 1px solid var(--grey);
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  transition: background-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.menu-active {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 30px rgba(6, 47, 86, 0.1);
}

.site-header.is-scrolled {
  backdrop-filter: blur(14px);
}

.site-header.menu-active {
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 98px;
  gap: 26px;
  padding-top: 18px;
}

.brand {
  z-index: 2;
  flex: 0 0 auto;
  order: 0;
  padding: 13px 16px;
  border-radius: 12px;
  background: #fff;
  transform: translateY(72px);
  transition: transform 180ms ease;
}

.site-header.is-scrolled .brand {
  transform: translateY(0);
}

.brand img {
  width: 410px;
  height: auto;
  transition: width 180ms ease;
}

.site-header.is-scrolled .brand img {
  width: 228px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  order: 1;
  margin-left: auto;
}

.site-nav a {
  position: relative;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.018em;
  text-decoration: none;
}

.site-header.is-scrolled .site-nav a,
.site-header.menu-active .site-nav a {
  color: var(--text);
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

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

.menu-toggle {
  display: none;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border: 0;
  border-radius: 999px;
  background: var(--blue);
  color: var(--white);
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  transition: background-color 180ms ease, transform 180ms ease;
}

.button:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
}

.button-light {
  background: var(--white);
  color: var(--blue-deep);
}

.button-light:hover {
  background: var(--blue-soft);
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  order: 3;
  color: var(--white);
}

.language-switcher button {
  min-width: 38px;
  min-height: 44px;
  padding: 8px;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-size: 0.75rem;
  font-weight: 700;
  text-decoration: none;
  text-underline-offset: 5px;
  text-shadow: 0 1px 8px rgba(3, 28, 51, 0.6);
  cursor: pointer;
}

.language-switcher button[aria-pressed="true"] {
  font-weight: 900;
  text-decoration: underline;
}

.language-separator {
  font-size: 0.75rem;
  opacity: 0.62;
  text-shadow: 0 1px 8px rgba(3, 28, 51, 0.6);
}

.site-header.is-scrolled .language-switcher,
.site-header.menu-active .language-switcher {
  color: var(--text);
}

.site-header.is-scrolled .language-switcher button,
.site-header.is-scrolled .language-separator,
.site-header.menu-active .language-switcher button,
.site-header.menu-active .language-separator {
  text-shadow: none;
}

.hero {
  position: relative;
  min-height: 720px;
  margin: 16px 16px 0;
  overflow: hidden;
  border-radius: 36px;
  color: var(--white);
}

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

.hero-media {
  background-image: url("assets/images/station-hero-2026.jpg");
  background-position: center 58%;
  background-size: cover;
  transform: scale(1.01);
}

.hero-shade {
  background: linear-gradient(90deg, rgba(3, 28, 51, 0.86) 0%, rgba(3, 36, 65, 0.62) 40%, rgba(4, 40, 74, 0.14) 72%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 720px;
  align-items: flex-end;
  padding-block: 160px 105px;
}

.hero-copy {
  width: min(900px, 84%);
}

.hero h1 {
  max-width: 880px;
  margin: 14px 0 24px;
  font-size: clamp(3.25rem, 5.6vw, 5.5rem);
  font-weight: 650;
  letter-spacing: -0.032em;
  line-height: 1.02;
  text-wrap: balance;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 610px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.06rem, 1.6vw, 1.3rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  margin-top: 38px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-dark);
  font-weight: 800;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.text-link-light {
  color: var(--white);
}

.service-overview {
  padding: 0;
}

.section-heading {
  margin-bottom: 42px;
}

.section-heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.section-heading h2,
.feature h2,
.station-copy h2,
.unipay-section h2,
.about h2,
.contact-section h2 {
  margin: 0;
  font-size: clamp(2.15rem, 4vw, 4.5rem);
  font-weight: 650;
  letter-spacing: -0.028em;
  line-height: 1.1;
  text-wrap: balance;
}

.section-lead {
  max-width: 420px;
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 1.08rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.service-card {
  position: relative;
  display: flex;
  min-height: 320px;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 24px;
  border-radius: var(--radius-md);
  background: var(--blue-deep);
  color: var(--white);
  text-decoration: none;
  transition: background-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.service-card:nth-child(2),
.service-card:nth-child(4) {
  background: var(--blue-dark);
}

.service-card:hover {
  z-index: 1;
  background: var(--blue);
  box-shadow: var(--shadow);
  transform: translateY(-8px);
}

.service-card::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 31, 56, 0.1) 12%, rgba(3, 31, 56, 0.92) 82%);
  content: "";
}

.service-photo {
  position: absolute;
  inset: 0;
}

.service-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.service-photo-parcel img {
  object-position: center;
}

.service-card:hover .service-photo img {
  transform: scale(1.06);
}

.card-content {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 13px;
  padding-right: 24px;
}

.card-content strong {
  font-size: clamp(1.55rem, 2vw, 2.15rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.14;
}

.card-content > span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.92rem;
  line-height: 1.4;
}

.card-arrow {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 24px;
  font-size: 1.55rem;
  transition: transform 180ms ease;
}

.service-card:hover .card-arrow {
  transform: translate(4px, 4px);
}

.quick-info {
  padding: 0;
}

.quick-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid var(--grey);
  border-radius: var(--radius-md);
}

.quick-item {
  display: grid;
  gap: 6px;
  padding: 27px 30px;
  border-right: 1px solid var(--grey);
}

.quick-item:last-child {
  border: 0;
}

.quick-item span {
  color: var(--muted);
  font-size: 0.82rem;
}

.quick-item strong,
.quick-item a {
  font-size: 1.1rem;
  font-style: normal;
  font-weight: 850;
  text-decoration: none;
}

.quick-action {
  background: var(--blue-soft);
}

.amenities {
  padding-block: 0;
}

.amenity-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  overflow: hidden;
  border: 1px solid var(--grey);
  border-radius: var(--radius-md);
  background: var(--off-white);
}

.amenity-item {
  display: flex;
  min-height: 175px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  padding: 22px 14px;
  border-right: 1px solid var(--grey);
  text-align: center;
}

.amenity-item:last-child {
  border: 0;
}

.amenity-item img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.amenity-item strong {
  font-size: 0.9rem;
  line-height: 1.35;
}

.feature {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  align-items: center;
  gap: clamp(54px, 8vw, 120px);
  padding-block: 0;
}

.feature-reverse .feature-image {
  order: 2;
}

.feature-image {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--blue-soft);
}

.feature-image img {
  width: 100%;
  height: clamp(390px, 47vw, 570px);
  object-fit: cover;
  transition: transform 600ms ease;
}

.feature-image:hover img {
  transform: scale(1.035);
}

.wash-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  overflow: visible;
  border-radius: 0;
  background: transparent;
}

.wash-gallery > img,
.wash-gallery figure {
  overflow: hidden;
  border-radius: 18px;
  background: var(--blue-soft);
}

.wash-gallery .wash-gallery-main {
  grid-column: 1 / -1;
  height: 340px;
  object-position: center 42%;
}

.wash-gallery figure {
  position: relative;
  min-width: 0;
  height: 190px;
  margin: 0;
}

.wash-gallery figure a {
  display: block;
  height: 100%;
}

.wash-gallery figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wash-gallery figure:last-child img {
  object-fit: contain;
  background: #eef8fd;
}

.wash-gallery figcaption {
  position: absolute;
  right: 10px;
  bottom: 10px;
  left: 10px;
  padding: 8px 10px;
  border-radius: 9px;
  background: rgba(3, 28, 51, 0.82);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.25;
  pointer-events: none;
}

.wash-gallery:hover img {
  transform: none;
}

.feature-copy p:not(.eyebrow) {
  margin: 26px 0 30px;
  color: var(--muted);
  font-size: 1.08rem;
}

.feature-link {
  margin-top: 28px;
}

.wash-list {
  grid-template-columns: 1fr;
  margin-bottom: 22px;
}

.feature-copy .wash-boxes-copy {
  margin: 0 0 30px;
}

.wash-camera-button[hidden] {
  display: none;
}

.wash-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.wash-price-button {
  border: 2px solid var(--blue);
  background: transparent;
  color: var(--blue-deep);
}

.wash-price-button:hover {
  background: var(--blue-soft);
}

.price-dialog {
  width: min(94vw, 1100px);
  max-width: none;
  max-height: 92vh;
  padding: 0;
  border: 0;
  border-radius: var(--radius-md);
  overflow: visible;
  background: transparent;
}

.price-dialog::backdrop {
  background: rgba(3, 31, 56, 0.84);
  backdrop-filter: blur(4px);
}

.price-dialog-panel {
  position: relative;
  max-height: 92vh;
  padding: 12px;
  border-radius: var(--radius-md);
  overflow: auto;
  background: var(--white);
  box-shadow: var(--shadow);
}

.price-dialog img {
  width: 100%;
  max-height: calc(92vh - 24px);
  border-radius: calc(var(--radius-md) - 8px);
  object-fit: contain;
}

.price-dialog-close {
  position: absolute;
  z-index: 1;
  top: 20px;
  right: 20px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--white);
  color: var(--blue-deep);
  box-shadow: 0 6px 20px rgba(3, 31, 56, 0.24);
  font: inherit;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 25px;
  font-weight: 700;
}

.check-list li::before {
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blue);
  content: "";
}

.station-section {
  margin: 0 16px;
  padding: 110px 0;
  overflow: hidden;
  border-radius: 36px;
  background: var(--blue-deep);
  color: var(--white);
}

.station-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  align-items: center;
  gap: clamp(50px, 8vw, 110px);
}

.station-copy p:not(.eyebrow) {
  margin: 25px 0 32px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.08rem;
}

.shop-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, 210px);
  gap: 12px;
}

.shop-gallery img {
  width: 100%;
  height: 100%;
  border-radius: 18px;
  object-fit: cover;
}

.shop-gallery-main {
  grid-row: 1 / 3;
}

.station-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.station-tags span {
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.35;
}

.parcel-section {
  padding-block: 0;
}

.parcel-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  align-items: stretch;
  gap: 18px;
}

.practical-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.practical-grid-wide {
  align-items: stretch;
}

.info-card {
  display: flex;
  min-height: 440px;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--grey);
  border-radius: var(--radius-md);
  background: var(--off-white);
}

.info-card-accent {
  border-color: var(--blue);
  background: var(--blue);
  color: var(--white);
}

.info-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.info-label {
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.info-card-accent .info-label {
  color: rgba(255, 255, 255, 0.76);
}

.info-icon {
  font-size: 1.3rem;
}

.info-card h3 {
  margin: auto 0 14px;
  font-size: 2rem;
  font-weight: 650;
  letter-spacing: -0.022em;
  line-height: 1.16;
}

.info-card p {
  margin: 0 0 23px;
  color: var(--muted);
}

.info-card-accent p {
  color: rgba(255, 255, 255, 0.82);
}

.hours-list {
  display: grid;
  gap: 6px;
  margin: 0 0 22px;
}

.hours-list div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.hours-list dt {
  color: var(--muted);
}

.hours-list dd {
  margin: 0;
  font-weight: 800;
}

.parcel-card h3 {
  margin-top: 30px;
}

.parcel-section .parcel-card {
  min-height: 0;
}

.autoservice-section {
  padding: 0;
}

.autoservice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 0;
}

.autoservice-image {
  overflow: hidden;
  min-height: 520px;
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}

.autoservice-image img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.autoservice-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(38px, 6vw, 80px);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  background: var(--blue-soft);
}

.autoservice-copy .button {
  align-self: flex-start;
}

.autoservice-copy h2 {
  margin: 24px 0 20px;
  font-size: clamp(2.4rem, 4.5vw, 4.8rem);
  font-weight: 650;
  letter-spacing: -0.028em;
  line-height: 1.06;
}

.autoservice-copy p {
  margin: 0 0 30px;
  color: var(--muted);
  font-size: 1.08rem;
}

.parcel-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: 240px 220px;
  gap: 12px;
}

.parcel-photo {
  position: relative;
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  background: var(--blue-soft);
}

.parcel-photo-main {
  grid-column: 1 / -1;
}

.parcel-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.parcel-photo:hover img {
  transform: scale(1.035);
}

.parcel-photo figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 9px 11px;
  border-radius: 9px;
  background: rgba(3, 28, 51, 0.84);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 750;
  line-height: 1.25;
}

.parcel-links {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 9px;
}

.service-card-detail {
  overflow: hidden;
  padding-top: 0;
}

.service-card-detail > img {
  width: calc(100% + 60px);
  max-width: none;
  height: 205px;
  margin: 0 -30px 28px;
  object-fit: cover;
}

.service-card-detail h3 {
  margin: auto 0 14px;
}

.unipay-section {
  padding: 0;
}

.unipay-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  align-items: center;
  gap: clamp(54px, 8vw, 120px);
}

.unipay-heading {
  display: grid;
  gap: 24px;
  margin-bottom: 28px;
}

.unipay-logo {
  width: 170px;
  height: auto;
  margin-bottom: 25px;
}

.unipay-intro p {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 1.05rem;
}

.store-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.store-links a {
  display: block;
  padding: 6px;
  border-radius: 10px;
  background: var(--white);
}

.store-links img {
  height: 34px;
  width: auto;
}

.unipay-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 150px));
  justify-content: start;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.unipay-steps li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-rows: 46px minmax(0, 1fr);
  align-items: center;
  column-gap: 8px;
  row-gap: 6px;
  min-height: 0;
  aspect-ratio: 1;
  padding: 12px;
  border-radius: var(--radius-md);
  background: var(--blue-soft);
  color: var(--blue-deep);
}

.unipay-steps img {
  grid-column: 2;
  grid-row: 1;
  width: 100%;
  height: 44px;
  object-fit: contain;
}

.unipay-steps span {
  grid-column: 1;
  grid-row: 1;
  color: var(--blue);
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.unipay-steps strong {
  grid-column: 1 / -1;
  grid-row: 2;
  align-self: start;
  min-width: 0;
  font-size: 0.84rem;
  line-height: 1.22;
  overflow-wrap: break-word;
  hyphens: auto;
  text-wrap: balance;
}

.unipay-phone {
  display: grid;
  width: 100%;
  min-height: clamp(390px, 47vw, 570px);
  margin: 0;
  padding: clamp(32px, 5vw, 60px);
  place-content: center;
  justify-items: center;
  border-radius: var(--radius-lg);
  background: var(--blue-soft);
  text-align: center;
}

.unipay-phone a {
  display: block;
  width: min(100%, 190px);
}

.unipay-phone img {
  display: block;
  width: 100%;
  height: auto;
}

.unipay-phone figcaption {
  max-width: 280px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.45;
}

.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-bottom: 0;
}

.about-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(38px, 6vw, 80px);
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  background: var(--blue-soft);
}

.about-panel > p:not(.eyebrow) {
  margin: 27px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.about-panel > p:not(.eyebrow) + p {
  margin-top: 14px;
}

.about-image {
  overflow: hidden;
  min-height: 520px;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 64% center;
}

.contact-section {
  margin: 0 16px 16px;
  padding: 110px 0;
  border-radius: 36px;
  background: var(--blue-dark);
  color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.72fr);
  align-items: start;
  gap: 60px;
}

.contact-details {
  display: grid;
  gap: 34px;
}

.contact-intro > p:not(.eyebrow) {
  max-width: 560px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.contact-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 36px;
  margin: 0;
  font-style: normal;
}

.contact-card div {
  display: grid;
  gap: 5px;
}

.contact-label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-card strong,
.contact-card a {
  font-size: 1.1rem;
  font-weight: 750;
  line-height: 1.45;
  text-decoration: none;
}

.contact-card a:hover {
  text-decoration: underline;
}

.contact-directions {
  justify-self: start;
}

.contact-map {
  margin: 0;
}

.contact-map > a {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 330px;
  border-radius: var(--radius-md);
  background: var(--off-white);
}

.contact-map img {
  width: 100%;
  height: 330px;
  object-fit: cover;
}

.map-action {
  position: absolute;
  right: 20px;
  bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--white);
  color: var(--blue-deep);
  font-weight: 850;
  box-shadow: 0 8px 24px rgba(6, 47, 86, 0.2);
}

.contact-map figcaption {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.76rem;
}

.site-footer {
  padding: 70px 0 34px;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding-bottom: 50px;
}

.footer-brand img {
  width: 180px;
  height: auto;
}

.footer-top nav {
  display: flex;
  gap: 28px;
}

.footer-top nav a {
  font-weight: 750;
  text-decoration: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 26px;
  border-top: 1px solid var(--grey);
  color: var(--muted);
  font-size: 0.8rem;
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 980px) {
  :root {
    --shell: min(100% - 32px, 760px);
  }

  .header-inner {
    min-height: 88px;
    padding-top: 10px;
  }

  .brand {
    transform: translateY(62px);
  }

  .brand img {
    width: 330px;
  }

  .site-header.is-scrolled .brand img {
    width: 228px;
  }

  .menu-toggle {
    z-index: 3;
    display: grid;
    flex: 0 0 46px;
    width: 46px;
    min-width: 46px;
    height: 46px;
    place-content: center;
    gap: 7px;
    order: 2;
    margin-left: auto;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: var(--white);
    color: var(--blue-deep);
  }

  .menu-toggle span:not(.sr-only) {
    width: 20px;
    height: 2px;
    background: currentColor;
    transition: transform 180ms ease;
  }

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

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

  .site-nav {
    position: fixed;
    z-index: 1;
    inset: 0;
    display: flex;
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    max-height: 100dvh;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 22px;
    padding: max(120px, calc(env(safe-area-inset-top) + 100px)) 32px max(40px, env(safe-area-inset-bottom));
    overflow-y: auto;
    background: var(--white);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    overscroll-behavior: contain;
    transition: opacity 180ms ease, visibility 0s linear 180ms;
  }

  .language-switcher {
    z-index: 3;
    flex: 0 0 auto;
    order: 3;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition-delay: 0s;
  }

  .site-header.menu-active .brand {
    transform: translateY(0);
  }

  .site-header.menu-active .brand img {
    width: 228px;
  }

  .site-nav a,
  .site-header.is-scrolled .site-nav a {
    color: var(--text);
    font-size: clamp(2rem, 8vw, 3.3rem);
    font-weight: 650;
    letter-spacing: -0.02em;
    line-height: 1.18;
  }

  .hero,
  .station-section,
  .contact-section {
    margin-inline: 8px;
    border-radius: 28px;
  }

  .hero,
  .hero-inner {
    min-height: 680px;
  }

  .hero-copy {
    width: 100%;
  }

  .hero h1 {
    max-width: 650px;
  }

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

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

  .amenity-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .amenity-item {
    border-bottom: 1px solid var(--grey);
  }

  .amenity-item:nth-child(3n) {
    border-right: 0;
  }

  .amenity-item:nth-last-child(-n + 3) {
    border-bottom: 0;
  }

  .feature,
  .station-grid,
  .contact-grid,
  .parcel-layout,
  .autoservice-grid {
    grid-template-columns: 1fr;
  }

  .feature-reverse .feature-image {
    order: 0;
  }

  .feature {
    gap: 50px;
  }

  .shop-gallery {
    order: -1;
  }

  .unipay-heading {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .unipay-layout {
    grid-template-columns: 1fr;
  }

  .unipay-phone {
    min-height: 420px;
    order: -1;
  }

  .unipay-phone a {
    width: min(54vw, 190px);
  }

  .unipay-steps {
    grid-template-columns: repeat(4, minmax(0, 150px));
  }

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

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

  .about-panel {
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  }

  .about-image {
    min-height: 420px;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  }

  .autoservice-section {
    margin-inline: 0;
  }

  .autoservice-image {
    min-height: 420px;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  }

  .autoservice-image img {
    min-height: 420px;
  }

  .autoservice-copy {
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  }
}

@media (max-width: 680px) {
  :root {
    --shell: calc(100% - 32px);
    --radius-lg: 24px;
    --radius-md: 18px;
  }

  html {
    scroll-padding-top: 82px;
  }

  .brand {
    position: absolute;
    left: 0;
    padding: 8px 10px;
    transform: translateY(62px);
  }

  .brand img {
    width: 230px;
  }

  .site-header.is-scrolled .brand img {
    width: 170px;
  }

  .site-header.menu-active .brand img {
    width: 170px;
  }

  .header-inner {
    gap: 10px;
  }

  .language-switcher button {
    min-width: 36px;
    min-height: 44px;
    padding-inline: 7px;
  }

  .hero,
  .hero-inner {
    min-height: 650px;
  }

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

  .hero-shade {
    background: linear-gradient(180deg, rgba(3, 28, 51, 0.27) 0%, rgba(3, 28, 51, 0.86) 68%, rgba(3, 28, 51, 0.96) 100%);
  }

  .hero-inner {
    padding: 125px 0 58px;
  }

  .hero h1 {
    margin-bottom: 20px;
    font-size: clamp(2.75rem, 14vw, 4.4rem);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
  }

  .service-overview {
    padding: 0;
  }

  .section-heading-row {
    display: block;
  }

  .section-lead {
    margin-top: 20px;
  }

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

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

  .quick-info {
    padding-bottom: 0;
  }

  .quick-info-grid {
    grid-template-columns: 1fr;
  }

  .quick-item {
    border-right: 0;
    border-bottom: 1px solid var(--grey);
  }

  .amenities {
    padding-bottom: 0;
  }

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

  .amenity-item,
  .amenity-item:nth-child(3n) {
    min-height: 150px;
    border-right: 1px solid var(--grey);
    border-bottom: 1px solid var(--grey);
  }

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

  .amenity-item:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .feature {
    gap: 38px;
    padding-block: 0;
  }

  .feature-image img {
    height: 360px;
  }

  .wash-gallery .wash-gallery-main {
    height: 300px;
  }

  .wash-gallery figure {
    height: 170px;
  }

  .check-list {
    grid-template-columns: 1fr;
  }

  .station-section {
    margin-top: 0;
    padding: 80px 0;
  }

  .shop-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 280px 150px;
  }

  .shop-gallery-main {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .parcel-section {
    padding-block: 0;
  }

  .parcel-gallery {
    grid-template-rows: 220px 160px;
  }

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

  .info-card {
    grid-column: auto;
    min-height: 330px;
  }

  .unipay-section {
    margin-bottom: 0;
    padding: 0;
  }

  .unipay-phone {
    min-height: 340px;
    padding: 28px;
  }

  .unipay-heading {
    margin-bottom: 28px;
  }

  .unipay-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .unipay-steps li {
    min-height: 0;
    aspect-ratio: 1;
    padding: 12px;
  }

  .about {
    padding-bottom: 0;
  }

  .about-panel {
    padding: 42px 28px;
  }

  .about-image {
    min-height: 340px;
  }

  .autoservice-section {
    margin-bottom: 0;
    padding: 0;
  }

  .autoservice-copy {
    padding: 42px 28px;
  }

  .autoservice-image {
    min-height: 340px;
  }

  .autoservice-image img {
    min-height: 340px;
  }

  .contact-section {
    padding: 80px 0;
  }

  .contact-grid {
    gap: 50px;
  }

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

  .contact-map > a,
  .contact-map img {
    min-height: 300px;
    height: 300px;
  }

  .map-action {
    right: 14px;
    bottom: 14px;
    font-size: 0.82rem;
  }

  .footer-top,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-top nav {
    flex-wrap: wrap;
  }
}

@media (max-width: 380px) {
  .brand {
    transform: translateY(53px);
  }

  .brand img {
    width: 176px;
  }

  .site-header.is-scrolled .brand img {
    width: 142px;
  }

  .site-header.menu-active .brand img {
    width: 142px;
  }

  .language-switcher button {
    min-width: 32px;
    min-height: 44px;
    padding-inline: 5px;
  }
}

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

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