:root {
  --brand: #30a9d6;
  --brand-dark: #2695be;
  --ink: #111;
  --muted: #666;
  --line: #e8e8e8;
  --bg: #fff;
  --footer: #1a1a1a;
  --font-display: "Montserrat", sans-serif;
  --font-body: "Open Sans", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}
a { color: var(--brand); text-decoration: none; }
a:hover { color: var(--brand-dark); }
img { max-width: 100%; height: auto; display: block; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-display); line-height: 1.25; margin: 0 0 .6rem; }

.container { width: min(1140px, calc(100% - 2rem)); margin-inline: auto; }

/* Header */
.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 100;
  transition: background .25s ease, box-shadow .25s ease;
}
.site-header.is-sticky {
  position: fixed;
  background: rgba(17,17,17,.92);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 16px rgba(0,0,0,.2);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
}
.logo img { height: 40px; width: auto; }
.main-nav ul {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}
.main-nav a {
  color: #fff;
  font-family: var(--font-display);
  font-size: .92rem;
  font-weight: 600;
  letter-spacing: .02em;
  position: relative;
  padding: .2rem 0;
}
.main-nav li.active > a::before { content: "[ "; }
.main-nav li.active > a::after {
  content: " ]";
}
.main-nav li.active > a {
  box-shadow: inset 0 -2px 0 var(--brand);
}
.nav-cta a {
  border: 1px solid #fff;
  padding: .45rem .9rem !important;
  border-radius: 2px;
}
.nav-cta a:hover { background: #fff; color: var(--ink); }
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  width: 42px;
  height: 42px;
  padding: 10px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: #fff;
  margin: 6px 0;
}

/* Hero */
.hero {
  min-height: 92vh;
  background: #222 center/cover no-repeat;
  color: #fff;
  display: flex;
  align-items: center;
  position: relative;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.55), rgba(0,0,0,.2) 55%, rgba(0,0,0,.15));
}
.hero-content { position: relative; z-index: 1; max-width: 560px; padding: 7rem 0 4rem; }
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800;
  margin-bottom: .35rem;
}
.hero h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 1rem;
}
.hero p { font-size: 1.05rem; opacity: .95; margin-bottom: 1.5rem; }
.btn {
  display: inline-block;
  border: 1px solid transparent;
  padding: .75rem 1.4rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .03em;
  cursor: pointer;
  transition: .2s ease;
}
.btn-outline {
  border-color: #fff;
  color: #fff;
  background: transparent;
}
.btn-outline:hover { background: #fff; color: var(--ink); }
.btn-primary {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}
.btn-primary:hover { background: var(--brand-dark); border-color: var(--brand-dark); color: #fff; }
.btn-ghost {
  border-color: var(--ink);
  color: var(--ink);
  background: transparent;
}
.btn-ghost:hover { background: var(--ink); color: #fff; }

/* Page hero (inner) */
.page-hero {
  min-height: 320px;
  background: #222 center/cover no-repeat;
  color: #fff;
  display: flex;
  align-items: flex-end;
  position: relative;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.4);
}
.page-hero-inner {
  position: relative;
  z-index: 1;
  width: min(1140px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 8rem 0 2.5rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-end;
}
.breadcrumb { font-size: .9rem; opacity: .9; }
.breadcrumb a { color: #fff; }

/* Sections */
.section { padding: 4.5rem 0; }
.section-title {
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: .04em;
  margin-bottom: .5rem;
}
.section-wave {
  width: 48px;
  height: 8px;
  margin: .6rem auto 1rem;
  background:
    radial-gradient(circle at 6px 4px, var(--muted) 2px, transparent 2.5px) 0 0 / 12px 8px repeat-x;
  opacity: .55;
}
.section-lead {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.5rem;
  color: var(--muted);
}

/* Cards / grids */
.package-grid, .location-grid, .team-grid, .related-grid {
  display: grid;
  gap: 1.5rem;
}
.package-grid { grid-template-columns: repeat(3, 1fr); }
.location-grid { grid-template-columns: repeat(3, 1fr); }
.team-grid { grid-template-columns: repeat(4, 1fr); }
.related-grid { grid-template-columns: repeat(3, 1fr); }

.package-card, .team-card {
  background: #fff;
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.package-card:hover, .team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
}
.package-card .thumb {
  aspect-ratio: 370 / 246;
  background: #ddd center/cover no-repeat;
  position: relative;
}
.badge-featured {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--brand);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: .25rem .55rem;
}
.package-card .body, .team-card .body { padding: 1.1rem 1.15rem 1.3rem; }
.package-card h3 { font-size: 1.1rem; }
.package-card h3 a { color: var(--ink); }
.package-card h3 a:hover { color: var(--brand); }
.package-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: .75rem 0 1rem;
  color: var(--muted);
  font-size: .9rem;
}
.price { color: var(--brand); font-weight: 700; font-family: var(--font-display); }

.location-card {
  position: relative;
  min-height: 280px;
  background: #333 center/cover no-repeat;
  color: #fff;
  overflow: hidden;
}
.location-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0,0,0,.75));
}
.location-card .content {
  position: absolute;
  inset: auto 0 0;
  padding: 1.25rem;
  z-index: 1;
}
.location-card h4 { margin-bottom: .35rem; }
.location-card .btn { margin-top: .7rem; padding: .45rem .9rem; font-size: .8rem; }

.inspirations {
  background: #f7f9fb;
}
.inspiration-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: .75rem;
}
.inspiration-item {
  aspect-ratio: 1;
  background: #ccc center/cover no-repeat;
  position: relative;
  color: #fff;
}
.inspiration-item span {
  position: absolute;
  inset: auto 0 0;
  padding: .8rem;
  background: linear-gradient(transparent, rgba(0,0,0,.65));
  font-family: var(--font-display);
  font-weight: 700;
}

.video-band {
  min-height: 360px;
  background: #111 center/cover no-repeat;
  color: #fff;
  display: grid;
  place-items: center;
  text-align: center;
  position: relative;
}
.video-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.45);
}
.video-band .inner { position: relative; z-index: 1; padding: 3rem 1rem; }

.partners {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  align-items: center;
}
.partners img { height: 48px; width: auto; opacity: .75; filter: grayscale(1); }
.partners img:hover { opacity: 1; filter: none; }

.newsletter {
  background: var(--brand);
  color: #fff;
  text-align: center;
}
.newsletter h3 { text-transform: uppercase; letter-spacing: .04em; }
.newsletter-form {
  display: flex;
  gap: .5rem;
  max-width: 480px;
  margin: 1.25rem auto 0;
}
.newsletter-form input {
  flex: 1;
  border: 0;
  padding: .85rem 1rem;
}
.newsletter-form button {
  border: 0;
  background: #111;
  color: #fff;
  padding: 0 1.2rem;
  cursor: pointer;
}

/* About */
.about-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}
.about-cols h5 { font-size: 1.05rem; margin-bottom: .75rem; }
.about-cols p { color: var(--muted); font-size: .95rem; }
.about-image {
  margin-top: 3rem;
  min-height: 360px;
  background: #ddd center/cover no-repeat;
}

/* Package detail */
.detail-layout {
  display: grid;
  grid-template-columns: 1.6fr .9fr;
  gap: 2rem;
  align-items: start;
}
.detail-media {
  aspect-ratio: 16 / 10;
  background: #ddd center/cover no-repeat;
  margin-bottom: 1.5rem;
}
.detail-card {
  border: 1px solid var(--line);
  padding: 1.4rem;
  position: sticky;
  top: 90px;
}
.detail-card .price-lg {
  font-size: 1.8rem;
  color: var(--brand);
  font-family: var(--font-display);
  font-weight: 800;
  margin-bottom: 1rem;
}
.itinerary dt {
  font-family: var(--font-display);
  font-weight: 700;
  margin-top: 1rem;
}
.itinerary dd { margin: .35rem 0 0; color: var(--muted); }
.included { padding-left: 1.1rem; }
.included li { margin: .35rem 0; }

/* Forms */
.form-grid { display: grid; gap: 1rem; }
.form-grid.two { grid-template-columns: 1fr 1fr; }
label { display: block; font-weight: 600; font-size: .88rem; margin-bottom: .35rem; }
input, textarea, select {
  width: 100%;
  border: 1px solid #d7d7d7;
  padding: .8rem .9rem;
  font: inherit;
  background: #fff;
}
textarea { min-height: 140px; resize: vertical; }
.form-actions { margin-top: .5rem; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
}
.info-boxes {
  display: grid;
  gap: 1rem;
}
.info-box {
  border: 1px solid var(--line);
  padding: 1.1rem 1.2rem;
}
.info-box h5 { margin-bottom: .35rem; }

/* Flash */
.flash-wrap { padding: 1rem 0 0; position: relative; z-index: 50; }
.flash {
  padding: .9rem 1rem;
  border-radius: 2px;
  font-weight: 600;
}
.flash-success { background: #e7f8ef; color: #146c43; }
.flash-error { background: #fdebec; color: #b02a37; }

/* Footer */
.site-footer {
  background: var(--footer);
  color: #cfcfcf;
  padding-top: 3.5rem;
}
.site-footer a { color: #cfcfcf; }
.site-footer a:hover { color: #fff; }
.site-footer h5 {
  color: #fff;
  text-transform: uppercase;
  font-size: .95rem;
  letter-spacing: .04em;
  margin-bottom: 1rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
}
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin: .4rem 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.1rem 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  font-size: .9rem;
}
.footer-menu {
  display: flex;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Admin */
.admin-wrap { padding: 6rem 0 3rem; }
.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .92rem;
}
.admin-table th, .admin-table td {
  border-bottom: 1px solid var(--line);
  padding: .7rem .5rem;
  text-align: left;
  vertical-align: top;
}
.admin-table th { font-family: var(--font-display); }

@media (max-width: 991px) {
  .nav-toggle { display: block; }
  .main-nav {
    display: none;
    position: absolute;
    inset: 78px 0 auto;
    background: rgba(17,17,17,.97);
    padding: 1rem 1.25rem 1.5rem;
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .package-grid, .location-grid, .related-grid { grid-template-columns: 1fr 1fr; }
  .team-grid, .inspiration-strip { grid-template-columns: 1fr 1fr; }
  .about-cols, .detail-layout, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; }
}
@media (max-width: 640px) {
  .package-grid, .location-grid, .related-grid, .team-grid, .inspiration-strip, .form-grid.two {
    grid-template-columns: 1fr;
  }
  .newsletter-form { flex-direction: column; }
  .page-hero-inner { flex-direction: column; align-items: flex-start; }
}
