/* Cozy Nygaard — Shared Design System */

/* ─── Base ─────────────────────────────────────────────── */
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: #2C1B14;
  overflow-x: hidden;
  background: #FDF8F4;
}
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; }

/* ─── Custom Cursor ─────────────────────────────────────── */
.cursor-dot {
  position: fixed; width: 6px; height: 6px; background: #D4A574;
  border-radius: 50%; pointer-events: none; z-index: 10000;
  transform: translate(-50%, -50%);
  transition: width .3s, height .3s, background .3s;
}
.cursor-ring {
  position: fixed; width: 36px; height: 36px;
  border: 1px solid rgba(212,165,116,0.5); border-radius: 50%;
  pointer-events: none; z-index: 10000;
  transform: translate(-50%, -50%);
  transition: width .3s, height .3s, border-color .3s;
}
.cursor-hover .cursor-dot { width: 12px; height: 12px; background: #E8917C; }
.cursor-hover .cursor-ring { width: 52px; height: 52px; border-color: rgba(232,145,124,0.25); }
@media (max-width: 768px) { .cursor-dot, .cursor-ring { display: none !important; } }

/* ─── Scroll Progress Bar ───────────────────────────────── */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px;
  background: linear-gradient(90deg, #E8917C, #D4A574, #A8C5B8);
  z-index: 100; width: 0%; transition: none;
}

/* ─── Nav ───────────────────────────────────────────────── */
.nav-scrolled {
  background: rgba(253,248,244,0.96);
  box-shadow: 0 1px 24px rgba(232,145,124,0.08);
  backdrop-filter: blur(16px);
}
.nav-scrolled .nav-logo { color: #2C1B14 !important; }
.nav-scrolled .nav-link { color: rgba(44,27,20,0.65) !important; }

/* ─── Buttons ───────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #E8917C 0%, #C87860 100%);
  color: #fff; border: none; border-radius: 100px;
  font-weight: 500; letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform .4s cubic-bezier(.25,.46,.45,.94), box-shadow .4s ease, opacity .3s;
  box-shadow: 0 6px 28px rgba(232,145,124,0.35);
  text-decoration: none;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 40px rgba(232,145,124,0.45); opacity: .95; }
.btn-outline {
  display: inline-flex; align-items: center; justify-content: center;
  border: 1.5px solid rgba(232,145,124,0.5); color: #C87860; border-radius: 100px;
  font-weight: 500; letter-spacing: 0.02em;
  background: transparent; cursor: pointer; text-decoration: none;
  transition: background .3s, color .3s, border-color .3s;
}
.btn-outline:hover { background: #FEF0EC; border-color: #E8917C; color: #C87860; }
.magnetic-btn { display: inline-block; position: relative; transition: transform .3s cubic-bezier(.25,.46,.45,.94); }

/* ─── Hero ──────────────────────────────────────────────── */
.hero-section {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; will-change: transform; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(44,27,20,0.08) 0%,
      rgba(44,27,20,0.22) 45%,
      rgba(44,27,20,0.52) 100%);
}
.hero-content { position: relative; z-index: 10; text-align: center; color: #fff; }
.hero-eyebrow {
  font-family: 'Playfair Display', serif;
  font-style: italic; font-weight: 400;
  font-size: 1rem; letter-spacing: 0.04em;
  opacity: 0.88; margin-bottom: 2rem;
}
.hero-title {
  font-size: clamp(3rem, 7.5vw, 7.5rem); font-weight: 600;
  line-height: 0.97; letter-spacing: -0.02em;
}
.hero-title .line { display: block; overflow: hidden; }
.hero-title .line span {
  display: inline-block; transform: translateY(110%);
  animation: lineReveal 1s cubic-bezier(.25,.46,.45,.94) forwards;
}
.hero-title .line:nth-child(1) span { animation-delay: .3s; }
.hero-title .line:nth-child(2) span { animation-delay: .5s; }
.hero-title .line:nth-child(3) span { animation-delay: .7s; }
.hero-title .line:nth-child(4) span { animation-delay: .9s; }
@keyframes lineReveal { to { transform: translateY(0); } }
.hero-italic { font-style: italic; font-weight: 400; }
.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem); opacity: 0.9;
  max-width: 520px; margin: 0 auto; line-height: 1.7;
  font-weight: 300;
}
.hero-cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 36px; border-radius: 100px; font-weight: 500;
  background: linear-gradient(135deg, #E8917C, #C87860); color: #fff;
  text-decoration: none; font-size: 15px; letter-spacing: 0.02em;
  transition: transform .4s cubic-bezier(.25,.46,.45,.94), box-shadow .4s ease;
  box-shadow: 0 6px 28px rgba(232,145,124,0.45);
}
.hero-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 40px rgba(232,145,124,0.55); }
.hero-cta-outline {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 36px; border-radius: 100px; font-weight: 500;
  border: 1.5px solid rgba(255,255,255,0.55); color: #fff;
  text-decoration: none; font-size: 15px; letter-spacing: 0.02em;
  transition: background .3s, border-color .3s;
  backdrop-filter: blur(4px);
  background: rgba(255,255,255,0.06);
}
.hero-cta-outline:hover { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.8); }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(253,248,244,0.15);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px; padding: 9px 20px;
  font-size: 13px; color: #fff; font-weight: 400;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

/* ─── Social Proof Bar ──────────────────────────────────── */
.proof-bar {
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: #fff;
  border-bottom: 1px solid rgba(232,145,124,0.12);
}
.proof-item {
  padding: 32px 24px;
  border-right: 1px solid rgba(232,145,124,0.1);
  text-align: center;
  position: relative;
}
.proof-item:last-child { border-right: none; }
.proof-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem; font-weight: 600; color: #C87860; line-height: 1;
  margin-bottom: 6px;
}
.proof-label {
  font-size: 0.75rem; color: #A08070; letter-spacing: 0.06em;
  font-weight: 400;
}
@media (max-width: 768px) {
  .proof-bar { grid-template-columns: repeat(2, 1fr); }
  .proof-item { border-bottom: 1px solid rgba(232,145,124,0.1); }
  .proof-item:nth-child(even) { border-right: none; }
}

/* ─── Section Utilities ─────────────────────────────────── */
.section-eyebrow {
  font-family: 'Playfair Display', serif;
  font-style: italic; font-weight: 400;
  font-size: 1.05rem; color: #C87860; margin-bottom: 1rem;
  letter-spacing: 0.02em;
}
.section-title {
  font-size: clamp(2.2rem, 4.5vw, 4.5rem); font-weight: 600; line-height: 1.08;
  color: #2C1B14;
}

/* ─── Tour Cards ────────────────────────────────────────── */
.tour-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}
.tour-card {
  border-radius: 28px; overflow: hidden; cursor: pointer;
  background: #fff;
  box-shadow: 0 2px 20px rgba(200,120,96,0.07), 0 0 0 1px rgba(232,145,124,0.06);
  transition: transform .5s cubic-bezier(.25,.46,.45,.94), box-shadow .5s ease;
  display: flex; flex-direction: column;
}
.tour-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(200,120,96,0.14), 0 0 0 1px rgba(232,145,124,0.1);
}
.tour-card-img {
  position: relative; height: 260px; overflow: hidden; flex-shrink: 0;
}
.tour-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s cubic-bezier(.25,.46,.45,.94);
}
.tour-card:hover .tour-card-img img { transform: scale(1.05); }
.tour-card-badge {
  position: absolute; top: 16px; left: 16px;
  background: rgba(232,145,124,0.9); color: #fff;
  font-size: 11px; font-weight: 500; letter-spacing: 0.05em;
  padding: 5px 14px; border-radius: 100px;
  backdrop-filter: blur(8px);
}
.tour-card-spots {
  position: absolute; top: 16px; right: 16px;
  background: rgba(253,248,244,0.88); color: #2C1B14;
  font-size: 11px; font-weight: 500; padding: 5px 12px;
  border-radius: 100px; backdrop-filter: blur(8px);
}
.tour-card-spots.urgent { background: rgba(232,145,124,0.92); color: #fff; }
.tour-card-body { padding: 24px 28px; flex: 1; display: flex; flex-direction: column; }
.tour-card-tag {
  font-family: 'Playfair Display', serif;
  font-style: italic; font-size: 0.85rem; font-weight: 400;
  color: #C87860; margin-bottom: 8px;
}
.tour-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem; font-weight: 600; color: #2C1B14;
  margin-bottom: 8px; line-height: 1.25;
}
.tour-card-desc { font-size: 0.875rem; color: #7A6057; line-height: 1.65; margin-bottom: 16px; flex: 1; font-weight: 300; }
.tour-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px; border-top: 1px solid rgba(232,145,124,0.1);
  margin-top: auto;
}
.tour-card-price { font-size: 1.05rem; font-weight: 600; color: #2C1B14; }
.tour-card-price span { font-size: 0.8rem; font-weight: 400; color: #A08070; }
.tour-card-cta {
  font-size: 13px; font-weight: 500; letter-spacing: 0.02em;
  color: #C87860; text-decoration: none;
  display: flex; align-items: center; gap: 6px;
  transition: gap .3s, color .3s;
}
.tour-card:hover .tour-card-cta { gap: 10px; color: #E8917C; }
.tour-next-date { font-size: 0.78rem; color: #A08070; margin-top: 6px; font-weight: 300; }

/* ─── Filter Tabs ───────────────────────────────────────── */
.filter-tabs { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-tab {
  padding: 9px 20px; border-radius: 100px;
  font-size: 13px; font-weight: 400; letter-spacing: 0.02em;
  cursor: pointer; border: 1px solid rgba(232,145,124,0.25);
  color: #A08070; background: transparent;
  transition: all .25s ease;
}
.filter-tab.active, .filter-tab:hover {
  background: #E8917C; color: #fff; border-color: #E8917C;
}

/* ─── Testimonials ──────────────────────────────────────── */
.testimonial-track {
  display: flex; gap: 24px;
  animation: scrollTestimonials 55s linear infinite;
  width: max-content;
}
.testimonial-track:hover { animation-play-state: paused; }
@keyframes scrollTestimonials { to { transform: translateX(-50%); } }
.testimonial-card {
  flex: 0 0 380px; padding: 36px; border-radius: 28px;
  background: #fff;
  box-shadow: 0 2px 20px rgba(200,120,96,0.07), 0 0 0 1px rgba(232,145,124,0.06);
}
.testimonial-stars { color: #D4A574; font-size: 0.9rem; margin-bottom: 14px; letter-spacing: 3px; }
.testimonial-quote {
  font-size: 0.98rem; line-height: 1.8; color: #2C1B14;
  font-style: italic; margin-bottom: 24px;
  font-family: 'Playfair Display', serif; font-weight: 400;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 600; flex-shrink: 0;
}
.testimonial-name { font-weight: 600; font-size: 0.875rem; color: #2C1B14; }
.testimonial-meta { font-size: 0.75rem; color: #A08070; margin-top: 2px; font-weight: 300; }
@media (max-width: 768px) { .testimonial-card { flex: 0 0 300px; padding: 28px; } }

/* ─── How It Works ──────────────────────────────────────── */
.steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.step-card {
  text-align: center; padding: 48px 32px;
  border-radius: 32px;
  background: linear-gradient(135deg, #FDF8F4, #FEF0EC);
  border: 1px solid rgba(232,145,124,0.1);
  position: relative;
}
.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 4.5rem; font-weight: 400; font-style: italic;
  color: rgba(200,120,96,0.2); line-height: 1; margin-bottom: 12px;
}
.step-title { font-size: 1.25rem; font-weight: 600; margin-bottom: 12px; color: #2C1B14; }
.step-desc { font-size: 0.88rem; color: #7A6057; line-height: 1.7; font-weight: 300; }
.step-connector {
  position: absolute; top: 50%; right: -16px;
  width: 32px; height: 1px; background: rgba(232,145,124,0.3); z-index: 10;
}
@media (max-width: 1024px) { .steps-grid { grid-template-columns: 1fr; gap: 16px; } .step-connector { display: none; } }

/* ─── Trust Badges ──────────────────────────────────────── */
.trust-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.trust-card {
  display: flex; align-items: flex-start; gap: 18px;
  padding: 28px; border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(232,145,124,0.1);
}
.trust-icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: #FEF0EC; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.trust-title { font-size: 1rem; font-weight: 600; margin-bottom: 6px; color: #2C1B14; }
.trust-desc { font-size: 0.85rem; color: #7A6057; line-height: 1.65; font-weight: 300; }
@media (max-width: 1024px) { .trust-grid { grid-template-columns: 1fr; } }

/* ─── FAQ ───────────────────────────────────────────────── */
.faq-item { border-bottom: 1px solid rgba(200,120,96,0.12); }
.faq-toggle {
  width: 100%; text-align: left; padding: 26px 0;
  font-size: 1.1rem; font-weight: 500; background: none; border: none;
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  font-family: 'Playfair Display', serif; color: #2C1B14;
  transition: color .3s;
}
.faq-toggle:hover { color: #C87860; }
.faq-icon {
  width: 30px; height: 30px; border-radius: 50%;
  border: 1px solid rgba(232,145,124,0.4);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: background .3s, border-color .3s;
}
.faq-icon svg { transition: transform .4s ease; color: #C87860; }
.faq-item.open .faq-icon { background: #E8917C; border-color: #E8917C; }
.faq-item.open .faq-icon svg { transform: rotate(45deg); color: #fff; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .5s cubic-bezier(.25,.46,.45,.94); }
.faq-answer-inner { padding: 0 0 26px; font-size: 0.93rem; color: #7A6057; line-height: 1.8; max-width: 680px; font-weight: 300; }

/* ─── Booking Form ──────────────────────────────────────── */
.booking-split { display: grid; grid-template-columns: 1fr 1fr; min-height: 100vh; }
.booking-visual { position: relative; overflow: hidden; }
.booking-visual img { position: absolute; inset: 0; width: 100%; height: 120%; object-fit: cover; will-change: transform; }
.booking-visual-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(212,140,100,0.35) 0%, rgba(44,27,20,0.5) 100%);
}
.booking-form-wrap {
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 60px;
  background: #fff;
}
.floating-input { position: relative; margin-bottom: 18px; }
.floating-input input,
.floating-input select,
.floating-input textarea {
  width: 100%; padding: 18px 16px 8px;
  border: 1px solid rgba(200,120,96,0.2); border-radius: 14px;
  font-size: 0.95rem; font-family: 'Inter', sans-serif;
  background: #FEFCFA; color: #2C1B14; outline: none;
  transition: border-color .3s, box-shadow .3s;
}
.floating-input input:focus,
.floating-input select:focus,
.floating-input textarea:focus {
  border-color: #E8917C;
  box-shadow: 0 0 0 3px rgba(232,145,124,0.1);
}
.floating-input label {
  position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
  font-size: 0.93rem; color: #A08070; pointer-events: none; transition: all .3s;
  font-weight: 300;
}
.floating-input input:focus ~ label,
.floating-input input:not(:placeholder-shown) ~ label,
.floating-input textarea:focus ~ label,
.floating-input textarea:not(:placeholder-shown) ~ label {
  top: 8px; font-size: 0.68rem; color: #C87860; font-weight: 500;
}
.floating-input textarea ~ label { top: 18px; transform: none; }
.floating-input textarea { resize: none; }
.floating-input select option { color: #2C1B14; }
@media (max-width: 1024px) {
  .booking-split { grid-template-columns: 1fr; }
  .booking-visual { min-height: 42vh; }
  .booking-form-wrap { padding: 56px 24px; }
}

/* ─── Gallery Scroll ────────────────────────────────────── */
.gallery-scroll {
  display: flex; gap: 18px; overflow-x: auto;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
  padding: 20px 60px; scrollbar-width: none;
}
.gallery-scroll::-webkit-scrollbar { display: none; }
.gallery-item {
  flex: 0 0 300px; height: 400px; border-radius: 24px;
  overflow: hidden; scroll-snap-align: start; position: relative; cursor: none;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-label {
  position: absolute; bottom: 16px; left: 16px;
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: 0.85rem; color: #fff;
  background: rgba(44,27,20,0.35); padding: 5px 14px;
  border-radius: 100px; backdrop-filter: blur(8px);
}
@media (max-width: 768px) { .gallery-item { flex: 0 0 250px; height: 330px; } }

/* ─── Philosophy ────────────────────────────────────────── */
.philosophy-section { position: relative; overflow: hidden; }
.philosophy-section .diag-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #FDF8F4 50%, #F5DDD5 50%);
}
.philosophy-section .diag-content {
  position: relative; z-index: 10; padding: 120px 60px;
  display: flex; align-items: center; justify-content: center; min-height: 100vh;
}
.philosophy-text {
  max-width: 800px; font-size: clamp(1.8rem, 4.5vw, 4rem);
  font-weight: 500; line-height: 1.3;
  font-family: 'Playfair Display', serif; color: #2C1B14;
}
.philosophy-text .highlight { color: #C87860; font-style: italic; }
@media (max-width: 1024px) { .philosophy-section .diag-content { padding: 80px 24px; } }

/* ─── Pinned Intro ──────────────────────────────────────── */
.pinned-intro { position: relative; }
.pinned-intro .pinned-wrap {
  position: sticky; top: 0; min-height: 100vh;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.pinned-intro .scroll-spacer { height: 300vh; }
.pinned-intro .bg-cycle { position: absolute; inset: 0; }
.pinned-intro .bg-cycle .layer { position: absolute; inset: 0; opacity: 0; transition: opacity 1.2s ease; }
.pinned-intro .bg-cycle .layer.active { opacity: 1; }
.pinned-intro .bg-cycle .layer img { width: 100%; height: 100%; object-fit: cover; }
.pinned-intro .bg-cycle .layer::after { content: ''; position: absolute; inset: 0; background: rgba(44,27,20,0.38); }
.pinned-intro .cycle-text {
  position: relative; z-index: 10; text-align: center; color: #fff;
  font-size: clamp(2.5rem, 6vw, 6rem); font-weight: 500; line-height: 1.15;
  font-family: 'Playfair Display', serif; font-style: italic;
}
.pinned-intro .cycle-text .word { display: inline-block; transition: transform .6s ease, opacity .6s ease; }
.pinned-intro .cycle-text .word.exit { transform: translateY(-40px); opacity: 0; }
.pinned-intro .cycle-text .word.enter { transform: translateY(40px); opacity: 0; }

/* ─── Marquee ───────────────────────────────────────────── */
.marquee { overflow: hidden; white-space: nowrap; }
.marquee-track { display: inline-flex; gap: 40px; align-items: center; animation: marqueeScroll 24s linear infinite; }
@keyframes marqueeScroll { to { transform: translateX(-50%); } }
.marquee-item {
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: 1.8rem; font-weight: 400;
  color: rgba(200,120,96,0.18); white-space: nowrap;
}
.marquee-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: rgba(212,165,116,0.3); display: inline-block;
}

/* ─── Floating WhatsApp ─────────────────────────────────── */
.float-wa {
  position: fixed; bottom: 28px; right: 28px; z-index: 200;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.35);
  transition: transform .3s, box-shadow .3s;
  text-decoration: none;
}
.float-wa:hover { transform: scale(1.08); box-shadow: 0 10px 36px rgba(37,211,102,0.45); }
.float-wa svg { width: 26px; height: 26px; }

/* ─── Scroll Reveal ─────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity .9s ease, transform .9s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .35s; }
.reveal-delay-4 { transition-delay: .5s; }
.reveal-delay-5 { transition-delay: .65s; }

/* ─── Tour Detail Page ──────────────────────────────────── */
.detail-hero { position: relative; height: 70vh; min-height: 500px; overflow: hidden; }
.detail-hero-img { position: absolute; inset: 0; width: 100%; height: 120%; object-fit: cover; will-change: transform; }
.detail-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(44,27,20,0.18) 0%, rgba(44,27,20,0.58) 100%);
}
.detail-hero-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 60px; color: #fff; }
.detail-breadcrumb { font-size: 0.8rem; opacity: 0.65; margin-bottom: 14px; font-weight: 300; }
.detail-breadcrumb a { color: inherit; text-decoration: none; }
.detail-breadcrumb a:hover { opacity: 1; }
.detail-title { font-size: clamp(2.2rem, 5.5vw, 4.5rem); font-weight: 600; line-height: 1.05; margin-bottom: 16px; }
.detail-meta { display: flex; gap: 20px; flex-wrap: wrap; }
.detail-meta-item { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; opacity: 0.88; font-weight: 300; }
.detail-body { max-width: 1400px; margin: 0 auto; padding: 80px 60px; display: grid; grid-template-columns: 1fr 360px; gap: 80px; align-items: start; }
.detail-sticky { position: sticky; top: 100px; }
.detail-book-card {
  background: #fff; border-radius: 28px; padding: 36px;
  box-shadow: 0 4px 40px rgba(200,120,96,0.1), 0 0 0 1px rgba(232,145,124,0.08);
}
@media (max-width: 1024px) { .detail-body { grid-template-columns: 1fr; padding: 56px 24px; gap: 40px; } .detail-hero-content { padding: 36px 24px; } }

/* ─── Includes List ─────────────────────────────────────── */
.includes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }
.include-item { display: flex; align-items: center; gap: 10px; font-size: 0.875rem; padding: 10px 0; color: #7A6057; }
.include-dot { width: 6px; height: 6px; border-radius: 50%; background: #E8917C; flex-shrink: 0; }
@media (max-width: 768px) { .includes-grid { grid-template-columns: 1fr; } }

/* ─── Itinerary ─────────────────────────────────────────── */
.itinerary-item { display: flex; gap: 24px; padding: 22px 0; border-bottom: 1px solid rgba(200,120,96,0.1); }
.itinerary-time {
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: 0.85rem; color: #C87860; flex-shrink: 0; width: 72px; padding-top: 2px;
}
.itinerary-title { font-weight: 600; margin-bottom: 4px; font-size: 0.95rem; color: #2C1B14; }
.itinerary-desc { font-size: 0.875rem; color: #7A6057; line-height: 1.65; font-weight: 300; }

/* ─── Wave Divider ──────────────────────────────────────── */
.wave-divider { position: relative; width: 100%; overflow: hidden; line-height: 0; }
.wave-divider svg { display: block; width: 100%; height: 80px; }

/* ─── Footer ────────────────────────────────────────────── */
footer.bg-charcoal { background: #2C1B14 !important; }
