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

:root {
  --amber: #d97706;
  --amber-light: #fef3c7;
  --amber-dark: #b45309;
  --stone-50: #fafaf9;
  --stone-100: #f5f5f4;
  --stone-200: #e7e5e4;
  --stone-300: #d6d3d1;
  --stone-400: #a8a29e;
  --stone-500: #78716c;
  --stone-600: #57534e;
  --stone-700: #44403c;
  --stone-800: #292524;
  --stone-900: #1c1917;
  --white: #ffffff;
  --radius: 12px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--stone-50);
  color: var(--stone-900);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ─── HEADER ─── */
header {
  background: var(--white);
  border-bottom: 1px solid var(--stone-200);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-icon {
  width: 36px; height: 36px;
  background: var(--amber);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.logo-icon svg { width: 20px; height: 20px; color: white; }
.logo-text { font-size: 1.2rem; font-weight: 800; color: var(--stone-900); }
.logo-text span { color: var(--amber); }
nav { display: flex; align-items: center; gap: 28px; }
nav a { font-size: 0.875rem; font-weight: 500; color: var(--stone-600); transition: color 0.15s; }
nav a:hover, nav a.active { color: var(--amber); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
.mobile-nav {
  display: none; flex-direction: column; gap: 4px;
  border-top: 1px solid var(--stone-100); padding: 12px 0;
}
.mobile-nav a {
  display: block; padding: 8px 12px; border-radius: 8px;
  font-size: 0.875rem; font-weight: 500; color: var(--stone-600);
  transition: background 0.15s, color 0.15s;
}
.mobile-nav a:hover { background: var(--amber-light); color: var(--amber-dark); }

/* ─── PAGE SYSTEM ─── */
.page { display: none; }
.page.active { display: block; }

/* ─── HERO ─── */
.hero {
  position: relative;
  background: linear-gradient(135deg, #292524 0%, #44403c 50%, #1c1917 100%);
  color: white; padding: 80px 24px; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1449824913935-59a10b8d2000?w=1600&h=700&fit=crop');
  background-size: cover; background-position: center; opacity: 0.10;
}
.hero-content { position: relative; max-width: 1200px; margin: 0 auto; }
.hero-text { text-align: center; margin-bottom: 40px; }
.hero h1 { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 800; line-height: 1.15; margin-bottom: 16px; }
.hero p { font-size: clamp(1rem, 2vw, 1.2rem); color: #d6d3d1; max-width: 600px; margin: 0 auto; }
.widget-container { max-width: 900px; margin: 0 auto; }

/* ─── SUPPLIERS ─── */
.suppliers { background: white; border-bottom: 1px solid var(--stone-100); padding: 40px 24px; }
.suppliers-inner { max-width: 1200px; margin: 0 auto; }
.suppliers-label {
  text-align: center; font-size: 0.7rem; font-weight: 600;
  color: var(--stone-400); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 28px;
}
.supplier-logos { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 32px; }
.supplier-logos img { height: 28px; object-fit: contain; filter: grayscale(100%); opacity: 0.55; transition: filter 0.2s, opacity 0.2s; }
.supplier-logos img:hover { filter: none; opacity: 1; }

/* ─── SECTIONS ─── */
.section { padding: 80px 24px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-title { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; text-align: center; color: var(--stone-900); margin-bottom: 56px; }
.section-alt { background: var(--stone-50); }
.section-white { background: white; }

/* ─── STEPS ─── */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 32px; }
.step { text-align: center; padding: 0 16px; }
.step-num {
  width: 52px; height: 52px; background: var(--amber); color: white;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; font-weight: 800; margin: 0 auto 20px;
}
.step h3 { font-size: 1rem; font-weight: 600; color: var(--stone-900); margin-bottom: 10px; }
.step p { font-size: 0.875rem; color: var(--stone-500); line-height: 1.7; }

/* ─── FEATURES ─── */
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.feature-card {
  background: white; border: 1px solid var(--stone-100); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow-sm); transition: box-shadow 0.2s;
}
.feature-card:hover { box-shadow: var(--shadow-md); }
.feature-icon {
  width: 48px; height: 48px; background: #fef3c7; border-radius: 10px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.feature-icon svg { width: 24px; height: 24px; color: var(--amber); }
.feature-card h3 { font-size: 0.95rem; font-weight: 600; color: var(--stone-900); margin-bottom: 8px; }
.feature-card p { font-size: 0.875rem; color: var(--stone-500); line-height: 1.7; }

/* ─── DESTINATIONS ─── */
.destinations { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
.dest-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); cursor: pointer; transition: box-shadow 0.2s; display: block;
}
.dest-card:hover { box-shadow: var(--shadow-lg); }
.dest-card img { width: 100%; height: 220px; object-fit: cover; transition: transform 0.35s; }
.dest-card:hover img { transform: scale(1.05); }
.dest-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.15) 60%, transparent 100%); }
.dest-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 16px; display: flex; justify-content: space-between; align-items: flex-end; }
.dest-city { font-size: 1rem; font-weight: 600; color: white; }
.dest-country { font-size: 0.75rem; color: rgba(255,255,255,0.75); margin-top: 2px; }
.dest-arrow {
  background: rgba(255,255,255,0.2); backdrop-filter: blur(4px);
  border-radius: 50%; width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.dest-arrow svg { width: 16px; height: 16px; color: white; }

/* ─── DESTINATION FILTER TABS ─── */
.dest-tab {
  background: none; border: 1px solid var(--stone-200); border-radius: 20px;
  padding: 6px 16px; font-size: 0.8rem; font-weight: 500; color: var(--stone-500);
  cursor: pointer; transition: all 0.15s; font-family: inherit;
}
.dest-tab:hover { border-color: var(--stone-400); color: var(--stone-800); }
.dest-tab.active { background: var(--stone-900); border-color: var(--stone-900); color: #fff; }

/* ─── FAQ ─── */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: white; border: 1px solid var(--stone-100); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); overflow: hidden;
}
.faq-question {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 20px 24px; text-align: left;
  font-family: inherit; transition: background 0.15s;
}
.faq-question:hover { background: var(--stone-50); }
.faq-question span {
  font-size: 0.925rem; font-weight: 600; color: var(--stone-800); line-height: 1.4;
}
.faq-chevron {
  flex-shrink: 0; width: 20px; height: 20px; color: var(--amber);
  transition: transform 0.25s; display: flex; align-items: center; justify-content: center;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 24px;
}
.faq-item.open .faq-answer { max-height: 300px; padding: 0 24px 20px; }
.faq-answer p { font-size: 0.875rem; color: var(--stone-500); line-height: 1.8; }

/* ─── TIPS STRIP ─── */
.tips-strip { background: var(--amber-light); border-top: 1px solid #fde68a; border-bottom: 1px solid #fde68a; padding: 40px 24px; }
.tips-strip-inner { max-width: 1200px; margin: 0 auto; }
.tips-strip h2 { font-size: 1rem; font-weight: 700; color: var(--amber-dark); margin-bottom: 20px; text-align: center; }
.tips-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.tip { display: flex; gap: 10px; align-items: flex-start; }
.tip-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--amber); flex-shrink: 0; margin-top: 6px; }
.tip p { font-size: 0.8rem; color: var(--amber-dark); line-height: 1.7; }

/* ─── DISCLAIMER ─── */
.disclaimer { background: var(--stone-50); border-top: 1px solid var(--stone-100); padding: 32px 24px; text-align: center; }
.disclaimer p { font-size: 0.72rem; color: var(--stone-400); max-width: 900px; margin: 0 auto; line-height: 1.8; }

/* ─── FOOTER ─── */
footer { background: var(--stone-900); color: var(--stone-300); padding: 56px 24px 32px; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 40px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo-icon { width: 32px; height: 32px; background: var(--amber); border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.footer-logo-icon svg { width: 16px; height: 16px; color: white; }
.footer-logo-text { font-size: 1.05rem; font-weight: 700; color: white; }
.footer-logo-text span { color: #fbbf24; }
.footer-desc { font-size: 0.8rem; color: #a8a29e; line-height: 1.75; }
.footer-heading { font-size: 0.72rem; font-weight: 600; color: white; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 0.8rem; color: #a8a29e; transition: color 0.15s; }
.footer-links a:hover { color: white; }
.footer-contact { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; color: #a8a29e; }
.footer-contact svg { width: 16px; height: 16px; color: #fbbf24; flex-shrink: 0; }
.footer-contact a { color: #a8a29e; transition: color 0.15s; word-break: break-all; }
.footer-contact a:hover { color: white; }
.footer-note { font-size: 0.72rem; color: #78716c; margin-top: 12px; }
.footer-bottom {
  margin-top: 40px; padding-top: 24px; border-top: 1px solid #292524;
  display: flex; flex-wrap: wrap; justify-content: space-between;
  gap: 8px; font-size: 0.72rem; color: #78716c;
}
.footer-legal { font-size: 0.68rem; color: #57534e; text-align: center; margin-top: 12px; }

/* ─── INNER PAGES ─── */
.inner-page { padding: 64px 24px; }
.inner-inner { max-width: 780px; margin: 0 auto; }
.inner-card {
  background: white; border: 1px solid var(--stone-100);
  border-radius: var(--radius); padding: 40px 48px; box-shadow: var(--shadow-sm);
}
.inner-card h1 { font-size: 1.75rem; font-weight: 700; color: var(--stone-900); margin-bottom: 6px; }
.inner-date { font-size: 0.8rem; color: var(--stone-400); margin-bottom: 36px; }
.inner-card section { margin-bottom: 28px; }
.inner-card h2 { font-size: 0.95rem; font-weight: 600; color: var(--stone-800); margin-bottom: 10px; }
.inner-card p { font-size: 0.875rem; color: var(--stone-600); line-height: 1.8; margin-bottom: 8px; }
.inner-card ul { font-size: 0.875rem; color: var(--stone-600); line-height: 1.8; padding-left: 24px; margin-top: 8px; }
.inner-card ul li { margin-bottom: 6px; }
.inner-card a { color: var(--amber); }
.inner-card a:hover { text-decoration: underline; }

/* ─── CONTACT ─── */
.contact-item { display: flex; align-items: flex-start; gap: 16px; padding: 24px 0; border-bottom: 1px solid var(--stone-100); }
.contact-item:last-child { border-bottom: none; }
.contact-icon { width: 44px; height: 44px; background: var(--amber-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-icon svg { width: 20px; height: 20px; color: var(--amber); }
.contact-label { font-size: 0.8rem; font-weight: 600; color: var(--stone-900); margin-bottom: 4px; }
.contact-value { font-size: 0.875rem; color: var(--stone-600); }
.contact-value a { color: var(--amber); }
.contact-note { font-size: 0.72rem; color: var(--stone-400); margin-top: 4px; }

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  nav { display: none; }
  .nav-toggle { display: flex; align-items: center; justify-content: center; }
  .mobile-nav.open { display: flex; }
  .hero { padding: 56px 20px; }
  .section { padding: 56px 20px; }
  .inner-card { padding: 28px 24px; }
  .footer-bottom { flex-direction: column; align-items: center; }
}
@media (max-width: 480px) {
  .destinations { grid-template-columns: 1fr; }
}
