:root {
  --bg:      #0d0305;
  --bg2:     #1a0308;
  --crimson: #8b0016;
  --rose:    #c9273f;
  --pale:    #f0d0d6;
  --silk:    #faf0f2;
  --smoke:   #d4c4c8;
  --ash:     #9a8488;
  --border:  rgba(201,39,63,0.18);
  --bhi:     rgba(201,39,63,0.5);
  --text:    #f0d0d6;
  --text-muted: #9a8488;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--smoke);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  overflow-x: hidden;
  line-height: 1.6;
}

/* Scrollbar */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--crimson); }

/* ── NAVIGATION ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.1rem 4vw;
  display: flex; align-items: center; justify-content: space-between;
  transition: background .5s, backdrop-filter .5s;
}

nav.scrolled {
  background: rgba(13, 3, 5, 0.92);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(14px);
}

.nav-logo { width: 75px; }

.nav-links { display: flex; gap: 2.5rem; align-items: center; }

.nav-links a {
  color: rgba(212, 196, 200, .75);
  text-decoration: none;
  font-family: 'Cinzel', serif;
  font-size: .65rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  transition: color .25s;
}

.nav-links a:hover { color: var(--pale); }

/* Burger Menu Styles */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1100;
}

.nav-burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--smoke);
  transition: 0.3s;
}

/* ── HERO SECTION ── */
.hero {
  position: relative;
  height: 50vh;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 20px 40px;
}

.hero-subtitle {
  font-family: 'Cinzel', serif;
  font-size: 0.8rem;
  letter-spacing: 0.4em;
  color: var(--rose);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.hero-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(2.5rem, 8vw, 5rem);
  color: var(--pale);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.1;
}

.hero-tagline {
  margin-top: 15px;
  font-style: italic;
  color: var(--ash);
  font-size: 1.1rem;
}

.tours-section {
  padding: 60px 4vw 100px;
  max-width: 1200px;
  margin: 0 auto;
}

.tours-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.tour-card {
  flex: 1;
  min-width: 300px;
  max-width: 450px;
  background: rgba(26, 3, 8, 0.5);
  border: 1px solid var(--border);
  padding: 40px;
  text-decoration: none; 
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.tour-card:hover {
  transform: translateY(-8px);
  border-color: var(--rose);
  background: rgba(139, 0, 22, 0.05);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.tour-card-number {
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  color: var(--rose);
  letter-spacing: 0.3em;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.tour-card-city {
  font-family: 'Cinzel', serif;
  font-size: 2.2rem;
  color: var(--pale);
  margin-bottom: 10px;
  word-wrap: break-word; 
  overflow-wrap: anywhere;
  line-height: 1.2;
}

.tour-card-dates {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--rose);
  margin-bottom: 20px;
}

.tour-card-desc {
  font-size: 1rem;
  color: var(--ash);
  margin-bottom: 30px;
  flex-grow: 1;
}

.tour-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid rgba(201, 39, 63, 0.1);
}

.tour-card-status {
  font-family: 'Cinzel', serif;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pale);
  border: 1px solid var(--rose);
  padding: 6px 15px;
}

.tour-card-arrow {
  color: var(--rose);
  font-size: 1.4rem;
  transition: transform 0.3s;
}

.tour-card:hover .tour-card-arrow {
  transform: translateX(8px);
}

/* ── FOOTER ── */
footer {
  padding: 40px;
  text-align: center;
  border-top: 1px solid var(--border);
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--ash);
}


@media (max-width: 900px) {
  .nav-burger { display: flex; }
  
  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(13, 3, 5, 0.98);
    flex-direction: column;
    justify-content: center;
    padding: 40px;
  }

  .nav-links.open { display: flex; }
  
  .nav-links a:not(.nav-cta) { display: block; font-size: 1.2rem; }

  .tours-grid {
    flex-direction: column;
    align-items: center;
  }

  .tour-card {
    width: 100%;
    min-width: unset;
  }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.8rem; }
  
  .tour-card-city {
    font-size: 1.8rem;
  }

  .tour-card {
    padding: 30px 20px;
  }
}

/* Divider */
.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border), transparent);
  margin: 20px 0;
}