: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: "Space Grotesk", 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: "Fraunces", "Times New Roman", serif;
  margin: 0 0 0.6rem;
  letter-spacing: -0.01em;
}

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;
}

.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: linear-gradient(160deg, #fff8ef 0%, #f5e1cc 100%);
  border-radius: 24px;
  padding: 1.2rem;
  box-shadow: var(--shadow);
}

.hero-card-inner {
  background: white;
  border-radius: 20px;
  padding: 1.6rem;
  border: 1px solid rgba(199, 91, 57, 0.18);
}

.card-title {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.7rem;
  color: var(--sunset-500);
  margin-bottom: 1rem;
}

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

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;
}

.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.18);
  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: white;
  border-radius: 20px;
  padding: 1.6rem;
  border: 1px solid rgba(31, 27, 22, 0.08);
  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: white;
  border-radius: 22px;
  padding: 1.6rem;
  border: 1px solid rgba(31, 27, 22, 0.08);
  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;
  }
}
