:root {
  --black: #070707;
  --ink: #171717;
  --muted: #66615b;
  --line: #e7e0d7;
  --paper: #fffaf0;
  --soft: #f5efe5;
  --white: #ffffff;
  --yellow: #ffc400;
  --yellow-deep: #f0ad00;
  --green: #1f7a63;
  --red: #c64f3d;
  --shadow: 0 22px 60px rgba(24, 18, 8, 0.16);
  --radius: 8px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

body,
button,
input {
  letter-spacing: 0;
}

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

p {
  line-height: 1.65;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(210px, max-content) minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(14px, 1.8vw, 24px);
  width: 100%;
  box-sizing: border-box;
  min-height: 78px;
  padding: 10px clamp(16px, 2.4vw, 32px);
  color: var(--white);
  background: rgba(0, 0, 0, 0.94);
  border-bottom: 1px solid rgba(255, 196, 0, 0.24);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
  max-width: 260px;
  overflow: visible;
}

.brand-icon {
  display: block;
  width: 44px;
  height: 44px;
  object-fit: contain;
  object-position: center top;
  border-radius: 8px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--black);
  font-size: 0.9rem;
  font-weight: 900;
  background: var(--yellow);
  border-radius: 8px;
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.12);
}

.brand strong {
  display: block;
  font-size: 1.02rem;
  line-height: 1;
  white-space: nowrap;
}

.brand strong span {
  color: var(--yellow);
}

.brand small {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 1.3vw, 22px);
  min-width: 0;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.main-nav a {
  flex: 0 0 auto;
  padding: 12px 0;
  border-bottom: 2px solid transparent;
}

.main-nav a:hover {
  color: var(--yellow);
  border-color: var(--yellow);
}

.main-nav a:first-child {
  color: var(--yellow);
  border-color: var(--yellow);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: nowrap;
  min-width: 0;
  gap: 10px;
}

.header-actions .cta-locker {
  width: clamp(180px, 13vw, 240px);
}

.header-actions .cta-laundry {
  width: clamp(210px, 18vw, 320px);
}

.mobile-action-bar {
  display: none;
}

.menu-toggle {
  display: none;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 7px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  grid-area: 1 / 1;
  background: currentColor;
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle span:nth-child(1) {
  transform: translateY(-6px);
}

.menu-toggle span:nth-child(3) {
  transform: translateY(6px);
}

.site-header.nav-open .menu-toggle span:nth-child(1) {
  transform: rotate(45deg);
}

.site-header.nav-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.nav-open .menu-toggle span:nth-child(3) {
  transform: rotate(-45deg);
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 7px;
}

.language-switcher a {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  line-height: 1;
  border-radius: 5px;
  opacity: 0.7;
}

.language-switcher .fi {
  width: 20px;
  height: 15px;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.16);
}

.language-switcher a:hover,
.language-switcher a[aria-current="true"] {
  background: var(--yellow);
  opacity: 1;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
  text-align: center;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--black);
  background: var(--yellow);
  box-shadow: 0 12px 24px rgba(255, 196, 0, 0.28);
}

.btn-outline {
  color: var(--white);
  border-color: var(--yellow);
}

.cta-card {
  justify-content: flex-start;
  gap: 12px;
  min-height: 56px;
  min-width: 0;
  padding: 9px 14px;
  text-align: left;
  white-space: normal;
}

.cta-card > span:last-child {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.cta-card strong,
.cta-card small {
  display: block;
}

.cta-card strong {
  font-size: 0.84rem;
  line-height: 1.1;
}

.cta-card small {
  color: currentColor;
  font-size: 0.72rem;
  font-weight: 800;
  opacity: 0.82;
  text-transform: none;
}

.cta-icon {
  position: relative;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
}

.cta-locker .cta-icon {
  background: url("assets/consignasManIcon.webp") center / contain no-repeat;
}

.cta-locker .cta-icon::before,
.cta-locker .cta-icon::after {
  content: "";
  display: none;
}

.cta-laundry .cta-icon {
  background: url("assets/landryIcon.webp") center / contain no-repeat;
}

.cta-laundry .cta-icon::before,
.cta-laundry .cta-icon::after {
  content: "";
  display: none;
}

.btn-outline-light {
  color: var(--white);
  border-color: var(--yellow);
}

.btn-dark {
  color: var(--white);
  background: var(--black);
}

.btn-wide {
  width: fit-content;
  min-width: 210px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 0.94fr) minmax(500px, 1.4fr) minmax(330px, 0.86fr);
  min-height: clamp(590px, calc(100svh - 78px), 700px);
  --hero-image-shift: clamp(44px, 4.8vw, 96px);
  --hero-split-top: 59%;
  --hero-split-bottom: 52%;
  --hero-split-center: 55.5%;
  overflow: hidden;
  background: var(--black);
}

.hero-copy {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(26px, 2.6vw, 44px);
  overflow: hidden;
}

.hero-copy > * {
  position: relative;
  z-index: 1;
}

.hero-left {
  color: var(--white);
  overflow: visible;
  background: none;
}

.hero-left::before {
  content: "";
  position: absolute;
  inset: 0 -8vw 0 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 50, 54, 0.88) 0%, rgba(0, 54, 58, 0.72) 34%, rgba(0, 43, 46, 0.34) 58%, rgba(0, 25, 28, 0) 100%),
    radial-gradient(circle at 9% 18%, rgba(0, 167, 178, 0.16), transparent 34%),
    radial-gradient(circle at 42% 18%, rgba(255, 196, 0, 0.05), transparent 28%);
}

.hero-right {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.86) 34%, rgba(0, 0, 0, 0.96) 100%),
    radial-gradient(circle at 0 14%, rgba(255, 196, 0, 0.1), transparent 34%),
    radial-gradient(circle at 100% 72%, rgba(255, 196, 0, 0.08), transparent 32%);
}

.hero h1,
.hero h2 {
  margin: 0 0 20px;
  max-width: 14.2ch;
  font-size: clamp(1.9rem, 2.35vw, 2.72rem);
  line-height: 1;
  text-transform: uppercase;
  text-wrap: balance;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: auto;
}

.hero h2 {
  max-width: 12.6ch;
  font-size: clamp(1.85rem, 2.25vw, 2.58rem);
}

.hero h1 span,
.hero h2 span,
.section-heading h2 span {
  color: var(--yellow);
}

.hero p {
  max-width: 410px;
  margin: 0 0 22px;
  font-size: 0.94rem;
}

body[data-locale="de"] .hero {
  grid-template-columns: minmax(330px, 0.82fr) minmax(540px, 1.56fr) minmax(310px, 0.76fr);
}

body[data-locale="de"] .hero h1,
body[data-locale="de"] .hero h2 {
  max-width: 13.8ch;
  font-size: clamp(1.85rem, 2.18vw, 2.55rem);
  overflow-wrap: normal;
  word-break: normal;
  hyphens: auto;
}

body[data-locale="de"] .hero h2 {
  max-width: 12.4ch;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--yellow-deep);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-image {
  position: relative;
  width: calc(100% + var(--hero-image-shift));
  margin-left: calc(var(--hero-image-shift) * -1);
  min-height: 100%;
  overflow: hidden;
  background: var(--black);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.18) 9%, rgba(0, 0, 0, 0.72) 20%, #000 32%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.18) 9%, rgba(0, 0, 0, 0.72) 20%, #000 32%);
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 52, 56, 0.1) 0%, transparent 16%, transparent 78%, rgba(0, 0, 0, 0.44) 92%, rgba(0, 0, 0, 0.78) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.16) 0%, transparent 20%, transparent 78%, rgba(0, 0, 0, 0.14) 100%);
}

.hero-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-photo-laundry {
  background-image:
    linear-gradient(90deg, rgba(0, 63, 68, 0.12) 0%, transparent 24%, transparent 62%, rgba(0, 0, 0, 0.08) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.08), transparent 34%),
    url("assets/lavadoras-hero.png");
  background-size: auto 106%;
  background-position: 115% center;
  clip-path: polygon(0 0, var(--hero-split-top) 0, var(--hero-split-bottom) 100%, 0 100%);
}

.hero-photo-lockers {
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, 0.06) 0%, transparent 28%, rgba(0, 0, 0, 0.38) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.12), transparent 32%),
    url("assets/Fotos/lockwash-hero-lavadoras-real-premium.webp");
  background-size: auto 112%;
  background-position: 30% center;
  clip-path: polygon(var(--hero-split-top) 0, 100% 0, 100% 100%, var(--hero-split-bottom) 100%);
}

.hero-image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: var(--white);
  clip-path: polygon(
    calc(var(--hero-split-top) - 0.72%) 0,
    calc(var(--hero-split-top) + 0.72%) 0,
    calc(var(--hero-split-bottom) + 0.72%) 100%,
    calc(var(--hero-split-bottom) - 0.72%) 100%
  );
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.hero-badge {
  position: absolute;
  left: var(--hero-split-center);
  top: 50%;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 112px;
  height: 112px;
  background:
    var(--black)
      url("assets/logo-recortado.png") center / 76px auto no-repeat;
  border: 7px solid var(--white);
  border-radius: 50%;
  box-shadow:
    0 0 0 4px var(--black),
    0 20px 36px rgba(0, 0, 0, 0.32);
  transform: translate(-50%, -50%);
}

.laundry-modes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 92px));
  gap: 0;
  margin: 6px 0 18px;
}

.laundry-modes span {
  display: grid;
  gap: 8px;
  justify-items: center;
  padding: 0 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
}

.laundry-modes span:last-child {
  border-right: 0;
}

.laundry-modes strong {
  color: var(--yellow);
  font-size: 0.7rem;
  text-align: center;
  text-transform: uppercase;
}

.laundry-modes i {
  position: relative;
  display: block;
  width: 28px;
  height: 28px;
  color: var(--white);
  font-size: 0;
  font-style: normal;
  line-height: 1;
}

.laundry-modes i::before,
.laundry-modes i::after {
  content: "";
  position: absolute;
  box-sizing: border-box;
}

.laundry-modes span:nth-child(1) i::before {
  inset: 6px 3px 7px 3px;
  border: 3px solid var(--white);
  transform: skewX(-11deg);
}

.laundry-modes span:nth-child(2) i::before {
  top: 5px;
  left: 3px;
  width: 24px;
  height: 3px;
  background: var(--white);
  border-radius: 999px;
  box-shadow:
    0 7px 0 var(--white),
    0 14px 0 var(--white);
  transform: skewY(-18deg);
}

.laundry-modes span:nth-child(3) i::before {
  inset: 3px 3px 2px 3px;
  border: 3px solid var(--white);
  background: repeating-linear-gradient(
    to bottom,
    var(--white) 0 3px,
    transparent 3px 7px
  );
}

.check-list,
.feature-dots {
  display: grid;
  gap: 9px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.check-list li,
.feature-dots li {
  position: relative;
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  align-items: start;
  font-size: 0.86rem;
}

.check-list li::before,
.feature-dots li::before {
  content: "";
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  background: var(--yellow);
  border-radius: 50%;
}

.check-list li::after,
.feature-dots li::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 8px;
  width: 5px;
  height: 10px;
  border: solid var(--black);
  border-width: 0 2px 2px 0;
  transform: rotate(42deg);
}

.trust-strip {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  width: calc(100% - 64px);
  max-width: 1680px;
  margin: -30px auto 0;
  padding: 14px 14px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.98), rgba(20, 19, 17, 0.97)),
    radial-gradient(circle at 8% 0, rgba(255, 196, 0, 0.12), transparent 28%);
  border: 1px solid rgba(255, 196, 0, 0.18);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.trust-strip article {
  display: grid;
  grid-template-columns: 46px 1fr;
  column-gap: 12px;
  padding: 6px 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.trust-strip article:last-child {
  border-right: 0;
}

.trust-strip .icon {
  position: relative;
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--yellow);
  font-size: 0;
  border: 2px solid var(--yellow);
  border-radius: 50%;
  background: rgba(255, 196, 0, 0.04);
}

.trust-strip .icon::before,
.trust-strip .icon::after {
  content: "";
  position: absolute;
  box-sizing: border-box;
}

.trust-strip article:nth-child(1) .icon::before {
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  border: 2px solid var(--yellow);
  border-radius: 50%;
  background: radial-gradient(circle, var(--yellow) 0 2px, transparent 2.5px);
  transform: translate(-50%, -50%);
}

.trust-strip article:nth-child(1) .icon::after {
  top: calc(50% - 10px);
  left: 50%;
  width: 9px;
  height: 10px;
  border-left: 2px solid var(--yellow);
  border-bottom: 2px solid var(--yellow);
  border-radius: 0 0 0 2px;
}

.trust-strip article:nth-child(2) .icon::before {
  content: "\20AC";
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--yellow);
  font-size: 1.7rem;
  font-weight: 900;
  line-height: 1;
}

.trust-strip article:nth-child(2) .icon::after {
  display: none;
}

.trust-strip article:nth-child(3) .icon::before {
  width: 24px;
  height: 18px;
  border: 2px solid var(--yellow);
  border-radius: 5px;
  transform: translateY(3px);
}

.trust-strip article:nth-child(3) .icon::after {
  top: 10px;
  width: 12px;
  height: 10px;
  border: 2px solid var(--yellow);
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
}

.trust-strip article:nth-child(4) .icon::before {
  width: 24px;
  height: 20px;
  border: 2px solid var(--yellow);
  border-top: 0;
  transform: translateY(3px);
}

.trust-strip article:nth-child(4) .icon::after {
  top: 12px;
  width: 20px;
  height: 20px;
  border-top: 2px solid var(--yellow);
  border-left: 2px solid var(--yellow);
  transform: rotate(45deg);
}

.trust-strip article:nth-child(5) .icon::before {
  width: 24px;
  height: 24px;
  border: 2px solid var(--yellow);
  border-radius: 50%;
}

.trust-strip article:nth-child(5) .icon::after {
  width: 8px;
  height: 8px;
  background: var(--yellow);
  border-radius: 50%;
}

.trust-strip strong {
  color: var(--white);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.trust-strip p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.76rem;
}

.section {
  padding: clamp(46px, 6vw, 76px) clamp(18px, 4vw, 44px);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 32px;
  text-align: center;
}

.google-reviews {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 196, 0, 0.14), rgba(255, 255, 255, 0) 44%),
    linear-gradient(180deg, #ffffff 0%, #fffaf0 100%);
}

.google-reviews::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(0, 0, 0, 0.026) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.4), transparent 72%);
}

.reviews-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.64fr) minmax(0, 1.36fr);
  gap: clamp(20px, 4vw, 46px);
  align-items: stretch;
  max-width: 1180px;
  margin: 0 auto;
}

.reviews-score {
  position: relative;
  display: grid;
  grid-template-rows: auto auto auto auto 1fr auto;
  gap: 14px;
  align-content: start;
  align-self: end;
  min-height: 440px;
  padding: clamp(24px, 3vw, 36px);
  color: var(--white);
  background:
    radial-gradient(circle at 16% 14%, rgba(255, 196, 0, 0.22), transparent 28%),
    linear-gradient(135deg, rgba(255, 196, 0, 0.16), rgba(0, 0, 0, 0) 52%),
    var(--black);
  border: 1px solid rgba(255, 196, 0, 0.28);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.reviews-score::after {
  content: "";
  position: absolute;
  right: 22px;
  bottom: 18px;
  width: 118px;
  height: 82px;
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 196, 0, 0.45) 1.2px, transparent 1.2px);
  background-size: 10px 10px;
  opacity: 0.45;
  z-index: 0;
}

.reviews-score > * {
  position: relative;
  z-index: 1;
}

.reviews-score-header {
  display: flex;
  gap: 14px;
  align-items: center;
}

.reviews-google-icon {
  width: 56px;
  height: 56px;
  padding: 10px;
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.22);
}

.reviews-score strong {
  color: var(--yellow);
  font-size: clamp(3rem, 8vw, 5.2rem);
  line-height: 0.9;
}

.reviews-stars {
  color: var(--yellow);
  font-size: 1rem;
  letter-spacing: 0.06em;
}

.reviews-source {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.86rem;
  font-weight: 900;
}

.reviews-score p {
  max-width: 300px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.reviews-score small {
  color: rgba(255, 255, 255, 0.64);
  font-weight: 800;
}

.reviews-copy {
  display: grid;
  gap: 18px;
}

.reviews-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.reviews-summary {
  max-width: 680px;
  color: var(--muted);
}

.review-slider {
  display: grid;
  gap: 14px;
}

.review-cards {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(290px, calc((100% - 14px) / 2));
  gap: 14px;
  margin-inline: -2px;
  padding: 6px 2px 16px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.review-cards::-webkit-scrollbar {
  display: none;
}

.review-card {
  position: relative;
  display: grid;
  gap: 12px;
  align-content: start;
  min-height: 250px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 196, 0, 0.05), rgba(255, 255, 255, 0) 32%),
    var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.08);
  scroll-snap-align: start;
}

.review-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 18px;
  width: 28px;
  height: 4px;
  background: var(--yellow);
  border-radius: 999px;
}

.review-card.featured {
  background:
    radial-gradient(circle at 90% 12%, rgba(255, 196, 0, 0.18), transparent 26%),
    var(--black);
  border-color: rgba(255, 196, 0, 0.34);
  color: var(--white);
}

.review-card.featured::before {
  width: 44px;
}

.review-meta {
  display: flex;
  gap: 12px;
  align-items: center;
}

.review-avatar {
  display: grid;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 900;
  background: var(--black);
  border-radius: 50%;
}

.review-card.featured .review-avatar {
  color: var(--black);
  background: var(--yellow);
}

.review-author {
  display: block;
  line-height: 1.1;
}

.review-date {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.review-card.featured .review-date {
  color: rgba(255, 255, 255, 0.62);
}

.review-rating {
  color: var(--yellow);
  font-size: 0.92rem;
  letter-spacing: 0.04em;
}

.review-card blockquote {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.review-card.featured blockquote {
  color: rgba(255, 255, 255, 0.84);
}

.reviews-original {
  width: fit-content;
  padding: 4px 8px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.review-controls {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 48px;
  gap: 14px;
  align-items: center;
}

.review-control {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--black);
  background: var(--white);
  border: 1px solid rgba(9, 12, 17, 0.12);
  border-radius: 50%;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
  cursor: pointer;
}

.review-control[data-review-next] {
  color: var(--black);
  background: var(--yellow);
  border-color: var(--yellow);
}

.review-control::before {
  content: "";
  width: 11px;
  height: 11px;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
}

.review-control[data-review-prev]::before {
  transform: translateX(2px) rotate(-135deg);
}

.review-control[data-review-next]::before {
  transform: translateX(-2px) rotate(45deg);
}

.review-control:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.12);
}

.review-control:disabled {
  color: var(--muted);
  background: var(--paper);
  border-color: var(--line);
  cursor: default;
  transform: none;
  box-shadow: none;
}

.review-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
}

.review-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  background: rgba(9, 12, 17, 0.28);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
}

.review-dot.is-active {
  width: 24px;
  background: var(--yellow);
}

.reviews-actions {
  display: grid;
  gap: 10px;
  align-self: end;
  margin-top: 8px;
}

.reviews-score .btn {
  width: 100%;
  justify-content: center;
  text-align: center;
}

.reviews-note {
  max-width: 300px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.82rem;
}

.section-heading.compact {
  margin-bottom: 24px;
  text-align: left;
}

.section-heading h2,
.split-details h2,
.location-cta h2,
.app-panel h2 {
  margin: 0;
  font-size: clamp(1.85rem, 2.7vw, 2.55rem);
  line-height: 1.05;
  text-transform: uppercase;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
}

.intro-section {
  padding-top: 46px;
}

.intro-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(320px, 0.78fr);
  gap: 18px;
  align-items: stretch;
  max-width: min(1320px, calc(100vw - 64px));
  margin: 0 auto;
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  min-width: 0;
}

.service-card {
  min-height: 310px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.service-laundry {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0 44%, rgba(0, 0, 0, 0.28)),
    url("assets/lavadoras-hero-web.jpg") 56% 55% / cover;
}

.service-lockers {
  background:
    linear-gradient(90deg, var(--paper) 0 38%, rgba(255, 250, 240, 0.18)),
    url("assets/lockers-card-web.jpg") 72% 50% / cover;
}

.service-content {
  max-width: 320px;
  padding: 34px;
}

.service-content.light {
  color: var(--black);
}

.service-icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin-bottom: 22px;
  color: var(--black);
  font-size: 2rem;
  font-weight: 900;
  line-height: 0;
  background: var(--yellow);
  border-radius: 50%;
}

.service-laundry .service-icon,
.service-lockers .service-icon {
  position: relative;
  color: transparent;
  font-size: 0;
  background-color: var(--yellow);
}

.service-laundry .service-icon::before,
.service-lockers .service-icon::before {
  content: "";
  display: block;
  width: 36px;
  height: 36px;
  background: var(--black);
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
}

.service-laundry .service-icon::before {
  width: 39px;
  height: 39px;
  mask-image: url("assets/landryIcon.webp");
  -webkit-mask-image: url("assets/landryIcon.webp");
  transform: translate(-1px, 0);
}

.service-lockers .service-icon::before {
  width: 40px;
  height: 40px;
  mask-image: url("assets/consignasManIcon.webp");
  -webkit-mask-image: url("assets/consignasManIcon.webp");
  transform: translate(-2px, 1px);
}

.service-card h3 {
  margin: 0 0 18px;
  font-size: clamp(1.45rem, 2.3vw, 2.05rem);
  line-height: 1;
  text-transform: uppercase;
}

.service-card p {
  margin-top: 0;
  color: rgba(255, 255, 255, 0.82);
}

.service-content.light p {
  color: #423a2e;
}

.service-card .btn {
  width: fit-content;
  max-width: 100%;
  padding-inline: 18px;
  white-space: normal;
}

.map-preview {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  min-height: 310px;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(255, 196, 0, 0.09), transparent 42%),
    linear-gradient(145deg, #060606, #201b12);
  border: 1px solid rgba(255, 196, 0, 0.36);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.map-copy {
  padding: 26px 26px 18px;
}

.map-copy .eyebrow {
  margin-bottom: 8px;
}

.map-copy h3 {
  margin: 0 0 12px;
  font-size: clamp(1.55rem, 2.4vw, 2rem);
  line-height: 1;
  text-transform: uppercase;
}

.map-copy p {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.76);
}

.map-copy strong {
  color: var(--white);
}

.map-copy .btn {
  width: fit-content;
  min-height: 40px;
}

.map-frame {
  position: relative;
  min-height: 190px;
  margin: 0 14px 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 196, 0, 0.28);
  border-radius: 8px;
  background: #171717;
}

.map-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 190px;
  border: 0;
  filter: saturate(0.92) contrast(1.03);
}

.split-details {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
  max-width: 1160px;
  margin: 0 auto;
}

.split-details > div:first-child p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

.split-details > div:first-child .entry-code-note {
  display: inline-flex;
  width: fit-content;
  margin-top: 4px;
  padding: 10px 14px;
  color: var(--black);
  font-size: 0.96rem;
  font-weight: 900;
  background: var(--yellow);
  border-radius: 7px;
}

.detail-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.detail-list article,
.price-grid article,
.faq details {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.detail-list strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.05rem;
  text-transform: uppercase;
}

.detail-list p,
.price-grid span {
  margin: 0;
  color: var(--muted);
}

.lockers-detail {
  position: relative;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  overflow: hidden;
  max-width: none;
  padding-left: max(clamp(18px, 4vw, 44px), calc((100vw - 1280px) / 2));
  padding-right: max(clamp(18px, 4vw, 44px), calc((100vw - 1280px) / 2));
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 18%),
    linear-gradient(90deg, #070707 0%, #030303 46%, #050505 100%);
}

.lockers-detail::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.025), transparent 28%, transparent 72%, rgba(255, 255, 255, 0.018)),
    repeating-linear-gradient(90deg, transparent 0 118px, rgba(255, 255, 255, 0.018) 118px 119px);
  opacity: 0.72;
}

.lockers-detail > * {
  position: relative;
}

.lockers-detail > div:first-child {
  width: min(100%, 900px);
  margin: 0 auto;
}

.lockers-detail h2 {
  color: var(--white);
}

.lockers-detail > div:first-child p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
}

.lockers-detail > div:first-child p strong {
  color: var(--white);
}

.lockers-detail .detail-price-note {
  color: rgba(255, 255, 255, 0.86);
}

.locker-reserve-link {
  margin-top: 18px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.34);
}

.locker-size-visual {
  position: relative;
  width: min(100%, 1220px);
  margin: 18px auto 0;
  overflow: hidden;
  padding: clamp(10px, 1.1vw, 16px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.015)),
    #020202;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
}

.locker-size-visual img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.locker-booking-note {
  display: grid;
  gap: 8px;
  margin-top: 16px;
  padding: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035)),
    rgba(0, 0, 0, 0.36);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
}

.locker-booking-note strong {
  color: var(--white);
  text-transform: uppercase;
}

.locker-booking-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}

.process-app {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(320px, 0.86fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.process,
.app-panel {
  padding: 30px;
  border-radius: 8px;
}

.process {
  position: relative;
  border: 1px solid var(--line);
  background: var(--white);
}

.process-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.process-flow {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 20px;
  background: #fbfbfb;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.process-flow-lockers {
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(255, 196, 0, 0.08), transparent 42%),
    linear-gradient(145deg, #070707, #211d15);
  border-color: rgba(255, 196, 0, 0.34);
}

.process-flow h3 {
  margin: 0 0 20px;
  color: var(--black);
  font-size: clamp(1.18rem, 1.8vw, 1.45rem);
  line-height: 1;
  text-transform: uppercase;
}

.process-flow-lockers h3 {
  color: var(--yellow);
}

.process ol {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-flow ol {
  grid-template-columns: 1fr;
  gap: 12px;
}

.process li {
  position: relative;
  padding-top: 82px;
  text-align: center;
}

.process-flow li {
  min-height: 58px;
  padding: 0 0 0 72px;
  text-align: left;
}

.process li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 29px;
  left: calc(50% + 34px);
  width: calc(100% - 52px);
  border-top: 2px dotted rgba(255, 196, 0, 0.78);
}

.process-flow li:not(:last-child)::after {
  top: 46px;
  left: 28px;
  width: 0;
  height: calc(100% - 34px);
  border-top: 0;
  border-left: 2px dotted rgba(255, 196, 0, 0.78);
}

.process li span {
  position: absolute;
  top: 0;
  left: 50%;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: var(--black);
  font-weight: 900;
  background: var(--yellow);
  border-radius: 50%;
  transform: translateX(-50%);
}

.process-flow li span {
  left: 0;
  width: 56px;
  height: 56px;
  transform: none;
}

.process strong {
  display: block;
  text-transform: uppercase;
}

.process p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.process-flow-lockers p {
  color: rgba(255, 255, 255, 0.72);
}

.process-download-link,
.process-reserve-link {
  align-self: flex-start;
  margin-top: 18px;
}

.app-panel {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  display: grid;
  grid-template-columns: 1fr;
  align-content: start;
  background:
    linear-gradient(90deg, rgba(255, 239, 198, 0.94), rgba(255, 213, 111, 0.82)),
    radial-gradient(circle at 100% 20%, rgba(255, 255, 255, 0.82), transparent 34%);
}

.app-panel .eyebrow,
.app-panel h2,
.app-panel > p,
.app-store-row,
.phone-mockup {
  grid-column: 1;
}

.app-panel p:not(.eyebrow) {
  color: #4f4434;
}

.phone-mockup {
  position: relative;
  right: auto;
  bottom: auto;
  grid-row: auto;
  width: min(300px, 82%);
  margin: 26px auto 0;
  padding: 20px;
  background: var(--white);
  border: 11px solid var(--black);
  border-radius: 34px;
  box-shadow: 0 22px 38px rgba(0, 0, 0, 0.22);
}

.app-store-row {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
  max-width: 100%;
}

.store-badge-small {
  grid-template-columns: 34px 1fr;
  width: min(100%, 182px);
  min-height: 52px;
  padding: 7px 13px;
  border-radius: 12px;
}

.store-badge-small svg {
  width: 28px;
  height: 28px;
}

.store-badge-small small {
  font-size: 0.62rem;
  line-height: 1.05;
}

.store-badge-small strong {
  font-size: 0.95rem;
  line-height: 1;
}

.phone-mockup span,
.phone-mockup small {
  display: block;
  color: var(--muted);
  font-size: 0.74rem;
}

.phone-mockup strong {
  display: block;
  margin: 12px 0 4px;
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  line-height: 1.05;
}

.domus-mockup {
  display: grid;
  gap: 12px;
  aspect-ratio: 9 / 16;
  align-content: start;
}

.domus-mockup strong {
  margin: 8px 0 2px;
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  line-height: 1.05;
}

.domus-mockup ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.domus-mockup li {
  display: grid;
  gap: 2px;
  padding: 11px;
  background: var(--soft);
  border-radius: 6px;
}

.domus-mockup b {
  font-size: 1rem;
}

.domus-mockup em {
  color: var(--muted);
  font-size: 0.72rem;
  font-style: normal;
}

.phone-mockup button {
  width: 100%;
  min-height: 46px;
  color: var(--black);
  font-weight: 900;
  background: var(--yellow);
  border: 0;
  border-radius: 6px;
}

.waiting-lounge {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.waiting-lounge-media {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.waiting-lounge-media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.waiting-lounge-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.waiting-lounge-copy p {
  color: var(--muted);
}

.lounge-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.lounge-features li {
  padding: 14px;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.pricing {
  background: var(--black);
  color: var(--white);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1000px;
  margin: 0 auto;
}

.price-grid article {
  color: var(--black);
}

.price-grid h3 {
  margin: 0 0 10px;
  text-transform: uppercase;
}

.price {
  margin: 0 0 10px;
  color: var(--red);
  font-size: clamp(2rem, 4vw, 3.3rem);
  font-weight: 900;
  line-height: 1;
}

.location-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1200px;
  margin: 30px auto -18px;
  padding: 18px clamp(18px, 4vw, 44px);
  color: var(--white);
  background: linear-gradient(90deg, var(--black), #1f1b12);
  border: 1px solid rgba(255, 196, 0, 0.38);
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.location-cta h2 {
  font-size: clamp(1.6rem, 3vw, 2.6rem);
}

.location-cta p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  max-width: 1120px;
  margin: 0 auto;
}

.faq-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-column h3 {
  margin: 0;
  padding: 0 0 12px;
  color: var(--yellow);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1;
  text-transform: uppercase;
  border-bottom: 2px solid rgba(255, 196, 0, 0.35);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 14px;
  max-width: 1200px;
  margin: 0 auto;
}

.trust-grid article {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.trust-grid strong {
  display: block;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.trust-grid p {
  margin: 0;
  color: var(--muted);
}

.local-gallery {
  position: relative;
  margin-top: 12px;
  padding-top: clamp(52px, 7vw, 92px);
  padding-bottom: clamp(58px, 7vw, 96px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 196, 0, 0.12), transparent 32%),
    linear-gradient(180deg, #101010, #050505);
}

.local-gallery .section-heading {
  max-width: 900px;
  margin-bottom: clamp(28px, 4vw, 46px);
}

.local-gallery .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: clamp(132px, 11.5vw, 178px);
  gap: clamp(10px, 1.4vw, 18px);
  max-width: 1240px;
  margin: 0 auto;
}

.gallery-grid figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  min-height: 0;
  background: #151515;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
  cursor: zoom-in;
  isolation: isolate;
}

.gallery-grid figure:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

.gallery-grid figure::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 44%;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.72));
  z-index: 1;
  pointer-events: none;
}

.gallery-grid .gallery-feature {
  grid-column: 1 / 8;
  grid-row: span 3;
}

.gallery-grid figure:nth-child(2) {
  grid-column: 8 / 13;
  grid-row: span 2;
}

.gallery-grid figure:nth-child(3) {
  grid-column: 8 / 10;
}

.gallery-grid figure:nth-child(4) {
  grid-column: 10 / 13;
}

.gallery-grid img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease, filter 220ms ease;
}

.gallery-grid figcaption {
  position: absolute;
  left: clamp(14px, 2vw, 22px);
  right: clamp(14px, 2vw, 22px);
  bottom: clamp(12px, 1.7vw, 20px);
  z-index: 2;
  color: var(--white);
  font-size: clamp(0.72rem, 1vw, 0.88rem);
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
}

.gallery-feature figcaption {
  font-size: clamp(1rem, 1.6vw, 1.35rem);
}

.gallery-grid figure:hover img {
  filter: saturate(1.04) contrast(1.03);
  transform: scale(1.025);
}

.gallery-lightbox[hidden] {
  display: none;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: grid;
  place-items: center;
  padding: clamp(16px, 4vw, 44px);
  background: rgba(0, 0, 0, 0.84);
}

.gallery-lightbox-dialog {
  position: relative;
  display: grid;
  gap: 12px;
  width: min(100%, 1080px);
}

.gallery-lightbox img {
  display: block;
  width: 100%;
  max-height: min(76vh, 760px);
  object-fit: contain;
  background: #080808;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.58);
}

.gallery-lightbox p {
  margin: 0;
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.gallery-lightbox-close {
  justify-self: end;
  min-height: 36px;
  padding: 0 14px;
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 7px;
  cursor: pointer;
}

.faq summary {
  cursor: pointer;
  font-weight: 900;
  text-transform: uppercase;
}

.faq p {
  margin-bottom: 0;
  color: var(--muted);
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 38px;
  padding: 44px clamp(18px, 4vw, 44px);
  color: var(--white);
  background: #050505;
}

.site-footer p,
.site-footer :not(.brand) > span,
.site-footer a {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer h2 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 0.9rem;
  text-transform: uppercase;
}

.site-footer a,
.site-footer :not(.brand) > span {
  display: block;
  margin: 8px 0;
}

.site-footer .brand span {
  margin: 0;
}

.site-footer .brand strong span {
  display: inline;
  color: var(--yellow);
}

.footer-brand {
  margin-bottom: 16px;
}

.legal-document {
  max-width: 900px;
  margin: 0 auto;
  padding: 8.5rem 1.5rem 4rem;
  color: var(--ink);
}

.legal-document header {
  border-bottom: 1px solid rgba(25, 25, 25, 0.16);
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
}

.legal-document h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(2rem, 4vw, 3rem);
}

.legal-document h2 {
  margin: 2.5rem 0 0.75rem;
  font-size: 1.35rem;
}

.legal-document h3 {
  margin: 1.5rem 0 0.5rem;
  font-size: 1.05rem;
}

.legal-document p,
.legal-document li {
  color: rgba(25, 25, 25, 0.78);
  line-height: 1.75;
}

.legal-document ul {
  padding-left: 1.25rem;
}

.legal-document a {
  color: inherit;
  font-weight: 800;
}

.legal-notice {
  border-left: 3px solid var(--yellow);
  background: rgba(255, 196, 0, 0.12);
  margin: 1.25rem 0;
  padding: 1rem 1.25rem;
}

.reservation-page {
  background: var(--soft);
}

.reservation-hero {
  display: grid;
  gap: 14px;
  padding: clamp(48px, 6vw, 86px) clamp(18px, 5vw, 72px) clamp(28px, 4vw, 52px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.96), rgba(0, 48, 52, 0.88)),
    url("assets/lockers-hero-web.jpg") 70% 50% / cover;
}

.reservation-hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.reservation-hero p:not(.eyebrow) {
  max-width: 680px;
  margin: 0;
  font-size: clamp(1rem, 1.7vw, 1.22rem);
}

.reservation-frame {
  margin: 0 auto;
}

.reservation-mobile-helper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: 1120px;
  margin: 24px auto;
  padding: 18px clamp(18px, 4vw, 34px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.reservation-mobile-helper h2 {
  margin: 0;
  font-size: clamp(1.45rem, 3vw, 2.4rem);
  line-height: 1;
  text-transform: uppercase;
}

.reservation-mobile-helper p:not(.eyebrow) {
  max-width: 680px;
  margin: 8px 0 0;
  color: var(--muted);
}

.reservation-frame iframe {
  display: block;
  width: 100%;
  min-height: 1200px;
  border: 0;
  background: var(--white);
}

.modal[hidden] {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(0, 0, 0, 0.74);
}

.modal-dialog {
  position: relative;
  width: min(100%, 560px);
  padding: clamp(24px, 4vw, 38px);
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(0, 0, 0, 0.98), rgba(0, 48, 52, 0.94)),
    url("assets/lavadoras-hero-web.jpg") 70% 50% / cover;
  border: 1px solid rgba(255, 196, 0, 0.36);
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.48);
}

.modal-dialog h2 {
  margin: 0 0 14px;
  font-size: clamp(1.7rem, 4vw, 2.55rem);
  line-height: 1;
  text-transform: uppercase;
}

.modal-dialog p:not(.eyebrow) {
  margin: 0 0 20px;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  min-height: 34px;
  padding: 0 12px;
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 7px;
  cursor: pointer;
}

.entry-code {
  display: grid;
  gap: 6px;
  margin: 20px 0;
  padding: 18px;
  color: var(--black);
  background: var(--yellow);
  border-radius: 7px;
}

.entry-code span {
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.entry-code strong {
  font-size: clamp(1.7rem, 6vw, 2.8rem);
  line-height: 1;
  letter-spacing: 0.05em;
}

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

.store-badge {
  display: inline-grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  width: 197px;
  min-height: 48px;
  padding: 6px 16px;
  color: var(--white);
  background: #101010;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.store-badge:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 196, 0, 0.55);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.34);
}

.store-badge svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.store-badge span {
  display: grid;
  gap: 1px;
  min-width: 0;
}

.store-badge small {
  font-size: 0.72rem;
  font-weight: 500;
  line-height: 1;
}

.store-badge strong {
  font-size: 1.12rem;
  font-weight: 900;
  line-height: 1.1;
}

body[data-locale="de"] .main-nav,
body[data-locale="fr"] .main-nav {
  gap: clamp(9px, 0.9vw, 16px);
  font-size: 0.68rem;
}

body[data-locale="de"] .btn,
body[data-locale="fr"] .btn {
  padding-inline: 14px;
  font-size: 0.74rem;
}

@media (max-width: 1380px) {
  .site-header {
    grid-template-columns: minmax(210px, max-content) minmax(0, 1fr);
    min-height: 92px;
    padding: 12px clamp(18px, 4vw, 40px);
  }

  .header-actions {
    grid-column: 1 / -1;
    justify-content: flex-end;
  }

  .main-nav {
    justify-content: flex-end;
  }

  .hero {
    grid-template-columns: minmax(320px, 0.92fr) minmax(440px, 1.34fr) minmax(300px, 0.84fr);
  }

  .hero-copy {
    padding: clamp(28px, 2.4vw, 42px);
  }

  .hero h1,
  .hero h2 {
    font-size: clamp(1.9rem, 2.3vw, 2.65rem);
  }

  .hero p {
    font-size: 0.92rem;
  }

  .check-list li,
  .feature-dots li {
    font-size: 0.84rem;
  }
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: 1fr;
    position: relative;
  }

  .main-nav,
  .header-actions {
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .main-nav::-webkit-scrollbar,
  .header-actions::-webkit-scrollbar {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr 1fr;
    min-height: auto;
    --hero-image-shift: 0px;
    --hero-split-top: 54.5%;
    --hero-split-bottom: 47%;
    --hero-split-center: 50.75%;
  }

  .app-panel {
    grid-template-columns: 1fr;
  }

  .app-panel .eyebrow,
  .app-panel h2,
  .app-panel > p,
  .app-store-row,
  .phone-mockup {
    grid-column: 1;
  }

  .phone-mockup {
    grid-row: auto;
    width: min(270px, 78%);
    margin: 24px auto 0;
  }

  body[data-locale="de"] .hero {
    grid-template-columns: 1fr 1fr;
  }

  .hero-image {
    grid-column: 1 / -1;
    grid-row: 1;
    min-height: clamp(360px, 48vw, 520px);
    -webkit-mask-image: none;
    mask-image: none;
  }

  .hero-photo-laundry {
    background-size: auto 116%;
    background-position: 106% center;
    clip-path: polygon(0 0, 54.5% 0, 47% 100%, 0 100%);
  }

  .hero-photo-lockers {
    background-size: auto 118%;
    background-position: 34% center;
    clip-path: polygon(54.5% 0, 100% 0, 100% 100%, 47% 100%);
  }

  .hero-image::before {
    clip-path: polygon(
      calc(var(--hero-split-top) - 0.72%) 0,
      calc(var(--hero-split-top) + 0.72%) 0,
      calc(var(--hero-split-bottom) + 0.72%) 100%,
      calc(var(--hero-split-bottom) - 0.72%) 100%
    );
  }

  .hero-left,
  .hero-right {
    grid-row: 2;
    min-height: auto;
  }

  .trust-strip,
  .detail-list,
  .process-app,
  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .gallery-grid .gallery-feature,
  .gallery-grid figure:nth-child(2),
  .gallery-grid figure:nth-child(3),
  .gallery-grid figure:nth-child(4) {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 3 / 2;
  }

  .gallery-grid .gallery-feature {
    grid-column: 1 / -1;
    aspect-ratio: 16 / 9;
  }

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

  .map-preview {
    grid-template-columns: minmax(260px, 0.75fr) 1fr;
    grid-template-rows: 1fr;
  }

  .map-frame {
    min-height: 260px;
    margin: 14px 14px 14px 0;
  }

  .map-frame iframe {
    min-height: 260px;
  }

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

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

  .process-columns,
  .process-flow ol {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
    width: calc(100% - 32px);
  }

  .trust-strip article {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .trust-strip article:nth-last-child(-n + 1) {
    border-bottom: 0;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: calc(72px + env(safe-area-inset-bottom));
  }

  .site-header {
    position: relative;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    min-height: auto;
    gap: 12px;
    padding: 14px 16px;
  }

  .brand {
    grid-column: 1;
    min-width: 0;
  }

  .brand-icon {
    width: 42px;
    height: 42px;
  }

  .brand strong {
    font-size: 0.98rem;
  }

  .brand small {
    font-size: 0.62rem;
    letter-spacing: 0.18em;
  }

  .menu-toggle {
    display: grid;
    grid-column: 2;
    grid-row: 1;
  }

  .main-nav {
    grid-column: 1 / -1;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
    padding: 8px 0;
    font-size: 0.74rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 7px;
    overflow: hidden;
  }

  .site-header.nav-open .main-nav {
    display: flex;
  }

  .main-nav a {
    width: 100%;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

  .header-actions {
    grid-column: 1 / -1;
    display: block;
    width: auto;
  }

  .language-switcher {
    position: absolute;
    top: 14px;
    right: 68px;
    width: auto;
    padding: 4px;
    gap: 2px;
  }

  .language-switcher a {
    width: 28px;
    height: 28px;
  }

  .language-switcher .fi {
    width: 20px;
    height: 15px;
  }

  .header-actions > .btn {
    display: none;
  }

  .cta-card {
    min-height: 58px;
    padding: 10px 16px;
  }

  .mobile-action-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 80;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 8px;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    background: rgba(5, 5, 5, 0.94);
    border-top: 1px solid rgba(255, 196, 0, 0.28);
    box-shadow: 0 -14px 34px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(12px);
  }

  .mobile-action-bar .btn {
    width: 100%;
    min-height: 48px;
    padding: 10px 12px;
    font-size: 0.74rem;
    line-height: 1.05;
    text-align: center;
  }

  .hero,
  .intro-layout,
  .service-grid,
  .split-details,
  .trust-strip,
  .detail-list,
  .process-app,
  .faq-grid,
  .trust-grid,
  .reviews-layout {
    grid-template-columns: 1fr;
  }

  .review-cards {
    grid-auto-columns: minmax(260px, 86vw);
  }

  .reviews-score {
    min-height: 0;
  }

  .review-controls {
    grid-template-columns: 44px minmax(0, 1fr) 44px;
  }

  .review-control {
    width: 44px;
    height: 44px;
  }

  body[data-locale="de"] .hero {
    grid-template-columns: 1fr;
  }

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

  .gallery-grid .gallery-feature,
  .gallery-grid figure:nth-child(2),
  .gallery-grid figure:nth-child(3),
  .gallery-grid figure:nth-child(4) {
    grid-column: auto;
    aspect-ratio: 4 / 3;
  }

  .map-preview {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
  }

  .map-frame {
    margin: 0 14px 14px;
  }

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

  .service-lockers {
    order: -1;
  }

  .service-laundry {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.94) 0 52%, rgba(0, 0, 0, 0.14)),
      url("assets/lavadoras-hero-web.jpg") 88% 50% / auto 100% no-repeat,
      #0d0d0d;
  }

  .service-lockers {
    background:
      linear-gradient(90deg, var(--paper) 0 52%, rgba(255, 250, 240, 0.18)),
      url("assets/lockers-card-web.jpg") 88% 50% / auto 100% no-repeat,
      var(--paper);
  }

  .service-content {
    width: min(58%, 330px);
  }

  .hero-left,
  .hero-right,
  .hero-image {
    grid-row: auto;
  }

  .hero-right {
    order: 1;
  }

  .hero-image {
    order: 2;
    min-height: clamp(320px, 74vw, 430px);
  }

  .hero-photo-laundry {
    background-size: auto 112%;
    background-position: 96% center;
    clip-path: polygon(0 0, 53% 0, 47% 100%, 0 100%);
  }

  .hero-photo-lockers {
    background-size: auto 112%;
    background-position: 36% center;
    clip-path: polygon(53% 0, 100% 0, 100% 100%, 47% 100%);
  }

  .hero-left {
    order: 3;
  }

  .hero-copy {
    padding: 34px 22px;
  }

  .hero h1,
  .hero h2 {
    max-width: 15ch;
    font-size: clamp(2rem, 10vw, 2.75rem);
  }

  .hero p {
    max-width: none;
  }

  .hero-badge {
    width: 84px;
    height: 84px;
    background-size: 58px auto;
    border-width: 5px;
  }

  .hero-image::before {
    width: 12px;
  }

  .trust-strip {
    width: 100%;
    margin-top: 0;
    border-radius: 0;
    padding: 18px;
  }

  .trust-strip article {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    padding: 14px 4px;
  }

  .trust-strip article:last-child {
    border-bottom: 0;
  }

  .process ol {
    grid-template-columns: 1fr;
  }

  .process-app {
    gap: 18px;
  }

  .waiting-lounge {
    grid-template-columns: 1fr;
    padding-inline: 18px;
  }

  .lounge-features {
    grid-template-columns: 1fr;
  }

  .app-panel {
    order: -1;
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 24px;
  }

  .app-panel .eyebrow,
  .app-panel h2,
  .app-panel > p,
  .app-store-row,
  .phone-mockup {
    grid-column: 1;
  }

  .app-panel h2 {
    font-size: clamp(1.7rem, 9vw, 2.2rem);
  }

  .app-store-row {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 260px;
  }

  .store-badge-small {
    width: min(100%, 220px);
  }

  .process {
    padding: 22px;
  }

  .process-flow {
    padding: 18px;
  }

  .process-columns {
    gap: 14px;
  }

  .process li:not(:last-child)::after {
    display: none;
  }

  .phone-mockup {
    position: relative;
    right: auto;
    bottom: auto;
    grid-row: auto;
    width: min(260px, 86%);
    margin: 22px auto 0;
  }

  .price-grid {
    gap: 10px;
  }

  .price-grid article {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 6px 14px;
    align-items: baseline;
    padding: 18px;
  }

  .price-grid h3,
  .price-grid .price {
    margin: 0;
  }

  .price-grid span {
    grid-column: 1 / -1;
  }

  .location-cta {
    display: grid;
    margin-top: 0;
    border-radius: 0;
  }

  .reservation-mobile-helper {
    display: grid;
    margin: 0;
    border-radius: 0;
  }

  .btn,
  .btn-wide {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 520px) {
  .header-actions {
    grid-template-columns: 1fr;
  }

  .header-actions > .btn-primary,
  .header-actions > .btn-outline {
    grid-column: 1;
  }

  .cta-card {
    justify-content: center;
    text-align: left;
  }

  .store-links {
    flex-direction: column;
    align-items: stretch;
  }

  .store-badge {
    width: 100%;
    max-width: 240px;
  }

  .hero h1,
  .hero h2 {
    max-width: 100%;
    font-size: clamp(1.8rem, 11vw, 2.45rem);
  }

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

  .laundry-modes span {
    padding: 0 10px;
  }

  .check-list li,
  .feature-dots li {
    font-size: 0.86rem;
  }

  .hero-image {
    min-height: clamp(280px, 82vw, 360px);
  }

  .hero-photo-laundry {
    background-size: auto 110%;
    background-position: 92% center;
    clip-path: polygon(0 0, 54% 0, 48% 100%, 0 100%);
  }

  .hero-photo-lockers {
    background-size: auto 110%;
    background-position: 38% center;
    clip-path: polygon(54% 0, 100% 0, 100% 100%, 48% 100%);
  }

  .trust-strip article {
    grid-template-columns: 44px 1fr;
  }

  .trust-strip .icon {
    width: 40px;
    height: 40px;
    font-size: 0;
  }

  .service-content {
    width: 100%;
    max-width: none;
    padding: 26px;
  }

  .service-laundry,
  .service-lockers {
    background-size: cover;
    background-position: center;
  }

  .service-laundry {
    background-image:
      linear-gradient(90deg, rgba(0, 0, 0, 0.94) 0 68%, rgba(0, 0, 0, 0.3)),
      url("assets/lavadoras-hero-web.jpg");
  }

  .service-lockers {
    background-image:
      linear-gradient(90deg, rgba(255, 250, 240, 0.96) 0 68%, rgba(255, 250, 240, 0.28)),
      url("assets/lockers-card-web.jpg");
  }
}
