/* Tropical palette: warm sand, deep jungle, ocean teal */
:root {
  --color-sand: #faf6f0;
  --color-cream: #fffefb;
  --color-forest: #1a3c34;
  --color-forest-soft: #2d5a4f;
  --color-ocean: #0d7c7c;
  --color-ocean-light: #3cb8a8;
  --color-coral: #e8a87c;
  --color-text: #1c1917;
  --color-text-muted: #57534e;
  --color-white: #ffffff;
  --shadow-soft: 0 4px 24px rgba(26, 60, 52, 0.08);
  --shadow-card: 0 12px 40px rgba(26, 60, 52, 0.12);
  --radius-lg: 20px;
  --radius-full: 9999px;
  --font-display: "Fraunces", Georgia, serif;
  --font-sans: "Outfit", system-ui, sans-serif;
  --header-h: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--color-text);
  background: var(--color-sand);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 1.5rem;
  background: linear-gradient(
    to bottom,
    rgba(250, 246, 240, 0.92) 0%,
    rgba(250, 246, 240, 0.75) 70%,
    transparent 100%
  );
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--color-forest);
}

.logo-mark {
  color: var(--color-ocean);
  font-size: 1.15rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.25rem 1.5rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text-muted);
  padding: 0.35rem 0;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--color-forest);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.35rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-ocean) 0%, var(--color-ocean-light) 100%);
  color: var(--color-white);
  box-shadow: 0 4px 16px rgba(13, 124, 124, 0.35);
}

.btn-primary:hover {
  box-shadow: 0 6px 24px rgba(13, 124, 124, 0.45);
}

.btn-lg {
  padding: 0.85rem 1.75rem;
  font-size: 1rem;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--color-white);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.28);
  border-color: rgba(255, 255, 255, 0.65);
}

/* Hero */
.hero {
  position: relative;
  min-height: min(100vh, 900px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-h) + 2rem) 1.5rem 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-color: var(--color-forest);
  background-image: url("https://images.unsplash.com/photo-1588258525935-3b0e6f7e0d35?auto=format&fit=crop&w=2400&q=85");
  background-size: cover;
  background-position: center 35%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(26, 60, 52, 0.75) 0%,
    rgba(26, 60, 52, 0.35) 45%,
    rgba(13, 124, 124, 0.25) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  text-align: center;
  color: var(--color-white);
}

.hero-eyebrow {
  margin: 0 0 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.95;
  color: rgba(255, 255, 255, 0.9);
}

.hero-title {
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.hero-title em {
  font-style: italic;
  font-weight: 600;
  color: #fde68a;
}

.hero-lede {
  margin: 0 auto 2rem;
  max-width: 32rem;
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  z-index: 2;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
}

/* Internal destination pages */
.hero--page {
  min-height: min(58vh, 520px);
  max-height: 600px;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 2.75rem;
}

.hero--page .hero-scroll {
  display: none;
}

.hero-page-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.hero--page .hero-content {
  text-align: left;
  max-width: 38rem;
  margin: 0;
}

.breadcrumb {
  margin: 0 0 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.95);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.breadcrumb a:hover {
  color: #fde68a;
}

.page-article {
  max-width: 1120px;
  margin: 0 auto;
  padding: 3rem 1.5rem 4.5rem;
}

.page-intro {
  margin: 0 0 2.5rem;
  max-width: 42rem;
}

.page-intro .lead {
  margin: 0 0 1rem;
  font-size: 1.2rem;
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--color-forest);
  line-height: 1.45;
}

.page-intro p {
  margin: 0;
  color: var(--color-text-muted);
  font-weight: 300;
  line-height: 1.7;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.detail-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.35rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(26, 60, 52, 0.06);
}

.detail-card h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-forest);
}

.detail-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--color-text-muted);
  font-weight: 300;
  line-height: 1.55;
}

.highlights {
  margin: 0 0 3rem;
  padding: 2rem 1.75rem;
  background: var(--color-cream);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(26, 60, 52, 0.08);
}

.highlights h2 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--color-forest);
}

.highlights ul {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--color-text-muted);
  font-weight: 300;
  line-height: 1.75;
}

.highlights li {
  margin-bottom: 0.35rem;
}

.related-section {
  padding-top: 0.5rem;
  border-top: 1px solid rgba(26, 60, 52, 0.1);
}

.related-section h2 {
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-forest);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.related-grid a {
  display: block;
  padding: 1rem 1.15rem;
  background: var(--color-white);
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
  font-weight: 600;
  color: var(--color-forest);
  transition: color 0.2s ease, box-shadow 0.2s ease;
}

.related-grid a:hover {
  color: var(--color-ocean);
  box-shadow: var(--shadow-card);
}

.related-grid a span {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--color-text-muted);
}

@media (max-width: 768px) {
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .hero--page .hero-content {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-page-wrap {
    display: flex;
    justify-content: center;
  }

  .breadcrumb {
    text-align: center;
  }
}

@media (max-width: 520px) {
  .related-grid {
    grid-template-columns: 1fr;
  }
}

/* Destinations */
.destinations {
  padding: 4.5rem 1.5rem 5rem;
  background: var(--color-cream);
}

.section-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.35rem);
  font-weight: 600;
  color: var(--color-forest);
  letter-spacing: -0.02em;
}

.section-sub {
  margin: 0 auto;
  max-width: 36rem;
  font-size: 1.05rem;
  color: var(--color-text-muted);
  font-weight: 300;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.place-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.place-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}

a.place-card--link {
  display: block;
  color: inherit;
}

a.place-card--link:hover .place-name,
a.place-card--link:focus-visible .place-name {
  color: var(--color-ocean);
}

a.place-card--link:focus-visible {
  outline: 2px solid var(--color-ocean);
  outline-offset: 3px;
}

.place-image {
  height: 220px;
  background-size: cover;
  background-position: center;
}

.place-body {
  padding: 1.5rem 1.5rem 1.75rem;
}

.place-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-ocean);
  margin-bottom: 0.5rem;
}

.place-name {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-forest);
}

.place-desc {
  margin: 0;
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.55;
  font-weight: 300;
}

/* About strip */
.about-strip {
  padding: 3.5rem 1.5rem;
  background: linear-gradient(135deg, var(--color-forest-soft) 0%, var(--color-forest) 100%);
  color: var(--color-white);
}

.about-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.about-copy h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  font-weight: 600;
}

.about-copy p {
  margin: 0;
  max-width: 32rem;
  opacity: 0.92;
  font-weight: 300;
  line-height: 1.65;
}

.about-cta .btn-primary {
  white-space: nowrap;
}

/* Footer */
.site-footer {
  padding: 2rem 1.5rem;
  background: var(--color-sand);
  border-top: 1px solid rgba(26, 60, 52, 0.08);
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
}

.footer-brand {
  margin: 0 0 0.35rem;
  font-weight: 600;
  color: var(--color-forest);
}

.footer-note {
  margin: 0;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* Responsive */
@media (max-width: 900px) {
  .cards {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .place-image {
    height: 200px;
  }

  .header-inner {
    flex-wrap: wrap;
  }

  .nav {
    gap: 0.75rem 1rem;
  }

  .about-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 520px) {
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }
}
