
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --navy:   #1F2A44;
  --gold:   #D4AF37;
  --bg:     #F5F1E8;
  --white:  #ffffff;
  --gray:   #6b7280;
  --light:  #f9f7f2;
  --border: #e5e0d5;
  --shadow: 0 4px 24px rgba(31,42,68,.10);
}

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{font-family:'Inter',sans-serif;background:var(--bg);color:var(--navy);line-height:1.7}
img{max-width:100%;height:auto;display:block}
a{color:inherit;text-decoration:none}

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4{font-family:'Cinzel',serif;line-height:1.25}
h1{font-size:clamp(2rem,5vw,3.5rem);font-weight:700}
h2{font-size:clamp(1.5rem,3vw,2.25rem);font-weight:600}
h3{font-size:1.25rem;font-weight:600}
p{margin-bottom:1rem}

/* ── BUTTONS ── */
.btn{display:inline-block;padding:.75rem 1.75rem;border-radius:4px;font-weight:600;font-size:.95rem;cursor:pointer;transition:opacity .2s,transform .2s;text-align:center}
.btn:hover{opacity:.88;transform:translateY(-1px)}
.btn-gold{background:var(--gold);color:var(--navy)}
.btn-outline{background:transparent;border:2px solid var(--gold);color:var(--gold)}

/* ── HEADER ── */
.site-header{position:sticky;top:0;z-index:100;background:var(--navy);box-shadow:0 2px 12px rgba(0,0,0,.2)}
.header-inner{max-width:1200px;margin:0 auto;padding:.9rem 1.5rem;display:flex;align-items:center;justify-content:space-between;gap:1rem}
.logo{font-family:'Cinzel',serif;font-size:1.15rem;font-weight:700;color:var(--gold);white-space:nowrap}
.logo span{color:var(--white)}

.main-nav{display:flex;align-items:center;gap:1.5rem}
.main-nav a{color:var(--white);font-size:.9rem;font-weight:500;transition:color .2s;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:22ch}
.main-nav a:hover{color:var(--gold)}

/* hamburger */
.hamburger{display:none;flex-direction:column;gap:5px;cursor:pointer;padding:4px}
.hamburger span{display:block;width:24px;height:2px;background:var(--white);transition:.3s}
.hamburger.open span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.hamburger.open span:nth-child(2){opacity:0}
.hamburger.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

/* lang switcher */
.lang-switcher{position:relative}
.lang-btn{display:flex;align-items:center;gap:.4rem;background:transparent;border:1px solid rgba(255,255,255,.3);color:var(--white);padding:.4rem .8rem;border-radius:4px;cursor:pointer;font-size:.85rem;font-family:'Inter',sans-serif}
.lang-btn:hover{border-color:var(--gold);color:var(--gold)}
.lang-dropdown{display:none;position:absolute;right:0;top:calc(100% + 6px);background:var(--white);border:1px solid var(--border);border-radius:6px;min-width:160px;box-shadow:var(--shadow);z-index:200;max-height:320px;overflow-y:auto}
.lang-dropdown.open{display:block}
.lang-dropdown a{display:flex;align-items:center;gap:.5rem;padding:.6rem 1rem;font-size:.85rem;color:var(--navy);transition:background .15s}
.lang-dropdown a:hover{background:var(--light)}
.lang-dropdown a.active{font-weight:600;color:var(--gold)}

/* ── HERO ── */
.hero{position:relative;min-height:92vh;display:flex;align-items:center;overflow:hidden}
.hero-bg{position:absolute;inset:0;background-size:cover;background-position:center;filter:brightness(.45)}
.hero-content{position:relative;z-index:2;max-width:800px;margin:0 auto;padding:4rem 1.5rem;text-align:center;color:var(--white)}
.hero-content h1{color:var(--white);margin-bottom:1rem;text-shadow:0 2px 12px rgba(0,0,0,.4)}
.hero-slogan{font-size:1.2rem;color:rgba(255,255,255,.9);margin-bottom:1.25rem}
.hero-intro{font-size:1rem;color:rgba(255,255,255,.8);max-width:600px;margin:0 auto 2rem}
.hero-ctas{display:flex;gap:1rem;justify-content:center;flex-wrap:wrap}

/* ── SECTIONS ── */
.section{padding:5rem 1.5rem}
.section-inner{max-width:1200px;margin:0 auto}
.section-title{text-align:center;margin-bottom:3rem}
.section-title h2{margin-bottom:.5rem}
.section-title p{color:var(--gray);font-size:1.05rem}

/* ── ADVANTAGES ── */
.adv-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:2rem}
.adv-card{background:var(--white);border-radius:10px;padding:2rem;box-shadow:var(--shadow);text-align:center;border-top:3px solid var(--gold)}
.adv-icon{font-size:2.5rem;margin-bottom:1rem}
.adv-card h3{margin-bottom:.75rem;color:var(--navy)}

/* ── HISTORY ── */
.history-section{background:var(--navy);color:var(--white)}
.history-section h2{color:var(--gold);margin-bottom:1.5rem}
.history-section p{color:rgba(255,255,255,.85)}
.history-grid{display:grid;grid-template-columns:1fr 1fr;gap:3rem;align-items:start}
.facts-row{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem;margin-top:2rem}
.fact-box{background:rgba(255,255,255,.07);border:1px solid rgba(212,175,55,.3);border-radius:8px;padding:1.5rem;text-align:center}
.fact-box .fact-value{font-family:'Cinzel',serif;font-size:2rem;font-weight:700;color:var(--gold)}
.fact-box .fact-label{font-size:.85rem;color:rgba(255,255,255,.7);margin-top:.25rem}

/* ── TOUR CARDS ── */
.tours-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(320px,1fr));gap:2rem}
.tour-card{background:var(--white);border-radius:12px;overflow:hidden;box-shadow:var(--shadow);display:flex;flex-direction:column;transition:transform .2s,box-shadow .2s}
.tour-card:hover{transform:translateY(-4px);box-shadow:0 12px 40px rgba(31,42,68,.15)}
.tour-card-img{width:100%;height:220px;object-fit:cover}
.tour-card-body{padding:1.5rem;flex:1;display:flex;flex-direction:column}
.tour-card-body h2{font-size:1.2rem;margin-bottom:.5rem}
.tour-meta{display:flex;gap:1rem;flex-wrap:wrap;margin:.5rem 0 .75rem;font-size:.85rem;color:var(--gray)}
.tour-meta .badge{background:var(--gold);color:var(--navy);padding:.15rem .6rem;border-radius:20px;font-size:.78rem;font-weight:600}
.tour-hook{font-size:.9rem;color:var(--gray);flex:1;margin-bottom:1.25rem}
.tour-ctas{display:flex;gap:.75rem;flex-wrap:wrap}
.tour-ctas .btn{flex:1;min-width:120px;font-size:.88rem;padding:.65rem 1rem}

/* ── FAQ ── */
.faq-list{max-width:800px;margin:0 auto}
.faq-item{border-bottom:1px solid var(--border)}
.faq-question{width:100%;background:none;border:none;text-align:left;padding:1.25rem 0;font-family:'Inter',sans-serif;font-size:1rem;font-weight:600;color:var(--navy);cursor:pointer;display:flex;justify-content:space-between;align-items:center;gap:1rem}
.faq-question::after{content:'+';font-size:1.4rem;color:var(--gold);flex-shrink:0;transition:transform .25s}
.faq-item.open .faq-question::after{transform:rotate(45deg)}
.faq-answer{max-height:0;overflow:hidden;transition:max-height .35s ease,padding .25s}
.faq-item.open .faq-answer{max-height:400px;padding-bottom:1.25rem}
.faq-answer p{color:var(--gray);font-size:.95rem;margin:0}

/* ── CTA BANNER ── */
.cta-banner{background:var(--gold);padding:3rem 1.5rem;text-align:center}
.cta-banner h2{color:var(--navy);margin-bottom:1rem;font-size:1.75rem}
.cta-banner .btn{background:var(--navy);color:var(--white)}

/* ── REVIEWS ── */
.reviews-section{background:var(--light)}
.reviews-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:1.75rem}
.review-card{background:var(--white);border-radius:10px;padding:1.5rem;box-shadow:var(--shadow)}
.review-header{display:flex;align-items:center;gap:.75rem;margin-bottom:.75rem}
.review-avatar{width:48px;height:48px;border-radius:50%;object-fit:cover;flex-shrink:0}
.review-meta h4{font-size:.95rem;font-weight:600}
.review-meta p{font-size:.8rem;color:var(--gray)}
.review-stars{color:var(--gold);font-size:1rem;margin-bottom:.5rem}
.review-text{font-size:.9rem;color:var(--gray);line-height:1.6}
.review-tag{font-size:.75rem;color:var(--gold);font-weight:600;margin-top:.5rem}

/* ── PRE-FOOTER CTA ── */
.prefooter-cta{background:var(--navy);padding:4rem 1.5rem;text-align:center;color:var(--white)}
.prefooter-cta h2{color:var(--white);margin-bottom:.75rem}
.prefooter-cta p{color:rgba(255,255,255,.75);margin-bottom:1.5rem}

/* ── FOOTER ── */
.site-footer{background:#111827;color:rgba(255,255,255,.7);padding:3rem 1.5rem 1.5rem}
.footer-grid{max-width:1200px;margin:0 auto;display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:2.5rem;margin-bottom:2.5rem}
.footer-brand p{font-size:.88rem;line-height:1.7;margin-top:.75rem;color:rgba(255,255,255,.6)}
.footer-col h4{font-family:'Cinzel',serif;font-size:.9rem;color:var(--gold);margin-bottom:1rem;letter-spacing:.05em}
.footer-col ul{list-style:none}
.footer-col ul li{margin-bottom:.5rem}
.footer-col ul li a{font-size:.88rem;color:rgba(255,255,255,.6);transition:color .2s}
.footer-col ul li a:hover{color:var(--gold)}
.footer-bottom{max-width:1200px;margin:0 auto;border-top:1px solid rgba(255,255,255,.1);padding-top:1.25rem;display:flex;justify-content:space-between;flex-wrap:wrap;gap:.5rem;font-size:.82rem;color:rgba(255,255,255,.4)}

/* ── DEDICATED PAGE ── */
.page-hero{position:relative;height:480px;display:flex;align-items:flex-end;overflow:hidden}
.page-hero-bg{position:absolute;inset:0;background-size:cover;background-position:center;filter:brightness(.4)}
.page-hero-content{position:relative;z-index:2;max-width:1200px;width:100%;margin:0 auto;padding:2.5rem 1.5rem;color:var(--white)}
.page-hero-content .back-link{color:rgba(255,255,255,.7);font-size:.9rem;margin-bottom:.75rem;display:inline-block}
.page-hero-content .back-link:hover{color:var(--gold)}
.page-hero-content h1{color:var(--white);font-size:clamp(1.6rem,4vw,2.75rem)}
.page-meta-bar{display:flex;flex-wrap:wrap;gap:1.5rem;margin-top:.75rem}
.page-meta-bar span{font-size:.9rem;color:rgba(255,255,255,.8)}
.page-meta-bar .stars{color:var(--gold)}

.page-content{max-width:1200px;margin:0 auto;padding:3rem 1.5rem;display:grid;grid-template-columns:1fr 360px;gap:3rem;align-items:start}
.page-body h2{font-size:1.35rem;margin:2rem 0 .75rem;color:var(--navy)}
.page-body h2:first-child{margin-top:0}
.page-body ul{padding-left:1.25rem;margin-bottom:1rem}
.page-body ul li{margin-bottom:.4rem;font-size:.95rem;color:var(--gray)}
.page-body p{color:var(--gray);font-size:.95rem}

.itinerary-list{list-style:none;padding:0}
.itinerary-list li{display:flex;gap:.75rem;margin-bottom:.85rem;align-items:flex-start}
.itinerary-list li::before{content:'→';color:var(--gold);flex-shrink:0;font-weight:700}

/* sidebar */
.booking-sidebar{background:var(--white);border-radius:12px;box-shadow:var(--shadow);padding:2rem;position:sticky;top:100px}
.sidebar-price{margin-bottom:1.25rem}
.sidebar-price .price-from{font-size:.85rem;color:var(--gray)}
.sidebar-price .price-value{font-family:'Cinzel',serif;font-size:2.2rem;font-weight:700;color:var(--navy)}
.sidebar-price .price-per{font-size:.85rem;color:var(--gray)}
.sidebar-rating{display:flex;align-items:center;gap:.5rem;margin-bottom:.75rem;font-size:.9rem}
.sidebar-rating .stars{color:var(--gold)}
.sidebar-badge{background:#d1fae5;color:#065f46;font-size:.78rem;font-weight:600;padding:.2rem .6rem;border-radius:20px;margin-bottom:1.25rem;display:inline-block}
.sidebar-features{list-style:none;margin-bottom:1.5rem}
.sidebar-features li{font-size:.88rem;color:var(--gray);padding:.35rem 0;border-bottom:1px solid var(--border);display:flex;align-items:center;gap:.5rem}
.sidebar-features li::before{content:'✓';color:var(--gold);font-weight:700;flex-shrink:0}
.sidebar .btn{width:100%;margin-bottom:.75rem;text-align:center}

/* ── RESPONSIVE ── */
@media(max-width:1024px){
  .history-grid{grid-template-columns:1fr}
  .page-content{grid-template-columns:1fr}
  .booking-sidebar{position:static}
  .footer-grid{grid-template-columns:1fr 1fr}
}
@media(min-width:769px) and (max-width:1100px){
  .main-nav{gap:.9rem}
  .main-nav a{font-size:.82rem}
  .header-inner{padding:.9rem 1rem}
}
@media(max-width:768px){
  .main-nav{display:none}
  .hamburger{display:flex}
  .lang-switcher{position:relative}
  .lang-dropdown{right:0;left:auto;top:calc(100% + 6px)}
  .mobile-menu{display:none;flex-direction:column;background:var(--navy);padding:1.5rem;gap:1rem}
  .mobile-menu.open{display:flex}
  .mobile-menu a{color:var(--white);font-size:1rem;padding:.5rem 0;border-bottom:1px solid rgba(255,255,255,.1)}
  .section{padding:3rem 1rem}
  .hero{min-height:80vh}
  .facts-row{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr}
  .footer-bottom{flex-direction:column;text-align:center}
  .page-hero{height:340px}
}
