@font-face {
  font-family: Regatto;
  src: url("assets/brand/Regatto.ttf");
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: #102849;
  background: #061b35;
  font-family: Inter, Arial, sans-serif;
}

button,
input,
select {
  font: inherit;
}

.booking-shell {
  min-height: 100svh;
  background:
    linear-gradient(180deg, rgba(6, 27, 53, .22), rgba(6, 27, 53, .88)),
    url("teaser-detailing/teaser-visual.png") center top / cover fixed,
    #061b35;
}

.hero,
.booking-card,
footer {
  width: min(1040px, calc(100% - 28px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
  align-items: end;
  padding: 42px 0 24px;
  color: #fff;
}

.brand {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .24);
}

.brand img {
  width: 100%;
  display: block;
}

.brand span {
  display: block;
  margin-top: 10px;
  color: #0a5da5;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .16em;
}

.hero-copy p,
.booking-card h2,
footer strong {
  color: #9cd43c;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.hero-copy h1 {
  max-width: 720px;
  margin: 8px 0 14px;
  font-size: clamp(42px, 7vw, 82px);
  line-height: .96;
}

.hero-copy span {
  display: block;
  max-width: 600px;
  color: #e4edf5;
  font-size: 18px;
  line-height: 1.5;
}

.booking-card {
  display: grid;
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 28px;
  background: rgba(246, 249, 252, .94);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .28);
}

.booking-card section {
  padding: 18px;
  border: 1px solid #dbe5ec;
  border-radius: 22px;
  background: #fff;
}

.booking-card h2 {
  margin: 0 0 14px;
}

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

label {
  display: grid;
  gap: 7px;
  color: #41576a;
  font-size: 13px;
  font-weight: 900;
}

input,
select {
  width: 100%;
  min-width: 0;
  padding: 14px;
  border: 1px solid #cbd8e2;
  border-radius: 14px;
  color: #102849;
  background: #fff;
}

.service-grid,
.options-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.thursday-offer {
  margin-top: 14px;
}

.service-card,
.option-card {
  position: relative;
  border: 1px solid #d8e4ec;
  border-radius: 18px;
  background: #f7fbfd;
  cursor: pointer;
}

.service-card {
  padding: 16px;
  min-height: 170px;
}

.service-card.active {
  border-color: #9cd43c;
  box-shadow: inset 0 0 0 2px #9cd43c;
}

.service-card small {
  color: #0a5da5;
  font-weight: 900;
  text-transform: uppercase;
}

.service-card strong {
  display: block;
  margin: 8px 0;
  font-size: 21px;
}

.service-card em {
  display: block;
  margin-top: 12px;
  color: #9b7420;
  font-style: normal;
  font-size: 28px;
  font-weight: 1000;
}

.service-card p,
.micro-status,
.summary p {
  margin: 0;
  color: #607489;
  line-height: 1.45;
}

.thursday-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  overflow: hidden;
  padding: 20px;
  border: 1px solid rgba(156, 212, 60, .55);
  border-radius: 22px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(6, 27, 53, .96), rgba(12, 75, 70, .92)),
    #061b35;
  box-shadow: 0 18px 48px rgba(6, 27, 53, .22);
}

.thursday-card::before {
  content: "";
  position: absolute;
  inset: -40% auto auto 55%;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(156, 212, 60, .42), transparent 68%);
}

.thursday-card small {
  color: #9cd43c;
  font-weight: 1000;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.thursday-card strong {
  display: block;
  margin: 6px 0;
  font-size: 26px;
}

.thursday-card p {
  position: relative;
  margin: 0;
  color: #dce8f0;
}

.thursday-card em {
  position: relative;
  display: grid;
  place-items: center;
  width: 98px;
  height: 98px;
  border: 2px solid #9cd43c;
  border-radius: 999px;
  color: #061b35;
  background: linear-gradient(135deg, #dfffb2, #9cd43c);
  font-size: 30px;
  font-style: normal;
  font-weight: 1000;
  box-shadow: 0 0 30px rgba(156, 212, 60, .38);
}

.thursday-card.active {
  border-color: #f3cc62;
  box-shadow: 0 20px 60px rgba(243, 204, 98, .22);
}

.discount-line {
  color: #9cd43c !important;
  font-weight: 900;
}

.option-card {
  padding: 13px;
}

.option-card input {
  width: auto;
  margin: 0 8px 0 0;
}

.confirm-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 14px;
}

.confirm-grid label {
  display: flex;
  align-items: center;
  padding: 12px 14px;
  border-radius: 999px;
  background: #eef5e9;
}

.confirm-grid input {
  width: auto;
}

.summary {
  margin: 14px 0;
  padding: 16px;
  border-radius: 18px;
  background: #061b35;
  color: #fff;
}

.summary strong {
  display: block;
  margin-bottom: 6px;
  font-size: 26px;
}

.summary p {
  color: #dce8f0;
}

button {
  width: 100%;
  padding: 16px;
  border: 0;
  border-radius: 16px;
  color: #061b35;
  background: #9cd43c;
  font-weight: 1000;
  cursor: pointer;
}

output {
  display: block;
  margin-top: 12px;
  min-height: 24px;
  color: #496070;
  font-weight: 900;
}

output.success {
  color: #2e6d15;
}

footer {
  display: grid;
  gap: 6px;
  padding: 26px 0 36px;
  color: #dce8f0;
}

@media (max-width: 860px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 24px;
  }

  .brand {
    width: min(280px, 100%);
  }

  .service-grid,
  .options-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .grid,
  .service-grid,
  .options-grid {
    grid-template-columns: 1fr;
  }

  .thursday-card {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    font-size: 42px;
  }

  .booking-card {
    padding: 10px;
    border-radius: 22px;
  }
}
