/* ============================================================
   RAM JI TOUR & TRAVEL — design system
   Palette: pine forest, saffron flag, temple maroon, mountain sky
   Type: Fraunces (display) + Work Sans (body)
   ============================================================ */

:root{
  --ink:#1C1A17;
  --paper:#F4EFE3;
  --paper-2:#EAE1CC;
  --pine:#2E3358;
  --pine-deep:#1B1E37;
  --pine-mid:#3F4570;
  --saffron:#D07440;
  --saffron-light:#E5A374;
  --maroon:#5B2A4A;
  --maroon-light:#7A4066;
  --sky:#5C7A5E;
  --sky-light:#82A184;
  --stone:#E2DCC8;
  --line: rgba(28,26,23,.14);
  --line-light: rgba(244,239,227,.22);
  --shadow: 0 18px 40px -22px rgba(16,14,12,.45);

  --font-display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-body: "Work Sans", "Segoe UI", sans-serif;

  --container: 1240px;
  --radius-s: 3px;
  --radius-m: 6px;
}

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

html{
  scroll-behavior:smooth;
  overflow-x:hidden;
}

@media (prefers-reduced-motion: reduce){
  html{
    scroll-behavior:auto;
  }

  *,*::before,*::after{
    animation-duration:.001ms !important;
    animation-iteration-count:1 !important;
    transition-duration:.001ms !important;
    scroll-behavior:auto !important;
  }
}

body{
  margin:0;
  font-family:var(--font-body);
  color:var(--ink);
  background:var(--paper);
  line-height:1.6;
  font-size:16px;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}

img{
  max-width:100%;
  display:block;
  height:auto;
}

a{
  color:inherit;
  text-decoration:none;
}

ul{
  margin:0;
  padding:0;
  list-style:none;
}

button{
  font-family:inherit;
  cursor:pointer;
}

h1,h2,h3,h4{
  font-family:var(--font-display);
  margin:0;
  font-weight:600;
  letter-spacing:.2px;
}

p{
  margin:0;
}

.container{
  max-width:var(--container);
  margin:0 auto;
  padding:0 24px;
}

:focus-visible{
  outline:2px solid var(--saffron);
  outline-offset:3px;
}

/* ---------- utility type ---------- */

.eyebrow{
  font-family:var(--font-body);
  font-size:.8rem;
  font-weight:600;
  color:var(--saffron);
  letter-spacing:.03em;
}

.section-head{
  max-width:640px;
  margin-bottom:44px;
}

.section-head h2{
  font-size:clamp(1.9rem,3.6vw,2.7rem);
  line-height:1.15;
}

.section-head p{
  margin-top:14px;
  font-size:1.05rem;
  color:rgba(28,26,23,.72);
  max-width:56ch;
}

.section-head.on-dark p{
  color:rgba(244,239,227,.75);
}

.section-head.on-dark h2{
  color:var(--paper);
}

.section-head.center{
  margin-left:auto;
  margin-right:auto;
  text-align:center;
}

.btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:13px 26px;
  border-radius:2px;
  font-weight:600;
  font-size:.95rem;
  border:1px solid transparent;
  transition:transform .18s ease, background-color .18s ease, color .18s ease, border-color .18s ease;
  white-space:nowrap;
}

.btn:hover{
  transform:translateY(-2px);
}

.btn-primary{
  background:var(--saffron);
  color:var(--paper);
}

.btn-primary:hover{
  background:var(--saffron-light);
}

.btn-outline{
  border-color:currentColor;
  color:var(--ink);
  background:transparent;
}

.btn-outline:hover{
  background:var(--ink);
  color:var(--paper);
  border-color:var(--ink);
}

.btn-outline.on-dark{
  color:var(--paper);
}

.btn-outline.on-dark:hover{
  background:var(--paper);
  color:var(--pine-deep);
}

.btn-ghost{
  color:var(--pine);
  font-weight:600;
  border-bottom:1px solid currentColor;
  padding:2px 0;
  border-radius:0;
}

.btn-ghost:hover{
  color:var(--saffron);
  transform:none;
}

.btn-sm{
  padding:9px 18px;
  font-size:.85rem;
}

.btn-block{
  width:100%;
  justify-content:center;
}

/* ============================================================
   PRELOADER — a route drawing across the map
   ============================================================ */

#preloader{
  position:fixed;
  inset:0;
  z-index:9999;
  background:var(--pine-deep);
  display:flex;
  align-items:center;
  justify-content:center;
  transition:opacity .5s ease, visibility .5s ease;
}

#preloader.done{
  opacity:0;
  visibility:hidden;
  pointer-events:none;
}

.preloader-inner{
  text-align:center;
  color:var(--paper);
}

.preloader-inner svg{
  width:220px;
  height:auto;
  overflow:visible;
}

.route-path{
  fill:none;
  stroke:var(--saffron);
  stroke-width:3;
  stroke-linecap:round;
  stroke-dasharray:340;
  stroke-dashoffset:340;
  animation:draw 1.6s ease-in-out infinite;
}

.route-dot{
  fill:var(--saffron);
  offset-path:path("M10,70 C40,10 80,120 120,55 C150,10 180,90 210,30");
  animation:travel 1.6s ease-in-out infinite;
}

@keyframes draw{
  0%{stroke-dashoffset:340;}
  55%{stroke-dashoffset:0;}
  100%{stroke-dashoffset:0;}
}

@keyframes travel{
  0%{
    offset-distance:0%;
    opacity:0;
  }
  6%{
    opacity:1;
  }
  55%{
    offset-distance:100%;
    opacity:1;
  }
  60%{
    opacity:0;
  }
  100%{
    offset-distance:100%;
    opacity:0;
  }
}

.preloader-word{
  margin-top:18px;
  font-family:var(--font-display);
  letter-spacing:.04em;
  font-size:1rem;
  color:var(--paper);
  opacity:.85;
}

@media (prefers-reduced-motion: reduce){
  .route-path{
    animation:none;
    stroke-dashoffset:0;
  }

  .route-dot{
    animation:none;
    opacity:0;
  }
}

/* ============================================================
   HEADER
   ============================================================ */

#site-header{
  background:var(--pine);
  position:sticky;
  top:0;
  z-index:500;
  border-bottom:1px solid rgba(244,239,227,.1);
  transition:box-shadow .3s ease;
}

#site-header.scrolled{
  box-shadow:0 12px 30px -18px rgba(10,9,8,.55);
}

.header-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 24px;
  gap:24px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:0;
}

.brand img{
  height:90px;
  width:auto;
  flex:none;
}

.brand-text{
  display:flex;
  flex-direction:column;
  line-height:1.2;
  min-width:0;
}

.brand-text strong{
  font-family:var(--font-display);
  color:var(--paper);
  font-size:1.15rem;
  white-space:nowrap;
}

.brand-text span{
  color:var(--saffron-light);
  font-size:.72rem;
  letter-spacing:.06em;
}

.main-nav{
  display:flex;
  align-items:center;
  gap:2px;
}

.main-nav a{
  color:rgba(244,239,227,.88);
  font-size:.93rem;
  font-weight:500;
  padding:10px 16px;
  position:relative;
}

.main-nav a::after{
  content:"";
  position:absolute;
  left:16px;
  right:16px;
  bottom:6px;
  height:2px;
  background:var(--saffron);
  transform:scaleX(0);
  transform-origin:left;
  transition:transform .22s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after{
  transform:scaleX(1);
}

.main-nav a.active{
  color:var(--paper);
}

.nav-toggle{
  display:none;
  background:none;
  border:none;
  padding:8px;
  color:var(--paper);
  position:relative;
  z-index:520;
}

.nav-toggle svg{
  width:26px;
  height:26px;
}

@media (max-width:980px){
  .main-nav{
    position:fixed;
    inset:0 0 0 auto;
    width:min(78vw,340px);
    height:100vh;
    background:var(--pine-deep);
    flex-direction:column;
    align-items:flex-start;
    padding:100px 30px 30px;
    gap:0;
    transform:translateX(100%);
    transition:transform .32s ease;
    box-shadow:-20px 0 40px rgba(0,0,0,.25);
  }

  .main-nav.open{
    transform:translateX(0);
  }

  .main-nav a{
    width:100%;
    padding:15px 0;
    border-bottom:1px solid rgba(244,239,227,.1);
    font-size:1.05rem;
  }

  .main-nav a::after{
    display:none;
  }

  .nav-toggle{
    display:block;
  }

  .nav-scrim{
    position:fixed;
    inset:0;
    background:rgba(15,12,10,.5);
    z-index:400;
    opacity:0;
    visibility:hidden;
    transition:opacity .3s ease, visibility .3s ease;
  }

  .nav-scrim.open{
    opacity:1;
    visibility:visible;
  }
}

/* ============================================================
   HERO SLIDER — compact, not full-viewport
   ============================================================ */

.hero{
  position:relative;
  height:min(74vh,620px);
  min-height:420px;
  overflow:hidden;
  background:var(--pine-deep);
}

.hero-slide{
  position:absolute;
  inset:0;
  opacity:0;
  visibility:hidden;
  transition:opacity 1s ease;
  display:flex;
  align-items:flex-end;
}

.hero-slide.active{
  opacity:1;
  visibility:visible;
  z-index:2;
}

.hero-slide img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  transform:scale(1.06);
  transition:transform 7s ease;
}

.hero-slide.active img{
  transform:scale(1);
}

.hero-slide::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    0deg,
    rgba(15,12,10,.82) 0%,
    rgba(15,12,10,.32) 46%,
    rgba(15,12,10,.1) 100%
  );
}

.hero-content{
  position:relative;
  z-index:2;
  width:100%;
  padding:0 24px 56px;
  max-width:var(--container);
  margin:0 auto;
  color:var(--paper);
}

.hero-content .eyebrow{
  color:var(--saffron-light);
}

.hero-content h1{
  font-size:clamp(2rem,4.6vw,3.4rem);
  line-height:1.08;
  max-width:16ch;
  margin-top:10px;
}

.hero-content p{
  max-width:52ch;
  margin-top:16px;
  font-size:1.05rem;
  color:rgba(244,239,227,.86);
}

.hero-cta{
  margin-top:26px;
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

.hero-dots{
  position:absolute;
  z-index:3;
  right:24px;
  bottom:24px;
  display:flex;
  gap:9px;
}

@media (max-width:700px){
  .hero-dots{
    left:24px;
    right:auto;
    bottom:16px;
  }
}

.hero-dots button{
  width:26px;
  height:3px;
  background:rgba(244,239,227,.4);
  border:none;
  padding:0;
  transition:background .2s ease, width .2s ease;
}

.hero-dots button.active{
  background:var(--saffron);
  width:40px;
}

.hero-arrows{
  position:absolute;
  z-index:3;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 16px;
  pointer-events:none;
}

.hero-arrows button{
  pointer-events:auto;
  width:42px;
  height:42px;
  border-radius:50%;
  background:rgba(15,12,10,.35);
  border:1px solid rgba(244,239,227,.35);
  color:var(--paper);
  display:flex;
  align-items:center;
  justify-content:center;
  transition:background .2s ease;
}

.hero-arrows button:hover{
  background:rgba(15,12,10,.6);
}

@media (max-width:700px){
  .hero-arrows{
    display:none;
  }
}

/* ============================================================
   SECTION SHELLS
   ============================================================ */

section{
  padding:88px 0;
}

@media (max-width:700px){
  section{
    padding:60px 0;
  }
}

.sec-paper{
  background:var(--paper);
}

.sec-stone{
  background:var(--stone);
  position:relative;
}

.sec-stone::before{
  content:"";
  position:absolute;
  inset:0;
  opacity:.5;
  pointer-events:none;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(28,26,23,.05) 0, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(28,26,23,.05) 0, transparent 40%);
}

.sec-pine{
  background:var(--pine-deep);
  color:var(--paper);
  position:relative;
  overflow:hidden;
}

.sec-pine::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:1px;
  background:linear-gradient(90deg,transparent,rgba(244,239,227,.25),transparent);
}

.sec-maroon{
  background:var(--maroon);
  color:var(--paper);
  position:relative;
}

.sec-sky{
  background:var(--sky);
  color:var(--paper);
  position:relative;
}

.topo-line{
  position:absolute;
  inset:0;
  opacity:.12;
  pointer-events:none;
  background-image:repeating-linear-gradient(
    115deg,
    rgba(244,239,227,.5) 0 1px,
    transparent 1px 90px
  );
}

/* ============================================================
   ABOUT
   ============================================================ */

.about-grid{
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  gap:64px;
  align-items:center;
}

@media (max-width:900px){
  .about-grid{
    grid-template-columns:1fr;
    gap:36px;
  }
}

.about-media{
  position:relative;
}

.about-media .img-main{
  border-radius:var(--radius-m);
  box-shadow:var(--shadow);
}

.about-media .img-tag{
  position:absolute;
  right:-28px;
  bottom:-28px;
  width:46%;
  border:6px solid var(--paper);
  box-shadow:var(--shadow);
  border-radius:var(--radius-s);
}

@media (max-width:900px){
  .about-media .img-tag{
    right:-12px;
    bottom:-24px;
    width:44%;
  }
}

.about-stats{
  display:flex;
  gap:34px;
  margin-top:30px;
  flex-wrap:wrap;
}

.about-stats div strong{
  display:block;
  font-family:var(--font-display);
  font-size:1.9rem;
  color:var(--pine);
}

.about-stats div span{
  font-size:.85rem;
  color:rgba(28,26,23,.6);
}

.about-copy p{
  margin-bottom:16px;
  color:rgba(28,26,23,.78);
}

.about-list{
  margin-top:22px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px 24px;
}

.about-list li{
  display:flex;
  gap:10px;
  align-items:flex-start;
  font-size:.95rem;
}

.about-list li svg{
  flex:none;
  width:18px;
  height:18px;
  margin-top:3px;
  color:var(--saffron);
}

@media (max-width:520px){
  .about-list{
    grid-template-columns:1fr;
  }
}

/* ============================================================
   SERVICES — asymmetric strip, not identical cards
   ============================================================ */

.services-wrap{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(230px,1fr));
  gap:1px;
  background:var(--line);
  border:1px solid var(--line);
  border-radius:var(--radius-m);
  overflow:hidden;
}

.service-item{
  background:var(--paper);
  padding:30px 26px;
  min-height:190px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  gap:22px;
  transition:background .2s ease;
}

.service-item:hover{
  background:var(--paper-2);
}

.service-item svg{
  width:30px;
  height:30px;
  color:var(--saffron);
}

.service-item h3{
  font-size:1.08rem;
  font-weight:600;
}

.service-item p{
  font-size:.88rem;
  color:rgba(28,26,23,.65);
  margin-top:6px;
}

/* ============================================================
   TOUR CARDS — image + text split, horizontal
   ============================================================ */

.tour-list{
  display:flex;
  flex-direction:column;
  gap:1px;
  background:var(--line);
  border:1px solid var(--line);
  border-radius:var(--radius-m);
  overflow:hidden;
}

.tour-row{
  display:grid;
  grid-template-columns:320px 1fr;
  background:var(--paper);
  transition:background .25s ease;
}

.tour-row:hover{
  background:var(--paper-2);
}

.tour-row:hover .tour-media img{
  transform:scale(1.04);
}

.tour-row .tour-media img{
  transition:transform .5s ease;
}

@media (max-width:760px){
  .tour-row{
    grid-template-columns:1fr;
  }
}

.tour-row .tour-media{
  position:relative;
  min-height:220px;
  overflow:hidden;
}

.tour-row .tour-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  position:absolute;
  inset:0;
}

.tour-row .tour-body{
  padding:34px 36px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:14px;
}

.tour-index{
  font-family:var(--font-display);
  font-size:.85rem;
  color:var(--saffron);
  letter-spacing:.04em;
}

.tour-row h3{
  font-size:1.5rem;
}

.tour-row p{
  color:rgba(28,26,23,.7);
  max-width:58ch;
}

.tour-actions{
  display:flex;
  gap:14px;
  margin-top:6px;
  flex-wrap:wrap;
}

/* generic simple tour/destination card grid (used on inner pages) */

.card-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(270px,1fr));
  gap:28px;
}

.dest-card{
  background:var(--paper);
  border:1px solid var(--line);
  border-radius:var(--radius-m);
  overflow:hidden;
  display:flex;
  flex-direction:column;
  transition:transform .25s ease, box-shadow .25s ease;
}

.dest-card:hover{
  transform:translateY(-5px);
  box-shadow:var(--shadow);
}

.dest-card .dest-media{
  position:relative;
  aspect-ratio:4/3;
  overflow:hidden;
}

.dest-card .dest-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .5s ease;
}

.dest-card:hover .dest-media img{
  transform:scale(1.06);
}

.dest-card .dest-body{
  padding:20px 22px 24px;
  display:flex;
  flex-direction:column;
  gap:10px;
  flex:1;
}

.dest-card h3{
  font-size:1.15rem;
}

.dest-card p{
  font-size:.9rem;
  color:rgba(28,26,23,.66);
  flex:1;
}

/* ============================================================
   POPULAR DESTINATIONS — postcard strip
   ============================================================ */

.postcard-strip{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:26px;
  width:100%;
  max-width:100%;
}

.postcard-strip > *{
  min-width:0;
  width:100%;
  max-width:100%;
}

@media (max-width:900px){
  .postcard-strip{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media (max-width:560px){
  .postcard-strip{
    grid-template-columns:minmax(0,1fr);
    width:100%;
  }

  .postcard-strip > *{
    width:100%;
    min-width:0;
    max-width:100%;
  }
}

.postcard{
  width:100%;
  max-width:100%;
  min-width:0;
  box-sizing:border-box;
  background:var(--paper);
  padding:10px 10px 18px;
  border-radius:2px;
  box-shadow:0 10px 24px -16px rgba(20,16,12,.4);
  transform:rotate(var(--tilt,0deg));
  transition:transform .25s ease;
  overflow:hidden;
}

.postcard-strip > *:nth-child(3n+1) .postcard{
  --tilt:-1.1deg;
}

.postcard-strip > *:nth-child(3n+2) .postcard{
  --tilt:0.6deg;
}

.postcard-strip > *:nth-child(3n+3) .postcard{
  --tilt:-0.4deg;
}

.postcard:hover{
  transform:rotate(0deg) translateY(-4px);
}

.postcard .pc-media{
  width:100%;
  max-width:100%;
  aspect-ratio:5/4;
  overflow:hidden;
  position:relative;
}

.postcard .pc-media img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.postcard .pc-body{
  width:100%;
  min-width:0;
  max-width:100%;
  padding:14px 8px 0;
}

.postcard h3{
  font-size:1.05rem;
  overflow-wrap:break-word;
}

.postcard p{
  max-width:100%;
  font-size:.85rem;
  color:rgba(28,26,23,.62);
  margin-top:6px;
  overflow-wrap:anywhere;
  word-break:normal;
}

.postcard .pc-foot{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  margin-top:14px;
  min-width:0;
}

.postcard .pc-stamp{
  font-family:var(--font-display);
  font-size:.7rem;
  letter-spacing:.05em;
  color:var(--maroon);
  border:1px solid var(--maroon);
  padding:3px 8px;
  border-radius:2px;
  opacity:.75;
  min-width:0;
}

.postcard .pc-foot .btn{
  flex-shrink:0;
}

@media (max-width:560px){
  .postcard{
    width:100%;
    max-width:100%;
    min-width:0;
    padding:10px 10px 18px;
    overflow:hidden;
  }

  .postcard .pc-body{
    width:100%;
    min-width:0;
    padding:14px 8px 0;
  }

  .postcard p{
    width:100%;
    max-width:100%;
    overflow-wrap:anywhere;
  }

  .postcard .pc-foot{
    width:100%;
    max-width:100%;
  }

  .postcard .pc-stamp{
    flex-shrink:1;
  }

  .postcard .pc-foot .btn{
    flex-shrink:0;
  }
}

/* ============================================================
   PILGRIM — ornamental, maroon-tinted
   ============================================================ */

.pilgrim-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
}

@media (max-width:980px){
  .pilgrim-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media (max-width:560px){
  .pilgrim-grid{
    grid-template-columns:1fr;
  }
}

.pilgrim-card{
  background:rgba(244,239,227,.06);
  border:1px solid rgba(244,239,227,.16);
  border-radius:var(--radius-m);
  overflow:hidden;
  transition:transform .25s ease, background .25s ease;
}

.pilgrim-card:hover{
  transform:translateY(-5px);
  background:rgba(244,239,227,.1);
}

.pilgrim-card .pg-media img{
  transition:transform .5s ease;
}

.pilgrim-card:hover .pg-media img{
  transform:scale(1.05);
}

.pilgrim-card .pg-media{
  aspect-ratio:1/1;
  position:relative;
  overflow:hidden;
}

.pilgrim-card .pg-media img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.pilgrim-card .pg-media::after{
  content:"";
  position:absolute;
  inset:0;
  box-shadow:inset 0 -50px 40px -20px rgba(15,10,8,.55);
}

.pilgrim-card .pg-body{
  padding:18px 18px 22px;
}

.pilgrim-card h3{
  font-size:1.03rem;
  color:var(--paper);
}

.pilgrim-card p{
  font-size:.85rem;
  color:rgba(244,239,227,.68);
  margin-top:6px;
}

.pilgrim-card .btn{
  margin-top:14px;
}

.pilgrim-subhead{
  font-family:var(--font-display);
  font-size:1.3rem;
  color:var(--paper);
  margin:48px 0 22px;
  padding-top:26px;
  border-top:1px solid rgba(244,239,227,.18);
}

.pilgrim-subhead:first-of-type{
  border-top:none;
  padding-top:0;
  margin-top:0;
}

/* ============================================================
   VEHICLES — spec-sheet style
   ============================================================ */

.vehicle-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:24px;
}

.vehicle-card{
  background:rgba(244,239,227,.07);
  border:1px solid rgba(244,239,227,.2);
  border-radius:var(--radius-m);
  overflow:hidden;
  transition:transform .25s ease, background .25s ease;
}

.vehicle-card:hover{
  transform:translateY(-5px);
  background:rgba(244,239,227,.12);
}

.vehicle-card .vh-media img{
  transition:transform .5s ease;
}

.vehicle-card:hover .vh-media img{
  transform:scale(1.05);
}

.vehicle-card .vh-media{
  aspect-ratio:4/3;
  overflow:hidden;
}

.vehicle-card .vh-media img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.vehicle-card .vh-body{
  padding:20px 22px 24px;
}

.vehicle-card h3{
  font-size:1.15rem;
  color:var(--paper);
}

.vh-specs{
  display:flex;
  flex-wrap:wrap;
  gap:8px 16px;
  margin:12px 0 16px;
  font-size:.82rem;
  color:rgba(244,239,227,.78);
}

.vh-specs span{
  display:flex;
  align-items:center;
  gap:6px;
}

.vh-specs svg{
  width:15px;
  height:15px;
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */

.why-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1px;
  background:var(--line);
  border:1px solid var(--line);
}

@media (max-width:900px){
  .why-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media (max-width:560px){
  .why-grid{
    grid-template-columns:1fr;
  }
}

.why-item{
  background:var(--paper);
  padding:30px 28px;
  display:flex;
  gap:16px;
  align-items:flex-start;
  transition:transform .25s ease, box-shadow .25s ease;
}

.why-item:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow);
  position:relative;
  z-index:1;
}

.why-item svg{
  width:26px;
  height:26px;
  color:var(--maroon);
  flex:none;
  margin-top:2px;
}

.why-item h3{
  font-size:1.02rem;
}

.why-item p{
  font-size:.87rem;
  color:rgba(28,26,23,.62);
  margin-top:6px;
}

/* ============================================================
   REVIEWS — swipeable
   ============================================================ */

.reviews-track-wrap{
  overflow:hidden;
  margin:0 -4px;
}

.reviews-track{
  display:flex;
  gap:22px;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  padding:4px 4px 14px;
  -webkit-overflow-scrolling:touch;
  scrollbar-width:none;
}

.reviews-track::-webkit-scrollbar{
  display:none;
}

.review-card{
  scroll-snap-align:start;
  flex:0 0 min(380px,84vw);
  background:var(--paper);
  border:1px solid var(--line);
  border-radius:var(--radius-m);
  padding:28px 26px;
}

.review-stars{
  color:var(--saffron);
  font-size:.95rem;
  letter-spacing:2px;
}

.review-card p.quote{
  margin-top:14px;
  font-size:.98rem;
  color:rgba(28,26,23,.8);
}

.review-who{
  display:flex;
  align-items:center;
  gap:12px;
  margin-top:20px;
}

.review-avatar{
  width:42px;
  height:42px;
  border-radius:50%;
  background:var(--pine);
  color:var(--paper);
  display:flex;
  align-items:center;
  justify-content:center;
  font-family:var(--font-display);
  font-size:.95rem;
}

.review-who strong{
  display:block;
  font-size:.92rem;
}

.review-who span{
  font-size:.78rem;
  color:rgba(28,26,23,.55);
}

.reviews-nav{
  display:flex;
  gap:12px;
  margin-top:20px;
}

.reviews-nav button{
  width:38px;
  height:38px;
  border-radius:50%;
  border:1px solid var(--line);
  background:transparent;
  display:flex;
  align-items:center;
  justify-content:center;
}

.reviews-nav button:hover{
  background:var(--paper-2);
}

/* ============================================================
   BOOKING FORM
   ============================================================ */

.booking-wrap{
  display:grid;
  grid-template-columns:1fr .9fr;
  gap:0;
  background:var(--paper);
  border:1px solid var(--line);
  border-radius:var(--radius-m);
  overflow:hidden;
}

@media (max-width:900px){
  .booking-wrap{
    grid-template-columns:1fr;
  }
}

.booking-form{
  padding:40px;
}

.booking-side{
  background:var(--pine-deep);
  color:var(--paper);
  padding:40px;
  position:relative;
  display:flex;
  flex-direction:column;
  justify-content:center;
  height:100%;
}

.booking-side h3{
  font-size:1.4rem;
}

.booking-side p{
  color:rgba(244,239,227,.75);
  margin-top:12px;
  font-size:.95rem;
}

.booking-side .side-contact{
  margin-top:26px;
  display:flex;
  flex-direction:column;
  gap:14px;
}

.booking-side .side-contact a{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:.92rem;
}

.booking-side .side-contact svg{
  width:18px;
  height:18px;
  color:var(--saffron-light);
  flex:none;
}

.form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}

@media (max-width:560px){
  .form-grid{
    grid-template-columns:1fr;
  }
}

.field{
  display:flex;
  flex-direction:column;
  gap:6px;
}

.field.full{
  grid-column:1/-1;
}

.field label{
  font-size:.82rem;
  font-weight:600;
  color:rgba(28,26,23,.72);
}

.field input,
.field select,
.field textarea{
  border:1px solid var(--line);
  background:var(--paper);
  padding:12px 14px;
  font-family:inherit;
  font-size:.95rem;
  border-radius:2px;
  color:var(--ink);
}

.field input:focus,
.field select:focus,
.field textarea:focus{
  outline:none;
  border-color:var(--saffron);
}

.field textarea{
  resize:vertical;
  min-height:90px;
}

.form-actions{
  display:flex;
  gap:14px;
  margin-top:24px;
  flex-wrap:wrap;
  align-items:center;
}

.form-note{
  font-size:.8rem;
  color:rgba(28,26,23,.55);
  margin-top:14px;
}

/* ============================================================
   FOOTER
   ============================================================ */

footer{
  background:var(--pine-deep);
  color:rgba(244,239,227,.85);
  padding-top:76px;
}

.footer-grid{
  display:grid;
  grid-template-columns:1.3fr 1fr 1fr 1fr;
  gap:44px;
}

@media (max-width:900px){
  .footer-grid{
    grid-template-columns:1fr 1fr;
    row-gap:36px;
  }
}

@media (max-width:560px){
  .footer-grid{
    grid-template-columns:1fr;
  }
}

.footer-brand{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:16px;
}

.footer-brand img{
  height:44px;
}

.footer-brand strong{
  font-family:var(--font-display);
  font-size:1.15rem;
  color:var(--paper);
}

.footer-col h4{
  color:var(--paper);
  font-size:.92rem;
  letter-spacing:.02em;
  margin-bottom:16px;
}

.footer-col ul li{
  margin-bottom:10px;
}

.footer-col ul li a{
  font-size:.9rem;
  color:rgba(244,239,227,.72);
  display:inline-flex;
  gap:8px;
  align-items:center;
}

.footer-col ul li a:hover{
  color:var(--saffron-light);
}

.footer-col address{
  font-style:normal;
  font-size:.9rem;
  color:rgba(244,239,227,.72);
  line-height:1.7;
}

.footer-social{
  display:flex;
  gap:10px;
  margin-top:16px;
}

.footer-social a{
  width:38px;
  height:38px;
  border:1px solid rgba(244,239,227,.25);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
}

.footer-social a:hover{
  background:var(--saffron);
  border-color:var(--saffron);
}

.footer-social svg{
  width:17px;
  height:17px;
}

.footer-map{
  margin-top:60px;
  border-top:1px solid rgba(244,239,227,.12);
  padding-top:40px;
}

.footer-map iframe{
  width:100%;
  height:280px;
  border:0;
  border-radius:var(--radius-m);
  filter:grayscale(.2) contrast(1.05);
}

.footer-seo{
  margin-top:40px;
  padding-top:32px;
  border-top:1px solid rgba(244,239,227,.12);
}

.footer-seo h4{
  color:rgba(244,239,227,.55);
  font-size:.78rem;
  font-weight:500;
  margin-bottom:14px;
}

.seo-tags{
  display:flex;
  flex-wrap:wrap;
  gap:9px;
}

.seo-tags span{
  font-size:.78rem;
  color:rgba(244,239,227,.55);
  border:1px solid rgba(244,239,227,.16);
  padding:5px 12px;
  border-radius:20px;
}

.footer-bottom{
  margin-top:48px;
  padding:22px 0;
  border-top:1px solid rgba(244,239,227,.12);
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:14px;
  font-size:.82rem;
  color:rgba(244,239,227,.55);
}

.footer-bottom .legal-links{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}

.footer-bottom .legal-links a:hover{
  color:var(--saffron-light);
}

/* ============================================================
   FLOATING BUTTONS
   ============================================================ */

.float-actions{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:600;
  display:flex;
  flex-direction:column;
  gap:12px;
}

.float-btn{
  width:52px;
  height:52px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 10px 24px -8px rgba(0,0,0,.45);
  color:var(--paper);
  transition:transform .2s ease;
}

.float-btn:hover{
  transform:scale(1.07);
}

.float-btn svg{
  width:24px;
  height:24px;
}

.float-call{
  background:var(--pine);
}

.float-whatsapp{
  background:#25A25A;
}

@media (max-width:600px){
  .float-actions{
    right:14px;
    bottom:14px;
  }

  .float-btn{
    width:46px;
    height:46px;
  }
}

/* ============================================================
   INNER PAGE HERO (banner for non-home pages)
   ============================================================ */

.page-banner{
  background:var(--pine-deep);
  color:var(--paper);
  padding:64px 0 50px;
  position:relative;
  overflow:hidden;
}

.page-banner .eyebrow{
  color:var(--saffron-light);
}

.page-banner h1{
  font-size:clamp(1.9rem,4vw,2.9rem);
  margin-top:10px;
}

.page-banner .crumb{
  margin-top:14px;
  font-size:.85rem;
  color:rgba(244,239,227,.6);
}

.page-banner .crumb a:hover{
  color:var(--saffron-light);
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */

.reveal{
  opacity:0;
  transform:translateY(18px);
  transition:opacity .7s ease, transform .7s ease;
}

.reveal.in{
  opacity:1;
  transform:translateY(0);
}

/* ============================================================
   SMALL POLICY PAGES
   ============================================================ */

.policy-body{
  max-width:760px;
  margin:0 auto;
}

.policy-body h2{
  margin-top:36px;
  font-size:1.3rem;
}

.policy-body p,
.policy-body li{
  color:rgba(28,26,23,.75);
  margin-top:12px;
  font-size:.98rem;
}

.policy-body li{
  margin-left:20px;
  list-style:disc;
}

/* ============================================================
   HERO - consistent text readability on all slides
   ============================================================ */

.hero-slide::before{
  z-index:1;
  background:linear-gradient(
    90deg,
    rgba(15,12,10,.72) 0%,
    rgba(15,12,10,.48) 45%,
    rgba(15,12,10,.28) 100%
  );
}

.hero-content{
  z-index:2;
}

.hero-content h1{
  color:#ffffff !important;
}

.hero-content p{
  color:rgba(255,255,255,.90) !important;
}

@media (max-width:980px){
  .main-nav{
    z-index:510 !important;
  }

  .nav-toggle{
    z-index:520 !important;
    cursor:pointer;
  }

  .nav-scrim{
    z-index:500 !important;
  }

  .main-nav.open{
    transform:translateX(0) !important;
  }
}

/* ============================================================
   PREMIUM CINEMATIC PRELOADER
   ============================================================ */

#preloader{
  position:fixed;
  inset:0;
  z-index:999999;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  background:#0d1715;
  transition:opacity .9s ease, visibility .9s ease;
}

#preloader.hide{
  opacity:0;
  visibility:hidden;
  pointer-events:none;
}

.preloader-bg{
  position:absolute;
  inset:0;
  background:
    radial-gradient(
      circle at 50% 42%,
      rgba(196,146,57,.12),
      transparent 32%
    ),
    linear-gradient(
      180deg,
      #101a18 0%,
      #0b1211 100%
    );
}

.preloader-bg::after{
  content:"";
  position:absolute;
  left:-10%;
  right:-10%;
  bottom:-5%;
  height:38%;
  background:#08100f;
  clip-path:polygon(
    0 100%,
    15% 48%,
    25% 72%,
    38% 28%,
    50% 70%,
    63% 38%,
    76% 65%,
    88% 30%,
    100% 62%,
    100% 100%
  );
  opacity:.8;
}

.preloader-content{
  position:relative;
  z-index:2;
  width:min(90%,600px);
  text-align:center;
  color:#fff;
  animation:preloaderIn 1.1s ease both;
}

.preloader-logo{
  margin-bottom:22px;
}

.preloader-logo img{
  width:130px;
  height:130px;
  object-fit:contain;
  display:block;
  margin:0 auto;
  filter:drop-shadow(0 10px 25px rgba(0,0,0,.4));
}

.preloader-welcome{
  font-size:10px;
  letter-spacing:6px;
  font-weight:500;
  opacity:.65;
  margin-bottom:12px;
}

.preloader-content h2{
  margin:0;
  font-family:Georgia,serif;
  font-size:clamp(25px,5vw,43px);
  line-height:1.1;
  letter-spacing:1.5px;
  font-weight:600;
}

.journey-line{
  position:relative;
  width:min(390px,78%);
  height:34px;
  margin:30px auto 18px;
}

.journey-line::before{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:16px;
  height:1px;
  background:rgba(255,255,255,.22);
}

.journey-progress{
  position:absolute;
  left:0;
  top:16px;
  width:0;
  height:1px;
  background:#d7a84b;
  animation:journeyProgress 2.4s ease-in-out infinite;
}

.journey-point{
  position:absolute;
  top:12px;
  width:9px;
  height:9px;
  border-radius:50%;
  border:1px solid #d7a84b;
  background:#0d1715;
}

.point-start{
  left:-1px;
}

.point-end{
  right:-1px;
}

.journey-marker{
  position:absolute;
  top:7px;
  left:0;
  font-size:13px;
  color:#d7a84b;
  animation:journeyMarker 2.4s ease-in-out infinite;
}

.preloader-content p{
  margin:0;
  font-size:9px;
  letter-spacing:3px;
  opacity:.48;
}

@keyframes journeyProgress{
  0%{width:0;}
  50%{width:50%;}
  100%{width:100%;}
}

@keyframes journeyMarker{
  0%{
    left:0;
    transform:translateX(-50%) rotate(45deg);
  }

  50%{
    left:50%;
    transform:translateX(-50%) rotate(45deg);
  }

  100%{
    left:100%;
    transform:translateX(-50%) rotate(45deg);
  }
}

@keyframes preloaderIn{
  from{
    opacity:0;
    transform:translateY(18px);
  }

  to{
    opacity:1;
    transform:translateY(0);
  }
}

/* ============================================================
   BOOKING FORM MOBILE FIX
   ============================================================ */

.booking-form{
  width:100%;
}

.field input,
.field select,
.field textarea{
  width:100%;
  max-width:100%;
  box-sizing:border-box;
}

.form-actions .btn{
  min-height:46px;
}

@media (max-width:560px){
  .booking-form{
    padding:24px 18px;
  }

  .booking-side{
    padding:28px 20px;
  }

  .form-actions{
    flex-direction:column;
    align-items:stretch;
  }

  .form-actions .btn{
    width:100%;
    justify-content:center;
  }
}