/* ========== THE GUARDIAN — SOPHISTIQUÉ / RAFFINÉ ========== */
:root {
  --bg: #0a0a0a;
  --bg-2: #131313;
  --bg-3: #1a1a1a;
  --gold: #c9a961;
  --gold-light: #e0c485;
  --gold-dark: #9e8344;
  --text: #f5f5f5;
  --text-soft: #b8b8b8;
  --text-muted: #7a7a7a;
  --border: rgba(201, 169, 97, 0.18);
  --border-strong: rgba(201, 169, 97, 0.4);
  --serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --sans: 'Inter', 'Helvetica Neue', system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  font-weight: 300;
  letter-spacing: 0.01em;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .3s ease; }
a:hover { color: var(--gold); }

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

.container { max-width: 1320px; margin: 0 auto; padding: 0 40px; }

/* ========== HEADER / NAV ========== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: all .4s ease;
  background: transparent;
}
.site-header.scrolled {
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(14px);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
}
.brand span { color: var(--gold); font-style: italic; font-weight: 400; }

.nav-links {
  display: flex;
  gap: 42px;
  list-style: none;
}
.nav-links a {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--text);
  position: relative;
  padding: 8px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  width: 0; height: 1px;
  background: var(--gold);
  transition: all .4s ease;
  transform: translateX(-50%);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a:hover { color: var(--gold); }

.nav-cta {
  padding: 11px 26px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 500;
  transition: all .35s ease;
}
.nav-cta:hover {
  background: var(--gold);
  color: var(--bg);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  width: 28px;
  background: none;
  border: none;
  padding: 0;
}
.hamburger span {
  display: block;
  width: 28px;
  height: 1px;
  background: var(--text);
  transition: all .3s ease;
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1503376780353-7e6692767b70?w=1920&q=85') center/cover no-repeat;
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.7) 60%, rgba(10,10,10,0.95) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 30px;
}
.hero-tagline {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.45em;
  color: var(--gold);
  margin-bottom: 28px;
  font-weight: 500;
}
.hero h1 {
  font-size: clamp(48px, 7vw, 92px);
  font-weight: 400;
  margin-bottom: 28px;
  color: var(--text);
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}
.hero-sub {
  font-size: 17px;
  color: var(--text-soft);
  margin-bottom: 46px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}
.hero-cta {
  display: inline-flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  display: inline-block;
  padding: 17px 42px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-weight: 500;
  cursor: pointer;
  transition: all .4s ease;
  border: 1px solid transparent;
  font-family: var(--sans);
}
.btn-gold {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: transparent;
  color: var(--gold);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: rgba(255,255,255,0.4);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.scroll-indicator {
  position: absolute;
  bottom: 38px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: var(--text-soft);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.scroll-indicator::after {
  content: '';
  width: 1px;
  height: 50px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.3; }
}

/* ========== SECTIONS ========== */
section { padding: 130px 0; position: relative; }

.section-head {
  text-align: center;
  margin-bottom: 80px;
}
.section-eyebrow {
  display: inline-block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.45em;
  color: var(--gold);
  margin-bottom: 22px;
  font-weight: 500;
}
.section-eyebrow::before,
.section-eyebrow::after {
  content: '—';
  margin: 0 14px;
  color: var(--gold-dark);
}
.section-title {
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 400;
  color: var(--text);
  margin-bottom: 22px;
}
.section-title em { color: var(--gold); font-style: italic; }
.section-sub {
  max-width: 640px;
  margin: 0 auto;
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.8;
}

/* ========== INTRO / ABOUT ========== */
.intro {
  background: var(--bg-2);
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}
.intro-img {
  position: relative;
  overflow: hidden;
}
.intro-img img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  transition: transform 1.2s ease;
}
.intro-img:hover img { transform: scale(1.05); }
.intro-img::after {
  content: '';
  position: absolute;
  inset: 18px;
  border: 1px solid var(--gold);
  pointer-events: none;
}
.intro-text .section-eyebrow { display: block; text-align: left; margin-bottom: 22px; }
.intro-text .section-eyebrow::before { display: none; }
.intro-text h2 {
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 400;
  margin-bottom: 32px;
}
.intro-text h2 em { color: var(--gold); font-style: italic; }
.intro-text p {
  color: var(--text-soft);
  margin-bottom: 22px;
  font-size: 16px;
  line-height: 1.9;
}
.intro-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.stat-num {
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 500;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-muted);
}

/* ========== FLEET / SERVICES ========== */
.fleet { background: var(--bg); }
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.fleet-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all .5s ease;
  position: relative;
}
.fleet-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
}
.fleet-img {
  height: 280px;
  overflow: hidden;
  position: relative;
}
.fleet-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}
.fleet-card:hover .fleet-img img { transform: scale(1.08); }
.fleet-badge {
  position: absolute;
  top: 18px; left: 18px;
  background: var(--gold);
  color: var(--bg);
  font-size: 10px;
  padding: 6px 14px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 600;
}
.fleet-body { padding: 34px 30px; }
.fleet-cat {
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.fleet-card h3 {
  font-size: 28px;
  margin-bottom: 14px;
  color: var(--text);
}
.fleet-card p {
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 24px;
  min-height: 70px;
}
.fleet-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}
.fleet-price {
  font-family: var(--serif);
  font-size: 32px;
  color: var(--gold);
  font-weight: 500;
}
.fleet-price small {
  font-family: var(--sans);
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-left: 4px;
}
.fleet-link {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--text);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
}
.fleet-link:hover { color: var(--gold); }

/* ========== FEATURES / WHY US ========== */
.features {
  background: var(--bg-2);
  position: relative;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.feature {
  text-align: center;
  padding: 50px 28px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
  transition: all .4s ease;
}
.feature:hover {
  border-color: var(--gold);
  background: rgba(201,169,97,0.04);
  transform: translateY(-4px);
}
.feature-icon {
  width: 56px; height: 56px;
  margin: 0 auto 26px;
  color: var(--gold);
}
.feature h4 {
  font-size: 20px;
  margin-bottom: 14px;
  color: var(--text);
}
.feature p {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.7;
}

/* ========== EXPERIENCE / FULLWIDTH IMAGE ========== */
.experience {
  background: url('https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?w=1920&q=85') center/cover no-repeat fixed;
  position: relative;
  padding: 180px 0;
}
.experience::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.85), rgba(10,10,10,0.5));
}
.experience .container { position: relative; z-index: 1; }
.experience-content {
  max-width: 640px;
  color: var(--text);
}
.experience h2 {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 400;
  margin-bottom: 28px;
  line-height: 1.1;
}
.experience h2 em { color: var(--gold); font-style: italic; }
.experience p {
  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.9;
  margin-bottom: 38px;
}

/* ========== GALLERY ========== */
.gallery-section { background: var(--bg); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 16px;
}
.gallery-item {
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,10,10,0.7) 100%);
  opacity: 0;
  transition: opacity .4s ease;
}
.gallery-item:hover::after { opacity: 1; }

/* ========== TESTIMONIALS ========== */
.testimonials { background: var(--bg-2); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.testi-card {
  padding: 50px 38px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
  position: relative;
}
.testi-card::before {
  content: '"';
  position: absolute;
  top: 0; left: 30px;
  font-family: var(--serif);
  font-size: 100px;
  color: var(--gold);
  line-height: 1;
  font-weight: 500;
  opacity: 0.5;
}
.testi-text {
  font-family: var(--serif);
  font-size: 19px;
  font-style: italic;
  color: var(--text);
  line-height: 1.7;
  margin: 30px 0 30px;
  position: relative;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}
.testi-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
}
.testi-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}
.testi-role {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ========== CTA BAND ========== */
.cta-band {
  background: var(--bg-3);
  padding: 90px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta-band .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}
.cta-band h3 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 400;
  color: var(--text);
}
.cta-band h3 em { color: var(--gold); font-style: italic; }

/* ========== CONTACT ========== */
.contact-section { background: var(--bg); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.contact-info h3 {
  font-size: 32px;
  margin-bottom: 24px;
  font-weight: 400;
}
.contact-info h3 em { color: var(--gold); font-style: italic; }
.contact-info > p {
  color: var(--text-soft);
  margin-bottom: 42px;
  line-height: 1.8;
}
.contact-item {
  display: flex;
  gap: 22px;
  margin-bottom: 34px;
  align-items: flex-start;
}
.contact-icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  border: 1px solid var(--gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-icon svg { width: 20px; height: 20px; }
.contact-item h5 {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--sans);
  font-weight: 500;
  margin-bottom: 8px;
}
.contact-item p {
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
}

/* form */
.contact-form {
  background: var(--bg-2);
  padding: 50px 45px;
  border: 1px solid var(--border);
}
.contact-form h3 {
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 8px;
}
.contact-form h3 em { color: var(--gold); font-style: italic; }
.contact-form .form-sub {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 32px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--text-muted);
  margin-bottom: 10px;
  font-weight: 500;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border-strong);
  color: var(--text);
  font-family: var(--sans);
  font-size: 14px;
  transition: border-color .3s ease;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}
.form-group textarea {
  resize: vertical;
  min-height: 110px;
}
.form-group select option { background: var(--bg-2); color: var(--text); }

/* ========== FOOTER ========== */
.site-footer {
  background: #060606;
  padding: 90px 0 30px;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.footer-brand span { color: var(--gold); font-style: italic; font-weight: 400; }
.footer-col p {
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 18px;
}
.footer-col h5 {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--sans);
  font-weight: 500;
  margin-bottom: 26px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul a {
  font-size: 14px;
  color: var(--text-soft);
}
.footer-col ul a:hover { color: var(--gold); padding-left: 6px; }
.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}
.footer-bottom a { color: var(--text-muted); margin-left: 22px; }
.footer-bottom a:hover { color: var(--gold); }

/* ========== ANIMATIONS REVEAL ========== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  animation: revealFallback 0.9s ease 0.3s forwards;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
@keyframes revealFallback {
  to { opacity: 1; transform: translateY(0); }
}

/* ========== PAGE HEADER (sous-pages) ========== */
.page-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 0;
  padding-top: 100px;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.page-hero.services-hero::before { background-image: url('https://images.unsplash.com/photo-1606664515524-ed2f786a0bd6?w=1920&q=85'); }
.page-hero.gallery-hero::before { background-image: url('https://images.unsplash.com/photo-1542362567-b07e54358753?w=1920&q=85'); }
.page-hero.contact-hero::before { background-image: url('https://images.unsplash.com/photo-1511919884226-fd3cad34687c?w=1920&q=85'); }
.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.6), rgba(10,10,10,0.85));
  z-index: 1;
}
.page-hero .container {
  position: relative;
  z-index: 2;
}
.page-hero h1 {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 400;
  margin-bottom: 22px;
}
.page-hero h1 em { color: var(--gold); font-style: italic; }
.page-hero p {
  font-size: 16px;
  color: var(--text-soft);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

.breadcrumb {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 24px;
}
.breadcrumb a { color: var(--text-soft); }

/* ========== MAP ========== */
.map-wrap {
  border: 1px solid var(--border);
  overflow: hidden;
  height: 100%;
  min-height: 380px;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.5) invert(0.9) contrast(0.8); }

/* ========== TOAST ========== */
.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  padding: 16px 26px;
  background: var(--gold);
  color: var(--bg);
  font-size: 13px;
  letter-spacing: 0.05em;
  z-index: 9999;
  opacity: 0;
  transform: translateY(20px);
  transition: all .35s ease;
  font-weight: 500;
}
.toast.show { opacity: 1; transform: translateY(0); }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .container { padding: 0 28px; }
  .nav-links { gap: 28px; }
  .intro-grid, .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .intro-img img { height: 460px; }
  .fleet-grid, .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  section { padding: 90px 0; }
  .cta-band .container { flex-direction: column; text-align: center; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(10,10,10,0.98);
    backdrop-filter: blur(14px);
    flex-direction: column;
    padding: 40px 30px;
    gap: 22px;
    transform: translateY(-150%);
    transition: transform .4s ease;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-cta { display: none; }
  .site-header { padding: 16px 0; }
  .brand { font-size: 20px; }

  .hero { min-height: 90vh; }
  .hero-cta { flex-direction: column; width: 100%; }
  .hero-cta .btn { width: 100%; }

  .fleet-grid, .testi-grid, .features-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }
  .footer-bottom a { margin: 0 10px; }

  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 35px 24px; }

  .intro-stats { grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .stat-num { font-size: 32px; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .gallery-item.tall { grid-row: span 1; }

  .experience { background-attachment: scroll; padding: 110px 0; }

  section { padding: 70px 0; }
  .section-head { margin-bottom: 50px; }
  .section-eyebrow::before, .section-eyebrow::after { margin: 0 8px; }

  .container { padding: 0 20px; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .intro-stats { grid-template-columns: 1fr; gap: 20px; }
}
