:root {
  --bg: #0f1115;
  --panel: #151820;
  --panel-strong: #1b1f28;
  --text: #f5f5f5;
  --muted: #b7bbc3;
  --subtle: #858b96;
  --line: rgba(245, 245, 245, 0.12);
  --line-strong: rgba(214, 203, 177, 0.32);
  --metal: #d6cbb1;
  --silver: #d7dbe3;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 500;
  line-height: 1.55;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: rgba(15, 17, 21, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--metal);
  background: #0a0c10;
  font-size: 0.74rem;
  font-weight: 800;
}

.header-book,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: var(--radius);
  font-weight: 800;
  letter-spacing: 0;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.header-book,
.primary-button {
  border: 1px solid var(--text);
  color: #0b0d10;
  background: var(--text);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.3);
}

.secondary-button {
  border: 1px solid var(--line-strong);
  color: var(--text);
  background: rgba(245, 245, 245, 0.04);
}

.header-book:hover,
.primary-button:hover,
.secondary-button:hover {
  transform: translateY(-1px);
}

.hero {
  position: relative;
  overflow: hidden;
  display: grid;
  min-height: calc(100svh - 64px);
  padding: 34px 18px 18px;
  background: var(--bg);
  scroll-margin-top: 76px;
}

.hero-copy {
  position: relative;
  z-index: 1;
  align-self: start;
  max-width: 680px;
  padding: 56px 0 20px;
}

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

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

h1,
h2,
h3 {
  font-family: "Bebas Neue", "Arial Narrow", Impact, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 12ch;
  margin-bottom: 18px;
  font-size: 3.8rem;
  line-height: 0.9;
}

h2 {
  margin-bottom: 16px;
  font-size: 3.2rem;
  line-height: 0.96;
}

h3 {
  margin-bottom: 0;
  font-size: 2rem;
  line-height: 0.98;
}

.hero-text {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(15, 17, 21, 0.46), #0f1115 92%),
    linear-gradient(90deg, rgba(15, 17, 21, 0.98) 0%, rgba(15, 17, 21, 0.9) 44%, rgba(15, 17, 21, 0.24) 100%),
    url("/assets/leon-hero-mobile.webp") -108px center / auto 100% no-repeat;
  opacity: 0.9;
}

.section,
.booking-band {
  padding: 72px 18px;
}

.section {
  background: var(--bg);
}

.about,
.contact {
  display: grid;
  gap: 26px;
}

.about p:not(.eyebrow),
.contact p {
  color: var(--muted);
  font-size: 1.05rem;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 26px;
}

.service-location {
  max-width: 640px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1rem;
}

.service-grid {
  display: grid;
  gap: 16px;
}

.service-card {
  display: grid;
  gap: 20px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.18);
}

.service-card.featured {
  border-color: var(--line-strong);
  background: var(--panel-strong);
}

.service-topline {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  justify-content: space-between;
}

.service-topline span {
  flex: 0 0 auto;
  min-width: 58px;
  padding: 6px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--metal);
  background: rgba(214, 203, 177, 0.06);
  font-size: 0.76rem;
  font-weight: 800;
  text-align: center;
}

.service-card p,
.service-card li,
.price span {
  color: var(--muted);
}

.service-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
}

.service-card li::marker {
  color: var(--metal);
}

.price {
  display: grid;
  gap: 4px;
}

.price strong {
  color: var(--text);
  font-size: 1.18rem;
}

.booking-band {
  display: grid;
  gap: 28px;
  color: var(--text);
  background: #0a0c10;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.booking-intro p:not(.eyebrow) {
  color: var(--muted);
}

.booking-panel {
  display: grid;
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(245, 245, 245, 0.045);
  box-shadow: var(--shadow);
}

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

.booking-choice {
  min-height: 48px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  background: rgba(245, 245, 245, 0.04);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.booking-choice.active {
  border-color: var(--metal);
  color: #0f1115;
  background: var(--metal);
}

.calendly-frame {
  min-height: 760px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
}

.calendly-frame iframe,
.calendly-inline-widget {
  width: 100%;
  min-width: 0;
  height: 760px;
  border: 0;
}

.calendly-fallback {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.calendly-fallback a {
  color: var(--metal);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

label,
fieldset {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  border: 0;
}

label span,
legend {
  color: var(--silver);
  font-size: 0.84rem;
  font-weight: 700;
}

.availability-note {
  margin: -2px 0 2px;
  color: var(--metal);
  font-size: 0.9rem;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  background: rgba(15, 17, 21, 0.86);
  font: inherit;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(214, 203, 177, 0.35);
  outline-offset: 2px;
  border-color: var(--line-strong);
}

input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  filter: invert(1) brightness(1.8);
  opacity: 0.9;
}

select option {
  color: #0f1115;
}

textarea {
  resize: vertical;
}

.form-grid {
  display: grid;
  gap: 16px;
}

.time-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  min-height: 48px;
}

.time-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.time-option span {
  display: grid;
  min-height: 48px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  background: rgba(245, 245, 245, 0.04);
  font-weight: 800;
}

.time-option input:checked + span {
  border-color: var(--metal);
  color: #0f1115;
  background: var(--metal);
}

.empty-slots {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--subtle);
}

.submit-button {
  width: 100%;
  font-size: 1rem;
}

.form-message {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
}

.form-message.success {
  color: #b8dfc7;
}

.form-message.error {
  color: #f0b5aa;
}

.contact {
  background: var(--bg);
}

.contact-actions {
  display: grid;
  gap: 10px;
}

.contact-actions a {
  min-height: 52px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  background: rgba(245, 245, 245, 0.035);
  font-weight: 800;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 18px;
  color: var(--subtle);
  background: #0a0c10;
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
}

footer a {
  color: var(--text);
  font-weight: 800;
}

@media (max-width: 380px) {
  h1 {
    font-size: 3.2rem;
  }

  h2 {
    font-size: 2.8rem;
  }
}

@media (min-width: 760px) {
  .site-header,
  .section,
  .booking-band,
  footer {
    padding-left: 42px;
    padding-right: 42px;
  }

  .hero {
    min-height: calc(100svh - 76px);
    padding: 30px 42px;
  }

  h1 {
    max-width: 11ch;
    font-size: 5.7rem;
  }

  h2 {
    font-size: 4.6rem;
  }

  .hero-copy {
    align-self: center;
    padding: 20px 0;
  }

  .hero-media {
    background:
      linear-gradient(90deg, rgba(15, 17, 21, 0.96) 0%, rgba(15, 17, 21, 0.78) 43%, rgba(15, 17, 21, 0.08) 100%),
      linear-gradient(180deg, rgba(15, 17, 21, 0.12), #0f1115 98%),
      url("/assets/leon-hero-desktop.webp") right center / cover no-repeat;
  }

  .about,
  .contact,
  .booking-band {
    grid-template-columns: 0.82fr 1.18fr;
    align-items: start;
  }

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

  .service-card {
    padding: 28px;
  }

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

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

@media (min-width: 1100px) {
  .site-header,
  .section,
  .booking-band,
  footer {
    padding-left: max(64px, calc((100vw - 1180px) / 2));
    padding-right: max(64px, calc((100vw - 1180px) / 2));
  }

  .hero {
    padding-left: max(64px, calc((100vw - 1180px) / 2));
    padding-right: max(64px, calc((100vw - 1180px) / 2));
  }
}
