:root {
  --sand-50: #fdf7ee;
  --sand-100: #f7ead8;
  --sand-300: #e7c9a2;
  --sand-500: #c78e52;
  --ink-900: #1f1b16;
  --ink-700: #4b3f35;
  --sea-600: #2f6f8a;
  --sea-400: #7fc1c8;
  --sunset-500: #c75b39;
  --olive-500: #6f7b3c;
  --card: #fffaf2;
  --glass: rgba(255, 255, 255, 0.55);
  --shadow: 0 24px 60px rgba(31, 27, 22, 0.16);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  color: var(--ink-900);
  background: radial-gradient(circle at top left, #f9efe2 0%, #f3e3cf 35%, #ecd6bf 100%);
  min-height: 100vh;
}

h1, h2, h3 {
  font-family: "Manrope", system-ui, sans-serif;
  margin: 0 0 0.6rem;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.8rem, 4vw, 3.8rem);
  line-height: 1.05;
}

h1 span {
  display: block;
  font-weight: 400;
  color: var(--sunset-500);
}

h2 {
  font-size: clamp(2rem, 3vw, 2.6rem);
}

h3 {
  font-size: 1.35rem;
}

a {
  color: var(--sea-600);
  text-decoration: underline;
  text-decoration-color: rgba(47, 111, 138, 0.45);
}

a:hover {
  color: var(--sunset-500);
  text-decoration-color: rgba(199, 91, 57, 0.6);
}

.noise {
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='140' height='140' viewBox='0 0 140 140' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='1' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  mix-blend-mode: multiply;
  z-index: 0;
}

.hero {
  padding: 3.5rem clamp(1.5rem, 5vw, 6rem) 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 10%, rgba(47, 111, 138, 0.25), transparent 60%),
              radial-gradient(circle at 10% 70%, rgba(199, 91, 57, 0.25), transparent 55%);
  z-index: 0;
}

.hero.with-image::before {
  background: linear-gradient(120deg, rgba(10, 32, 56, 0.65), rgba(10, 32, 56, 0.15)),
              radial-gradient(circle at 80% 10%, rgba(229, 191, 98, 0.35), transparent 60%);
}

.hero.with-image.light-overlay::before {
  background: linear-gradient(120deg, rgba(10, 32, 56, 0.25), rgba(10, 32, 56, 0.05)),
              radial-gradient(circle at 80% 10%, rgba(229, 191, 98, 0.25), transparent 60%);
}

.hero-image {
  position: absolute;
  inset: 0;
  background-image: var(--hero-image, linear-gradient(140deg, #1e3d5a 0%, #b8903c 100%));
  background-size: cover;
  background-position: center;
  opacity: 0.32;
  z-index: 0;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.brand-row {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.brand {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: inherit;
}

a.brand,
.brand:hover,
.brand:focus-visible,
a.brand:hover,
a.brand:focus-visible {
  color: inherit;
  text-decoration: none;
}

.home-button {
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(31, 27, 22, 0.2);
  background: rgba(255, 255, 255, 0.7);
}

.pill {
  background: var(--glass);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.hero-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
  position: relative;
  z-index: 1;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--ink-700);
  margin-bottom: 1rem;
}

.lede {
  font-size: 1.1rem;
  max-width: 34rem;
  color: var(--ink-700);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.8rem;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}

.cta.small {
  padding: 0.35rem 0.75rem;
  font-size: 0.8rem;
}

.cta.primary {
  background: var(--sunset-500);
  color: white;
  box-shadow: 0 16px 35px rgba(199, 91, 57, 0.35);
}

.cta.secondary {
  background: var(--sea-600);
  color: white;
}

.cta.ghost {
  border-color: rgba(31, 27, 22, 0.2);
  background: var(--glass);
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(31, 27, 22, 0.18);
}

.hero-card {
  background: #fff3e6;
  border-radius: 20px;
  padding: 1.6rem;
  border: 1px solid rgba(199, 91, 57, 0.22);
  box-shadow: var(--shadow);
}

.feature-stack {
  display: grid;
  gap: 1rem;
}

.feature-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 0.9rem;
  align-items: center;
}

.feature-item img {
  width: 44px;
  height: 44px;
  padding: 8px;
  border-radius: 12px;
  background: rgba(47, 111, 138, 0.08);
  border: 1px solid rgba(47, 111, 138, 0.18);
}

.feature-item svg {
  width: 44px;
  height: 44px;
  padding: 8px;
  border-radius: 12px;
  background: rgba(47, 111, 138, 0.08);
  border: 1px solid rgba(47, 111, 138, 0.18);
  color: var(--sea-600);
}

.feature-item h3 {
  margin: 0 0 0.2rem;
  font-size: 1rem;
}

.feature-item p {
  margin: 0;
  color: var(--ink-700);
  font-size: 0.95rem;
}

main {
  padding: 0 clamp(1.5rem, 5vw, 6rem) 4rem;
  position: relative;
  z-index: 1;
}

.section {
  margin-top: 3.5rem;
}

.section-title p {
  color: var(--ink-700);
  max-width: 40rem;
}

.section-title h2,
.section-title h3 {
  color: var(--ink-900);
}

.section-title.compact {
  margin-top: 2.5rem;
}

.whaleshark-hero {
  margin-top: 2rem;
  border-radius: 28px;
  overflow: hidden;
  padding: 2.6rem;
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(260px, 1.1fr) minmax(260px, 0.9fr);
  color: #fdf7ee;
  background-image: linear-gradient(120deg, rgba(7, 18, 28, 0.9), rgba(7, 18, 28, 0.45)),
    var(--whaleshark-image, linear-gradient(130deg, #123454 0%, #1f6b8a 55%, #b8903c 100%));
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
  position: relative;
}

.whaleshark-hero.compact {
  grid-template-columns: 1fr;
}

.whaleshark-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(127, 193, 200, 0.28), transparent 55%);
  opacity: 0.9;
  z-index: 0;
}

.whaleshark-hero > * {
  position: relative;
  z-index: 1;
}

.whaleshark-copy .lede {
  color: rgba(253, 247, 238, 0.86);
}

.whaleshark-panel {
  display: grid;
  gap: 1rem;
}

.whaleshark-panel .info-card {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(31, 27, 22, 0.12);
}

.whaleshark-panel .info-card h3 {
  color: var(--ink-900);
}

.whaleshark-panel .info-card ul {
  color: var(--ink-700);
}

.whaleshark-gallery {
  margin-top: 2rem;
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.whaleshark-gallery figure {
  margin: 0;
  background: #fff3e6;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(31, 27, 22, 0.12);
  border: 1px solid rgba(199, 91, 57, 0.22);
}

.whaleshark-gallery img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.whaleshark-gallery figcaption {
  padding: 0.85rem 1rem 1rem;
  color: var(--ink-700);
  font-size: 0.95rem;
}

.video-grid {
  margin-top: 1.5rem;
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.video-card {
  background: #fff3e6;
  border-radius: 18px;
  padding: 1rem;
  border: 1px solid rgba(199, 91, 57, 0.22);
  box-shadow: 0 16px 40px rgba(31, 27, 22, 0.1);
}

.video-embed {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 14px;
  overflow: hidden;
  background: #0e1e2b;
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-card p {
  margin: 0.75rem 0 0;
  color: var(--ink-700);
  font-weight: 600;
  font-size: 0.95rem;
}

.callout {
  margin-top: 1.5rem;
  background: var(--card);
  border-radius: 24px;
  padding: 2rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  border: 1px solid rgba(199, 91, 57, 0.22);
  box-shadow: var(--shadow);
}

.callout.alt {
  background: linear-gradient(160deg, rgba(47, 111, 138, 0.1) 0%, rgba(111, 123, 60, 0.1) 100%);
}

.callout-icon {
  font-size: 2rem;
}

.resource-list,
.tour-list {
  margin: 0;
  padding-left: 1.2rem;
  line-height: 1.7;
}

.timeline {
  margin-top: 2rem;
  display: grid;
  gap: 1.4rem;
}

.day-card {
  background: #fff3e6;
  border-radius: 20px;
  padding: 1.6rem;
  border: 1px solid rgba(199, 91, 57, 0.22);
  box-shadow: 0 16px 40px rgba(31, 27, 22, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.day-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(31, 27, 22, 0.14);
}

.day-card ul {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--ink-700);
}

.day-card.highlight {
  background: linear-gradient(140deg, rgba(199, 91, 57, 0.12) 0%, rgba(47, 111, 138, 0.12) 100%);
  border: 1px solid rgba(199, 91, 57, 0.25);
}

.section-grid {
  margin-top: 2rem;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.info-card {
  background: #fff3e6;
  border-radius: 22px;
  padding: 1.6rem;
  border: 1px solid rgba(199, 91, 57, 0.22);
  box-shadow: 0 16px 40px rgba(31, 27, 22, 0.08);
}

.info-card h3 {
  margin-bottom: 0.6rem;
}

.info-card ul,
.info-card ol {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--ink-700);
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(229, 191, 98, 0.2);
  color: #9a6a13;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.link-list {
  display: grid;
  gap: 0.6rem;
}

.link-list a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 1rem;
  border-radius: 14px;
  background: rgba(47, 111, 138, 0.08);
  border: 1px solid rgba(47, 111, 138, 0.18);
  font-weight: 600;
}





.gold-theme .pill {
  background: rgba(255, 255, 255, 0.8);
  color: #7b530d;
}

.video-icon-grid {
  margin-top: 2rem;
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.video-icon {
  display: grid;
  gap: 0.6rem;
  text-align: left;
}

.video-icon img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 14px 32px rgba(31, 27, 22, 0.12);
}

.video-icon h3 {
  margin: 0;
  font-size: 1rem;
}

.video-icon p {
  margin: 0;
  color: var(--ink-700);
  font-size: 0.9rem;
}

@media (max-width: 980px) {
  .video-icon-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .video-icon-grid {
    grid-template-columns: 1fr;
  }
}

.tile-grid {
  margin-top: 2rem;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  grid-auto-rows: 220px;
}

.country-tile {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(31, 27, 22, 0.3), rgba(31, 27, 22, 0.55)), var(--tile-bg, linear-gradient(160deg, #f0d9bf 0%, #e7c9a2 100%));
  background-size: cover;
  background-position: center;
  color: white;
  min-height: 220px;
  box-shadow: 0 20px 45px rgba(31, 27, 22, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.country-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.45), transparent 60%);
  opacity: 0.9;
}

.country-tile:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 60px rgba(31, 27, 22, 0.28);
}

.country-tile[data-label]::before {
  content: attr(data-label);
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.85);
  color: var(--sunset-500);
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 2;
}

.tile-label {
  position: relative;
  z-index: 2;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-shadow: 0 8px 18px rgba(0, 0, 0, 0.45);
}

.footer {
  padding: 3rem clamp(1.5rem, 5vw, 6rem);
  color: var(--ink-700);
  text-align: center;
}

.footer-social {
  margin-top: 0.9rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--ink-700);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
}

.footer-social svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

@media (max-width: 700px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

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

@media (max-width: 900px) {
  .whaleshark-hero {
    grid-template-columns: 1fr;
  }
}


.footer-social a[aria-label="Instagram"] {
  color: #e1306c;
}

.footer-social a[aria-label="YouTube"] {
  color: #ff0000;
}

.footer-social a[aria-label="Instagram"] svg,
.footer-social a[aria-label="YouTube"] svg {
  fill: currentColor;
}


.footer-social a[aria-label="Instagram"] svg {
  fill: #e1306c;
}

.footer-social a[aria-label="YouTube"] svg {
  fill: #ff0000;
}

.product-grid {
  margin-top: 2rem;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.product-card {
  background: #fff3e6;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(199, 91, 57, 0.22);
  box-shadow: 0 16px 40px rgba(31, 27, 22, 0.1);
  display: grid;
  grid-template-rows: auto 1fr;
}

.product-card img {
  width: 100%;
  height: 210px;
  object-fit: contain;
  background: #f7f2e9;
  display: block;
}

.product-card-art {
  min-height: 210px;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background:
    radial-gradient(circle at top, rgba(47, 111, 138, 0.18), transparent 55%),
    linear-gradient(135deg, #f7f2e9, #efe3d0);
  color: var(--sea-600);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
}

.product-body {
  padding: 1.1rem 1.2rem 1.4rem;
  display: grid;
  gap: 0.6rem;
}

.product-body h3 {
  margin: 0;
}

.product-body p {
  margin: 0;
  color: var(--ink-700);
}


.footer-social a[aria-label="Instagram"],
.footer-social a[aria-label="YouTube"] {
  color: var(--ink-700);
}

.footer-social a[aria-label="Instagram"] svg {
  fill: #e1306c;
}

.footer-social a[aria-label="YouTube"] svg {
  fill: #ff0000;
}
