:root {
  --black: #060707;
  --charcoal: #101312;
  --cream: #f5efe7;
  --paper: #fbf7f0;
  --gold: #b57a26;
  --gold-light: #cf963e;
  --line: rgba(181, 122, 38, .62);
  --ink: #16110d;
  --muted: #6f655b;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
}

button, a { font: inherit; }
button { cursor: pointer; }
img { display: block; max-width: 100%; }

:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
}

/* ---------- Scroll reveal ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .45s var(--ease), transform .45s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-item {
  opacity: 0;
  transform: translateY(10px);
  animation: heroIn .55s var(--ease) forwards;
}
.hero__content .eyebrow.reveal-item { animation-delay: .08s; }
.hero__content h1.reveal-item { animation-delay: .18s; }
.hero__content .hero__copy.reveal-item { animation-delay: .3s; }
.hero__content .btn.reveal-item { animation-delay: .42s; }

@keyframes heroIn {
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal], .reveal-item {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
  }
}

/* ---------- Sticky mini nav ---------- */
.mini-nav {
  position: fixed;
  z-index: 25;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px min(6vw, 60px);
  border-bottom: 1px solid transparent;
  background: rgba(6, 7, 7, .88);
  backdrop-filter: blur(10px);
  transform: translateY(-100%);
  transition: transform .35s var(--ease), border-color .35s var(--ease);
}
.mini-nav.is-visible {
  transform: translateY(0);
  border-color: var(--line);
}
.mini-nav__logo {
  width: 118px;
  height: auto;
}
@media (max-width: 640px) {
  .mini-nav { padding: 10px 18px; }
  .mini-nav__logo { width: 92px; }
  .mini-nav .btn--small { padding: 9px 16px; font-size: 11px; }
}

.hero {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  color: white;
  background: var(--black);
}

.hero__slides,
.hero__slide {
  position: absolute;
  inset: 0;
}

.hero__slide {
  width: 100%;
  height: 100%;
  background-position: right center;
  background-size: cover;
  opacity: 0;
  transform: scaleX(-1) scale(1.015);
  transition: opacity 1400ms ease-in-out, transform 6000ms ease-out;
}

.hero__slide.is-active {
  opacity: 1;
  transform: scaleX(-1) scale(1);
}

.hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 3, 3, .94) 0%, rgba(5, 5, 5, .74) 30%, rgba(5, 5, 5, .24) 58%, rgba(5, 5, 5, .08) 100%);
}

.hero__overlay {
  position: relative;
  z-index: 1;
}

.hero__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 98px, 1200px);
  margin: 0 auto;
  padding-top: 30px;
}

.logo {
  width: 220px;
  height: auto;
}

.hero__content {
  width: min(100% - 98px, 1200px);
  margin: 0 auto;
  padding-top: 88px;
}

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

h1, h2, h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 530px;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.02;
}

.hero__copy {
  margin: 22px 0 22px;
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.35;
}

.btn {
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: 4px;
  padding: 15px 42px;
  color: white;
  background: linear-gradient(#c98d34, #ab741f);
  box-shadow: inset 0 1px rgba(255,255,255,.16), 0 6px 16px rgba(122, 79, 15, 0);
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 20%, rgba(255,255,255,.32) 40%, transparent 60%);
  transform: translateX(-120%);
  transition: transform .45s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: inset 0 1px rgba(255,255,255,.16), 0 10px 22px rgba(122, 79, 15, .35);
}

.btn:hover::after { transform: translateX(120%); }
.btn:active { transform: translateY(0); }

.btn--small {
  padding: 12px 32px;
  font-size: 13px;
}

.film-link {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 27px;
  border: 0;
  color: white;
  background: transparent;
  font-weight: 700;
}

.section {
  padding: 22px 0 30px;
}

.section--light {
  background: radial-gradient(ellipse at center, #fffdf9 0%, var(--cream) 72%);
}

.section--dark {
  padding-top: 20px;
  background: linear-gradient(90deg, #050706, #111514 48%, #050706);
  color: white;
}

.section-heading {
  text-align: center;
  margin-bottom: 26px;
}

.section-heading .eyebrow { margin-bottom: 4px; }

.section-heading h2,
.faq h2,
.upgrade h2,
.offer h2 {
  font-size: clamp(25px, 3vw, 36px);
  line-height: 1.04;
}

.section-heading--dark {
  margin-bottom: 18px;
  color: white;
}

.section-heading--dark h2::before,
.section-heading--dark h2::after {
  content: "✦";
  margin: 0 24px;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 15px;
}

.flourish {
  display: block;
  width: 22px;
  height: 12px;
  margin: 9px auto 0;
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  width: min(100% - 48px, 1010px);
  margin: 0 auto;
}

.photo-card {
  position: relative;
  overflow: visible;
  border: 1px solid rgba(96, 72, 48, .2);
  border-radius: 8px;
  background: rgba(255,255,255,.55);
  box-shadow: 0 12px 28px rgba(44, 29, 12, .09);
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease);
}

.photo-card:hover,
.film-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 40px rgba(44, 29, 12, .16);
  border-color: var(--line);
}

.photo-card__image {
  overflow: hidden;
  height: 205px;
  border-radius: 8px 8px 0 0;
}

.photo-card__image img,
.film-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}

.photo-card:hover .photo-card__image img,
.film-card:hover img {
  transform: scale(1.06);
}

.photo-card:first-child img { object-position: 50% 58%; }
.photo-card:nth-child(2) img { object-position: 50% 48%; }
.photo-card:nth-child(3) img { object-position: 48% 43%; }

.photo-card__body {
  min-height: 276px;
  padding: 38px 34px 26px;
  text-align: center;
}

.photo-card h3,
.film-card h3 {
  font-size: 25px;
}

.price {
  margin: 4px 0 19px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 33px;
  line-height: 1;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: left;
}

li {
  position: relative;
  margin: 0 0 11px;
  padding-left: 24px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
}

li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  display: grid;
  place-items: center;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  color: white;
  background: var(--gold);
  font-size: 9px;
  line-height: 1;
}

.icon-badge {
  position: absolute;
  left: 50%;
  top: 180px;
  transform: translateX(-50%);
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border: 3px solid var(--gold-light);
  border-radius: 50%;
  color: var(--gold);
  background: var(--paper);
  transition: transform .28s var(--ease);
}

.photo-card:hover .icon-badge,
.film-card:hover .icon-badge--dark {
  transform: translateX(-50%) rotate(-12deg) scale(1.08);
}

.icon-badge svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.badge {
  position: absolute;
  z-index: 2;
  top: 4px;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 2px;
  padding: 8px 18px;
  color: white;
  background: var(--gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.card-cta {
  width: 100%;
  margin-top: 20px;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 12px 18px;
  color: var(--gold);
  background: transparent;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
  transition: background .2s var(--ease), color .2s var(--ease), transform .2s var(--ease);
}

.card-cta:hover {
  transform: translateY(-2px);
  color: white;
  background: linear-gradient(#c98d34, #ab741f);
}

.card-cta--dark {
  color: var(--gold-light);
  border-color: rgba(207, 150, 62, .5);
}

.film-grid {
  gap: 28px;
  width: min(100% - 48px, 1050px);
}

.film-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0c1111;
}

.film-card img {
  height: 156px;
  object-position: center;
}

.film-card:nth-child(3) img {
  object-position: 78% 68%;
}

.film-card__body {
  position: relative;
  min-height: 236px;
  padding: 46px 34px 25px;
  background: linear-gradient(rgba(16,19,19,.72), #0b0f0f);
  text-align: center;
}

.film-card .price {
  font-size: 25px;
  margin-bottom: 19px;
}

.film-card li {
  color: white;
  font-weight: 600;
}

.icon-badge--dark {
  top: -26px;
  color: var(--gold-light);
  background: #111514;
}

.video-panel {
  position: relative;
  display: grid;
  place-items: center;
  width: min(100% - 48px, 1050px);
  height: 232px;
  margin: 10px auto 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px 8px 0 0;
  color: white;
  background: #090b0b;
}

.video-panel__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.offer {
  position: relative;
  display: grid;
  grid-template-columns: 36% 64%;
  width: min(100% - 48px, 1050px);
  min-height: 345px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 0 0 8px 8px;
  background: #0b0e0e;
}

.offer__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 44% center;
}

.offer__content {
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 34px 36px 76px;
  text-align: center;
}

.offer__content .eyebrow { margin-bottom: 9px; }

.offer__prices {
  display: grid;
  grid-template-columns: 1fr 1.25fr 1fr;
  align-items: center;
  width: 100%;
  margin: 24px 0 20px;
}

.offer__prices div {
  min-height: 78px;
  display: grid;
  align-content: center;
  gap: 6px;
  border-right: 1px solid rgba(255,255,255,.28);
}

.offer__prices div:last-child { border-right: 0; }
.offer__prices span {
  color: #bfb7ad;
  font-size: 12px;
  text-transform: uppercase;
}
.offer__prices strong {
  color: white;
  font-family: var(--serif);
  font-size: 31px;
  font-weight: 400;
}
.offer__prices .mega { font-size: 60px; }
.strike { text-decoration: line-through; }

.offer__benefits {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255,255,255,.18);
  background: rgba(7, 8, 8, .42);
}

.offer__benefits span {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 0 13px;
  align-items: center;
  min-height: 68px;
  padding: 12px 24px;
  border-right: 1px solid rgba(255,255,255,.2);
}

.offer__benefits span:last-child { border-right: 0; }
.offer__benefits svg {
  grid-row: span 2;
  width: 38px;
  height: 38px;
  fill: none;
  stroke: var(--gold-light);
  stroke-width: 1.6;
}
.offer__benefits b { font-size: 13px; }
.offer__benefits small { color: #d6d0c7; font-size: 11px; }

.upgrade {
  display: grid;
  grid-template-columns: 285px 1fr 180px;
  gap: 32px;
  align-items: center;
  width: min(100% - 48px, 1050px);
  margin: 0 auto;
  padding: 24px 0 27px;
  border-bottom: 1px solid rgba(83, 57, 31, .22);
  background: var(--paper);
}

.upgrade img {
  width: 285px;
  height: 100px;
  border-radius: 8px;
  object-fit: cover;
  object-position: 52% 50%;
  transition: transform .4s var(--ease);
}

.upgrade:hover img { transform: scale(1.04); }

.upgrade .eyebrow { margin-bottom: 6px; }
.upgrade h2 { font-size: 25px; }
.upgrade p { max-width: 520px; margin: 8px 0 0; color: #332a23; font-size: 13px; line-height: 1.35; }

.upgrade__price {
  display: grid;
  justify-items: end;
  gap: 15px;
  text-transform: uppercase;
}
.upgrade__price strong {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
}
.upgrade__price span { font-size: 13px; }

.faq {
  width: min(100% - 48px, 870px);
  margin: 0 auto;
  padding: 22px 0 24px;
  text-align: center;
}

.faq h2 { font-size: 25px; }
.faq__list { margin-top: 14px; text-align: left; }

.faq-item { border-top: 1px solid rgba(88, 66, 45, .26); }
.faq-item:last-child { border-bottom: 1px solid rgba(88, 66, 45, .26); }

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border: 0;
  padding: 14px 0;
  color: #211a15;
  background: transparent;
  font-size: 14px;
  font-weight: 700;
  text-align: left;
  transition: color .3s var(--ease);
}

.faq-item:hover .faq-item__question { color: var(--gold); }

.faq-item__question span {
  color: var(--gold);
  font-size: 18px;
  display: inline-block;
  transition: transform .35s var(--ease);
}

.faq-item__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .3s var(--ease);
}

.faq-item__answer-inner {
  overflow: hidden;
  padding-right: 34px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.faq-item.is-open .faq-item__answer { grid-template-rows: 1fr; }
.faq-item.is-open .faq-item__answer-inner { padding-bottom: 15px; }
.faq-item.is-open .faq-item__question span { transform: rotate(45deg); }

.footer {
  position: relative;
  min-height: 164px;
  overflow: hidden;
  color: white;
}

.footer > img { object-position: center 42%; }

.footer__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6,7,7,.78), rgba(6,7,7,.45) 45%, rgba(6,7,7,.86));
}

.footer__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: 30px;
  width: min(100% - 48px, 1050px);
  min-height: 164px;
  margin: 0 auto;
  padding: 22px 0 17px;
}

.footer h2 {
  font-size: 34px;
  line-height: .95;
}

.footer p {
  margin: 3px 0 10px;
  font-family: var(--serif);
  font-size: 19px;
}

.social {
  display: flex;
  gap: 14px;
  align-self: end;
  margin-bottom: 5px;
}

.social a {
  display: grid;
  place-items: center;
  width: 29px;
  height: 29px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-light);
  text-decoration: none;
  font-weight: 700;
  transition: background .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
}

.social a:hover {
  background: var(--gold);
  color: white;
  transform: translateY(-3px);
}

.social svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social a:first-child svg,
.social a:last-child svg {
  fill: currentColor;
  stroke: none;
}

.copyright {
  justify-self: end;
  align-self: end;
  color: #b7b1aa;
  font-family: var(--sans) !important;
  font-size: 12px !important;
}

/* ---------- Base modal ---------- */
.modal[hidden] { display: none; }
.modal {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  padding: 24px;
}
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 4, 2, .78);
  backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity .22s var(--ease);
}
.modal.is-open .modal__backdrop { opacity: 1; }

.modal__content {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  color: white;
  background: #090b0b;
}
.modal__content h2 {
  margin-bottom: 18px;
  font-size: 26px;
}
.modal__close {
  position: absolute;
  top: 8px;
  right: 12px;
  border: 0;
  color: white;
  background: transparent;
  font-size: 32px;
  line-height: 1;
  transition: transform .3s var(--ease), color .3s var(--ease);
}
.modal__close:hover { transform: rotate(90deg); color: var(--gold-light); }

.modal__frame {
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #000;
}
.modal__frame iframe,
.modal__frame video {
  width: 100%;
  height: 100%;
  border: 0;
}
.modal__missing {
  padding: 24px;
  color: #ddd3c7;
  text-align: center;
  line-height: 1.5;
}
.flatpickr-calendar.static.open{
    width: 315px !important;
}
/* ---------- Booking modal ---------- */
.booking-modal__content {
  width: min(760px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px 40px 32px;
  background: linear-gradient(180deg, #0c0f0e, #08090a 55%);
  transform: scale(.96) translateY(10px);
  opacity: 0;
  transition: transform .25s var(--ease), opacity .22s var(--ease);
}
.booking-modal.is-open .booking-modal__content {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.booking-modal__content .eyebrow { margin-bottom: 8px; }
.booking-modal__content h2 { margin-bottom: 6px; font-size: 27px; }
.booking-modal__sub {
  margin: 0 0 26px;
  color: #cfc7bc;
  font-size: 13px;
  line-height: 1.5;
}

.booking-form { display: grid; gap: 16px; }

.booking-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.booking-form__field {
  position: relative;
}

.booking-form__field input,
.booking-form__field select,
.booking-form__field textarea {
  width: 100%;
  border: 1px solid rgba(207, 150, 62, .35);
  border-radius: 4px;
  padding: 16px 14px 8px;
  color: white;
  background: rgba(255,255,255,.03);
  font-family: var(--sans);
  font-size: 14px;
  transition: border-color .3s var(--ease), background .3s var(--ease);
  appearance: none;
}

.booking-form__field textarea { resize: vertical; min-height: 64px; padding-top: 22px; }

.booking-form__field input:focus,
.booking-form__field select:focus,
.booking-form__field textarea:focus {
  outline: none;
  border-color: var(--gold-light);
  background: rgba(255,255,255,.06);
}

.booking-form__field label {
  position: absolute;
  left: 14px;
  top: 15px;
  color: #9c9288;
  font-size: 14px;
  pointer-events: none;
  transform-origin: left top;
  transition: transform .2s var(--ease), color .2s var(--ease), top .2s var(--ease);
}

.booking-form__field input:focus + label,
.booking-form__field input:not(:placeholder-shown) + label,
.booking-form__field textarea:focus + label,
.booking-form__field textarea:not(:placeholder-shown) + label,
.booking-form__field select:focus + label,
.booking-form__field--select.has-value label {
  top: 7px;
  color: var(--gold-light);
  transform: scale(.75);
}

.booking-form__field--select select option {
  color: #f5efe7;
  background: #14100c;
}
.booking-form__field--select select option:checked,
.booking-form__field--select select option:hover {
  color: white;
  background: var(--gold);
}

.booking-form__field input[type="date"] {
  color-scheme: dark;
}

.booking-form__field--select select {
  cursor: pointer;
  padding-right: 34px;
}
.booking-form__chevron {
  position: absolute;
  right: 12px;
  top: 18px;
  width: 16px;
  height: 16px;
  fill: none;
  stroke: #9c9288;
  stroke-width: 2;
  pointer-events: none;
}

.booking-form__submit {
  margin-top: 6px;
  width: 100%;
}
.booking-form__submit[disabled] {
  opacity: .7;
  cursor: wait;
}
.booking-form__submit-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.booking-form__submit-label::before {
  content: "";
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255,255,255,.5);
  border-top-color: white;
  border-radius: 50%;
  display: none;
  animation: spin .7s linear infinite;
}
.booking-form__submit[disabled] .booking-form__submit-label::before {
  display: inline-block;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

.booking-form__error {
  margin: 0;
  padding: 10px 12px;
  border: 1px solid rgba(214, 92, 61, .5);
  border-radius: 4px;
  color: #f3b7a6;
  background: rgba(214, 92, 61, .1);
  font-size: 12.5px;
  line-height: 1.4;
  text-align: center;
}

.booking-form__quick {
  display: grid;
  gap: 12px;
  margin-top: 8px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.12);
  text-align: center;
}
.booking-form__quick-label {
  color: #a89e93;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.booking-form__quick-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.quick-action {
  display: grid;
  justify-items: center;
  gap: 6px;
  border: 1px solid rgba(207, 150, 62, .35);
  border-radius: 6px;
  padding: 12px 8px;
  color: #ece6dd;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  transition: border-color .3s var(--ease), background .3s var(--ease), transform .3s var(--ease);
}
.quick-action svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--gold-light);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.quick-action:hover {
  transform: translateY(-3px);
  border-color: var(--gold-light);
  background: rgba(207, 150, 62, .1);
}

.booking-modal__panel--success {
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 30px 10px 10px;
  text-align: center;
}
.booking-success__check {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: linear-gradient(#c98d34, #ab741f);
  animation: popIn .5s var(--ease);
}
.booking-success__check svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: white;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 26;
  stroke-dashoffset: 26;
  animation: drawCheck .5s var(--ease) .3s forwards;
}
@keyframes popIn {
  0% { transform: scale(.4); opacity: 0; }
  70% { transform: scale(1.08); opacity: 1; }
  100% { transform: scale(1); }
}
@keyframes drawCheck {
  to { stroke-dashoffset: 0; }
}
.booking-modal__panel--success h2 { font-size: 24px; }
.booking-modal__panel--success p {
  max-width: 380px;
  color: #cfc7bc;
  font-size: 13px;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .hero { min-height: 650px; }
  .hero__top, .hero__content { width: min(100% - 40px, 720px); }
  .hero__content { padding-top: 76px; }
  .pricing-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pricing-grid > article:last-child { grid-column: 1 / -1; max-width: 340px; justify-self: center; }
  .offer { grid-template-columns: 1fr; }
  .offer__image { height: 210px; }
  .offer__content { padding-bottom: 95px; }
  .upgrade { grid-template-columns: 220px 1fr; }
  .upgrade__price { grid-column: 2; justify-items: start; }
  .footer__content { grid-template-columns: 1fr; align-items: start; }
  .social, .copyright { justify-self: start; }
}

@media (max-width: 640px) {
  .hero {
    min-height: 620px;
  }
  .hero__shade {
    background: linear-gradient(180deg, rgba(3,3,3,.84), rgba(3,3,3,.44) 45%, rgba(3,3,3,.78));
  }
  .hero__slide {
    background-position: center top;
  }
  .hero__top {
    width: calc(100% - 28px);
    padding-top: 18px;
  }
  .logo { width: 150px; }
  .hero__top .btn { padding: 10px 14px; font-size: 11px; }
  .hero__content {
    width: calc(100% - 38px);
    padding-top: 112px;
  }
  h1 { font-size: 34px; max-width: 340px; }
  .hero__copy { font-size: 18px; }
  .pricing-grid, .film-grid {
    grid-template-columns: 1fr;
    width: calc(100% - 28px);
  }
  .pricing-grid > article:last-child { grid-column: auto; max-width: none; }
  .section-heading--dark h2::before,
  .section-heading--dark h2::after { margin: 0 8px; }
  .video-panel, .offer, .upgrade, .faq, .footer__content { width: calc(100% - 28px); }
  .video-panel { height: 210px; }
  .offer__prices, .offer__benefits { grid-template-columns: 1fr; }
  .offer__prices div,
  .offer__benefits span {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.18);
  }
  .offer__benefits { position: static; }
  .offer__content { padding: 28px 20px; }
  .offer__prices .mega { font-size: 46px; }
  .upgrade {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .upgrade img { width: 100%; height: 140px; }
  .upgrade__price { grid-column: auto; }
  .footer { min-height: 235px; }
  .footer__content { min-height: 235px; }
  .copyright { max-width: 230px; }

  .booking-modal__content { padding: 32px 22px 26px; }
  .booking-form__row { grid-template-columns: 1fr; }
  .booking-form__quick-actions { grid-template-columns: 1fr; }
}

/* ==========================================================================
   OPTIMIZACIÓN PREMIUM PARA EL CALENDARIO (FLATPICKR)
   ========================================================================== */

/* 1. CORRECCIÓN DEL INPUT ACHICADO: Forza al contenedor de Flatpickr a ser Full Width */
.flatpickr-wrapper {
    display: block !important;
    width: 100% !important;
}

/* Asegura que el nuevo input generado por el calendario herede el diseño exacto de tus otros campos */
.booking-form__field .flatpickr-input[type="text"] {
    width: 100% !important;
    box-sizing: border-box !important;
}

/* 2. DISEÑO DEL CALENDARIO: Más oscuro, elegante y tipografía más pequeña */
.flatpickr-calendar {
    background: #0c0f0e !important; /* Mismo fondo carbón oscuro de tu formulario */
    border: 1px solid rgba(181, 122, 38, 0.4) !important; /* Borde dorado sutil */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8) !important; /* Sombra profunda */
    font-family: var(--sans) !important;
    font-size: 13px !important; /* Letras y números más pequeños */
    width: 290px !important; /* Contenedor más compacto y estilizado */
    padding: 5px !important;
}

/* Quitar la flecha/triángulo superior por defecto de la librería que se desalinea */
.flatpickr-calendar.arrowTop:before, 
.flatpickr-calendar.arrowTop:after {
    display: none !important;
}

/* Cabecera: Mes y Año */
.flatpickr-months {
    background: transparent !important;
    margin-bottom: 8px !important;
}
.flatpickr-current-month {
    font-size: 14px !important;
    color: #fff !important;
}
.flatpickr-current-month .flatpickr-monthDropdown-months {
    font-weight: 700 !important;
    color: #fff !important;
}
input.numInput.cur-year {
    font-weight: 400 !important;
    color: #fff !important;
}

/* Flechas de navegación (Izquierda / Derecha) */
.flatpickr-months .flatpickr-prev-month, 
.flatpickr-months .flatpickr-next-month {
    color: var(--gold-light) !important;
    fill: var(--gold-light) !important;
    padding: 10px !important;
}
.flatpickr-months .flatpickr-prev-month:hover, 
.flatpickr-months .flatpickr-next-month:hover {
    color: #fff !important;
}

/* Días de la semana (Sun, Mon, Tue...) */
span.flatpickr-weekday {
    color: var(--gold-light) !important; /* Iniciales en dorado sutil */
    font-weight: 700 !important;
    font-size: 11px !important; /* Letras muy compactas */
    text-transform: uppercase;
}

/* Grilla de días (Contenedor numérico) */
.flatpickr-days {
    width: 100% !important;
}
.dayContainer {
    min-width: 100% !important;
    max-width: 100% !important;
}

/* Estilo individual para cada número/día */
.flatpickr-day {
    color: #ece6dd !important; /* Color crema suave */
    font-size: 12px !important; /* Números pequeños y estilizados */
    max-width: 38px !important;
    height: 38px !important;
    line-height: 38px !important;
    border-radius: 4px !important; /* Bordes ligeramente suavizados */
    margin-top: 2px !important;
    border-color: transparent !important;
}

/* Efecto Hover sobre los días disponibles */
.flatpickr-day:hover, 
.flatpickr-day:focus {
    background: rgba(181, 122, 38, 0.15) !important;
    border-color: var(--gold-light) !important;
    color: #fff !important;
}

/* Día de hoy marcado de forma elegante */
.flatpickr-day.today {
    border-color: rgba(207, 150, 62, 0.4) !important;
    color: var(--gold-light) !important;
}

/* DÍA SELECCIONADO: Aplicación de tu gradiente dorado exacto */
.flatpickr-day.selected, 
.flatpickr-day.selected:hover, 
.flatpickr-day.selected:focus {
    background: linear-gradient(#c98d34, #ab741f) !important; /* Tu degradado */
    border-color: var(--gold) !important;
    color: white !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 12px rgba(122, 79, 15, 0.4) !important;
}

/* FECHAS DESACTIVADAS (Las que bloqueas desde tu panel de administrador) */
.flatpickr-day.disabled, 
.flatpickr-day.disabled:hover {
    color: rgba(255, 255, 255, 0.12) !important; /* Opacidad muy baja para que se note que no es elegible */
    background: transparent !important;
    border-color: transparent !important;
    text-decoration: line-through !important; /* Tachado elegante */
    cursor: not-allowed !important; /* Cursor de bloqueo */
}