:root {
  --red: #c8102e;
  --red-dark: #9c0d24;
  --silver: #9aa3ab;
  --silver-light: #e7e9eb;
  --ink: #201f22;
  --white: #ffffff;
  --radius: 14px;
  --max: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.5;
}

img { max-width: 100%; display: block; }

a { color: inherit; }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- header ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--silver-light);
}

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

.logo {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-decoration: none;
}
.logo span.l1 { color: var(--red); }
.logo span.l2 { color: var(--silver); }

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-weight: 600;
  font-size: .95rem;
}
.nav-links a {
  text-decoration: none;
  color: var(--ink);
  transition: color .15s;
}
.nav-links a:hover { color: var(--red); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: var(--white);
  padding: 10px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: .9rem;
  transition: background .15s;
}
.nav-cta:hover { background: var(--red-dark); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle svg { width: 26px; height: 26px; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 20%, rgba(200,16,46,.14), transparent 45%),
    radial-gradient(circle at 85% 0%, rgba(154,163,171,.25), transparent 50%),
    var(--white);
  padding: 96px 24px 110px;
  text-align: center;
}

.hero .eyebrow {
  display: inline-block;
  color: var(--red);
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: .78rem;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  margin: 0 0 18px;
  font-weight: 800;
  line-height: 1.08;
}
.hero h1 em {
  font-style: normal;
  color: var(--red);
}

.hero p.lead {
  max-width: 640px;
  margin: 0 auto 36px;
  color: #55565a;
  font-size: 1.15rem;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  font-size: .98rem;
  border: 2px solid transparent;
  transition: transform .15s, background .15s, border-color .15s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--red); color: var(--white); }
.btn-primary:hover { background: var(--red-dark); }
.btn-outline { border-color: var(--silver); color: var(--ink); }
.btn-outline:hover { border-color: var(--red); color: var(--red); }
.btn svg { width: 18px; height: 18px; }

/* ---------- section shell ---------- */
section { padding: 84px 0; }
.section-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 52px;
}
.section-head .eyebrow {
  color: var(--red);
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: .76rem;
}
.section-head h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  margin: 10px 0 12px;
  font-weight: 800;
}
.section-head p { color: #5b5c60; margin: 0; }

.bg-silver { background: linear-gradient(180deg, #fafafa, #f1f2f3); }

/* ---------- features ---------- */
.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.feature {
  background: var(--white);
  border: 1px solid var(--silver-light);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: left;
}
.feature .icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: rgba(200,16,46,.09);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.feature .icon svg { width: 24px; height: 24px; color: var(--red); }
.feature h3 { margin: 0 0 8px; font-size: 1.05rem; }
.feature p { margin: 0; color: #616266; font-size: .92rem; }

/* ---------- destinations ---------- */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.dest-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--silver-light);
  background: var(--white);
  transition: transform .2s, box-shadow .2s;
}
.dest-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(32,31,34,.1);
}
.dest-img {
  height: 170px;
  background: linear-gradient(135deg, var(--red), #6b6f75);
  position: relative;
}
.dest-img.alt2 { background: linear-gradient(135deg, #a7adb3, var(--red-dark)); }
.dest-img.alt3 { background: linear-gradient(135deg, var(--red-dark), #3d3e41); }
.dest-img::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.25), transparent 60%);
}
.dest-tag {
  position: absolute;
  bottom: 12px; left: 14px;
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  text-shadow: 0 2px 6px rgba(0,0,0,.3);
}
.dest-body { padding: 18px 20px 22px; }
.dest-body p { margin: 6px 0 0; color: #616266; font-size: .9rem; }
.dest-body .price { color: var(--red); font-weight: 700; font-size: .85rem; letter-spacing: .04em; text-transform: uppercase; }

/* ---------- contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 44px;
  align-items: start;
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  gap: 14px;
}
.contact-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--silver-light);
  border-radius: 12px;
  padding: 14px 16px;
}
.contact-list .icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(200,16,46,.09);
  display: flex; align-items: center; justify-content: center;
  flex: none;
}
.contact-list .icon svg { width: 20px; height: 20px; color: var(--red); }
.contact-list a { text-decoration: none; font-weight: 600; }
.contact-list a:hover { color: var(--red); }
.contact-list .label { display: block; font-size: .78rem; color: #8a8b8e; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }

.social-row { display: flex; gap: 12px; }
.social-row a {
  width: 44px; height: 44px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  transition: background .15s;
}
.social-row a:hover { background: var(--red); }
.social-row svg { width: 20px; height: 20px; }

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--silver-light);
  height: 100%;
  min-height: 360px;
}
.map-embed iframe { width: 100%; height: 100%; min-height: 360px; border: 0; display: block; }

/* ---------- footer ---------- */
footer {
  background: var(--ink);
  color: #c9cacd;
  padding: 40px 0 26px;
  text-align: center;
  font-size: .85rem;
}
footer .logo { color: #fff; margin-bottom: 10px; display: inline-block; }
footer .logo span.l1 { color: var(--red); }
footer .logo span.l2 { color: var(--silver); }
footer p { margin: 4px 0; }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .features { grid-template-columns: repeat(2, 1fr); }
  .dest-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: block; }
  .nav.open .nav-links {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 18px 24px;
    border-bottom: 1px solid var(--silver-light);
    gap: 16px;
  }
  .nav.open .nav-cta {
    display: inline-flex;
    margin: 0 24px 18px;
  }
  .features { grid-template-columns: 1fr; }
  .dest-grid { grid-template-columns: 1fr; }
  .hero { padding: 70px 20px 80px; }
  section { padding: 60px 0; }
}
