@font-face {
  font-family: "Noto Serif Local";
  src: url("../fonts/noto-serif-300.ttf") format("truetype");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "Noto Serif Local";
  src: url("../fonts/noto-serif-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Noto Serif Local";
  src: url("../fonts/noto-serif-500.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Noto Serif Local";
  src: url("../fonts/noto-serif-600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Noto Serif Local";
  src: url("../fonts/noto-serif-700.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Noto Serif Local";
  src: url("../fonts/noto-serif-400-italic.ttf") format("truetype");
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}

:root {
  --bg: #09070d;
  --bg-soft: #120d1b;
  --panel: rgba(19, 15, 30, 0.84);
  --panel-strong: #171121;
  --text: #f7f3fb;
  --muted: #c4bcd3;
  --line: rgba(255, 255, 255, 0.1);
  --accent: #8a46ff;
  --accent-soft: #b99aff;
  --accent-wash: rgba(138, 70, 255, 0.18);
  --success: #8df3cf;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  --radius: 24px;
  --radius-small: 18px;
  --container: min(1180px, calc(100vw - 32px));
  --font-sans: "Noto Serif Local", "Georgia", "Times New Roman", serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: linear-gradient(180deg, #0b0811 0%, #09070d 40%, #120a19 100%);
  font-family: var(--font-sans);
  font-optical-sizing: auto;
  font-size: 0.975rem;
  font-weight: 300;
  letter-spacing: 0.003em;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

img,
video {
  display: block;
  max-width: 100%;
}

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

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

main {
  position: relative;
  z-index: 2;
}

.site-bg {
  position: fixed;
  inset: auto;
  pointer-events: none;
  filter: blur(80px);
  opacity: 0.8;
  z-index: 0;
}

.site-bg-one {
  top: 0;
  right: -10vw;
  width: 35vw;
  height: 35vw;
  background: rgba(138, 70, 255, 0.18);
}

.site-bg-two {
  bottom: 5vh;
  left: -5vw;
  width: 28vw;
  height: 28vw;
  background: rgba(74, 26, 122, 0.26);
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: 72px 0;
  position: relative;
  z-index: 2;
}

.section-eyebrow,
.footer-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent-soft);
  font-size: 0.8rem;
  font-weight: 620;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

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

.section-heading--left {
  margin-bottom: 20px;
}

.section-heading h2,
.section-copy h2,
.cta-banner h2,
.thank-you-card h1,
.legal-content h1,
.booking-hero h1,
.availability-hero h1 {
  margin: 12px 0;
  font-size: clamp(1.8rem, 3.6vw, 3.3rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.section-heading p,
.section-copy p,
.lead-text,
.cta-banner p,
.notice-card p {
  color: var(--muted);
}

.lead-text {
  font-size: 1.1rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent) 0%, #5d2cff 100%);
  color: #fff;
  font-weight: 620;
  letter-spacing: 0.02em;
  box-shadow: 0 16px 36px rgba(122, 58, 255, 0.28);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 40px rgba(122, 58, 255, 0.34);
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  box-shadow: none;
}

.button--small {
  min-height: 42px;
  padding: 0 16px;
  font-size: 0.95rem;
}

.button--large {
  min-height: 56px;
  padding: 0 24px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(9, 7, 13, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 20px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
}

.brand-mark__media {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.brand-mark__logo {
  position: relative;
  z-index: 1;
  display: block;
  width: auto;
  height: 42px;
  filter: brightness(0) invert(1);
}

.brand-mark__media::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(138, 70, 255, 0.34) 0%, rgba(138, 70, 255, 0.04) 68%, transparent 100%);
  transform: translate(-50%, -50%);
  filter: blur(12px);
}

.brand-mark__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, #b48bff 0%, #7b38ff 100%);
  box-shadow: 0 0 20px rgba(138, 70, 255, 0.7);
}

.brand-mark__copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.brand-mark__text {
  display: block;
  font-weight: 500;
  line-height: 1.05;
}

.brand-mark__tagline {
  display: none;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: #fff;
}

.site-nav {
  position: absolute;
  top: 78px;
  left: 16px;
  right: 16px;
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(15, 12, 22, 0.94);
  transform: scale(0.98);
  transform-origin: top;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.site-header.is-open .site-nav {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.site-nav a {
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.language-switcher {
  display: inline-flex;
}

.language-switcher__list {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(18, 13, 27, 0.9);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24);
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  padding: 14px 16px;
}

.language-switcher__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  min-height: 40px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.language-switcher__button:hover,
.language-switcher__button:focus-visible {
  color: var(--text);
  transform: translateY(-1px);
}

.language-switcher__button--active {
  background: linear-gradient(135deg, rgba(138, 70, 255, 0.96) 0%, rgba(93, 44, 255, 0.96) 100%);
  color: #fff;
  box-shadow: 0 12px 24px rgba(122, 58, 255, 0.26);
}

.form-field select option {
  color: var(--text);
  background: #120d1b;
}

.flash-stack {
  margin-top: 18px;
}

.flash-message {
  border: 1px solid rgba(143, 244, 208, 0.24);
  border-radius: 16px;
  background: rgba(143, 244, 208, 0.08);
  color: var(--success);
  padding: 14px 18px;
}

.site-footer {
  position: relative;
  z-index: 2;
  padding: 48px 0 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer__grid {
  display: grid;
  gap: 24px;
}

.site-footer__block,
.site-footer__brand,
.tool-card,
.glass-card,
.package-card,
.day-card,
.cta-banner,
.thank-you-card,
.legal-content,
.selected-card,
.slot-panel,
.form-panel,
.notice-card,
.empty-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.site-footer__block,
.site-footer__brand {
  padding: 24px;
}

.site-footer__block h3,
.site-footer__brand h2,
.tool-card h2,
.empty-card h3 {
  margin-top: 0;
}

.site-footer__block a,
.site-footer__block p {
  display: block;
  color: var(--muted);
  margin-bottom: 8px;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 8px;
}

.contact-link {
  display: grid !important;
  grid-template-columns: 18px auto;
  align-items: center;
  justify-content: start;
  column-gap: 10px;
  row-gap: 0;
  width: max-content;
  max-width: 100%;
}

.contact-link__icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.contact-link__text {
  display: block;
  line-height: 1.2;
  white-space: nowrap;
}

.footer-note {
  margin: 18px 0 0;
  color: rgba(247, 243, 251, 0.62);
  font-size: 0.88rem;
  line-height: 1.5;
}

.package-price__compare,
.package-price__current,
.package-price__save {
  display: block;
}

.package-price__compare {
  color: rgba(247, 243, 251, 0.5);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
  text-decoration-color: rgba(247, 243, 251, 0.38);
}

.package-price__current {
  font-size: 1.75rem;
  font-weight: 650;
  letter-spacing: -0.04em;
  line-height: 1;
}

.package-price__save {
  width: fit-content;
  margin-top: 10px;
  padding: 6px 10px;
  border: 1px solid rgba(185, 154, 255, 0.26);
  border-radius: 999px;
  background: rgba(138, 70, 255, 0.12);
  color: var(--accent-soft);
  font-size: 0.78rem;
  font-weight: 620;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-inline-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--accent-soft);
  cursor: pointer;
}

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

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
}

.social-links img {
  width: 18px;
  height: 18px;
}

.check-list,
.simple-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list li,
.simple-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
}

.check-list li::before,
.simple-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, #bb9cff 0%, #7b38ff 100%);
}

.card-grid,
.package-grid,
.owner-tools,
.sidebar-data,
.site-footer__grid {
  display: grid;
  gap: 18px;
}

.tool-card,
.thank-you-card,
.legal-content,
.slot-panel,
.form-panel,
.selected-card,
.notice-card,
.empty-card {
  padding: 26px;
}

.form-field {
  margin-bottom: 16px;
}

.form-field label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

.form-field ul.errorlist {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  color: #ffb3d4;
  font-size: 0.92rem;
}

.stack-form {
  display: grid;
  gap: 10px;
}

.muted {
  color: var(--muted);
}

.summary-list {
  display: grid;
  gap: 12px;
  margin: 28px 0;
}

.summary-list div {
  display: grid;
  gap: 4px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: transform 0.5s ease, opacity 0.5s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.consent-banner,
.consent-modal {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 60;
  padding: 16px;
  pointer-events: none;
}

.consent-banner[hidden],
.consent-modal[hidden] {
  display: none !important;
}

.consent-csrf {
  display: none;
}

.consent-banner__inner,
.consent-modal__dialog {
  width: min(1120px, calc(100vw - 24px));
  margin: 0 auto;
  border: 1px solid rgba(185, 154, 255, 0.22);
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(138, 70, 255, 0.18), transparent 34%),
    rgba(11, 8, 17, 0.96);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.48);
}

.consent-banner__inner {
  display: grid;
  gap: 18px;
  padding: 20px;
  pointer-events: auto;
}

.consent-banner__title,
.consent-modal__header h3,
.consent-option h4 {
  margin: 0;
}

.consent-banner__description,
.consent-option__description {
  color: var(--muted);
}

.consent-banner__description p,
.consent-option__description p {
  margin: 0 0 12px;
}

.consent-banner__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
  color: var(--accent-soft);
  font-size: 0.95rem;
}

.consent-banner__actions,
.consent-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.consent-banner__actions {
  margin-top: 6px;
}

.consent-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-weight: 620;
  cursor: pointer;
}

.consent-button--primary {
  border-color: transparent;
  background: linear-gradient(135deg, var(--accent) 0%, #5d2cff 100%);
  box-shadow: 0 16px 36px rgba(122, 58, 255, 0.26);
}

.consent-button--ghost {
  background: transparent;
}

.consent-modal {
  display: block;
  z-index: 61;
}

.consent-modal__backdrop {
  display: none;
}

.consent-modal__dialog {
  position: relative;
  z-index: 2;
  padding: 22px;
  margin: 0 auto;
  max-height: min(78vh, 760px);
  overflow-y: auto;
  pointer-events: auto;
}

.consent-modal__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.consent-modal__eyebrow {
  margin: 0 0 8px;
  color: var(--accent-soft);
  font-size: 0.82rem;
  font-weight: 620;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.consent-modal__close {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 1.4rem;
  cursor: pointer;
}

.consent-modal__body {
  display: grid;
  gap: 16px;
}

.consent-modal__actions {
  margin-top: 22px;
}

.consent-option {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
}

.consent-switch {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.consent-switch input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.consent-switch__slider {
  position: relative;
  width: 52px;
  height: 30px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  transition: background 0.2s ease;
}

.consent-switch__slider::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.2s ease;
}

.consent-switch input:checked + .consent-switch__slider {
  background: linear-gradient(135deg, var(--accent) 0%, #5d2cff 100%);
}

.consent-switch input:checked + .consent-switch__slider::after {
  transform: translateX(22px);
}

.consent-switch__text {
  color: var(--muted);
  font-size: 0.95rem;
}

.consent-banner.is-visible,
.consent-modal.is-visible {
  display: block;
}

@media (min-width: 700px) {
  .consent-banner__actions,
  .consent-modal__actions {
    justify-content: start;
  }

  .consent-option {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }
}

@media (min-width: 900px) {
  .nav-toggle {
    display: none;
  }

  .brand-mark__tagline {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 14px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .site-footer__grid {
    grid-template-columns: 1.3fr 1fr 1fr 0.8fr;
  }

  .card-grid--benefits,
  .package-grid,
  .owner-tools,
  .sidebar-data {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .consent-banner__inner {
    grid-template-columns: minmax(0, 1.4fr) auto;
    align-items: end;
  }

  .consent-modal {
    padding-bottom: 24px;
  }
}
