:root {
  --violet: #5B2FA6;
  --violet-dark: #432178;
  --violet-soft: #8161C5;
  --turquoise: #64D9D2;
  --turquoise-dark: #24AAA4;
  --blue-soft: #B8C9EC;
  --aqua: #DDF8F6;
  --background: #F7FCFD;
  --ink: #2E2540;
  --muted: #675F77;
  --white: #FFFFFF;
  --line: rgba(69, 43, 100, 0.13);
  --shadow-sm: 0 10px 30px rgba(71, 39, 110, 0.09);
  --shadow-lg: 0 28px 70px rgba(71, 39, 110, 0.17);
  --radius-sm: 1rem;
  --radius-md: 1.6rem;
  --radius-lg: 2.4rem;
  --container: 74rem;
  --font-heading: "Fredoka", "Trebuchet MS", sans-serif;
  --font-body: "Nunito", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6.5rem;
}

body {
  min-width: 20rem;
  margin: 0;
  color: var(--ink);
  background: var(--background);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  content: "";
  pointer-events: none;
  background-image: radial-gradient(circle at 10% 20%, rgba(100, 217, 210, 0.09) 0 1px, transparent 1.5px);
  background-size: 22px 22px;
  mask-image: linear-gradient(to bottom, #000, transparent 68%);
}

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

img {
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

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

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
  line-height: 1.04;
  letter-spacing: -0.035em;
}

h2 {
  font-size: clamp(2.35rem, 8vw, 4.8rem);
}

p {
  color: var(--muted);
}

::selection {
  color: var(--white);
  background: var(--violet);
}

:focus-visible {
  outline: 3px solid #2e124f;
  outline-offset: 4px;
  border-radius: 0.35rem;
}

.contact-section :focus-visible {
  outline-color: var(--white);
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: clamp(5rem, 10vw, 8.5rem);
}

.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: 1000;
  top: 1rem;
  left: 1rem;
  padding: 0.8rem 1rem;
  color: var(--white);
  background: var(--violet-dark);
  border-radius: 0.8rem;
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
  color: var(--violet);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow > span {
  font-size: 1.05rem;
}

.eyebrow-light {
  color: var(--turquoise);
}

.button {
  display: inline-flex;
  min-height: 3.5rem;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.95rem 1.35rem;
  border: 2px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

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

.button span {
  font-size: 1.15em;
  transition: transform 180ms ease;
}

.button:hover span {
  transform: translateX(3px);
}

.button-primary {
  color: var(--white);
  background: var(--violet);
  box-shadow: 0 12px 26px rgba(91, 47, 166, 0.24);
}

.button-primary:hover {
  background: var(--violet-dark);
  box-shadow: 0 16px 34px rgba(91, 47, 166, 0.31);
}

.button-secondary {
  color: var(--violet);
  background: var(--white);
  border-color: rgba(91, 47, 166, 0.14);
  box-shadow: var(--shadow-sm);
}

.button-secondary:hover {
  border-color: var(--violet);
}

.button-white {
  color: var(--violet);
  background: var(--white);
  box-shadow: 0 14px 32px rgba(25, 13, 50, 0.2);
}

.button-small {
  min-height: 2.75rem;
  padding: 0.75rem 1.05rem;
  font-size: 0.9rem;
}

/* Header */
.top-strip {
  color: var(--white);
  background: var(--violet-dark);
}

.top-strip-inner {
  display: flex;
  min-height: 2.1rem;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.top-strip p {
  margin: 0;
  color: inherit;
  font-size: 0.72rem;
  font-weight: 800;
}

.top-strip p:first-child {
  display: none;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(247, 252, 253, 0.9);
  border-bottom: 1px solid rgba(91, 47, 166, 0.09);
  backdrop-filter: blur(18px);
}

.nav-shell {
  position: relative;
  display: flex;
  min-height: 4.8rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.brand {
  position: relative;
  display: inline-grid;
  grid-template-columns: auto;
  padding: 0.15rem 0;
  line-height: 1;
}

.brand-word {
  position: relative;
  z-index: 1;
  color: var(--violet);
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.07em;
  text-shadow: 2px 2px 0 var(--aqua);
}

.brand-tagline {
  margin-top: 0.2rem;
  color: var(--ink);
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.brand-bubbles {
  position: absolute;
  top: -0.22rem;
  right: -1.05rem;
  width: 1.9rem;
  height: 1.4rem;
}

.brand-bubbles i {
  position: absolute;
  display: block;
  background: var(--turquoise);
  border: 2px solid var(--aqua);
  border-radius: 50%;
}

.brand-bubbles i:nth-child(1) {
  width: 0.65rem;
  height: 0.65rem;
  right: 0.15rem;
  bottom: 0;
}

.brand-bubbles i:nth-child(2) {
  width: 0.38rem;
  height: 0.38rem;
  top: 0.05rem;
  right: 0.9rem;
}

.brand-bubbles i:nth-child(3) {
  width: 0.25rem;
  height: 0.25rem;
  top: 0;
  right: 0.15rem;
}

.menu-toggle {
  display: none;
  width: 2.9rem;
  height: 2.9rem;
  padding: 0.7rem;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 0.3rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  width: 100%;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
}

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

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  opacity: 0;
}

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

.nav-list {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 0.35rem;
  padding-bottom: 0.8rem;
  overflow-x: auto;
  scrollbar-width: none;
}

.nav-list::-webkit-scrollbar {
  display: none;
}

.nav-list > a:not(.button) {
  flex: none;
  padding: 0.65rem 0.8rem;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
  border-radius: 999px;
}

.nav-list > a:not(.button):hover {
  color: var(--violet);
  background: var(--aqua);
}

.nav-cta {
  flex: none;
}

.js .menu-toggle {
  display: flex;
}

.js .nav-list {
  position: absolute;
  top: calc(100% - 0.3rem);
  right: 0;
  display: none;
  width: min(19rem, 100%);
  padding: 0.75rem;
  flex-direction: column;
  align-items: stretch;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 1.2rem;
  box-shadow: var(--shadow-lg);
}

.js .nav-list[data-open="true"] {
  display: flex;
}

.js .nav-list a {
  text-align: center;
}

/* Hero */
.hero {
  position: relative;
  padding: clamp(3.6rem, 8vw, 6.5rem) 0 0;
  background:
    radial-gradient(circle at 8% 15%, rgba(100, 217, 210, 0.31), transparent 22rem),
    linear-gradient(155deg, #f4feff 0%, #eef4ff 55%, #e3edff 100%);
  overflow: hidden;
}

.hero::after {
  position: absolute;
  z-index: 0;
  right: -7rem;
  bottom: 10rem;
  width: 17rem;
  height: 17rem;
  content: "";
  background: var(--turquoise);
  border-radius: 54% 46% 67% 33% / 42% 55% 45% 58%;
  opacity: 0.26;
  transform: rotate(18deg);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  gap: 3.5rem;
}

.hero-copy {
  max-width: 40rem;
}

.hero h1 {
  max-width: 13ch;
  margin-bottom: 1.35rem;
  color: var(--ink);
  font-size: clamp(3rem, 11vw, 5.65rem);
  font-weight: 700;
  letter-spacing: -0.065em;
  text-wrap: balance;
}

.hero h1 span {
  position: relative;
  display: inline-block;
  color: var(--violet);
  text-shadow: 4px 4px 0 rgba(100, 217, 210, 0.68);
  transform: rotate(-2deg);
}

.hero h1 span::after {
  position: absolute;
  right: -1.8rem;
  top: -0.6rem;
  content: "!";
  color: var(--turquoise-dark);
  font-size: 0.55em;
  transform: rotate(8deg);
}

.hero-lead {
  max-width: 36rem;
  margin-bottom: 1.7rem;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.hero-actions {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1.6rem;
}

.hero-actions .button {
  width: 100%;
}

.hero-points {
  display: flex;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  list-style: none;
}

.hero-points li {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 800;
}

.hero-points span {
  display: inline-grid;
  width: 1.25rem;
  height: 1.25rem;
  place-items: center;
  color: var(--white);
  background: var(--turquoise-dark);
  border-radius: 50%;
  font-size: 0.7rem;
}

.hero-visual {
  position: relative;
  width: min(100%, 30rem);
  margin-inline: auto;
}

.hero-photo-frame {
  position: relative;
  width: 88%;
  margin-inline: auto;
  padding: 0.65rem;
  background: var(--white);
  border-radius: 48% 48% 2rem 2rem / 25% 25% 2rem 2rem;
  box-shadow: var(--shadow-lg);
  transform: rotate(2deg);
}

.hero-photo-frame::before {
  position: absolute;
  z-index: -1;
  inset: -0.7rem 1.5rem 1rem -1rem;
  content: "";
  background: var(--turquoise);
  border-radius: inherit;
  transform: rotate(-5deg);
}

.hero-image {
  width: 100%;
  aspect-ratio: 0.86;
  background: linear-gradient(145deg, var(--blue-soft), var(--aqua));
  border-radius: 45% 45% 1.6rem 1.6rem / 23% 23% 1.6rem 1.6rem;
}

.hero-image-real {
  object-position: center 53%;
}

.photo-badge {
  position: absolute;
  z-index: 3;
  display: flex;
  min-width: 7.5rem;
  padding: 0.65rem 0.8rem;
  flex-direction: column;
  color: var(--ink);
  background: var(--white);
  border-radius: 1rem;
  box-shadow: var(--shadow-sm);
  font-size: 0.68rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.photo-badge strong {
  color: var(--violet);
  font-family: var(--font-heading);
  font-size: 1.35rem;
}

.photo-badge-top {
  top: 12%;
  left: -1.5rem;
  transform: rotate(-5deg);
}

.photo-sparkle {
  position: absolute;
  color: var(--white);
  filter: drop-shadow(0 3px 5px rgba(71, 39, 110, 0.2));
}

.sparkle-one {
  top: 7%;
  right: 7%;
  font-size: 2rem;
}

.sparkle-two {
  right: -0.5rem;
  bottom: 23%;
  color: var(--violet);
  font-size: 1.4rem;
}

.bubble-cluster span {
  position: absolute;
  background: rgba(221, 248, 246, 0.68);
  border: 3px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  box-shadow: inset 4px 5px 0 rgba(255, 255, 255, 0.6);
}

.bubble-cluster span:nth-child(1) {
  width: 3.7rem;
  height: 3.7rem;
  top: 7%;
  right: -1.2rem;
}

.bubble-cluster span:nth-child(2) {
  width: 1.8rem;
  height: 1.8rem;
  top: -2%;
  right: 19%;
}

.bubble-cluster span:nth-child(3) {
  width: 1.1rem;
  height: 1.1rem;
  top: 17%;
  right: -2rem;
}

.hero-note {
  position: absolute;
  z-index: 5;
  right: -0.4rem;
  bottom: 8%;
  display: flex;
  max-width: 12rem;
  padding: 0.8rem;
  align-items: center;
  gap: 0.65rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(91, 47, 166, 0.1);
  border-radius: 1rem;
  box-shadow: var(--shadow-sm);
  font-size: 0.78rem;
  line-height: 1.3;
  transform: rotate(-3deg);
}

.hero-note-icon {
  display: grid;
  width: 2.4rem;
  height: 2.4rem;
  flex: 0 0 auto;
  place-items: center;
  background: var(--aqua);
  border-radius: 50%;
  font-size: 1.15rem;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-orb-one {
  width: 2.8rem;
  height: 2.8rem;
  top: 11%;
  left: 3%;
  border: 0.7rem solid rgba(100, 217, 210, 0.28);
}

.hero-orb-two {
  width: 1rem;
  height: 1rem;
  top: 32%;
  left: 47%;
  background: var(--violet-soft);
  opacity: 0.3;
}

.choice-grid {
  position: relative;
  z-index: 3;
  display: grid;
  gap: 1rem;
  padding-block: clamp(4rem, 8vw, 6rem) 2.2rem;
}

.choice-card {
  position: relative;
  display: grid;
  min-height: 16rem;
  padding: 1.5rem;
  grid-template-columns: auto 1fr;
  align-content: start;
  gap: 1.15rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.choice-card::after {
  position: absolute;
  right: -2rem;
  bottom: -3rem;
  width: 8rem;
  height: 8rem;
  content: "";
  border: 1.5rem solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
}

.choice-card h2 {
  margin-bottom: 0.65rem;
  font-size: clamp(1.65rem, 4vw, 2.35rem);
}

.choice-card p {
  margin-bottom: 0;
}

.choice-card > a {
  position: absolute;
  z-index: 2;
  left: 1.5rem;
  bottom: 1.35rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 900;
}

.choice-card > a:hover span {
  transform: translateX(4px);
}

.choice-card > a span {
  transition: transform 180ms ease;
}

.choice-number {
  position: absolute;
  top: 1.15rem;
  right: 1.3rem;
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  opacity: 0.13;
}

.choice-icon {
  display: grid;
  width: 3.4rem;
  height: 3.4rem;
  place-items: center;
  background: rgba(255, 255, 255, 0.75);
  border-radius: 1rem;
  font-size: 1.6rem;
  transform: rotate(-4deg);
}

.choice-kicker {
  color: inherit;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.72;
}

.choice-grooming {
  color: var(--white);
  background: var(--violet);
}

.choice-grooming p,
.choice-grooming a {
  color: var(--white);
}

.choice-selfwash {
  color: var(--ink);
  background: var(--turquoise);
}

.choice-selfwash p,
.choice-selfwash a {
  color: var(--ink);
}

.service-ticker {
  color: var(--white);
  background: var(--violet-dark);
  overflow: hidden;
  transform: rotate(-1deg) scale(1.02);
}

.ticker-track {
  display: flex;
  width: max-content;
  padding-block: 0.85rem;
  align-items: center;
  gap: 1.6rem;
  animation: ticker 24s linear infinite;
}

.ticker-track span {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 600;
  white-space: nowrap;
}

.ticker-track i {
  color: var(--turquoise);
  font-style: normal;
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

/* Services */
.services-section {
  background: var(--white);
}

.section-heading {
  max-width: 47rem;
  margin-bottom: 3rem;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2 {
  margin-bottom: 1rem;
}

.section-heading h2 span,
.gallery-heading h2 span,
.selfwash-copy h2 span {
  color: var(--violet);
}

.section-heading > p:last-child {
  max-width: 39rem;
  margin-inline: auto;
  font-size: 1.08rem;
}

.services-grid {
  display: grid;
  gap: 1rem;
}

.service-card {
  position: relative;
  min-height: 18.5rem;
  padding: 1.5rem;
  background: var(--background);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
  overflow: hidden;
}

.service-card:hover {
  border-color: rgba(91, 47, 166, 0.3);
  box-shadow: var(--shadow-sm);
  transform: translateY(-6px);
}

.service-card::after {
  position: absolute;
  width: 6rem;
  height: 6rem;
  right: -2.5rem;
  bottom: -2.5rem;
  content: "";
  border: 1.1rem solid rgba(100, 217, 210, 0.24);
  border-radius: 50%;
}

.service-icon {
  display: grid;
  width: 3.5rem;
  height: 3.5rem;
  margin-bottom: 1.45rem;
  place-items: center;
  background: var(--aqua);
  border-radius: 1.05rem;
  font-size: 1.6rem;
  transform: rotate(-5deg);
}

.service-index {
  position: absolute;
  top: 1.25rem;
  right: 1.4rem;
  color: var(--violet);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.service-card h3 {
  margin-bottom: 0.7rem;
  font-size: 1.55rem;
}

.service-card > p:not(.service-index) {
  max-width: 29ch;
  margin-bottom: 1.3rem;
}

.service-card > a {
  position: absolute;
  z-index: 2;
  left: 1.5rem;
  bottom: 1.4rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--violet);
  font-weight: 900;
}

.service-card > a span {
  transition: transform 180ms ease;
}

.service-card > a:hover span {
  transform: translate(3px, -3px);
}

.service-card-featured {
  color: var(--white);
  background: var(--violet);
}

.service-card-featured p,
.service-card-featured a {
  color: rgba(255, 255, 255, 0.88);
}

.service-card-featured .service-index {
  color: var(--turquoise);
}

.service-card-featured .service-icon {
  background: rgba(255, 255, 255, 0.16);
}

.service-card-soft {
  background: var(--aqua);
}

.service-extra {
  display: grid;
  gap: 1.1rem;
  margin-top: 1rem;
  padding: 1.6rem;
  background: var(--aqua);
  border-radius: var(--radius-md);
}

.service-extra-icon {
  display: grid;
  width: 3.5rem;
  height: 3.5rem;
  place-items: center;
  font-size: 1.6rem;
  background: var(--background);
  border-radius: 50%;
}

.service-extra-kicker {
  margin-bottom: 0.2rem;
  color: var(--violet);
  font-weight: 900;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-extra h3 {
  margin-bottom: 0.5rem;
  font-size: 1.55rem;
}

.service-extra p:not(.service-extra-kicker) {
  max-width: 52ch;
}

.service-extra .button {
  justify-self: start;
}

/* Self wash */
.selfwash-section {
  background: linear-gradient(145deg, #dff9f7, #c7ecef);
  overflow: hidden;
}

.selfwash-section::before {
  position: absolute;
  top: -5rem;
  right: -5rem;
  width: 17rem;
  height: 17rem;
  content: "";
  border: 3rem solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
}

.selfwash-grid {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  gap: clamp(3rem, 8vw, 6rem);
}

.selfwash-visual {
  position: relative;
  width: min(100%, 32rem);
  margin-inline: auto;
}

.selfwash-photo {
  position: relative;
  padding: 0.65rem;
  background: var(--white);
  border-radius: 45% 45% var(--radius-lg) var(--radius-lg) / 18% 18% var(--radius-lg) var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transform: rotate(-2deg);
}

.image-disclaimer {
  position: absolute;
  z-index: 3;
  top: 1rem;
  left: 1rem;
  padding: 0.45rem 0.7rem;
  color: var(--violet-dark);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(91, 47, 166, 0.14);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  font-size: 0.72rem;
  font-weight: 900;
}

.image-disclaimer-location {
  right: 1rem;
  left: auto;
}

.selfwash-photo img {
  width: 100%;
  aspect-ratio: 0.9;
  background: var(--blue-soft);
  border-radius: 43% 43% 1.9rem 1.9rem / 17% 17% 1.9rem 1.9rem;
}

.wash-badge {
  position: absolute;
  right: -0.5rem;
  bottom: 8%;
  display: flex;
  max-width: 14rem;
  padding: 0.9rem;
  align-items: center;
  gap: 0.8rem;
  color: var(--white);
  background: var(--violet);
  border: 4px solid rgba(255, 255, 255, 0.85);
  border-radius: 1.2rem;
  box-shadow: var(--shadow-sm);
  line-height: 1.25;
  transform: rotate(3deg);
}

.wash-badge > span {
  font-size: 1.9rem;
}

.selfwash-copy h2 {
  margin-bottom: 1.2rem;
}

.section-lead {
  max-width: 38rem;
  margin-bottom: 1.7rem;
  color: #504967;
  font-size: 1.08rem;
}

.equipment-list {
  display: grid;
  margin: 0 0 2rem;
  padding: 0;
  gap: 0.65rem;
  list-style: none;
}

.equipment-list li {
  display: flex;
  padding: 0.75rem 0.9rem;
  align-items: center;
  gap: 0.7rem;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(91, 47, 166, 0.08);
  border-radius: 0.9rem;
}

.equipment-list li span {
  display: grid;
  width: 1.5rem;
  height: 1.5rem;
  place-items: center;
  color: var(--white);
  background: var(--violet);
  border-radius: 50%;
  font-size: 0.72rem;
}

.wash-steps {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 0.75rem;
  margin-top: clamp(3.5rem, 8vw, 6rem);
}

.wash-steps article {
  display: flex;
  padding: 1.1rem;
  align-items: flex-start;
  gap: 0.9rem;
  background: rgba(255, 255, 255, 0.69);
  border: 1px solid rgba(91, 47, 166, 0.08);
  border-radius: 1.2rem;
}

.wash-steps article > span {
  display: grid;
  width: 2.2rem;
  height: 2.2rem;
  flex: 0 0 auto;
  place-items: center;
  color: var(--white);
  background: var(--violet);
  border-radius: 0.7rem;
  font-family: var(--font-heading);
  font-weight: 700;
  transform: rotate(-4deg);
}

.wash-steps h3 {
  margin: 0.15rem 0 0.35rem;
  font-size: 1.12rem;
}

.wash-steps p {
  margin: 0;
  font-size: 0.9rem;
}

/* Gallery */
.gallery-section {
  background: var(--white);
}

.gallery-heading {
  display: grid;
  margin-bottom: 2.5rem;
  align-items: end;
  gap: 1rem;
}

.gallery-heading h2 {
  margin-bottom: 0;
}

.gallery-heading > p {
  max-width: 31rem;
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}

.gallery-grid {
  display: grid;
  gap: 1rem;
}

.gallery-item {
  position: relative;
  min-height: 18rem;
  aspect-ratio: 4 / 3;
  margin: 0;
  background: var(--aqua);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.gallery-image-bulldog {
  object-position: center 62%;
}

.gallery-image-gray {
  object-position: center;
}

.gallery-image {
  width: 100%;
  height: 100%;
  min-height: 18rem;
  transition: transform 500ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.gallery-item:hover .gallery-image {
  transform: scale(1.045);
}

.gallery-item figcaption {
  position: absolute;
  right: 0.9rem;
  bottom: 0.9rem;
  left: 0.9rem;
  display: flex;
  padding: 0.8rem 0.95rem;
  align-items: center;
  justify-content: space-between;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 0.9rem;
  box-shadow: 0 8px 24px rgba(34, 25, 56, 0.13);
  font-size: 0.85rem;
  font-weight: 900;
  backdrop-filter: blur(10px);
}

/* Contact */
.contact-section {
  padding-top: 2rem;
  background: var(--white);
}

.contact-card {
  display: grid;
  padding: clamp(1.4rem, 5vw, 3.2rem);
  gap: 2rem;
  color: var(--white);
  background:
    radial-gradient(circle at 15% 15%, rgba(100, 217, 210, 0.18), transparent 18rem),
    var(--violet-dark);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.contact-copy {
  align-self: center;
}

.contact-copy h2 {
  margin-bottom: 1.2rem;
  font-size: clamp(2.45rem, 7vw, 4.8rem);
}

.contact-copy h2 span {
  color: var(--turquoise);
}

.contact-copy > p:not(.eyebrow) {
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.05rem;
}

.contact-details {
  display: grid;
  gap: 0.8rem;
  margin-block: 1.7rem;
}

.contact-details > div {
  display: flex;
  padding: 0.9rem;
  align-items: flex-start;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 1rem;
}

.contact-details > div > span {
  display: grid;
  width: 2.2rem;
  height: 2.2rem;
  flex: 0 0 auto;
  place-items: center;
  color: var(--violet-dark);
  background: var(--turquoise);
  border-radius: 50%;
}

.contact-details p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.88rem;
}

.contact-details strong {
  display: block;
  margin-bottom: 0.15rem;
  color: var(--white);
}

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

.text-link-light {
  color: var(--white);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(100, 217, 210, 0.7);
  text-underline-offset: 0.25rem;
}

.contact-email {
  font-size: 0.78rem;
}

.location-card {
  position: relative;
  min-height: 25rem;
  border-radius: 1.8rem;
  overflow: hidden;
}

.location-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(to top, rgba(30, 16, 52, 0.78), transparent 58%);
  pointer-events: none;
}

.location-card img {
  width: 100%;
  height: 100%;
  min-height: 25rem;
  background: var(--blue-soft);
}

.location-overlay {
  position: absolute;
  z-index: 2;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}

.location-overlay p {
  display: flex;
  max-width: 18rem;
  margin: 0;
  align-items: flex-start;
  gap: 0.5rem;
  color: var(--white);
  line-height: 1.3;
}

.location-overlay a {
  flex: 0 0 auto;
  color: var(--turquoise);
  font-size: 0.86rem;
  font-weight: 900;
}

/* Footer */
.site-footer {
  padding: 5rem 0 1.4rem;
  background: #f0f7fa;
}

.footer-grid {
  display: grid;
  gap: 2.3rem;
  padding-bottom: 3rem;
}

.brand-footer {
  margin-bottom: 1rem;
}

.footer-grid > div:first-child > p {
  max-width: 17rem;
}

.footer-grid > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.55rem;
}

.footer-title {
  margin-bottom: 0.3rem;
  color: var(--ink);
  font-family: var(--font-heading);
  font-weight: 700;
}

.footer-grid a:not(.brand) {
  color: var(--muted);
  font-weight: 700;
}

.footer-grid a:not(.brand):hover {
  color: var(--violet);
}

.footer-grid p {
  margin-bottom: 0;
}

.footer-bottom {
  display: flex;
  padding-top: 1.2rem;
  flex-direction: column;
  gap: 0.35rem;
  border-top: 1px solid var(--line);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.78rem;
}

.floating-whatsapp {
  position: fixed;
  z-index: 90;
  right: 1rem;
  bottom: 1rem;
  display: flex;
  min-width: 3.7rem;
  min-height: 3.7rem;
  padding: 0.75rem;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  color: var(--white);
  background: #20b866;
  border: 3px solid var(--white);
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(21, 124, 69, 0.33);
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.floating-whatsapp:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 17px 36px rgba(21, 124, 69, 0.4);
}

.floating-whatsapp svg {
  width: 1.65rem;
  height: 1.65rem;
}

.floating-whatsapp span {
  display: none;
}

/* Progressive reveal: content remains visible without JavaScript. */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(1.4rem);
  transition: opacity 600ms ease, transform 600ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.js [data-reveal].is-visible,
.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 36rem) {
  .hero-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-whatsapp-button {
    grid-column: 1 / -1;
  }

  .equipment-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-details {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  .footer-grid > div:last-child {
    grid-column: 2 / -1;
  }

  .floating-whatsapp span {
    display: inline;
  }
}

@media (min-width: 48rem) {
  .top-strip-inner {
    justify-content: space-between;
  }

  .top-strip p:first-child {
    display: block;
  }

  .choice-grid,
  .services-grid,
  .wash-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-grid {
    gap: 1.2rem;
  }

  .service-card {
    min-height: 19rem;
  }

  .service-extra {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 1.5rem;
    align-items: center;
    margin-top: 1.2rem;
    padding: 1.8rem 2rem;
  }

  .service-extra .button {
    justify-self: end;
  }

  .wash-steps article:last-child {
    grid-column: 1 / -1;
  }

  .gallery-heading {
    grid-template-columns: 1.3fr 0.7fr;
  }

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

  .gallery-item,
  .gallery-image {
    min-height: 0;
  }

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

  .footer-grid > div:last-child {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 64rem) {
  .nav-shell {
    min-height: 5.2rem;
    flex-wrap: nowrap;
  }

  .js .menu-toggle,
  .menu-toggle {
    display: none;
  }

  .nav-list,
  .js .nav-list {
    position: static;
    display: flex;
    width: auto;
    padding: 0;
    flex-direction: row;
    align-items: center;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(25rem, 0.95fr);
  }

  .hero-visual {
    width: 100%;
  }

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

  .choice-card {
    min-height: 14rem;
    padding: 1.75rem;
    grid-template-columns: auto minmax(0, 1fr);
  }

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

  .selfwash-grid {
    grid-template-columns: minmax(24rem, 0.95fr) minmax(0, 1.05fr);
  }

  .wash-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .wash-steps article:last-child {
    grid-column: auto;
  }

  .contact-card {
    grid-template-columns: minmax(0, 1fr) minmax(24rem, 0.82fr);
  }
}

@media (min-width: 78rem) {
  .hero-note {
    right: -2rem;
  }

  .photo-badge-top {
    left: -2.5rem;
  }
}

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

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

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
