/* ==========================================================================
   SS TRAVELS — MAIN STYLESHEET
   Mobile-first. Premium, light, editorial-travel aesthetic.
   No scroll animations, no parallax, no glassmorphism, no heavy gradients.
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  /* Color */
  --ivory: #FBF9F3;
  --white: #FFFFFF;
  --sky-light: #E9F2F7;
  --sky: #CFE6EE;
  --navy: #142A3D;
  --navy-soft: #24445F;
  --slate: #55697A;
  --green: #3E6B52;
  --green-soft: #E7EFE9;
  --gold: #B5883A;
  --gold-soft: #F3E8D3;
  --border: #E6E1D3;
  --border-strong: #D8D1BE;

  /* Type */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Layout */
  --container: 1200px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --space-section: 72px;
  --shadow-sm: 0 1px 2px rgba(20, 42, 61, 0.06), 0 1px 1px rgba(20, 42, 61, 0.04);
  --shadow-md: 0 8px 24px rgba(20, 42, 61, 0.08);
}

@media (min-width: 900px) {
  :root {
    --space-section: 112px;
  }
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: auto; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--ivory);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--navy); margin: 0 0 0.5em; line-height: 1.15; font-weight: 600; }
p { margin: 0 0 1em; color: var(--slate); }
button { font-family: inherit; cursor: pointer; }

:focus-visible {
  outline: 2.5px solid var(--gold);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}

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

@media (min-width: 900px) {
  .container { padding: 0 40px; }
}

.section { padding: var(--space-section) 0; }
.section--tight { padding: 56px 0; }
.section--sky { background: var(--sky-light); }
.section--navy { background: var(--navy); color: var(--white); }
.section--navy h2, .section--navy h3, .section--navy p { color: var(--white); }
.section--navy .section__lede { color: rgba(255,255,255,0.78); }

.section__eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
}

.section__head {
  max-width: 720px;
  margin: 0 0 40px;
}

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

.section__title {
  font-size: clamp(28px, 4vw, 38px);
}

.section__lede {
  font-size: 17px;
  color: var(--slate);
}

/* ---------- Signature motif: Kashmir skyline divider ---------- */
.skyline-divider {
  display: block;
  width: 100%;
  height: 34px;
  color: var(--border-strong);
}
.skyline-divider--green { color: var(--green); opacity: 0.35; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  border: 1.5px solid transparent;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease, transform 0.1s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn--primary { background: var(--green); color: var(--white); }
.btn--primary:hover { background: #345a44; }

.btn--gold { background: var(--gold); color: var(--white); }
.btn--gold:hover { background: #9c7530; }

.btn--outline { background: transparent; border-color: var(--navy); color: var(--navy); }
.btn--outline:hover { background: var(--navy); color: var(--white); }

.btn--outline-light { background: transparent; border-color: rgba(255,255,255,0.5); color: var(--white); }
.btn--outline-light:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }

.btn--sm { padding: 9px 18px; font-size: 13.5px; }
.btn--block { width: 100%; }

.cta-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--navy);
  color: var(--white);
  padding: 10px 18px;
  z-index: 200;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ==========================================================================
   NAVBAR
   ========================================================================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 249, 243, 0.94);
  border-bottom: 1px solid var(--border);
  backdrop-filter: none;
}
.navbar__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
@media (min-width: 900px) { .navbar__inner { padding: 16px 40px; } }

.navbar__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
}
.navbar__brand-mark { color: var(--green); display: flex; }
.navbar__brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.navbar__brand-name { font-family: var(--font-display); font-weight: 700; font-size: 19px; }
.navbar__brand-sub { font-size: 10.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--slate); }

.navbar__toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  padding: 0;
}
.navbar__toggle span {
  display: block;
  height: 2px;
  width: 24px;
  margin: 0 auto;
  background: var(--navy);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.navbar__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__toggle.is-open span:nth-child(2) { opacity: 0; }
.navbar__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.navbar__menu {
  position: fixed;
  inset: 64px 0 0 0;
  background: var(--ivory);
  padding: 24px 20px 40px;
  transform: translateX(100%);
  transition: transform 0.22s ease;
  overflow-y: auto;
}
.navbar__menu.is-open { transform: translateX(0); }

.navbar__links { display: flex; flex-direction: column; gap: 4px; margin-bottom: 24px; }
.navbar__links a {
  display: block;
  padding: 13px 4px;
  font-size: 17px;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
  color: var(--navy);
}
.navbar__links a.is-active { color: var(--green); font-weight: 700; }
.navbar__cta { width: 100%; }

@media (min-width: 900px) {
  .navbar__toggle { display: none; }
  .navbar__menu {
    position: static;
    transform: none;
    background: transparent;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 28px;
    overflow: visible;
  }
  .navbar__links { flex-direction: row; gap: 26px; margin-bottom: 0; }
  .navbar__links a { padding: 6px 0; border-bottom: none; font-size: 14.5px; position: relative; }
  .navbar__links a.is-active::after,
  .navbar__links a:hover::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: -4px;
    height: 2px;
    background: var(--green);
  }
  .navbar__cta { width: auto; }
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  background: linear-gradient(180deg, var(--sky-light) 0%, var(--ivory) 78%);
  overflow: hidden;
}
.hero__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 48px 20px 0;
  display: grid;
  gap: 36px;
}
@media (min-width: 900px) {
  .hero__inner { padding: 72px 40px 0; grid-template-columns: 1.05fr 0.95fr; align-items: center; gap: 48px; }
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 18px;
}
.hero__eyebrow::before {
  content: "";
  width: 22px;
  height: 1.5px;
  background: var(--gold);
}

.hero__title {
  font-size: clamp(32px, 5.2vw, 54px);
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}
.hero__title em { font-style: italic; color: var(--green); }

.hero__lede {
  font-size: 18px;
  max-width: 46ch;
  margin-bottom: 30px;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid var(--border-strong);
}
.hero__meta-item { font-size: 13.5px; color: var(--slate); display: flex; align-items: center; gap: 7px; }
.hero__meta-item strong { color: var(--navy); }
.hero__meta-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); }

.hero__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 5;
}
@media (min-width: 900px) { .hero__media { aspect-ratio: 5 / 6; } }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__media-caption {
  position: absolute;
  left: 16px; right: 16px; bottom: 16px;
  background: rgba(20, 42, 61, 0.82);
  color: var(--white);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 12.5px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero__skyline { display: block; width: 100%; height: 56px; color: var(--white); margin-top: 44px; }

/* ==========================================================================
   TRUST / VALUE GRID
   ========================================================================== */
.value-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .value-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .value-grid { grid-template-columns: repeat(3, 1fr); } }

.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px 24px;
}
.value-card__icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: var(--green-soft);
  color: var(--green);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.value-card h3 { font-size: 17px; margin-bottom: 8px; }
.value-card p { font-size: 14.5px; margin-bottom: 0; }

/* ==========================================================================
   PACKAGE / DESTINATION CARDS
   ========================================================================== */
.card-row {
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .card-row { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .card-row--3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1200px) { .card-row--4 { grid-template-columns: repeat(4, 1fr); } }

.package-card, .dest-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}
.package-card:hover, .dest-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.package-card__media, .dest-card__media { aspect-ratio: 4/3; overflow: hidden; }
.package-card__media img, .dest-card__media img { width: 100%; height: 100%; object-fit: cover; }

.package-card__body, .dest-card__body { padding: 20px; }
.package-card__tag {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-soft);
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 10px;
}
.package-card h3, .dest-card h3 { font-size: 18px; margin-bottom: 8px; }
.package-card p, .dest-card p { font-size: 14px; margin-bottom: 14px; }
.card-link {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* ==========================================================================
   WHY VISIT / TWO-COLUMN
   ========================================================================== */
.split {
  display: grid;
  gap: 40px;
  align-items: center;
}
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; gap: 56px; } }
.split--reverse .split__media { order: -1; }
@media (min-width: 900px) { .split--reverse .split__media { order: 2; } }

.split__media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.split__media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

.check-list { display: flex; flex-direction: column; gap: 12px; margin: 22px 0; }
.check-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: var(--navy); }
.check-list svg { flex-shrink: 0; margin-top: 3px; color: var(--green); }

/* ==========================================================================
   PLANNING (long-form)
   ========================================================================== */
.planning-list { counter-reset: plan; display: flex; flex-direction: column; gap: 26px; }
.planning-item { display: flex; gap: 18px; }
.planning-item__num {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 15px;
}
.planning-item h3 { font-size: 17px; margin-bottom: 6px; }
.planning-item p { font-size: 14.5px; margin-bottom: 0; }

/* ==========================================================================
   FROM DIFFERENT LOCATIONS
   ========================================================================== */
.route-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.route-card__path { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--slate); font-weight: 600; }
.route-card__path svg { color: var(--gold); }
.route-card h3 { font-size: 16.5px; margin-bottom: 2px; }
.route-card p { font-size: 13.5px; margin-bottom: 6px; }

/* ==========================================================================
   CARS
   ========================================================================== */
.cars-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 700px) { .cars-grid { grid-template-columns: repeat(3, 1fr); } }
.car-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  text-align: center;
}
.car-item svg { color: var(--navy); margin-bottom: 10px; }
.car-item span { font-size: 13.5px; font-weight: 600; color: var(--navy); }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq { max-width: 780px; margin: 0 auto; }
.faq__item {
  border-bottom: 1px solid var(--border-strong);
  padding: 4px 0;
}
.faq__item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 4px;
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--navy);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  font-size: 22px;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.15s ease;
}
.faq__item[open] summary::after { content: "\2212"; }
.faq__item p { padding: 0 4px 20px; font-size: 15px; margin-bottom: 0; }

/* ==========================================================================
   FINAL CTA
   ========================================================================== */
.final-cta {
  text-align: center;
  padding: 64px 20px;
  border-radius: var(--radius-lg);
  background: var(--navy);
  color: var(--white);
}
.final-cta h2 { color: var(--white); }
.final-cta p { color: rgba(255,255,255,0.78); max-width: 52ch; margin-left: auto; margin-right: auto; }
.final-cta .cta-row { justify-content: center; margin-top: 26px; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer { background: var(--navy); color: rgba(255,255,255,0.82); padding-top: 64px; }
.footer__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .footer__inner { padding: 0 40px; grid-template-columns: 1.6fr 1fr 1fr 1fr; }
}
.footer__brand { display: flex; align-items: center; gap: 9px; color: var(--white); font-family: var(--font-display); font-size: 19px; font-weight: 700; margin-bottom: 14px; }
.footer__desc { font-size: 14px; max-width: 42ch; color: rgba(255,255,255,0.68); }
.footer__nap { font-style: normal; display: flex; flex-direction: column; gap: 6px; margin-top: 18px; font-size: 13.5px; }
.footer__nap span { color: rgba(255,255,255,0.68); }
.footer__nap a { color: rgba(255,255,255,0.85); }
.footer__nap a:hover { color: var(--gold); }
.footer__contact { display: flex; gap: 18px; margin-top: 16px; }
.footer__contact a { font-size: 13.5px; font-weight: 700; color: var(--gold); }
.footer__col h3 { color: var(--white); font-family: var(--font-body); font-size: 12.5px; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 16px; }
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col a { font-size: 14px; color: rgba(255,255,255,0.68); }
.footer__col a:hover { color: var(--white); }
.footer__bottom {
  margin-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 22px 20px;
  text-align: center;
}
.footer__bottom p { font-size: 12.5px; color: rgba(255,255,255,0.5); margin: 0; }

/* ==========================================================================
   FLOATING CTA
   ========================================================================== */
.floating-cta {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.floating-cta__whatsapp {
  display: flex;
  align-items: center;
  gap: 9px;
  background: var(--green);
  color: var(--white);
  padding: 13px 18px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 6px 18px rgba(20, 42, 61, 0.22);
}
.floating-cta__whatsapp:hover { background: #345a44; }
.floating-cta__call {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--white);
  color: var(--navy);
  border: 1.5px solid var(--border-strong);
  box-shadow: 0 4px 12px rgba(20, 42, 61, 0.12);
}

@media (max-width: 480px) {
  .floating-cta__whatsapp span { display: none; }
  .floating-cta__whatsapp { padding: 13px; border-radius: 50%; }
}

/* ==========================================================================
   UTILITIES
   ========================================================================== */
.mt-0 { margin-top: 0; }
.text-center { text-align: center; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap;
}
