:root {
  --ink: #0b0b10;
  --panel: #ffffff;
  --muted: #6d798c;
  --line: #e7ebf2;
  --soft: #f5f7fb;
  --purple: #720eec;
  --blue: #306bff;
  --green: #127a4b;
  --red: #b42318;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #0b0b10;
  color: var(--ink);
  font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

button,
input {
  font: inherit;
}

.page {
  min-height: 100vh;
  padding: 24px;
  display: grid;
  place-items: center;
}

.shell {
  width: min(1120px, 100%);
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(0, 0, 0, .34);
}

.brandbar {
  min-height: 68px;
  padding: 16px 24px;
  background: #060606;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 4px solid var(--purple);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 20px;
  font-weight: 800;
}

.brand img {
  width: 34px;
  height: 33px;
}

.brandbar__meta {
  color: #b9c2d1;
  font-size: 13px;
}

.layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 500px);
  min-height: 640px;
}

.intro {
  padding: 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--line);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--purple);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

h1 {
  max-width: 620px;
  margin: 0;
  font-size: 42px;
  line-height: 1.05;
  letter-spacing: 0;
}

.lead {
  max-width: 560px;
  margin: 18px 0 0;
  color: #374151;
  font-size: 17px;
  line-height: 1.6;
}

.product {
  margin-top: 28px;
  display: grid;
  grid-template-columns: minmax(180px, 260px) minmax(0, 1fr);
  gap: 22px;
  align-items: center;
}

.product img {
  width: 100%;
  height: auto;
  display: block;
}

.product__copy {
  border-left: 4px solid var(--blue);
  padding-left: 18px;
}

.product__copy p {
  margin: 0;
  color: #485365;
  font-size: 15px;
  line-height: 1.5;
}

.product__copy p + p {
  margin-top: 6px;
}

.product__copy strong {
  color: var(--ink);
  font-size: 24px;
}

.proof {
  margin: 26px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
  list-style: none;
}

.proof li {
  position: relative;
  padding-left: 18px;
  color: #374151;
  line-height: 1.45;
}

.proof li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: linear-gradient(135deg, var(--purple), var(--blue));
}

.booking {
  background: var(--soft);
  padding: 34px;
  display: flex;
  align-items: center;
}

#dw-booking-root {
  width: 100%;
  color: var(--ink);
}

.dw-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(20, 29, 45, .08);
}

.dw-hdr {
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}

.dw-hdr h2 {
  margin: 0;
  font-size: 21px;
  line-height: 1.2;
}

.dw-hdr p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.dw-body {
  padding: 20px;
}

.dw-lbl {
  margin: 0 0 9px;
  color: var(--purple);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.dw-calhead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.dw-month {
  font-size: 16px;
  font-weight: 800;
}

.dw-nav {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
}

.dw-nav:disabled {
  opacity: .35;
  cursor: not-allowed;
}

.dw-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 6px;
}

.dw-dow {
  padding-bottom: 4px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-align: center;
}

.dw-day {
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
}

.dw-day.off {
  background: #eef1f6;
  color: #b7bfcc;
  cursor: not-allowed;
}

.dw-day.full {
  background: #f7f1f1;
  color: #b85c57;
  cursor: not-allowed;
}

.dw-day.empty {
  border: 0;
  background: transparent;
  cursor: default;
}

.dw-day.sel {
  border-color: transparent;
  background: linear-gradient(135deg, var(--purple), var(--blue));
  color: #fff;
}

.dw-legend {
  margin: 13px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--muted);
  font-size: 12px;
}

.dw-legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.dw-legend i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.dw-panel {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.dw-loading,
.dw-empty {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.dw-slots h3 {
  margin: 0 0 12px;
  font-size: 15px;
}

.dw-slotgrid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.dw-slot {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
}

.dw-slot.sel {
  border-color: transparent;
  background: linear-gradient(135deg, var(--purple), var(--blue));
  color: #fff;
}

.dw-form {
  margin-top: 16px;
  display: grid;
  gap: 10px;
}

.dw-form input {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  background: #fff;
}

.dw-form input[readonly] {
  background: #f6f8fb;
  color: #485365;
}

.dw-form .hp {
  display: none;
}

.dw-cta {
  min-height: 48px;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(90deg, var(--purple), var(--blue));
  color: #fff;
  cursor: pointer;
  font-weight: 800;
}

.dw-cta:disabled {
  opacity: .55;
  cursor: not-allowed;
}

.dw-msg {
  min-height: 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.dw-msg.err {
  color: var(--red);
}

.dw-msg.ok {
  color: var(--green);
}

.dw-ok {
  padding: 16px 4px;
  text-align: center;
}

.dw-ok h3 {
  margin: 8px 0 6px;
}

.dw-access {
  padding: 14px 4px 6px;
}

.dw-access h3 {
  margin: 0 0 8px;
  font-size: 15px;
}

.dw-access p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.dw-foot {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
  text-align: center;
}

@media (max-width: 920px) {
  .page {
    padding: 12px;
    place-items: start center;
  }

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

  .intro {
    padding: 28px 24px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .booking {
    padding: 24px;
  }

  h1 {
    font-size: 34px;
  }
}

@media (max-width: 560px) {
  .brandbar {
    padding: 14px 16px;
  }

  .brandbar__meta {
    display: none;
  }

  .intro,
  .booking {
    padding: 18px;
  }

  h1 {
    font-size: 28px;
  }

  .lead {
    font-size: 15px;
  }

  .product {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .product img {
    max-width: 260px;
  }

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