:root {
  --bg: #0b1220;
  --bg-soft: #111a2d;
  --panel: rgba(255, 255, 255, 0.08);
  --panel-strong: rgba(255, 255, 255, 0.14);
  --text: #f5f7fb;
  --text-muted: #bfd0e8;
  --line: rgba(255, 255, 255, 0.12);
  --accent: #ff7a00;
  --accent-strong: #ff5a1f;
  --accent-soft: #ffd8bd;
  --success: #91f2c2;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.25);
  --paper: #f6f1e8;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.06), transparent 24%),
    linear-gradient(180deg, #193f67 0%, #234b77 48%, #f5efe6 48%, #f8f4ee 100%);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

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

.hero {
  min-height: 100vh;
  padding: 24px clamp(20px, 4vw, 56px) 56px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 90px -10% auto auto;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.14), transparent 70%);
  pointer-events: none;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 72px;
}

.brand,
.nav-links a,
h1,
h2,
h3 {
  font-family: "Barlow Condensed", sans-serif;
  letter-spacing: 0.03em;
}

.brand {
  font-size: 1.4rem;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--text-muted);
}

.nav-links a {
  padding: 8px 0;
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.85fr);
  gap: 32px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: #dbe8f7;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  font-weight: 800;
}

h1 {
  margin: 0;
  font-size: clamp(3.8rem, 9vw, 7rem);
  line-height: 0.85;
  text-transform: uppercase;
  text-shadow: 6px 6px 0 rgba(0, 0, 0, 0.45);
  max-width: 8ch;
}

.hero-text,
.section-copy,
.service-card p,
.results-list p,
.footer p,
.form-note,
.booking-summary,
.empty-state {
  color: var(--text-muted);
  line-height: 1.7;
}

.hero-text {
  max-width: 40rem;
  font-size: 1.05rem;
  margin: 18px 0 22px;
}

.hero-trust {
  margin: 0 0 22px;
  color: #dbe8f7;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hero-location {
  margin: 12px 0 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.6rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #f7fbff;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  min-height: 52px;
  padding: 14px 22px;
  font-weight: 800;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.button:hover,
.slot-button:hover,
.slot-button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, #ffffff, #dfeaf7);
  color: #17385b;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.button-primary:hover {
  background: linear-gradient(135deg, #ffffff, #f3f7fb);
  color: #fff;
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.button-full {
  width: 100%;
  border: none;
  font-size: 1rem;
  cursor: pointer;
}

.hero-points {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
  color: var(--text);
}

.hero-points li::before {
  content: "•";
  color: var(--accent);
  margin-right: 10px;
}

.hero-card,
.service-card,
.testimonial-card,
.booking-panel,
.booking-form {
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

.hero-card {
  border-radius: 28px;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(10, 27, 49, 0.65), rgba(17, 34, 58, 0.9)),
    var(--panel);
}

.card-label {
  margin: 0 0 20px;
  color: #dbe8f7;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
}

.card-label-light {
  color: rgba(255, 255, 255, 0.88);
}

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

.focus-grid article {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
}

.focus-grid span {
  display: block;
  font-size: 0.78rem;
  color: #dbe8f7;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.focus-grid strong {
  font-size: 1.05rem;
}

.section {
  padding: 88px clamp(20px, 4vw, 56px);
}

.section-dark {
  background: #234b77;
}

.section-paper {
  background: var(--paper);
  color: #0f1930;
}

.section-accent {
  color: #0f1930;
}

.section-accent .section-copy,
.section-accent .booking-summary,
.section-accent .form-note,
.section-accent label,
.section-accent .slots-header small {
  color: rgba(15, 25, 48, 0.76);
}

.section-heading {
  max-width: 48rem;
  margin-bottom: 34px;
}

h2 {
  margin: 0;
  font-size: clamp(2.3rem, 5vw, 4rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.service-grid,
.marketing-grid,
.booking-layout {
  display: grid;
  gap: 24px;
}

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

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

.service-card {
  border-radius: 26px;
  padding: 24px;
}

.service-card h3 {
  margin: 0 0 10px;
  font-size: 1.75rem;
  text-transform: uppercase;
}

.service-card strong {
  display: inline-block;
  margin-top: 18px;
  color: #fff;
}

.paint-label {
  display: inline-block;
  padding: 8px 18px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: #ffffff;
  color: #234b77;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  box-shadow: 0 8px 22px rgba(35, 75, 119, 0.12);
}

.paint-label-dark {
  background: #f4f0e7;
  margin-bottom: 12px;
}

.eyebrow-dark {
  color: #234b77;
}

.section-accent h2,
.section-accent .eyebrow,
.footer h2 {
  color: #0f1930;
}

.marketing-card {
  border-radius: 24px;
  padding: 24px;
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(15, 25, 48, 0.08);
}

.marketing-card strong {
  display: block;
  margin-bottom: 10px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.6rem;
  text-transform: uppercase;
  color: #234b77;
}

.marketing-price {
  display: inline-block;
  margin-top: 16px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2rem;
  line-height: 1;
  text-transform: uppercase;
  color: #17385b;
}

.marketing-savings {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(35, 75, 119, 0.08);
  color: #234b77;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.15rem;
  text-transform: uppercase;
}

.marketing-card p {
  margin: 0;
  color: rgba(15, 25, 48, 0.8);
  line-height: 1.7;
}

.booking-layout {
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
}

.booking-panel,
.booking-form {
  border-radius: 28px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.8);
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
}

select,
input,
textarea {
  width: 100%;
  min-height: 54px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(15, 25, 48, 0.14);
  background: rgba(255, 255, 255, 0.9);
  font: inherit;
  color: #0f1930;
}

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

.field-row + .field-row,
.booking-panel label:not(:first-of-type),
.booking-panel input,
.booking-panel .slots-header,
.booking-summary,
.form-note {
  margin-top: 18px;
}

.slots-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.slot-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.empty-state {
  padding: 18px;
  border-radius: 18px;
  background: rgba(15, 25, 48, 0.06);
}

.slot-button {
  border: 1px solid rgba(15, 25, 48, 0.14);
  background: rgba(255, 255, 255, 0.92);
  color: #0f1930;
  min-height: 58px;
  padding: 12px 14px;
  border-radius: 18px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.slot-button.selected {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #fff;
  border-color: transparent;
}

.slot-button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.booking-summary {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(35, 75, 119, 0.08);
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  padding: 44px clamp(20px, 4vw, 56px) 60px;
  background: var(--paper);
  color: #0f1930;
}

.footer-note {
  max-width: 24rem;
}

.hidden,
[hidden] {
  display: none;
}

.admin-shell {
  min-height: 100vh;
  padding: 24px clamp(20px, 4vw, 56px) 56px;
  background:
    radial-gradient(circle at top left, rgba(255, 122, 0, 0.14), transparent 28%),
    linear-gradient(180deg, #08101d 0%, #0f1930 45%, #f5efe6 45%, #f8f4ee 100%);
}

.admin-gate {
  min-height: calc(100vh - 80px);
  display: grid;
  place-items: center;
}

.admin-gate-card {
  width: min(100%, 460px);
  padding: 28px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.admin-header {
  max-width: 46rem;
  margin: 56px 0 36px;
}

.admin-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(0, 1.05fr);
  gap: 24px;
  align-items: start;
}

.admin-card {
  border-radius: 28px;
  padding: 26px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.admin-card.dark {
  background: rgba(7, 16, 33, 0.84);
  color: var(--text);
  backdrop-filter: blur(10px);
}

.admin-card.light {
  background: rgba(255, 255, 255, 0.72);
  color: #0f1930;
}

.admin-card.light .eyebrow,
.admin-card.light h2,
.admin-card.light h3,
.admin-card.light p,
.admin-card.light label,
.admin-card.light .helper-text {
  color: #0f1930;
}

.field-inline {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.week-toolbar,
.selection-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 0;
}

.helper-tight {
  margin-top: 8px;
}

.day-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.day-card {
  min-height: 108px;
  padding: 16px;
  border: 1px solid rgba(15, 25, 48, 0.14);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  color: #0f1930;
  font: inherit;
  text-align: left;
  cursor: pointer;
  display: grid;
  gap: 4px;
}

.day-card.selected {
  background: linear-gradient(135deg, #234b77, #17385b);
  color: #fff;
  border-color: transparent;
}

.day-card-label,
.preset-subtitle,
.day-card-meta {
  font-size: 0.86rem;
  opacity: 0.78;
}

.day-card strong,
.preset-title {
  font-size: 1.2rem;
  line-height: 1;
}

.admin-block {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(15, 25, 48, 0.12);
}

.section-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: end;
  margin-bottom: 14px;
}

.section-row h3 {
  margin: 4px 0 0;
}

.preset-grid,
.session-list,
.week-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

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

.preset-button {
  min-height: 86px;
  padding: 16px;
  border: 1px solid rgba(15, 25, 48, 0.14);
  border-radius: 18px;
  background: #fff;
  color: #0f1930;
  font: inherit;
  text-align: left;
  cursor: pointer;
  display: grid;
  gap: 6px;
}

.preset-button:hover,
.day-card:hover,
.mini-button:hover {
  transform: translateY(-1px);
}

.selection-summary {
  margin-top: 20px;
}

.selection-pill,
.session-chip,
.week-day {
  display: flex;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 18px;
}

.selection-pill {
  background: rgba(15, 25, 48, 0.08);
  flex-direction: column;
  align-items: flex-start;
}

.session-chip {
  background: rgba(15, 25, 48, 0.08);
  flex-direction: column;
  align-items: flex-start;
}

.week-day {
  background: rgba(255, 255, 255, 0.06);
  align-items: flex-start;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.week-day strong,
.session-chip strong,
.selection-pill strong {
  font-size: 1rem;
}

.week-day-details {
  flex: 1;
}

.week-day-heading {
  display: grid;
  gap: 4px;
}

.week-day-heading span {
  opacity: 0.74;
  font-size: 0.94rem;
}

.slot-checklist {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.slot-check-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
}

.slot-check-input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: #f59a1b;
  cursor: pointer;
}

.slot-check-copy {
  display: grid;
  gap: 2px;
}

.slot-check-copy span {
  opacity: 0.74;
  font-size: 0.9rem;
}

.day-empty {
  margin: 10px 0 0;
  opacity: 0.75;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.button-danger {
  border: 1px solid rgba(15, 25, 48, 0.18);
  background: rgba(15, 25, 48, 0.06);
  color: #0f1930;
}

.mini-button {
  border: none;
  border-radius: 999px;
  padding: 10px 14px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  background: rgba(15, 25, 48, 0.1);
  color: inherit;
  transition: transform 120ms ease, background 120ms ease;
}

.helper-text {
  margin-top: 12px;
  line-height: 1.6;
  opacity: 0.8;
}

.status-text {
  margin-top: 16px;
  min-height: 24px;
  font-weight: 700;
}

@media (max-width: 960px) {
  .hero-content,
  .service-grid,
  .booking-layout,
  .admin-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  body {
    background:
      radial-gradient(circle at top left, rgba(255, 255, 255, 0.12), transparent 36%),
      linear-gradient(180deg, #193f67 0%, #234b77 42%, #f5efe6 42%, #f8f4ee 100%);
  }

  .hero {
    min-height: auto;
    padding: 16px 16px 40px;
  }

  .nav {
    position: sticky;
    top: 0;
    z-index: 10;
    margin: 0 -16px 32px;
    padding: 14px 16px;
    flex-direction: column;
    align-items: stretch;
    background: rgba(25, 63, 103, 0.9);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-links {
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 10px;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-links a {
    flex: 0 0 auto;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
  }

  h1 {
    font-size: clamp(2.9rem, 16vw, 5rem);
    max-width: 10ch;
  }

  h2 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
  }

  .hero-text {
    margin: 18px 0 22px;
    font-size: 0.98rem;
  }

  .hero-location {
    font-size: 1.2rem;
  }

  .hero-content {
    gap: 20px;
  }

  .hero-card,
  .service-card,
  .testimonial-card,
  .booking-panel,
  .booking-form {
    border-radius: 22px;
    padding: 20px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .hero-points {
    gap: 10px;
    font-size: 0.95rem;
  }

  .section {
    padding: 56px 16px;
  }

  .section-heading {
    margin-bottom: 24px;
  }

  .service-grid,
  .marketing-grid,
  .booking-layout {
    gap: 16px;
  }

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

  .slots-header {
    display: grid;
    gap: 6px;
  }

  .slot-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .booking-summary {
    font-size: 0.95rem;
  }

  .footer {
    padding: 32px 16px 48px;
  }

  .footer-note {
    max-width: none;
  }

  .day-card-grid,
  .preset-grid,
  .field-inline {
    grid-template-columns: 1fr;
  }

  .section-row,
  .week-day {
    flex-direction: column;
    align-items: stretch;
  }

  .slot-check-item {
    grid-template-columns: auto 1fr;
  }
}
