/* ============================================================
   Royal Route Travel — style.css
   Palette: Night Asphalt #1A2238 | Plate Yellow #FFC72C
            Chalk #FAF7F0 | Ink #23262E | Road Grey #5B6170
   Display font: Archivo (Google Fonts) | Body: system stack
   ============================================================ */

:root{
  --asphalt:#0B2D51;
  --asphalt-deep:#082441;
  --yellow:#8ABBD2;
  --yellow-dark:#3D7EA6;
  --chalk:#F5F9FC;
  --ink:#12283D;
  --grey:#49617A;
  --line:#D8E4EF;
  --whatsapp:#1FAF57;
  --radius:14px;
  --maxw:1120px;
  --display:"Archivo",system-ui,sans-serif;
  --body:system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
}

*{margin:0;padding:0;box-sizing:border-box}
html,body{overflow-x:clip}
html{scroll-behavior:smooth}
@media (prefers-reduced-motion:reduce){html{scroll-behavior:auto}*{animation:none!important;transition:none!important}}

body{
  font-family:var(--body);
  color:var(--ink);
  background:var(--chalk);
  line-height:1.65;
  font-size:1.0rem;
}

img{max-width:100%;height:auto;display:block}
a{color:inherit}
:focus-visible{outline:3px solid var(--yellow);outline-offset:2px}

.wrap{max-width:var(--maxw);margin:0 auto;padding:0 20px}

/* ---------- Typography ---------- */
h1,h2,h3{font-family:var(--display);line-height:1.15;letter-spacing:-0.01em}
h1{font-size:clamp(2rem,5.4vw,3.4rem);font-weight:900}
h2{font-size:clamp(1.5rem,3.4vw,2.2rem);font-weight:800}
h3{font-size:1.15rem;font-weight:700}
.eyebrow{
  display:inline-block;font-family:var(--display);font-weight:700;
  font-size:.8rem;letter-spacing:.14em;text-transform:uppercase;
  color:var(--grey);margin-bottom:.6rem;
}
.lede{font-size:1.08rem;color:var(--grey);max-width:62ch}

/* ---------- Road-line divider (signature) ---------- */
.roadline{
  border:0;height:6px;margin:0;background:
    linear-gradient(90deg,var(--yellow) 0 34px,transparent 34px 58px) repeat-x;
  background-size:58px 6px;background-position:center;
  background-color:transparent;
}

/* ---------- Plate badge (signature) ---------- */
.plate{
  display:inline-flex;align-items:center;gap:.45em;
  background:var(--yellow);color:#082441;
  font-family:var(--display);font-weight:800;font-size:.95rem;
  letter-spacing:.06em;
  border:2px solid #0B2D51;border-radius:8px;
  padding:.28em .7em;box-shadow:2px 2px 0 #0B2D51;
  white-space:nowrap;
}
.plate .arrow{font-weight:900}

/* ---------- Top bar + header ---------- */
.topbar{
  background:var(--asphalt-deep);color:#cfd5e4;font-size:.85rem;
  padding:.45rem 0;text-align:center;
}
.topbar a{color:#A9D2E8;font-weight:700;text-decoration:none}

header.site{
  background:#fff;color:var(--asphalt);position:sticky;top:0;z-index:50;
  border-bottom:4px solid var(--asphalt);box-shadow:0 2px 10px rgba(11,45,81,.08);
}
.nav{display:flex;align-items:center;justify-content:space-between;gap:1rem;padding:.55rem 0}
.brand{display:flex;align-items:center;gap:.7rem;text-decoration:none;color:var(--asphalt)}
.brand img{height:56px;width:56px;display:block}
.brand b{font-family:var(--display);font-weight:900;font-size:1.08rem;line-height:1.15;display:block;letter-spacing:.02em}
.brand small{display:block;font-size:.68rem;color:var(--yellow-dark);letter-spacing:.14em;text-transform:uppercase;font-weight:700}
nav.menu{display:flex;gap:1.4rem;align-items:center}
nav.menu a{color:var(--asphalt);text-decoration:none;font-size:.95rem;font-weight:700}
nav.menu a:hover{color:var(--yellow-dark)}
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:.5em;
  font-family:var(--display);font-weight:800;text-decoration:none;
  border-radius:10px;padding:.72em 1.25em;font-size:.98rem;line-height:1.1;
  border:2px solid transparent;transition:transform .12s ease,box-shadow .12s ease;
}
.btn:hover{transform:translateY(-2px)}
.btn-yellow{background:var(--yellow);color:#082441;border-color:#0B2D51;box-shadow:3px 3px 0 #0B2D51}
.btn-ghost{background:transparent;color:#fff;border-color:#ffffff55}
.btn-wa{background:var(--whatsapp);color:#fff;border-color:#137a3b;box-shadow:3px 3px 0 #0e5c2c}
.btn-dark{background:var(--asphalt);color:#fff;border-color:var(--asphalt-deep);box-shadow:3px 3px 0 var(--asphalt-deep)}

.hamb{display:none;background:linear-gradient(160deg,#164C78,#0B2D51);border:2px solid #0B2D51;
  border-radius:12px;min-width:54px;min-height:54px;cursor:pointer;z-index:70;
  box-shadow:2.5px 2.5px 0 #082441;position:relative;
  flex-direction:column;align-items:center;justify-content:center;gap:6px;padding:0}
.hamb span{display:block;width:26px;height:3.5px;border-radius:3px;background:#8ABBD2;
  transition:transform .25s ease,opacity .2s ease}
header.site.open .hamb span:nth-child(1){transform:translateY(9.5px) rotate(45deg)}
header.site.open .hamb span:nth-child(2){opacity:0}
header.site.open .hamb span:nth-child(3){transform:translateY(-9.5px) rotate(-45deg)}
@media (max-width:900px){
  .hamb{display:flex}
  header.site .btn-yellow{display:none}
  .brand img{height:50px;width:50px}
  .brand b{font-size:.98rem}
  .brand small{font-size:.62rem}
  header.site.open nav.menu{
    display:flex;flex-direction:column;gap:0;position:absolute;left:0;right:0;top:100%;
    background:#fff;border-bottom:4px solid var(--asphalt);box-shadow:0 12px 24px rgba(11,45,81,.15);
  }
  header.site.open nav.menu a{padding:.9rem 1.4rem;border-top:1px solid var(--line)}
  header.site{position:sticky}
  .nav{position:relative}
}

/* ---------- Hero ---------- */
.hero{
  background:
    radial-gradient(1200px 500px at 85% -10%,#16456E 0%,transparent 60%),
    var(--asphalt);
  color:#fff;padding:4.2rem 0 0;overflow:hidden;
}
.hero-grid{display:grid;grid-template-columns:1.15fr .85fr;gap:2.5rem;align-items:center}
.hero h1{color:#fff}
.hero h1 .y{color:var(--yellow)}
.hero p.lede{color:#c3c9d8;margin:1rem 0 1.6rem}
.hero-ctas{display:flex;flex-wrap:wrap;gap:.8rem;margin-bottom:1.6rem}
.hero-points{display:flex;flex-wrap:wrap;gap:1rem .6rem;list-style:none;padding-bottom:2.6rem}
.hero-points li{
  font-size:.88rem;color:#dfe3ec;background:#ffffff12;border:1px solid #ffffff22;
  border-radius:999px;padding:.35em .9em;
}
.hero-card{
  background:#fff;color:var(--ink);border-radius:var(--radius);
  border:2px solid #0B2D51;box-shadow:6px 6px 0 #0B2D51;
  padding:1.4rem;margin-bottom:-2.2rem;
}
.hero-card h2{font-size:1.15rem;margin-bottom:.9rem}
.hero-card .row{display:flex;justify-content:space-between;gap:.8rem;padding:.55rem 0;border-bottom:1px dashed var(--line);font-size:.95rem}
.hero-card .row:last-of-type{border-bottom:0}
.hero-card .row b{font-family:var(--display)}
.hero-card .btn{width:100%;margin-top:.9rem}

/* ---------- Sections ---------- */
section{padding:3.6rem 0}
.section-head{margin-bottom:2rem}
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:1.2rem}
.grid-4{display:grid;grid-template-columns:repeat(4,1fr);gap:1.2rem}

.card{
  background:#fff;border:1.5px solid var(--line);border-radius:var(--radius);
  padding:1.3rem;transition:box-shadow .15s ease,transform .15s ease;
}
.card:hover{box-shadow:0 10px 26px rgba(26,34,56,.10);transform:translateY(-3px)}
.card h3{margin:.7rem 0 .4rem}
.card p{font-size:.94rem;color:var(--grey)}
.card .ico{
  width:44px;height:44px;border-radius:10px;background:var(--asphalt);
  color:#CFE4F1;display:grid;place-items:center;font-size:1.25rem;
}

/* ---------- Route cards ---------- */
.route-card{
  background:#fff;border:1.5px solid var(--line);border-radius:var(--radius);
  padding:1.2rem;display:flex;flex-direction:column;gap:.7rem;
}
.route-card .meta{display:flex;gap:1rem;font-size:.85rem;color:var(--grey)}
.route-card .price{font-family:var(--display);font-weight:900;font-size:1.35rem}
.route-card .price small{font-weight:600;font-size:.75rem;color:var(--grey)}
.route-card .actions{display:flex;gap:.6rem;margin-top:auto}
.route-card .actions .btn{flex:1;font-size:.85rem;padding:.6em .5em}
a.route-link{text-decoration:none;color:var(--asphalt);font-weight:700;font-size:.9rem}
a.route-link:hover{color:var(--yellow-dark)}

/* ---------- Fare table ---------- */
.table-wrap{overflow-x:auto;border:1.5px solid var(--line);border-radius:var(--radius);background:#fff}
table{width:100%;border-collapse:collapse;font-size:.95rem;min-width:560px}
caption{caption-side:top;text-align:left;padding:1rem 1.2rem .4rem;font-family:var(--display);font-weight:800;font-size:1.05rem}
th,td{padding:.8rem 1.2rem;text-align:left;border-top:1px solid var(--line)}
thead th{background:var(--asphalt);color:#fff;font-family:var(--display);font-weight:700;border-top:0;font-size:.88rem;letter-spacing:.04em}
tbody tr:nth-child(even){background:#faf8f2}
td .plate{font-size:.78rem;box-shadow:1.5px 1.5px 0 #0B2D51;padding:.2em .55em}

/* ---------- Steps ---------- */
.steps{display:grid;grid-template-columns:repeat(3,1fr);gap:1.2rem;counter-reset:step}
.step{position:relative;background:#fff;border:1.5px solid var(--line);border-radius:var(--radius);padding:1.6rem 1.3rem 1.3rem}
.step::before{
  counter-increment:step;content:counter(step,decimal-leading-zero);
  position:absolute;top:-14px;left:16px;
  background:var(--yellow);border:2px solid #0B2D51;border-radius:8px;
  font-family:var(--display);font-weight:900;font-size:.85rem;
  padding:.15em .55em;box-shadow:2px 2px 0 #0B2D51;
}

/* ---------- Reviews ---------- */
.review{background:#fff;border:1.5px solid var(--line);border-radius:var(--radius);padding:1.3rem}
.review .stars{color:#E8A33D;letter-spacing:.1em;margin-bottom:.5rem;font-size:.95rem}
.review p{font-size:.94rem;color:var(--ink)}
.review footer{margin-top:.8rem;font-size:.85rem;color:var(--grey);font-weight:600}

/* ---------- FAQ ---------- */
.faq details{
  background:#fff;border:1.5px solid var(--line);border-radius:12px;
  padding:1rem 1.2rem;margin-bottom:.8rem;
}
.faq summary{
  cursor:pointer;font-family:var(--display);font-weight:700;font-size:1rem;
  list-style:none;display:flex;justify-content:space-between;align-items:center;gap:1rem;
}
.faq summary::-webkit-details-marker{display:none}
.faq summary::after{content:"+";font-weight:900;font-size:1.2rem;color:var(--yellow-dark)}
.faq details[open] summary::after{content:"–"}
.faq details p{padding-top:.7rem;color:var(--grey);font-size:.95rem}

/* ---------- Area strip ---------- */
.area-strip{background:var(--asphalt);color:#fff}
.area-strip .grid-2{display:grid;grid-template-columns:1fr 1fr;gap:1.2rem}
.area-box{border:1px solid #ffffff2a;border-radius:var(--radius);padding:1.4rem;background:#ffffff0a}
.area-box h3{color:#A9D2E8}
.area-box p{color:#c3c9d8;font-size:.94rem;margin:.5rem 0 1rem}

/* ---------- CTA band ---------- */
.cta-band{
  background:var(--yellow);border-top:3px solid var(--asphalt);border-bottom:3px solid var(--asphalt);
  text-align:center;padding:3rem 0;
}
.cta-band h2{margin-bottom:.5rem}
.cta-band p{color:#173A54;margin-bottom:1.4rem}
.cta-band .btn-dark:hover{box-shadow:4px 4px 0 var(--asphalt-deep)}

/* ---------- Content / prose (route pages) ---------- */
.prose{max-width:72ch}
.prose h2{margin:2.2rem 0 .8rem}
.prose p{margin-bottom:1rem}
.prose ul{margin:0 0 1rem 1.2rem}
.prose li{margin-bottom:.4rem}
.breadcrumb{font-size:.85rem;color:var(--grey);padding:1.2rem 0 0}
.breadcrumb a{color:var(--grey)}
.breadcrumb a:hover{color:var(--yellow-dark)}

/* ---------- Footer ---------- */
footer.site{background:var(--asphalt-deep);color:#aeb6c9;padding:3rem 0 5.5rem;font-size:.92rem}
footer.site .cols{display:grid;grid-template-columns:1.3fr 1fr 1fr 1.2fr;gap:2rem}
footer.site h3{color:#fff;font-size:1rem;margin-bottom:.8rem}
footer.site a{color:#aeb6c9;text-decoration:none;display:block;padding:.22rem 0}
footer.site a:hover{color:#A9D2E8}
footer.site .legal{border-top:1px solid #ffffff1c;margin-top:2.2rem;padding-top:1.2rem;font-size:.82rem;text-align:center;color:#7d8496}

/* ---------- Sticky mobile call bar ---------- */
.callbar{
  position:fixed;bottom:0;left:0;right:0;z-index:60;display:none;
  grid-template-columns:1fr 1fr;gap:0;
}
.callbar a{
  text-align:center;padding:.95rem;font-family:var(--display);font-weight:800;
  text-decoration:none;font-size:1rem;
}
.callbar .c1{background:var(--yellow);color:#082441}
.callbar .c2{background:var(--whatsapp);color:#fff}

/* ---------- Responsive ---------- */
@media (max-width:900px){
  .hero-grid{grid-template-columns:1fr}
  .hero-card{margin-bottom:2rem}
  .hero{padding-top:3rem}
  .grid-3,.steps{grid-template-columns:1fr 1fr}
  .grid-4{grid-template-columns:1fr 1fr}
  footer.site .cols{grid-template-columns:1fr 1fr}
  nav.menu{display:none}
  .callbar{display:grid}
}
@media (max-width:560px){
  .grid-3,.grid-4,.steps,.area-strip .grid-2{grid-template-columns:1fr}
  .hero-points{padding-bottom:2rem}
}
