/* ============================================================
   PALM BESPOKE — Brand CSS
   Colors: Deep Slate Blue #304c55 | Muted Sage #83a0a8 | Imperial Gold #c5a666
           Terracotta #a35542 | Amber #d69e66 (accents)
   Font: Montserrat (Google Fonts)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
  --slate:  #304c55;
  --sage:   #83a0a8;
  --gold:   #c5a666;
  --terracotta: #a35542;
  --amber:  #d69e66;
  --white:  #ffffff;
  --off-white: #f7f5f0;
  --light-gray: #e8e4dd;
  --text-dark: #1a2e33;
  --text-mid:  #4a6570;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
}

img { max-width: 100%; height: auto; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── UTILITY ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 80px 0; }
.section--dark    { background: var(--slate); color: var(--white); }
.section--off-white { background: var(--off-white); }
.section--sage    { background: var(--sage); color: var(--white); }

.text-gold       { color: var(--gold); }
.text-sage       { color: var(--sage); }
.text-slate      { color: var(--slate); }
.text-terracotta { color: var(--terracotta); }
.text-amber      { color: var(--amber); }
.text-center     { text-align: center; }

.label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}

h1 { font-size: clamp(32px, 5vw, 60px); font-weight: 700; line-height: 1.15; }
h2 { font-size: clamp(26px, 3.5vw, 42px); font-weight: 600; line-height: 1.25; }
h3 { font-size: clamp(20px, 2.5vw, 28px); font-weight: 600; line-height: 1.3; }
h4 { font-size: 18px; font-weight: 600; }
h5 { font-size: 13px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; }
p  { font-size: 16px; font-weight: 400; color: var(--text-mid); line-height: 1.75; }

.section--dark p, .section--sage p { color: rgba(255,255,255,0.8); }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
}
.btn-gold:hover { background: #b8945a; color: var(--white); }

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

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

.btn-slate {
  background: var(--slate);
  color: var(--white);
}
.btn-slate:hover { background: var(--text-dark); }

.btn-terracotta {
  background: var(--terracotta);
  color: var(--white);
}
.btn-terracotta:hover { background: #8a4536; color: var(--white); }

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

.badge-amber {
  display: inline-block;
  background: var(--amber);
  color: var(--text-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 2px;
}

/* ── NAVIGATION ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(48, 76, 85, 0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo img { height: 36px; width: auto; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__links a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color 0.2s;
}
.nav__links a:hover,
.nav__links a.active { color: var(--gold); }

/* dropdown */
.nav__dropdown { position: relative; }
.nav__dropdown-toggle {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}
.nav__dropdown-toggle::after {
  content: '▾';
  font-size: 10px;
}
.nav__dropdown:hover .nav__dropdown-toggle { color: var(--gold); }

.nav__dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--slate);
  min-width: 200px;
  padding: 8px 0;
  border-top: 2px solid var(--gold);
}
.nav__dropdown:hover .nav__dropdown-menu { display: block; }
.nav__dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 12px;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.85);
}
.nav__dropdown-menu a:hover { color: var(--gold); background: rgba(255,255,255,0.05); }

.nav__contact-btn {
  background: var(--gold);
  color: var(--white);
  padding: 10px 22px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.2s;
}
.nav__contact-btn:hover { background: #b8945a; color: var(--white); }

.nav__hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

/* Mobile nav */
.nav__mobile {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0; bottom: 0;
  background: var(--slate);
  z-index: 999;
  padding: 40px 32px;
  flex-direction: column;
  gap: 0;
  overflow-y: auto;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: color 0.2s;
}
.nav__mobile a:hover { color: var(--gold); }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--slate);
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(48,76,85,0.5) 0%, rgba(26,46,51,0.75) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  padding: 0 24px;
  color: var(--white);
}

.hero__content h1 { color: var(--white); margin-bottom: 24px; }
.hero__content p  { color: rgba(255,255,255,0.85); font-size: 18px; margin-bottom: 40px; max-width: 620px; margin-left: auto; margin-right: auto; }
.hero__cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Page hero (non-video) */
.page-hero {
  background: var(--slate);
  padding: 140px 0 80px;
  text-align: center;
  color: var(--white);
}
.page-hero h1 { color: var(--white); }
.page-hero p  { color: rgba(255,255,255,0.75); margin-top: 16px; max-width: 600px; margin-left: auto; margin-right: auto; }

/* ── PROMISE SECTION ── */
.promise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.promise-item {
  text-align: center;
}
.promise-item__icon {
  width: 64px; height: 64px;
  background: rgba(197,166,102,0.12);
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 24px;
}
.promise-item h4 { font-size: 14px; letter-spacing: 1px; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.promise-item p  { font-size: 14px; color: rgba(255,255,255,0.7); }

/* ── DESTINATION CARDS ── */
.destination-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.dest-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 4/3;
  cursor: pointer;
  background: var(--slate);
}
.dest-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.dest-card:hover img { transform: scale(1.06); }
.dest-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,46,51,0.88) 0%, rgba(26,46,51,0.1) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: var(--white);
}
.dest-card__flag { font-size: 22px; margin-bottom: 6px; }
.dest-card__name { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.dest-card__price { font-size: 13px; color: var(--gold); font-weight: 600; }
.dest-card__btn {
  margin-top: 12px;
  display: inline-block;
  padding: 8px 18px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  border-radius: 2px;
  transition: all 0.2s;
  align-self: flex-start;
}
.dest-card:hover .dest-card__btn {
  background: var(--gold);
  color: var(--white);
}

/* ── GALLERY GRID ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
  margin-top: 48px;
}
.gallery-grid img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 4px;
  transition: opacity 0.3s;
}
.gallery-grid img:hover { opacity: 0.85; cursor: zoom-in; }

/* ── TEAM ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 36px;
  margin-top: 48px;
}
.team-card { text-align: center; }
.team-card__img {
  width: 160px; height: 160px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
  border: 3px solid var(--gold);
}
.team-card__name { font-size: 16px; font-weight: 700; color: var(--slate); margin-bottom: 4px; }
.team-card__role { font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.team-card p { font-size: 14px; }

/* ── TESTIMONIALS ── */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 48px;
}
.testimonial-card {
  background: var(--white);
  border-radius: 4px;
  padding: 32px;
  border-left: 4px solid var(--gold);
  box-shadow: 0 4px 24px rgba(48,76,85,0.08);
}
.testimonial-card p { font-style: italic; font-size: 15px; margin-bottom: 20px; color: var(--text-mid); }
.testimonial-card__author { font-weight: 700; font-size: 14px; color: var(--slate); }
.testimonial-card__club { font-size: 12px; color: var(--sage); letter-spacing: 1px; }

/* ── CTA SECTION ── */
.cta-section {
  background: var(--slate);
  padding: 100px 0;
  text-align: center;
  color: var(--white);
}
.cta-section h2 { color: var(--white); margin-bottom: 16px; }
.cta-section p  { color: rgba(255,255,255,0.75); max-width: 540px; margin: 0 auto 40px; }

/* ── PACKAGE DETAIL ── */
.package-header {
  background: var(--slate);
  padding: 140px 0 60px;
  color: var(--white);
}
.package-header h1 { color: var(--white); }
.package-header .price-tag {
  display: inline-block;
  margin-top: 20px;
  background: var(--gold);
  color: var(--white);
  padding: 10px 28px;
  font-size: 22px;
  font-weight: 700;
  border-radius: 2px;
}

.package-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  padding: 80px 0;
}

.includes-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--light-gray);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text-mid);
}
.includes-list li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}

.package-sidebar {
  background: var(--off-white);
  border-radius: 4px;
  padding: 32px;
  height: fit-content;
}
.package-sidebar h4 { color: var(--slate); margin-bottom: 20px; }
.sidebar-price { font-size: 28px; font-weight: 700; color: var(--slate); }
.sidebar-price span { font-size: 14px; font-weight: 400; color: var(--text-mid); }

/* Itinerary */
.itinerary-day {
  border-left: 3px solid var(--gold);
  padding: 0 0 32px 24px;
  position: relative;
  margin-top: 24px;
}
.itinerary-day::before {
  content: '';
  position: absolute;
  left: -7px; top: 4px;
  width: 12px; height: 12px;
  background: var(--gold);
  border-radius: 50%;
}
.itinerary-day h5 { color: var(--slate); margin-bottom: 12px; }
.itinerary-day ul { list-style: disc; padding-left: 20px; }
.itinerary-day ul li { font-size: 15px; color: var(--text-mid); padding: 4px 0; }

/* ── IMAGE SLIDER ── */
.slider {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 40px;
}
.slider img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

/* ── CONTACT ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 80px 0;
}
.contact-info h5 { color: var(--gold); margin-bottom: 8px; font-size: 12px; letter-spacing: 2px; }
.contact-info p { font-size: 15px; margin-bottom: 28px; }
.contact-info a { color: var(--slate); font-weight: 600; }
.contact-info a:hover { color: var(--gold); }

/* ── FORM ── */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 8px;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  color: var(--text-dark);
  background: var(--white);
  border: 1.5px solid var(--light-gray);
  border-radius: 2px;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
  -webkit-appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-radio-group { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }
.form-radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  cursor: pointer;
  color: var(--text-mid);
}
.form-success {
  background: rgba(131,160,168,0.15);
  border: 1px solid var(--sage);
  color: var(--slate);
  padding: 16px 20px;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 600;
  display: none;
}
.form-success.show { display: block; }

/* Map */
.map-container {
  width: 100%;
  height: 300px;
  border-radius: 4px;
  overflow: hidden;
  margin-top: 32px;
}
.map-container iframe { width: 100%; height: 100%; border: none; }

/* ── EXPERIENCES ── */
.experience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 48px;
}
.experience-card {
  background: var(--off-white);
  border-radius: 4px;
  overflow: hidden;
}
.experience-card__img { aspect-ratio: 16/9; object-fit: cover; width: 100%; }
.experience-card__body { padding: 28px; }
.experience-card__body h3 { color: var(--slate); margin-bottom: 12px; }
.experience-card__body p { font-size: 15px; }

/* Membership tiers */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.tier-card {
  border: 1.5px solid var(--light-gray);
  border-radius: 4px;
  padding: 36px 28px;
  text-align: center;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.tier-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(197,166,102,0.15);
}
.tier-card.featured {
  background: var(--slate);
  border-color: var(--gold);
  color: var(--white);
}
.tier-card.featured p { color: rgba(255,255,255,0.75); }
.tier-card__name { font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.tier-card__price { font-size: 36px; font-weight: 700; color: var(--slate); margin-bottom: 4px; }
.tier-card.featured .tier-card__price { color: var(--white); }
.tier-card__period { font-size: 13px; color: var(--sage); margin-bottom: 24px; }
.tier-card__features { text-align: left; margin-bottom: 28px; }
.tier-card__features li { font-size: 14px; color: var(--text-mid); padding: 8px 0; border-bottom: 1px solid var(--light-gray); display: flex; align-items: center; gap: 8px; }
.tier-card.featured .tier-card__features li { color: rgba(255,255,255,0.8); border-color: rgba(255,255,255,0.1); }
.tier-card__features li::before { content: '✓'; color: var(--gold); font-weight: 700; }

/* ── FOOTER ── */
.footer {
  background: var(--text-dark);
  color: var(--white);
  padding: 64px 0 32px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer__logo img { height: 40px; margin-bottom: 20px; }
.footer__logo p { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.6; }

.footer__links h5 { color: var(--gold); margin-bottom: 20px; font-size: 11px; letter-spacing: 2px; }
.footer__links ul { column-count: 2; column-gap: 24px; }
.footer__links ul li { margin-bottom: 10px; break-inside: avoid; }
.footer__links ul li a { font-size: 14px; color: rgba(255,255,255,0.7); transition: color 0.2s; }
.footer__links ul li a:hover { color: var(--gold); }

.footer__newsletter h5 { color: var(--gold); margin-bottom: 8px; font-size: 11px; letter-spacing: 2px; }
.footer__newsletter p { font-size: 14px; color: rgba(255,255,255,0.6); margin-bottom: 16px; }
.newsletter-form { display: flex; gap: 8px; }
.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 2px;
  color: var(--white);
  outline: none;
}
.newsletter-form input:focus { border-color: var(--gold); }
.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-form button {
  padding: 12px 20px;
  background: var(--gold);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}
.newsletter-form button:hover { background: #b8945a; }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  flex-wrap: wrap;
  gap: 16px;
}
.footer__bottom p { font-size: 13px; color: rgba(255,255,255,0.45); }
.footer__social { display: flex; gap: 16px; }
.footer__social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  transition: all 0.2s;
}
.footer__social a:hover { background: var(--gold); color: var(--white); }

/* ── DIVIDERS & MISC ── */
.gold-divider {
  width: 48px; height: 3px;
  background: var(--gold);
  margin: 20px auto;
}
.gold-divider--left { margin-left: 0; }

.section-header { margin-bottom: 48px; }
.section-header.text-center .gold-divider { margin: 20px auto; }
.section-header.text-left  .gold-divider { margin: 20px 0; }

/* Partners strip */
.partners-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 48px;
  padding: 40px 0;
  border-top: 1px solid var(--light-gray);
}
.partners-strip img { height: 40px; width: auto; opacity: 0.6; filter: grayscale(100%); transition: all 0.3s; }
.partners-strip img:hover { opacity: 1; filter: none; }

/* ── BOOKING FORM (Qingdao) ── */
.booking-section { padding: 80px 0; }
.booking-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
}
.booking-step {
  display: none;
}
.booking-step.active { display: block; }
.booking-nav {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}
.payment-box {
  background: var(--off-white);
  border-radius: 4px;
  padding: 32px;
}
.payment-box h4 { color: var(--slate); margin-bottom: 16px; }
.payment-box p { font-size: 14px; margin-bottom: 12px; }
.payment-box .qr-code { width: 180px; margin: 16px auto; }
.bank-details { background: var(--white); border-radius: 4px; padding: 20px; margin-top: 16px; }
.bank-details p { font-size: 14px; font-weight: 600; color: var(--slate); margin-bottom: 4px; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .package-layout,
  .booking-layout { grid-template-columns: 1fr; }
  .package-sidebar { order: -1; }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav { padding: 0 20px; }
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .footer__top { grid-template-columns: 1fr; gap: 36px; }
  .footer__links ul { column-count: 2; column-gap: 24px; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .section { padding: 56px 0; }
  .hero { min-height: 90vh; }
  .page-hero { padding: 120px 0 60px; }
  .destination-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
  .tier-grid { grid-template-columns: 1fr 1fr; }
  .newsletter-form { flex-direction: column; }
}

@media (max-width: 480px) {
  .tier-grid { grid-template-columns: 1fr; }
  .hero__cta { flex-direction: column; align-items: center; }
  .footer__links ul { column-count: 1; }
}
