/* ── RESET & BASE ── */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{
  --c-black:#0e0d0b;--c-white:#f8f5f0;--c-gold:#c9a96e;--c-gold-lt:#e8d5b0;
  --c-stone:#ede8df;--c-muted:#7a746c;--c-dark:#1c1a16;--c-border:#e0d9cf;
  --ff-serif:'Playfair Display',Georgia,serif;
  --ff-sans:'Raleway',sans-serif;
  --ease:cubic-bezier(.4,0,.2,1);
}
html{scroll-behavior:smooth}
body{font-family:var(--ff-sans);background:var(--c-white);color:var(--c-black);font-weight:300;overflow-x:hidden;padding-top:72px}
img{display:block;max-width:100%}
a{text-decoration:none;color:inherit}
.label{font-size:.67rem;letter-spacing:.3em;text-transform:uppercase;color:var(--c-gold);font-weight:500}

/* ── HEADER ── */
.site-header{
  position:fixed;top:0;left:0;right:0;z-index:100;
  display:flex;align-items:center;justify-content:space-between;
  padding:0 6vw;height:72px;
  background:rgba(14,13,11,.7);
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
  transition:background .35s var(--ease),box-shadow .35s;
}
.site-header.scrolled{
  background:rgba(14,13,11,.97);
  box-shadow:0 1px 0 rgba(255,255,255,.06);
}
.header-logo img{height:60px;width:auto;filter:brightness(0) invert(1)}
.header-nav{display:flex;align-items:center;gap:2rem}
.header-nav a{font-size:.68rem;letter-spacing:.18em;text-transform:uppercase;color:rgba(255,255,255,.85);transition:color .2s;font-weight:500}
.header-nav a:hover,.header-nav a.active{color:var(--c-gold)}
.header-lang{display:flex;align-items:center;gap:.5rem;border-left:1px solid rgba(255,255,255,.2);padding-left:1.4rem;margin-left:.4rem}
.header-lang a{font-size:.65rem;letter-spacing:.14em;text-transform:uppercase;color:rgba(255,255,255,.5);font-weight:600;transition:color .2s}
.header-lang a:hover{color:var(--c-gold)}
.header-lang a.active{color:#fff}
.header-lang span{color:rgba(255,255,255,.25)}
.hamburger{display:none;flex-direction:column;gap:5px;cursor:pointer;padding:6px;background:none;border:none}
.hamburger span{display:block;width:22px;height:1.5px;background:#fff;transition:all .3s}

/* ── FOOTER ── */
.site-footer{background:var(--c-black);color:rgba(255,255,255,.5);padding:5rem 6vw 2.5rem}
.footer-grid{display:grid;grid-template-columns:1.8fr 1fr 1fr;gap:4vw;margin-bottom:4rem}
.footer-brand img{height:100px;width:auto;filter:brightness(0) invert(1);margin-bottom:1.4rem}
.footer-brand p{font-size:.8rem;line-height:1.8;max-width:280px;color:rgba(255,255,255,.4)}
.footer-col h4{font-size:.63rem;letter-spacing:.25em;text-transform:uppercase;color:var(--c-gold);font-weight:500;margin-bottom:1.2rem}
.footer-col ul{list-style:none;display:flex;flex-direction:column;gap:.5rem}
.footer-col ul a{font-size:.8rem;color:rgba(255,255,255,.4);transition:color .2s}
.footer-col ul a:hover{color:var(--c-gold)}
.footer-contact-item{display:flex;align-items:center;gap:.6rem;font-size:.8rem;margin-bottom:.5rem;color:rgba(255,255,255,.4)}
.footer-contact-item a{color:rgba(255,255,255,.4);transition:color .2s}
.footer-contact-item a:hover{color:var(--c-gold)}
.footer-bottom{display:flex;justify-content:space-between;align-items:center;padding-top:2rem;border-top:1px solid rgba(255,255,255,.06);font-size:.68rem;color:rgba(255,255,255,.22);flex-wrap:wrap;gap:.8rem}

/* ── HOME HERO (two-panel) ── */
.hero-home{
  position:relative;
  display:grid;
  grid-template-columns:1fr 1fr;
  height:calc(92vh - 64px);
  min-height:600px;
  max-height:900px;
  overflow:hidden;
}
.hero-bg{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;object-position:center 30%}
.hero-overlay{
  position:absolute;inset:0;z-index:1;
  background:linear-gradient(to right,rgba(14,13,11,.97) 0%,rgba(14,13,11,.88) 45%,rgba(14,13,11,.2) 100%);
}
.hero-panel{
  position:relative;z-index:2;
  display:flex;flex-direction:column;justify-content:center;
  padding:5rem 4rem 5rem 6vw;
}
.hero-panel::before{content:'';position:absolute;top:3.5rem;left:6vw;width:36px;height:2px;background:var(--c-gold)}
.hero-panel .label{margin-bottom:1.8rem}
.hero-h1{font-family:var(--ff-serif);font-size:clamp(2.4rem,4vw,4rem);font-weight:400;line-height:1.12;color:#fff;margin-bottom:1.4rem}
.hero-h1 em{font-style:italic;color:var(--c-gold-lt)}
.hero-p{font-size:.9rem;line-height:1.85;color:rgba(255,255,255,.65);max-width:400px;margin-bottom:2.6rem}
.hero-ctas{display:flex;gap:1rem;align-items:center;flex-wrap:wrap}
.hero-right{position:relative;z-index:2}
.hero-badge{
  position:absolute;bottom:3rem;right:3rem;z-index:3;
  background:var(--c-gold);color:var(--c-black);
  padding:1.2rem 1.6rem;text-align:center;min-width:120px;
  box-shadow:0 8px 32px rgba(0,0,0,.3);
}
.hero-badge strong{display:block;font-family:var(--ff-serif);font-size:2rem;font-weight:400;line-height:1}
.hero-badge span{font-size:.6rem;letter-spacing:.15em;text-transform:uppercase;opacity:.8}
.hero-scroll{
  position:absolute;bottom:2.5rem;left:6vw;z-index:3;
  display:flex;align-items:center;gap:.7rem;
  font-size:.62rem;letter-spacing:.2em;text-transform:uppercase;color:rgba(255,255,255,.35);
}
.hero-scroll::before{content:'';display:block;width:1px;height:36px;background:rgba(201,169,110,.35)}
.btn-ghost{font-size:.72rem;font-weight:500;letter-spacing:.15em;text-transform:uppercase;color:rgba(255,255,255,.65);border-bottom:1px solid rgba(201,169,110,.4);padding-bottom:.2rem;transition:color .2s,border-color .2s}
.btn-ghost:hover{color:var(--c-gold-lt);border-color:var(--c-gold-lt)}

/* ── TOUR PAGE HERO (full-width) ── */
.hero{
  position:relative;
  height:calc(88vh - 64px);
  min-height:500px;max-height:800px;
  display:flex;align-items:flex-end;overflow:hidden;
}
.hero .hero-bg{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;object-position:center 35%}
.hero::after{content:'';position:absolute;inset:0;background:linear-gradient(to top,rgba(14,13,11,.95) 0%,rgba(14,13,11,.55) 45%,rgba(14,13,11,.15) 100%)}
.hero-content{position:relative;z-index:2;padding:0 6vw 4.5rem;color:#fff;width:100%;display:flex;flex-direction:column;gap:1rem}
.hero-breadcrumb{font-size:.65rem;letter-spacing:.2em;text-transform:uppercase;color:rgba(255,255,255,.5);display:flex;align-items:center;gap:.6rem}
.hero-breadcrumb a{color:rgba(255,255,255,.5);transition:color .2s}
.hero-breadcrumb a:hover{color:var(--c-gold-lt)}
.hero-breadcrumb span{color:rgba(255,255,255,.25)}
.hero-pills{display:flex;flex-wrap:wrap;gap:.7rem;margin-top:.4rem}
.hero-pill{display:flex;align-items:center;gap:.5rem;font-size:.72rem;color:#fff;background:rgba(255,255,255,.1);border:1px solid rgba(255,255,255,.2);padding:.4rem 1rem;backdrop-filter:blur(4px)}
.hero-pill strong{color:#fff;font-weight:600}

/* ── PAGE HERO (short pages) ── */
.page-hero{position:relative;height:380px;display:flex;align-items:flex-end;overflow:hidden}
.page-hero-bg{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;object-position:center 40%}
.page-hero::after{content:'';position:absolute;inset:0;background:linear-gradient(to top,rgba(14,13,11,.92) 0%,rgba(14,13,11,.5) 50%,rgba(14,13,11,.2) 100%)}
.page-hero-content{position:relative;z-index:2;padding:0 6vw 3.5rem;color:#fff}
.page-hero-content .label{margin-bottom:1rem}
.page-hero-content h1{font-family:var(--ff-serif);font-size:clamp(2.2rem,4vw,3.5rem);font-weight:400;line-height:1.1}
.page-hero-content h1 em{font-style:italic;color:var(--c-gold-lt)}

/* ── PAGE BODY ── */
.page-body{max-width:1200px;margin:0 auto;padding:0 6vw}

/* ── BUTTONS ── */
.btn-fill{display:inline-flex;align-items:center;padding:.85rem 2.2rem;background:var(--c-gold);color:var(--c-black);font-size:.72rem;font-weight:600;letter-spacing:.18em;text-transform:uppercase;transition:background .2s}
.btn-fill:hover{background:var(--c-gold-lt)}
.btn-reserve{display:inline-flex;align-items:center;padding:.85rem 2rem;background:var(--c-gold);color:var(--c-black);font-size:.72rem;font-weight:600;letter-spacing:.18em;text-transform:uppercase;transition:background .2s;white-space:nowrap}
.btn-reserve:hover{background:var(--c-gold-lt)}
.btn-sidebar{display:flex;align-items:center;justify-content:center;width:100%;padding:.95rem;background:var(--c-gold);color:var(--c-black);font-size:.72rem;font-weight:600;letter-spacing:.18em;text-transform:uppercase;transition:background .2s}
.btn-sidebar:hover{background:var(--c-gold-lt)}
.btn-outline{display:inline-flex;align-items:center;padding:.85rem 1.8rem;border:1px solid rgba(201,169,110,.5);color:var(--c-gold-lt);font-size:.7rem;font-weight:600;letter-spacing:.18em;text-transform:uppercase;transition:all .2s}
.btn-outline:hover{border-color:var(--c-gold);color:var(--c-black);background:var(--c-gold)}

/* ── HOME: PILLS STRIP ── */
.pills{display:flex;background:var(--c-black);border-top:1px solid rgba(255,255,255,.05)}
.pill{flex:1;padding:1.5rem 1rem;text-align:center;border-right:1px solid rgba(255,255,255,.07);transition:background .2s}
.pill:last-child{border-right:none}
.pill:hover{background:rgba(201,169,110,.08)}
.pill-icon{font-size:1.1rem;margin-bottom:.5rem}
.pill strong{display:block;font-family:var(--ff-serif);font-size:1rem;color:var(--c-white);font-weight:400;margin-bottom:.25rem}
.pill span{font-size:.62rem;letter-spacing:.1em;color:rgba(248,245,240,.4);text-transform:uppercase}

/* ── HOME: ABOUT ── */
.about{display:grid;grid-template-columns:5fr 7fr;min-height:640px}
.about-img{position:relative;overflow:hidden}
.about-img img{width:100%;height:100%;object-fit:cover;object-position:top center}
.about-img::after{content:'';position:absolute;top:2.5rem;left:2.5rem;width:56px;height:56px;border-top:2px solid var(--c-gold);border-left:2px solid var(--c-gold)}
.about-text{background:var(--c-stone);padding:5.5rem 5vw 5.5rem 4vw;display:flex;flex-direction:column;justify-content:center}
.about-text .label{margin-bottom:1.2rem}
.about-h2{font-family:var(--ff-serif);font-size:clamp(2rem,3vw,2.8rem);font-weight:400;line-height:1.18;margin-bottom:1.6rem}
.about-h2 em{font-style:italic;color:var(--c-muted)}
.about-body{font-size:.88rem;line-height:1.9;color:#555;max-width:480px;margin-bottom:1rem}
.about-tags{display:flex;flex-wrap:wrap;gap:.6rem;margin-top:1.8rem}
.tag{font-size:.64rem;letter-spacing:.14em;text-transform:uppercase;font-weight:500;padding:.45rem 1rem;border:1px solid var(--c-gold);color:var(--c-muted)}

/* ── HOME: TOURS BENTO ── */
.tours{padding:7rem 6vw;background:var(--c-white)}
.tours-header{display:flex;align-items:flex-end;justify-content:space-between;margin-bottom:3.5rem;gap:1rem;flex-wrap:wrap}
.tours-header-text .label{margin-bottom:.8rem}
.tours-h2{font-family:var(--ff-serif);font-size:clamp(1.9rem,3.2vw,2.8rem);font-weight:400;line-height:1.15}
.tours-h2 em{font-style:italic}
.see-all{font-size:.7rem;letter-spacing:.2em;text-transform:uppercase;font-weight:600;color:var(--c-muted);border-bottom:1px solid var(--c-gold);padding-bottom:.2rem;white-space:nowrap;transition:color .2s}
.see-all:hover{color:var(--c-black)}
.tours-grid{display:grid;grid-template-columns:repeat(12,1fr);grid-template-rows:370px 270px;gap:10px}
.tc{position:relative;overflow:hidden;display:flex;align-items:flex-end;text-decoration:none}
.tc img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;transition:transform .7s var(--ease)}
.tc::after{content:'';position:absolute;inset:0;background:linear-gradient(to top,rgba(14,13,11,.9) 0%,rgba(14,13,11,.05) 60%,transparent 100%)}
.tc:hover img{transform:scale(1.06)}
.tc-body{position:relative;z-index:2;padding:1.6rem 1.8rem;width:100%}
.tc-tag{font-size:.6rem;letter-spacing:.22em;text-transform:uppercase;color:var(--c-gold);font-weight:600;margin-bottom:.4rem}
.tc h3{font-family:var(--ff-serif);font-size:1.35rem;color:#fff;font-weight:400;line-height:1.25;margin-bottom:.4rem}
.tc-meta{font-size:.7rem;color:rgba(248,245,240,.6);letter-spacing:.06em}
.tc-arrow{position:absolute;top:1.4rem;right:1.6rem;z-index:2;width:32px;height:32px;border:1px solid rgba(201,169,110,.5);border-radius:50%;display:flex;align-items:center;justify-content:center;color:var(--c-gold);font-size:.8rem;opacity:0;transform:translateY(4px);transition:opacity .3s,transform .3s}
.tc:hover .tc-arrow{opacity:1;transform:translateY(0)}
.tc-1{grid-column:1/6;grid-row:1}.tc-2{grid-column:6/9;grid-row:1}.tc-3{grid-column:9/13;grid-row:1}
.tc-4{grid-column:1/7;grid-row:2}.tc-5{grid-column:7/13;grid-row:2}

/* ── HOME: WHY SECTION ── */
.why{background:var(--c-dark);padding:7rem 6vw;color:#fff;position:relative;overflow:hidden}
.why::before{content:'G';position:absolute;right:-2rem;top:-3rem;font-family:var(--ff-serif);font-size:28rem;color:rgba(255,255,255,.025);pointer-events:none;line-height:1}
.why-top{display:grid;grid-template-columns:1fr 1fr;gap:4vw;align-items:center;margin-bottom:4rem}
.why-top-text .label{margin-bottom:.8rem}
.why-h2{font-family:var(--ff-serif);font-size:clamp(2rem,3.5vw,3rem);font-weight:400;line-height:1.15;margin-bottom:1rem}
.why-h2 em{font-style:italic;color:var(--c-gold-lt)}
.why-intro{font-size:.88rem;line-height:1.9;color:rgba(255,255,255,.6);margin-top:.5rem}
.why-top-img{position:relative;overflow:hidden}
.why-top-img img{width:100%;height:360px;object-fit:cover;object-position:center 20%}
.why-top-img::before{content:'';position:absolute;inset:0;background:linear-gradient(135deg,rgba(201,169,110,.15) 0%,transparent 60%);z-index:1}
.why-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(210px,1fr));gap:1px;background:rgba(255,255,255,.06)}
.why-item{background:var(--c-dark);padding:2.5rem 2rem;transition:background .25s}
.why-item:hover{background:#252219}
.why-num{font-family:var(--ff-serif);font-size:2.5rem;color:rgba(201,169,110,.2);line-height:1;margin-bottom:1rem}
.why-item h4{font-family:var(--ff-serif);font-size:1.1rem;font-weight:400;color:var(--c-gold-lt);margin-bottom:.7rem}
.why-item p{font-size:.8rem;line-height:1.8;color:rgba(255,255,255,.5)}

/* ── HOME: GALLERY ── */
.gallery{display:grid;grid-template-columns:repeat(4,1fr);height:300px;overflow:hidden}
.gallery-item{overflow:hidden}
.gallery-item img{width:100%;height:100%;object-fit:cover;transition:transform .7s var(--ease)}
.gallery-item:hover img{transform:scale(1.08)}

/* ── HOME: QUOTE ── */
.quote{padding:7rem 6vw;background:var(--c-stone);display:grid;grid-template-columns:auto 1fr;gap:3vw;align-items:center}
.quote-deco{font-family:var(--ff-serif);font-size:12rem;line-height:.75;color:var(--c-gold);opacity:.2;user-select:none;align-self:flex-start}
.quote-content blockquote{font-family:var(--ff-serif);font-size:clamp(1.4rem,2.5vw,2rem);font-weight:400;font-style:italic;line-height:1.55;color:var(--c-black);margin-bottom:1.2rem}
.quote-content cite{font-size:.7rem;letter-spacing:.22em;text-transform:uppercase;color:var(--c-gold);font-style:normal;font-weight:500}

/* ── HOME: CTA FINAL ── */
.cta{background:var(--c-black);padding:7rem 6vw;display:grid;grid-template-columns:1fr 1fr;gap:4vw;align-items:center}
.cta-left .label{margin-bottom:1.2rem}
.cta-h2{font-family:var(--ff-serif);font-size:clamp(2rem,3.5vw,3rem);color:#fff;font-weight:400;line-height:1.15;margin-bottom:.8rem}
.cta-h2 em{font-style:italic;color:var(--c-gold-lt)}
.cta-sub{font-size:.85rem;color:rgba(255,255,255,.5);line-height:1.8;max-width:400px}
.cta-right{display:flex;flex-direction:column;gap:1.5rem}
.cta-contact-line{display:flex;align-items:center;gap:1rem;font-size:.88rem;color:rgba(255,255,255,.7)}
.cta-contact-line .ico{width:36px;height:36px;border:1px solid rgba(201,169,110,.3);display:flex;align-items:center;justify-content:center;flex-shrink:0}
.cta-contact-line a{color:var(--c-gold-lt);transition:color .2s}
.cta-contact-line a:hover{color:var(--c-gold)}
.cta-btns{display:flex;gap:1rem;flex-wrap:wrap;margin-top:.5rem}

/* ── TOURS ARCHIVE ── */
.intro-bar{background:var(--c-stone);padding:2.5rem 6vw;display:flex;align-items:center;justify-content:space-between;gap:2rem;flex-wrap:wrap;border-bottom:1px solid var(--c-border)}
.intro-bar p{font-size:.88rem;line-height:1.8;color:var(--c-muted);max-width:640px}
.intro-bar-note{font-size:.72rem;color:var(--c-muted);border-left:2px solid var(--c-gold);padding-left:1rem;min-width:200px;line-height:1.7}
.tours-list{padding:5rem 6vw;display:flex;flex-direction:column}
.tour-card{display:grid;grid-template-columns:380px 1fr;min-height:300px;border-bottom:1px solid var(--c-border);text-decoration:none;color:var(--c-black);transition:background .2s}
.tour-card:first-child{border-top:1px solid var(--c-border)}
.tour-card:hover{background:var(--c-stone)}
.tour-card-img{position:relative;overflow:hidden}
.tour-card-img img{width:100%;height:100%;object-fit:cover;transition:transform .6s var(--ease)}
.tour-card:hover .tour-card-img img{transform:scale(1.04)}
.tour-type{position:absolute;top:1.2rem;left:1.2rem;background:var(--c-gold);color:var(--c-black);font-size:.6rem;font-weight:600;letter-spacing:.18em;text-transform:uppercase;padding:.35rem .9rem}
.tour-card-body{padding:2.8rem 3rem 2.8rem 3.5rem;display:flex;flex-direction:column;justify-content:center}
.tour-card-body .label{margin-bottom:.8rem}
.tour-card-body h2{font-family:var(--ff-serif);font-size:clamp(1.5rem,2.2vw,2rem);font-weight:400;line-height:1.2;margin-bottom:1rem}
.tour-card-body p{font-size:.85rem;line-height:1.85;color:var(--c-muted);max-width:500px;margin-bottom:1.8rem}
.tour-meta{display:flex;gap:2rem;flex-wrap:wrap;margin-bottom:2rem}
.meta-item{display:flex;flex-direction:column;gap:.25rem}
.meta-item span:first-child{font-size:.6rem;letter-spacing:.2em;text-transform:uppercase;color:var(--c-gold);font-weight:500}
.meta-item span:last-child{font-size:.82rem;color:var(--c-black);font-weight:400}
.tour-card-footer{display:flex;align-items:stretch;border-top:1px solid var(--c-border);margin-top:.5rem}
.btn-tour{display:inline-flex;align-items:center;gap:.5rem;padding:.9rem 1.6rem;background:var(--c-black);color:#fff;font-size:.68rem;font-weight:600;letter-spacing:.16em;text-transform:uppercase;transition:background .2s;flex-shrink:0}
.btn-tour:hover{background:var(--c-dark)}
.btn-tour .arr{transition:transform .2s}
.tour-card:hover .btn-tour .arr{transform:translateX(4px)}
.tour-price{display:flex;flex-direction:column;justify-content:center;padding:.7rem 1.4rem;border-left:1px solid var(--c-border);background:var(--c-stone);flex:1}
.tour-price .price-label{font-size:.58rem;letter-spacing:.18em;text-transform:uppercase;color:var(--c-gold);font-weight:500;margin-bottom:.15rem}
.tour-price strong{font-family:var(--ff-serif);font-size:1.25rem;color:var(--c-black);font-weight:400;line-height:1}
.bottom-cta{background:var(--c-dark);padding:5rem 6vw;display:grid;grid-template-columns:1fr 1fr;gap:3vw;align-items:center}
.bottom-cta-text .label{margin-bottom:1rem}
.bottom-cta-text h2{font-family:var(--ff-serif);font-size:clamp(1.8rem,3vw,2.6rem);font-weight:400;color:#fff;line-height:1.2;margin-bottom:.8rem}
.bottom-cta-text h2 em{font-style:italic;color:var(--c-gold-lt)}
.bottom-cta-text p{font-size:.85rem;color:rgba(255,255,255,.5);line-height:1.8}
.bottom-cta-right{display:flex;flex-direction:column;gap:1.2rem;align-items:flex-start}
.contact-line{display:flex;align-items:center;gap:.9rem;font-size:.88rem;color:rgba(255,255,255,.7)}
.contact-line .ico{width:34px;height:34px;border:1px solid rgba(201,169,110,.3);display:flex;align-items:center;justify-content:center;flex-shrink:0}
.contact-line a{color:var(--c-gold-lt);transition:color .2s}
.contact-line a:hover{color:var(--c-gold)}

/* ── TOUR SINGLE: BOOKING BANNER ── */
.booking-banner{display:grid;grid-template-columns:1fr auto;align-items:center;gap:2rem;background:var(--c-dark);color:#fff;padding:1.6rem 2.5rem}
.booking-banner-left{display:flex;align-items:baseline;gap:1.5rem;flex-wrap:wrap}
.bb-price{font-family:var(--ff-serif);font-size:2rem;font-weight:400;color:#fff;line-height:1}
.bb-price sup{font-size:.9rem;color:var(--c-gold);vertical-align:super}
.bb-note{font-size:.72rem;color:rgba(255,255,255,.45)}
.bb-details{display:flex;gap:2rem;flex-wrap:wrap}
.bb-detail{display:flex;flex-direction:column;gap:.2rem}
.bb-detail span:first-child{font-size:.58rem;letter-spacing:.2em;text-transform:uppercase;color:var(--c-gold)}
.bb-detail span:last-child{font-size:.8rem;color:rgba(255,255,255,.85)}
.bb-actions{display:flex;flex-direction:column;align-items:flex-end;gap:.5rem}
.bb-contact{font-size:.7rem;color:rgba(255,255,255,.4);text-align:right}
.bb-contact a{color:rgba(255,255,255,.55);transition:color .2s}
.bb-contact a:hover{color:var(--c-gold-lt)}

/* ── TOUR SINGLE: LAYOUT ── */
.tour-layout{display:grid;grid-template-columns:1fr 320px;gap:4rem;padding:4rem 0 5rem;align-items:start}
.tour-section{padding-bottom:3rem;margin-bottom:3rem;border-bottom:1px solid var(--c-border)}
.tour-section:last-child{border-bottom:none;margin-bottom:0;padding-bottom:0}
.tour-section-title{font-family:var(--ff-serif);font-size:1.3rem;font-weight:400;margin-bottom:1.3rem;display:flex;align-items:center;gap:.8rem}
.tour-section-title::before{content:'';display:block;width:24px;height:1px;background:var(--c-gold);flex-shrink:0}
.tour-description{font-size:.88rem;line-height:1.9;color:#444;margin-bottom:1rem}
.stops{display:flex;flex-direction:column}
.stop{display:flex;gap:1.4rem;padding:1.1rem 0;border-bottom:1px solid var(--c-border)}
.stop:last-child{border-bottom:none}
.stop-dot{width:9px;height:9px;border-radius:50%;background:var(--c-gold);flex-shrink:0;margin-top:.38rem}
.stop-text strong{display:block;font-size:.84rem;font-weight:500;margin-bottom:.2rem}
.stop-text span{font-size:.79rem;color:var(--c-muted);line-height:1.65}
.check-list{display:flex;flex-direction:column;gap:.7rem}
.check-item{display:flex;align-items:flex-start;gap:.8rem;font-size:.84rem;line-height:1.65;color:#444}
.check-icon{width:18px;height:18px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:.65rem;flex-shrink:0;margin-top:.15rem}
.check-icon.yes{background:var(--c-gold);color:var(--c-black)}
.check-icon.no{background:var(--c-border);color:var(--c-muted)}
.img-strip{display:grid;grid-template-columns:2fr 1fr;gap:.8rem;margin-top:2.5rem}
.img-strip img{width:100%;height:230px;object-fit:cover}

/* ── TIPS: two-col list with icon pill ── */
.tips-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(200px,1fr));
  gap:1rem;
}
.tip{
  display:flex;
  flex-direction:column;
  gap:.8rem;
  padding:1.4rem 1.4rem 1.6rem;
  background:var(--c-stone);
  border-top:3px solid var(--c-gold);
  transition:box-shadow .25s,transform .25s;
}
.tip:hover{box-shadow:0 8px 28px rgba(0,0,0,.08);transform:translateY(-2px)}
.tip-icon{
  font-size:1.5rem;
  line-height:1;
  display:block;
}
.tip-text{font-size:.81rem;line-height:1.65;color:var(--c-muted)}
.tip-text strong{color:var(--c-black);font-weight:500;display:block;margin-bottom:.3rem;font-size:.84rem}

/* ── TOUR SINGLE: SIDEBAR ── */
.tour-sidebar{display:flex;flex-direction:column;gap:1.2rem;position:sticky;top:88px}
.sidebar-card{padding:1.8rem;background:var(--c-dark);color:#fff}
.sidebar-card .label{margin-bottom:1rem}
.sc-price{font-family:var(--ff-serif);font-size:2.2rem;font-weight:400;line-height:1;margin-bottom:.3rem}
.sc-price sup{font-size:.9rem;color:var(--c-gold);vertical-align:super}
.sc-note{font-size:.7rem;color:rgba(255,255,255,.4);margin-bottom:1.5rem;padding-bottom:1.5rem;border-bottom:1px solid rgba(255,255,255,.07)}
.sc-rows{display:flex;flex-direction:column;margin-bottom:1.6rem}
.sc-row{display:flex;justify-content:space-between;padding:.65rem 0;border-bottom:1px solid rgba(255,255,255,.06);font-size:.76rem}
.sc-row:last-child{border-bottom:none}
.sc-row span:first-child{color:rgba(255,255,255,.4);text-transform:uppercase;font-size:.62rem;letter-spacing:.1em}
.sc-row span:last-child{color:#fff}
.sc-sub{text-align:center;font-size:.67rem;color:rgba(255,255,255,.35);margin-top:.8rem;line-height:1.6}
.sidebar-contact{padding:1.6rem;background:var(--c-stone)}
.sidebar-contact .label{margin-bottom:.7rem}
.sidebar-contact p{font-size:.78rem;color:var(--c-muted);line-height:1.7;margin-bottom:1rem}
.sc-links{display:flex;flex-direction:column;gap:.55rem}
.sc-link{display:flex;align-items:center;gap:.7rem;font-size:.8rem;color:var(--c-black);transition:color .2s}
.sc-link:hover{color:var(--c-gold)}
.sc-link-ico{width:26px;text-align:center}
.sidebar-note{padding:1.2rem 1.5rem;border-left:3px solid var(--c-gold);background:var(--c-white)}
.sidebar-note p{font-size:.76rem;line-height:1.75;color:var(--c-muted)}
.sidebar-note strong{color:var(--c-black);font-weight:500}

/* ── MORE TOURS ── */
.more-tours{background:var(--c-stone);padding:5rem 6vw;border-top:1px solid var(--c-border)}
.more-tours .label{margin-bottom:.8rem}
.more-tours h2{font-family:var(--ff-serif);font-size:clamp(1.6rem,2.5vw,2.2rem);font-weight:400;margin-bottom:2.5rem}
.more-tours h2 em{font-style:italic}
.more-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(220px,1fr));gap:1rem}
.more-card{position:relative;overflow:hidden;height:250px;display:flex;align-items:flex-end;text-decoration:none}
.more-card img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;transition:transform .6s var(--ease)}
.more-card::after{content:'';position:absolute;inset:0;background:linear-gradient(to top,rgba(14,13,11,.85) 0%,transparent 60%)}
.more-card:hover img{transform:scale(1.05)}
.more-card-body{position:relative;z-index:2;padding:1.2rem 1.4rem;width:100%}
.more-card-body .label{font-size:.58rem;margin-bottom:.3rem}
.more-card-body h3{font-family:var(--ff-serif);font-size:1.05rem;color:#fff;font-weight:400;line-height:1.25}

/* ── ABOUT PAGE ── */
.about-layout{display:grid;grid-template-columns:1fr 1fr;min-height:580px}
.about-img-wrap{position:relative;overflow:hidden}
.about-img-wrap img{width:100%;height:100%;object-fit:cover;object-position:top}
.about-img-wrap::after{content:'';position:absolute;top:2.5rem;left:2.5rem;width:56px;height:56px;border-top:2px solid var(--c-gold);border-left:2px solid var(--c-gold)}
.about-text-wrap{background:var(--c-stone);padding:6rem 5vw}
.about-text-wrap .label{margin-bottom:1.2rem}
.about-h2{font-family:var(--ff-serif);font-size:clamp(2rem,3vw,2.8rem);font-weight:400;line-height:1.18;margin-bottom:1.6rem}
.about-h2 em{font-style:italic;color:var(--c-muted)}
.about-body{font-size:.88rem;line-height:1.9;color:#555;margin-bottom:1rem;max-width:480px}
.why-section{padding:6rem 6vw;background:var(--c-dark);color:#fff;position:relative;overflow:hidden}
.why-section::before{content:'G';position:absolute;right:-2rem;top:-3rem;font-family:var(--ff-serif);font-size:28rem;color:rgba(255,255,255,.025);pointer-events:none;line-height:1}

/* ── ANIMATIONS ── */
@keyframes fadeUp{from{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)}}
.hero-panel .label{animation:fadeUp .8s var(--ease) .05s both}
.hero-h1{animation:fadeUp .8s var(--ease) .15s both}
.hero-p{animation:fadeUp .8s var(--ease) .25s both}
.hero-ctas{animation:fadeUp .8s var(--ease) .35s both}



/* ── RESPONSIVE ── */
@media(max-width:960px){
  /* Home hero */
  .hero-home{grid-template-columns:1fr;height:auto;min-height:100vh}
  .hero-right{display:none}
  .hero-overlay{background:linear-gradient(to top,rgba(14,13,11,.92) 0%,rgba(14,13,11,.6) 60%,rgba(14,13,11,.35) 100%)}
  .hero-panel{padding:8rem 6vw 6rem;justify-content:flex-end;min-height:100vh}
  .hero-panel::before{top:4rem}
  .hero-badge{bottom:2rem;right:2rem}
  .why-top{grid-template-columns:1fr}
  .why-top-img{display:none}
  /* About */
  .about{grid-template-columns:1fr}
  .about-img{height:60vw;max-height:400px}
  /* Tours bento */
  .tours-grid{grid-template-columns:1fr 1fr;grid-template-rows:auto}
  .tc{height:260px}
  .tc-1,.tc-2,.tc-3,.tc-4,.tc-5{grid-column:auto;grid-row:auto}
  /* Gallery */
  .gallery{grid-template-columns:1fr 1fr;height:auto}
  .gallery-item{height:200px}
  /* Quote / CTA */
  .quote{grid-template-columns:1fr}
  .quote-deco{display:none}
  .cta{grid-template-columns:1fr}
  /* Booking banner */
  .booking-banner{grid-template-columns:1fr;gap:1.2rem}
  .bb-actions{align-items:flex-start}
  .bb-contact{text-align:left}
  /* Tour layout */
  .tour-layout{grid-template-columns:1fr}
  .tour-sidebar{position:static}
  /* Archive */
  .tour-card{grid-template-columns:1fr}
  .tour-card-img{height:52vw;max-height:320px}
  .tour-card-body{padding:2rem}
  /* About / contact */
  .about-layout{grid-template-columns:1fr}
  .about-img-wrap{height:60vw;max-height:400px}
  .bottom-cta{grid-template-columns:1fr}
  .page-body{padding:0 5vw}
  .footer-grid{grid-template-columns:1fr 1fr}
}
@media(max-width:600px){
  .hero{height:calc(80vh - 64px)}
  .hero-content{padding:0 5vw 3.5rem}
  .pills{flex-wrap:wrap}
  .pill{flex:0 0 50%;border-bottom:1px solid rgba(255,255,255,.07)}
  .tours-grid{grid-template-columns:1fr}
  .tc{height:270px}
  .gallery{grid-template-columns:1fr 1fr}
  .gallery-item{height:150px}
  .why-grid,.why-section .why-grid{grid-template-columns:1fr}
  .tours,.why,.cta,.quote{padding:5rem 5vw}
  .about-text{padding:4rem 5vw}
  .booking-banner{padding:1.4rem}
  .bb-details{gap:1rem}
  .tips-grid{grid-template-columns:1fr}
  .img-strip{grid-template-columns:1fr}
  .img-strip img{height:200px}
  .more-tours,.tours-list{padding:4rem 5vw}
  .site-footer{padding:4rem 5vw 2rem}
  .footer-grid{grid-template-columns:1fr}
  .page-hero{height:260px}
  .page-hero-content{padding:0 5vw 2.5rem}
  .intro-bar{padding:2rem 5vw;flex-direction:column;align-items:flex-start}
  .bottom-cta{padding:4rem 5vw}
  .about-text-wrap{padding:4rem 5vw}
}



/* ════════════════════════════════════════
   LAYOUT & RESPONSIVE
   ════════════════════════════════════════ */

/* Header height & logo */
.site-header { height: 76px; }
body { padding-top: 76px; }
.header-logo img { height: 60px; width: auto; filter: brightness(0) invert(1); }

/* Hamburger — hidden on desktop */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px; height: 44px;
  padding: 10px;
  cursor: pointer;
  background: none;
  border: none;
  flex-shrink: 0;
  order: 3;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile: 768px and below */
@media (max-width: 768px) {
  .site-header { padding: 0 5vw; height: 72px; }
  body { padding-top: 72px; }
  .header-logo img { height: 50px; }

  /* Show hamburger */
  .hamburger { display: flex !important; }

  /* Hide nav by default — shown as overlay when .open */
  .header-nav {
    display: none;
    position: fixed;
    top: 72px; left: 0; right: 0; bottom: 0;
    background: #0e0d0b;
    flex-direction: column;
    align-items: stretch;
    z-index: 100;
    overflow-y: auto;
    padding-bottom: 2rem;
  }
  .header-nav.open { display: flex; }

  /* Page links */
  .header-nav > a {
    display: block !important;
    padding: 1.1rem 6vw !important;
    font-size: 1rem !important;
    letter-spacing: .12em !important;
    text-transform: uppercase !important;
    font-weight: 500 !important;
    color: rgba(255,255,255,.8) !important;
    border-bottom: 1px solid rgba(255,255,255,.07) !important;
    transition: background .2s, color .2s !important;
  }
  .header-nav > a:hover,
  .header-nav > a.active { color: var(--c-gold) !important; background: rgba(201,169,110,.05) !important; }

  /* Language switcher */
  .header-lang {
    display: flex !important;
    flex-direction: row !important;
    gap: .8rem !important;
    padding: 1.4rem 6vw !important;
    border-left: none !important;
    margin-left: 0 !important;
    padding-left: 6vw !important;
    border-top: 1px solid rgba(255,255,255,.1) !important;
    margin-top: 1rem !important;
  }
  .header-lang a {
    font-size: .8rem !important;
    padding: .5rem 1.4rem !important;
    border: 1px solid rgba(255,255,255,.2) !important;
    color: rgba(255,255,255,.5) !important;
    letter-spacing: .12em !important;
  }
  .header-lang a.active {
    color: #fff !important;
    border-color: var(--c-gold) !important;
    background: rgba(201,169,110,.12) !important;
  }
  .header-lang span { display: none !important; }
}

/* 960px breakpoint */
@media (max-width: 960px) {
  .hero-home { grid-template-columns: 1fr !important; height: auto !important; min-height: 100svh; }
  .hero-right { display: none !important; }
  .hero-overlay { background: linear-gradient(to top, rgba(14,13,11,.94) 0%, rgba(14,13,11,.6) 55%, rgba(14,13,11,.35) 100%) !important; }
  .hero-panel { padding: 8rem 6vw 5rem !important; justify-content: flex-end !important; min-height: 100svh; }
  .hero-badge { position: absolute !important; top: 5rem !important; right: 5vw !important; bottom: auto !important; left: auto !important; }
  .about { grid-template-columns: 1fr; }
  .about-img { height: 60vw; max-height: 400px; }
  .tours-grid { grid-template-columns: 1fr 1fr !important; grid-template-rows: auto !important; }
  .tc { height: 260px; }
  .tc-1,.tc-2,.tc-3,.tc-4,.tc-5 { grid-column: auto !important; grid-row: auto !important; }
  .gallery { grid-template-columns: 1fr 1fr; height: auto; }
  .gallery-item { height: 200px; }
  .quote { grid-template-columns: 1fr; }
  .quote-deco { display: none; }
  .cta { grid-template-columns: 1fr; }
  .booking-banner { grid-template-columns: 1fr; gap: 1.2rem; }
  .bb-actions { align-items: flex-start; }
  .bb-contact { text-align: left; }
  .tour-layout { grid-template-columns: 1fr; }
  .tour-sidebar { position: static; }
  .tour-card { grid-template-columns: 1fr; }
  .tour-card-img { height: 52vw; max-height: 320px; }
  .tour-card-body { padding: 2rem; }
  .about-layout { grid-template-columns: 1fr; }
  .about-img-wrap { height: 60vw; max-height: 400px; }
  .bottom-cta { grid-template-columns: 1fr; }
  .page-body { padding: 0 5vw; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* 600px breakpoint */
@media (max-width: 600px) {
  .site-header { height: 64px !important; }
  body { padding-top: 64px !important; }
  .header-logo img { height: 44px !important; }
  .header-nav { top: 64px !important; }
  .hero { height: calc(80vh - 64px); }
  .hero-content { padding: 0 5vw 3rem; }
  .hero-home { min-height: 100svh; }
  .hero-panel { padding: 5rem 5vw 4rem !important; }
  .hero-h1 { font-size: clamp(2rem, 9vw, 3rem) !important; margin-bottom: 1rem !important; }
  .hero-p { font-size: .85rem !important; margin-bottom: 1.8rem !important; }
  .hero-ctas { flex-direction: column; align-items: flex-start; gap: .8rem !important; }
  .hero-ctas .btn-fill, .hero-ctas .btn-ghost { width: 100%; text-align: center; justify-content: center; display: flex; }
  .hero-badge { padding: .8rem 1rem !important; min-width: 80px !important; top: 4.5rem !important; right: 4vw !important; }
  .hero-badge strong { font-size: 1.3rem !important; }
  .hero-badge span { font-size: .55rem !important; }
  .pills { flex-wrap: wrap; }
  .pill { flex: 0 0 50%; border-bottom: 1px solid rgba(255,255,255,.07); }
  .tours-grid { grid-template-columns: 1fr !important; }
  .tc { height: 270px; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .gallery-item { height: 150px; }
  .tours, .why, .cta, .quote { padding: 4rem 5vw; }
  .about-text { padding: 4rem 5vw; }
  .booking-banner { padding: 1.2rem; }
  .bb-details { gap: 1rem; }
  .tips-grid { grid-template-columns: 1fr; }
  .img-strip { grid-template-columns: 1fr; }
  .img-strip img { height: 200px; }
  .more-tours, .tours-list { padding: 4rem 5vw; }
  .site-footer { padding: 4rem 5vw 2rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand img { height: 70px !important; }
  .page-hero { height: 240px; }
  .page-hero-content { padding: 0 5vw 2.5rem; }
  .intro-bar { padding: 2rem 5vw; flex-direction: column; align-items: flex-start; }
  .bottom-cta { padding: 4rem 5vw; }
  .about-text-wrap { padding: 3.5rem 5vw; }
  .why-grid { grid-template-columns: 1fr; }
  .why-top { flex-direction: column; }
  .contact-page { grid-template-columns: 1fr !important; padding: 3rem 5vw !important; }
}
