:root {
  --bg: #071017;
  --bg-card: rgba(11, 23, 33, 0.62);
  --line: rgba(178, 235, 242, 0.18);
  --text: #e7efef;
  --muted: #bfd1d5;
  --teal: #6dd9e7;
  --teal-strong: #4ee6ff;
  --navy: #0d1b25;
  --sand: #d8d3c4;
  --accent: #ffd780;
  --shadow: 0 16px 50px rgba(0, 0, 0, 0.38);
  --radius: 24px;
  --content: min(1180px, calc(100% - 40px));
  --article: min(760px, 100%);
  --anchor-offset: 128px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--anchor-offset);
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 50% 0%, rgba(63, 132, 153, 0.14), transparent 34%),
    linear-gradient(180deg, #050c12 0%, #071017 38%, #09131a 100%);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.06;
  background-image:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 3px 3px;
  mix-blend-mode: soft-light;
  z-index: 50;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; color: inherit; cursor: pointer; }

:focus-visible {
  outline: 2px solid var(--teal-strong);
  outline-offset: 3px;
  border-radius: 8px;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 12px;
  z-index: 999;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #0b1722;
  color: #fff;
}

.skip-link:focus { top: 12px; }

.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--teal-strong), #e6fbff);
  box-shadow: 0 0 18px rgba(78, 230, 255, 0.42);
}

.site-shell { position: relative; }

.nav-wrap {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 30;
  width: min(calc(100% - 80px), 1880px);
  transform: translateX(-50%);
}

.nav {
  position: relative;
  display: grid;
  grid-template-columns: minmax(380px, 520px) minmax(520px, 1fr) auto;
  align-items: center;
  gap: 30px;
  min-height: 78px;
  padding: 14px 28px;
  overflow: hidden;
  border: 1px solid rgba(130, 214, 232, 0.28);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(168, 227, 236, 0.16), rgba(20, 38, 52, 0.12));
  box-shadow: 0 8px 30px rgba(2, 8, 13, 0.28), inset 0 0 0 1px rgba(255,255,255,0.05);
  backdrop-filter: blur(18px) saturate(120%);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
  transition: background 300ms ease, border-color 300ms ease, box-shadow 300ms ease;
}

.nav::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(99, 228, 255, 0.12);
  border-radius: inherit;
  box-shadow: 0 0 26px rgba(77, 227, 255, 0.10), inset 0 0 26px rgba(77, 227, 255, 0.04);
  pointer-events: none;
}

.nav.scrolled {
  background: linear-gradient(180deg, rgba(130, 201, 217, 0.18), rgba(9, 19, 27, 0.36));
  border-color: rgba(119, 223, 244, 0.34);
  box-shadow: 0 12px 34px rgba(0,0,0,0.36), 0 0 20px rgba(78, 230, 255, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}

.brand-text {
  display: inline-flex;
  align-items: baseline;
  gap: 18px;
  min-width: 0;
  line-height: 1;
  max-width: 100%;
}

.brand-name {
  white-space: nowrap;
  flex: 0 0 auto;
  font-size: clamp(1.38rem, 2vw, 1.72rem);
  font-weight: 700;
  letter-spacing: 0.03em;
}

.brand-tag {
  white-space: nowrap;
  min-width: 0;
  max-width: 260px;
  overflow: hidden;
  text-overflow: ellipsis;
  color: rgba(243, 249, 249, 0.86);
  font-size: clamp(0.72rem, 0.95vw, 0.92rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-self: center;
  justify-content: center;
  gap: clamp(18px, 2.4vw, 42px);
  min-width: 0;
  width: 100%;
  white-space: nowrap;
}

.nav-links a,
.watch-link,
.mobile-toggle {
  position: relative;
  border: 0;
  border-radius: 14px;
  background: transparent;
  color: rgba(238, 246, 247, 0.92);
  transition: background 220ms ease, color 220ms ease, transform 220ms ease;
}

.nav-links a {
  padding: 10px 8px;
  font-size: clamp(0.95rem, 1.03vw, 1.15rem);
  line-height: 1;
}

.nav-links a::after {
  content: "";
  position: absolute;
  right: 12px;
  bottom: 6px;
  left: 12px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--teal-strong), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 240ms ease;
}

.nav-links a:hover,
.nav-links a.active,
.watch-link:hover,
.mobile-toggle:hover {
  background: rgba(126, 213, 232, 0.12);
  color: #fff;
  transform: translateY(-1px);
}

.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

.watch-link {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 9px;
  min-width: 132px;
  justify-content: center;
  padding: 11px 16px;
  border: 1px solid rgba(136, 228, 244, 0.24);
  background: rgba(11, 22, 31, 0.28);
  font-weight: 700;
  line-height: 1;
}

.mobile-toggle {
  display: none;
  justify-self: end;
  padding: 10px;
}

.mobile-toggle .icon-close { display: none; }
.mobile-toggle[aria-expanded="true"] .icon-burger { display: none; }
.mobile-toggle[aria-expanded="true"] .icon-close { display: block; }

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: clip;
  isolation: isolate;
}

.hero-media,
.hero-overlay,
.hero-waves {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url('./images/tiger-shark-blog/bahamas-tiger-shark-profile.jpg');
  background-position: center center;
  background-size: cover;
  filter: saturate(0.92) contrast(1.03) brightness(0.72);
  transform: translateY(0);
  transition: transform 160ms linear;
  will-change: transform;
}

.hero-waves {
  background:
    radial-gradient(ellipse at 22% 10%, rgba(255,255,255,0.08), transparent 30%),
    radial-gradient(ellipse at 76% 14%, rgba(255,255,255,0.06), transparent 28%),
    repeating-linear-gradient(100deg, rgba(255,255,255,0.02) 0 18px, transparent 18px 34px);
  mix-blend-mode: soft-light;
  opacity: 0.34;
  animation: drift 18s linear infinite;
}

.hero-overlay {
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(3, 8, 12, 0.78), rgba(3, 9, 13, 0.42) 44%, rgba(3, 9, 13, 0.12) 72%),
    linear-gradient(180deg, rgba(3,8,12,0.44) 0, rgba(3,9,13,0.18) 30%, rgba(6,14,19,0.92) 100%);
}

.hero-inner {
  position: relative;
  z-index: 3;
  width: var(--content);
  padding-top: 112px;
  padding-bottom: 52px;
}

.article-meta {
  max-width: 780px;
  margin: 0 0 16px;
  color: rgba(233, 243, 244, 0.86);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 920px;
  margin: 0;
  font-family: "Arial Narrow", "Roboto Condensed", Inter, sans-serif;
  font-size: clamp(3.2rem, 7vw, 7rem);
  line-height: 0.92;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-shadow: 0 8px 30px rgba(0,0,0,0.48);
  text-wrap: balance;
}

.hero-deck {
  max-width: 690px;
  margin: 22px 0 0;
  color: rgba(235, 242, 243, 0.9);
  font-size: clamp(1.04rem, 1.4vw, 1.28rem);
  line-height: 1.62;
  text-shadow: 0 4px 16px rgba(0,0,0,0.36);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button,
.button-ghost,
.link-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease, border-color 220ms ease;
}

.button,
.button-ghost {
  padding: 14px 20px;
}

.button {
  color: #031117;
  background: linear-gradient(180deg, #96f4ff, #63ddeb);
  box-shadow: 0 10px 22px rgba(96, 228, 248, 0.18);
}

.button-ghost {
  border: 1px solid rgba(136, 228, 244, 0.24);
  background: rgba(11, 22, 31, 0.30);
  color: #eef6f7;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.button:hover,
.button-ghost:hover,
.link-action:hover {
  transform: translateY(-2px);
}

main {
  position: relative;
  z-index: 2;
}

.article-shell {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 48px;
  width: var(--content);
  margin: 0 auto;
  padding: 86px 0 110px;
}

.toc {
  position: sticky;
  top: 128px;
  align-self: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(130, 212, 228, 0.08), rgba(11, 21, 30, 0.70));
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.toc p {
  margin: 0 0 12px;
  color: rgba(236, 248, 249, 0.86);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.toc a {
  display: block;
  padding: 10px 0;
  border-top: 1px solid rgba(178, 235, 242, 0.10);
  color: rgba(225, 235, 237, 0.76);
  font-size: 0.94rem;
  line-height: 1.35;
}

.toc a.active,
.toc a:hover {
  color: #fff;
}

.post {
  min-width: 0;
}

.lede,
.copy-block,
.comparison,
.closing,
.film-card,
.destination {
  width: var(--article);
  margin: 0 auto 56px;
}

.lede {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(16, 29, 40, 0.70), rgba(10, 19, 27, 0.80));
  box-shadow: var(--shadow);
}

.lede p,
.copy-block p,
.film-copy p,
.destination-copy p,
.comparison p,
.closing p {
  color: rgba(224, 235, 237, 0.82);
  font-size: 1.06rem;
  line-height: 1.82;
}

.lede p:first-child {
  color: #f1fbfc;
  font-size: clamp(1.32rem, 2.2vw, 1.78rem);
  line-height: 1.35;
}

.lede p,
.copy-block p,
.destination-copy p,
.film-copy p {
  margin: 0 0 18px;
}

.lede p:last-child,
.copy-block p:last-child,
.destination-copy p:last-child,
.film-copy p:last-child { margin-bottom: 0; }

.operator-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  color: rgba(225, 235, 237, 0.82);
  font-size: 0.94rem;
}

.operator-links span {
  color: #f1fbfc;
  font-weight: 800;
}

.operator-links a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border: 1px solid rgba(136, 228, 244, 0.22);
  border-radius: 999px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.06);
  color: #8ce4f4;
  font-weight: 800;
}

.operator-links a:hover {
  border-color: rgba(255, 215, 128, 0.55);
  color: var(--accent);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(1040px, 100%);
  margin: -24px auto 56px;
}

.stat-grid article {
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(130, 212, 228, 0.10), rgba(11, 21, 30, 0.74)),
    linear-gradient(135deg, rgba(255, 215, 128, 0.10), transparent 44%);
  box-shadow: var(--shadow);
}

.stat-grid span {
  display: inline-flex;
  margin-bottom: 14px;
  color: rgba(150, 244, 255, 0.86);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.stat-grid strong {
  display: block;
  margin-bottom: 12px;
  color: #f4fbfb;
  font-family: "Arial Narrow", "Roboto Condensed", Inter, sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 900;
  line-height: 0.98;
  text-transform: uppercase;
}

.stat-grid p {
  margin: 0;
  color: rgba(224, 235, 237, 0.78);
  font-size: 0.98rem;
  line-height: 1.65;
}

h2 {
  margin: 0 0 18px;
  font-family: "Arial Narrow", "Roboto Condensed", Inter, sans-serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 0.98;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-wrap: balance;
}

h3 {
  margin: 0 0 12px;
  font-size: 1.34rem;
  line-height: 1.18;
}

.section-anchor { scroll-margin-top: var(--anchor-offset); }

.media-frame,
.destination-photo,
.photo-strip figure,
.maldives-gallery figure {
  overflow: hidden;
  border: 1px solid rgba(136, 228, 244, 0.22);
  border-radius: var(--radius);
  background: var(--bg-card);
  box-shadow: var(--shadow);
}

.media-frame {
  width: min(1020px, 100%);
  margin: 0 auto 64px;
}

.media-frame img,
.destination-photo img,
.maldives-gallery img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.photo-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(1040px, 100%);
  margin: 0 auto 56px;
}

.photo-strip figure {
  margin: 0;
}

.photo-strip img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.maldives-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  width: min(1040px, 100%);
  margin: -26px auto 56px;
}

.maldives-gallery figure {
  margin: 0;
}

.briefing-grid,
.surface-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  width: min(1040px, 100%);
  margin: -22px auto 56px;
}

.surface-gallery {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: -28px;
}

.briefing-grid figure,
.surface-gallery figure,
.wide-gallery figure {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(136, 228, 244, 0.22);
  border-radius: var(--radius);
  background: var(--bg-card);
  box-shadow: var(--shadow);
}

.briefing-grid img,
.surface-gallery img,
.wide-gallery img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.wide-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  width: min(1040px, 100%);
  margin: 0 auto 64px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(130, 212, 228, 0.08), rgba(11, 21, 30, 0.72));
  box-shadow: var(--shadow);
}

.wide-gallery .section-title {
  grid-column: 1 / -1;
  margin-bottom: 4px;
}

figcaption {
  padding: 14px 18px 16px;
  color: rgba(225, 235, 237, 0.76);
  font-size: 0.92rem;
  line-height: 1.55;
}

.destination {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(280px, 0.72fr);
  gap: 24px;
  align-items: center;
  width: min(1040px, 100%);
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(130, 212, 228, 0.08), rgba(11, 21, 30, 0.72));
  box-shadow: var(--shadow);
}

.film-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 0;
  width: min(1040px, 100%);
  align-items: stretch;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(16, 29, 40, 0.70), rgba(10, 19, 27, 0.82));
  box-shadow: var(--shadow);
  isolation: isolate;
}

.video-wrap {
  position: relative;
  min-width: 0;
  min-height: 0;
  aspect-ratio: 16 / 9;
  background: #02070a;
}

.video-wrap iframe,
.video-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.video-wrap iframe {
  border: 0;
}

.video-wrap img {
  object-fit: cover;
  object-position: center;
  background: #02070a;
}

.video-thumbnail {
  display: block;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  color: #031117;
  z-index: 1;
}

.video-thumbnail::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(150, 244, 255, 0.10), transparent 28%),
    linear-gradient(180deg, rgba(3, 9, 13, 0.03), rgba(3, 9, 13, 0.36));
  pointer-events: none;
  transition: opacity 220ms ease;
}

.play-badge {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  display: grid;
  width: 84px;
  height: 84px;
  place-items: center;
  border: 1px solid rgba(150, 244, 255, 0.46);
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(150, 244, 255, 0.95), rgba(99, 221, 235, 0.92));
  box-shadow: 0 14px 34px rgba(0,0,0,0.32), 0 0 24px rgba(78, 230, 255, 0.22);
  transform: translate(-50%, -50%);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.video-thumbnail:hover .play-badge,
.video-thumbnail:focus-visible .play-badge {
  transform: translate(-50%, -50%) scale(1.06);
  box-shadow: 0 18px 42px rgba(0,0,0,0.38), 0 0 32px rgba(78, 230, 255, 0.30);
}

.film-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 28px 34px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(10, 22, 31, 0.98), rgba(7, 17, 24, 0.98));
}

.film-copy h2 {
  font-size: clamp(2rem, 3.3vw, 3.7rem);
}

.film-copy p {
  font-size: clamp(1rem, 1.12vw, 1.12rem);
  line-height: 1.66;
}

@media (min-width: 981px) {
  .film-card {
    grid-template-columns: minmax(0, 44%) minmax(0, 56%);
    align-items: center;
    padding: 24px;
    gap: 0;
  }

  .video-wrap {
    align-self: center;
    width: 100%;
    overflow: hidden;
    border-radius: 18px;
  }

  .film-copy {
    padding: 0 10px 0 34px;
  }

  .film-copy h2 {
    font-size: clamp(2rem, 2.75vw, 3.25rem);
  }

  .film-copy p {
    font-size: clamp(0.96rem, 1vw, 1.06rem);
    line-height: 1.58;
  }
}

.link-action {
  align-self: flex-start;
  margin-top: 18px;
  padding: 12px 16px;
  color: #031117;
  background: linear-gradient(180deg, #96f4ff, #63ddeb);
}

.maldives-band {
  position: relative;
  padding: 34px;
  border: 1px solid rgba(136, 228, 244, 0.20);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(130, 212, 228, 0.08), rgba(11, 21, 30, 0.72)),
    linear-gradient(90deg, rgba(109, 217, 231, 0.08), transparent);
  box-shadow: var(--shadow);
}

.section-title {
  margin-bottom: 24px;
}

.section-title p {
  margin: 0;
}

.compare-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 22px;
}

.compare-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(130, 212, 228, 0.08), rgba(11, 21, 30, 0.72));
}

.compare-grid span {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 12px;
  border: 1px solid rgba(125, 226, 242, 0.16);
  border-radius: 999px;
  background: rgba(108, 220, 236, 0.11);
  color: rgba(236, 248, 249, 0.86);
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  background: rgba(6, 16, 23, 0.78);
}

th,
td {
  padding: 18px;
  border-bottom: 1px solid rgba(178, 235, 242, 0.12);
  text-align: left;
  vertical-align: top;
  line-height: 1.55;
}

th {
  color: #effbfc;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(108, 220, 236, 0.08);
}

td {
  color: rgba(224, 235, 237, 0.82);
}

tr:last-child td {
  border-bottom: 0;
}

.closing {
  width: min(930px, 100%);
  padding: 34px;
  border: 1px solid rgba(136, 228, 244, 0.22);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(3,8,12,0.08), rgba(3,9,13,0.82)),
    url('./images/tiger-shark-blog/tiger-shark-wide-maldives.jpeg') center/cover no-repeat;
  box-shadow: var(--shadow);
}

.quote {
  max-width: 760px;
  margin: 0 0 32px;
  color: #f4fbfb;
  font-family: "Arial Narrow", "Roboto Condensed", Inter, sans-serif;
  font-size: clamp(2.1rem, 5vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-shadow: 0 8px 28px rgba(0,0,0,0.50);
}

.closing .copy-block {
  width: min(720px, 100%);
  margin: 0;
  padding: 26px;
  border: 1px solid rgba(178, 235, 242, 0.18);
  border-radius: 22px;
  background: rgba(5, 13, 19, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.article-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  width: var(--content);
  margin: 0 auto;
  padding: 34px 0 46px;
  border-top: 1px solid rgba(178, 235, 242, 0.14);
  color: rgba(225, 235, 237, 0.72);
  font-size: 0.92rem;
  line-height: 1.5;
}

.article-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.article-footer a {
  color: rgba(239, 251, 252, 0.9);
}

.article-footer a:hover {
  color: var(--teal-strong);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes drift {
  from { transform: translate3d(-2%, -1%, 0); }
  to { transform: translate3d(2%, 1%, 0); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

@media (max-width: 1380px) {
  .nav {
    grid-template-columns: minmax(230px, 300px) minmax(420px, 1fr) auto;
    gap: 22px;
  }

  .brand-tag {
    display: none;
  }

  .nav-links {
    gap: clamp(14px, 1.8vw, 26px);
  }
}

@media (max-width: 1120px) {
  .nav {
    grid-template-columns: 1fr auto auto;
  }

  .nav-links {
    gap: 10px;
  }

  .article-shell {
    grid-template-columns: 1fr;
  }

  .toc {
    position: relative;
    top: auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0 14px;
    width: min(760px, 100%);
    margin: 0 auto;
  }

  .toc p {
    grid-column: 1 / -1;
  }
}

@media (max-width: 980px) {
  :root {
    --content: min(100% - 28px, 1180px);
    --anchor-offset: 96px;
  }

  .nav-wrap {
    top: 12px;
    width: calc(100% - 24px);
  }

  .nav {
    grid-template-columns: 1fr auto;
    min-height: 68px;
    padding: 12px 16px;
    gap: 12px;
  }

  .brand-name {
    font-size: 1.24rem;
  }

  .mobile-toggle {
    display: inline-flex;
  }

  .watch-link {
    display: none;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid rgba(130, 214, 232, 0.28);
    border-radius: 20px;
    background: rgba(8, 18, 27, 0.94);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 13px 14px;
  }

  .hero {
    min-height: 92vh;
  }

  .hero-inner {
    padding-top: 120px;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 15vw, 5rem);
  }

  .article-shell {
    padding-top: 58px;
  }

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

  .lede,
  .maldives-band,
  .closing {
    padding: 24px;
  }

  .destination,
  .film-card {
    grid-template-columns: 1fr;
  }

  .stat-grid,
  .briefing-grid,
  .surface-gallery,
  .wide-gallery {
    grid-template-columns: 1fr;
  }

  .stat-grid,
  .briefing-grid,
  .surface-gallery {
    margin-top: 0;
  }

  .wide-gallery {
    padding: 18px;
  }

  .film-card {
    width: min(760px, 100%);
  }

  .film-copy {
    padding: 28px 24px 30px;
  }

  .film-copy h2 {
    max-width: none;
    font-size: clamp(2.25rem, 9vw, 4rem);
  }

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

@media (max-width: 560px) {
  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(3,8,12,0.64) 0, rgba(3,9,13,0.36) 42%, rgba(6,14,19,0.94) 100%);
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .article-meta {
    font-size: 0.72rem;
    line-height: 1.5;
  }

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

  h2 {
    font-size: 2.05rem;
  }

  .lede p,
  .copy-block p,
  .film-copy p,
  .destination-copy p,
  .comparison p,
  .closing p {
    font-size: 1rem;
    line-height: 1.74;
  }

  .destination {
    padding: 18px;
  }

}
