/* ==========================================================================
   SK LIMO — Stylesheet
   Palette: obsidian black, warm gold, ivory cream
   Type: Playfair Display (display serif) / Jost (body sans)
   ========================================================================== */

:root {
  --black: #08080a;
  --near-black: #0f0f12;
  --charcoal: #17171b;
  --charcoal-2: #1e1e23;
  --line: rgba(198, 161, 91, 0.18);
  --line-soft: rgba(246, 242, 234, 0.09);

  --gold: #c6a15b;
  --gold-light: #e6cd97;
  --gold-dim: #8d7038;

  --cream: #f6f2ea;
  --cream-dim: #cfc9bd;
  --muted: #9a9488;

  --serif: "Playfair Display", "Times New Roman", serif;
  --sans: "Jost", "Helvetica Neue", Arial, sans-serif;

  --container: 1180px;
  --radius: 2px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
* , *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--cream);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.nav-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; font-size: 1rem; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  color: var(--cream);
  line-height: 1.15;
  letter-spacing: 0.01em;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}

.rule {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 22px 0;
}
.rule.center { margin: 22px auto; background: var(--gold); width: 70px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 34px;
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid transparent;
  border-radius: var(--radius);
  transition: all 0.35s var(--ease);
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 60%, var(--gold-dim));
  color: var(--black);
}
.btn-gold:hover { filter: brightness(1.12); transform: translateY(-2px); box-shadow: 0 12px 24px rgba(198,161,91,0.22); }

.btn-outline {
  border-color: rgba(246,242,234,0.35);
  color: var(--cream);
  background: transparent;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold-light); transform: translateY(-2px); }

.btn-line {
  border: none;
  color: var(--gold-light);
  padding: 4px 0;
  border-bottom: 1px solid var(--gold-dim);
  border-radius: 0;
  letter-spacing: 0.18em;
}
.btn-line:hover { border-color: var(--gold-light); color: var(--gold-light); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), padding 0.4s var(--ease);
}
.site-header.scrolled {
  background: rgba(8,8,10,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo { display: flex; align-items: center; gap: 12px; }
.logo-mark {
  width: 42px; height: 42px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: var(--gold-light);
  flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-text .name {
  font-family: var(--serif);
  font-size: 1.32rem;
  letter-spacing: 0.06em;
  color: var(--cream);
}
.logo-text .name em { color: var(--gold-light); font-style: normal; }
.logo-text .tagline {
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-links a {
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream-dim);
  position: relative;
  padding: 6px 0;
  transition: color 0.3s;
}
.nav-links a::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--gold-light); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.nav-cta {
  color: var(--black);
  padding: 16px 34px;
}
.nav-links a.nav-cta::after { display: none; }

.header-actions { display: flex; align-items: center; gap: 24px; }
.phone-link {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--cream);
}
.phone-link svg { width: 16px; height: 16px; stroke: var(--gold); flex-shrink: 0; }

.nav-cta { display: none; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  z-index: 200;
}
.nav-toggle span { width: 24px; height: 1px; background: var(--cream); transition: all 0.3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- Mobile Nav ---------- */
@media (max-width: 940px) {
  .nav-links {
    position: fixed;
    inset: 0;
    background: var(--near-black);
    flex-direction: column;
    justify-content: center;
    gap: 34px;
    transform: translateX(100%);
    transition: transform 0.45s var(--ease);
    z-index: 150;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1rem; }
  .nav-cta { display: inline-flex; margin-top: 10px; }
  .nav-toggle { display: flex; }
  .header-actions .btn-gold { display: none; }
  .header-actions { gap: 14px; }
}
@media (max-width: 480px) {
  .header-actions .phone-link { display: none; }
}

/* ---------- Hero (home) ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 160px 0 100px;
  overflow: hidden;
  background: #08080a;
}
.hero-media, .page-hero-media, .cta-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-media img, .page-hero-media img, .cta-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(0.3) sepia(0.12) contrast(1.1) brightness(0.75) saturate(1.05);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(100deg, rgba(8,8,10,0.97) 0%, rgba(8,8,10,0.9) 32%, rgba(8,8,10,0.6) 60%, rgba(8,8,10,0.28) 100%),
    linear-gradient(0deg, #08080a 0%, transparent 16%, transparent 82%, rgba(8,8,10,0.5) 100%);
}
.page-hero-overlay, .cta-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at 50% 20%, rgba(198,161,91,0.10), transparent 55%),
    linear-gradient(180deg, rgba(8,8,10,0.86) 0%, rgba(8,8,10,0.93) 65%, #08080a 100%);
}
.hero-watermark {
  position: absolute;
  right: -4%;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--serif);
  font-size: 42vw;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(198,161,91,0.1);
  user-select: none;
  pointer-events: none;
  z-index: 1;
}
.hero-car {
  position: absolute;
  bottom: 6%;
  right: 4%;
  width: min(46vw, 620px);
  opacity: 0.9;
  z-index: 1;
  pointer-events: none;
}
.hero-car svg { width: 100%; height: auto; }
.hero .container { position: relative; z-index: 2; }
.hero-content { max-width: 660px; }
.hero-content .eyebrow { margin-bottom: 22px; }
.hero-content h1 {
  font-size: clamp(2.6rem, 5.4vw, 4.4rem);
  margin-bottom: 26px;
}
.hero-content h1 em { color: var(--gold-light); font-style: normal; }
.hero-content p {
  font-size: 1.08rem;
  color: var(--cream-dim);
  max-width: 520px;
  margin-bottom: 40px;
}
.hero-cta { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 56px;
  margin-top: 76px;
  padding-top: 36px;
  border-top: 1px solid var(--line-soft);
  max-width: 640px;
}
.hero-stats div strong {
  display: block;
  font-family: var(--serif);
  font-size: 2.1rem;
  color: var(--gold-light);
  font-weight: 600;
  white-space: nowrap;
}
.hero-stats div span {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.scroll-cue {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: var(--muted);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  z-index: 2;
}
.scroll-cue::after {
  content: "";
  width: 1px; height: 40px;
  background: linear-gradient(var(--gold), transparent);
  animation: scrollpulse 2.2s infinite;
}
@keyframes scrollpulse { 0%{opacity:.2;} 50%{opacity:1;} 100%{opacity:.2;} }

@media (max-width: 560px) {
  .hero { padding: 130px 0 70px; }
  .hero-content h1 { font-size: 2.2rem; margin-bottom: 18px; }
  .hero-content p { margin-bottom: 26px; }
  .hero-stats { gap: 20px; margin-top: 36px; padding-top: 22px; }
  .hero-stats div strong { font-size: 1.4rem; }
  .hero-stats div span { font-size: 0.58rem; letter-spacing: 0.07em; }
  .scroll-cue { bottom: 14px; }
  .scroll-cue::after { height: 24px; }
}

/* ---------- Page (interior) hero ---------- */
.page-hero {
  position: relative;
  padding: 190px 0 100px;
  background: #08080a;
  text-align: center;
  overflow: hidden;
}
.page-hero .container, .cta-banner .container { position: relative; z-index: 2; }
.page-hero .eyebrow { justify-content: center; margin: 0 auto 20px; }
.page-hero h1 { font-size: clamp(2.2rem, 4.4vw, 3.4rem); }
.page-hero p { max-width: 620px; margin: 22px auto 0; color: var(--cream-dim); }
.breadcrumb {
  margin-top: 26px;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span { margin: 0 10px; }

/* ---------- Sections ---------- */
.section { padding: 120px 0; position: relative; }
.section.alt { background: var(--near-black); }
.section-head { max-width: 640px; margin-bottom: 64px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); margin: 18px 0 0; }
.section-head p { color: var(--cream-dim); margin-top: 20px; }

/* ---------- Intro / Split ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split-visual {
  aspect-ratio: 4/5;
  border: 1px solid var(--line);
  position: relative;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(160deg, var(--charcoal), var(--near-black));
}
.split-visual::before {
  content: "";
  position: absolute; inset: 16px;
  border: 1px solid var(--line);
  pointer-events: none;
}
.split-visual svg { width: 62%; opacity: 0.92; }
.split-visual.photo { padding: 0; overflow: hidden; }
.split-visual.photo img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(0.25) sepia(0.1) contrast(1.08) brightness(0.82);
}
.split-visual.photo::before { z-index: 1; }
.split-body p { color: var(--cream-dim); margin-bottom: 18px; }
.check-list { margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }
.check-list li { display: flex; align-items: baseline; gap: 14px; font-size: 0.95rem; color: var(--cream); }
.check-list li::before { content: "—"; color: var(--gold); flex-shrink: 0; }

@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 44px; }
  .split-visual { order: -1; max-width: 380px; margin: 0 auto; }
}

/* ---------- Cards Grid (Fleet / Services preview) ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
@media (max-width: 900px) { .grid-3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .grid-3, .grid-2 { grid-template-columns: 1fr; } }

.card {
  background: var(--charcoal);
  border: 1px solid var(--line-soft);
  padding: 42px 34px;
  transition: border-color 0.35s var(--ease), transform 0.35s var(--ease), background 0.35s var(--ease);
  position: relative;
}
.card:hover { border-color: var(--gold-dim); transform: translateY(-6px); background: var(--charcoal-2); }
.card-icon { width: 46px; height: 46px; margin-bottom: 26px; stroke: var(--gold); }
.card h3 { font-size: 1.22rem; margin-bottom: 12px; }
.card p { color: var(--muted); font-size: 0.92rem; }
.card .meta {
  margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--line-soft);
  font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold);
}

.vehicle-card { display: flex; flex-direction: column; }
.vehicle-card .vfig {
  height: 210px;
  margin: -42px -34px 24px;
  position: relative;
  overflow: hidden;
}
.vehicle-card .vfig img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(0.25) sepia(0.1) contrast(1.1) brightness(0.8);
  transition: transform 0.6s var(--ease);
}
.vehicle-card:hover .vfig img { transform: scale(1.05); }
.vehicle-card .vfig::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,8,10,0) 55%, rgba(23,23,27,0.9));
}
.vehicle-card .pax { margin-left: auto; color: var(--gold-light); font-family: var(--serif); }
.vehicle-card .row { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; }

.card-photo {
  height: 210px;
  margin: -42px -34px 24px;
  position: relative;
  overflow: hidden;
}
.card-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(0.25) sepia(0.1) contrast(1.1) brightness(0.8);
  transition: transform 0.6s var(--ease);
}
.card:hover .card-photo img { transform: scale(1.05); }
.card-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,8,10,0) 55%, rgba(23,23,27,0.9));
}

/* ---------- Why us / stats strip ---------- */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.stat-strip div {
  padding: 46px 30px;
  text-align: center;
  border-right: 1px solid var(--line-soft);
}
.stat-strip div:last-child { border-right: none; }
.stat-strip strong { display: block; font-family: var(--serif); font-size: 2.4rem; color: var(--gold-light); }
.stat-strip span { font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
@media (max-width: 780px) {
  .stat-strip { grid-template-columns: 1fr 1fr; }
  .stat-strip div:nth-child(2) { border-right: none; }
}

/* ---------- Testimonials ---------- */
.testimonial {
  background: var(--charcoal);
  border: 1px solid var(--line-soft);
  padding: 44px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.stars { color: var(--gold); letter-spacing: 4px; font-size: 0.9rem; }
.testimonial p { font-family: var(--serif); font-size: 1.08rem; font-style: italic; color: var(--cream-dim); line-height: 1.6; }
.testimonial .who { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.testimonial .who strong { color: var(--cream); font-family: var(--sans); font-weight: 500; text-transform: none; letter-spacing: 0; }

/* ---------- CTA banner ---------- */
.cta-banner {
  position: relative;
  padding: 110px 0;
  text-align: center;
  background: var(--black);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.cta-banner .eyebrow { justify-content: center; }
.cta-banner h2 { font-size: clamp(2rem, 4vw, 3rem); margin: 20px auto 34px; max-width: 720px; }
.cta-banner .cta-row { display: flex; align-items: center; justify-content: center; gap: 30px; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.site-footer { background: var(--near-black); border-top: 1px solid var(--line-soft); padding: 90px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 50px;
  padding-bottom: 70px;
}
.footer-grid h4 {
  font-family: var(--sans);
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 24px;
}
.footer-grid p { color: var(--muted); font-size: 0.9rem; max-width: 300px; }
.footer-grid ul { display: flex; flex-direction: column; gap: 12px; }
.footer-grid a { color: var(--cream-dim); font-size: 0.9rem; transition: color 0.25s; }
.footer-grid a:hover { color: var(--gold-light); }
.footer-brand .logo { margin-bottom: 22px; }
.footer-social { display: flex; gap: 14px; margin-top: 26px; }
.footer-social a {
  width: 38px; height: 38px; border: 1px solid var(--line);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.footer-social a:hover { border-color: var(--gold); }
.footer-social svg { width: 15px; height: 15px; stroke: var(--gold-light); }

.footer-areas {
  border-top: 1px solid var(--line-soft);
  padding: 34px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
}
.footer-areas span { font-size: 0.82rem; color: var(--muted); }

.footer-bottom {
  border-top: 1px solid var(--line-soft);
  padding: 26px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.75rem;
  color: var(--muted);
}
.footer-bottom a { color: var(--muted); }
.footer-bottom a:hover { color: var(--gold-light); }

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

/* ---------- Sticky call bar (mobile) ---------- */
.call-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  background: var(--near-black);
  border-top: 1px solid var(--line);
  padding: 14px 20px;
  align-items: center; justify-content: center; gap: 10px;
}
@media (max-width: 780px) { .call-bar { display: flex; } body { padding-bottom: 62px; } }
.call-bar a { font-family: var(--serif); color: var(--gold-light); font-size: 1rem; display:flex; align-items:center; gap:10px;}
.call-bar svg { width: 16px; height: 16px; stroke: var(--gold-light); }

/* ---------- Fleet page ---------- */
.fleet-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--line-soft);
  margin-bottom: 30px;
}
.fleet-detail .visual {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  border-right: 1px solid var(--line-soft);
}
.fleet-detail .visual img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(0.25) sepia(0.1) contrast(1.1) brightness(0.8);
}
.fleet-detail .visual::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,8,10,0.05), rgba(8,8,10,0.35));
  pointer-events: none;
}
.fleet-detail .info { padding: 50px; display: flex; flex-direction: column; justify-content: center; }
.fleet-detail .info .pax-badge {
  display: inline-flex; align-self: flex-start;
  border: 1px solid var(--gold-dim); color: var(--gold-light);
  padding: 6px 16px; font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase;
  margin-bottom: 18px;
}
.fleet-detail .info h3 { font-size: 1.6rem; margin-bottom: 14px; }
.fleet-detail .info p { color: var(--cream-dim); margin-bottom: 22px; }
.fleet-detail .tags { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 26px; }
.fleet-detail .tags span { font-size: 0.72rem; color: var(--muted); border: 1px solid var(--line-soft); padding: 5px 12px; }
.fleet-detail:nth-child(even) { direction: rtl; }
.fleet-detail:nth-child(even) .info { direction: ltr; }
.fleet-detail:nth-child(even) .visual { border-right: none; border-left: 1px solid var(--line-soft); }
@media (max-width: 820px) {
  .fleet-detail, .fleet-detail:nth-child(even) { grid-template-columns: 1fr; direction: ltr; }
  .fleet-detail .visual { border: none; border-bottom: 1px solid var(--line-soft); min-height: 260px; }
  .fleet-detail:nth-child(even) .visual { border: none; border-bottom: 1px solid var(--line-soft); }
  .fleet-detail .info { padding: 36px; }
}

/* ---------- Services page detail ---------- */
.service-row {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: 70px;
  padding: 70px 0;
  border-bottom: 1px solid var(--line-soft);
  align-items: start;
}
.service-row:first-of-type { padding-top: 0; }
.service-photo {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  margin-bottom: -28px;
}
.service-photo img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(0.3) sepia(0.12) contrast(1.1) brightness(0.8);
}
.service-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,8,10,0.1), rgba(8,8,10,0.75));
}
.service-row .num {
  position: relative;
  z-index: 1;
  display: inline-block;
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--gold-light);
  letter-spacing: 0.1em;
}
.service-row h3 { font-size: 1.9rem; margin: 14px 0 20px; }
.service-row .icon-badge {
  position: relative; z-index: 1;
  width: 64px; height: 64px; border: 1px solid var(--line);
  background: var(--black);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.service-row .icon-badge svg { width: 28px; height: 28px; stroke: var(--gold-light); }
.service-row-body p { color: var(--cream-dim); margin-bottom: 20px; max-width: 640px; }
.service-features { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 30px; margin-top: 26px; }
.service-features li { font-size: 0.9rem; color: var(--cream); display: flex; gap: 10px; }
.service-features li::before { content: "—"; color: var(--gold); }
@media (max-width: 820px) {
  .service-row { grid-template-columns: 1fr; gap: 24px; }
  .service-features { grid-template-columns: 1fr; }
}

/* ---------- About page ---------- */
.timeline { display: flex; flex-direction: column; }
.timeline-item {
  display: grid; grid-template-columns: 140px 1fr; gap: 30px;
  padding: 30px 0; border-top: 1px solid var(--line-soft);
}
.timeline-item:last-child { border-bottom: 1px solid var(--line-soft); }
.timeline-item .year { font-family: var(--serif); color: var(--gold-light); font-size: 1.3rem; }
.timeline-item h4 { font-size: 1.05rem; margin-bottom: 8px; }
.timeline-item p { color: var(--muted); font-size: 0.92rem; }

.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
@media (max-width: 900px) { .values-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .values-grid { grid-template-columns: 1fr; } }

/* ---------- Contact page ---------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 70px;
}
.contact-info { display: flex; flex-direction: column; gap: 30px; }
.info-block { border-left: 1px solid var(--line); padding-left: 22px; }
.info-block h4 { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.info-block p, .info-block a { color: var(--cream-dim); font-size: 0.98rem; }
.info-block a:hover { color: var(--gold-light); }

.contact-card {
  background: var(--charcoal);
  border: 1px solid var(--line-soft);
  padding: 46px;
}
.contact-card p.lead { color: var(--cream-dim); margin-bottom: 34px; }
.contact-actions { display: flex; flex-direction: column; gap: 18px; }
.btn-large { padding: 20px 30px; font-size: 0.82rem; gap: 12px; }
.btn-large svg { width: 20px; height: 20px; flex-shrink: 0; }
.btn-whatsapp { background: #25d366; color: #08150d; }
.btn-whatsapp:hover { filter: brightness(1.08); transform: translateY(-2px); box-shadow: 0 12px 24px rgba(37,211,102,0.25); }

/* ---------- Floating WhatsApp button ---------- */
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 120;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px rgba(0,0,0,0.45);
  transition: transform 0.3s var(--ease);
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 30px; height: 30px; }
.whatsapp-float::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.65);
  animation: wa-ping 2.2s cubic-bezier(0,0,0.2,1) infinite;
  pointer-events: none;
}
@keyframes wa-ping {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.7); opacity: 0; }
}
@media (max-width: 780px) {
  .whatsapp-float { right: 18px; bottom: 84px; width: 54px; height: 54px; }
  .whatsapp-float svg { width: 27px; height: 27px; }
}

.map-frame {
  margin-top: 70px;
  border: 1px solid var(--line-soft);
  filter: grayscale(1) invert(0.9) contrast(0.9);
  height: 380px;
}
.map-frame iframe { width: 100%; height: 100%; border: 0; }

/* ---------- FAQ ---------- */
.faq-item { border-bottom: 1px solid var(--line-soft); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; color: var(--cream);
  padding: 26px 0; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  font-family: var(--serif); font-size: 1.08rem;
}
.faq-q .plus { color: var(--gold); font-size: 1.3rem; transition: transform 0.3s var(--ease); flex-shrink: 0; }
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease);
}
.faq-a p { color: var(--muted); padding-bottom: 26px; max-width: 720px; }
.faq-item.open .faq-a { max-height: 300px; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- Misc utilities ---------- */
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }
