:root {
  --coral: #f07653;
  --brand-blue: #518bd1;
  --water-blue: #2fadee;
  --action-orange: #fb9600;
  --navy: #10233f;
  --white: #ffffff;
  --shadow: 0 8px 24px rgba(16, 35, 63, 0.16);
}

@font-face {
  font-family: "Photoshoot";
  src: url("Fonts/Photoshoot-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  color: var(--navy);
  background: #f8fbff;
  font-family: Inter, Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--coral);
  box-shadow: var(--shadow);
}

.navbar {
  width: min(100% - 40px, 1240px);
  min-height: 104px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  border-radius: 8px;
}

.brand img {
  display: block;
  width: 174px;
  height: 86px;
  object-fit: contain;
}

.desktop-nav,
.nav-links { display: flex; align-items: center; }

.desktop-nav {
  flex: 1;
  justify-content: flex-end;
  gap: 44px;
}

.nav-links {
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links a,
.login-link {
  position: relative;
  color: var(--white);
  font-size: 0.98rem;
  font-weight: 900;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.015em;
}

.nav-links a::after,
.login-link::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 3px;
  border-radius: 999px;
  background: var(--white);
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.login-link:hover::after,
.login-link:focus-visible::after { transform: scaleX(1); }

.login-link {
  padding: 13px 18px;
  border: 3px solid var(--white);
  border-radius: 999px;
  color: var(--navy);
  background: var(--white);
  transition: background-color 180ms ease, color 180ms ease;
}

.login-link::after {
  display: none;
}

.desktop-nav .login-link::before {
  position: absolute;
  top: 50%;
  left: -22px;
  width: 2px;
  height: 34px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  content: "";
  transform: translateY(-50%);
}

.login-link:hover,
.login-link:focus-visible {
  color: var(--navy);
  background: var(--water-blue);
}

a:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 4px;
}

.mobile-menu {
  display: none;
  position: relative;
}

.mobile-menu summary {
  width: 48px;
  height: 48px;
  display: grid;
  place-content: center;
  gap: 6px;
  border: 2px solid var(--white);
  border-radius: 50%;
  cursor: pointer;
  list-style: none;
}

.mobile-menu summary::-webkit-details-marker { display: none; }

.mobile-menu summary span {
  width: 22px;
  height: 3px;
  display: block;
  border-radius: 999px;
  background: var(--white);
}

.mobile-menu ul {
  position: absolute;
  top: 62px;
  right: 0;
  width: min(300px, calc(100vw - 40px));
  margin: 0;
  padding: 18px;
  display: grid;
  gap: 4px;
  border: 2px solid var(--white);
  border-radius: 18px;
  background: var(--coral);
  box-shadow: var(--shadow);
  list-style: none;
}

.mobile-menu li a {
  display: block;
  padding: 12px 14px;
  border-radius: 10px;
  color: var(--white);
  font-weight: 900;
  text-decoration: none;
}

.mobile-menu li a:hover,
.mobile-menu li a:focus-visible { background: rgba(255, 255, 255, 0.16); }

.mobile-menu li .customer-portal {
  margin-top: 8px;
  border: 3px solid var(--white);
  color: var(--navy);
  background: var(--white);
  text-align: center;
}

.mobile-menu li .customer-portal:hover,
.mobile-menu li .customer-portal:focus-visible {
  color: var(--navy);
  background: var(--water-blue);
  outline-color: var(--coral);
}

main { min-height: calc(100vh - 104px); }

.home-main {
  position: relative;
  isolation: isolate;
}

.home-main::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: url("Photos/Bubbles.webp") center / cover no-repeat;
  content: "";
  opacity: 0.28;
  pointer-events: none;
}

.home-main .hero-image,
.home-main .hero-content,
.home-main .why-alvin {
  z-index: 2;
}

.home-main .feature-card,
.home-main .blue-feature-inner,
.home-main .memberships-section > *,
.home-main .reviews-section > * {
  position: relative;
  z-index: 2;
}

.hero {
  position: relative;
  z-index: 2;
  width: min(100%, 2000px);
  height: 600px;
  margin-inline: auto;
  overflow: hidden;
  background: var(--white);
}

.hero::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  background-image: url("Photos/Banner.webp");
  background-color: var(--brand-blue);
  background-position: -50px center;
  background-size: auto 100%;
  background-repeat: no-repeat;
  content: "";
}

.hero-image {
  position: absolute;
  bottom: 95px;
  left: clamp(-60px, -4vw, -24px);
  z-index: 1;
  width: min(72%, 1400px);
  height: auto;
  display: block;
}

.hero-content {
  position: absolute;
  top: 120px;
  right: 5%;
  z-index: 2;
  width: 40%;
  text-align: center;
}

.hero-title {
  margin: 0;
  color: var(--white);
  font-family: "Photoshoot", cursive;
  font-size: clamp(4rem, 5.6vw, 7rem);
  font-weight: 400;
  line-height: 0.95;
  text-wrap: balance;
  text-shadow: 0 5px 10px rgba(16, 35, 63, 0.62);
}

.hero-offer {
  max-width: 620px;
  margin: 32px auto 0;
  color: var(--white);
  font-size: clamp(1.05rem, 1.35vw, 1.45rem);
  font-weight: 700;
  line-height: 1.55;
  text-wrap: balance;
  text-shadow: 0 3px 8px rgba(16, 35, 63, 0.68);
}

.hero-offer strong {
  color: var(--white);
  font-weight: 950;
}

.hero-actions {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-button {
  min-width: 178px;
  padding: 15px 24px;
  border: 3px solid var(--white);
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.035em;
  transition: color 180ms ease, background-color 180ms ease;
}

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

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

.hero-button:hover,
.hero-button:focus-visible {
  color: var(--navy);
  background: var(--coral);
}

.why-alvin {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 220px;
  margin: 0;
  padding: 70px 20px 55px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--white);
  text-align: center;
}

.why-alvin h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 3.4vw, 3.5rem);
  font-weight: 950;
  line-height: 1;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.why-alvin h2 span {
  color: var(--brand-blue);
}

.why-alvin blockquote {
  max-width: 850px;
  margin: 8px auto 0;
  color: #53657d;
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  font-style: normal;
  font-weight: 400;
  line-height: 1.35;
  text-wrap: balance;
}

.wash-features {
  width: min(100% - 40px, 1050px);
  margin: 0 auto;
  padding: 70px 0 110px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 70px;
}

.feature-card {
  min-height: 270px;
  padding: 28px 22px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  border: 2px solid rgba(47, 173, 238, 0.35);
  border-radius: 26px;
  background: var(--white);
  text-align: center;
}

.icon-placeholder {
  width: 100px;
  height: 100px;
  display: grid;
  place-items: center;
}

.icon-placeholder img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.feature-card h3 {
  margin: 28px 0 0;
  color: var(--navy);
  font-size: clamp(1.8rem, 2.5vw, 2.5rem);
  font-weight: 950;
  line-height: 1;
  letter-spacing: -0.025em;
}

.feature-copy {
  max-width: 290px;
  margin: 18px auto 0;
  color: var(--navy);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.55;
  text-wrap: balance;
}

.blue-feature-section {
  width: min(100%, 2000px);
  height: 450px;
  margin-inline: auto;
  background: var(--brand-blue);
  overflow: hidden;
}

#service-extra-care {
  background: #c4d9f0;
}

#service-extra-care .blue-feature-copy h2,
#service-extra-care .blue-feature-copy p,
#service-extra-care .extra-care-list,
#service-extra-care .extra-care-list li::before {
  color: var(--navy);
}

.reviews-section {
  width: min(100%, 2000px);
  min-height: 600px;
  margin-inline: auto;
  background: linear-gradient(
    to bottom,
    var(--white) 0%,
    var(--white) 10%,
    var(--brand-blue) 100%
  );
  padding: 72px 20px 100px;
  text-align: center;
}

.reviews-section h2 {
  margin: 0 auto;
  color: var(--navy);
  font-family: "Photoshoot", cursive;
  font-size: clamp(3.2rem, 6vw, 6.5rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.reviews-intro {
  margin: 23px auto 0;
  color: var(--navy);
  font-family: Inter, Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 25px;
  font-weight: 500;
  line-height: 1.5;
}

.reviews-gallery-layout {
  width: min(100%, 1280px);
  margin: 52px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: end;
  gap: clamp(28px, 4vw, 52px);
}

.reviews-column,
.home-photo-gallery {
  min-width: 0;
}

.reviews-column .reviews-slider {
  width: 100%;
  margin-top: 0;
}

.reviews-column .reviews-track,
.reviews-column .review-card {
  height: 390px;
  min-height: 390px;
}

.reviews-column .review-card {
  padding: 38px 34px;
}

.reviews-column .review-quote {
  font-size: clamp(0.98rem, 1.25vw, 1.16rem);
}

.home-gallery-stage {
  position: relative;
  height: 390px;
  overflow: hidden;
  border: 5px solid var(--white);
  border-radius: 28px;
  background: var(--navy);
  box-shadow: 0 16px 38px rgba(16, 35, 63, 0.18);
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
  cursor: grab;
}

.home-gallery-stage.is-dragging {
  cursor: grabbing;
}

.home-gallery-track {
  height: 100%;
  display: flex;
  transition: transform 520ms cubic-bezier(0.22, 0.75, 0.25, 1);
  will-change: transform;
}

.home-gallery-track img {
  width: 100%;
  height: 100%;
  flex: 0 0 100%;
  display: block;
  object-fit: cover;
  pointer-events: none;
}

.home-gallery-arrow {
  position: absolute;
  top: 50%;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.88);
  border-radius: 50%;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 22px rgba(16, 35, 63, 0.2);
  font-size: 1.15rem;
  font-weight: 950;
  cursor: pointer;
  transform: translateY(-50%);
  touch-action: manipulation;
}

.home-gallery-arrow:hover,
.home-gallery-arrow:focus-visible {
  color: var(--white);
  background: var(--coral);
}

.home-gallery-prev {
  left: 16px;
}

.home-gallery-next {
  right: 16px;
}

.home-gallery-dots {
  margin-top: 22px;
  display: flex;
  justify-content: center;
  gap: 9px;
}

.home-gallery-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  cursor: pointer;
  transition: width 180ms ease, background-color 180ms ease;
  touch-action: manipulation;
}

.home-gallery-dots button.is-active {
  width: 26px;
  background: var(--coral);
}

@media (max-width: 920px) {
  .reviews-gallery-layout {
    grid-template-columns: 1fr;
    gap: 68px;
  }

  .reviews-column,
  .home-photo-gallery {
    width: min(100%, 720px);
    margin-inline: auto;
  }
}

@media (max-width: 600px) {
  .reviews-column .reviews-track,
  .reviews-column .review-card {
    height: 320px;
    min-height: 320px;
  }

  .reviews-column .review-card {
    padding: 30px 22px;
  }

  .home-gallery-stage {
    height: auto;
    aspect-ratio: 4 / 3;
  }
}

.site-footer {
  color: var(--white);
  background: var(--coral);
}

.footer-main {
  width: min(100% - 40px, 1180px);
  margin-inline: auto;
  padding: 72px 0 64px;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(140px, 0.55fr) minmax(210px, 0.8fr) minmax(230px, 0.85fr);
  gap: 48px;
}

.footer-brand img {
  width: 210px;
  height: auto;
  display: block;
}

.footer-chamber-badge {
  width: min(100%, 270px);
  margin-top: 22px;
  padding: 11px 13px;
  display: flex;
  align-items: center;
  gap: 11px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 22px rgba(16, 35, 63, 0.12);
}

.footer-account .footer-chamber-badge img {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  object-fit: contain;
}

.footer-account .footer-chamber-badge p {
  margin: 0;
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 800;
  line-height: 1.25;
}

.footer-chamber-badge p span {
  display: block;
  margin-bottom: 3px;
  color: var(--brand-blue);
  font-size: 0.58rem;
  font-weight: 950;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.footer-brand p,
.footer-account p {
  max-width: 390px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1rem;
  line-height: 1.6;
}

.footer-nav,
.footer-contact,
.footer-account {
  padding-top: 18px;
}

.footer-nav h2,
.footer-contact h2,
.footer-account h2 {
  margin: 0 0 22px;
  color: var(--white);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-nav a {
  width: fit-content;
  margin-top: 14px;
  display: block;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
  text-decoration: none;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: var(--water-blue);
}

.footer-contact {
  font-style: normal;
}

.footer-contact a {
  width: fit-content;
  margin-top: 14px;
  display: block;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 650;
  line-height: 1.5;
  text-decoration: none;
}

.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: var(--water-blue);
}

.footer-contact p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
  line-height: 1.5;
}

.footer-account p {
  margin-top: 0;
}

.footer-account a {
  margin-top: 24px;
  padding: 14px 20px;
  display: inline-block;
  border: 3px solid var(--white);
  border-radius: 999px;
  color: var(--navy);
  background: var(--white);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.035em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 180ms ease;
}

.footer-account a:hover,
.footer-account a:focus-visible {
  background: var(--water-blue);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-bottom p {
  width: min(100% - 40px, 1180px);
  margin: 0 auto;
  padding: 24px 0 28px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.84rem;
}

@media (max-width: 800px) {
  .footer-main {
    padding: 56px 0 48px;
    grid-template-columns: 1fr 1fr;
    gap: 44px 32px;
  }

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

@media (max-width: 540px) {
  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }
}

.subpage-main {
  min-height: 60vh;
  background: #f8fbff;
}

body.modal-open {
  overflow: hidden;
}

.location-modal {
  width: min(1120px, calc(100% - 32px));
  max-width: none;
  max-height: calc(100vh - 32px);
  padding: 0;
  border: 0;
  border-radius: 28px;
  overflow: auto;
  color: var(--navy);
  background: var(--white);
  box-shadow: 0 30px 90px rgba(16, 35, 63, 0.32);
}

.location-modal::backdrop {
  background: rgba(16, 35, 63, 0.72);
  backdrop-filter: blur(7px);
}

.location-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 2px solid var(--navy);
  border-radius: 50%;
  color: var(--navy);
  background: var(--white);
  font-size: 1.65rem;
  line-height: 1;
  cursor: pointer;
}

.location-modal-grid {
  display: grid;
  grid-template-columns: minmax(310px, 0.85fr) minmax(0, 1.35fr);
}

.location-popup-info {
  min-height: 560px;
  padding: 56px 46px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #f8fbff;
}

.location-popup-info h2 {
  margin: 16px 0 0;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 950;
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.location-popup-info address {
  margin-top: 30px;
  font-style: normal;
  font-size: 1.08rem;
  line-height: 1.6;
}

.location-popup-info > a:not(.directions-button) {
  width: fit-content;
  margin-top: 12px;
  color: var(--brand-blue);
  font-weight: 800;
  text-decoration: none;
}

.location-popup-map iframe {
  width: 100%;
  height: 100%;
  min-height: 560px;
  display: block;
  border: 0;
}

@media (max-width: 760px) {
  .location-modal-grid {
    grid-template-columns: 1fr;
  }

  .location-popup-info {
    min-height: auto;
    padding: 70px 28px 42px;
  }

  .location-popup-map iframe {
    min-height: 360px;
  }
}

.page-hero {
  padding: 92px 20px 104px;
  color: var(--white);
  background: var(--brand-blue);
  text-align: center;
}

.services-hero {
  background-image:
    linear-gradient(rgba(81, 139, 209, 0.88), rgba(81, 139, 209, 0.88)),
    url("Photos/Service-Banner.webp");
  background-position: center 48%;
  background-size: cover;
  background-repeat: no-repeat;
}

.about-hero {
  background-image:
    linear-gradient(rgba(81, 139, 209, 0.88), rgba(81, 139, 209, 0.88)),
    url("Photos/Carwash.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.fundraising-hero {
  background-image:
    linear-gradient(rgba(81, 139, 209, 0.88), rgba(81, 139, 209, 0.88)),
    url("Photos/Blue-Falls.webp");
  background-position: center 35%;
  background-size: cover;
  background-repeat: no-repeat;
}

.services-blue-section {
  width: min(100%, 2000px);
  height: 300px;
  margin-inline: auto;
  background: #3678c9;
  overflow: hidden;
}

.prewash-feature {
  width: min(100%, 2000px);
  height: 300px;
  margin-inline: auto;
  overflow: hidden;
  background: #a2c1e6;
}

.prewash-feature-inner {
  width: min(100% - 40px, 1120px);
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(40px, 6vw, 76px);
}

.prewash-feature-copy {
  max-width: 630px;
}

.prewash-feature-copy h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.7rem, 2.4vw, 2.65rem);
  font-weight: 950;
  line-height: 1;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.prewash-feature-copy p {
  margin: 20px 0 0;
  color: var(--white);
  font-size: clamp(0.98rem, 1.25vw, 1.12rem);
  line-height: 1.55;
}

.prewash-feature-copy strong {
  color: var(--white);
  font-weight: 950;
}

.prewash-feature-inner img {
  width: 348px;
  height: 260px;
  flex: 0 0 auto;
  border-radius: 22px;
  object-fit: cover;
  box-shadow: 0 14px 32px rgba(16, 35, 63, 0.16);
}

.towel-dry-feature {
  width: min(100%, 2000px);
  height: 300px;
  margin-inline: auto;
  overflow: hidden;
  background: #7ea9dd;
}

.towel-dry-feature-inner {
  width: min(100% - 40px, 1120px);
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: clamp(40px, 6vw, 76px);
}

.towel-dry-feature-inner img {
  width: 348px;
  height: 260px;
  flex: 0 0 auto;
  border-radius: 22px;
  object-fit: cover;
  object-position: center 42%;
  box-shadow: 0 14px 32px rgba(16, 35, 63, 0.16);
}

.towel-dry-feature-copy {
  max-width: 650px;
}

.towel-dry-feature-copy h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.7rem, 2.4vw, 2.65rem);
  font-weight: 950;
  line-height: 1;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.towel-dry-feature-copy p {
  margin: 20px 0 0;
  color: var(--white);
  font-size: clamp(0.98rem, 1.25vw, 1.12rem);
  line-height: 1.55;
}

.glass-cleaner-feature {
  width: min(100%, 2000px);
  height: 300px;
  margin-inline: auto;
  overflow: hidden;
  background: var(--brand-blue);
}

.glass-cleaner-feature-inner {
  width: min(100% - 40px, 1120px);
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(40px, 6vw, 76px);
}

.glass-cleaner-feature-inner img {
  width: 348px;
  height: 260px;
  flex: 0 0 auto;
  border-radius: 22px;
  object-fit: cover;
  box-shadow: 0 14px 32px rgba(16, 35, 63, 0.16);
}

.glass-cleaner-feature-copy {
  max-width: 630px;
}

.glass-cleaner-feature-copy h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.7rem, 2.4vw, 2.65rem);
  font-weight: 950;
  line-height: 1;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.glass-cleaner-feature-copy p {
  margin: 20px 0 0;
  color: var(--white);
  font-size: clamp(0.98rem, 1.25vw, 1.12rem);
  line-height: 1.55;
}

.services-blue-inner {
  width: min(100% - 40px, 1120px);
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: clamp(40px, 6vw, 76px);
}

.services-blue-inner img {
  width: 348px;
  height: 260px;
  flex: 0 0 auto;
  border-radius: 22px;
  object-fit: cover;
  box-shadow: 0 14px 32px rgba(16, 35, 63, 0.2);
}

.services-blue-copy {
  max-width: 620px;
}

.services-blue-copy h2 {
  margin: 0 0 0 5px;
  color: var(--white);
  font-size: clamp(1.7rem, 2.4vw, 2.65rem);
  font-weight: 950;
  line-height: 1;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.services-blue-copy h2 span {
  display: block;
}

.services-blue-copy h2 span:first-child {
  white-space: nowrap;
}

.services-blue-copy p {
  margin: 20px 0 0;
  color: var(--white);
  font-size: clamp(0.98rem, 1.25vw, 1.12rem);
  font-weight: 500;
  line-height: 1.55;
}

.service-details-flow {
  position: relative;
  width: min(100%, 2000px);
  margin-inline: auto;
  isolation: isolate;
}

.service-details-flow::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: url("Photos/Bubbles.webp") center / cover no-repeat;
  content: "";
  opacity: 0.42;
  pointer-events: none;
}

.prewash-feature-inner,
.towel-dry-feature-inner,
.glass-cleaner-feature-inner,
.services-blue-inner {
  position: relative;
  z-index: 2;
}

@media (max-width: 760px) {
  .prewash-feature {
    height: auto;
  }

  .prewash-feature-inner {
    padding: 48px 0 28px;
    flex-direction: column;
    gap: 34px;
    text-align: center;
  }

  .prewash-feature-inner img {
    order: 1;
  }

  .prewash-feature-copy {
    order: 2;
  }

  .prewash-feature-inner img {
    width: min(100%, 430px);
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .towel-dry-feature {
    height: auto;
  }

  .towel-dry-feature-inner {
    padding: 28px 0 48px;
    flex-direction: column;
    gap: 34px;
    text-align: center;
  }

  .towel-dry-feature-copy {
    order: 1;
  }

  .towel-dry-feature-inner img {
    order: 2;
  }

  .towel-dry-feature-inner img {
    width: min(100%, 430px);
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .glass-cleaner-feature {
    height: auto;
  }

  .glass-cleaner-feature-inner {
    padding: 48px 0 28px;
    flex-direction: column;
    gap: 34px;
    text-align: center;
  }

  .glass-cleaner-feature-inner img {
    order: 1;
  }

  .glass-cleaner-feature-copy {
    order: 2;
  }

  .glass-cleaner-feature-inner img {
    width: min(100%, 430px);
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .services-blue-section {
    height: auto;
  }

  .services-blue-inner {
    padding: 28px 0 48px;
    flex-direction: column;
    gap: 34px;
    text-align: center;
  }

  .services-blue-copy {
    order: 1;
  }

  .services-blue-inner img {
    order: 2;
  }

  .services-blue-inner img {
    width: min(100%, 430px);
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .services-blue-copy h2 span:first-child {
    white-space: normal;
  }
}

.page-eyebrow {
  margin: 0;
  color: var(--coral);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-hero h1 {
  margin: 18px 0 0;
  font-size: clamp(3.5rem, 7vw, 7.5rem);
  font-weight: 950;
  line-height: 0.9;
  letter-spacing: -0.055em;
}

.page-hero > p:last-child {
  margin: 24px auto 0;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  font-weight: 600;
}

.page-start {
  width: min(100% - 40px, 1040px);
  margin-inline: auto;
  padding: 92px 0 110px;
  text-align: center;
}

.about-story {
  width: min(100% - 40px, 1120px);
  margin-inline: auto;
  padding: 92px 0 110px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  align-items: center;
  gap: clamp(48px, 6vw, 86px);
}

.about-story-heading {
  grid-column: 2;
  grid-row: 1;
  max-width: 460px;
  margin: 0;
  text-align: left;
}

.about-story-heading h2 {
  margin: 16px 0 0;
  color: var(--brand-blue);
  font-size: clamp(2.35rem, 5vw, 4.7rem);
  font-weight: 950;
  line-height: 0.98;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.grand-opening-date {
  margin: 8px 0 0;
  color: var(--navy);
  font-size: 0.96rem;
  font-weight: 850;
}

.about-story-heading > h2 + p {
  margin: 24px auto 0;
  color: #53657d;
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  line-height: 1.65;
}

.chamber-member-badge {
  width: fit-content;
  margin-top: 30px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 2px solid rgba(81, 139, 209, 0.28);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(16, 35, 63, 0.1);
}

.chamber-badge-logo {
  width: 64px;
  height: 64px;
  flex: 0 0 auto;
  display: block;
  object-fit: contain;
}

.chamber-member-badge p {
  margin: 0;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.25;
}

.chamber-member-badge p span {
  display: block;
  margin-bottom: 4px;
  color: var(--brand-blue);
  font-size: 0.7rem;
  font-weight: 950;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.grand-opening-gallery {
  grid-column: 1;
  grid-row: 1;
  width: 100%;
}

.grand-opening-stage {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 28px;
  background: var(--navy);
  box-shadow: 0 22px 52px rgba(16, 35, 63, 0.2);
}

.grand-opening-track {
  height: 100%;
  display: flex;
  transition: transform 520ms cubic-bezier(0.22, 0.75, 0.25, 1);
  will-change: transform;
}

.grand-opening-slide {
  width: 100%;
  height: 100%;
  flex: 0 0 100%;
  display: block;
  object-fit: cover;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 24px rgba(16, 35, 63, 0.2);
  font-size: 1.35rem;
  font-weight: 900;
  cursor: pointer;
  transform: translateY(-50%);
}

.gallery-arrow:hover,
.gallery-arrow:focus-visible {
  color: var(--white);
  background: var(--coral);
}

.gallery-arrow-prev {
  left: 24px;
}

.gallery-arrow-next {
  right: 24px;
}

.gallery-controls {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.gallery-controls button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #b9c9dc;
  cursor: pointer;
  transition: width 180ms ease, background-color 180ms ease;
}

.gallery-controls button.is-active {
  width: 30px;
  background: var(--coral);
}

@media (max-width: 860px) {
  .about-story {
    grid-template-columns: 1fr;
    gap: 46px;
    padding: 68px 0 88px;
  }

  .grand-opening-gallery {
    grid-column: 1;
    grid-row: 1;
  }

  .about-story-heading {
    grid-column: 1;
    grid-row: 2;
    max-width: 680px;
    margin-inline: auto;
    text-align: center;
  }

  .chamber-member-badge {
    margin-inline: auto;
    text-align: left;
  }
}

.page-start h2,
.location-info h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.1rem, 3.5vw, 3.6rem);
  font-weight: 950;
  line-height: 1;
  letter-spacing: -0.04em;
}

.page-start p {
  margin: 22px auto 0;
  color: #53657d;
  font-size: 1.12rem;
  line-height: 1.6;
}

.fundraising-timeline-section {
  width: min(100% - 40px, 1080px);
  margin-inline: auto;
  padding: 92px 0 118px;
}

.fundraising-intro {
  max-width: 800px;
  margin: 0 auto 72px;
  text-align: center;
}

.fundraising-intro h2 {
  margin: 16px 0 0;
  color: var(--brand-blue);
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 950;
  line-height: 0.98;
  letter-spacing: -0.052em;
  text-wrap: balance;
}

.fundraising-intro > p:last-child {
  max-width: 700px;
  margin: 24px auto 0;
  color: #53657d;
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  line-height: 1.65;
}

.impact-timeline {
  position: relative;
  padding-bottom: 10px;
}

.impact-timeline::before {
  position: absolute;
  top: 28px;
  bottom: 42px;
  left: 73px;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(var(--brand-blue), var(--coral));
  content: "";
}

.timeline-event {
  position: relative;
  display: grid;
  grid-template-columns: 148px minmax(0, 1fr);
  align-items: start;
  gap: 34px;
}

.timeline-year {
  position: relative;
  z-index: 2;
  width: 104px;
  margin: 36px auto 0;
  padding: 13px 10px;
  border: 5px solid #f8fbff;
  border-radius: 999px;
  color: var(--white);
  background: var(--brand-blue);
  box-shadow: 0 8px 22px rgba(16, 35, 63, 0.16);
  font-size: 1.1rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-align: center;
}

.timeline-event-card {
  padding: clamp(34px, 5vw, 58px);
  border: 1px solid rgba(81, 139, 209, 0.18);
  border-radius: 28px;
  background: var(--white);
  box-shadow: 0 18px 46px rgba(16, 35, 63, 0.12);
}

.grace-ministry-logo {
  width: min(100%, 320px);
  height: auto;
  display: block;
  object-fit: contain;
}

.timeline-event-label {
  margin: 32px 0 0;
  color: var(--coral);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.timeline-event-card h3,
.timeline-more h3 {
  margin: 12px 0 0;
  color: var(--navy);
  font-size: clamp(2rem, 3.6vw, 3.55rem);
  font-weight: 950;
  line-height: 1;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.timeline-event-card > p:not(.timeline-event-label) {
  margin: 22px 0 0;
  color: #53657d;
  font-size: 1.05rem;
  line-height: 1.7;
}

.timeline-more {
  position: relative;
  margin: 74px 0 0 182px;
  padding: 40px 44px;
  border-radius: 24px;
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 16px 40px rgba(16, 35, 63, 0.2);
}

.timeline-more-dot {
  position: absolute;
  top: 48px;
  left: -121px;
  width: 22px;
  height: 22px;
  border: 5px solid #f8fbff;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 5px 15px rgba(16, 35, 63, 0.18);
}

.timeline-more .page-eyebrow {
  color: var(--coral);
}

.timeline-more h3 {
  color: var(--white);
}

.timeline-more p:not(.page-eyebrow) {
  max-width: 700px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.03rem;
  line-height: 1.65;
}

.timeline-more a {
  width: fit-content;
  margin-top: 26px;
  padding: 14px 22px;
  display: inline-block;
  border: 2px solid var(--white);
  border-radius: 999px;
  color: var(--navy);
  background: var(--white);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}

.timeline-more a:hover,
.timeline-more a:focus-visible {
  color: var(--white);
  background: var(--coral);
}

@media (max-width: 700px) {
  .fundraising-timeline-section {
    padding: 68px 0 88px;
  }

  .fundraising-intro {
    margin-bottom: 52px;
  }

  .impact-timeline::before {
    left: 20px;
  }

  .timeline-event {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 16px;
  }

  .timeline-year {
    width: 72px;
    margin: 30px 0 0 -15px;
    padding: 10px 5px;
    border-width: 4px;
    font-size: 0.86rem;
  }

  .timeline-event-card {
    padding: 30px 24px;
    border-radius: 22px;
  }

  .timeline-more {
    margin: 52px 0 0 58px;
    padding: 32px 25px;
  }

  .timeline-more-dot {
    top: 40px;
    left: -48px;
  }
}

.location-section {
  width: min(100% - 40px, 1180px);
  margin-inline: auto;
  padding: 88px 0 110px;
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1.35fr);
  gap: 36px;
}

.location-info,
.map-panel {
  min-height: 510px;
  border-radius: 28px;
  overflow: hidden;
}

.location-info {
  padding: 44px;
  color: var(--navy);
  background: var(--white);
  box-shadow: 0 16px 38px rgba(16, 35, 63, 0.1);
}

.location-info h2 {
  margin-top: 16px;
}

.location-info address {
  margin-top: 30px;
  font-style: normal;
  font-size: 1.08rem;
  line-height: 1.6;
}

.location-info > a:not(.directions-button) {
  width: fit-content;
  margin-top: 12px;
  display: block;
  color: var(--brand-blue);
  font-weight: 800;
  text-decoration: none;
}

.location-hours {
  margin-top: 30px;
}

.location-hours h3 {
  margin: 0 0 10px;
  font-size: 1rem;
  font-weight: 900;
}

.location-hours p {
  margin: 5px 0 0;
  color: #53657d;
  line-height: 1.45;
}

.directions-button {
  margin-top: 30px;
  padding: 15px 22px;
  display: inline-block;
  border-radius: 999px;
  color: var(--white);
  background: var(--coral);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}

.map-panel iframe {
  width: 100%;
  height: 100%;
  min-height: 510px;
  display: block;
  border: 0;
}

@media (max-width: 820px) {
  .location-section {
    grid-template-columns: 1fr;
  }

  .location-info,
  .map-panel,
  .map-panel iframe {
    min-height: 440px;
  }
}

@media (max-width: 540px) {
  .page-hero {
    padding: 72px 20px 80px;
  }

  .location-info {
    padding: 34px 26px;
  }
}

.reviews-slider {
  width: min(100%, 1180px);
  margin: 52px auto 0;
}

.reviews-track {
  width: 100%;
  height: 230px;
  overflow: hidden;
  border-radius: 28px;
  background: var(--white);
  box-shadow: 0 16px 38px rgba(16, 35, 63, 0.14);
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

.reviews-track.is-dragging {
  cursor: grabbing;
}

.reviews-group {
  display: flex;
  width: 100%;
  height: 100%;
  will-change: transform;
}

.review-card {
  flex: 0 0 100%;
  min-height: 230px;
  padding: 44px 52px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 28px;
  color: #111111;
  background: var(--white);
  text-align: center;
}

.review-quote {
  max-width: 980px;
  margin: 0;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.45;
  text-wrap: balance;
}

.review-source {
  margin: 22px 0 0;
  color: #7a7a7a;
  font-size: clamp(0.82rem, 1vw, 0.95rem);
  font-weight: 500;
  line-height: 1.4;
}

.review-dots {
  margin-top: 22px;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.review-dots button {
  width: 10px;
  height: 10px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  transition: background-color 180ms ease, transform 180ms ease;
  touch-action: manipulation;
}

.review-dots button.is-active {
  background: var(--navy);
  transform: scale(1.3);
}

@media (max-width: 600px) {
  .reviews-track {
    height: 260px;
  }

  .review-card {
    min-height: 260px;
    padding: 32px 24px;
  }
}

.blue-feature-inner {
  width: min(100% - 40px, 1180px);
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.blue-feature-copy {
  width: min(48%, 570px);
}

.blue-feature-copy h2 {
  margin: 0;
  color: var(--white);
  font-family: "Arial Black", "Arial Narrow Bold", Impact, sans-serif;
  font-size: clamp(2.6rem, 4vw, 4.5rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.blue-feature-copy p {
  max-width: 590px;
  margin: 24px 0 0;
  color: var(--white);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  font-weight: 500;
  line-height: 1.6;
}

.extra-care-list {
  max-width: 560px;
  margin: 20px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px 24px;
  color: var(--white);
  font-size: 0.91rem;
  font-weight: 750;
  line-height: 1.25;
  list-style: none;
}

.extra-care-list li {
  position: relative;
  padding-left: 20px;
}

.extra-care-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--white);
  content: "✓";
  font-weight: 950;
}

.services-button {
  margin-top: 24px;
  padding: 15px 24px;
  display: inline-block;
  border: 3px solid var(--white);
  border-radius: 999px;
  color: var(--navy);
  background: var(--white);
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.035em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 180ms ease;
}

.services-button:hover,
.services-button:focus-visible {
  background: var(--coral);
}

.memberships-section {
  width: min(100%, 2000px);
  min-height: 390px;
  margin-inline: auto;
  padding: 88px 20px 96px;
  color: var(--navy);
  background: #f8fbff;
  text-align: center;
}

.memberships-eyebrow {
  margin: 0;
  color: var(--brand-blue);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.memberships-section h2 {
  margin: 16px 0 0;
  color: var(--navy);
  font-size: clamp(2rem, 3.4vw, 3.5rem);
  font-weight: 950;
  line-height: 1;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.memberships-intro {
  margin: 20px auto 0;
  color: #53657d;
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  font-weight: 400;
  line-height: 1.55;
  text-wrap: balance;
}

.membership-levels {
  width: min(100%, 1120px);
  margin: 48px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.membership-card {
  min-height: 580px;
  padding: 34px 32px 38px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 28px;
  text-align: center;
}

.membership-card > .membership-number {
  order: 0;
}

.membership-card > h3 {
  order: 1;
}

.membership-card > .wash-pricing {
  order: 2;
}

.membership-card > p {
  order: 3;
}

.membership-card > h4,
.membership-card > ul {
  order: 4;
}

.membership-card > .extra-care-included {
  order: 5;
  width: 100%;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.42);
  font-size: 0.8rem;
  font-weight: 850;
  line-height: 1.35;
}

.membership-card-express {
  color: var(--white);
  background: var(--coral);
}

.membership-card-wheels {
  color: var(--white);
  background: var(--brand-blue);
}

.membership-card-ultimate {
  color: var(--white);
  background: var(--navy);
}

.membership-number {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.membership-card h3 {
  margin: 28px 0 0;
  color: inherit;
  font-size: clamp(1.55rem, 2.1vw, 2.1rem);
  font-weight: 950;
  line-height: 1.05;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.membership-card p {
  margin: 22px 0 0;
  color: inherit;
  font-size: 1rem;
  font-weight: 550;
  line-height: 1.55;
  text-wrap: balance;
}

.membership-card h4 {
  margin: 24px 0 0;
  color: inherit;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.membership-card ul {
  margin: 12px auto 0;
  padding-left: 22px;
  color: inherit;
  text-align: left;
}

.membership-card li {
  margin-top: 7px;
  font-size: 0.98rem;
  font-weight: 650;
}

.membership-card .express-extra-title {
  margin-top: 24px;
}

.membership-card .express-extra-list {
  width: 100%;
  margin: 13px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 16px;
  list-style: none;
  text-align: left;
}

.membership-card .express-extra-list li {
  position: relative;
  margin: 0;
  padding-left: 16px;
  font-size: 0.76rem;
  line-height: 1.25;
}

.membership-card .express-extra-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "✓";
  font-weight: 950;
}

.wash-pricing {
  width: 100%;
  margin-top: 24px;
  padding: 0;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 10px;
  border: 0;
  background: transparent;
}

.wash-price-option {
  min-height: 104px;
  padding: 14px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  border: 1px solid var(--white);
  border-radius: 16px;
  color: var(--navy);
  background: var(--white);
}

.wash-price-option span {
  font-size: 0.66rem;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-transform: uppercase;
}

.wash-price-option strong {
  margin-top: 8px;
  color: inherit;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  font-weight: 950;
  line-height: 1;
}

.wash-price-option strong small {
  font-size: 0.62rem;
  font-weight: 850;
}

.wash-price-option em {
  margin-top: 5px;
  font-size: 0.62rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.05em;
  opacity: 0.8;
  text-transform: uppercase;
}

.wash-price-unlimited {
  background: var(--white);
}

.memberships-cta {
  margin: 42px auto 0;
  padding: 16px 28px;
  display: inline-block;
  border: 3px solid var(--brand-blue);
  border-radius: 999px;
  color: var(--white);
  background: var(--brand-blue);
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.045em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 180ms ease, border-color 180ms ease;
}

.memberships-cta:hover,
.memberships-cta:focus-visible {
  border-color: var(--coral);
  background: var(--coral);
}

@media (max-width: 850px) {
  .membership-levels {
    width: min(100%, 520px);
    grid-template-columns: 1fr;
  }

  .membership-card {
    min-height: 330px;
  }
}

.bottles-visual {
  position: relative;
  width: min(52%, 580px);
  align-self: flex-end;
}

.bottles-visual::before {
  position: absolute;
  right: 8%;
  bottom: 8px;
  left: 12%;
  z-index: 0;
  height: 42%;
  border-radius: 50%;
  background: rgba(16, 35, 63, 0.34);
  content: "";
  filter: blur(28px);
  transform: translateY(10%);
}

.bottles-image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

@media (max-width: 760px) {
  .blue-feature-section {
    height: auto;
    min-height: 650px;
  }

  .blue-feature-inner {
    padding: 54px 0 0;
    flex-direction: column;
    justify-content: space-between;
    gap: 28px;
    text-align: center;
  }

  .blue-feature-copy {
    width: min(100%, 520px);
  }

  .blue-feature-copy p {
    margin-inline: auto;
  }

  .extra-care-list {
    width: min(100%, 410px);
    margin-inline: auto;
    text-align: left;
  }

  .bottles-visual {
    width: min(100%, 500px);
    align-self: center;
  }
}

@media (max-width: 760px) {
  .wash-features {
    width: min(100% - 32px, 520px);
    padding: 52px 0 80px;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .feature-card {
    min-height: 230px;
  }

  .icon-placeholder {
    width: 90px;
    height: 90px;
  }
}

@media (max-width: 900px) {
  .hero {
    height: auto;
    min-height: 650px;
    padding: 24px 20px 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--white);
  }

  .hero::before {
    inset: 0;
    background-image: url("Photos/Gallery/7.webp");
    background-position: center calc(50% + 30px);
    background-size: auto 115%;
  }

  .hero-image {
    position: relative;
    inset: auto;
    width: min(190vw, 1400px);
    max-width: none;
    margin: -55px 0 -15px clamp(-90px, -14vw, -48px);
    align-self: flex-start;
  }

  .hero-content {
    position: relative;
    inset: auto;
    width: min(100%, 560px);
    margin-top: 0;
    padding: 16px 22px 15px;
    border: 1px solid rgba(255, 255, 255, 0.36);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.4);
    box-shadow: 0 14px 34px rgba(16, 35, 63, 0.2);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
  }

  .hero-title {
    color: var(--navy);
    font-size: clamp(3.2rem, 9vw, 5rem);
    text-shadow: 0 3px 8px rgba(255, 255, 255, 0.72);
  }

  .hero-offer {
    margin-top: 22px;
    color: var(--navy);
    font-size: 1rem;
    line-height: 1.4;
    text-shadow: 0 2px 7px rgba(255, 255, 255, 0.78);
  }

  .hero-offer strong {
    color: var(--navy);
  }

  .hero-actions {
    margin-top: 20px;
    gap: 10px;
  }

  .hero-button {
    min-width: 150px;
    padding: 13px 17px;
    font-size: 0.78rem;
  }
}

@media (max-width: 1040px) {
  .desktop-nav { display: none; }
  .mobile-menu { display: block; }
}

@media (max-width: 560px) {
  .navbar {
    width: min(100% - 24px, 1240px);
    min-height: 88px;
  }

  .brand img { width: 146px; height: 72px; }
  .mobile-menu ul { width: calc(100vw - 24px); }
  main { min-height: calc(100vh - 88px); }
}

/* Cohesive motion system */
.page-hero h1,
.page-hero > p,
.hero-image,
.hero-content > *,
.why-alvin > * {
  animation: page-rise-in 760ms cubic-bezier(0.22, 0.75, 0.25, 1) both;
}

.page-hero > p {
  animation-delay: 110ms;
}

.hero-image {
  animation-name: hero-image-in;
  animation-duration: 920ms;
}

.hero-content .hero-title {
  animation-delay: 120ms;
}

.hero-content .hero-offer {
  animation-delay: 220ms;
}

.hero-content .hero-actions {
  animation-delay: 320ms;
}

.why-alvin h2 {
  animation-delay: 440ms;
}

.why-alvin blockquote {
  animation-delay: 520ms;
}

.animations-ready .reveal-on-scroll {
  opacity: 0;
  transform: translate3d(0, 32px, 0);
  transition:
    opacity 680ms cubic-bezier(0.22, 0.75, 0.25, 1),
    transform 680ms cubic-bezier(0.22, 0.75, 0.25, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.animations-ready .reveal-on-scroll.reveal-left {
  transform: translate3d(-42px, 0, 0);
}

.animations-ready .reveal-on-scroll.reveal-right {
  transform: translate3d(42px, 0, 0);
}

.animations-ready .reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.feature-card,
.membership-card {
  transition:
    opacity 680ms cubic-bezier(0.22, 0.75, 0.25, 1),
    transform 220ms ease,
    box-shadow 220ms ease;
}

.feature-card.is-visible:hover,
.membership-card.is-visible:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 38px rgba(16, 35, 63, 0.16);
}

.prewash-feature-inner img,
.towel-dry-feature-inner img,
.glass-cleaner-feature-inner img,
.services-blue-inner img,
.bottles-image,
.grand-opening-stage {
  transition: transform 320ms ease, box-shadow 320ms ease;
}

.prewash-feature:hover .prewash-feature-inner img,
.towel-dry-feature:hover .towel-dry-feature-inner img,
.glass-cleaner-feature:hover .glass-cleaner-feature-inner img,
.services-blue-section:hover .services-blue-inner img {
  transform: scale(1.018);
  box-shadow: 0 18px 40px rgba(16, 35, 63, 0.24);
}

@keyframes page-rise-in {
  from {
    opacity: 0;
    transform: translate3d(0, 24px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes hero-image-in {
  from {
    opacity: 0;
    transform: translate3d(-46px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .animations-ready .reveal-on-scroll {
    opacity: 1 !important;
    transform: none !important;
  }

}

/* Deployment-safe desktop build hardening */
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 5000;
  padding: 12px 18px;
  border-radius: 10px;
  color: var(--white);
  background: var(--navy);
  font-weight: 900;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

#memberships,
#service-extras {
  scroll-margin-top: 120px;
}

.nav-links a {
  min-height: 44px;
  padding: 11px 4px;
  display: inline-flex;
  align-items: center;
}

.hero {
  background: var(--brand-blue);
}

.hero::before {
  display: none;
}

.hero-media {
  position: absolute;
  z-index: 0;
  inset: 0;
  display: block;
  overflow: hidden;
  background: var(--brand-blue);
}

.hero-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}

.review-dots {
  gap: 2px;
}

.review-dots button {
  position: relative;
  width: 44px;
  height: 44px;
  background: transparent;
  transform: none;
}

.review-dots button::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  content: "";
  transform: translate(-50%, -50%);
}

.review-dots button.is-active {
  background: transparent;
  transform: none;
}

.review-dots button.is-active::before {
  width: 14px;
  height: 14px;
  background: var(--navy);
}

.home-gallery-dots {
  gap: 0;
  flex-wrap: wrap;
}

.home-gallery-dots button,
.home-gallery-dots button.is-active {
  position: relative;
  width: 28px;
  height: 28px;
  background: transparent;
}

.home-gallery-dots button::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.84);
  content: "";
  transform: translate(-50%, -50%);
}

.home-gallery-dots button.is-active::before {
  width: 18px;
  border-radius: 999px;
  background: var(--coral);
}

.gallery-controls button,
.gallery-controls button.is-active {
  position: relative;
  width: 44px;
  height: 44px;
  background: transparent;
}

.gallery-controls button::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #b9c9dc;
  content: "";
  transform: translate(-50%, -50%);
}

.gallery-controls button.is-active::before {
  width: 30px;
  border-radius: 999px;
  background: var(--coral);
}

@media (max-width: 900px) {
  .hero-media img {
    object-position: center 60%;
    transform: scale(1.15);
  }
}
