:root {
  --bg: #070707;
  --bg-soft: #0d0d0f;
  --surface: rgba(17, 17, 19, 0.78);
  --surface-solid: #121214;
  --border: rgba(255, 255, 255, 0.11);
  --border-strong: rgba(255, 255, 255, 0.18);
  --text: #ffffff;
  --muted: #b6b6bc;
  --red: #ef233c;
  --red-dark: #bc1028;
  --green: #4ade80;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
  --shell: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 0%, rgba(239, 35, 60, 0.1), transparent 32rem),
    var(--bg);
  font-family: "Manrope", Arial, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

.shell {
  width: min(var(--shell), calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(to bottom, rgba(5, 5, 5, 0.94), rgba(5, 5, 5, 0.72));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.header-inner {
  min-height: 82px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: #fff;
  text-decoration: none;
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  white-space: nowrap;
}

.brand strong {
  font-weight: 800;
}

.brand-dot {
  position: relative;
  width: 13px;
  height: 13px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 6px rgba(239, 35, 60, 0.13);
}

.brand-dot::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: inherit;
  background: #fff;
  opacity: 0.78;
}

.nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
}

.nav a {
  padding: 10px 15px;
  border-radius: 999px;
  color: #c9c9ce;
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 700;
  transition: 180ms ease;
}

.nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.nav a.active {
  color: #fff;
  background: var(--red);
  box-shadow: 0 8px 24px rgba(239, 35, 60, 0.3);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 43px;
  padding: 0 17px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 800;
  transition: 180ms ease;
}

.header-cta:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.08);
}

.hero {
  position: relative;
  min-height: 590px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 110px 0 72px;
  background-image:
    linear-gradient(90deg, rgba(5,5,6,.98) 0%, rgba(5,5,6,.82) 43%, rgba(5,5,6,.2) 100%),
    linear-gradient(180deg, rgba(5,5,6,.12), rgba(5,5,6,.8)),
    url("https://images.unsplash.com/photo-1607860108855-64acf2078ed9?auto=format&fit=crop&w=2000&q=90");
  background-position: center;
  background-size: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 35%, rgba(239,35,60,.13), transparent 26rem),
    linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: auto, 56px 56px, 56px 56px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 980px;
}

.availability {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 25px;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(12px);
  font-size: .76rem;
  font-weight: 800;
}

.availability span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(74,222,128,.11);
}

.eyebrow,
.mini-label {
  margin: 0 0 13px;
  color: #ff7587;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.06;
  text-wrap: pretty;
}

h1 {
  max-width: 840px;
  margin-bottom: 23px;
  font-size: clamp(3.2rem, 7vw, 6.4rem);
  letter-spacing: -.07em;
}

.hero-copy {
  max-width: 730px;
  margin: 0;
  color: #d0d0d4;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}

.hero-proof div {
  min-width: 160px;
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 17px;
  background: rgba(8,8,9,.46);
  backdrop-filter: blur(16px);
}

.hero-proof strong,
.hero-proof span {
  display: block;
}

.hero-proof strong {
  font-size: .93rem;
}

.hero-proof span {
  color: #aaaab0;
  font-size: .74rem;
}

.booking-section {
  position: relative;
  padding: 86px 0 110px;
  background:
    linear-gradient(180deg, rgba(7,7,7,.94), rgba(7,7,7,.99)),
    url("https://images.unsplash.com/photo-1507136566006-cfc505b114fc?auto=format&fit=crop&w=1900&q=80");
  background-position: center;
  background-size: cover;
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 26px;
  align-items: start;
}

.booking-card {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 30px;
  background: rgba(15,15,17,.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.booking-window-bar {
  min-height: 105px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  padding: 24px 28px;
  border-bottom: 1px solid rgba(255,255,255,.09);
  background: linear-gradient(135deg, rgba(255,255,255,.055), rgba(239,35,60,.07));
}

.booking-window-bar h2 {
  margin: 0;
  font-size: clamp(1.45rem, 2.6vw, 2.1rem);
  letter-spacing: -.04em;
}

.booking-window-bar .mini-label {
  margin-bottom: 5px;
}

.window-dots {
  display: flex;
  gap: 7px;
}

.window-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
}

.window-dots span:first-child {
  background: var(--red);
}

.widget-wrap {
  width: 100%;
  min-height: 940px;
  background: #fff;
}

.widget-wrap iframe {
  display: block;
  width: 100%;
  min-height: 940px;
  border: 0;
  background: #fff;
}

.booking-sidebar {
  position: sticky;
  top: 106px;
  display: grid;
  gap: 16px;
}

.glass-card {
  padding: 24px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 22px;
  background: rgba(17,17,19,.72);
  box-shadow: 0 18px 48px rgba(0,0,0,.23);
  backdrop-filter: blur(18px);
}

.card-number {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #ff4058, #c6112b);
  box-shadow: 0 0 0 7px rgba(239,35,60,.08), 0 14px 30px rgba(239,35,60,.24);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
}

.glass-card h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
  letter-spacing: -.03em;
}

.glass-card > p {
  margin: 0;
  color: var(--muted);
  font-size: .88rem;
}

.check-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  margin: 10px 0;
  padding-left: 21px;
  color: #dedee1;
  font-size: .85rem;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: .7em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(239,35,60,.12);
  transform: translateY(-50%);
}

.price-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-top: 12px;
  padding: 15px 16px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  background: rgba(255,255,255,.045);
}

.price-row strong,
.price-row span {
  display: block;
}

.price-row strong {
  margin-bottom: 2px;
  font-size: .85rem;
}

.price-row span {
  color: #929298;
  font-size: .72rem;
}

.price-row b {
  flex: 0 0 auto;
  padding: 8px 12px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #ff4058, #c6112b);
  font-size: .78rem;
}

.small-note {
  margin-top: 15px !important;
  font-size: .77rem !important;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  color: #fff;
  text-decoration: none;
  font-size: .87rem;
  font-weight: 800;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translate(2px, -2px);
}

.after-booking {
  padding: 0 0 110px;
  background: var(--bg);
}

.after-card {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 44px;
  align-items: end;
  padding: 56px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 30px;
  background-image:
    linear-gradient(90deg, rgba(6,6,7,.97) 0%, rgba(6,6,7,.72) 49%, rgba(6,6,7,.14) 100%),
    linear-gradient(180deg, rgba(6,6,7,.06), rgba(6,6,7,.6)),
    url("https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?auto=format&fit=crop&w=1900&q=90");
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow);
}

.after-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: inherit;
  pointer-events: none;
}

.after-card > * {
  position: relative;
  z-index: 1;
}

.after-card h2 {
  max-width: 700px;
  margin-bottom: 14px;
  font-size: clamp(2.25rem, 5vw, 4.6rem);
  letter-spacing: -.06em;
}

.after-card p:not(.eyebrow) {
  max-width: 680px;
  margin: 0;
  color: #d0d0d4;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 23px;
  border-radius: 999px;
  text-decoration: none;
  font-size: .9rem;
  font-weight: 800;
  transition: 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.light {
  color: #141414;
  background: #fff;
}

.site-footer {
  padding: 68px 0 28px;
  border-top: 1px solid rgba(255,255,255,.08);
  background: #050505;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .65fr .85fr;
  gap: 70px;
}

.footer-brand p {
  max-width: 420px;
  margin: 18px 0 0;
  color: #919197;
  font-size: .87rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-links > strong {
  margin-bottom: 13px;
  color: #fff;
  font-size: .82rem;
}

.footer-links a,
.footer-links span {
  margin: 5px 0;
  color: #929298;
  text-decoration: none;
  font-size: .83rem;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 52px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  color: #717177;
  font-size: .74rem;
}

@media (max-width: 1040px) {
  .nav a {
    padding-inline: 11px;
    font-size: .78rem;
  }

  .booking-layout {
    grid-template-columns: 1fr;
  }

  .booking-sidebar {
    position: static;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .after-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .shell {
    width: min(100% - 32px, var(--shell));
  }

  .header-inner {
    min-height: auto;
    grid-template-columns: 1fr auto;
    padding: 14px 0;
  }

  .nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: stretch;
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .nav::-webkit-scrollbar {
    display: none;
  }

  .nav a {
    white-space: nowrap;
  }

  .hero {
    min-height: 520px;
    padding: 80px 0 60px;
    background-image:
      linear-gradient(180deg, rgba(5,5,6,.35), rgba(5,5,6,.9) 63%, var(--bg) 100%),
      url("https://images.unsplash.com/photo-1607860108855-64acf2078ed9?auto=format&fit=crop&w=1400&q=88");
    background-position: 62% center;
  }

  .booking-sidebar {
    grid-template-columns: 1fr;
  }

  .widget-wrap,
  .widget-wrap iframe {
    min-height: 1050px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .shell {
    width: min(100% - 24px, var(--shell));
  }

  .brand {
    font-size: .9rem;
  }

  .header-cta {
    min-height: 39px;
    padding-inline: 13px;
    font-size: .76rem;
  }

  h1 {
    font-size: clamp(3rem, 13vw, 5rem);
  }

  .hero-proof {
    display: grid;
    grid-template-columns: 1fr;
  }

  .booking-section {
    padding: 64px 0 82px;
  }

  .booking-card {
    border-radius: 23px;
  }

  .booking-window-bar {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .window-dots {
    order: 2;
  }

  .after-booking {
    padding-bottom: 72px;
  }

  .after-card {
    min-height: 520px;
    align-content: end;
    padding: 30px 24px;
    border-radius: 24px;
    background-image:
      linear-gradient(180deg, rgba(6,6,7,.18), rgba(6,6,7,.96) 67%),
      url("https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?auto=format&fit=crop&w=1200&q=88");
  }

  .button {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

/* ------------------------------
   Accessible mobile menu
------------------------------ */

.mobile-menu {
  position: relative;
  display: none;
  justify-self: end;
}

.mobile-menu summary {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 15px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  color: #fff;
  cursor: pointer;
  list-style: none;
  font-size: .82rem;
  font-weight: 800;
  user-select: none;
  transition:
    background .2s ease,
    border-color .2s ease;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu summary:hover,
.mobile-menu[open] summary {
  border-color: rgba(255,255,255,.26);
  background: rgba(255,255,255,.09);
}

.mobile-menu summary:focus-visible {
  outline: 3px solid rgba(239,35,60,.75);
  outline-offset: 4px;
}

.hamburger {
  width: 20px;
  display: grid;
  gap: 4px;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: #fff;
  transform-origin: center;
  transition:
    transform .2s ease,
    opacity .2s ease;
}

.mobile-menu[open] .hamburger span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.mobile-menu[open] .hamburger span:nth-child(2) {
  opacity: 0;
}

.mobile-menu[open] .hamburger span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu-panel {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  width: min(320px, calc(100vw - 30px));
  padding: 12px;
  display: grid;
  gap: 6px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 24px;
  background: rgba(10,10,11,.97);
  box-shadow: 0 28px 80px rgba(0,0,0,.55);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.mobile-menu-panel a {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 15px;
  color: #c9c9ce;
  font-size: .9rem;
  font-weight: 750;
  text-decoration: none;
  transition:
    color .2s ease,
    background .2s ease;
}

.mobile-menu-panel a:hover,
.mobile-menu-panel a:focus-visible {
  color: #fff;
  background: rgba(255,255,255,.08);
}

.mobile-menu-panel a.active {
  color: #fff;
  background: var(--red);
  box-shadow: 0 10px 28px rgba(239,35,60,.28);
}

.mobile-menu-panel .mobile-phone {
  margin-top: 6px;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.14);
  color: #fff;
  background: rgba(255,255,255,.05);
}

/* Exact shared navbar responsive behaviour */
@media (max-width: 1180px) {
  .header-inner {
    gap: 18px;
  }

  .nav a {
    padding-inline: 11px;
    font-size: .79rem;
  }
}

@media (max-width: 1040px) {
  .header-inner {
    grid-template-columns: auto auto;
  }

  .nav {
    display: none;
  }

  .header-cta {
    justify-self: end;
    margin-left: 0;
  }
}

@media (max-width: 560px) {
  .shell {
    width: min(var(--shell), calc(100% - 30px));
  }

  .header-inner {
    min-height: 72px;
  }

  .brand {
    font-size: .94rem;
  }

  .header-cta {
    min-height: 40px;
    padding-inline: 13px;
    font-size: .76rem;
  }
}


/* Final mobile navigation behaviour */
@media (max-width: 1040px) {
  .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .nav {
    display: none !important;
  }

  .mobile-menu {
    display: block;
  }

  .header-cta {
    display: none;
  }
}

@media (max-width: 560px) {
  .header-inner {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
  }

  .mobile-menu {
    grid-column: 2;
  }

  .menu-label {
    display: none;
  }

  .mobile-menu summary {
    width: 44px;
    padding: 0;
    justify-content: center;
  }

  .mobile-menu-panel {
    right: 0;
  }
}