/* =====================================================
   Service pages (Private Drivers / Travel Concierge)
   Snami-inspired: hero image + intro, then alternating
   image+text rows, feature grid, gallery, contact strip.
===================================================== */

/* ---- Photo credit (re-declared for standalone load) ---- */
.photo-credit, .pc-link {
  position: absolute;
  z-index: 50;
  bottom: 12px;
  right: 12px;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  padding: 6px 12px;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 4px;
  text-decoration: none;
  pointer-events: auto;
  cursor: pointer;
  transition: color 0.3s ease, background 0.3s ease;
}
.photo-credit:hover, .pc-link:hover {
  color: var(--accent);
  background: rgba(0,0,0,0.85);
}
.photo-credit-hero {
  position: absolute;
  bottom: 22px;
  top: auto;
  left: auto;
  right: 22px;
  font-size: 11px;
  z-index: 60;
}
@media (max-width: 720px) {
  .photo-credit-hero { bottom: 16px; right: 14px; font-size: 10px; }
}
.photo-credit a.pc-link {
  position: static;
  display: inline-block;
  background: transparent;
  padding: 0;
}

/* ---- Hero ---- */
.sp-hero {
  position: relative;
  height: clamp(560px, 92vh, 880px);
  overflow: hidden;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sp-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  animation: spHeroKen 22s ease-out forwards;
  opacity: 0.85;
}
@keyframes spHeroKen { from { transform: scale(1.14); } to { transform: scale(1); } }
.sp-hero::after {
  content: "";
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse at center, rgba(14,18,15,0) 0%, rgba(14,18,15,0.55) 60%, rgba(14,18,15,0.92) 100%),
    linear-gradient(180deg, rgba(14,18,15,0.45) 0%, rgba(14,18,15,0.1) 35%, rgba(14,18,15,0.85) 100%);
}
.sp-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 920px;
  text-align: center;
  padding: 100px clamp(20px, 4vw, 32px) 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  color: #fff;
}
.sp-hero-eyebrow {
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
}
.sp-hero-h1 {
  font-family: "Dream Avenue", serif;
  font-size: clamp(46px, 8vw, 130px);
  font-weight: 400;
  letter-spacing: -0.022em;
  line-height: 0.92;
  text-shadow: 0 4px 40px rgba(0,0,0,0.55);
}
.sp-hero-h1 .script {
  font-family: "Shadows Into Light", serif;
  font-size: 0.65em;
  color: var(--accent);
  display: inline-block;
}
.sp-hero-tag {
  font-size: clamp(14px, 1.3vw, 17px);
  line-height: 1.55;
  color: rgba(255,255,255,0.9);
  max-width: 56ch;
  font-style: italic;
}
.sp-hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 14px;
}

/* ---- Intro ---- */
.sp-intro {
  padding: clamp(80px, 12vh, 140px) clamp(20px, 4vw, 32px);
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(30px, 6vw, 80px);
}
.sp-intro .sp-intro-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
}
.sp-intro h2 {
  font-family: "Dream Avenue", serif;
  font-size: clamp(28px, 3.5vw, 52px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.012em;
  margin-top: 8px;
}
.sp-intro p {
  font-size: clamp(16px, 1.4vw, 21px);
  line-height: 1.55;
  color: var(--fg);
  margin-bottom: 22px;
}
@media (max-width: 720px) { .sp-intro { grid-template-columns: 1fr; gap: 16px; } }

/* ---- Alternating rows (image + body) ---- */
.sp-row {
  position: relative;
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(36px, 6vw, 100px);
  align-items: center;
  padding: 80px clamp(20px, 4vw, 32px);
}
.sp-row.sp-row-flip > .sp-row-media { order: 2; }
.sp-row.sp-row-flip > .sp-row-body  { order: 1; }
/* The .sp-row-media holds a .reveal wrapper (GSAP-driven clip-path entrance). */
.sp-row-media {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #1a1a1a;
}
.sp-row-media .reveal {
  position: absolute;
  inset: 0;
}
.sp-row-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease-out);
}
.sp-row:hover .sp-row-media img { transform: scale(1.04); }

/* Body fades in alongside the image reveal */
.sp-row-body {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.0s var(--ease-out) 0.2s, transform 1.0s var(--ease-out) 0.2s;
}
.sp-row.is-in .sp-row-body { opacity: 1; transform: translateY(0); }
.sp-row-body .sp-row-label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 14px;
  display: block;
}
.sp-row-body h3 {
  font-family: "Dream Avenue", serif;
  font-size: clamp(28px, 3vw, 46px);
  font-weight: 400;
  letter-spacing: -0.012em;
  line-height: 1.05;
  margin-bottom: 20px;
}
.sp-row-body p {
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.65;
  color: var(--section-copy);
  max-width: 56ch;
  margin-bottom: 14px;
}
@media (max-width: 720px) {
  .sp-row, .sp-row.sp-row-flip { grid-template-columns: 1fr; padding: 36px 18px; gap: 18px; }
  .sp-row.sp-row-flip > .sp-row-media,
  .sp-row > .sp-row-media { order: 1; transform: translateY(20px); }
  .sp-row.sp-row-flip > .sp-row-body,
  .sp-row > .sp-row-body  { order: 2; transform: translateY(20px); }
  .sp-row.is-in .sp-row-media, .sp-row.is-in .sp-row-body { transform: translateY(0); }
}

/* ---- Features (icon grid) ---- */
.sp-features {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(70px, 11vh, 120px) 0;
}
.sp-features-head {
  max-width: 1400px;
  margin: 0 auto clamp(40px, 6vh, 60px);
  padding: 0 clamp(20px, 4vw, 32px);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}
.sp-features-head h2 {
  font-family: "Dream Avenue", serif;
  font-size: clamp(28px, 3.5vw, 52px);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.05;
}
.sp-features-grid {
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.sp-feature {
  padding: clamp(36px, 5vw, 56px) clamp(22px, 2.5vw, 36px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.sp-feature:nth-child(3n) { border-right: 0; }
.sp-feature:nth-last-child(-n+3):nth-child(n+4) { border-bottom: 0; }
.sp-feature-icon { font-size: 34px; line-height: 1; }
.sp-feature h4 {
  font-family: "Dream Avenue", serif;
  font-size: clamp(20px, 1.7vw, 24px);
  font-weight: 400;
  letter-spacing: -0.005em;
}
.sp-feature p { font-size: 13.5px; color: var(--fg-muted); line-height: 1.6; }

@media (max-width: 920px) { .sp-features-grid { grid-template-columns: 1fr 1fr; }
  .sp-feature:nth-child(3n) { border-right: 1px solid var(--line); }
  .sp-feature:nth-child(2n) { border-right: 0; }
}
@media (max-width: 520px) { .sp-features-grid { grid-template-columns: 1fr; }
  .sp-feature { border-right: 0; }
}

/* ---- Gallery (3-col mosaic) ---- */
.sp-gallery {
  padding: clamp(70px, 11vh, 120px) clamp(20px, 4vw, 32px);
  max-width: 1500px;
  margin: 0 auto;
}
.sp-gallery-head {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}
.sp-gallery-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  grid-auto-rows: clamp(200px, 25vw, 320px);
  gap: 14px;
}
.sp-gallery-tile {
  position: relative;
  overflow: hidden;
  background: #1a1a1a;
}
.sp-gallery-tile.big { grid-row: span 2; }
.sp-gallery-tile img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease-out);
}
.sp-gallery-tile:hover img { transform: scale(1.05); }
@media (max-width: 720px) {
  .sp-gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 200px; }
  .sp-gallery-tile.big { grid-row: span 1; grid-column: span 2; }
}

/* =====================================================
   Fleet grid (replaces the four alternating image+text rows)
===================================================== */
.sp-fleet {
  padding: clamp(80px, 12vh, 140px) clamp(20px, 4vw, 32px);
  max-width: 1500px;
  margin: 0 auto;
}
.sp-fleet-head {
  max-width: 880px;
  margin: 0 auto clamp(40px, 6vh, 60px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: center;
  align-items: center;
}
.sp-fleet-head .h-l {
  font-family: "Dream Avenue", serif;
  letter-spacing: -0.012em;
  line-height: 1.05;
}
.sp-fleet-lede {
  font-size: clamp(14px, 1.15vw, 17px);
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 60ch;
}
.sp-fleet-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.sp-fleet-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  background: var(--bg-soft);
  overflow: hidden;
  transition: border-color 0.4s ease, transform 0.4s var(--ease);
}
.sp-fleet-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}
.sp-fleet-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #111;
}
.sp-fleet-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease-out), filter 0.6s ease;
  filter: brightness(0.85);
}
.sp-fleet-card:hover .sp-fleet-media img {
  transform: scale(1.05);
  filter: brightness(1);
}
.sp-fleet-body {
  padding: clamp(20px, 2vw, 28px);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sp-fleet-no {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
}
.sp-fleet-card h3 {
  font-family: "Dream Avenue", serif;
  font-size: clamp(19px, 1.5vw, 23px);
  font-weight: 400;
  letter-spacing: -0.005em;
  color: var(--fg);
  line-height: 1.15;
}
.sp-fleet-card p {
  font-size: 13.5px;
  color: var(--fg-muted);
  line-height: 1.6;
}
@media (max-width: 1100px) { .sp-fleet-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px)  { .sp-fleet-grid { grid-template-columns: 1fr; } }

/* ---- Where We Take You (Travel Concierge) ---- */
.sp-where {
  padding: clamp(80px, 12vh, 140px) clamp(20px, 4vw, 32px);
  max-width: 1500px;
  margin: 0 auto;
}
.sp-where-head {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: clamp(48px, 7vh, 80px);
  max-width: 880px;
}
.sp-where-lede {
  font-size: clamp(15px, 1.3vw, 18px);
  color: var(--fg-muted);
  line-height: 1.6;
}
.sp-where-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 80px);
  margin-bottom: clamp(60px, 9vh, 110px);
}
.sp-where-col { display: flex; flex-direction: column; gap: 22px; }
.sp-where-col-h {
  font-family: "Dream Avenue", serif;
  font-size: clamp(30px, 3.6vw, 52px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.012em;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sp-where-col-eyebrow {
  font-family: "Shadows Into Light", serif;
  font-size: 0.65em;
  color: var(--accent);
  line-height: 1;
}
.sp-where-list { display: flex; flex-direction: column; }
.sp-where-item a {
  display: grid;
  grid-template-columns: max-content 1fr max-content max-content;
  gap: 16px;
  align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  transition: padding 0.3s ease, background 0.3s ease;
}
.sp-where-item a:hover {
  padding-left: 12px;
  padding-right: 12px;
  background: rgba(190,163,128,0.04);
}
.sp-where-item .sp-where-no {
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--accent);
  font-weight: 700;
}
.sp-where-item .sp-where-name {
  font-family: "Dream Avenue", serif;
  font-size: clamp(17px, 1.5vw, 22px);
  color: var(--fg);
  line-height: 1.2;
}
.sp-where-item .sp-where-tag {
  font-size: 12px;
  color: var(--fg-muted);
  text-align: right;
  letter-spacing: 0.06em;
}
.sp-where-item .sp-where-arrow {
  font-size: 13px;
  color: var(--accent);
  transition: transform 0.3s ease;
}
.sp-where-item a:hover .sp-where-arrow { transform: translateX(6px); }
.sp-where-col > .btn { align-self: flex-start; margin-top: 12px; }

.sp-where-callouts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  border-top: 1px solid var(--line);
  padding-top: clamp(40px, 6vh, 60px);
}
.sp-where-callout {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px 24px;
  background: rgba(190,163,128,0.04);
  border: 1px solid var(--line);
}
.sp-where-callout .sp-where-no {
  font-family: "Dream Avenue", serif;
  font-size: 36px;
  font-weight: 400;
  color: var(--accent);
  line-height: 1;
}
.sp-where-callout h4 {
  font-family: "Dream Avenue", serif;
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 400;
  letter-spacing: -0.005em;
}
.sp-where-callout p {
  font-size: 13.5px;
  color: var(--fg-muted);
  line-height: 1.6;
}

@media (max-width: 920px) {
  .sp-where-grid { grid-template-columns: 1fr; }
  .sp-where-callouts { grid-template-columns: 1fr; }
  .sp-where-item a {
    grid-template-columns: max-content 1fr max-content;
    gap: 12px;
  }
  .sp-where-item .sp-where-tag { display: none; }
}

/* ---- CTA strip ---- */
.sp-cta {
  padding: clamp(100px, 16vh, 160px) clamp(20px, 4vw, 32px);
  text-align: center;
  background:
    radial-gradient(ellipse at center, rgba(190,163,128,0.12) 0%, transparent 70%),
    var(--bg);
}
.sp-cta .script {
  font-family: "Shadows Into Light", serif;
  font-size: clamp(48px, 8vw, 110px);
  color: var(--accent);
  line-height: 1;
  margin-bottom: 20px;
}
.sp-cta h2 {
  font-family: "Dream Avenue", serif;
  font-size: clamp(26px, 3.5vw, 48px);
  letter-spacing: -0.01em;
  max-width: 24ch;
  margin: 0 auto 32px;
  line-height: 1.05;
}
.sp-cta .cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* =====================================================
   Services grid (the SERVICES data tiles on the merged page)
===================================================== */
.srv-grid-wrap {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.srv-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1600px;
  margin: 0 auto;
}
.srv-grid .srv-card {
  padding: clamp(34px, 4.5vw, 50px) clamp(22px, 2.4vw, 34px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background 0.4s ease, transform 0.4s var(--ease);
}
.srv-grid .srv-card:hover {
  background: rgba(212, 163, 58, 0.06);
  transform: translateY(-3px);
}
.srv-grid .srv-card:nth-child(4n) { border-right: 0; }
.srv-grid .srv-card:nth-last-child(-n+2):nth-child(n+9) { border-bottom: 0; }
.srv-grid .srv-icon { font-size: 32px; line-height: 1; }
.srv-grid .srv-card h3 {
  font-family: "Dream Avenue", serif;
  font-size: clamp(19px, 1.5vw, 23px);
  font-weight: 400;
  letter-spacing: -0.005em;
  color: var(--accent);
}
.srv-grid .srv-card p {
  font-size: 13.5px;
  color: var(--fg-muted);
  line-height: 1.6;
}
@media (max-width: 1100px) {
  .srv-grid { grid-template-columns: repeat(3, 1fr); }
  .srv-grid .srv-card:nth-child(4n) { border-right: 1px solid var(--line); }
  .srv-grid .srv-card:nth-child(3n) { border-right: 0; }
  .srv-grid .srv-card { border-bottom: 1px solid var(--line); }
}
@media (max-width: 720px) {
  .srv-grid { grid-template-columns: 1fr 1fr; }
  .srv-grid .srv-card:nth-child(3n) { border-right: 1px solid var(--line); }
  .srv-grid .srv-card:nth-child(2n) { border-right: 0; }
}
@media (max-width: 460px) {
  .srv-grid { grid-template-columns: 1fr; }
  .srv-grid .srv-card { border-right: 0; }
}

/* =====================================================
   How We Travel (tour option cards)
===================================================== */
.sp-styles {
  padding: clamp(80px, 12vh, 140px) clamp(20px, 4vw, 32px);
  max-width: 1500px;
  margin: 0 auto;
}
.sp-styles-head {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto clamp(40px, 6vh, 70px);
  text-align: center;
  align-items: center;
}
.sp-styles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.sp-style {
  position: relative;
  padding: clamp(28px, 3vw, 40px);
  border: 1px solid var(--line);
  background: rgba(212, 163, 58, 0.03);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background 0.4s ease, border-color 0.4s ease, transform 0.4s var(--ease);
}
.sp-style:hover {
  background: rgba(212, 163, 58, 0.07);
  border-color: var(--accent);
  transform: translateY(-3px);
}
.sp-style .sp-style-no {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
}
.sp-style h3 {
  font-family: "Dream Avenue", serif;
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 400;
  letter-spacing: -0.005em;
  color: var(--fg);
}
.sp-style p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--fg-muted);
}
.sp-style ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 6px;
  border-top: 1px solid var(--line);
}
.sp-style ul li {
  position: relative;
  padding-left: 18px;
  font-size: 13.5px;
  color: var(--fg);
  line-height: 1.55;
}
.sp-style ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 1px;
  background: var(--accent);
}
@media (max-width: 720px) {
  .sp-styles-grid { grid-template-columns: 1fr; }
}
@media (min-width: 721px) and (max-width: 1040px) {
  .sp-styles-grid { grid-template-columns: 1fr 1fr; }
}

/* =====================================================
   Where You Stay (accommodation philosophy)
===================================================== */
.sp-accom {
  padding: clamp(80px, 12vh, 140px) clamp(20px, 4vw, 32px);
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.sp-accom-head {
  max-width: 900px;
  margin: 0 auto clamp(40px, 6vh, 70px);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
.sp-accom-lede {
  font-size: clamp(14px, 1.15vw, 17px);
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 64ch;
}
.sp-accom-grid {
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.sp-accom-card {
  padding: clamp(24px, 2.6vw, 34px);
  border: 1px solid var(--line);
  background: var(--card-bg);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.4s ease, background 0.4s ease, transform 0.4s var(--ease);
}
.sp-accom-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
}
.sp-accom-card h4 {
  font-family: "Dream Avenue", serif;
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 400;
  letter-spacing: -0.005em;
  color: var(--accent);
}
.sp-accom-card p {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--fg-muted);
}
.sp-accom-card--feature {
  background: var(--card-bg);
  border-color: var(--line);
}
.sp-accom-card--feature h4 {
  color: var(--accent);
}
@media (max-width: 920px) {
  .sp-accom-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .sp-accom-grid { grid-template-columns: 1fr; }
}
