@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Manrope:wght@500;600;700&display=swap');

:root {
  --bg: #f4f2ee;
  --paper: #fbfaf7;
  --ink: #101113;
  --muted: #6b6d72;
  --line: rgba(16,17,19,.14);
  --dark: #0b0b0d;
  --white: #fff;
  --accent: #c7a56b;
  --container: 1180px;
  --radius: 26px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

.container { width: min(calc(100% - 40px), var(--container)); margin: 0 auto; }
.section { padding: 110px 0; }
.section-soft { background: var(--bg); }
.section-dark { background: var(--dark); color: var(--white); }

.skip-link {
  position: fixed; left: 20px; top: -100px; z-index: 1000;
  padding: 12px 16px; background: #fff; color: #111; border-radius: 8px;
}
.skip-link:focus { top: 20px; }

.site-header {
  position: fixed; inset: 0 0 auto; z-index: 50;
  transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(11,11,13,.88);
  backdrop-filter: blur(18px);
  border-color: rgba(255,255,255,.08);
}
.nav-wrap { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: #fff; font-weight: 700; letter-spacing: .12em; }
.brand-mark {
  width: 40px; height: 40px; border: 1px solid rgba(255,255,255,.4); border-radius: 50%;
  display: grid; place-items: center; font-size: .82rem; letter-spacing: .02em;
}
.brand-word { font-family: 'Manrope', sans-serif; font-size: .98rem; }
.site-nav { display: flex; align-items: center; gap: 28px; color: rgba(255,255,255,.84); font-size: .92rem; }
.site-nav a { transition: color .2s ease; }
.site-nav a:hover { color: #fff; }
.nav-phone { color: #fff !important; font-weight: 600; }
.nav-toggle { display: none; border: 0; background: transparent; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: #fff; margin: 5px 0; display: block; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 54px; padding: 0 24px; border-radius: 999px; font-weight: 600;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-small { min-height: 44px; padding: 0 19px; font-size: .9rem; }
.btn-light { background: #fff; color: #111 !important; }
.btn-primary { background: #fff; color: #111; }
.btn-ghost { border: 1px solid rgba(255,255,255,.35); color: #fff; }
.btn-outline-dark { border: 1px solid rgba(16,17,19,.24); }
.dark-btn { background: var(--dark); color: #fff; }

.hero { min-height: 100svh; position: relative; display: grid; align-items: end; overflow: hidden; color: #fff; }
.hero-media {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1769787301187-0fab290ba2f2?auto=format&fit=crop&fm=jpg&q=88&w=2200');
  background-size: cover; background-position: center 42%; transform: scale(1.01);
}
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(4,4,5,.82) 0%, rgba(4,4,5,.52) 48%, rgba(4,4,5,.14) 80%), linear-gradient(0deg, rgba(4,4,5,.58), transparent 45%); }
.hero-content { position: relative; z-index: 2; padding: 190px 0 92px; }
.eyebrow { margin: 0 0 20px; text-transform: uppercase; letter-spacing: .16em; font-size: .76rem; font-weight: 700; color: rgba(255,255,255,.74); }
.eyebrow.dark { color: #77797d; }
h1,h2,h3 { margin-top: 0; font-family: 'Manrope', sans-serif; line-height: 1.05; }
h1 { margin-bottom: 28px; font-size: clamp(3.6rem, 8vw, 7.7rem); max-width: 900px; letter-spacing: -.055em; }
h2 { font-size: clamp(2.5rem, 5vw, 5rem); letter-spacing: -.045em; margin-bottom: 0; }
h3 { font-size: 1.35rem; letter-spacing: -.025em; }
.hero-copy { max-width: 650px; font-size: clamp(1.08rem, 2vw, 1.35rem); color: rgba(255,255,255,.82); margin: 0 0 34px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-proof { margin-top: 70px; display: flex; gap: 34px; flex-wrap: wrap; color: rgba(255,255,255,.72); font-size: .88rem; }
.hero-proof span::before { content: '•'; color: var(--accent); margin-right: 10px; }
.scroll-cue { position: absolute; right: 4vw; bottom: 32px; z-index: 3; font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; color: rgba(255,255,255,.7); }
.scroll-cue span { margin-left: 8px; }

.split-heading { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: start; }
.intro-copy { max-width: 630px; font-size: 1.15rem; color: #4e5054; }
.intro-copy p:first-child { margin-top: 0; }

.section-head { display: flex; justify-content: space-between; align-items: end; gap: 60px; margin-bottom: 48px; }
.section-head > p { max-width: 420px; color: var(--muted); margin: 0 0 8px; }
.visitor-offer { background: var(--accent); color: #15120d; }
.offer-inner { min-height: 88px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 28px; }
.offer-badge { padding: 8px 12px; border: 1px solid rgba(0,0,0,.25); border-radius: 999px; font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.offer-inner p { margin: 0; font-size: 1.02rem; }
.offer-inner a { font-weight: 700; border-bottom: 1px solid rgba(0,0,0,.4); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card { min-height: 330px; background: var(--paper); padding: 32px; border: 1px solid var(--line); border-radius: 20px; display: flex; flex-direction: column; justify-content: space-between; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.service-card:hover { transform: translateY(-6px); border-color: rgba(16,17,19,.3); box-shadow: 0 22px 45px rgba(18,18,20,.08); }
.service-card-featured { background: #111216; color: #fff; border-color: #111216; }
.service-card-top { display: flex; justify-content: space-between; align-items: center; }
.service-icon { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--accent); }
.service-card-featured .service-icon { border-color: rgba(255,255,255,.2); }
.service-number { font-size: .78rem; color: #8b8d91; letter-spacing: .12em; }
.service-card p { color: #707278; font-size: .96rem; }
.service-card-featured p { color: rgba(255,255,255,.66); }
.service-card a { font-weight: 600; font-size: .92rem; width: fit-content; border-bottom: 1px solid currentColor; padding-bottom: 4px; }
.service-card a span { margin-left: 6px; }

.fleet-showcase { display: grid; grid-template-columns: 1.35fr .65fr; gap: 20px; }
.fleet-card { position: relative; min-height: 650px; overflow: hidden; border-radius: var(--radius); background: #111; }
.fleet-card-side { min-height: 650px; }
.fleet-card img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.fleet-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.72), transparent 65%); }
.fleet-card-overlay { position: absolute; inset: auto 34px 34px; z-index: 2; color: #fff; max-width: 520px; }
.fleet-card-overlay span { font-size: .74rem; text-transform: uppercase; letter-spacing: .14em; color: rgba(255,255,255,.68); }
.fleet-card-overlay h3 { font-size: 2rem; margin: 10px 0 12px; }
.fleet-card-overlay p { color: rgba(255,255,255,.72); margin: 0; }
.fleet-card-overlay.compact h3 { max-width: 260px; }
.image-note { font-size: .78rem; color: #8b8d91; margin: 14px 0 0; }

.why-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 100px; align-items: start; }
.why-copy { position: sticky; top: 130px; }
.why-copy p:not(.eyebrow) { color: rgba(255,255,255,.64); max-width: 480px; font-size: 1.08rem; }
.text-link { display: inline-block; margin-top: 20px; border-bottom: 1px solid rgba(255,255,255,.35); padding-bottom: 5px; }
.why-list article { display: grid; grid-template-columns: 55px 1fr; gap: 22px; padding: 30px 0; border-top: 1px solid rgba(255,255,255,.13); }
.why-list article:last-child { border-bottom: 1px solid rgba(255,255,255,.13); }
.why-list span { color: rgba(255,255,255,.36); font-size: .78rem; }
.why-list h3 { margin-bottom: 9px; }
.why-list p { margin: 0; color: rgba(255,255,255,.58); }

.photo-break { height: 76vh; min-height: 580px; position: relative; overflow: hidden; }
.photo-break img { width: 100%; height: 100%; object-fit: cover; }
.photo-break::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.62), transparent 55%); }
.photo-break-copy { position: absolute; left: max(20px, calc((100% - var(--container))/2)); bottom: 52px; z-index: 2; color: #fff; }
.photo-break-copy p { font-family: 'Manrope'; font-size: clamp(2.5rem,5vw,5.6rem); line-height: 1; letter-spacing: -.045em; margin: 0 0 12px; }
.photo-break-copy span { letter-spacing: .18em; font-size: .78rem; }

.quote { background: #151519; color: #fff; }
.quote-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: start; }
.quote-copy { position: sticky; top: 120px; }
.quote-copy > p:not(.eyebrow) { color: rgba(255,255,255,.62); max-width: 480px; font-size: 1.08rem; }
.quote-promise { margin-top: 40px; display: grid; grid-template-columns: 40px 1fr; align-items: center; gap: 12px; }
.quote-promise span { color: var(--accent); font-size: .72rem; }
.quote-promise p { margin: 0; color: rgba(255,255,255,.72); }
.quote-form { background: #f5f2eb; color: var(--ink); padding: 38px; border-radius: 24px; display: grid; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.quote-form label { display: grid; gap: 8px; font-size: .76rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.quote-form input, .quote-form select, .quote-form textarea { width: 100%; border: 1px solid rgba(16,17,19,.18); border-radius: 10px; background: #fff; color: var(--ink); padding: 13px 14px; outline: none; text-transform: none; letter-spacing: normal; }
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus { border-color: #8d6e3b; box-shadow: 0 0 0 3px rgba(199,165,107,.18); }
.quote-submit { border: 0; background: var(--dark); color: #fff; cursor: pointer; margin-top: 4px; }
.form-note { margin: -8px 0 0; color: #77797d; font-size: .76rem; text-align: center; }

.contact-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 80px; }
.contact-details { display: grid; gap: 0; border-top: 1px solid var(--line); }
.contact-details > div { display: grid; grid-template-columns: 120px 1fr; padding: 22px 0; border-bottom: 1px solid var(--line); }
.contact-details span { color: #808287; font-size: .82rem; }
.contact-details a, .contact-details p { margin: 0; font-size: 1.05rem; }

.site-footer { background: #09090b; color: #fff; padding: 92px 0 28px; }
.footer-cta { padding-bottom: 76px; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer-cta > div { display: flex; justify-content: space-between; align-items: end; gap: 30px; }
.footer-cta h2 { font-size: clamp(3rem,7vw,7rem); }
.footer-main { display: grid; grid-template-columns: 1.5fr .6fr .9fr; align-items: start; gap: 70px; padding-top: 58px; }
.footer-intro p { max-width: 380px; color: rgba(255,255,255,.5); margin-top: 24px; }
.footer-column { display: flex; flex-direction: column; gap: 12px; color: rgba(255,255,255,.62); font-size: .9rem; }
.footer-column h3 { color: #fff; font-size: .75rem; text-transform: uppercase; letter-spacing: .14em; margin-bottom: 8px; }
.footer-column a:hover { color: #fff; }
.footer-bottom { margin-top: 58px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; color: rgba(255,255,255,.38); font-size: .76rem; }

@media (max-width: 980px) {
  .site-nav {
    position: absolute; top: 82px; left: 20px; right: 20px; padding: 24px;
    flex-direction: column; align-items: stretch; gap: 18px; background: rgba(10,10,12,.98);
    border: 1px solid rgba(255,255,255,.1); border-radius: 16px;
    transform: translateY(-12px); opacity: 0; pointer-events: none; transition: .2s ease;
  }
  .site-nav.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .nav-toggle { display: block; }
  .split-heading, .why-layout, .quote-layout, .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .why-copy { position: static; }
  .service-grid { grid-template-columns: repeat(2,1fr); }
  .fleet-showcase { grid-template-columns: 1fr; }
  .fleet-card, .fleet-card-side { min-height: 520px; }
  .section-head { align-items: start; flex-direction: column; gap: 20px; }
  .quote-copy { position: static; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-intro { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 80px 0; }
  .nav-wrap { min-height: 72px; }
  .site-nav { top: 72px; left: 14px; right: 14px; }
  .hero-content { padding: 150px 0 74px; }
  h1 { font-size: clamp(3rem, 16vw, 5.2rem); }
  h2 { font-size: clamp(2.2rem, 12vw, 3.8rem); }
  .hero-copy { font-size: 1.02rem; }
  .hero-proof { margin-top: 48px; flex-direction: column; gap: 10px; }
  .scroll-cue { display: none; }
  .offer-inner { grid-template-columns: 1fr; gap: 10px; padding: 22px 0; }
  .offer-badge { width: fit-content; }
  .offer-inner a { width: fit-content; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 260px; }
  .fleet-card, .fleet-card-side { min-height: 460px; }
  .fleet-card-overlay { inset: auto 22px 24px; }
  .photo-break { min-height: 480px; height: 65vh; }
  .photo-break-copy { left: 20px; right: 20px; bottom: 30px; }
  .contact-details > div { grid-template-columns: 1fr; gap: 5px; }
  .form-row { grid-template-columns: 1fr; }
  .quote-form { padding: 24px 18px; }
  .footer-cta > div { align-items: stretch; flex-direction: column; }
  .footer-main { grid-template-columns: 1fr; gap: 38px; }
  .footer-intro { grid-column: auto; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .btn { width: 100%; }
}

/* Executive travel and official reservation entry. */
section[id] { scroll-margin-top: 100px; }
.service-accent { width: 38px; height: 2px; background: var(--accent); margin-bottom: 26px; }
.corporate { background: #1a2024; color: #fff; }
.corporate-layout { display: grid; grid-template-columns: 1.1fr .9fr; gap: 90px; }
.corporate-lead { max-width: 540px; color: #c5c9cc; font-size: 1.1rem; margin-top: 30px; }
.corporate-details article { border-top: 1px solid #42484c; padding: 24px 0; }
.corporate-details h3 { margin-bottom: 12px; }
.corporate-details p { color: #c5c9cc; margin: 0; }
.corporate-call { display: block; margin-top: 20px; color: #d7bd91; }
.booking-panel { display: grid; grid-template-columns: 1.2fr .8fr; gap: 60px; align-items: center; }
.booking-panel h2 { font-size: clamp(2rem,4vw,3.6rem); }
.booking-panel p { color: #56585d; }
.booking-actions { display: grid; gap: 18px; }
.booking-actions > a:not(.btn), .booking-actions p a { text-decoration: underline; text-underline-offset: 4px; }
.quote-form h3 { margin: 0; }
.inquiry-context { margin: 0; color: #55585c; }
[data-executive-fields]:not([hidden]) { display: grid; gap: 20px; }
.quote-form input, .quote-form select, .quote-form textarea { min-width: 0; font-size: 16px; }
@media (max-width: 980px) {
  .corporate-layout, .booking-panel { grid-template-columns: 1fr; gap: 36px; }
}

/* A small, non-modal welcome offer: no interruption to browsing. */
.welcome-offer[hidden] { display: none; }
.welcome-offer { position: fixed; z-index: 90; right: 24px; bottom: 24px;
  width: min(390px, calc(100% - 32px)); max-height: calc(100svh - 32px); overflow-y: auto;
  background: #fbfaf7; color: #101113; border: 1px solid #c7a56b; border-radius: 20px;
  padding: 32px; box-shadow: 0 16px 64px #0004; font-family: 'Inter', system-ui, sans-serif; }
.welcome-offer h2 { font-family: 'Manrope', sans-serif; font-size: 1.9rem; line-height: 1.15; letter-spacing: -.03em; }
.welcome-offer .eyebrow { padding-right: 28px; margin-bottom: 14px; }
.welcome-offer .offer-note { font-size: .76rem; color: #595b60; margin-bottom: 0; }
.offer-close { position: absolute; right: 10px; top: 10px; width: 44px; height: 44px;
  border: 0; background: transparent; color: #101113; font-size: 1.7rem; cursor: pointer; }
.welcome-offer a:focus-visible, .offer-close:focus-visible { outline: 3px solid #89652c; outline-offset: 3px; }
@media (max-width: 640px) { .welcome-offer { right: 16px; bottom: 16px; padding: 26px; } }

/* Preserve the supplied portrait logo without cropping or stretching. */
.brand-logo { display: block; width: auto; height: 66px; object-fit: contain; flex-shrink: 0; }
.footer-brand { align-items: center; }
.footer-brand .brand-logo { height: 190px; }
.footer-brand .brand-word { display: none; }
@media (max-width: 640px) {
  .brand-logo { height: 56px; }
  .footer-brand .brand-logo { height: 160px; }
}

/* Match the original logo's opaque charcoal exactly. */
.site-header, .site-header.scrolled, .site-footer {
  background: #1a1b1c;
}
.site-header, .site-header.scrolled {
  backdrop-filter: none;
  border-bottom-color: rgba(255,255,255,.08);
}
.brand-logo { background: #1a1b1c; }

/* Launch usability: keyboard navigation, short screens, and quote fallback. */
[hidden] { display: none !important; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 5px; }
.quote-fields { border: 0; padding: 0; margin: 0; min-width: 0; display: grid; gap: 20px; }
.quote-result { display: grid; gap: 16px; border-top: 1px solid var(--line); padding-top: 20px; }
.quote-result .form-note { margin: 0; }
.quote-result button { cursor: pointer; background: transparent; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; border: 0; }
@media (max-width: 980px) {
  .site-nav { visibility: hidden; max-height: calc(100svh - 100px); overflow-y: auto; }
  .site-nav.open { visibility: visible; }
  .site-nav a { min-height: 44px; display: flex; align-items: center; }
  .nav-toggle { min-width: 44px; min-height: 44px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}

/* Detailed service page, using the existing typography and spacing. */
.service-intro { padding-top: 160px; }
.service-intro h1 { font-size: clamp(3rem, 7vw, 6rem); }
.service-intro .hero-copy { margin-top: 26px; }
.service-body { max-width: 840px; }
.service-body h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 24px; }
.service-body p, .service-body li { color: #4e5054; }
.service-body li { margin-bottom: 12px; }
.service-faq details { border-bottom: 1px solid var(--line); padding: 20px 0; }
.service-faq summary { cursor: pointer; font-weight: 600; }
.service-faq details p { margin-bottom: 0; }


.service-body h3 { margin-top: 36px; font-size: 1.3rem; }
.footer-bottom { flex-wrap: wrap; gap: 20px; }
.welcome-offer h2 { font-family: "Times New Roman", Times, serif; }

.contact-options { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:32px; margin-top:48px; }
.contact-options article { border-top:1px solid var(--line); padding-top:28px; }
.contact-options h3 { font-size:1.35rem; }
.contact-options p { color:var(--muted); }
.contact-options a { display:inline-block; padding:12px 0; font-weight:600; overflow-wrap:anywhere; }
.contact-services { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:0 40px; margin-top:36px; }
.contact-services a { display:flex; align-items:center; justify-content:space-between; gap:20px; padding:24px 0; border-bottom:1px solid var(--line); font-weight:600; }
@media(max-width:760px) { .contact-options,.contact-services { grid-template-columns:1fr; } }

.contact-options { grid-template-columns:repeat(2,minmax(0,1fr)); }
.contact-call { font-size:.9rem; }
@media(max-width:760px) { .contact-options { grid-template-columns:1fr; } }

.about-story,.about-practical { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:64px; align-items:center; }
.about-story figure,.about-testimonials figure { margin:0; min-width:0; }
.about-story img { width:100%; height:auto; border-radius:var(--radius); }
.about-story figcaption { color:var(--muted); font-size:.85rem; margin-top:14px; }
.about-values,.about-testimonials { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:36px; margin-top:48px; }
.about-values article { border-top:1px solid var(--line); padding-top:24px; }
.about-values h3 { font-size:1.35rem; }
.about-testimonials blockquote { margin:0 0 24px; font-size:1.12rem; }
.about-testimonials figcaption { color:var(--accent); }
.about-testimonials figcaption span { display:block; font-size:.85rem; color:#c4c4c8; }
.about-practical { align-items:start; }
.site-nav a[aria-current="page"] { color:var(--accent); }
@media(max-width:980px) { .about-story,.about-practical { gap:36px; } .about-values,.about-testimonials { grid-template-columns:1fr; gap:32px; } }
@media(max-width:700px) { .about-story,.about-practical { grid-template-columns:1fr; } }

.service-photograph { padding-top:48px; }
.service-photograph img { width:100%; height:auto; border-radius:var(--radius); }
.contact-welcome { display:grid; grid-template-columns:minmax(0,1fr) minmax(0,380px); align-items:center; gap:64px; }
.contact-welcome img { width:100%; height:auto; border-radius:var(--radius); }
@media(max-width:700px) { .contact-welcome { grid-template-columns:1fr; gap:28px; } .contact-welcome img { max-width:380px; } }
