:root {
  --sand: #f8f3ea;
  --stone: #f2ece2;
  --ink: #141414;
  --deep: #1e2b2d;
  --ocean: #0f6c6d;
  --sun: #f2b66d;
  --coral: #e0765b;
  --leaf: #2f6b4f;
  --mist: #d7e2e2;
  --shadow: 0 18px 60px rgba(20, 20, 20, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Sora", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: linear-gradient(120deg, #fbf7f1 0%, #f4f0e8 40%, #eef2f1 100%);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: -20% -10% auto -10%;
  height: 60vh;
  background: radial-gradient(circle at 20% 30%, rgba(240, 188, 125, 0.25), transparent 58%),
    radial-gradient(circle at 70% 10%, rgba(87, 158, 152, 0.22), transparent 55%),
    radial-gradient(circle at 40% 70%, rgba(226, 131, 96, 0.18), transparent 60%);
  pointer-events: none;
  z-index: -2;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image: linear-gradient(rgba(0, 0, 0, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.04) 1px, transparent 1px);
  background-size: 120px 120px;
  opacity: 0.25;
  pointer-events: none;
  z-index: -3;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1160px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(248, 243, 234, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(20, 20, 20, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.brand {
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: 1.35rem;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: conic-gradient(from 210deg, var(--ocean), var(--sun), var(--coral), var(--leaf), var(--ocean));
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.6);
}

.nav-links {
  display: flex;
  gap: 24px;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a.active {
  border-color: var(--ocean);
}

.nav-cta {
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--deep);
  color: var(--sand);
  font-size: 0.9rem;
}

.hero {
  padding: 60px 0 32px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  align-items: center;
}

.hero h1 {
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: clamp(2.6rem, 4vw, 3.6rem);
  line-height: 1.05;
  margin-bottom: 18px;
}

.hero p {
  font-size: 1.05rem;
  color: rgba(20, 20, 20, 0.8);
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.button {
  padding: 14px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.button.primary {
  background: var(--ocean);
  color: white;
}

.button.ghost {
  border-color: rgba(20, 20, 20, 0.2);
  background: transparent;
}

.hero-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 20px;
}

.hero-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.hero-gallery img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.hero-gallery img:nth-child(1) {
  grid-column: span 2;
  height: 220px;
}

.hero-gallery img:nth-child(4) {
  grid-column: span 2;
}

.hero-card .tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  background: rgba(15, 108, 109, 0.1);
  color: var(--ocean);
  padding: 6px 12px;
  border-radius: 999px;
}

.hero-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.hero-card li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
  padding-bottom: 8px;
  border-bottom: 1px dashed rgba(20, 20, 20, 0.12);
}

.section {
  padding: 60px 0;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 32px;
}

.section-header h2 {
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin: 0;
}

.section-header p {
  max-width: 480px;
  color: rgba(20, 20, 20, 0.7);
  margin: 0;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}

.image-card {
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: grid;
}

.image-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.image-card .image-content {
  padding: 18px 20px 22px;
  display: grid;
  gap: 8px;
}

.image-card .image-content h3 {
  margin: 0;
  font-size: 1.1rem;
}

.image-card .image-content p {
  margin: 0;
  color: rgba(20, 20, 20, 0.7);
  font-size: 0.95rem;
}

.card {
  background: white;
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 14px;
  min-height: 220px;
}

.card .eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(20, 20, 20, 0.55);
}

.card h3 {
  margin: 0;
  font-size: 1.3rem;
}

.card p {
  margin: 0;
  color: rgba(20, 20, 20, 0.7);
}

.card .meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(20, 20, 20, 0.6);
}

.tile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 26px;
}

.destination-tile {
  display: grid;
  gap: 14px;
  text-align: center;
}

.destination-tile img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.destination-tile h3 {
  margin: 0;
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: 1.6rem;
}

.destination-tile p {
  margin: 0;
  color: rgba(20, 20, 20, 0.65);
  font-size: 0.98rem;
}

.split-panel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.panel {
  background: var(--deep);
  color: var(--sand);
  padding: 32px;
  border-radius: var(--radius-lg);
  display: grid;
  gap: 20px;
  box-shadow: var(--shadow);
}

.panel.light {
  background: white;
  color: var(--ink);
}

.panel ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
}

.stat {
  background: rgba(255, 255, 255, 0.7);
  padding: 18px;
  border-radius: var(--radius-sm);
  color: var(--ink);
}

.stat strong {
  font-size: 1.3rem;
  display: block;
}

.testimonials {
  display: grid;
  gap: 18px;
}

.testimonial {
  background: white;
  border-radius: var(--radius-md);
  padding: 22px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 10px;
}

.form {
  display: grid;
  gap: 16px;
}

.form input,
.form select,
.form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(20, 20, 20, 0.2);
  font-family: inherit;
  font-size: 1rem;
  background: white;
}

.form textarea {
  min-height: 130px;
  resize: vertical;
}

.site-footer {
  padding: 40px 0 60px;
  border-top: 1px solid rgba(20, 20, 20, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
}

.footer-grid h4 {
  font-size: 1rem;
  margin-bottom: 10px;
}

.footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
  font-size: 0.9rem;
  color: rgba(20, 20, 20, 0.7);
}

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

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

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
}

@media (max-width: 680px) {
  .hero {
    padding: 60px 0 30px;
  }

  .hero-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-gallery img {
    height: 150px;
  }

  .hero-gallery img:nth-child(1),
  .hero-gallery img:nth-child(4) {
    grid-column: span 2;
    height: 190px;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    gap: 16px;
  }

  .nav-cta {
    padding: 10px 16px;
  }

  .destination-tile img {
    height: 240px;
  }
}
