:root {
  --ocean: #0D4A5C;
  --deep: #0B3A4A;
  --gold: #C1915B;
  --sand: #F3E0C7;
  --white: #FFFFFF;
  --soft: #EEF3F5;
  --text: #F7F3EA;
  --muted: #B9C4C9;
  --surface: rgba(255,255,255,.08);
  --shadow: 0 24px 80px rgba(4, 26, 41, 0.18);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: Inter, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, rgba(13,74,92,.16), #081a26 38%);
  color: var(--text);
}
img {
  max-width: 100%;
  display: block;
}
button, a {
  font: inherit;
}
.container {
  width: min(1180px, 94%);
  margin: 0 auto;
}
.page-shell {
  position: relative;
  overflow: hidden;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(5, 22, 36, 0.8);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 0;
}
.brand {
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.4rem;
}
.main-nav a {
  color: var(--soft);
  text-decoration: none;
  font-weight: 500;
}
.hero-banner {
  position: relative;
  min-height: calc(100vh - 96px);
  display: grid;
  place-items: center;
  padding: 4rem 0 3.5rem;
}
.hero-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(193,145,91,.24), transparent 25%), linear-gradient(180deg, rgba(13,74,92,.82), rgba(11,58,74,.9));
  z-index: 0;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
  align-items: center;
}
.hero-copy {
  max-width: 640px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  text-transform: uppercase;
  font-size: .82rem;
  letter-spacing: .18em;
  color: var(--gold);
  margin-bottom: 1rem;
}
.hero-copy h1 {
  font-size: clamp(3rem, 5vw, 4.5rem);
  line-height: 0.96;
  margin: 0 0 1.2rem;
}
.hero-copy p {
  max-width: 580px;
  line-height: 1.9;
  color: rgba(247,243,234,.86);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.6rem;
  border-radius: 1.2rem;
  text-decoration: none;
  font-weight: 700;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), #d9b37d);
  color: var(--deep);
  box-shadow: 0 18px 36px rgba(193,145,91,.25);
}
.btn-outline {
  border: 1px solid rgba(255,255,255,.16);
  color: var(--white);
  background: rgba(255,255,255,.04);
}
.btn-secondary {
  background: rgba(255,255,255,.08);
  color: var(--white);
  border: 1px solid rgba(255,255,255,.12);
}
.btn-small {
  padding: .9rem 1.3rem;
}
.btn-lg {
  min-width: 190px;
}
.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(160px, 1fr));
  gap: 1rem;
}
.hero-facts div {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.08);
  padding: 1rem 1.25rem;
  border-radius: 1rem;
}
.hero-facts strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: .35rem;
}
.hero-card {
  border-radius: 2rem;
  padding: 2rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow);
}
.hero-card-header span {
  display: inline-block;
  color: var(--sand);
  font-size: .9rem;
  margin-bottom: .75rem;
}
.hero-card-header strong {
  display: block;
  font-size: 1.7rem;
  margin-bottom: 1rem;
}
.hero-card-body p {
  color: rgba(247,243,234,.9);
  line-height: 1.85;
  margin-bottom: 1.5rem;
}
.hero-card-meta {
  display: grid;
  gap: .9rem;
  margin-bottom: 1.6rem;
}
.hero-card-meta span {
  display: inline-flex;
  padding: .75rem 1rem;
  background: rgba(255,255,255,.06);
  border-radius: .95rem;
  font-size: .94rem;
}
.hero-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-card-footer .price {
  color: var(--sand);
}
.hero-card-footer strong {
  display: block;
  font-size: 1.1rem;
}
.section {
  padding: 4rem 0;
}
.section-header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-end;
  margin-bottom: 2rem;
}
.section-header h2 {
  margin: 0;
  font-size: clamp(2.1rem, 3vw, 3rem);
  line-height: 1.05;
}
.section-header p {
  max-width: 520px;
  margin: 0;
  color: rgba(247,243,234,.78);
}
.categories-grid,
.featured-grid,
.destinations-grid,
.restaurants-grid,
.experiences-grid,
.testimonials-grid,
.partners-grid {
  display: grid;
  gap: 1.5rem;
}
.categories-grid {
  grid-template-columns: repeat(4, minmax(180px, 1fr));
}
.category-card {
  padding: 1.7rem;
  border-radius: 1.6rem;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  display: grid;
  gap: 1rem;
  transition: transform .3s ease, border-color .3s ease;
}
.category-card:hover {
  transform: translateY(-4px);
  border-color: rgba(193,145,91,.4);
}
.category-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: rgba(193,145,91,.14);
  font-size: 1.4rem;
}
.category-card strong {
  font-size: 1.05rem;
}
.featured-grid {
  grid-template-columns: repeat(2, minmax(260px, 1fr));
}
.featured-card {
  border-radius: 2rem;
  overflow: hidden;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.featured-image {
  min-height: 260px;
  background-size: cover;
  background-position: center;
}
.featured-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.tag {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .78rem;
}
.featured-content h3 {
  margin: 1rem 0 .8rem;
}
.featured-content p {
  color: rgba(247,243,234,.86);
  line-height: 1.8;
}
.featured-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin: 1.4rem 0;
  color: var(--soft);
}
.destinations-grid {
  grid-template-columns: repeat(3, minmax(220px, 1fr));
}
.destination-card {
  min-height: 240px;
  border-radius: 2rem;
  padding: 2rem;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  box-shadow: var(--shadow);
  position: relative;
}
.destination-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(3,15,26,.82));
  border-radius: inherit;
}
.destination-card strong {
  position: relative;
  z-index: 1;
  font-size: 1.4rem;
}
.restaurants-grid {
  grid-template-columns: repeat(2, minmax(280px, 1fr));
}
.restaurant-card {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 1rem;
  border-radius: 1.8rem;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  overflow: hidden;
}
.restaurant-image {
  min-height: 210px;
  background-size: cover;
  background-position: center;
}
.restaurant-info {
  padding: 1.8rem;
  display: grid;
  gap: .9rem;
}
.restaurant-info h3 {
  margin: 0;
}
.restaurant-info span {
  color: var(--gold);
  font-weight: 700;
}
.restaurant-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  color: var(--muted);
  font-size: .95rem;
}
.experiences-grid {
  grid-template-columns: repeat(3, minmax(220px, 1fr));
}
.experience-card {
  padding: 2rem;
  border-radius: 1.8rem;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: var(--shadow);
  transition: transform .3s ease;
}
.experience-card:hover {
  transform: translateY(-4px);
}
.experience-card strong {
  display: block;
  margin-bottom: .8rem;
}
.testimonials-grid {
  grid-template-columns: repeat(3, minmax(240px, 1fr));
}
.testimonial-card {
  padding: 2rem;
  border-radius: 1.8rem;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow);
}
.testimonial-card p {
  line-height: 1.8;
  color: rgba(247,243,234,.9);
}
.testimonial-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.5rem;
  color: var(--soft);
  font-weight: 700;
}
.app-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}
.app-copy p {
  color: rgba(247,243,234,.86);
  max-width: 560px;
}
.app-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.8rem;
}
.app-mockup {
  display: flex;
  justify-content: center;
}
.mockup-screen {
  width: 280px;
  border-radius: 2.3rem;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  box-shadow: var(--shadow);
  padding: 1.4rem;
}
.mockup-header {
  display: flex;
  gap: .5rem;
  margin-bottom: 1.5rem;
}
.mockup-header span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
}
.mockup-content {
  display: grid;
  gap: 1rem;
}
.mockup-card {
  padding: 1.2rem;
  border-radius: 1.5rem;
  background: rgba(255,255,255,.08);
}
.mockup-card h3 {
  margin: 0 0 .4rem;
}
.partners-grid {
  grid-template-columns: repeat(5, minmax(120px, 1fr));
  align-items: center;
}
.partner-logo {
  border-radius: 1.2rem;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  padding: 1.5rem;
  text-align: center;
  color: var(--soft);
  font-weight: 700;
}
.newsletter-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: center;
  padding: 2.2rem 2.4rem;
  border-radius: 2rem;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: var(--shadow);
}
.newsletter-form {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.newsletter-form input {
  flex: 1;
  min-width: 220px;
  padding: 1.15rem 1.2rem;
  border-radius: 1.2rem;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.08);
  color: var(--white);
}
.newsletter-form input::placeholder {
  color: rgba(247,243,234,.55);
}
footer.site-footer {
  padding: 3rem 0 4rem;
  color: var(--muted);
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(200px, 1fr));
  gap: 2rem;
}
.site-footer a {
  display: block;
  color: rgba(255,255,255,.76);
  text-decoration: none;
  margin-top: .8rem;
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 1100px) {
  .hero-grid,
  .footer-grid,
  .app-grid,
  .featured-card,
  .restaurant-card {
    grid-template-columns: 1fr;
  }
  .featured-grid,
  .restaurants-grid,
  .destinations-grid,
  .experiences-grid,
  .testimonials-grid,
  .partners-grid,
  .categories-grid {
    grid-template-columns: 1fr;
  }
  .section-header {
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    align-items: stretch;
  }
  .main-nav {
    justify-content: center;
  }
  .hero-banner {
    padding-top: 3rem;
    min-height: auto;
  }
  .hero-copy h1 {
    font-size: 2.8rem;
  }
  .hero-facts {
    grid-template-columns: 1fr;
  }
  .hero-card {
    padding: 1.6rem;
  }
  .btn {
    width: 100%;
  }
  .newsletter-card,
  .app-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 520px) {
  .category-card,
  .experience-card,
  .testimonial-card,
  .partner-logo {
    border-radius: 1.4rem;
  }
}
