/* ─── CNV MOTONAUTIQUE — SHARED STYLES ─────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Barlow+Condensed:wght@300;400;500;600;700&display=swap');

:root {
  --navy: #0a1628;
  --deep-blue: #0d2044;
  --ocean: #1a3a6b;
  --water: #1e5f8a;
  --sky: #4a9abb;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --cream: #f5f0e8;
  --white: #ffffff;
  --glass: rgba(10, 22, 40, 0.72);
  --glass-light: rgba(255,255,255,0.06);
  --border-gold: rgba(201,168,76,0.35);
  --text-muted: rgba(255,255,255,0.65);
}

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

body {
  font-family: 'Barlow Condensed', sans-serif;
  background: var(--navy);
  color: var(--white);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ─── PAGE BANNER ─────────────────────────────────────────── */
.page-banner {
  position: relative;
  height: 38vh;
  min-height: 260px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.page-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  animation: bannerZoom 14s ease-in-out infinite alternate;
}

@keyframes bannerZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.06); }
}

.page-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,22,40,0.2) 0%, rgba(10,22,40,0.85) 100%);
}

.page-banner-content {
  position: relative;
  z-index: 2;
  padding: 0 40px 36px;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.banner-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.banner-eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.banner-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.1;
  color: var(--white);
}

.banner-title em {
  font-style: italic;
  color: var(--gold-light);
}

/* ─── CONTENT AREA ─────────────────────────────────────────── */
.page-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 40px;
}

.content-box {
  background: var(--glass-light);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  padding: 44px;
}

.content-box p {
  font-weight: 300;
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--text-muted);
  letter-spacing: 0.01em;
}

/* ─── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white);
  padding: 13px 28px;
  border: 1px solid var(--border-gold);
  border-radius: 2px;
  background: transparent;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn:hover {
  background: rgba(201,168,76,0.12);
  border-color: var(--gold);
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--ocean), var(--water));
  border-color: var(--water);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--water), var(--sky));
  border-color: var(--sky);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

/* ─── SECTION LABEL ────────────────────────────────────────── */
.section-label {
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-label::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--border-gold);
}

h2.content-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1.75rem;
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.2;
}

/* ─── FOOTER ─────────────────────────────────────────────── */
.site-footer {
  background: var(--navy);
  border-top: 1px solid rgba(201,168,76,0.2);
  padding: 40px 20px;
  margin-top: 60px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.footer-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-transform: uppercase;
}

.footer-contact {
  font-size: 0.83rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.45);
}

.footer-contact a {
  color: var(--gold-light);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-contact a:hover { color: var(--white); }

.footer-socials {
  display: flex;
  gap: 14px;
}

.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-gold);
  border-radius: 2px;
  transition: all 0.3s;
}

.footer-socials a:hover {
  background: rgba(201,168,76,0.12);
  border-color: var(--gold);
}

.footer-socials img { width: 20px; height: 20px; object-fit: contain; }

.footer-copy {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
}

/* ─── SWIPER OVERRIDES ─────────────────────────────────────── */
.swiper {
  width: 100%;
  border-radius: 3px;
  overflow: hidden;
  margin: 28px 0;
  border: 1px solid rgba(255,255,255,0.08);
}

.swiper-slide img {
  width: 100%;
  height: 420px;
  object-fit: contain;
  background: var(--navy);
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--gold) !important;
}

.swiper-pagination-bullet { background: rgba(255,255,255,0.4) !important; }
.swiper-pagination-bullet-active { background: var(--gold) !important; }

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 768px) {
  .page-wrap { padding: 40px 20px; }
  .content-box { padding: 28px 22px; }
  .page-banner-content { padding: 0 20px 28px; }
  .swiper-slide img { height: 260px; }
}
