:root {
  --site-width: 95%;
  --radius: 15px;
  --header-stack-height: calc(58px + 3.2rem + 2px);
  --nav-link-size: 1.16rem;

  --bg: #0d0d0f;
  --text: #f3f2ef;
  --text-dark: #140909;
  --nav: rgba(18, 18, 20, 0.95);
  --nav: color-mix(in srgb, var(--bg) 95%, rgba(255, 255, 255, 0.24));
  --accent: #c62828;
  --border: rgba(255, 255, 255, 0.1);
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.28);

  --font-one: "Oxygen", sans-serif;
  --font-two: "Londrina Solid", sans-serif;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-one);
}

h1 {
  font-family: var(--font-two);
  letter-spacing: 1px;
}

body.is-modal-open {
  overflow: hidden;
}

.site-header {
  position: sticky;
  top: .1rem;
  z-index: 1190;
  padding: .2rem 0;
  width: 100%;
}

.header-wrap {
  position: relative;
  width: var(--site-width);
  margin: 0 auto;
  min-height: 58px;
  padding: 0.6rem 0.85rem;
  border-radius: var(--radius);
  background: var(--nav);
  border: 1px solid var(--border);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  margin-block: -26px;
}

.site-logo img {
  display: block;
  height: 110px;
  width: auto;
  object-fit: contain;
}

.site-nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  font-family: var(--font-one);
}

.site-nav > a,
.nav-dropdown__toggle,
.nav-dropdown__menu a {
  color: var(--text);
  background: transparent;
  border: 0;
  padding: 0;
  font: inherit;
  font-size: var(--nav-link-size);
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-nav > a,
.nav-dropdown__toggle {
  cursor: pointer;
}

.site-nav > a:hover,
.site-nav > a:active,
.site-nav > a:focus-visible,
.site-nav > a.is-current,
.nav-dropdown__toggle:focus-visible,
.nav-dropdown__toggle.is-current {
  color: var(--accent);
}

.nav-dropdown {
  position: static;
}

.nav-dropdown__toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-dropdown__toggle svg {
  width: 0.95rem;
  height: 0.95rem;
  transition: transform 0.2s ease;
}

.nav-dropdown__toggle[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 0.85rem);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 240px;
  max-width: min(320px, calc(100vw - 2rem));
  padding: 0.45rem;
  border-radius: var(--radius);
  background: var(--nav);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: grid;
  gap: 0.2rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 40;
  transition:
    opacity 0.18s ease,
    visibility 0.18s ease,
    transform 0.18s ease;
}

.nav-dropdown__menu::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 0.95rem;
}

.nav-dropdown__menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown__menu a {
  padding: 0.8rem 0.95rem;
  display: block;
}

.nav-dropdown__menu a:hover,
.nav-dropdown__menu a:focus-visible,
.nav-dropdown__menu a.is-current {
  color: var(--accent);
}

.header-cta {
  position: relative;
  z-index: 2;
  border: 0;
  border-radius: var(--radius);
  padding: 0.78rem 1rem;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-one);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  flex: 0 0 auto;
}

.nav-burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border: 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  padding: 0;
}

.nav-burger svg {
  width: 1.5rem;
  height: 1.5rem;
  display: block;
}

.nav-burger .burger-close {
  display: none;
}

.nav-burger.is-open .burger-icon {
  display: none;
}

.nav-burger.is-open .burger-close {
  display: block;
}

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 1160;
  pointer-events: none;
  visibility: hidden;
}

.mobile-nav.is-open {
  pointer-events: auto;
  visibility: visible;
}

.mobile-nav__scrim {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-nav.is-open .mobile-nav__scrim {
  opacity: 1;
}

.mobile-nav__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 70%;
  height: 100%;
  background: var(--bg);
  border-left: 1px solid var(--border);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  padding: 2rem 1.5rem;
  box-sizing: border-box;
}

.mobile-nav.is-open .mobile-nav__panel {
  transform: translateX(0);
}

.mobile-nav__links {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-nav__links a {
  color: var(--text);
  text-decoration: none;
  font-family: var(--font-one);
  font-size: 1.2rem;
  font-weight: 600;
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  display: block;
}

.mobile-nav__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-left: auto;
  margin-bottom: 1.5rem;
  border: 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  padding: 0;
}

.mobile-nav__close svg {
  width: 1.5rem;
  height: 1.5rem;
  display: block;
}

.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.2s ease,
    visibility 0.2s ease;
}

.booking-modal.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.booking-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.booking-modal__dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 680px;
  max-height: calc(100dvh - 4rem);
  overflow-y: auto;
  padding: 2rem;
  border-radius: var(--radius);
  background: var(--accent);
  color: var(--text-dark);
  border: 1px solid rgba(0, 0, 0, 0.12);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.42);
  font-family: var(--font-one);
}

.booking-modal__close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.booking-modal__close svg {
  width: 1.4rem;
  height: 1.4rem;
}

.booking-modal__intro {
  margin-bottom: 2.25rem;
  padding-right: 3rem;
}

.booking-modal__title {
  margin: 0 0 0.4rem;
  color: #fff;
  font-family: var(--font-one);
  font-size: 2rem;
  line-height: 1;
}

.booking-modal__intro p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
}

.booking-form {
  font-family: var(--font-one);
}

.booking-form__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 1.5rem;
  row-gap: 1.25rem;
  align-items: start;
}

.booking-check {
  grid-column: 1 / -1;
}

.booking-check span {
  color: #fff;
  font-family: var(--font-one);
  font-size: 0.95rem;
}

.booking-input {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  padding: 0.9rem 1rem;
  font-family: var(--font-one);
  font-size: 1rem;
  outline: none;
}

.booking-input--full {
  grid-column: 1 / -1;
}

.booking-input::placeholder {
  color: rgba(255, 255, 255, 0.65);
}

.booking-input[type="datetime-local"] {
  color: rgba(255, 255, 255, 0.65);
}

.booking-input[type="datetime-local"]::-webkit-datetime-edit,
.booking-input[type="datetime-local"]::-webkit-datetime-edit-fields-wrapper,
.booking-input[type="datetime-local"]::-webkit-datetime-edit-text,
.booking-input[type="datetime-local"]::-webkit-datetime-edit-month-field,
.booking-input[type="datetime-local"]::-webkit-datetime-edit-day-field,
.booking-input[type="datetime-local"]::-webkit-datetime-edit-year-field,
.booking-input[type="datetime-local"]::-webkit-datetime-edit-hour-field,
.booking-input[type="datetime-local"]::-webkit-datetime-edit-minute-field,
.booking-input[type="datetime-local"]::-webkit-datetime-edit-ampm-field {
  color: rgba(255, 255, 255, 0.65);
}

.booking-input[type="datetime-local"]:not(
    :placeholder-shown
  )::-webkit-datetime-edit,
.booking-input[type="datetime-local"]:not(
    :placeholder-shown
  )::-webkit-datetime-edit-fields-wrapper,
.booking-input[type="datetime-local"]:not(
    :placeholder-shown
  )::-webkit-datetime-edit-month-field,
.booking-input[type="datetime-local"]:not(
    :placeholder-shown
  )::-webkit-datetime-edit-day-field,
.booking-input[type="datetime-local"]:not(
    :placeholder-shown
  )::-webkit-datetime-edit-year-field,
.booking-input[type="datetime-local"]:not(
    :placeholder-shown
  )::-webkit-datetime-edit-hour-field,
.booking-input[type="datetime-local"]:not(
    :placeholder-shown
  )::-webkit-datetime-edit-minute-field,
.booking-input[type="datetime-local"]:not(
    :placeholder-shown
  )::-webkit-datetime-edit-ampm-field {
  color: #fff;
}

.booking-input:focus {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.35);
}

textarea.booking-input {
  min-height: 100px;
  resize: vertical;
}

.booking-check {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding-top: 0.5rem;
  padding-bottom: 0.25rem;
}

.booking-check input {
  accent-color: #fff;
}

.booking-form__submit {
  width: 100%;
  margin-top: 1.75rem;
  border: 0;
  border-radius: var(--radius);
  padding: 1rem;
  background: #fff;
  color: var(--accent);
  font-family: var(--font-one);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
}

@media (max-width: 1024px) {
  :root {
    --header-stack-height: calc(42px + 1.8rem + 2px);
    --site-width: 90%;
  }

  .site-header {
    top: 0.4rem;
    padding: 0.4rem 0;
    z-index: 1150;
  }

  .nav-burger {
    display: flex;
    margin-left: auto;
  }

  .site-nav {
    display: none;
  }

  .nav-dropdown__menu {
    display: none;
  }

  .header-wrap {
    width: 95%;
    margin: 0 auto;
    padding: 0.5rem 0.85rem;
    min-height: unset;
    justify-content: space-between;
    box-sizing: border-box;
    gap: 0.75rem;
  }

  .site-logo {
    margin-block: -4px;
  }

  .site-logo img {
    height: 50px;
  }
}

@media (max-width: 1024px) {
  .booking-modal {
    padding: 1.75rem;
  }
}

@media (max-width: 390px) {
  .site-logo {
    margin-block: 0;
  }

  .site-logo img {
    height: 42px;
    max-width: 120px;
  }
}

@media (max-width: 680px) {
  :root {
    --nav-link-size: 1.08rem;
  }

  .booking-form__grid {
    grid-template-columns: 1fr;
    row-gap: 0.75rem;
  }

  .booking-modal {
    padding: 1.25rem;
  }

  .booking-modal__dialog {
    max-height: calc(100dvh - 2.5rem);
    padding: 1.25rem;
  }

  .booking-modal__intro {
    margin-bottom: 1rem;
  }

  .booking-modal__intro p {
    font-size: 0.9rem;
  }

  .booking-input {
    padding: 0.75rem 0.85rem;
  }

  textarea.booking-input {
    min-height: 75px;
  }

  .booking-form__submit {
    margin-top: 1rem;
    padding: 0.85rem;
  }
}

.site-footer {
  width: 100%;
  margin-top: 5rem;
  font-family: var(--font-one);
  box-sizing: border-box;
  overflow-x: hidden;
}

.site-footer__phone-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 0.9rem;
  padding: 0 1rem;
}

.site-footer__phone {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  text-decoration: none;
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

.site-footer__phone svg {
  position: absolute;
  right: calc(100% + 0.5em);
  width: 0.7em;
  height: 0.7em;
  flex: 0 0 auto;
}

.site-footer__inner {
  width: 100%;
  background: var(--accent);
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  padding: 1.6rem 1.25rem 1rem;
  box-sizing: border-box;
}

.site-footer__main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 1rem;
}

.site-footer__nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: clamp(0.5rem, 1.4vw, 1.75rem);
  width: 100%;
}

.site-footer__nav a {
  color: #fff;
  text-decoration: none;
  font-size: clamp(0.8rem, 1.1vw, 1.4rem);
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
}

.site-footer__email {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 0.6rem;
  color: #fff;
  text-decoration: none;
  font-size: clamp(0.8rem, 1.1vw, 1.4rem);
  font-weight: 600;
  line-height: 1.2;
  text-align: left;
  white-space: nowrap;
}

.site-footer__email-label {
  display: block;
}

.site-footer__email-row {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.site-footer__email svg {
  width: 1em;
  height: 1em;
  flex: 0 0 auto;
}

.site-footer__bottom {
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-footer__copy,
.site-footer__studio {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 0.82rem;
  line-height: 1.2;
}

@media (max-width: 1024px) {
  .site-footer__phone-wrap {
    justify-content: center;
    padding: 0 1.25rem;
    margin-bottom: 1.25rem;
  }

  .site-footer__phone {
    position: relative;
    font-size: 2rem;
    gap: 0;
  }

  .site-footer__phone svg {
    position: absolute;
    right: calc(100% + 0.3em);
    top: 50%;
    transform: translateY(-50%);
    width: 1em;
    height: 1em;
  }

  .site-footer__inner {
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    padding: 1.75rem 1.25rem 1.25rem;
  }

  .site-footer__main {
    grid-template-columns: 1fr;
    justify-items: start;
    text-align: left;
    gap: 1.5rem;
  }

  .site-footer__nav {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 1.1rem;
  }

  .site-footer__email {
    flex-direction: column;
    align-items: flex-start;
    white-space: normal;
    text-align: left;
    order: 1;
  }

  .site-footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
  }

  .site-footer__copy,
  .site-footer__studio {
    font-size: 0.85rem;
  }
}
