:root {
  --navy: #0B2545;
  --navy-2: #123363;
  --gold: #C9A24B;
  --cream: #FBF6EC;
  --cream-text: #E7D9BC;
  --white: #FFFFFF;
  --muted: #6B7A8F;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Raleway', sans-serif;
  color: var(--navy);
  background: var(--cream);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  margin: 0;
}

a { text-decoration: none; }

.section-label {
  display: block;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 10px;
}

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* HERO */
.hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 100%);
  color: var(--cream);
  text-align: center;
  padding: 90px 24px 80px;
}

.hero-logo {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold);
  margin: 0 auto 28px;
  display: block;
}

.hero h1 {
  font-size: clamp(38px, 6vw, 60px);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
}

.hero-tagline {
  font-size: 18px;
  color: var(--cream-text);
  max-width: 480px;
  margin: 0 auto 36px;
}

.btn-pill {
  display: inline-block;
  padding: 14px 34px;
  border-radius: 30px;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 15px;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
}

/* TRIPS */
.trips {
  padding: 90px 0;
  text-align: center;
}

.trips h2 {
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 600;
  margin-bottom: 50px;
}

.trip-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  text-align: left;
}

.trip-card {
  background: var(--white);
  border-radius: 8px;
  padding: 32px 28px;
  box-shadow: 0 12px 28px -18px rgba(11, 37, 69, 0.35);
  display: flex;
  flex-direction: column;
}

.trip-card.trip-wide {
  grid-column: 1 / -1;
  width: calc((100% - 28px) / 2);
  margin: 0 auto;
}

.trip-card .section-label { margin-bottom: 6px; }

.trip-card h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 10px;
}

.trip-date {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 8px;
}

.trip-price {
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
}

.trip-card .btn-navy,
.trip-card .btn-outline,
.trip-card .badge {
  margin-top: auto;
  align-self: flex-start;
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  padding: 12px 26px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 14px;
}

.badge {
  display: inline-block;
  background: var(--cream);
  color: var(--muted);
  border: 1px solid var(--muted);
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.03em;
}

.trip-card-past {
  background: #EDE8DE;
  border: 1px solid var(--muted);
  position: relative;
}

.past-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--muted);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 14px;
}

/* ABOUT */
.about {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 100%);
  color: var(--cream-text);
  padding: 90px 0;
}

.about .wrap {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 56px;
  align-items: center;
}

.about-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
  border: 3px solid var(--gold);
}

.about h2 {
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 600;
  color: var(--white);
  margin: 6px 0 18px;
}

.about p {
  font-size: 16px;
  max-width: 520px;
}

/* CONTACT */
.contact {
  padding: 90px 0;
  text-align: center;
}

.contact h2 {
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 600;
  margin-bottom: 50px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.contact-card {
  background: var(--white);
  border-radius: 14px;
  padding: 28px 16px;
  box-shadow: 0 12px 28px -18px rgba(11, 37, 69, 0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px -16px rgba(11, 37, 69, 0.45);
}

.contact-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.contact-icon svg { width: 26px; height: 26px; }

.icon-whatsapp { background: #25D366; }
.icon-instagram { background: linear-gradient(135deg, #feda75, #d62976, #4f5bd5); }
.icon-facebook { background: #1877F2; }
.icon-email { background: var(--navy); }

.contact-card strong {
  font-size: 15px;
  color: var(--navy);
}

.contact-card span {
  font-size: 13.5px;
  color: var(--muted);
}

/* FOOTER */
.landing-footer {
  background: var(--navy);
  color: var(--cream-text);
  text-align: center;
  padding: 26px 20px;
  font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 760px) {
  .trip-grid { grid-template-columns: 1fr; }
  .trip-card.trip-wide { width: 100%; }
  .about .wrap { grid-template-columns: 1fr; text-align: center; }
  .about-photo { max-width: 280px; margin: 0 auto; }
  .about p { margin-left: auto; margin-right: auto; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .contact-grid { grid-template-columns: 1fr; }
}
