:root {
  --accent: #FF7B00;
  --accent-soft: rgba(199, 58, 23, 0.14);
  --dark: #1d1715;
  --dark-2: #2a221f;
  --text: #2c2522;
  --muted: #6d625d;
  --bg: #fff8f4;
  --bg-elevated: #fff2eb;
  --white: #ffffff;
  --border: rgba(29, 23, 21, 0.08);
  --border-strong: rgba(29, 23, 21, 0.16);
  --nav-h: 92px;
  --radius: 28px;
  --transition: all 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Base resets and scroll behavior managed in base.css */
body {
  font-family: 'Manrope', sans-serif;
  background:
    radial-gradient(circle at top left, rgba(199, 58, 23, 0.08), transparent 30%),
    radial-gradient(circle at top right, rgba(29, 23, 21, 0.05), transparent 24%),
    linear-gradient(180deg, #fffdfb 0%, #fff7f2 54%, #fff1e8 100%);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(29, 23, 21, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(29, 23, 21, 0.03) 1px, transparent 1px);
  background-size: 120px 120px;
  opacity: 0.28;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.65), transparent 90%);
}

.page { display: none; }
.page.active { display: block; }

/* Utilities */
.reveal { opacity: 0; transform: translateY(24px); transition: var(--transition); }
.reveal.active { opacity: 1; transform: translateY(0); }
.italic { font-style: italic; }
.section-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--accent);
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.section-eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
  opacity: 0.45;
}
.section-title {
  font-size: clamp(2.8rem, 5.8vw, 5.8rem);
  line-height: 0.98;
  color: var(--dark);
  font-weight: 700;
  letter-spacing: -0.03em;
}
.section-padding { padding: clamp(88px, 9vw, 140px) 5%; }
.section-header { margin-bottom: 64px; }
.section-header.center { text-align: center; }

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transition: var(--transition);
  text-decoration: none;
  border: 1px solid transparent;
  white-space: nowrap;
  font-family: inherit;
}
 .btn-primary { background: var(--accent); 
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(199, 58, 23, 0.2);
}
.btn-primary:hover {
  transform: translateY(-2px);
  background: #ad3214;
}
.btn-outline {
  background: rgba(255, 255, 255, 0.55);
  color: var(--dark);
  border-color: var(--border-strong);
}
.btn-outline:hover {
  background: var(--accent-soft);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-ghost {
  color: var(--dark);
  border-color: rgba(199, 58, 23, 0.18);
  background: rgba(255, 255, 255, 0.72);
}
.btn-ghost:hover {
  background: rgba(199, 58, 23, 0.1);
  transform: translateY(-2px);
}


/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 140px 5% 72px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 18%, rgba(199, 58, 23, 0.18), transparent 18%),
    radial-gradient(circle at 18% 12%, rgba(29, 23, 21, 0.06), transparent 18%),
    linear-gradient(180deg, rgba(255, 251, 248, 0.5), rgba(255, 244, 237, 0.92));
}
.hero-grid {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 52px;
  align-items: center;
}
.hero-copy {
  max-width: 680px;
}
.hero-copy h1 {
  font-size: clamp(4rem, 8.8vw, 7.6rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
  color: var(--dark);
  margin-bottom: 26px;
  font-weight: 700;
}
.hero-copy p {
  font-size: 1.08rem;
  max-width: 620px;
  color: var(--muted);
  margin-bottom: 34px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}
.hero-meta-row span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.hero-meta-row span:not(:last-child)::after {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(199, 58, 23, 0.22);
}
.hero-meta-row strong {
  color: var(--dark);
  font-weight: 600;
}
.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}
.hero-image-frame {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  box-shadow: 0 40px 100px rgba(29, 23, 21, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.8);
  aspect-ratio: 16 / 9;
  background: #d7c7b0;
}
.hero-image-frame img,
.hero-image-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-image-main {
  width: 100%;
}
.hero-caption {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 0 10px;
  color: var(--muted);
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero-caption strong {
  color: var(--dark);
  font-size: 0.76rem;
  letter-spacing: 0.18em;
}

.eyebrow-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(199, 58, 23, 0.12);
  color: var(--dark);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.eyebrow-chip::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(199, 58, 23, 0.14);
}

.content-page {
  padding: 150px 5% 100px;
}
.content-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 42px;
  align-items: start;
}
.content-panel {
  padding: 34px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(29, 23, 21, 0.08);
  box-shadow: 0 18px 48px rgba(29, 23, 21, 0.07);
}
.content-panel p {
  color: var(--muted);
}
.content-list {
  list-style: none;
  margin-top: 22px;
  display: grid;
  gap: 14px;
}
.content-list li {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 248, 244, 0.86);
  border: 1px solid rgba(29, 23, 21, 0.06);
  color: var(--text);
}
.stack-grid {
  display: grid;
  gap: 18px;
}
.stack-card {
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.76), rgba(255,255,255,0.6));
  border: 1px solid rgba(29, 23, 21, 0.08);
  box-shadow: 0 14px 36px rgba(29, 23, 21, 0.06);
}
.stack-card h3 {
  font-size: 1.7rem;
  line-height: 1;
  color: var(--dark);
  margin-bottom: 10px;
  font-weight: 700;
}
.stack-card p { color: var(--muted); }

.package-overview {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 34px;
  align-items: start;
}
.package-overview-copy {
  max-width: 520px;
}
.package-overview-copy p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.02rem;
}
.package-points {
  display: grid;
  gap: 14px;
}
.package-point {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 22px 22px 22px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(29, 23, 21, 0.08);
  box-shadow: 0 12px 32px rgba(29, 23, 21, 0.05);
}
.package-point .index {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(199, 58, 23, 0.12);
  color: var(--dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}
.package-point h3 {
  font-size: 1.4rem;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 8px;
  font-weight: 700;
}
.package-point p {
  color: var(--muted);
}

/* Marquee */
.marquee-band {
  padding: 18px 0;
  background: rgba(255, 245, 240, 0.95);
  color: var(--dark);
  overflow: hidden;
  border-top: 1px solid rgba(29, 23, 21, 0.08);
  border-bottom: 1px solid rgba(29, 23, 21, 0.08);
}
.marquee {
  width: 100%;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 44px;
  width: max-content;
  animation: marquee 24s linear infinite;
  padding-left: 5%;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.72rem;
}
.marquee-track span { opacity: 0.8; }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Homepage sections */
.section-shell {
  background: rgba(255, 255, 255, 0.72);
  border-top: 1px solid rgba(29, 23, 21, 0.06);
  border-bottom: 1px solid rgba(29, 23, 21, 0.06);
}
.hero-intro {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: end;
}
.hero-intro p {
  color: var(--muted);
  max-width: 580px;
  font-size: 1.02rem;
}
.stat-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.stat-card {
  padding: 30px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(29, 23, 21, 0.08);
  box-shadow: 0 16px 40px rgba(29, 23, 21, 0.06);
}
.stat-num {
  font-size: clamp(2.4rem, 3.5vw, 3.6rem);
  line-height: 0.95;
  color: var(--dark);
  margin-bottom: 10px;
  font-weight: 700;
}
.stat-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
}

.dest-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
.city-selector {
  width: 100%;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(29, 23, 21, 0.12);
  background: rgba(255, 255, 255, 0.88);
  color: var(--dark);
  font: inherit;
  box-shadow: 0 12px 30px rgba(29, 23, 21, 0.05);
}
.city-selector:focus {
  outline: none;
  border-color: var(--accent);
}
.dest-card {
  position: relative;
  cursor: pointer;
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}
.dest-card:hover {
  transform: translateY(-8px);
}
.dest-card-img-wrap {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 28px;
  margin-bottom: 18px;
  position: relative;
  background: #d6c4af;
  box-shadow: 0 24px 60px rgba(29, 23, 21, 0.12);
}
.dest-card-img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(29, 23, 21, 0.34) 100%);
}
.dest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.dest-card:hover img { transform: scale(1.08); }
.dest-card-info {
  position: relative;
  padding: 0 4px;
  text-align: left;
}
.dest-card-tag {
  display: inline-flex;
  align-items: center;
  padding: 7px 11px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: rgba(199, 58, 23, 0.12);
  color: var(--accent);
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 700;
}
.dest-card-name {
  font-size: 2.1rem;
  line-height: 1.08;
  color: var(--dark);
  letter-spacing: -0.02em;
  font-weight: 700;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 72px;
}
.video-card {
  padding: 18px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(29, 23, 21, 0.08);
  box-shadow: 0 18px 46px rgba(29, 23, 21, 0.08);
}
.video-shell {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 22px;
  margin-bottom: 16px;
  background: #d8c7b4;
}
.video-shell video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-badge {
  position: absolute;
  left: 16px;
  top: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(199, 58, 23, 0.92);
  color: white;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  z-index: 2;
}
.video-card h3 {
  font-size: 2rem;
  line-height: 1;
  color: var(--dark);
  font-weight: 700;
  margin-bottom: 10px;
}
.video-card p {
  color: var(--muted);
  font-size: 0.96rem;
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.journey-card {
  padding: 30px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.58)),
    linear-gradient(135deg, rgba(199, 58, 23, 0.08), transparent);
  border: 1px solid rgba(29, 23, 21, 0.08);
  box-shadow: 0 18px 48px rgba(29, 23, 21, 0.06);
}
.journey-card .index {
  display: inline-flex;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 18px;
}
.journey-card h3 {
  font-size: 2rem;
  line-height: 1.05;
  color: var(--dark);
  margin-bottom: 12px;
  font-weight: 700;
}
.journey-card p { color: var(--muted); }

.story-section {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}
.story-images {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  position: relative;
}
.story-img-main {
  grid-column: 1 / 10;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: 0 24px 60px rgba(29, 23, 21, 0.12);
}
.story-img-sub {
  grid-column: 8 / 13;
  grid-row: 1;
  margin-top: 28%;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 26px;
  border: 10px solid rgba(255, 248, 244, 0.96);
  box-shadow: 0 18px 46px rgba(29, 23, 21, 0.14);
}
.story-text { max-width: 560px; }
.story-text p {
  font-size: 1.05rem;
  color: var(--muted);
  margin: 24px 0 32px;
}

.cta-panel {
  padding: 42px;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 247, 242, 0.96)),
    radial-gradient(circle at top right, rgba(199, 58, 23, 0.12), transparent 25%);
  color: var(--text);
  border: 1px solid rgba(29, 23, 21, 0.08);
  box-shadow: 0 28px 70px rgba(29, 23, 21, 0.1);
}
.cta-panel .section-title { color: var(--dark); }
.cta-panel p { max-width: 660px; margin: 18px auto 32px; color: var(--muted); }

/* Modal */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(9, 14, 19, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  padding: 24px;
}
.modal-backdrop.open { opacity: 1; pointer-events: all; }
.modal {
  width: 100%;
  max-width: 1040px;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  background: var(--white);
  border-radius: 30px;
  overflow: hidden;
  transform: translateY(42px);
  transition: 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.3);
}
.modal-backdrop.open .modal { transform: translateY(0); }
.modal-info {
  padding: 72px;
  background: linear-gradient(180deg, #f5efe5, #ece3d4);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.modal-form { padding: 72px; position: relative; }
.modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: rgba(199, 58, 23, 0.08);
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  font-size: 1rem;
  cursor: pointer;
  color: var(--dark);
}
.form-group { margin-bottom: 28px; }
.form-group label {
  display: block;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 12px;
  color: var(--muted);
}
.form-group input, .form-group textarea {
  width: 100%;
  padding: 14px 0;
  border: none;
  border-bottom: 1px solid var(--border);
  font-family: inherit;
  font-size: 1rem;
  background: none;
  transition: 0.3s;
  color: var(--dark);
}
.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}

@media (max-width: 1180px) {
  .hero-grid,
  .hero-intro,
  .story-section,
  .package-overview,
  .modal,
  .content-layout {
    grid-template-columns: 1fr;
  }
  .stat-band,
  .journey-grid,
  .dest-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-visual { min-height: auto; }
  .hero-image-main { min-height: 420px; } /* Reduced from 620px */
}
@media (max-width: 760px) {
  .hero {
    padding-top: 116px;
    padding-bottom: 42px;
  }
  .hero-grid,
  .stat-band,
  .journey-grid,
  .package-overview,
  .dest-grid {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    min-height: auto;
  }
  .hero-image-main {
    min-height: 300px; /* Reduced from 520px */
  }
  .hero-copy h1 { font-size: clamp(3.2rem, 15vw, 4.2rem); } /* Adjusted clamp */
  .hero-meta-row {
    gap: 10px 14px;
  }
  .hero-caption {
    flex-direction: column;
    align-items: flex-start;
  }
  .section-padding { padding-inline: 18px; }
  .content-page { padding: 118px 18px 88px; }
  .modal { 
    border-radius: 24px; 
    grid-template-columns: 1fr; /* Force 1 col on modal */
  }
  .modal-info { display: none; } /* Hide info side on mobile modal for space */
  .modal-form { padding: 40px 24px; }
}

@media (max-width: 480px) {
  .hero {
    padding-top: 88px;
    padding-bottom: 36px;
  }

  .hero-copy h1 {
    font-size: 2.2rem;
    margin-bottom: 18px;
  }

  .hero-copy p,
  .hero-intro p,
  .story-text p,
  .package-overview-copy p,
  .cta-panel p {
    font-size: 0.95rem;
  }

  .hero-image-main {
    min-height: 200px;
  }

  .section-padding {
    padding-inline: 16px;
  }

  .section-header {
    margin-bottom: 44px;
  }

  .section-title {
    font-size: 2rem;
  }

  .dest-card-name,
  .journey-card h3,
  .video-card h3 {
    font-size: 1.5rem;
  }

  .package-point,
  .journey-card,
  .stat-card,
  .video-card {
    padding: 20px;
  }

  .cta-panel {
    padding: 20px;
    text-align: center;
  }

  .cta-panel .btn {
    width: 100%;
  }

  .modal-backdrop {
    padding: 16px;
  }

  .modal-form {
    padding: 32px 20px;
  }

  #state-name-title {
    font-size: clamp(2.6rem, 12vw, 4rem) !important;
  }

  #state-name-desc {
    font-size: 1rem !important;
    margin-top: 20px !important;
  }

  #page-state .section-header {
    max-width: 100% !important;
  }

  #page-state section > div[style*="margin-top: 120px"] {
    margin-top: 56px !important;
    padding: 32px 20px !important;
  }

  #page-state section > div[style*="margin-top: 120px"] .section-title {
    font-size: 1.9rem !important;
  }

  #page-state section > div[style*="margin-top: 120px"] .btn {
    width: 100%;
  }

  #videoModal {
    padding: 16px !important;
  }

  #videoModal .video-modal-close {
    top: 12px !important;
    right: 12px !important;
    width: 38px !important;
    height: 38px !important;
  }

  #videoModal .video-modal-content {
    max-height: calc(100dvh - 32px);
    border-radius: 18px !important;
  }
}

@media (max-width: 360px) {
  .hero {
    padding: 84px 14px 32px;
  }

  .hero-grid,
  .hero-intro,
  .story-section,
  .package-overview,
  .stat-band,
  .journey-grid,
  .dest-grid,
  .video-grid {
    gap: 18px;
  }

  .hero-copy h1 {
    font-size: 2rem;
  }

  .hero-copy p,
  .hero-intro p,
  .story-text p,
  .package-overview-copy p,
  .cta-panel p,
  .hero-meta-row {
    font-size: 0.9rem;
  }

  .hero-image-main {
    min-height: 180px;
  }

  .section-padding {
    padding: 36px 14px !important;
  }

  .section-header {
    margin-bottom: 36px;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .package-point,
  .journey-card,
  .stat-card,
  .video-card,
  .cta-panel {
    padding: 18px;
  }

  .dest-card-name,
  .journey-card h3,
  .video-card h3 {
    font-size: 1.25rem;
  }

  .modal-backdrop {
    padding: 12px;
  }

  .modal-form {
    padding: 28px 18px;
  }

  #state-name-title {
    font-size: clamp(2.2rem, 14vw, 3.4rem) !important;
  }

  #state-name-desc {
    font-size: 0.95rem !important;
    margin-top: 18px !important;
  }

  #page-state section > div[style*="margin-top: 120px"] {
    margin-top: 48px !important;
    padding: 28px 18px !important;
  }

  #page-state section > div[style*="margin-top: 120px"] .section-title {
    font-size: 1.7rem !important;
  }

  #videoModal {
    padding: 12px !important;
  }

  #videoModal .video-modal-close {
    top: 10px !important;
    right: 10px !important;
    width: 36px !important;
    height: 36px !important;
  }

  #videoModal .video-modal-content {
    max-height: calc(100dvh - 24px);
    border-radius: 16px !important;
  }
}
