@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Outfit:wght@300;400;500;600&display=swap');

:root {
  --bg: #0a0a0a;
  --bg-elevated: #141414;
  --bg-card: #1a1a1a;
  --fg: #f5f0eb;
  --fg-muted: #9a9590;
  --accent: #c9a96e;
  --accent-dim: rgba(201, 169, 110, 0.15);
  --accent-glow: rgba(201, 169, 110, 0.08);
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Outfit', -apple-system, sans-serif;
  --border: rgba(201, 169, 110, 0.12);
}

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

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 8vw 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 80vw;
  height: 80vw;
  background: radial-gradient(ellipse, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 40px;
  padding: 8px 20px;
  border: 1px solid var(--border);
  border-radius: 100px;
  width: fit-content;
}

.hero-badge span {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 900px;
  margin-bottom: 32px;
}

.hero h1 em {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  color: var(--fg-muted);
  max-width: 540px;
  line-height: 1.8;
}

.hero-stats {
  display: flex;
  gap: 60px;
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.hero-stat .number {
  font-family: var(--serif);
  font-size: 2.5rem;
  color: var(--accent);
  display: block;
  line-height: 1.2;
}

.hero-stat .label {
  font-size: 0.8rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-top: 4px;
}

/* === DIVIDER === */
.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 0;
}

/* === SERVICES === */
.services {
  padding: 120px 8vw;
  position: relative;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 80px;
  gap: 40px;
  flex-wrap: wrap;
}

.section-header h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.15;
  max-width: 500px;
}

.section-header h2 em {
  font-style: italic;
  color: var(--accent);
}

.section-header p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  max-width: 360px;
  text-align: right;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.service-card {
  background: var(--bg-elevated);
  padding: 48px 36px;
  position: relative;
  transition: background 0.3s ease;
}

.service-card:hover {
  background: var(--bg-card);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover::before {
  opacity: 1;
}

.service-number {
  font-family: var(--serif);
  font-size: 0.85rem;
  color: var(--accent);
  margin-bottom: 24px;
  display: block;
}

.service-card h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 16px;
  line-height: 1.3;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* === EXPERIENCE === */
.experience {
  padding: 120px 8vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.experience-text h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 32px;
}

.experience-text h2 em {
  font-style: italic;
  color: var(--accent);
}

.experience-text > p {
  color: var(--fg-muted);
  font-size: 1rem;
  margin-bottom: 48px;
  line-height: 1.8;
}

.experience-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.experience-features li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature-marker {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 0.75rem;
  color: var(--accent);
  margin-top: 2px;
}

.feature-text h4 {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.feature-text p {
  font-size: 0.85rem;
  color: var(--fg-muted);
}

.experience-visual {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  padding: 60px 48px;
  position: relative;
}

.experience-visual::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent 80%);
}

.exp-quote {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 32px;
  color: var(--fg);
}

.exp-attribution {
  font-size: 0.8rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

/* === FLEET === */
.fleet {
  padding: 120px 8vw;
  background: var(--bg-elevated);
}

.fleet h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  text-align: center;
  margin-bottom: 16px;
}

.fleet h2 em {
  font-style: italic;
  color: var(--accent);
}

.fleet > p {
  text-align: center;
  color: var(--fg-muted);
  max-width: 520px;
  margin: 0 auto 64px;
  font-size: 0.95rem;
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.fleet-item {
  background: var(--bg);
  padding: 40px 28px;
  text-align: center;
  transition: background 0.3s ease;
}

.fleet-item:hover {
  background: var(--bg-card);
}

.fleet-icon {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 20px;
  display: block;
}

.fleet-item h3 {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.fleet-item p {
  font-size: 0.8rem;
  color: var(--fg-muted);
}

/* === CLOSING === */
.closing {
  padding: 160px 8vw;
  text-align: center;
  position: relative;
}

.closing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60vw;
  height: 60vw;
  background: radial-gradient(ellipse, var(--accent-glow) 0%, transparent 60%);
  pointer-events: none;
}

.closing h2 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.15;
  max-width: 700px;
  margin: 0 auto 24px;
  position: relative;
}

.closing h2 em {
  font-style: italic;
  color: var(--accent);
}

.closing p {
  color: var(--fg-muted);
  font-size: 1.05rem;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.8;
  position: relative;
}

/* === FOOTER === */
footer {
  padding: 48px 8vw;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-brand {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--fg-muted);
}

.footer-brand strong {
  color: var(--fg);
  font-weight: 600;
}

.footer-meta {
  font-size: 0.75rem;
  color: var(--fg-muted);
  display: flex;
  gap: 24px;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .fleet-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .experience {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 100px 6vw 60px;
  }
  .services {
    padding: 80px 6vw;
  }
  .experience {
    padding: 80px 6vw;
  }
  .fleet {
    padding: 80px 6vw;
  }
  .closing {
    padding: 100px 6vw;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .fleet-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-stats {
    gap: 32px;
    flex-wrap: wrap;
  }
  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .section-header p {
    text-align: left;
  }
  footer {
    flex-direction: column;
    text-align: center;
  }
}
