@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,400;0,600;0,700;0,800;1,400;1,600&family=Barlow+Condensed:wght@700;800&display=swap');

:root {
  --orange: #F28C28;
  --orange-dark: #d4751a;
  --dark: #1a1a1a;
  --cream: #f5f0e8;
  --white: #ffffff;
  --muted: #6b6258;
  --border: rgba(0,0,0,0.10);
  --max: 1120px;
  --radius: 20px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', Arial, sans-serif;
  background: var(--cream);
  color: var(--dark);
  line-height: 1.6;
  font-size: 17px;
}

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

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

/* ── NAV ── */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245,240,232,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav {
  max-width: var(--max);
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 64px;
  width: auto;
  display: block;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 28px;
  font-size: 15px;
  font-weight: 600;
  align-items: center;
}

.nav-links a { transition: color 0.2s; }
.nav-links a:hover { color: var(--orange); }

.nav-links .nav-cta {
  background: var(--orange);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: background 0.2s, transform 0.2s;
}

.nav-links .nav-cta:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
  color: var(--white);
}

/* hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--cream);
  border-top: 1px solid var(--border);
  padding: 12px 32px 20px;
}

.mobile-menu a {
  padding: 12px 0;
  font-size: 16px;
  font-weight: 600;
  border-bottom: 1px solid var(--border);
}

.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a.nav-cta {
  margin-top: 12px;
  text-align: center;
  background: var(--orange);
  color: var(--white);
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  cursor: pointer;
  border: none;
  font-family: 'Barlow', sans-serif;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(242,140,40,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--dark);
}

.btn-outline:hover {
  background: var(--dark);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--dark);
  transform: translateY(-2px);
}

/* ── LAYOUT ── */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 80px 32px;
}

.section-sm {
  max-width: var(--max);
  margin: 0 auto;
  padding: 48px 32px;
}

/* ── SECTION HEADERS ── */
.section-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--orange);
  margin-bottom: 10px;
}

.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.section-title span { color: var(--orange); }

.section-sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 640px;
  font-style: italic;
}

.orange-line {
  width: 48px;
  height: 3px;
  background: var(--orange);
  margin: 16px 0 24px;
  border-radius: 2px;
}

/* ── HERO ── */
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

/* ── CARDS ── */
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
}

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

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}

/* ── DESTINATION CARDS ── */
.dest-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-decoration: none;
  transition: transform 0.3s;
}

.dest-card:hover { transform: translateY(-4px); }

.dest-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.dest-card:hover img { transform: scale(1.04); }

.dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 60%);
}

.dest-info {
  position: relative;
  padding: 24px;
  color: var(--white);
}

.dest-info .days {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--orange);
  margin-bottom: 4px;
}

.dest-info h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 30px;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 6px;
}

.dest-info p { font-size: 14px; opacity: 0.85; }

/* ── PRICE BOX ── */
.price-box {
  background: var(--dark);
  color: var(--white);
  border-radius: var(--radius);
  padding: 48px;
}

.price-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

.price-map {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 320px;
}

.price-big {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 72px;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}

/* ── CHECKLIST ── */
.check-list {
  list-style: none;
  display: grid;
  gap: 10px;
}

.check-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 16px;
}

.check-list li::before {
  content: '✓';
  color: var(--orange);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── DAY TIMELINE ── */
.day-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 0 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}

.day-item:last-child { border-bottom: none; }

.day-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  opacity: 0.25;
  text-align: right;
  padding-top: 2px;
}

.day-content h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.day-content p { color: var(--muted); font-size: 16px; }

/* ── FORM ── */
.form-group { margin-bottom: 16px; }

.form-group label {
  display: block;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid rgba(0,0,0,0.15);
  border-radius: 12px;
  font: inherit;
  font-size: 16px;
  background: var(--white);
  color: var(--dark);
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--orange);
}

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

/* ── FOOTER ── */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  padding: 48px 32px 32px;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.footer-logo span { color: var(--orange); }

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--white);
  margin-bottom: 14px;
}

.footer-col a {
  display: block;
  font-size: 15px;
  margin-bottom: 8px;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--orange); }

.footer-bottom {
  max-width: var(--max);
  margin: 24px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

/* ── HIGHLIGHT BANNER ── */
.highlight-bar {
  background: var(--orange);
  color: var(--white);
  text-align: center;
  padding: 14px 32px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.5px;
}

/* ── PAGE HERO ── */
.page-hero {
  position: relative;
  height: 480px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.page-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.15) 60%);
}

.page-hero-content {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: 48px 32px;
  width: 100%;
  color: var(--white);
}

.page-hero-content .section-label { color: var(--orange); }

.page-hero-content h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(48px, 7vw, 80px);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1;
  color: var(--white);
}

.page-hero-content h1 span { color: var(--orange); }

/* ── BREADCRUMB ── */
.breadcrumb {
  max-width: var(--max);
  margin: 0 auto;
  padding: 16px 32px;
  font-size: 13px;
  color: var(--muted);
  display: flex;
  gap: 8px;
  align-items: center;
}

.breadcrumb a { color: var(--muted); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb span { color: var(--orange); }

/* ── QUOTE BLOCK ── */
.quote-block {
  border-left: 4px solid var(--orange);
  padding: 16px 24px;
  margin: 24px 0;
  font-size: 19px;
  font-style: italic;
  color: var(--muted);
}

/* ── TAGS ── */
.tag {
  display: inline-block;
  background: rgba(242,140,40,0.12);
  color: var(--orange-dark);
  font-size: 13px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 4px;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr 1fr; gap: 28px; }

  .section { padding: 56px 20px; }
  .section-sm { padding: 32px 20px; }
  .nav { padding: 16px 20px; }

  .price-box { padding: 28px; }
  .price-big { font-size: 52px; }
  .page-hero { height: 360px; }

  .price-grid { grid-template-columns: 1fr; gap: 32px; }
  .price-map { order: 2; min-width: 0; }
  .price-map img { max-width: 280px; }
}

@media (max-width: 600px) {
  .footer-inner { grid-template-columns: 1fr; }
  .breadcrumb { padding: 12px 20px; }
}
