:root {
  --ink: #16171d;
  --muted: #616777;
  --panel: #ffffff;
  --soft: #f6f2ec;
  --line: rgba(22, 23, 29, 0.12);
  --red: #d82e32;
  --red-dark: #b41d25;
  --gold: #f2b84b;
  --green: #27a66a;
  --blue: #244f73;
  --shadow: 0 24px 70px rgba(19, 23, 31, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  color: var(--ink);
  background: #fffaf4;
}

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

a {
  color: inherit;
}

.navbar {
  background: rgba(255, 250, 244, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(22, 23, 29, 0.08);
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  padding: 0;
}

.brand-logo {
  display: block;
  width: min(260px, 48vw);
  height: 64px;
  object-fit: contain;
  object-position: left center;
}

.nav-link {
  font-weight: 700;
  color: rgba(22, 23, 29, 0.78);
}

.nav-link:hover,
.nav-link:focus {
  color: var(--red);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border-radius: 999px;
  font-weight: 800;
  border-width: 2px;
}

.btn-primary {
  background: var(--red);
  border-color: var(--red);
  box-shadow: 0 14px 28px rgba(216, 46, 50, 0.26);
}

.btn-primary:hover,
.btn-primary:focus {
  background: var(--red-dark);
  border-color: var(--red-dark);
}

.btn-outline-light {
  color: #fff;
}

.nav-cta {
  padding: 0.65rem 1.05rem;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: end;
  overflow: hidden;
  color: #fff;
  padding: 8.5rem 0 5rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 15, 22, 0.88), rgba(11, 15, 22, 0.58) 47%, rgba(11, 15, 22, 0.34)),
    linear-gradient(0deg, rgba(11, 15, 22, 0.72), transparent 44%),
    url("AerialView.jpg") center / cover no-repeat;
  transform: scale(1.02);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin-bottom: 0.75rem;
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.eyebrow.dark {
  color: var(--red);
}

h1,
h2,
h3 {
  line-height: 1.05;
}

h1 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3.6rem, 8vw, 7rem);
  margin: 0 0 1rem;
  max-width: 100%;
}

h2 {
  font-size: clamp(2rem, 4.5vw, 4rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.25rem;
  font-weight: 800;
}

.hero-copy {
  max-width: 720px;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  color: rgba(255, 255, 255, 0.86);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-panel {
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.panel-label {
  display: block;
  margin-bottom: 0.75rem;
  color: #fff;
  font-weight: 800;
}

.quick-list {
  display: grid;
  gap: 0.65rem;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.86);
}

.quick-list span {
  display: inline-flex;
  gap: 0.6rem;
  align-items: center;
}

.section {
  padding: 6rem 0;
}

.section-intro {
  background: #fff;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2.5rem;
}

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

.media-section {
  background: var(--soft);
}

.video-frame,
.image-showcase,
.calendar-shell,
.package-card,
.feature-card {
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: 0 18px 55px rgba(24, 25, 29, 0.08);
}

.video-frame video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: #111;
}

.image-showcase {
  height: 100%;
}

.image-showcase img,
.image-showcase video {
  display: block;
  width: 100%;
  height: 75%;
  min-height: 350px;
  object-fit: cover;
  background: #111;
}

.showcase-caption {
  display: grid;
  gap: 0.35rem;
  padding: 1.25rem;
}

.showcase-caption span {
  color: var(--muted);
}

.alt {
  background:
    linear-gradient(rgba(255, 250, 244, 0.92), rgba(255, 250, 244, 0.92)),
    url("AerialView.jpg") center / cover fixed;
}

.activity-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.feature-card {
  min-height: 230px;
}

.feature-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--soft);
}

.feature-card-body {
  padding: 1.25rem;
}

.feature-card i {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 1rem;
  color: #fff;
  background: var(--blue);
  border-radius: 50%;
  font-size: 1.25rem;
}

.feature-card p,
.package-card p,
.function-list p,
.sticky-copy p,
.slot-card p,
.slot-card small {
  color: var(--muted);
}

.sticky-copy {
  position: sticky;
  top: 7rem;
}

.function-list {
  display: grid;
  gap: 1rem;
}

.function-list article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  padding: 1.5rem;
  border-top: 1px solid var(--line);
  background: #fff;
}

.function-list span {
  color: var(--red);
  font-weight: 900;
}

.packages {
  background: #111820;
  color: #fff;
}

.packages .eyebrow.dark {
  color: var(--gold);
}

.packages .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
}

.package-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.5rem;
  color: var(--ink);
}

.package-card.featured {
  border-color: rgba(242, 184, 75, 0.9);
}

.package-heading {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
}

.package-heading h3 {
  margin-bottom: 0;
}

.package-tag {
  display: inline-flex;
  flex: 0 0 auto;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(216, 46, 50, 0.1);
  color: var(--red);
  font-weight: 800;
  font-size: 0.82rem;
}

.package-card ul {
  display: grid;
  gap: 0.5rem;
  padding-left: 1.2rem;
  margin: 1.25rem 0 0;
}

.package-card .icon-list {
  padding-left: 0;
  list-style: none;
}

.package-card li {
  color: var(--muted);
}

.package-card .icon-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.55rem;
  align-items: start;
}

.package-card .icon-list i {
  margin-top: 0.18rem;
  color: var(--green);
}

.package-notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.package-notes > div {
  padding: 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
}

.package-notes h3 {
  color: #fff;
}

.package-notes p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

.availability {
  background: #fff;
}

.slot-card {
  padding: 1.25rem;
  border-left: 4px solid var(--red);
  background: var(--soft);
}

.availability-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: 2rem;
  align-items: end;
  margin-bottom: 0.75rem;
}

.availability-intro p:not(.eyebrow) {
  max-width: 760px;
}

.slot-card p {
  margin-bottom: 0.45rem;
}

.calendar-shell {
  position: relative;
  min-height: 650px;
}

.calendar-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.2rem;
  border-bottom: 1px solid var(--line);
  font-weight: 800;
}

.calendar-toolbar span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.calendar-toolbar a {
  color: var(--red);
  text-decoration: none;
}

.available-dot {
  color: var(--red);
  font-size: 0.65rem;
}

.booked-dot {
  color: royalblue;
  font-size: 0.65rem;
}

.reserved-dot {
  color: #7d3cff;
  font-size: 0.65rem;
}

.xtreme-calendar {
  min-height: 590px;
  padding: 1.2rem;
  background:
    linear-gradient(135deg, rgba(216, 46, 50, 0.06), transparent 36%),
    #fff;
}

.xtreme-calendar .fc {
  color: var(--ink);
  font-family: "Manrope", system-ui, sans-serif;
}

.xtreme-calendar .fc-toolbar.fc-header-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.xtreme-calendar .fc-toolbar-chunk:first-child {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
}

.xtreme-calendar .fc-toolbar-title {
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
}

.xtreme-calendar .fc-button {
  min-height: 42px;
  padding: 0.6rem 0.95rem;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  box-shadow: 0 12px 24px rgba(24, 25, 29, 0.12);
  font-weight: 800;
  text-transform: capitalize;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.xtreme-calendar .fc-prev-button,
.xtreme-calendar .fc-next-button {
  display: inline-grid;
  width: 44px;
  padding-inline: 0;
  place-items: center;
  font-size: 1.15rem;
  line-height: 1;
}

.xtreme-calendar .fc-button:hover,
.xtreme-calendar .fc-button:focus,
.xtreme-calendar .fc-button:not(:disabled).fc-button-active {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  transform: translateY(-1px);
}

.xtreme-calendar .fc-today-button {
  background: var(--red);
  border-color: var(--red);
}

.xtreme-calendar .fc-today-button:hover,
.xtreme-calendar .fc-today-button:focus {
  background: var(--red-dark);
  border-color: var(--red-dark);
}

.xtreme-calendar .fc-button:disabled {
  background: #c9cdd5;
  border-color: #c9cdd5;
  color: #fff;
  opacity: 1;
  transform: none;
}

.xtreme-calendar .fc-scrollgrid,
.xtreme-calendar .fc-theme-standard td,
.xtreme-calendar .fc-theme-standard th {
  border-color: var(--line);
}

.xtreme-calendar .fc-col-header-cell {
  padding: 0.65rem 0;
  background: var(--soft);
}

.xtreme-calendar .fc-col-header-cell-cushion {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.xtreme-calendar .fc-daygrid-day-frame {
  min-height: 92px;
}

.xtreme-calendar .fc-daygrid-day-number {
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.xtreme-calendar .fc-day-today {
  background: rgba(242, 184, 75, 0.16) !important;
}

.xtreme-calendar .fc-daygrid-day:not(:has(.fc-event)) .fc-daygrid-day-frame::after {
  content: "Available";
  display: inline-flex;
  margin: 0.15rem 0.45rem 0.45rem;
  padding: 0.18rem 0.5rem;
  border-radius: 999px;
  background: rgba(216, 46, 50, 0.1);
  color: var(--red);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.xtreme-calendar .fc-event.booked-event {
  border: 0;
  border-radius: 999px;
  background: royalblue;
  color: #fff;
  font-size: 0.76rem;
  font-weight: 800;
  padding: 0.18rem 0.45rem;
}

.xtreme-calendar .fc-event.reserved-event {
  border: 0;
  border-radius: 999px;
  background: #7d3cff;
  color: #fff;
  font-size: 0.76rem;
  font-weight: 800;
  padding: 0.18rem 0.45rem;
}

.calendar-shell.is-loading .xtreme-calendar {
  opacity: 0.65;
}

.calendar-empty {
  display: none;
  margin: 0 1.2rem 1.2rem;
  padding: 1rem;
  border: 1px solid rgba(216, 46, 50, 0.18);
  background: rgba(216, 46, 50, 0.06);
  text-align: left;
}

.calendar-empty i {
  color: var(--red);
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.calendar-empty code {
  color: var(--red-dark);
}

.calendar-shell.is-unconfigured .calendar-empty {
  display: block;
}

.contact-section {
  background:
    linear-gradient(90deg, rgba(11, 15, 22, 0.9), rgba(11, 15, 22, 0.6)),
    url("AerialView.jpg") center / cover no-repeat;
  color: #fff;
}

.contact-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: 2.5rem;
  align-items: center;
}

.contact-band p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.contact-form {
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.contact-form .form-label {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
}

.contact-form .form-control {
  min-height: 48px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.1);
}

.contact-form textarea.form-control {
  min-height: 140px;
  resize: vertical;
}

.contact-form .form-control:focus {
  color: #fff;
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 0 0 0.2rem rgba(242, 184, 75, 0.2);
}

.contact-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.58);
}

.form-note {
  margin: 0.85rem 0 0;
  font-size: 0.9rem;
  text-align: center;
}

.site-footer {
  padding: 1.3rem 0;
  color: rgba(255, 255, 255, 0.72);
  background: #111820;
}

.brand-update-modal .modal-content {
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(135deg, rgba(255, 250, 244, 0.98), rgba(246, 242, 236, 0.98)),
    url("AerialView.jpg") center / cover no-repeat;
  box-shadow: var(--shadow);
}

.brand-update-modal .modal-content::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 250, 244, 0.86);
}

.brand-update-modal .btn-close,
.brand-update-modal .modal-body {
  position: relative;
  z-index: 1;
}

.brand-update-modal .btn-close {
  align-self: flex-end;
  margin: 1rem 1rem 0 0;
}

.brand-update-modal .modal-body {
  padding: 0.5rem 2rem 2rem;
  text-align: center;
}

.brand-update-copy,
.brand-update-note {
  max-width: 690px;
  margin-inline: auto;
  color: var(--muted);
}

.brand-change {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) auto minmax(0, 1.15fr);
  gap: 1.25rem;
  align-items: center;
  margin: 1.75rem 0;
}

.brand-change-single {
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
}

.brand-change-single .brand-new {
  width: min(100%, 480px);
}

.brand-change > i {
  color: var(--red);
  font-size: 2rem;
}

.brand-old,
.brand-new {
  display: grid;
  gap: 0.75rem;
  align-items: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
}

.brand-old span,
.brand-new span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.brand-old img,
.brand-new img {
  display: block;
  width: 100%;
  object-fit: contain;
}

.brand-old img {
  max-height: 84px;
}

.brand-new img {
  max-height: 126px;
}

@media (max-width: 991.98px) {
  .hero {
    min-height: auto;
    padding-top: 7.5rem;
  }

  .brand-logo {
    width: min(220px, 58vw);
    height: 56px;
  }

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

  .package-notes {
    grid-template-columns: 1fr;
  }

  .contact-band {
    grid-template-columns: 1fr;
  }

  .availability-intro {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .brand-change {
    grid-template-columns: 1fr;
  }

  .brand-change > i {
    transform: rotate(90deg);
  }
}

@media (max-width: 575.98px) {
  .section {
    padding: 4rem 0;
  }

  h1 {
    font-size: 3.4rem;
  }

  .hero-actions,
  .contact-actions {
    width: 100%;
  }

  .hero-actions .btn,
  .contact-actions .btn {
    width: 100%;
  }

  .activity-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: auto;
  }

  .calendar-shell {
    min-height: 560px;
  }

  .xtreme-calendar {
    min-height: 500px;
    padding: 0.75rem;
  }

  .xtreme-calendar .fc-toolbar.fc-header-toolbar {
    align-items: flex-start;
  }

  .xtreme-calendar .fc-daygrid-day-frame {
    min-height: 74px;
  }
}
