/* ==========================================================================
   Top Paris Transfer — main stylesheet
   System-font stack (no external font requests) for fast, CLS-free loading.
   ========================================================================== */

:root {
  --navy-900: #0a1830;
  --navy-800: #0f2542;
  --navy-700: #17335c;
  --navy-600: #1f4173;
  --gold-500: #c9a227;
  --gold-400: #dab949;
  --gold-100: #faf3dc;
  --white: #ffffff;
  --gray-50: #f7f8fb;
  --gray-100: #eef1f6;
  --gray-200: #dde2ea;
  --gray-400: #9aa3b2;
  --gray-500: #6b7385;
  --gray-700: #3c4457;
  --gray-900: #171b26;
  --whatsapp: #25d366;
  --whatsapp-dark: #1da851;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow-sm: 0 1px 3px rgba(10, 24, 48, 0.08);
  --shadow-md: 0 8px 24px rgba(10, 24, 48, 0.12);
  --shadow-lg: 0 20px 48px rgba(10, 24, 48, 0.18);
  --container: 1180px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  -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 { line-height: 1.2; margin: 0 0 .5em; font-weight: 700; color: var(--navy-900); }
h1 { font-size: clamp(2rem, 4.5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
h3 { font-size: 1.15rem; }
p { margin: 0 0 1em; color: var(--gray-700); }
/* Longhand left/right only -- a shorthand `padding` here would (by class
   beating type in specificity) silently zero out the vertical padding any
   time `.container` sits on the same element as a bare `section`. */
.container { max-width: var(--container); margin: 0 auto; padding-left: 24px; padding-right: 24px; }

/* ---------------------------------------------------------------- Skip link */
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--gold-500); color: var(--navy-900);
  padding: 12px 18px; border-radius: 0 0 8px 0; font-weight: 700;
}
.skip-link:focus { left: 0; }

/* --------------------------------------------------------------- Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 24px; border-radius: 999px; font-weight: 700; font-size: .97rem;
  border: 2px solid transparent; cursor: pointer; white-space: nowrap;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-gold { background: var(--gold-500); color: var(--navy-900); }
.btn-gold:hover { background: var(--gold-400); box-shadow: var(--shadow-md); }
.btn-whatsapp { background: var(--whatsapp); color: var(--white); }
.btn-whatsapp:hover { background: var(--whatsapp-dark); }
.btn-outline { background: transparent; color: var(--navy-900); border-color: var(--gray-200); }
.btn-outline:hover { border-color: var(--navy-700); }
.btn-ghost-invert { background: transparent; color: var(--white); border-color: rgba(255,255,255,.5); }
.btn-ghost-invert:hover { border-color: var(--white); }
.btn-sm { padding: 9px 16px; font-size: .85rem; }
.btn svg { flex: none; }

/* --------------------------------------------------------------- Header */
.site-header {
  position: sticky; top: 0; z-index: 100; background: var(--white);
  border-bottom: 1px solid var(--gray-100); box-shadow: var(--shadow-sm);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 16px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; color: var(--navy-900); }
.brand-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 10px; background: var(--navy-900);
  color: var(--gold-400); font-size: .78rem; letter-spacing: .04em; flex: none;
}
.brand-name { font-size: 1.05rem; }
.nav-toggle {
  display: none; background: none; border: none; color: var(--navy-900); cursor: pointer; padding: 6px;
}
.nav-toggle .icon-close { display: none; }
.primary-nav { display: flex; align-items: center; gap: 28px; }
.primary-nav > ul { display: flex; gap: 22px; }
.primary-nav > ul a { font-weight: 600; font-size: .95rem; color: var(--gray-700); padding: 6px 2px; border-bottom: 2px solid transparent; }
.primary-nav > ul a:hover, .primary-nav > ul a.active { color: var(--navy-900); border-color: var(--gold-500); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.lang-switch {
  font-weight: 700; font-size: .82rem; color: var(--navy-700); border: 1px solid var(--gray-200);
  border-radius: 999px; padding: 7px 12px;
}
.lang-switch:hover { border-color: var(--navy-700); }

@media (max-width: 940px) {
  .nav-toggle { display: block; }
  .primary-nav {
    position: fixed; inset: 76px 0 0 0; background: var(--white); flex-direction: column;
    align-items: stretch; padding: 24px; gap: 24px; overflow-y: auto;
    transform: translateX(100%); transition: transform .25s ease; display: flex;
  }
  .primary-nav.open { transform: translateX(0); }
  .primary-nav > ul { flex-direction: column; gap: 4px; }
  .primary-nav > ul a { display: block; padding: 12px 4px; border-bottom: 1px solid var(--gray-100); }
  .nav-actions { flex-direction: column; align-items: stretch; }
  .nav-actions .btn, .nav-actions .lang-switch { width: 100%; }
  .nav-toggle[aria-expanded="true"] .icon-open { display: none; }
  .nav-toggle[aria-expanded="true"] .icon-close { display: block; }
}

/* ----------------------------------------------------------------- Hero */
.hero { position: relative; color: var(--white); overflow: hidden; }
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media .ph-img { width: 100%; height: 100%; object-fit: cover; }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(115deg, rgba(10,24,48,.94) 0%, rgba(15,37,66,.88) 45%, rgba(23,51,92,.65) 100%);
}
.hero-inner { position: relative; z-index: 1; padding: 88px 0 76px; max-width: 760px; }
.eyebrow { color: var(--gold-400); font-weight: 700; letter-spacing: .06em; text-transform: uppercase; font-size: .82rem; margin-bottom: 14px; }
.hero h1 { color: var(--white); margin-bottom: 18px; }
.hero-sub { color: rgba(255,255,255,.86); font-size: 1.08rem; max-width: 60ch; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }

/* Sub-page (non-home) hero variant: shorter */
.hero.hero-sub-page .hero-inner { padding: 56px 0 52px; }

/* ------------------------------------------------------------ Breadcrumb */
.breadcrumb { padding: 14px 24px; max-width: var(--container); margin: 0 auto; }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 6px; font-size: .82rem; color: var(--gray-500); }
.breadcrumb li:not(:last-child)::after { content: "/"; margin-left: 6px; color: var(--gray-400); }
.breadcrumb a { color: var(--gray-500); }
.breadcrumb a:hover { color: var(--navy-700); text-decoration: underline; }
.breadcrumb li[aria-current] { color: var(--navy-900); font-weight: 600; }

/* --------------------------------------------------------------- Sections */
section { padding: 48px 0; }
.section-tight { padding-top: 32px; padding-bottom: 32px; }
.section-head { max-width: 720px; margin: 0 auto 40px; text-align: center; }
.section-head p { font-size: 1.05rem; }
.bg-alt { background: var(--gray-50); }

/* ----------------------------------------------------------- Feature grid */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 24px; }
.feature-card { background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); }
.feature-icon {
  width: 46px; height: 46px; border-radius: 12px; background: var(--gold-100); color: var(--gold-500);
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.feature-card h3 { margin-bottom: 8px; }
.feature-card p { margin: 0; font-size: .94rem; }

/* ------------------------------------------------------------- Link cards */
.link-card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; }
.link-card {
  display: block; background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow-sm); position: relative; transition: box-shadow .15s ease, transform .15s ease;
}
.link-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.link-card h3 { color: var(--navy-900); padding-right: 24px; }
.link-card p { font-size: .92rem; margin-bottom: 0; }
.link-card-arrow { position: absolute; top: 26px; right: 22px; color: var(--gold-500); font-weight: 700; }

/* ---------------------------------------------------------------- CTA band */
.cta-band { background: var(--navy-900); color: var(--white); }
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.cta-band h2 { color: var(--white); margin-bottom: 6px; }
.cta-band p { color: rgba(255,255,255,.78); margin: 0; }
.cta-band-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ----------------------------------------------------------------- FAQ */
.faq-section h2 { text-align: center; margin-bottom: 32px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--gray-50); border: 1px solid var(--gray-100); border-radius: var(--radius-sm); padding: 4px 24px; }
.faq-item summary {
  cursor: pointer; list-style: none; padding: 18px 0; font-weight: 700; color: var(--navy-900);
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary svg { transition: transform .2s ease; flex: none; color: var(--gray-500); }
.faq-item[open] summary svg { transform: rotate(180deg); }
.faq-answer { padding-bottom: 18px; }
.faq-answer p { margin: 0; font-size: .95rem; max-width: 75ch; }

/* ------------------------------------------------------------- Price table */
.price-table-wrap { overflow-x: auto; }
.price-table { width: 100%; border-collapse: collapse; min-width: 480px; background: var(--white); }
.price-table th, .price-table td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--gray-100); }
.price-table th { background: var(--navy-900); color: var(--white); font-size: .85rem; text-transform: uppercase; letter-spacing: .03em; }
.price-table th:first-child { border-top-left-radius: var(--radius-sm); }
.price-table th:last-child { border-top-right-radius: var(--radius-sm); }
.price-table tr:nth-child(even) { background: var(--gray-50); }
.price-note { font-size: .85rem; color: var(--gray-500); margin-top: 12px; }

/* ------------------------------------------------------------ Related posts */
.related-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.related-card { background: var(--gray-50); border-radius: var(--radius); padding: 22px; border: 1px solid var(--gray-100); }
.related-card:hover { box-shadow: var(--shadow-sm); }
.related-card p { font-size: .9rem; margin: 0; }

/* -------------------------------------------------------------- Prose/blog */
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { margin-top: 1.6em; }
.prose h3 { margin-top: 1.3em; }
.prose ul, .prose ol { margin: 0 0 1em; padding-left: 1.3em; color: var(--gray-700); }
.prose li { margin-bottom: .4em; }
.prose blockquote { border-left: 4px solid var(--gold-500); margin: 1.5em 0; padding: .3em 1.2em; background: var(--gray-50); border-radius: 0 8px 8px 0; }
.post-meta { color: var(--gray-500); font-size: .88rem; margin-bottom: 8px; }

/* ---------------------------------------------------------------- Blog list */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 26px; }
.blog-card { background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.blog-card .ph-img { aspect-ratio: 16/10; object-fit: cover; }
.blog-card-body { padding: 22px; }
.blog-card h3 { margin-bottom: 8px; }
.blog-card p { font-size: .92rem; }

/* ---------------------------------------------------------------- Steps */
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.step { position: relative; padding-left: 52px; }
.step::before {
  counter-increment: step; content: counter(step);
  position: absolute; left: 0; top: 0; width: 38px; height: 38px; border-radius: 50%;
  background: var(--navy-900); color: var(--gold-400); font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.step h3 { margin-bottom: 6px; }
.step p { font-size: .93rem; margin: 0; }

/* -------------------------------------------------------------- Two column */
.two-col { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: start; }
.two-col.reverse { grid-template-columns: .9fr 1.1fr; }
.two-col.reverse .two-col-media { order: 2; }
.two-col-media .ph-img { border-radius: var(--radius); aspect-ratio: 3/2; object-fit: cover; box-shadow: var(--shadow-md); align-self: start; }
@media (max-width: 800px) {
  .two-col, .two-col.reverse { grid-template-columns: 1fr; }
  .two-col.reverse .two-col-media { order: 0; }
}

/* --------------------------------------------------------------- Checklist */
.checklist { display: grid; gap: 12px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; color: var(--gray-700); }
.checklist svg { color: var(--gold-500); flex: none; margin-top: 3px; }

/* ------------------------------------------------------------- Placeholder */
.ph-img { background: linear-gradient(135deg, var(--navy-800), var(--navy-700)); border-radius: inherit; }
.ph-square { aspect-ratio: 1/1; object-fit: cover; border-radius: var(--radius); }
.ph-portrait { aspect-ratio: 3/4; object-fit: cover; border-radius: var(--radius); }

/* ----------------------------------------------------------------- Footer */
.site-footer { background: var(--navy-900); color: rgba(255,255,255,.75); padding-top: 56px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 32px; padding-bottom: 40px; }
.footer-grid h3 { color: var(--white); font-size: .95rem; margin-bottom: 16px; }
.footer-grid ul { display: flex; flex-direction: column; gap: 10px; }
.footer-grid a { font-size: .9rem; color: rgba(255,255,255,.72); }
.footer-grid a:hover { color: var(--gold-400); }
.footer-contact li { display: flex; align-items: center; gap: 8px; }
.footer-brand p { color: rgba(255,255,255,.65); font-size: .88rem; margin: 14px 0 0; }
.footer-brand .brand-mark { background: var(--gold-500); color: var(--navy-900); }
.footer-hours { color: var(--gold-400) !important; font-weight: 700; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12); padding: 20px 24px; display: flex;
  justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .78rem; color: rgba(255,255,255,.5);
}
.footer-partners { max-width: 640px; }
.footer-partners span { color: rgba(255,255,255,.4); }
.footer-partners a { color: rgba(255,255,255,.45); }
.footer-partners a:hover { color: rgba(255,255,255,.7); }

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

/* ------------------------------------------------------------ Utility */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 20px; }
.tag { background: var(--gold-100); color: var(--navy-900); font-size: .78rem; font-weight: 700; padding: 5px 12px; border-radius: 999px; }

/* ----------------------------------------------------------- Contact page */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-card { background: var(--gray-50); border: 1px solid var(--gray-100); border-radius: var(--radius); padding: 32px; }
.contact-card h3 { margin-bottom: 16px; }
.contact-methods { display: grid; gap: 14px; margin-top: 20px; }
.contact-method { display: flex; align-items: center; gap: 14px; background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--radius-sm); padding: 16px 18px; }
.contact-method .feature-icon { margin: 0; width: 40px; height: 40px; flex: none; }
.contact-method strong { display: block; color: var(--navy-900); }
.contact-method span { font-size: .88rem; color: var(--gray-500); }
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------- 404 */
.error-page { text-align: center; padding: 100px 24px; }
.error-page .error-code { font-size: 5rem; font-weight: 800; color: var(--gold-500); margin: 0; }
