/* ============================================================
   ParisTransfer.fr — Premium Private Transfer
   Palette: bg #050505 | gold #b8965a | text #f0ece4
   Fonts: Cormorant (headings) | Outfit (body)
   ============================================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #050505;
  --bg-card:   #0d0d0d;
  --bg-mid:    #111111;
  --gold:      #b8965a;
  --gold-lt:   #d4b07a;
  --gold-dk:   #8a6e3e;
  --text:      #f0ece4;
  --text-muted:#a09a91;
  --border:    rgba(184,150,90,.18);
  --radius:    4px;
  --transition: .35s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- Typography ---------- */
h1,h2,h3,h4 {
  font-family: 'Cormorant', serif;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: .02em;
}

.eyebrow {
  font-family: 'Outfit', sans-serif;
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--text);
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ---------- Gold Divider ---------- */
.gold-line {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 1.25rem auto;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .85rem 2.2rem;
  font-family: 'Outfit', sans-serif;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  border-radius: var(--radius);
}

.btn-gold {
  background: var(--gold);
  color: var(--bg);
}
.btn-gold:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(184,150,90,.35);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* ---------- NAV ---------- */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  padding: 1.4rem 4vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--transition), padding var(--transition), backdrop-filter var(--transition);
}

nav.scrolled {
  background: rgba(5,5,5,.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: .9rem 4vw;
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-logo-main {
  font-family: 'Cormorant', serif;
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--text);
}
.nav-logo-sub {
  font-size: .6rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}

.nav-links a {
  font-size: .78rem;
  font-weight: 400;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--gold); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.lang-toggle {
  display: flex;
  gap: .5rem;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .1em;
}
.lang-toggle a {
  color: var(--text-muted);
  transition: color var(--transition);
  padding: .2rem .3rem;
}
.lang-toggle a.active,
.lang-toggle a:hover { color: var(--gold); }
.lang-toggle span { color: var(--border); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: .4rem;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--text);
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(5,5,5,.97);
  z-index: 998;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.mobile-nav.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}
.mobile-nav a {
  font-family: 'Cormorant', serif;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: .06em;
  color: var(--text-muted);
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--gold); }

/* ---------- HERO ---------- */
#hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  padding: 0 1.5rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(5,5,5,.65) 0%, rgba(5,5,5,.35) 50%, rgba(5,5,5,.85) 100%),
    url('../images/hero-bg.jpg') center/cover no-repeat;
}

/* Animated gradient overlay */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(184,150,90,.08) 0%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-eyebrow {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 400;
  letter-spacing: .04em;
  margin-bottom: 1.2rem;
  color: var(--text);
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 420px;
  margin: 0 auto 2.8rem;
  letter-spacing: .04em;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-muted);
  animation: scrollPulse 2.5s ease-in-out infinite;
}
.hero-scroll svg { color: var(--gold); }

@keyframes scrollPulse {
  0%,100% { opacity: .5; transform: translateX(-50%) translateY(0); }
  50%      { opacity: 1;  transform: translateX(-50%) translateY(6px); }
}

/* ---------- STRIP (phone / stats) ---------- */
.strip {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.4rem 4vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.strip-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .78rem;
  color: var(--text-muted);
  letter-spacing: .05em;
}
.strip-item svg { color: var(--gold); flex-shrink: 0; }
.strip-item strong { color: var(--text); font-weight: 500; }

.strip-phone {
  font-family: 'Cormorant', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: .06em;
}

/* ---------- Section Wrapper ---------- */
section { padding: 7rem 4vw; }

.section-head {
  text-align: center;
  margin-bottom: 4rem;
}

/* ---------- SERVICES ---------- */
#services { background: var(--bg); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
}

/* Wide card — spans 2 of 4 columns to fill the last row */
.service-card--wide {
  grid-column: span 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.service-card--wide .service-icon {
  margin-left: auto;
  margin-right: auto;
}
.service-card--wide p {
  max-width: 480px;
  margin: 0 auto 1.8rem;
}

@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card--wide { grid-column: span 2; }
}

@media (max-width: 540px) {
  .services-grid { grid-template-columns: 1fr; }
  .service-card--wide { grid-column: span 1; }
}

.service-card {
  background: var(--bg-card);
  padding: 3rem 2.2rem;
  transition: background var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.service-card:hover { background: var(--bg-mid); }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  margin-bottom: 1.6rem;
  color: var(--gold);
  transition: border-color var(--transition);
}
.service-card:hover .service-icon { border-color: var(--gold); }

.service-card h3 {
  font-size: 1.35rem;
  margin-bottom: .6rem;
  color: var(--text);
}
.service-card p {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ---------- FLEET ---------- */
#fleet { background: var(--bg-mid); }

.fleet-wrap {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.fleet-image-wrap {
  position: relative;
}

.fleet-image-wrap::before {
  content: '';
  position: absolute;
  inset: -18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  z-index: 0;
}

.fleet-image {
  position: relative;
  z-index: 1;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
}

.fleet-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* placeholder when no image */
.fleet-image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0d0d0d 0%, #111 60%, #0a0a0a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.fleet-image-placeholder svg { opacity: .12; }

.fleet-badge {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  background: var(--gold);
  color: var(--bg);
  padding: 1rem 1.4rem;
  font-family: 'Cormorant', serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .06em;
  line-height: 1.2;
  text-align: center;
  z-index: 2;
  border-radius: var(--radius);
}

.fleet-text { }
.fleet-text .eyebrow { display: block; margin-bottom: 1rem; }
.fleet-text h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); margin-bottom: 1.4rem; }
.fleet-text p { font-size: .92rem; color: var(--text-muted); margin-bottom: 1rem; line-height: 1.85; }

.fleet-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .6rem 1.5rem;
  margin: 1.8rem 0 2.4rem;
}
.fleet-features li {
  font-size: .82rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: .5rem;
}
.fleet-features li::before {
  content: '';
  display: block;
  width: 18px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ---------- EXPERIENCE (why us) ---------- */
#experience { background: var(--bg); }

.experience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.exp-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition), transform var(--transition);
}
.exp-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.exp-number {
  font-family: 'Cormorant', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: .4rem;
}
.exp-card h4 {
  font-size: 1.05rem;
  margin-bottom: .5rem;
  color: var(--text);
}
.exp-card p {
  font-size: .82rem;
  color: var(--text-muted);
}

/* ---------- BOOKING FORM ---------- */
#booking { background: var(--bg-mid); }

.booking-wrap {
  max-width: 900px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.booking-header {
  background: var(--gold);
  padding: 2rem 2.5rem;
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.booking-header h2 {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--bg);
}
.booking-header p {
  font-size: .82rem;
  opacity: .75;
  font-family: 'Outfit', sans-serif;
}
.booking-header-icon {
  opacity: .25;
}

.booking-body {
  padding: 2.5rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: .45rem;
}
.form-group.full { grid-column: 1/-1; }

.form-group label {
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: .8rem 1rem;
  font-family: 'Outfit', sans-serif;
  font-size: .9rem;
  color: var(--text);
  outline: none;
  transition: border-color var(--transition);
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
  opacity: .55;
}
.form-group select option {
  background: var(--bg-card);
}
.form-group textarea { resize: vertical; min-height: 90px; }

.booking-submit {
  margin-top: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.booking-note {
  font-size: .78rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: .4rem;
}
.booking-note svg { color: var(--gold); flex-shrink: 0; }

/* ---------- TESTIMONIALS ---------- */
#testimonials { background: var(--bg); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  transition: border-color var(--transition);
}
.testimonial-card:hover { border-color: rgba(184,150,90,.35); }

.stars {
  display: flex;
  gap: .2rem;
  margin-bottom: 1.2rem;
  color: var(--gold);
}

.testimonial-text {
  font-family: 'Cormorant', serif;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 1.4rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: .85rem;
  font-size: .82rem;
}
.author-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bg-mid);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant', serif;
  font-size: 1rem;
  color: var(--gold);
  flex-shrink: 0;
}
.author-name { font-weight: 500; color: var(--text); display: block; margin-bottom: .1rem; }
.author-meta { color: var(--text-muted); font-size: .75rem; }

/* ---------- COVERAGE MAP STRIP ---------- */
#coverage {
  background: var(--bg-mid);
  padding: 5rem 4vw;
}

.coverage-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.coverage-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 1.2rem;
}
.coverage-text p {
  font-size: .9rem;
  color: var(--text-muted);
  margin-bottom: 1.8rem;
  line-height: 1.8;
}

.coverage-list li {
  padding: .65rem 0;
  border-bottom: 1px solid var(--border);
  font-size: .88rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: .6rem;
}
.coverage-list li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.coverage-list li:last-child { border-bottom: none; }

.coverage-map {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.coverage-map > svg {
  display: block;
  width: 100%;
  height: auto;
}
@keyframes pulse {
  from { transform: scale(.6); opacity: .8; }
  to   { transform: scale(2.2); opacity: 0; }
}

/* ---------- FOOTER ---------- */
footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 5rem 4vw 2.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3.5rem;
  max-width: 1200px;
  margin: 0 auto 4rem;
}

.footer-brand p {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin: 1.2rem 0 1.8rem;
  max-width: 280px;
}

.social-links {
  display: flex;
  gap: .75rem;
}
.social-links a {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition);
}
.social-links a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer-col h4 {
  font-family: 'Outfit', sans-serif;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
}

.footer-col ul li + li { margin-top: .6rem; }
.footer-col ul a {
  font-size: .86rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--text); }

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .86rem;
  color: var(--text-muted);
  margin-bottom: .9rem;
}
.footer-contact li svg { color: var(--gold); margin-top: .15rem; flex-shrink: 0; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.8rem;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: .75rem;
  color: var(--text-muted);
}
.footer-bottom a { color: var(--text-muted); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--gold); }

/* ---------- WhatsApp Floating Button ---------- */
.whatsapp-fab {
  position: fixed;
  bottom: 1.8rem;
  right: 1.8rem;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
}

.whatsapp-fab__btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: transform .2s ease, box-shadow .2s ease;
  animation: waPulse 3s ease-in-out infinite;
  flex-shrink: 0;
}

.whatsapp-fab:hover .whatsapp-fab__btn {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,.6);
  animation: none;
}

.whatsapp-fab__tooltip {
  background: rgba(5,5,5,.92);
  color: #f0ece4;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .04em;
  padding: .45rem .85rem;
  border-radius: 20px;
  border: 1px solid rgba(37,211,102,.3);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity .25s ease, transform .25s ease;
  pointer-events: none;
}

.whatsapp-fab:hover .whatsapp-fab__tooltip {
  opacity: 1;
  transform: translateX(0);
}

@keyframes waPulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,.45); }
  50%      { box-shadow: 0 4px 28px rgba(37,211,102,.75), 0 0 0 10px rgba(37,211,102,.1); }
}

@media (max-width: 480px) {
  .whatsapp-fab {
    bottom: 1.2rem;
    right: 1.2rem;
  }
  .whatsapp-fab__tooltip { display: none; }
}

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ============================================================
   BLOG — Listing & Article Pages
   ============================================================ */

/* --- Blog listing hero --- */
.blog-page-hero {
  padding: 10rem 4vw 5rem;
  text-align: center;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.blog-page-hero h1 { font-size: clamp(2.4rem, 5vw, 4rem); }

/* --- Blog card grid --- */
.blog-grid-section { background: var(--bg); padding: 5rem 4vw 7rem; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
}

.blog-card {
  background: var(--bg-card);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: .9rem;
  transition: background var(--transition);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}
.blog-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.blog-card:hover { background: var(--bg-mid); }
.blog-card:hover::before { transform: scaleX(1); }

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-size: .7rem;
  color: var(--text-muted);
  letter-spacing: .1em;
  text-transform: uppercase;
}
.blog-card-meta::before {
  content: '';
  display: block;
  width: 18px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.blog-card-title {
  font-family: 'Cormorant', serif;
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.25;
  transition: color var(--transition);
}
.blog-card:hover .blog-card-title { color: var(--gold); }

.blog-card-excerpt {
  font-size: .87rem;
  color: var(--text-muted);
  line-height: 1.75;
  flex: 1;
}

.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: .4rem;
  transition: gap var(--transition);
}
.blog-card:hover .blog-card-link { gap: .75rem; }

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

/* --- Article page --- */
.article-back-bar {
  padding: 7.5rem 4vw 0;
  max-width: 860px;
  margin: 0 auto;
}
.article-back {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
  text-decoration: none;
}
.article-back:hover { color: var(--gold); }
.article-back svg { transition: transform var(--transition); }
.article-back:hover svg { transform: translateX(-3px); }

.article-hero {
  padding: 2rem 4vw 3.5rem;
  max-width: 860px;
  margin: 0 auto;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.2rem;
}
.article-cat {
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
}
.article-date {
  font-size: .72rem;
  letter-spacing: .08em;
  color: var(--text-muted);
}
.article-meta-sep { color: var(--border); }

.article-title {
  font-family: 'Cormorant', serif;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: .02em;
  color: var(--text);
  margin-bottom: 1.4rem;
}

.article-lead {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.85;
  border-left: 2px solid var(--gold);
  padding-left: 1.4rem;
  max-width: 640px;
}

.article-divider {
  border: none;
  border-top: 1px solid var(--border);
  max-width: 860px;
  margin: 0 auto 3rem;
}

.article-body {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 4vw 5rem;
}

.article-body h2 {
  font-family: 'Cormorant', serif;
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  font-weight: 500;
  color: var(--text);
  margin: 3rem 0 1rem;
  padding-bottom: .65rem;
  border-bottom: 1px solid var(--border);
}
.article-body h2:first-child { margin-top: 0; }

.article-body h3 {
  font-family: 'Cormorant', serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--gold-lt, #d4b07a);
  margin: 1.8rem 0 .55rem;
}

.article-body p {
  font-size: .94rem;
  color: var(--text-muted);
  line-height: 1.88;
  margin-bottom: 1rem;
}
.article-body p strong { color: var(--text); font-weight: 500; }

.article-body ul, .article-body ol {
  margin: .6rem 0 1.2rem 1.4rem;
}
.article-body li {
  font-size: .94rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: .4rem;
}
.article-body ul li::marker { color: var(--gold); }
.article-body ol li::marker { color: var(--gold); font-weight: 600; }

/* Comparison table */
.article-table-wrap { overflow-x: auto; margin: 1.2rem 0 1.6rem; }
.article-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .87rem;
  min-width: 480px;
}
.article-table th {
  background: var(--bg-mid);
  color: var(--gold);
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .85rem 1rem;
  border: 1px solid var(--border);
  text-align: left;
}
.article-table td {
  padding: .75rem 1rem;
  border: 1px solid var(--border);
  color: var(--text-muted);
  vertical-align: top;
}
.article-table tr:hover td { background: rgba(255,255,255,.015); }
.article-table td strong { color: var(--text); }

/* Article CTA box */
.article-cta {
  background: linear-gradient(135deg, rgba(184,150,90,.07) 0%, rgba(184,150,90,.03) 100%);
  border: 1px solid rgba(184,150,90,.3);
  border-radius: var(--radius);
  padding: 2.8rem 3rem;
  margin-top: 3.5rem;
  text-align: center;
}
.article-cta .eyebrow { display: block; margin-bottom: .8rem; }
.article-cta h3 {
  font-family: 'Cormorant', serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 500;
  color: var(--text);
  margin-bottom: .75rem;
  line-height: 1.2;
}
.article-cta p {
  font-size: .9rem;
  color: var(--text-muted);
  max-width: 460px;
  margin: 0 auto 1.8rem;
  line-height: 1.8;
}
.article-cta .btn { margin: 0 auto; }

@media (max-width: 768px) {
  .article-cta { padding: 2rem 1.6rem; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .fleet-wrap { grid-template-columns: 1fr; gap: 3rem; }
  .fleet-image-wrap::before { display: none; }
  .coverage-inner { grid-template-columns: 1fr; }
  .coverage-map { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  section { padding: 5rem 5vw; }

  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-right .btn { display: none; }

  .hero-title { font-size: clamp(2.2rem, 9vw, 3.5rem); }

  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: 1; }

  .booking-header { flex-direction: column; align-items: flex-start; }
  .booking-header-icon { display: none; }

  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  nav { padding: 1rem 5vw; }
  .hero-cta { flex-direction: column; align-items: center; }
  .strip { justify-content: center; }
  .booking-body { padding: 1.5rem; }
  .booking-submit { flex-direction: column; }
  .booking-submit .btn { width: 100%; justify-content: center; }
}
