:root {
  --primary: #1F2A44;
  --accent: #D4AF37;
  --bg: #F5F3EE;
  --white: #ffffff;
  --text: #2c2c2c;
  --muted: #6b7280;
  --border: #e5e1d8;
  --radius: 8px;
  --shadow: 0 4px 20px rgba(31,42,68,0.12);
}

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

html { font-size: 16px; scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--bg); line-height: 1.6; }

h1, h2, h3, h4 { font-family: 'Cinzel', serif; line-height: 1.25; color: var(--primary); }
h1 { font-size: clamp(1.8rem, 4vw, 3rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2.2rem); }
h3 { font-size: 1.2rem; }

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
address { font-style: normal; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* BUTTONS */
.btn {
  display: inline-block; padding: 12px 28px; border-radius: var(--radius);
  font-weight: 600; font-size: 0.95rem; cursor: pointer; transition: all 0.2s; text-align: center;
}
.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: #162035; }
.btn-accent { background: var(--accent); color: var(--primary); }
.btn-accent:hover { background: #c49d2a; }
.btn-outline { border: 2px solid var(--accent); color: var(--primary); background: transparent; }
.btn-outline:hover { background: var(--accent); }
.btn-secondary { background: transparent; border: 2px solid var(--accent); color: #ffffff; }
.btn-secondary:hover { background: var(--accent); color: #ffffff; }
.btn-lg { padding: 16px 40px; font-size: 1.05rem; }

/* HEADER */
.site-header { background: var(--primary); position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 10px rgba(0,0,0,0.3); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.logo { font-family: 'Cinzel', serif; font-size: 1.2rem; color: var(--white); font-weight: 700; letter-spacing: 0.05em; }
.main-nav ul { display: flex; align-items: center; gap: 4px; }
.main-nav a { color: rgba(255,255,255,0.85); font-size: 0.875rem; padding: 8px 14px; border-radius: 6px; transition: all 0.25s ease; }
.main-nav a:hover { background: rgba(212,175,55,0.15); color: var(--accent); }
.main-nav a.active { color: var(--accent); background: rgba(212,175,55,0.1); }
.hamburger { display: none; background: none; border: none; color: var(--white); font-size: 1.5rem; cursor: pointer; }

/* HERO */
.hero { position: relative; min-height: 60vh; display: flex; align-items: center; background: var(--primary); overflow: hidden; }
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.45; }
.hero-content { position: relative; z-index: 2; max-width: 700px; padding: 80px 20px; color: var(--white); }
.hero-content .tagline { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--accent); margin-bottom: 16px; font-family: 'Cinzel', serif; }
.hero-content h1 { color: var(--white); margin-bottom: 20px; }
.hero-content p { font-size: 1.1rem; opacity: 0.9; margin-bottom: 32px; max-width: 560px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* HERO — TOUR PAGES */
.hero-tour { min-height: 60vh; }
.hero-tour .hero-content { padding: 60px 20px; }
.hero-tour .hero-content h1 { font-size: clamp(1.5rem, 3.5vw, 2.4rem); }

/* SECTIONS */
section { padding: 72px 0; }
.section-title { text-align: center; margin-bottom: 48px; }
.section-title h2 { margin-bottom: 12px; }
.section-title p { color: var(--muted); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }

/* ADVANTAGES */
.advantages { background: var(--white); }
.adv-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 32px; }
.adv-card { background: var(--bg); border-radius: var(--radius); padding: 36px 28px; text-align: center; border: 1px solid var(--border); }
.adv-icon { font-size: 2.8rem; margin-bottom: 16px; }
.adv-card h3 { color: var(--primary); margin-bottom: 12px; }
.adv-card p { color: var(--muted); font-size: 0.95rem; }

/* HISTORY */
.history-section { background: var(--primary); color: var(--white); }
.history-section h2 { color: var(--accent); }
.history-content { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; margin-bottom: 48px; }
.history-content p { opacity: 0.9; margin-bottom: 16px; font-size: 1rem; }
.history-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.fact-box { text-align: center; padding: 28px 20px; border: 1px solid rgba(212,175,55,0.3); border-radius: var(--radius); }
.fact-box .fact-number { font-family: 'Cinzel', serif; font-size: 2rem; color: var(--accent); display: block; }
.fact-box .fact-label { font-size: 0.9rem; opacity: 0.8; margin-top: 4px; }

/* TOURS HUB */
.tours-hub { background: var(--bg); }
.tours-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 28px; }
.tour-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform 0.2s; }
.tour-card:hover { transform: translateY(-4px); }
.tour-card-img { width: 100%; height: 220px; object-fit: cover; }
.tour-card-img-placeholder { width: 100%; height: 220px; background: linear-gradient(135deg, var(--primary), #2d3f63); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.4); font-size: 3rem; }
.tour-card-body { padding: 24px; }
.tour-card-body h2 { font-size: 1.1rem; margin-bottom: 8px; }
.tour-card-body .hook { color: var(--muted); font-size: 0.9rem; margin-bottom: 16px; line-height: 1.5; }
.tour-card-rating { display: flex; align-items: center; gap: 6px; font-size: 0.85rem; margin-bottom: 16px; }
.tour-card-rating .stars { color: var(--accent); }
.tour-card-rating .count { color: var(--muted); }
.tour-card-price { font-size: 0.9rem; color: var(--muted); margin-bottom: 16px; }
.tour-card-price strong { color: var(--primary); font-size: 1.1rem; }
.tour-card-btns { display: flex; gap: 10px; }
.tour-card-btns .btn { flex: 1; font-size: 0.85rem; padding: 10px 16px; }

/* FAQ */
.faq-section { background: var(--white); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question { width: 100%; background: none; border: none; padding: 20px 0; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-family: 'Cinzel', serif; font-size: 1rem; color: var(--primary); text-align: left; gap: 16px; }
.faq-question .faq-icon { flex-shrink: 0; font-size: 1.2rem; color: var(--accent); transition: transform 0.2s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p { padding: 0 0 20px; color: var(--muted); font-size: 0.95rem; line-height: 1.7; }

/* CTA BANNER */
.cta-banner { background: linear-gradient(135deg, var(--primary) 0%, #2d3f63 100%); text-align: center; padding: 64px 20px; }
.cta-banner h2 { color: var(--white); margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,0.85); margin-bottom: 32px; font-size: 1.05rem; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-banner-sm { padding: 40px 20px; }
.cta-banner-sm h3 { font-family: 'Cinzel', serif; color: var(--white); margin-bottom: 12px; font-size: 1.2rem; }
.cta-banner-sm p { color: rgba(255,255,255,0.8); margin-bottom: 20px; font-size: 0.95rem; }

/* REVIEWS */
.reviews-section { background: var(--bg); }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.review-card { background: var(--white); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); }
.review-stars { color: var(--accent); margin-bottom: 12px; font-size: 1.1rem; }
.review-text { font-size: 0.95rem; color: var(--text); margin-bottom: 16px; line-height: 1.65; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--primary); display: flex; align-items: center; justify-content: center; color: var(--accent); font-family: 'Cinzel', serif; font-size: 1.1rem; font-weight: 700; flex-shrink: 0; }
.review-name { font-weight: 600; font-size: 0.95rem; }
.review-meta { font-size: 0.8rem; color: var(--muted); }

/* TOUR PAGE SPECIFICS */
.tour-intro { background: var(--white); }
.tour-intro-grid { display: grid; grid-template-columns: 1fr 380px; gap: 48px; align-items: start; }
.tour-description h3 { color: var(--primary); margin: 24px 0 8px; font-size: 1.1rem; }
.tour-description p { color: var(--muted); margin-bottom: 12px; line-height: 1.7; }
.tour-highlights { margin-top: 24px; }
.tour-highlights h4 { font-family: 'Cinzel', serif; color: var(--primary); margin-bottom: 12px; }
.tour-highlights li { display: flex; gap: 10px; margin-bottom: 10px; font-size: 0.95rem; color: var(--text); }
.tour-highlights li::before { content: "✓"; color: var(--accent); font-weight: 700; flex-shrink: 0; }

/* BOOKING CARD */
.booking-card { background: var(--primary); border-radius: var(--radius); padding: 32px; color: var(--white); position: sticky; top: 84px; }
.booking-card .price-block { margin-bottom: 20px; }
.booking-card .from-label { font-size: 0.85rem; opacity: 0.7; }
.booking-card .price { font-family: 'Cinzel', serif; font-size: 2rem; color: var(--accent); }
.booking-card .per-person { font-size: 0.85rem; opacity: 0.7; }
.booking-card .booking-meta { margin: 16px 0; font-size: 0.9rem; opacity: 0.85; }
.booking-card .booking-meta li { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.booking-card .booking-meta .meta-icon { color: var(--accent); font-size: 1rem; flex-shrink: 0; }
.booking-card .btn { width: 100%; margin-top: 8px; }
.booking-card .rating-row { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; font-size: 0.9rem; }
.booking-card .rating-stars { color: var(--accent); }
.booking-card .rating-count { opacity: 0.7; }

/* TOUR DETAILS */
.tour-details-section { background: var(--bg); }
.details-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 16px; }
.detail-item { background: var(--white); border-radius: var(--radius); padding: 20px; text-align: center; border: 1px solid var(--border); }
.detail-icon { font-size: 1.8rem; margin-bottom: 8px; }
.detail-label { font-size: 0.75rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; }
.detail-value { font-size: 0.95rem; font-weight: 600; color: var(--primary); }

/* ROUTE TIMELINE */
.route-section { background: var(--white); }
.timeline { position: relative; max-width: 700px; margin: 0 auto; }
.timeline::before { content: ""; position: absolute; left: 18px; top: 8px; bottom: 8px; width: 2px; background: var(--accent); opacity: 0.4; }
.timeline-item { position: relative; padding-left: 52px; margin-bottom: 32px; }
.timeline-dot { position: absolute; left: 10px; top: 4px; width: 18px; height: 18px; background: var(--accent); border-radius: 50%; border: 3px solid var(--white); box-shadow: 0 0 0 2px var(--accent); }
.timeline-item h4 { font-family: 'Cinzel', serif; font-size: 1rem; color: var(--primary); margin-bottom: 4px; }
.timeline-item .timeline-time { font-size: 0.8rem; color: var(--accent); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 6px; }
.timeline-item p { font-size: 0.9rem; color: var(--muted); line-height: 1.6; }

/* EXPERIENCE CARDS */
.experience-section { background: var(--bg); }
.experience-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; }
.exp-card { background: var(--white); border-radius: var(--radius); padding: 24px 20px; text-align: center; border: 1px solid var(--border); }
.exp-card .exp-icon { font-size: 2rem; margin-bottom: 10px; }
.exp-card p { font-size: 0.9rem; color: var(--muted); }

/* INCLUDES / EXCLUDES */
.inc-exc-section { background: var(--white); }
.inc-exc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; max-width: 800px; margin: 0 auto; }
.inc-list h3, .exc-list h3 { color: var(--primary); margin-bottom: 16px; font-size: 1rem; }
.inc-list li, .exc-list li { display: flex; gap: 10px; margin-bottom: 12px; font-size: 0.95rem; }
.inc-list li::before { content: "✓"; color: #16a34a; font-weight: 700; flex-shrink: 0; }
.exc-list li::before { content: "✗"; color: #dc2626; font-weight: 700; flex-shrink: 0; }

/* MEETING POINT */
.meeting-section { background: var(--bg); }
.meeting-content { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
.meeting-info h3 { color: var(--primary); margin-bottom: 12px; }
.meeting-info p { color: var(--muted); margin-bottom: 8px; font-size: 0.95rem; }
.meeting-map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.meeting-map iframe { width: 100%; height: 300px; border: none; display: block; }

/* KNOW ACCORDION */
.know-section { background: var(--white); }
.know-section .faq-list { max-width: 800px; margin: 0 auto; }

/* STAR */
.star { color: var(--accent); }

/* BACK LINK */
.back-link { padding: 16px 0; }
.back-link a { color: var(--primary); font-size: 0.9rem; display: inline-flex; align-items: center; gap: 6px; }
.back-link a:hover { color: var(--accent); }

/* FOOTER */
.site-footer { background: #111827; color: rgba(255,255,255,0.75); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 2fr; gap: 40px; padding-bottom: 48px; }
.footer-brand h3 a { color: var(--accent); font-family: 'Cinzel', serif; font-size: 1.2rem; }
.footer-brand p { font-size: 0.9rem; margin-top: 12px; line-height: 1.7; }
.footer-brand a { color: var(--accent); }
.footer-tours h4, .footer-links h4, .footer-contact h4 { font-family: 'Cinzel', serif; color: var(--white); font-size: 0.95rem; margin-bottom: 16px; }
.footer-tours li, .footer-links li { margin-bottom: 10px; }
.footer-tours a, .footer-links a { font-size: 0.9rem; color: rgba(255,255,255,0.65); transition: color 0.2s; }
.footer-tours a:hover, .footer-links a:hover { color: var(--accent); }
.footer-contact address { font-size: 0.9rem; line-height: 1.7; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; }
.footer-bottom p { font-size: 0.85rem; color: rgba(255,255,255,0.45); text-align: center; }
.affiliate-disclosure { font-size: 0.78rem; color: rgba(255,255,255,0.3); margin-top: 6px; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .history-content { grid-template-columns: 1fr; }
  .history-facts { grid-template-columns: 1fr 1fr; }
  .tour-intro-grid { grid-template-columns: 1fr; }
  .booking-card { position: static; }
  .inc-exc-grid { grid-template-columns: 1fr; }
  .meeting-content { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
  .hamburger { display: block; }
  .main-nav { display: none; position: absolute; top: 64px; left: 0; right: 0; background: var(--primary); padding: 16px 20px; }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; gap: 4px; }
  .main-nav a { display: block; padding: 10px 12px; }
  .hero { min-height: 60vh; } .hero-tour { min-height: 60vh; }
  .hero-content { padding: 60px 20px; }
  .history-facts { grid-template-columns: 1fr; }
  .tours-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .adv-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
}
