@font-face {
  font-family: "Helvetica Regular";
  src: url("https://assets.zyrosite.com/dWxb2vLrzEinb6B7/Helvetica Regular.woff2") format("woff2");
  font-display: swap;
}

:root {
  color-scheme: light;
  --page: #ffffff;
  --soft: #eceff3;
  --ink: #000000;
  --footer: #1a1a1a;
  --muted: #5f6570;
  --line: #b8c0cc;
  --blue: #b4e7f5;
  --magenta: #aa0088;
  --radius: 20px;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-family: Montserrat, Inter, "Helvetica Regular", Arial, sans-serif;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  align-items: center;
  background: #ffffff;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  min-height: 104px;
  padding: 18px clamp(16px, 4.5vw, 64px);
  position: sticky;
  top: 0;
  z-index: 50;
}

.logo-link {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  min-width: 0;
}

.logo-link img {
  display: block;
  height: 68px;
  object-fit: contain;
  width: min(190px, 34vw);
}

.site-nav {
  align-items: center;
  display: flex;
  flex: 1 1 auto;
  flex-wrap: wrap;
  gap: 6px 14px;
  justify-content: center;
}

.site-nav a,
.footer-nav a {
  border: 0;
  border-radius: 0;
  color: var(--ink);
  font-family: Inter, Montserrat, sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  padding: 8px 6px;
}

.site-nav a:hover {
  color: var(--magenta);
}

.call-button {
  background: var(--soft);
  border: 2px solid #1a1a1a;
  border-radius: 25px;
  color: var(--magenta);
  flex: 0 0 auto;
  font-family: Inter, Montserrat, sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
  padding: 13px 22px;
  white-space: nowrap;
}

.call-button:hover {
  background: var(--magenta);
  border-color: #000000;
  color: #ffffff;
}

.menu-button {
  background: transparent;
  border: 0;
  display: none;
  height: 44px;
  padding: 8px;
  width: 44px;
}

.menu-button span {
  background: var(--ink);
  display: block;
  height: 2px;
  margin: 6px 0;
  width: 100%;
}

.booking-section {
  padding: clamp(40px, 7vw, 86px) clamp(16px, 4.5vw, 64px) clamp(56px, 8vw, 96px);
}

.booking-intro {
  margin: 0 auto 34px;
  max-width: 900px;
  text-align: center;
}

.eyebrow {
  color: var(--magenta);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  margin: 0 0 12px;
  text-transform: uppercase;
}

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

h1 {
  font-family: Lato, Montserrat, sans-serif;
  font-size: clamp(2.35rem, 6vw, 4.7rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 16px;
}

.booking-intro p {
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.14rem);
  line-height: 1.6;
  margin: 0 auto;
  max-width: 720px;
}

.appointment-layout {
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1fr);
  margin: 0 auto;
  max-width: 1160px;
}

.calendar-card,
.appointment-form {
  background: var(--soft);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(20px, 3vw, 32px);
}

.calendar-card {
  align-self: start;
}

.calendar-toolbar {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 22px;
}

.calendar-toolbar h2 {
  font-size: clamp(1.25rem, 2.2vw, 1.7rem);
  line-height: 1.1;
  margin: 0;
  text-align: center;
}

.month-button {
  align-items: center;
  background: #000000;
  border: 0;
  border-radius: 50px;
  color: #ffffff;
  cursor: pointer;
  display: inline-flex;
  font-size: 30px;
  height: 42px;
  justify-content: center;
  line-height: 1;
  width: 42px;
}

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

.weekdays {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 8px;
  text-align: center;
  text-transform: uppercase;
}

.calendar-day {
  aspect-ratio: 1;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ink);
  cursor: pointer;
  font-weight: 700;
  min-width: 0;
}

.calendar-day:hover,
.time-slot:hover,
.submit-button:hover,
.month-button:hover {
  filter: brightness(0.94);
}

.calendar-day.is-muted,
.calendar-day:disabled {
  background: #f6f7f9;
  color: #a8afb9;
  cursor: not-allowed;
  filter: none;
}

.calendar-day.is-selected {
  background: #000000;
  border-color: #000000;
  color: #ffffff;
}

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

.field,
.time-panel {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field-full {
  grid-column: 1 / -1;
}

label,
.field-label {
  color: #000000;
  font-size: 14px;
  font-weight: 700;
}

input,
select,
textarea {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: #000000;
  min-height: 48px;
  padding: 12px 14px;
  width: 100%;
}

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

input:focus,
select:focus,
textarea:focus {
  border-color: #000000;
  outline: 2px solid rgba(170, 0, 136, 0.2);
}

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

.time-slot {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: #000000;
  cursor: pointer;
  font-weight: 700;
  min-height: 42px;
}

.time-slot.is-selected {
  background: #000000;
  border-color: #000000;
  color: #ffffff;
}

.time-slot:disabled {
  background: #f6f7f9;
  color: #a8afb9;
  cursor: not-allowed;
  filter: none;
  text-decoration: line-through;
}

.appointment-summary {
  background: #ffffff;
  border-left: 4px solid var(--magenta);
  border-radius: 10px;
  color: var(--muted);
  line-height: 1.5;
  padding: 14px 16px;
}

.submit-button {
  background: #000000;
  border: 0;
  border-radius: 50px;
  color: #ffffff;
  cursor: pointer;
  font-weight: 700;
  min-height: 50px;
  padding: 14px 24px;
}

.submit-button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-status {
  color: #008361;
  font-weight: 700;
  margin: 0;
  min-height: 24px;
}

.form-status.is-error {
  color: #d63163;
}

.site-footer {
  background: var(--footer);
  color: #ffffff;
  padding: clamp(40px, 6vw, 62px) clamp(16px, 4.5vw, 64px) 28px;
}

.footer-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr 1.35fr 1fr;
  margin: 0 auto;
  max-width: 1224px;
}

.site-footer h2 {
  font-size: 20px;
  line-height: 1.3;
  margin-bottom: 14px;
}

.site-footer ul {
  list-style: disc;
  margin: 0;
  padding-left: 20px;
}

.site-footer li,
.site-footer p {
  font-family: Montserrat, Inter, sans-serif;
  font-size: 15px;
  line-height: 1.55;
}

.site-footer a {
  color: var(--blue);
}

.footer-about {
  align-self: end;
  text-align: center;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-links a {
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50px;
  color: #ffffff;
  font-size: 13px;
  padding: 9px 12px;
}

.footer-nav {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  margin: 34px auto 28px;
  max-width: 760px;
}

.footer-nav a {
  border: 2px solid var(--magenta);
  border-radius: 16px;
  color: #ffffff;
  padding: 8px 18px;
}

.copyright {
  font-family: "Helvetica Regular", Arial, sans-serif;
  font-size: 14px;
  margin: 0;
  text-align: center;
}

@media (max-width: 920px) {
  .appointment-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-about {
    text-align: left;
  }
}

@media (max-width: 760px) {
  .site-header {
    align-items: flex-start;
    min-height: 82px;
    padding: 14px 16px;
  }

  .call-button {
  background: var(--soft);
  border: 2px solid #1a1a1a;
  border-radius: 25px;
  color: var(--magenta);
  flex: 0 0 auto;
  font-family: Inter, Montserrat, sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
  padding: 13px 22px;
  white-space: nowrap;
}

.call-button:hover {
  background: var(--magenta);
  border-color: #000000;
  color: #ffffff;
}

.menu-button {
    display: block;
  }

  .site-nav {
    background: #ffffff;
    border-bottom: 1px solid #eceff3;
    display: none;
    gap: 10px;
    left: 0;
    padding: 0 16px 16px;
    position: absolute;
    right: 0;
    top: 82px;
  }

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

  .site-nav a {
    text-align: center;
  }

  .logo-link img {
    height: 54px;
    width: 150px;
  }

  .call-button {
    display: none;
  }

  .appointment-form {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 420px) {
  .calendar-card,
  .appointment-form {
    padding: 16px;
  }

  .weekdays,
  .calendar-grid {
    gap: 5px;
  }

  .calendar-day {
    border-radius: 8px;
    font-size: 13px;
  }
}
