:root {
  --bg: #f7f8fc;
  --surface: #ffffff;
  --ink: #1f2635;
  --muted: #5d677f;
  --line: #dfe4f0;
  --blue: #3037ae;
  --teal: #2f9f97;
  --sky: #34b6e8;
  --yellow: #efcb03;
  --amber: #f6ad2f;
  --orange: #ff6c2d;
  --red: #d51625;
  --primary: #3037ae;
  --shadow-lg: 0 18px 45px rgba(27, 38, 64, 0.12);
  --shadow-md: 0 10px 30px rgba(27, 38, 64, 0.1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% -10%, rgba(48, 55, 174, 0.1) 0%, transparent 35%),
    radial-gradient(circle at 90% 5%, rgba(255, 108, 45, 0.08) 0%, transparent 30%),
    var(--bg);
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.container {
  width: min(1140px, 92vw);
  margin-inline: auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 60;
  backdrop-filter: blur(12px);
  background: rgba(247, 248, 252, 0.78);
  border-bottom: 1px solid rgba(223, 228, 240, 0.9);
}

.nav {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  width: 168px;
  height: auto;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 26px;
  margin: 0;
  padding: 0;
}

.mobile-nav-links {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 700;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-nav {
  padding: 10px 18px;
  font-size: 0.9rem;
  background: var(--primary);
  color: #fff;
}

.hero {
  padding: 76px 0 56px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: center;
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.74rem;
  color: var(--blue);
  font-weight: 800;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  line-height: 1.2;
}

h1,
h2 {
  font-family: "Fraunces", serif;
}

h1 {
  font-size: clamp(2rem, 4.7vw, 3.6rem);
  margin-top: 8px;
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2.4rem);
}

h3 {
  font-size: 1.28rem;
}

h4 {
  font-size: 1.02rem;
}

p {
  line-height: 1.72;
}

.hero-copy > p {
  max-width: 56ch;
  color: var(--muted);
}

.hero-note {
  display: inline-block;
  margin-top: 6px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 0.86rem;
}

.hero-actions {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn-primary,
.btn-outline {
  padding: 12px 22px;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  border: 1px solid var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.7);
}

.hero-media {
  border-radius: 24px;
  overflow: hidden;
  height: clamp(380px, 36vw, 520px);
  box-shadow: var(--shadow-lg);
  transform: rotate(-1deg);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section {
  padding: 72px 0;
}

.section-head {
  max-width: 74ch;
  margin-bottom: 30px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.card {
  border-radius: 20px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.card img {
  height: 220px;
}

.card-body {
  padding: 18px 18px 20px;
}

.card-body p {
  color: var(--muted);
  margin: 10px 0 0;
}

.card-link {
  margin-top: 14px;
  display: inline-block;
  text-decoration: none;
  font-weight: 800;
  color: var(--blue);
}

.detail-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 0% 0%, rgba(52, 182, 232, 0.08) 0%, transparent 28%),
    radial-gradient(circle at 100% 100%, rgba(239, 203, 3, 0.09) 0%, transparent 35%),
    #fff;
}

.detail-switch {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.switch-btn {
  cursor: pointer;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 800;
  color: var(--ink);
  background: #fff;
}

.switch-btn.active {
  border-color: transparent;
  color: #fff;
  background: var(--primary);
}

.trip-panel {
  display: none;
  padding: 24px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-lg);
}

.trip-panel.active {
  display: block;
}

.panel-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
}

.panel-sub {
  margin: 8px 0 0;
  color: var(--muted);
}

.tag-row {
  margin-top: 12px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tag-row span {
  display: inline-flex;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(48, 55, 174, 0.06);
  color: var(--blue);
  font-size: 0.84rem;
  font-weight: 700;
  padding: 6px 11px;
}

.route-strip {
  margin-top: 20px;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(200px, 1fr);
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 6px;
}

.route-strip span {
  border-radius: 14px;
  border: 1px dashed rgba(48, 55, 174, 0.32);
  background: rgba(255, 255, 255, 0.95);
  padding: 11px 12px;
  font-size: 0.9rem;
  font-weight: 700;
}

.timeline {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 10px;
}

.day-card {
  border: 1px solid var(--line);
  border-top: 5px solid var(--sky);
  border-radius: 16px;
  padding: 14px 14px 16px;
  background: #fff;
}

.day-card:nth-child(2) {
  border-top-color: var(--teal);
}

.day-card:nth-child(3) {
  border-top-color: var(--yellow);
}

.day-card:nth-child(4) {
  border-top-color: var(--orange);
}

.day-card:nth-child(5) {
  border-top-color: var(--red);
}

.day-card:nth-child(6) {
  border-top-color: var(--blue);
}

.day-no {
  margin: 0 0 6px;
  font-size: 0.76rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--blue);
}

.day-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.price-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.price-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px;
  background: #fff;
}

.price-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.83rem;
}

.price-item strong {
  margin-top: 4px;
  display: block;
  font-size: 1.13rem;
  line-height: 1.2;
}

.inclusion-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.inclusion-box {
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(52, 182, 232, 0.08);
  padding: 14px;
}

.inclusion-box.soft {
  background: rgba(239, 203, 3, 0.12);
}

.inclusion-box h4 {
  margin-bottom: 8px;
}

.inclusion-box ul {
  margin: 0;
  padding-left: 18px;
}

.inclusion-box li {
  color: var(--muted);
  margin-bottom: 6px;
}

.panel-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.section-alt {
  background:
    linear-gradient(180deg, rgba(48, 55, 174, 0.05), rgba(255, 108, 45, 0.03)),
    #fff;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.96fr 1.04fr;
  gap: 26px;
  align-items: center;
}

.about-media {
  /* min-height: 390px; */
  height: clamp(380px, 36vw, 520px);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}


.about-copy p {
  color: var(--muted);
}

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

.quote {
  margin: 0;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 16px;
  color: var(--muted);
  box-shadow: var(--shadow-md);
}

.person {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.person img {
  width: 54px;
  height: 54px;
  border-radius: 999px;
  border: 2px solid #fff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.person-name {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.1;
}

.person-city {
  margin: 2px 0 0;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.1;
}

.floating-wa {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 45;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 12px 18px;
  text-decoration: none;
  font-weight: 800;
  color: #fff;
  background: #17a34a;
  box-shadow: var(--shadow-lg);
}

.floating-wa svg {
  width: 18px;
  height: 18px;
}

.social-section {
  border-top: 1px solid var(--line);
  padding-top: 42px;
  padding-bottom: 42px;
  background:
    radial-gradient(circle at 90% 10%, rgba(48, 55, 174, 0.08) 0%, transparent 35%),
    #fff;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.social-card {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  border-radius: 14px;
  padding: 12px;
  border: 1px solid var(--line);
  box-shadow: 0 4px 16px rgba(27, 38, 64, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.social-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.social-icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.social-icon svg {
  width: 18px;
  height: 18px;
}

.social-copy {
  min-width: 0;
}

.social-card p,
.social-card h3 {
  margin: 0;
}

.social-card h3 {
  margin-top: 2px;
  margin-bottom: 2px;
  font-size: 0.95rem;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.social-card span {
  margin-top: 2px;
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 700;
}

.social-label {
  font-size: 0.68rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-weight: 800;
}

.social-card.wa {
  background: rgba(23, 163, 74, 0.08);
  border-color: rgba(23, 163, 74, 0.28);
  color: #114d2a;
}

.social-card.wa .social-icon {
  background: rgba(23, 163, 74, 0.2);
}

.social-card.wa span {
  color: #127035;
}

.social-card.ig {
  background: rgba(48, 55, 174, 0.08);
  border-color: rgba(48, 55, 174, 0.3);
  color: #222a91;
}

.social-card.ig .social-icon {
  background: rgba(48, 55, 174, 0.2);
}

.social-card.ig span {
  color: #3037ae;
}

.social-card.mail {
  background: rgba(255, 108, 45, 0.08);
  border-color: rgba(255, 108, 45, 0.32);
  color: #8a3817;
}

.social-card.mail .social-icon {
  background: rgba(255, 108, 45, 0.2);
}

.social-card.mail span {
  color: #a44720;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 22px 0 42px;
}

.footer p {
  margin: 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.92rem;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1050px) {
  .hero-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .hero-media {
    height: 360px;
    transform: none;
  }

  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .price-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quotes {
    grid-template-columns: 1fr;
  }

  .social-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 740px) {
  .header {
    padding-top: 3px;
    padding-bottom: 5px;
  }

  .nav {
    min-height: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
  }

  .brand img {
    width: 96px;
  }

  .nav-links {
    display: none;
  }

  .btn-nav {
    display: none;
  }

  .mobile-nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: -2px;
    overflow: hidden;
    max-height: 48px;
    opacity: 1;
    transform: translateY(0);
    transition: max-height 220ms ease, opacity 180ms ease, transform 220ms ease;
  }

  .mobile-nav-links a {
    text-decoration: none;
    color: var(--ink);
    font-size: 0.9rem;
    font-weight: 700;
  }

  .mobile-nav-hidden .mobile-nav-links {
    max-height: 0;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
  }

  .hero {
    padding-top: 20px;
    padding-bottom: 36px;
  }

  .section {
    padding: 58px 0;
  }

  .cards,
  .inclusion-grid,
  .timeline,
  .price-grid,
  .social-grid {
    grid-template-columns: 1fr;
  }

  .panel-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .trip-panel {
    padding: 18px;
  }

  .floating-wa {
    right: 14px;
    bottom: 14px;
    padding: 10px 13px;
  }
}
