:root {
  --green: #63AB45;
  --green-dark: #4a8a30;
  --yellow: #F7921E;
  --yellow-light: #f9a847;
  --cream:   #faf7f0;
  --parchment: #f2ece0;
  --ink:     #1a2a1a;
  --slate:   #5a6b5a;
  --white:   #ffffff;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'DM Sans', sans-serif; background: var(--cream); color: var(--ink); overflow-x: hidden; }
.serif { font-family: 'Cormorant Garamond', serif; }

/* ── NAVBAR ── */
.navbar-custom {
  background: rgba(26, 42, 26, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(247, 146, 30, 0.25);
  /* padding: 10px 12px !important; */
}
.navbar-brand-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff !important;
  letter-spacing: -0.3px;
}
.navbar-brand-text em { color: var(--yellow); font-style: italic; }
.navbar-nav .nav-link {
  color: rgba(255,255,255,0.7) !important;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 0.4rem 1rem !important;
  transition: color 0.2s;
}
.navbar-toggler { border-color: rgba(255,255,255,0.2); }
.navbar-toggler-icon { filter: invert(1); }
.nav-cta {
  background: var(--yellow) !important;
  color: #fff !important;
  border-radius: 2px !important;
  padding: 0.45rem 1.25rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em;
}

/* ── TOP INFO BAR ── */
.top-bar {
  background-color: #213121;   /* dark navy — change to any color you like */
  color: #ffffffcc;
  font-size: 0.82rem;
  padding: 6px 0;
}

.top-bar a {
  color: #ffffffcc;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.2s;
}

.top-bar a:hover {
  color: #ffffff;
}

/* ── WHITE NAVBAR ── */
.navbar-custom {
  background-color: #ffffff !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.navbar-custom .nav-link {
  color: #222222 !important;
  font-weight: 500;
}

.navbar-custom .nav-link:hover {
  color: #e67e22 !important;   /* accent color on hover — match your brand */
}

/* Keep CTA button styled */
.navbar-custom .nav-cta {
  background-color: #e67e22;
  color: #ffffff !important;
  border-radius: 6px;
  padding: 6px 16px !important; 
}

.navbar-custom .nav-cta:hover {
  background-color: #cf6d17;
  color: #ffffff !important;
}

/* Hamburger lines → dark on white bg */
.drawer-toggle span {
  background-color: #222222;
}

/* ══════════════════════════════════════
   HERO BANNER SLIDER
══════════════════════════════════════ */
.hero-slider-wrap {
  position: relative;
  height: 100vh;
  min-height: 500px;
  max-height: 900px;
  overflow: hidden;
}

/* Each slide fills the viewport */
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  z-index: 0;
}
.hero-slide.active { opacity: 1; z-index: 1; }

/* Background image */
.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  transition: transform 8s ease;
}
.hero-slide.active .hero-slide-bg { transform: scale(1); }

/* Dark gradient overlay */
.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10,18,8,0.75) 0%,
    rgba(10,18,8,0.45) 55%,
    rgba(10,18,8,0.18) 100%
  );
  z-index: 1;
}

/* Bottom vignette */
.hero-slide-overlay::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 38%;
  background: linear-gradient(to top, rgba(10,18,8,0.6), transparent);
}

/* Slide content */
.hero-slide-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 6vw;
  padding-top: 72px;
}

.slide-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--yellow);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.2rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s 0.4s ease, transform 0.7s 0.4s ease;
}
.slide-eyebrow::before {
  content: '';
  width: 36px; height: 1px;
  background: var(--yellow);
}
.hero-slide.active .slide-eyebrow { opacity: 1; transform: translateY(0); }

.slide-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 6vw, 6rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.0;
  letter-spacing: -1px;
  max-width: 700px;
  margin-bottom: 1.2rem;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s 0.6s ease, transform 0.7s 0.6s ease;
}
.slide-title em { color: var(--yellow); font-style: italic; }
.hero-slide.active .slide-title { opacity: 1; transform: translateY(0); }

.slide-desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.72);
  max-width: 420px;
  line-height: 1.8;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s 0.8s ease, transform 0.7s 0.8s ease;
}
.hero-slide.active .slide-desc { opacity: 1; transform: translateY(0); }

.slide-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s 1s ease, transform 0.7s 1s ease;
}
.hero-slide.active .slide-ctas { opacity: 1; transform: translateY(0); }

/* Slide badge (top-right corner) */
.slide-badge {
  position: absolute;
  top: 50%;
  right: 6vw;
  transform: translateY(-50%);
  z-index: 2;
  text-align: right;
  opacity: 0;
  transition: opacity 0.8s 1.1s ease;
}
.hero-slide.active .slide-badge { opacity: 1; }
.slide-badge-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(5rem, 12vw, 12rem);
  font-weight: 700;
  color: rgba(255,255,255,0.06);
  line-height: 1;
  letter-spacing: -4px;
}
.slide-badge-label {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-top: -1rem;
}

/* ── Slider Navigation Arrows ── */
.hero-prev, .hero-next {
  position: absolute;
  bottom: 2.5rem;
  z-index: 10;
  width: 48px; height: 48px;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(6px);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  font-size: 1.1rem;
}
.hero-prev { right: calc(6vw + 60px); }
.hero-next { right: 6vw; }
.hero-prev:hover, .hero-next:hover {
  background: var(--yellow);
  border-color: var(--yellow);
}

/* ── Slide Dots ── */
.hero-dots {
  position: absolute;
  bottom: 2.8rem;
  left: 6vw;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.hero-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s, width 0.3s;
  border: none;
  padding: 0;
}
.hero-dot.active {
  background: var(--yellow);
  width: 24px;
  border-radius: 3px;
}

/* ── Progress bar ── */
.hero-progress {
  position: absolute;
  bottom: 0; left: 0;
  height: 3px;
  background: var(--yellow);
  z-index: 10;
  width: 0%;
  transition: none;
}
.hero-progress.running {
  transition: width 5s linear;
  width: 100%;
}

/* ── Slide counter ── */
.hero-counter {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.15em;
}
.hero-counter span { color: rgba(255,255,255,0.75); }

/* ── TICKER ── */
.ticker-wrap {
  background: var(--yellow);
  overflow: hidden;
  height: 44px;
  display: flex;
  align-items: center;
}
.ticker-track {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: tickerScroll 22s linear infinite;
}
@keyframes tickerScroll { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
.ticker-item {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.ticker-dot { width: 4px; height: 4px; background: rgba(255,255,255,0.45); border-radius: 50%; display: inline-block; }

/* ── NUMBERS STRIP ── */
.numbers-strip { background: var(--parchment); border-bottom: 1px solid #ddd5c0; }
.stat-item {
  padding: 2rem 1.5rem;
  border-right: 1px solid #ddd5c0;
  text-align: center;
}
.stat-item:last-child { border-right: none; }
.stat-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
}
.stat-val sup { font-size: 1.3rem; color: var(--yellow); vertical-align: super; }
.stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate);
  margin-top: 0.4rem;
}

/* ── SECTION COMMONS ── */
.section-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.85rem;
}
.section-eyebrow::after { content:''; width:32px; height:1px; background:var(--yellow); opacity:0.5; }
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.15;
}
.section-title em { font-style: italic; color: var(--green); }
.section-body { font-size: 0.9rem; color: var(--slate); line-height: 1.8; max-width: 500px; }

/* ── DESTINATION SLIDER CARDS ── */
.dest-slider .carousel-item { padding: 0.5rem 0.75rem; }
.dest-slider .carousel-control-prev,
.dest-slider .carousel-control-next { width: 5%; opacity: 0.6; transition: opacity 0.2s; }
.dest-slider .carousel-control-prev:hover,
.dest-slider .carousel-control-next:hover { opacity: 1; }
.dest-slider .carousel-control-prev-icon,
.dest-slider .carousel-control-next-icon {
  background-color: var(--green);
  border-radius: 50%;
  padding: 1.2rem;
  background-size: 60%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.dest-slider .carousel-indicators { margin-bottom: -1.5rem; gap: 0.5rem; }
.dest-slider .carousel-indicators button {
  width: 10px; height: 10px;
  border-radius: 50%;
  background-color: var(--yellow);
  opacity: 0.4;
  border: none;
  transition: opacity 0.2s, transform 0.2s;
}
.dest-slider .carousel-indicators button.active {
  opacity: 1;
  transform: scale(1.2);
  background-color: var(--green);
}
.slide-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.dest-card {
  background: #fff;
  border: 1px solid #e0d8c8;
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.dest-card:hover { transform: translateY(-6px); box-shadow: 0 12px 28px rgba(0,0,0,0.10); }
.dest-card-img { width: 100%; height: 180px; object-fit: cover; display: block; background: #ddd5c0; }
.dest-card-body { padding: 1.5rem 1.5rem 1.8rem; }
.dest-card:hover .dest-type  { color: var(--yellow); }
.dest-card:hover .dest-name  { color: var(--green); }
.dest-card:hover .dest-arrow { color: var(--yellow); }
.dest-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4.5rem;
  font-weight: 700;
  color: #f0ece3;
  line-height: 1;
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
  pointer-events: none;
  transition: color 0.25s;
}
.dest-type { font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--yellow); font-weight: 600; margin-bottom: 0.4rem; transition: color 0.25s; }
.dest-name { font-family: 'Cormorant Garamond', serif; font-size: 1.55rem; font-weight: 700; color: var(--ink); line-height: 1.2; margin-bottom: 0.5rem; transition: color 0.25s; }
.dest-desc { font-size: 0.82rem; color: var(--slate); line-height: 1.65; transition: color 0.25s; }
.dest-arrow { display: inline-block; margin-top: 1rem; color: var(--yellow); font-size: 1.1rem; transition: color 0.25s; }

/* ── FLEET ── */
.fleet-section { background: var(--parchment); padding: 5rem 0; border-top: 1px solid #ddd5c0; border-bottom: 1px solid #ddd5c0; }
.fleet-card {
  background: #fff;
  border: 1px solid #e0d8c8;
  padding: 1.75rem 1rem;
  text-align: center;
  height: 100%;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}
.fleet-card:hover { background: #fff; box-shadow: 0 8px 24px rgba(0,0,0,0.08); transform: translateY(-4px); }
.fleet-card i { font-size: 2rem; color: var(--yellow); display: block; margin-bottom: 1rem; }
.fleet-card .fleet-name { font-size: 0.9rem; font-weight: 600; color: var(--ink); }
.fleet-card .fleet-cap { font-size: 0.72rem; color: var(--slate); margin-top: 0.3rem; letter-spacing: 0.05em; }

/* ── WHY US ── */
.why-section { background: var(--cream); padding: 5rem 0; }
.why-card { border-top: 2px solid var(--yellow); padding-top: 1.5rem; height: 100%; }
.why-num { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; font-weight: 700; color: #e8e3d8; line-height: 1; margin-bottom: 0.5rem; }
.why-title { font-size: 1rem; font-weight: 600; color: var(--ink); margin-bottom: 0.6rem; }
.why-body { font-size: 0.83rem; color: var(--slate); line-height: 1.7; }
.why-image-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  min-height: 400px;
}

.why-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.why-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}

.why-image-label {
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 6px;
}

.why-image-caption {
  font-size: 1.2rem;
  color: #fff;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
}
/* ── TESTIMONIAL ── */
.testimonial-section { background: var(--parchment); padding: 5rem 0; border-top: 1px solid #ddd5c0; border-bottom: 1px solid #ddd5c0; }
.testi-card { background: #fff; border: 1px solid #e0d8c8; border-top: 3px solid var(--yellow); padding: 2rem 1.75rem; height: 100%; }
.testi-stars { color: var(--yellow); font-size: 0.85rem; margin-bottom: 1rem; }
.testi-text { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-style: italic; color: var(--ink); line-height: 1.7; margin-bottom: 1.25rem; }
.testi-author { font-size: 0.78rem; font-weight: 600; color: var(--slate); letter-spacing: 0.05em; text-transform: uppercase; }

/* ── CONTACT BAR ── */
.contact-bar { background: var(--ink); }
.contact-bar-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1.1rem 1.5rem;
  border-right: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.5);
  font-size: 0.82rem;
}
.contact-bar-item:last-child { border-right: none; }
.contact-bar-item strong { color: #fff; }
.contact-bar-item i { color: var(--yellow); font-size: 1rem; }

/* ── BOOKING ── */
.book-section { background: var(--parchment); padding: 5rem 0; border-top: 3px solid var(--yellow); }
.book-label { font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink); font-weight: 600; display: block; margin-bottom: 0.4rem; }
.book-input {
  width: 100%;
  border: 1px solid #c8bfa8;
  border-radius: 0 !important;
  padding: 0.8rem 1rem;
  font-size: 0.88rem;
  font-family: 'DM Sans', sans-serif;
  color: var(--ink);
  background: #fff;
  outline: none;
  transition: border-color 0.2s;
}
.book-input:focus { border-color: var(--green); box-shadow: none; }
.btn-book {
  background: var(--green) !important;
  color: #fff !important;
  border: none;
  border-radius: 2px;
  padding: 1rem 2.5rem !important;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: 'DM Sans', sans-serif;
  width: 100%;
  transition: background 0.2s;
}
.btn-book:hover { background: var(--green-dark); color: #fff; }

/* ── FOOTER ── */
.footer-section { background: #0a1208; padding: 4rem 0 2rem; }
.footer-brand-name { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 700; color: #fff; line-height: 1.1; margin-bottom: 1rem; }
.footer-brand-name em { color: var(--yellow); font-style: italic; }
.footer-body { font-size: 0.82rem; color: #ffffff; line-height: 1.8; }
.footer-heading { font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: #f7921e; font-weight: 600; margin-bottom: 1.1rem; }
.footer-link { display: block; font-size: 0.82rem; color: #ffffff; text-decoration: none; margin-bottom: 0.55rem; transition: color 0.15s; }
.footer-link:hover { color: var(--yellow); }
.footer-divider { border-color: rgba(255,255,255,0.07); margin: 2.5rem 0 1.5rem; }
.footer-copy { font-size: 0.75rem; color: #ffffff; }
.gold-rule { width: 28px; height: 2px; background: var(--yellow); display: inline-block; vertical-align: middle; margin-right: 8px; }

.text-gold { color: var(--yellow) !important; }
.text-green { color: var(--green) !important; }
.bg-green { background: var(--green) !important; }
.bg-cream { background: var(--cream) !important; }

/* ── Buttons ── */
.btn-gold {
  background: var(--yellow) !important;
  color: #fff !important;
  border: none;
  border-radius: 2px !important;
  padding: 0.85rem 2.5rem !important;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: 'DM Sans', sans-serif;
  transition: background 0.2s;
}
.btn-gold:hover { background: var(--yellow-light) !important; color: #fff !important; }
.btn-outline-ivory {
  background: transparent !important;
  color: rgba(255,255,255,0.8) !important;
  border: 1px solid rgba(255,255,255,0.3) !important;
  border-radius: 2px !important;
  padding: 0.85rem 2.5rem !important;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: 'DM Sans', sans-serif;
  transition: border-color 0.2s;
}
.btn-outline-ivory:hover { border-color: rgba(255,255,255,0.75) !important; color: #fff !important; }

/* ══════════════════════════════════════
   RESPONSIVE FIXES
══════════════════════════════════════ */

/* ── Large screens (1200px+) ── */
@media (min-width: 1200px) {
  .hero-slider-wrap {
    height: 90vh;
    max-height: 850px;
  }
}

/* ── Tablet landscape (992px–1199px) ── */
@media (min-width: 992px) and (max-width: 1199px) {
  .hero-slider-wrap {
    height: 80vh;
    max-height: 700px;
  }
}

/* ── Tablet portrait (768px–991px) ── */
@media (min-width: 768px) and (max-width: 991px) {
  .hero-slider-wrap {
    height: 70vh;
    min-height: 480px;
    max-height: 620px;
  }
  .slide-title { font-size: clamp(2rem, 5vw, 3.5rem); }
  .slide-desc { font-size: 0.88rem; max-width: 360px; }
  .slide-badge { display: none; }
}

/* ── Mobile large (576px–767px) ── */
@media (min-width: 576px) and (max-width: 767px) {
  .hero-slider-wrap {
    height: 60vh;
    min-height: 420px;
    max-height: 520px;
  }
  .slide-title { font-size: clamp(1.8rem, 6vw, 2.8rem); }
  .slide-desc { font-size: 0.82rem; max-width: 300px; margin-bottom: 1.2rem; }
  .slide-ctas .btn-gold,
  .slide-ctas .btn-outline-ivory { padding: 0.65rem 1.4rem !important; font-size: 0.75rem; }
  .slide-badge { display: none; }
  .hero-prev, .hero-next { bottom: 1.2rem; width: 40px; height: 40px; font-size: 0.95rem; }
  .hero-prev { right: calc(6vw + 50px); }
  .hero-counter { display: none; }
  .stat-item { border-right: none; border-bottom: 1px solid #ddd5c0; }
  .contact-bar-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.05); }
}

/* ── Mobile small (up to 575px) ── */
@media (max-width: 575px) {
  .hero-slider-wrap {
    height: 55vh;
    min-height: 380px;
    max-height: 480px;
  }
  .slide-title { font-size: clamp(1.6rem, 7vw, 2.4rem); letter-spacing: -0.5px; }
  .slide-desc { display: none; }
  .slide-eyebrow { font-size: 0.6rem; letter-spacing: 0.18em; margin-bottom: 0.8rem; }
  .slide-ctas { gap: 0.6rem; }
  .slide-ctas .btn-gold,
  .slide-ctas .btn-outline-ivory { padding: 0.6rem 1.2rem !important; font-size: 0.72rem; }
  .slide-badge { display: none; }
  .hero-prev, .hero-next { bottom: 1rem; width: 38px; height: 38px; font-size: 0.9rem; }
  .hero-prev { right: calc(6vw + 48px); }
  .hero-counter { display: none; }
  .hero-dots { bottom: 1.2rem; }
  .stat-item { border-right: none; border-bottom: 1px solid #ddd5c0; }
  .contact-bar-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.05); }
}

/* ══════════════════════════════════════
   MOBILE DRAWER MENU
══════════════════════════════════════ */

/* Hamburger button */
.drawer-toggle {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  z-index: 1100;
}
.drawer-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #000;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* Backdrop */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.drawer-backdrop.open {
  opacity: 1;
  pointer-events: all;
}

/* Drawer panel */
.drawer-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 280px;
  max-width: 85vw;
  height: 100dvh;
  background: #213121;
  z-index: 1300;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 4px 0 32px rgba(0,0,0,0.4);
}
.drawer-menu.open {
  transform: translateX(0);
}

/* Drawer header */
.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 12px !important;
  border-bottom: 1px solid rgba(247, 146, 30, 0.2);
}
.drawer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
}
.drawer-brand em { color: var(--yellow); font-style: italic; }

.drawer-close {
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.6);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 4px 6px;
  line-height: 1;
  transition: color 0.2s;
}
.drawer-close:hover { color: var(--yellow); }

/* Drawer nav links */
.drawer-nav {
  list-style: none;
  padding: 1.5rem 0;
  flex: 1;
  margin: 0;
}
.drawer-nav li {
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.drawer-link {
  display: block;
  padding: 1rem 1.75rem;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.2s, padding-left 0.2s;
}
.drawer-link:hover {
  color: var(--yellow);
  padding-left: 2.25rem;
}
.drawer-cta {
  margin: 1.25rem 1.75rem 0;
  display: block;
  text-align: center;
  background: var(--yellow);
  color: #fff !important;
  border-radius: 2px;
  padding: 0.85rem 1.5rem !important;
  letter-spacing: 0.1em;
  transition: background 0.2s !important;
}
.drawer-cta:hover {
  background: var(--yellow-light) !important;
  padding-left: 1.5rem !important;
}

/* Drawer footer */
.drawer-footer {
  padding: 1.25rem 1.75rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.drawer-footer i { color: var(--yellow); }

/* Lock body scroll when drawer open */
body.drawer-open {
  overflow: hidden;
}