:root {
  --bft-orange: #ff6b00;
  --bft-orange-dark: #df4f00;
  --ink: #161616;
  --muted: #666b70;
  --line: #e6e0da;
  --paper: #fffaf4;
  --white: #ffffff;
  --green: #16784a;
  --blue: #174ea6;
  --shadow: 0 18px 45px rgba(22, 22, 22, 0.12);
  --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);
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 10;
  background: var(--ink);
  color: var(--white);
  padding: 0.7rem 1rem;
  border-radius: 4px;
}

.skip-link:focus {
  top: 1rem;
}

.topbar {
  background: var(--ink);
  color: var(--white);
  font-size: 0.9rem;
}

.topbar__inner,
.header__inner,
.section__inner,
.footer__inner {
  width: min(1180px, calc(100vw - 32px));
  margin: 0 auto;
}

.topbar__inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.topbar a {
  color: var(--white);
  text-decoration: none;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 28px;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  white-space: nowrap;
}

.pill--open {
  background: rgba(22, 120, 74, 0.95);
}

.pill--closed {
  background: rgba(190, 50, 38, 0.95);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.header__inner {
  width: min(1360px, calc(100vw - 28px));
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
}

.brand {
  display: flex;
  align-items: center;
  min-width: 174px;
  text-decoration: none;
}

.brand img {
  width: auto;
  height: 64px;
  max-width: min(255px, 31vw);
  object-fit: contain;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
  color: var(--ink);
  font-size: 1.45rem;
  cursor: pointer;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.18rem;
  flex-wrap: nowrap;
  justify-content: flex-end;
}

.nav ul {
  display: flex;
  align-items: center;
  gap: 0.18rem;
  flex-wrap: nowrap;
  justify-content: flex-end;
  padding: 0;
  margin: 0;
  list-style: none;
}

.nav li {
  margin: 0;
}

.nav a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.56rem;
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 4px;
  white-space: nowrap;
}

.nav a:hover,
.nav a[aria-current="page"],
.nav .current > a,
.nav .active > a {
  background: var(--paper);
  color: var(--bft-orange-dark);
}

.nav .nav-cta {
  background: var(--bft-orange);
  color: var(--white);
}

.nav .nav-cta:hover,
.nav .nav-cta[aria-current="page"] {
  background: var(--ink);
  color: var(--white);
}

.language-switch {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.2rem 0.38rem;
  border: 1px solid var(--line);
  border-radius: 4px;
  font-weight: 850;
  white-space: nowrap;
}

.nav .language-switch a,
.nav .language-switch span {
  min-height: auto;
  padding: 0.12rem 0.28rem;
  border-radius: 3px;
  font-size: 0.9rem;
  line-height: 1.2;
}

.nav .language-switch a:hover {
  background: var(--paper);
  color: var(--bft-orange-dark);
}

.nav .language-switch [aria-current="page"] {
  background: var(--bft-orange);
  color: var(--white);
}

.language-divider {
  color: var(--muted);
}

.section {
  padding: clamp(44px, 7vw, 86px) 0;
}

.section--soft {
  background: var(--paper);
}

.section--dark {
  background: var(--ink);
  color: var(--white);
}

.hero {
  min-height: min(720px, calc(100vh - 42px));
  display: grid;
  align-items: center;
  background:
    linear-gradient(102deg, rgba(255, 107, 0, 0.16) 0 38%, rgba(255, 255, 255, 0) 38%),
    linear-gradient(180deg, var(--white), #fff6ed);
  overflow: hidden;
}

.hero__inner {
  width: min(1180px, calc(100vw - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  align-items: center;
  gap: clamp(32px, 6vw, 70px);
}

.eyebrow {
  margin: 0 0 0.7rem;
  color: var(--bft-orange-dark);
  font-size: 0.83rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  margin: 0;
  font-size: clamp(2.45rem, 6.4vw, 5.7rem);
}

h2 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4.2vw, 3.5rem);
}

h3 {
  margin: 0 0 0.55rem;
  font-size: 1.25rem;
}

.lead {
  margin: 1.2rem 0 0;
  color: #2e3338;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  max-width: 670px;
}

.section--dark .lead,
.section--dark .muted {
  color: rgba(255, 255, 255, 0.78);
}

.hero__actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.6rem;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.78rem 1rem;
  border: 1px solid transparent;
  border-radius: 4px;
  background: var(--ink);
  color: var(--white);
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
}

.button:hover {
  background: #000;
}

.button--orange {
  background: var(--bft-orange);
}

.button--orange:hover {
  background: var(--bft-orange-dark);
}

.button--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

.button--ghost:hover {
  background: var(--paper);
}

.button--google {
  background: #ffffff;
  color: #1f1f1f;
  border-color: #d6d9de;
}

.button--google::before {
  content: "G";
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(from -45deg, #4285f4 0 25%, #34a853 0 50%, #fbbc05 0 75%, #ea4335 0);
  color: #fff;
  font-weight: 900;
  font-size: 0.9rem;
}

.button--google:hover {
  background: #f7f8fa;
}

.small-text {
  font-size: 0.9rem;
}

.hero__visual {
  position: relative;
  isolation: isolate;
  display: grid;
  gap: 0.85rem;
}

.hero__logo-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(18px, 4vw, 34px);
  box-shadow: var(--shadow);
}

.hero__logo-panel img {
  width: 100%;
}

.hero__note {
  margin: 1rem 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}

.hero__opening-status {
  display: flex;
  justify-content: flex-start;
  margin-top: 0.75rem;
}

.hero__opening-status .pill {
  min-height: 34px;
  padding: 0.35rem 0.8rem;
  font-weight: 850;
}

.mini-fact {
  min-height: 82px;
  padding: 0.85rem;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
}

.mini-fact strong {
  display: block;
  font-size: 1.25rem;
}

.mini-fact span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

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

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

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

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

.card {
  min-height: 100%;
  max-width: 100%;
  padding: clamp(18px, 3vw, 26px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.card--dark {
  background: #202020;
  border-color: rgba(255, 255, 255, 0.1);
}

.card p,
.copy p {
  margin: 0.4rem 0 0;
}

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

.icon {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 6px;
  background: var(--paper);
  color: var(--bft-orange-dark);
  font-weight: 900;
  font-size: 1.2rem;
}

.service-link {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--bft-orange-dark);
  font-weight: 850;
  text-decoration: none;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(330px, 1.05fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.split > * {
  min-width: 0;
}

.split--top {
  align-items: start;
}

.image-frame {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

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

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  padding: 0;
  margin: 1rem 0 0;
  list-style: none;
}

.chips li {
  padding: 0.45rem 0.65rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  font-weight: 750;
}

.section--dark .chips li {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
}

.chips + .notice {
  margin-top: 1.1rem;
}

.price-list {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.wash-row {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.wash-row__number {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: var(--ink);
  color: var(--white);
  font-weight: 900;
}

.wash-row__features {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.wash-row__price {
  font-size: clamp(1.55rem, 4vw, 2.25rem);
  font-weight: 950;
  color: var(--bft-orange-dark);
  white-space: nowrap;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 0.9rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

th {
  background: var(--ink);
  color: var(--white);
}

tr:last-child td {
  border-bottom: 0;
}

.form {
  display: grid;
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.35rem;
}

.field label {
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  max-width: 100%;
  min-height: 46px;
  padding: 0.75rem 0.85rem;
  border: 1px solid #d1cbc4;
  border-radius: 4px;
  font: inherit;
  color: var(--ink);
  background: var(--white);
}

input[type="checkbox"] {
  width: auto;
  min-height: auto;
  accent-color: var(--bft-orange);
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.slot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(92px, 1fr));
  gap: 0.55rem;
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-weight: 750;
}

.checkbox input {
  margin-top: 0.32rem;
  flex: 0 0 auto;
}

.checkbox span {
  min-width: 0;
  flex: 1 1 auto;
}

.checkbox a {
  color: var(--bft-orange-dark);
  font-weight: 850;
}

.booking-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.booking-option {
  display: grid;
  gap: 1rem;
  min-height: 280px;
  align-content: start;
}

.booking-option h2 {
  margin-bottom: 0;
  font-size: 1.55rem;
}

.booking-option__meta {
  display: grid;
  gap: 0.45rem;
  padding: 0;
  margin: 0;
  list-style: none;
  color: var(--muted);
}

.booking-option__meta li {
  display: flex;
  gap: 0.5rem;
}

.booking-option__meta li::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-top: 0.55rem;
  border-radius: 50%;
  background: var(--bft-orange);
  flex: 0 0 auto;
}

.info-list {
  display: grid;
  gap: 0.7rem;
  padding: 0;
  margin: 1.2rem 0 0;
  list-style: none;
}

.info-list li {
  padding: 0.85rem 0.95rem;
  border-left: 4px solid var(--bft-orange);
  border-radius: 0 6px 6px 0;
  background: var(--paper);
  color: #34383d;
  font-weight: 720;
}

.slot {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
  font-weight: 800;
  cursor: pointer;
}

.slot:hover,
.slot.is-selected {
  border-color: var(--bft-orange);
  background: #fff0e5;
}

.slot:disabled {
  color: #a09a94;
  background: #f3f0ec;
  cursor: not-allowed;
}

.notice {
  padding: 1rem;
  border-left: 4px solid var(--bft-orange);
  background: #fff3e8;
  border-radius: 0 6px 6px 0;
}

.account-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.95fr);
  gap: 1.25rem;
  margin-bottom: 1rem;
  background: #fffdfb;
}

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

.account-panel h2,
.account-panel h3 {
  margin-bottom: 0.4rem;
}

.account-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}

.account-bookings {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.account-profile {
  margin-bottom: 1rem;
  background: #fffdfb;
}

.account-profile h2 {
  margin-bottom: 0.35rem;
  font-size: clamp(1.55rem, 2.6vw, 2.1rem);
}

.account-list {
  display: grid;
  gap: 0.7rem;
  padding: 0;
  margin: 0.9rem 0 0;
  list-style: none;
}

.account-list li {
  display: grid;
  gap: 0.15rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid var(--line);
}

.account-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.account-list em {
  width: max-content;
  padding: 0.18rem 0.45rem;
  border-radius: 999px;
  background: #e8f5ee;
  color: #0f4d30;
  font-style: normal;
  font-weight: 850;
  font-size: 0.82rem;
}

.confirmation {
  display: none;
  padding: 1rem;
  border-radius: var(--radius);
  background: #e8f5ee;
  color: #0f4d30;
  font-weight: 800;
}

.confirmation.is-visible {
  display: block;
}

.manager-app {
  min-height: 72vh;
  padding: clamp(24px, 5vw, 56px) 0;
  background: #f6f3ef;
}

.manager-shell {
  width: min(1360px, calc(100vw - 24px));
  margin: 0 auto;
}

.manager-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.manager-top h1 {
  font-size: clamp(2.1rem, 5vw, 4rem);
}

.manager-top__actions,
.manager-actions,
.manager-status-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.manager-filter {
  display: grid;
  grid-template-columns: auto minmax(180px, 320px) auto;
  align-items: end;
  gap: 0.65rem;
  margin-bottom: 1rem;
  padding: 0.85rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.manager-filter label {
  font-weight: 850;
}

.manager-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.manager-stats div {
  min-height: 76px;
  padding: 0.8rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.manager-stats strong {
  display: block;
  font-size: 1.65rem;
  line-height: 1;
}

.manager-stats span {
  display: block;
  margin-top: 0.25rem;
  color: var(--muted);
  font-weight: 750;
}

.manager-calendar {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.65rem;
}

.manager-day {
  min-width: 0;
  min-height: 220px;
  padding: 0.65rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.manager-day.is-today {
  border-color: var(--bft-orange);
  box-shadow: 0 0 0 2px rgba(255, 107, 0, 0.12);
}

.manager-day > header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.65rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid var(--line);
}

.manager-day > header span {
  color: var(--muted);
  font-weight: 850;
}

.manager-day > header strong {
  font-size: 1.05rem;
}

.manager-empty {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.manager-booking {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 0.65rem;
  padding: 0.7rem;
  border: 1px solid var(--line);
  border-left-width: 5px;
  border-radius: 6px;
  background: #fffdfb;
}

.manager-booking:last-child {
  margin-bottom: 0;
}

.manager-booking.is-pending {
  border-left-color: var(--bft-orange);
}

.manager-booking.is-confirmed {
  border-left-color: var(--green);
}

.manager-booking.is-cancelled {
  border-left-color: #888;
  opacity: 0.76;
}

.manager-booking.is-completed {
  border-left-color: var(--blue);
}

.manager-booking__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.manager-booking__head strong {
  font-size: 1.08rem;
}

.manager-booking__head span {
  padding: 0.18rem 0.45rem;
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
}

.manager-booking h3 {
  margin: 0;
  font-size: 1rem;
}

.manager-booking p {
  margin: 0;
  color: #2d3236;
  font-weight: 760;
}

.manager-facts {
  display: grid;
  gap: 0.35rem;
  margin: 0;
}

.manager-facts div {
  display: grid;
  gap: 0.08rem;
}

.manager-facts dt {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.manager-facts dd {
  margin: 0;
  font-weight: 760;
  overflow-wrap: anywhere;
}

.manager-action,
.manager-button {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.65rem;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
  color: var(--ink);
  font-weight: 850;
  font-size: 0.86rem;
  text-decoration: none;
  cursor: pointer;
}

.manager-button--confirm {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

.manager-button--decline {
  background: #8b2e22;
  color: var(--white);
  border-color: #8b2e22;
}

.manager-button--neutral {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.manager-inline-form {
  margin: 0;
}

.wash-board {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.wash-card {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.wash-card--featured {
  border-color: var(--bft-orange);
  box-shadow: 0 10px 28px rgba(255, 107, 0, 0.12);
}

.wash-card__number {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: var(--ink);
  color: var(--white);
  font-weight: 950;
  font-size: 1.2rem;
}

.wash-card h3 {
  margin-bottom: 0.35rem;
}

.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.55rem;
  padding: 0;
  margin: 0;
  list-style: none;
  color: var(--muted);
  font-size: 0.95rem;
}

.feature-list li {
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
}

.feature-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--bft-orange);
}

.price-badge {
  min-width: 112px;
  display: inline-flex;
  justify-content: center;
  padding: 0.45rem 0.75rem;
  border-radius: 6px;
  background: var(--paper);
  color: var(--bft-orange-dark);
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  font-weight: 950;
  white-space: nowrap;
}

.page-hero {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  padding: clamp(44px, 7vw, 78px) 0;
}

.page-hero__inner {
  width: min(1180px, calc(100vw - 32px));
  margin: 0 auto;
}

.page-hero h1 {
  font-size: clamp(2.25rem, 5vw, 4.6rem);
}

.com-content-article > .page-header,
.com-content-article__body > .page-header {
  display: none;
}

.com-content-article > .icons,
.com-content-article > dl.article-info,
.com-content-article > .article-info,
.com-content-article .article-info,
.com-content-article .pagenavigation,
.com-content-article .pagination,
.com-content-article .pager,
.com-content-article nav[aria-label="Page Navigation"],
.com-content-article .next,
.com-content-article .previous,
.com-content-article .item-page .pagenav,
.mod-breadcrumbs,
.breadcrumb {
  display: none !important;
}

.com-content-article {
  margin: 0;
}

.com-content-article__body {
  margin: 0;
}

#system-message-container {
  width: min(1180px, calc(100vw - 32px));
  margin: 1rem auto;
}

.construction-page {
  position: fixed;
  left: 0;
  right: 0;
  top: 124px;
  bottom: 0;
  z-index: 4;
  min-height: auto;
  display: grid;
  place-items: center;
  padding: clamp(44px, 8vw, 92px) 1rem;
  background:
    linear-gradient(102deg, rgba(255, 107, 0, 0.12) 0 38%, rgba(255, 255, 255, 0) 38%),
    rgba(255, 250, 244, 0.88);
  backdrop-filter: blur(8px);
}

.construction-page[hidden] {
  display: none !important;
}

.construction-card {
  width: min(720px, 100%);
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 5vw, 44px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
  text-align: center;
}

.construction-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: var(--bft-orange);
}

.construction-card h1 {
  max-width: 640px;
  margin: 0 auto;
  font-size: clamp(2rem, 4.8vw, 3.8rem);
}

.construction-card .lead {
  margin-left: auto;
  margin-right: auto;
}

.construction-card .button {
  min-width: 132px;
}

.com-users-login {
  width: min(980px, calc(100vw - 32px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.8fr);
  gap: 0;
  margin: clamp(42px, 7vw, 88px) auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.com-users-login::before {
  content: "Kundenkonto";
  grid-column: 2;
  grid-row: 1 / span 2;
  display: grid;
  align-content: end;
  min-height: 100%;
  padding: clamp(24px, 4vw, 38px);
  background:
    linear-gradient(145deg, rgba(255, 107, 0, 0.94), rgba(223, 79, 0, 0.94)),
    var(--bft-orange);
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 950;
  line-height: 1;
}

.com-users-login .page-header,
.com-users-login legend {
  display: none;
}

.com-users-login__form {
  grid-column: 1;
  grid-row: 1;
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: clamp(24px, 5vw, 42px);
  border: 0;
  background: #fffdfb;
}

.com-users-login fieldset {
  display: grid;
  gap: 1rem;
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

.com-users-login .control-group {
  display: grid;
  gap: 0.35rem;
  margin: 0;
}

.com-users-login .control-label label,
.com-users-login .form-check-label {
  font-weight: 850;
}

.com-users-login .star {
  color: var(--bft-orange-dark);
}

.com-users-login .controls,
.com-users-login .password-group,
.com-users-login .input-group {
  min-width: 0;
}

.com-users-login .input-group {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.45rem;
}

.com-users-login input:not([type="checkbox"]) {
  min-height: 52px;
  border-color: #d8d0c8;
  background: var(--white);
}

.com-users-login input:not([type="checkbox"]):focus {
  border-color: var(--bft-orange);
  outline: 3px solid rgba(255, 107, 0, 0.16);
}

.com-users-login .btn,
.com-users-login button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 4px;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.com-users-login .btn-primary {
  width: 100%;
  background: var(--bft-orange);
  color: var(--white);
}

.com-users-login .btn-primary:hover {
  background: var(--bft-orange-dark);
}

.com-users-login .btn-secondary,
.com-users-login .input-password-toggle {
  width: 52px;
  border-color: var(--line);
  background: var(--white);
  color: var(--ink);
}

.com-users-login__remember .form-check {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.com-users-login__options {
  grid-column: 1;
  grid-row: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  padding: 0 clamp(24px, 5vw, 42px) clamp(24px, 5vw, 42px);
  background: #fffdfb;
}

.com-users-login__options a {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ink);
  text-align: center;
  text-decoration: none;
  font-weight: 800;
}

.com-users-login__options a:hover {
  border-color: var(--bft-orange);
  background: var(--paper);
  color: var(--bft-orange-dark);
}

.footer {
  background: #111;
  color: var(--white);
  padding: 42px 0 24px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 1.5rem;
}

.footer a {
  color: var(--white);
  text-decoration: none;
}

.footer ul {
  padding: 0;
  margin: 0.7rem 0 0;
  list-style: none;
}

.footer li + li {
  margin-top: 0.35rem;
}

.footer__bottom {
  width: min(1180px, calc(100vw - 32px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 1.8rem auto 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.86rem;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.legal-links a {
  color: inherit;
  text-decoration: none;
}

.legal-links a:hover {
  color: var(--white);
}

@media (max-width: 1120px) {
  .header__inner {
    width: min(100vw - 24px, 1080px);
    gap: 0.45rem;
  }

  .brand {
    min-width: 162px;
  }

  .brand img {
    width: auto;
    height: 60px;
    max-width: min(210px, 27vw);
  }

  .nav {
    gap: 0.08rem;
  }

  .nav a {
    padding: 0.36rem 0.38rem;
    font-size: 0.82rem;
  }

  .language-switch {
    padding: 0.16rem 0.28rem;
  }

  .nav .language-switch a,
  .nav .language-switch span {
    padding: 0.1rem 0.22rem;
    font-size: 0.82rem;
  }
}

@media (max-width: 900px) {
  .topbar__inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 0.65rem 0;
  }

  .header__inner {
    min-height: 74px;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 74px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.7rem 1rem 1rem;
    background: var(--white);
    border-bottom: 1px solid var(--line);
  }

  .nav ul {
    flex-direction: column;
    align-items: stretch;
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    justify-content: center;
  }

  .language-switch {
    justify-content: center;
  }

  .hero__inner,
  .split,
  .account-panel,
  .com-users-login,
  .booking-options,
  .manager-calendar,
  .grid--2,
  .grid--3,
  .grid--4,
  .footer__inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    min-height: auto;
    padding: 46px 0;
  }

  .construction-page {
    top: 116px;
  }

  .com-users-login::before {
    grid-column: 1;
    min-height: 150px;
    grid-row: 1;
    align-content: center;
  }

  .com-users-login__form {
    grid-row: 2;
  }

  .com-users-login__options {
    grid-row: 3;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .section__inner,
  .page-hero__inner,
  .footer__inner,
  .footer__bottom {
    width: calc(100vw - 16px);
    max-width: calc(100vw - 16px);
    margin-left: 8px;
    margin-right: 8px;
  }

  .brand img {
    width: auto;
    height: 58px;
    max-width: min(220px, 62vw);
  }

  .hero__note,
  .form-grid,
  .wash-row,
  .wash-card {
    grid-template-columns: 1fr;
  }

  .wash-row__price {
    justify-self: start;
  }

  .price-badge {
    justify-self: start;
  }

  .button {
    width: 100%;
  }

  .manager-shell {
    width: calc(100vw - 16px);
  }

  .manager-top {
    align-items: stretch;
    flex-direction: column;
  }

  .manager-top__actions,
  .manager-actions,
  .manager-status-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .manager-filter,
  .manager-stats {
    grid-template-columns: 1fr;
  }

  .manager-calendar {
    gap: 0.8rem;
  }

  .manager-day {
    min-height: auto;
  }

  .manager-action,
  .manager-button {
    width: 100%;
  }
}
