/* ============================================================
   LANGKAWI MANGROVE TRIP — Custom CSS
   Design: Warm Tropical (Option B)
   Fonts: Playfair Display (headings) + Inter (body)
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;0,700;1,600&family=Inter:wght@400;500;600&display=swap');

/* ── Design Tokens ── */
:root {
  --teal:        #0d4f5c;
  --teal-light:  #155f6e;
  --teal-dark:   #083844;
  --amber:       #e8a020;
  --amber-light: #f0b840;
  --amber-dark:  #c8860e;
  --jungle:      #1b4332;
  --jungle-light:#2d6a4f;
  --cream:       #fef9f0;
  --cream-dark:  #f5eddf;
  --white:       #ffffff;
  --text-dark:   #0d2b33;
  --text-mid:    #4b5563;
  --text-light:  #9ca3af;
  --shadow-sm:   0 2px 8px rgba(13,79,92,0.10);
  --shadow-md:   0 6px 24px rgba(13,79,92,0.14);
  --shadow-lg:   0 12px 48px rgba(13,79,92,0.18);
  --radius:      12px;
  --radius-lg:   20px;
  --transition:  0.3s ease;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
  color: var(--text-dark);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }
p  { color: var(--text-mid); }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.75rem;
}
.section-title { margin-bottom: 1rem; }
.section-sub   { font-size: 1.05rem; color: var(--text-mid); max-width: 600px; }

/* ── Layout ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
section { padding: 88px 0; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  transition: var(--transition);
  white-space: nowrap;
  min-height: 48px;
}
.btn-primary {
  background: var(--amber);
  color: var(--teal-dark);
}
.btn-primary:hover {
  background: var(--amber-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  border: 2px solid var(--white);
  color: var(--white);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-2px);
}
.btn-teal {
  background: var(--teal);
  color: var(--white);
}
.btn-teal:hover {
  background: var(--teal-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-ghost {
  color: var(--teal);
  font-weight: 600;
  padding: 0;
  gap: 6px;
}
.btn-ghost:hover { gap: 10px; }
.btn-ghost .arrow { transition: transform var(--transition); }
.btn-ghost:hover .arrow { transform: translateX(4px); }

/* ── Floating WhatsApp ── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 999;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(37,211,102,0.4);
  animation: wa-pulse 2s infinite;
}
.whatsapp-float svg { position: relative; z-index: 1; }
@keyframes wa-pulse {
  0%   { transform: scale(1); opacity: 0.8; }
  70%  { transform: scale(1.5); opacity: 0; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ── Navbar ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 20px 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
.navbar.scrolled {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  padding: 12px 0;
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar-logo img {
  height: 48px;
  width: auto;
}
.navbar-scrolled-logo { display: none; }
.navbar.scrolled .navbar-logo .navbar-white-logo  { display: none; }
.navbar.scrolled .navbar-logo .navbar-scrolled-logo { display: block; }

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white);
  transition: color var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--amber);
  transition: width var(--transition);
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.navbar.scrolled .nav-link { color: var(--text-dark); }
.navbar.scrolled .nav-link:hover { color: var(--teal); }

.navbar-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}
.btn-nav {
  padding: 10px 22px;
  min-height: 42px;
  font-size: 0.875rem;
}
.navbar-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  padding: 4px;
}
.navbar-hamburger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.navbar.scrolled .navbar-hamburger span { background: var(--text-dark); }
.navbar-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar-hamburger.open span:nth-child(2) { opacity: 0; }
.navbar-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav overlay */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--teal-dark);
  z-index: 850;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.mobile-nav.open {
  opacity: 1;
  pointer-events: all;
}
.mobile-nav .nav-link {
  font-size: 1.5rem;
  font-family: 'Playfair Display', serif;
  color: var(--white);
}
.mobile-nav-close {
  position: absolute;
  top: 24px;
  right: 24px;
  color: var(--white);
  font-size: 2rem;
  line-height: 1;
}

/* ── Hero ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8,56,68,0.5) 0%,
    rgba(8,56,68,0.7) 60%,
    rgba(8,56,68,0.85) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 760px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber-light);
  margin-bottom: 24px;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
  max-width: 540px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.4);
  animation: scroll-bounce 1.5s ease-in-out infinite;
}
@keyframes scroll-bounce {
  0%, 100% { transform: scaleY(1); opacity: 0.4; }
  50%       { transform: scaleY(1.3); opacity: 0.9; }
}

/* ── Stats Bar ── */
.stats-bar {
  background: var(--teal);
  padding: 28px 0;
}
.stats-grid {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 24px;
  flex-wrap: wrap;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
}
.stat-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  margin-top: 4px;
  letter-spacing: 0.04em;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
}

/* ── About Preview ── */
.about-preview { background: var(--cream); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-image-wrap {
  position: relative;
}
.about-image-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--amber);
  color: var(--teal-dark);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 700;
  box-shadow: var(--shadow-md);
}
.about-badge .badge-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  line-height: 1;
}
.about-badge .badge-text { font-size: 0.65rem; line-height: 1.3; }
.about-text { max-width: 520px; }
.about-text h2 { margin-bottom: 20px; }
.about-text p  { margin-bottom: 16px; }
.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 28px 0;
}
.about-highlight {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 500;
}
.highlight-icon {
  width: 36px;
  height: 36px;
  background: rgba(13,79,92,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}

/* ── Video Section ── */
.video-section { background: var(--teal-dark); }
.video-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}
.video-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.video-embed iframe,
.video-embed video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
  object-fit: cover;
}
.video-embed-wrap { position: relative; overflow: hidden; border-radius: var(--radius-lg); }
.video-mobile-poster { display: none; width: 100%; border-radius: var(--radius-lg); object-fit: cover; }
.video-mute-btn {
  position: absolute;
  bottom: 12px; right: 12px;
  z-index: 10;
  background: rgba(0,0,0,0.55);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}
.video-mute-btn:hover { background: rgba(0,0,0,0.8); }
.video-yt-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  text-decoration: none;
  transition: color 0.2s;
}
.video-yt-link:hover { color: #fff; }
.video-text { color: var(--white); }
.video-text .section-label { color: var(--amber); }
.video-text h2 { color: var(--white); margin-bottom: 16px; }
.video-text p { color: rgba(255,255,255,0.75); margin-bottom: 28px; }
.video-highlights {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.video-highlight {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
}
.video-highlight-dot {
  width: 8px;
  height: 8px;
  background: var(--amber);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── Packages ── */
.packages-section { background: var(--white); }
.section-header { margin-bottom: 52px; }
.packages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.package-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  background: var(--white);
  border: 1px solid rgba(13,79,92,0.08);
}
.package-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.package-card-img {
  position: relative;
  overflow: hidden;
  height: 240px;
}
.package-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.package-card:hover .package-card-img img { transform: scale(1.06); }
.package-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--amber);
  color: var(--teal-dark);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 50px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.package-tag.coming-soon {
  background: rgba(255,255,255,0.85);
  color: var(--text-mid);
}
.package-card-body {
  padding: 24px;
}
.package-card-body h3 { margin-bottom: 10px; }
.package-card-body p { font-size: 0.9rem; margin-bottom: 20px; }
.package-details {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.package-detail {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--text-mid);
}

/* ── Gallery ── */
.gallery-section { background: var(--cream); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,56,68,0.75) 0%, transparent 55%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 600;
}

/* ── FAQ ── */
.faq-section { background: var(--white); }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: start;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-item {
  border-bottom: 1px solid rgba(13,79,92,0.1);
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.975rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: color var(--transition);
}
.faq-question:hover { color: var(--teal); }
.faq-question.open { color: var(--teal); }
.faq-icon {
  width: 24px;
  height: 24px;
  border: 2px solid currentColor;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition);
  font-size: 1rem;
  line-height: 1;
}
.faq-question.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-answer.open { max-height: 300px; padding-bottom: 20px; }
.faq-answer p { font-size: 0.9rem; color: var(--text-mid); }
.faq-visual {
  position: sticky;
  top: 120px;
}
.faq-visual img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.faq-cta-box {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 28px;
  margin-top: 24px;
  text-align: center;
}
.faq-cta-box p { margin-bottom: 16px; font-size: 0.9rem; }

/* ── Blog Preview ── */
.blog-section { background: var(--cream); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid rgba(13,79,92,0.07);
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.blog-card-img {
  height: 200px;
  overflow: hidden;
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-card:hover .blog-card-img img { transform: scale(1.06); }
.blog-card-body { padding: 22px; }
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  color: var(--text-light);
  margin-bottom: 10px;
}
.blog-card-tag {
  background: rgba(13,79,92,0.08);
  color: var(--teal);
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.blog-card-body h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  line-height: 1.4;
}
.blog-card-body p { font-size: 0.875rem; margin-bottom: 16px; }

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, var(--jungle) 0%, var(--teal) 50%, var(--teal-dark) 100%);
  padding: 88px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-banner-content { position: relative; z-index: 1; }
.cta-banner h2 {
  color: var(--white);
  margin-bottom: 16px;
}
.cta-banner p {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  margin-bottom: 36px;
}
.cta-banner-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  padding: 16px 36px;
  font-size: 1rem;
}
.btn-whatsapp:hover {
  background: #1ebe59;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
}

/* ── Footer ── */
.footer {
  background: var(--teal-dark);
  padding: 72px 0 0;
  color: rgba(255,255,255,0.8);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand img { height: 48px; width: auto; margin-bottom: 16px; }
.footer-brand p { font-size: 0.875rem; line-height: 1.7; }
.footer-reg {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 6px !important;
}
.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.footer-social {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.footer-social:hover {
  border-color: var(--amber);
  background: rgba(232,160,32,0.15);
}
.footer-col h4 {
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-link {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer-link:hover { color: var(--amber); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 12px;
}
.footer-contact-icon { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }
.footer-map {
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 16px;
}
.footer-map iframe {
  width: 100%;
  height: 160px;
  border: none;
  filter: invert(0.9) hue-rotate(180deg);
  opacity: 0.8;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-legal { display: flex; gap: 20px; }
.footer-legal button {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
}
.footer-legal button:hover { color: var(--amber); }

/* ── Modals ── */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(8,56,68,0.7);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.modal-backdrop.open {
  opacity: 1;
  pointer-events: all;
}
.modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 640px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 40px;
  transform: translateY(20px);
  transition: transform var(--transition);
}
.modal-backdrop.open .modal { transform: translateY(0); }
.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.modal-header h3 { font-size: 1.4rem; }
.modal-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--text-mid);
  transition: var(--transition);
}
.modal-close:hover { background: var(--cream-dark); }
.modal-body h4 { font-size: 1rem; margin: 20px 0 8px; color: var(--teal); }
.modal-body p { font-size: 0.875rem; margin-bottom: 12px; }
.modal-body ul { margin: 8px 0 12px 20px; list-style: disc; }
.modal-body ul li { font-size: 0.875rem; color: var(--text-mid); margin-bottom: 6px; }

/* ── Page Header (inner pages) ── */
.page-header {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 100%);
  padding: 140px 0 72px;
  text-align: center;
  color: var(--white);
}
.page-header h1 { color: var(--white); margin-bottom: 12px; }
.page-header p { color: rgba(255,255,255,0.8); font-size: 1.05rem; }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--amber-light); }
.breadcrumb a:hover { text-decoration: underline; }

/* ── About page ── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.value-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.value-icon {
  width: 64px;
  height: 64px;
  background: rgba(13,79,92,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 20px;
}
.value-card h3 { margin-bottom: 10px; }
.value-card p { font-size: 0.9rem; }

/* ── Activities gallery ── */
.full-gallery { background: var(--white); }
.full-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.full-gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-sm);
}
.full-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.full-gallery-item:hover img { transform: scale(1.06); }
.full-gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,56,68,0.85) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.full-gallery-item:hover .full-gallery-overlay { opacity: 1; }
.full-gallery-overlay span {
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
}

/* ── Blog pages ── */
.blog-listing { background: var(--cream); }
.blog-listing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.blog-listing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid rgba(13,79,92,0.07);
}
.blog-listing-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.blog-listing-card .blog-card-img { height: 240px; }
.blog-listing-card .blog-card-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.blog-listing-card h3 { font-size: 1.2rem; margin-bottom: 12px; line-height: 1.3; }
.blog-listing-card p { flex: 1; margin-bottom: 20px; }

/* Blog article */
.article-wrap {
  max-width: 800px;
  margin: 0 auto;
  padding: 72px 24px;
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  font-size: 0.875rem;
  color: var(--text-light);
}
.article-meta .tag {
  background: rgba(13,79,92,0.08);
  color: var(--teal);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
}
.article-hero-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 40px;
}
.article-toc {
  background: var(--cream);
  border-left: 3px solid var(--amber);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 24px 28px;
  margin-bottom: 36px;
}
.article-toc h4 { font-size: 0.9rem; margin-bottom: 12px; color: var(--teal); }
.article-toc ol {
  list-style: decimal;
  padding-left: 20px;
}
.article-toc li {
  font-size: 0.875rem;
  color: var(--text-mid);
  margin-bottom: 6px;
}
.article-toc a { color: var(--teal); }
.article-toc a:hover { text-decoration: underline; }
.article-body h2 {
  font-size: 1.5rem;
  margin: 40px 0 16px;
  color: var(--teal-dark);
}
.article-body h3 { font-size: 1.2rem; margin: 28px 0 12px; }
.article-body p { margin-bottom: 16px; line-height: 1.8; }
.article-body ul, .article-body ol {
  margin: 16px 0 16px 24px;
}
.article-body ul { list-style: disc; }
.article-body ol { list-style: decimal; }
.article-body li {
  color: var(--text-mid);
  margin-bottom: 8px;
  line-height: 1.7;
  font-size: 0.95rem;
}
.article-cta {
  background: linear-gradient(135deg, var(--jungle) 0%, var(--teal) 100%);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  margin: 48px 0;
  color: var(--white);
}
.article-cta h3 { color: var(--white); margin-bottom: 10px; }
.article-cta p { color: rgba(255,255,255,0.8); margin-bottom: 24px; }
.related-posts { margin-top: 64px; }
.related-posts h3 { margin-bottom: 24px; }
.related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.related-card {
  display: flex;
  gap: 14px;
  background: var(--cream);
  border-radius: var(--radius);
  padding: 16px;
  transition: var(--transition);
}
.related-card:hover { background: var(--cream-dark); }
.related-card img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}
.related-card h4 { font-size: 0.875rem; line-height: 1.4; }
.related-card span { font-size: 0.78rem; color: var(--text-light); }

/* ── Activities page ── */
.activities-intro { background: var(--white); }
.activities-intro-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.activities-intro-inner h2 { margin-bottom: 20px; }
.activities-intro-inner p  { margin-bottom: 16px; }

.activity-descriptions { background: var(--cream); }
.activity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.activity-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.activity-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.activity-icon {
  width: 64px;
  height: 64px;
  background: rgba(13,79,92,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 20px;
}
.activity-card h3 { margin-bottom: 10px; }
.activity-card p  { font-size: 0.9rem; }

/* ── Utility ── */
.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }

/* ── Animations ── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet */
@media (max-width: 960px) {
  section { padding: 64px 0; }

  .about-grid  { grid-template-columns: 1fr; gap: 48px; }
  .about-text  { max-width: 100%; }
  .about-badge { right: 0; }

  .video-grid      { grid-template-columns: 1fr; }
  .faq-grid        { grid-template-columns: 1fr; }
  .faq-visual      { display: none; }

  .packages-grid   { grid-template-columns: 1fr 1fr; }
  .blog-grid       { grid-template-columns: 1fr 1fr; }
  .blog-listing-grid { grid-template-columns: 1fr; }

  .footer-grid     { grid-template-columns: 1fr 1fr; gap: 32px; }
  .values-grid     { grid-template-columns: 1fr; }
  .related-grid    { grid-template-columns: 1fr; }
  .activity-grid   { grid-template-columns: 1fr 1fr; }
}

/* Mobile */
@media (max-width: 640px) {
  section { padding: 52px 0; }
  .container { padding: 0 18px; }

  .navbar-nav  { display: none; }
  .navbar-cta  { display: none; }
  .navbar-hamburger { display: flex; }

  .hero-actions { gap: 12px; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .stats-grid { gap: 16px; }
  .stat-divider { display: none; }

  .packages-grid  { grid-template-columns: 1fr; }
  .gallery-grid   { grid-template-columns: 1fr 1fr; }
  .blog-grid      { grid-template-columns: 1fr; }
  .full-gallery-grid { grid-template-columns: 1fr 1fr; }

  .footer-grid    { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom  { flex-direction: column; text-align: center; }
  .footer-legal   { justify-content: center; flex-wrap: wrap; }

  .activity-grid  { grid-template-columns: 1fr; }
  .cta-banner-actions { flex-direction: column; align-items: center; }

  .modal { padding: 24px 20px; }
  .article-hero-img { height: 220px; }
  .article-toc { padding: 18px 20px; }

  .video-embed-wrap   { display: none; }
  .video-mobile-poster { display: none; }
  .video-yt-link      { display: none; }
}

/* Very small */
@media (max-width: 380px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .full-gallery-grid { grid-template-columns: 1fr; }
}

/* ── Booking Notice Banner ── */
.booking-notice {
  background: #1a0505;
  padding: 10px 0;
  position: sticky;
  top: 60px;
  z-index: 80;
}
.booking-notice .container {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  text-align: center;
}
.notice-urgent {
  display: flex;
  align-items: center;
  gap: 7px;
  justify-content: center;
  color: #ff4d4d;
  font-weight: 700;
  font-size: 0.85rem;
  line-height: 1.4;
  flex-wrap: wrap;
}
.notice-reminder {
  display: flex;
  align-items: center;
  gap: 7px;
  justify-content: center;
  color: #ff9500;
  font-weight: 500;
  font-size: 0.8rem;
  line-height: 1.4;
  flex-wrap: wrap;
}
.notice-icon-blink {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  animation: blink-icon 1s ease-in-out infinite;
}
@keyframes blink-icon {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.15; }
}
@media (max-width: 640px) {
  .booking-notice { top: 52px; padding: 8px 0; }
  .notice-urgent { font-size: 0.78rem; }
  .notice-reminder { font-size: 0.75rem; }
}

/* ── Package Section ── */
.pkg-section { padding: 80px 0; background: var(--white); }
.pkg-section-alt { background: var(--cream); }

/* ── 4-col package grid (mangrove) ── */
.pkg-grid-4 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 48px;
}

/* ── 2-col package grid (island hopping) ── */
.pkg-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 48px;
}

/* ── Package card ── */
.pkg-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.pkg-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.pkg-card-img {
  position: relative;
  overflow: hidden;
  background: var(--teal-dark);
}
.pkg-card-img img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}
.pkg-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--teal);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 50px;
}
.pkg-badge-amber { background: var(--amber); color: var(--teal-dark); }
.pkg-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.pkg-card-body h3 {
  font-size: 1.15rem;
  color: var(--teal-dark);
  margin: 0;
}
.pkg-price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--teal);
  font-family: var(--font-body, 'Inter', sans-serif);
  margin: 0;
}
.pkg-price span {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-mid);
}
.pkg-desc {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin: 0;
}
.pkg-highlights {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 0;
}
.pkg-highlights li {
  font-size: 0.82rem;
  color: var(--text-mid);
  padding-left: 18px;
  position: relative;
}
.pkg-highlights li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--jungle);
  font-weight: 700;
}
.pkg-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: auto;
}
.pkg-dual-book {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

/* Price split for sharing package */
.pkg-price-split {
  display: flex;
  gap: 0;
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  overflow: hidden;
}
.pkg-price-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 14px 10px;
  gap: 2px;
}
.pkg-price-divider {
  width: 1px;
  background: var(--cream-dark);
}
.pkg-price-code {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--cream);
  padding: 2px 8px;
  border-radius: 50px;
}
.pkg-price-amount {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--teal-dark);
  font-family: var(--font-body, 'Inter', sans-serif);
}
.pkg-price-label {
  font-size: 0.75rem;
  color: var(--text-mid);
}

/* Island hopping placeholder */
.pkg-placeholder-ih {
  height: 220px;
  background: linear-gradient(135deg, var(--teal-dark) 0%, #0a6e80 50%, #0d8fa7 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.pkg-placeholder-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Package note */
.pkg-note {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin-top: 28px;
  font-size: 0.85rem;
  color: var(--text-mid);
  background: var(--cream);
  padding: 12px 24px;
  border-radius: 50px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

/* ── Coming Soon Cards ── */
.coming-soon-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.coming-soon-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  background: #2a2a2a;
  filter: grayscale(0.3);
  transition: filter var(--transition);
}
.coming-soon-card:hover { filter: grayscale(0); }
.coming-soon-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2c2c2c 0%, #424242 100%);
  opacity: 0.9;
}
.coming-soon-body {
  position: relative;
  z-index: 2;
  padding: 40px 36px;
  margin-top: auto;
  color: var(--white);
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.coming-soon-pill {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.8);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 50px;
  width: fit-content;
}
.coming-soon-body h3 {
  color: var(--white);
  font-size: 1.4rem;
  margin: 0;
}
.coming-soon-body p {
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
  margin: 0;
  line-height: 1.6;
}

/* ── Extra buttons ── */
.btn-amber {
  display: inline-flex;
  align-items: center;
  padding: 12px 22px;
  background: var(--amber);
  color: var(--teal-dark);
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--transition);
  white-space: nowrap;
}
.btn-amber:hover { background: var(--amber-light); }
.btn-amber-outline {
  display: inline-flex;
  align-items: center;
  padding: 12px 22px;
  background: transparent;
  color: var(--amber);
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: 50px;
  border: 2px solid var(--amber);
  cursor: pointer;
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}
.btn-amber-outline:hover { background: var(--amber); color: var(--teal-dark); }
.btn-outline-teal {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 20px;
  background: transparent;
  color: var(--teal);
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 50px;
  border: 2px solid var(--teal);
  cursor: pointer;
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}
.btn-outline-teal:hover { background: var(--teal); color: var(--white); }
.btn-outline-white {
  display: inline-flex;
  align-items: center;
  padding: 12px 22px;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.6);
  cursor: pointer;
  text-decoration: none;
  transition: background var(--transition), border-color var(--transition);
  white-space: nowrap;
  margin-top: 6px;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.15); border-color: #fff; }

/* Responsive for package pages */
@media (max-width: 960px) {
  .pkg-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .pkg-grid-2 { grid-template-columns: 1fr; }
  .coming-soon-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .pkg-grid-4 { grid-template-columns: 1fr; }
  .pkg-grid-2 { grid-template-columns: 1fr; }
  .coming-soon-grid { grid-template-columns: 1fr; }
  .pkg-actions { flex-direction: column; }
  .pkg-dual-book { flex-direction: column; }

}

/* ── Hero ghost video button ── */
.btn-ghost-video {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border: 2px solid rgba(255,255,255,0.45);
  border-radius: 50px;
  color: #fff;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(6px);
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition);
  white-space: nowrap;
}
.btn-ghost-video:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.85);
}
.btn-ghost-video-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  flex-shrink: 0;
}

/* ── YouTube lightbox ── */
.yt-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(0,0,0,0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.yt-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}
.yt-modal {
  position: relative;
  width: 90vw;
  max-width: 900px;
}
.yt-close {
  position: absolute;
  top: -48px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.8rem;
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  opacity: 0.75;
  transition: opacity 0.2s;
}
.yt-close:hover { opacity: 1; }
.yt-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  background: #000;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
}
.yt-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 640px) {
  .btn-ghost-video { width: 100%; justify-content: center; }
  .yt-close { top: -44px; font-size: 2.2rem; }
}
