:root {
  --forest: #183c2e;
  --forest-dark: #0f291f;
  --moss: #5d6f48;
  --ivory: #f7f1e3;
  --paper: #fffaf0;
  --car-red: #9f1f2f;
  --car-red-dark: #65111d;
  --burgundy: #9f1f2f;
  --brass: #c89d50;
  --charcoal: #20231f;
  --muted: #60685c;
  --line: rgba(32, 35, 31, 0.16);
  --shadow: 0 22px 60px rgba(15, 41, 31, 0.18);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

main[id],
section[id] {
  scroll-margin-top: 94px;
}

body {
  margin: 0;
  color: var(--charcoal);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

.js-lightbox-image {
  cursor: zoom-in;
}

.js-lightbox-image:focus-visible {
  outline: 3px solid var(--brass);
  outline-offset: 4px;
}

a {
  color: inherit;
  text-decoration: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 86px;
  padding: 18px clamp(20px, 5vw, 72px);
  color: var(--ivory);
  background: linear-gradient(90deg, rgba(101, 17, 29, 0.96), rgba(159, 31, 47, 0.9));
  box-shadow: 0 12px 34px rgba(42, 8, 13, 0.22);
  transition: background 180ms ease, box-shadow 180ms ease, min-height 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  min-height: 74px;
  background: rgba(101, 17, 29, 0.98);
  box-shadow: 0 16px 42px rgba(42, 8, 13, 0.36);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
}

.brand-logo {
  width: 66px;
  height: 66px;
  object-fit: contain;
  border-radius: 50%;
  padding: 4px;
  border: 2px solid rgba(247, 241, 227, 0.95);
  background: rgba(247, 241, 227, 0.98);
  box-shadow: 0 10px 28px rgba(42, 8, 13, 0.34);
}

.site-header.is-scrolled .brand-logo,
.site-header.is-open .brand-logo {
  width: 56px;
  height: 56px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 26px);
  font-size: 14px;
  font-weight: 700;
}

.site-nav a {
  opacity: 0.86;
  transition: color 160ms ease, opacity 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #fff;
  opacity: 1;
}

.site-nav .nav-phone {
  padding: 10px 14px;
  color: #fff;
  border: 1px solid rgba(247, 241, 227, 0.34);
  background: rgba(247, 241, 227, 0.1);
  opacity: 1;
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.nav-dropdown-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-dropdown-link::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  opacity: 0.8;
}

.nav-submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  display: grid;
  min-width: 250px;
  padding: 10px;
  border: 1px solid rgba(247, 241, 227, 0.28);
  background: var(--car-red-dark);
  box-shadow: 0 18px 44px rgba(42, 8, 13, 0.42);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%);
}

.nav-submenu a {
  padding: 10px 12px;
  color: var(--ivory);
  opacity: 1;
  white-space: nowrap;
}

.nav-submenu a:hover,
.nav-submenu a:focus-visible {
  background: rgba(247, 241, 227, 0.12);
}

.nav-dropdown:hover .nav-submenu,
.nav-dropdown:focus-within .nav-submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%);
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(440px, 0.42fr);
  align-items: stretch;
  padding: 0 clamp(20px, 5vw, 72px);
  overflow: hidden;
  color: var(--ivory);
  background: var(--forest-dark);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("../images/cars/peugeot-203-vieux-mans-accueil.jpg") center / cover;
  opacity: 0.3;
  filter: blur(10px) saturate(0.86);
  transform: scale(1.04);
}

.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image {
  position: relative;
  grid-column: 1;
  z-index: 1;
  align-self: end;
  justify-self: start;
  width: min(100%, 1120px);
  max-height: calc(92vh - 300px);
  margin: 224px 0 72px;
  object-fit: contain;
  object-position: left center;
}

.hero-shade {
  z-index: 1;
  background:
    radial-gradient(circle at 31% 72%, rgba(247, 241, 227, 0.08), rgba(15, 41, 31, 0) 38%),
    linear-gradient(90deg, rgba(15, 41, 31, 0.08) 0%, rgba(15, 41, 31, 0.08) 50%, rgba(15, 41, 31, 0.4) 72%, rgba(15, 41, 31, 0.88) 100%);
}

.hero-content {
  position: relative;
  grid-column: 2;
  z-index: 2;
  display: grid;
  align-content: center;
  justify-items: start;
  justify-self: end;
  width: min(500px, 100%);
  min-height: 92vh;
  margin-left: 0;
  padding: 260px 0 52px;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.42);
}

.hero-content::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 194px -36px 24px -56px;
  background:
    radial-gradient(ellipse at 48% 42%, rgba(15, 41, 31, 0.76), rgba(15, 41, 31, 0.5) 48%, rgba(15, 41, 31, 0) 76%),
    linear-gradient(90deg, rgba(15, 41, 31, 0), rgba(15, 41, 31, 0.46) 42%, rgba(15, 41, 31, 0.64));
  pointer-events: none;
}

.hero-title-top {
  position: absolute;
  z-index: 3;
  top: 128px;
  left: clamp(20px, 5vw, 72px);
  right: clamp(20px, 5vw, 72px);
  max-width: none;
  color: #fff6e6;
  -webkit-text-fill-color: #fff6e6;
  font-size: clamp(36px, 4.2vw, 68px);
  line-height: 0.96;
  white-space: nowrap;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 74px);
  line-height: 0.94;
  max-width: 620px;
}

.hero-content > p {
  max-width: 430px;
  margin-bottom: 24px;
  color: rgba(247, 241, 227, 0.88);
  font-size: clamp(16px, 1.45vw, 19px);
}

.hero-content > .hero-statement {
  max-width: 430px;
  margin-top: -4px;
  margin-bottom: 20px;
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(23px, 2.4vw, 34px);
  font-weight: 700;
  line-height: 1.05;
}

.hero-price {
  display: inline-flex;
  flex-direction: column;
  gap: 3px;
  width: fit-content;
  margin: 0 0 24px;
  padding: 10px 14px;
  color: #fff;
  border: 1px solid rgba(247, 241, 227, 0.36);
  background: rgba(159, 31, 47, 0.86);
  font-size: 15px;
  font-weight: 900;
}

.hero-price small {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
  opacity: 0.9;
}

.hero-actions,
.packages {
  display: grid;
  gap: 16px;
}

.hero-actions {
  grid-template-columns: repeat(2, max-content);
}

.button,
.package button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 3px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover,
.package button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--burgundy);
  color: #fff;
}

.button-ghost {
  border-color: rgba(247, 241, 227, 0.62);
  color: var(--ivory);
  background: rgba(247, 241, 227, 0.08);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(28px, 6vw, 88px);
  padding: clamp(48px, 7vw, 92px) clamp(20px, 5vw, 72px);
  background: var(--ivory);
}

.intro h2,
.section-heading h2,
.detail-panel h2,
.contact-copy h2 {
  font-family: var(--serif);
  font-size: clamp(38px, 5vw, 68px);
  line-height: 0.95;
}

.intro p,
.contact-copy p,
.detail-panel li {
  color: var(--muted);
  font-size: 17px;
}

.intro-copy a,
.contact-methods a {
  color: var(--burgundy);
  font-weight: 800;
}

.contact-methods span {
  color: var(--muted);
  font-weight: 800;
}

.intro-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 0;
}

.intro-facts div {
  padding: 22px;
  border-left: 2px solid var(--brass);
  background: rgba(255, 250, 240, 0.68);
}

.intro-facts dt {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 700;
  color: var(--forest);
}

.intro-facts dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.section {
  padding: clamp(64px, 8vw, 116px) clamp(20px, 5vw, 72px);
}

.section-warm {
  background: var(--paper);
}

.car-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  background: var(--paper);
}

.experience-overview {
  background: #fff;
}

.experience-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  margin-bottom: clamp(34px, 5vw, 64px);
}

.section-kicker {
  color: var(--burgundy);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.experience-header h2 {
  max-width: 820px;
  margin-bottom: 20px;
  font-family: var(--serif);
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.92;
}

.experience-header p:not(.section-kicker),
.booking-summary p,
.activity-list dd,
.check-list {
  color: var(--muted);
}

.booking-summary {
  position: sticky;
  top: 108px;
  display: grid;
  gap: 10px;
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.summary-price {
  color: var(--car-red);
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 700;
  line-height: 0.95;
}

.booking-summary .button {
  width: 100%;
  margin-top: 10px;
}

.booking-summary p {
  margin: 6px 0 0;
  font-size: 14px;
}

.experience-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.72fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.experience-gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 12px;
}

.experience-gallery img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  border: 1px solid var(--line);
}

.experience-gallery img:first-child {
  grid-row: span 2;
  aspect-ratio: 4 / 5;
}

.experience-gallery img:nth-child(2),
.experience-gallery img:nth-child(3) {
  aspect-ratio: 4 / 3;
}

.experience-gallery img:nth-child(2) {
  object-position: center 24%;
}

.experience-gallery img:nth-child(3) {
  object-position: center 18%;
}

.activity-details {
  display: grid;
  gap: 16px;
}

.activity-card {
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--ivory);
}

.activity-card h3 {
  margin-bottom: 16px;
  font-family: var(--serif);
  font-size: 32px;
  line-height: 1;
}

.activity-list {
  display: grid;
  gap: 14px;
  margin: 0;
}

.activity-list div {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.activity-list div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.activity-list dt {
  color: var(--forest);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.activity-list dd {
  margin: 0;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--car-red);
}

.activity-table {
  gap: 0;
  border-top: 1px solid var(--line);
}

.activity-row {
  display: grid;
  grid-template-columns: minmax(130px, 0.34fr) minmax(0, 1fr);
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.activity-row h3 {
  margin: 0;
  color: var(--forest);
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
}

.activity-row h4 {
  margin: 0 0 10px;
  color: var(--forest);
  font-size: 15px;
}

.activity-row p,
.activity-row li {
  color: var(--charcoal);
  font-weight: 650;
  line-height: 1.55;
}

.activity-row p + p {
  margin-top: 12px;
}

.bullet-list,
.plain-list,
.included-list {
  margin: 0;
}

.bullet-list,
.plain-list {
  padding-left: 20px;
}

.included-list {
  display: grid;
  gap: 6px;
  padding-left: 0;
  list-style: none;
}

.included-list li {
  position: relative;
  padding-left: 26px;
}

.included-list li::before {
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 900;
}

.included-list .is-included::before {
  content: "✓";
  color: #087f45;
}

.included-list .is-excluded::before {
  content: "×";
  color: var(--car-red);
}

.car-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 0.42fr);
  gap: 14px;
  align-items: stretch;
}

.car-gallery img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.car-gallery img:first-child {
  aspect-ratio: 16 / 10;
}

.car-gallery img:last-child {
  aspect-ratio: 3 / 4;
}

.car-copy p:first-child {
  color: var(--burgundy);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.car-copy h2 {
  margin-bottom: 22px;
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 72px);
  line-height: 0.92;
}

.car-copy p:not(:first-child) {
  color: var(--muted);
  font-size: 17px;
}

.car-copy .button {
  margin-top: 16px;
}

.video-story {
  display: grid;
  grid-template-columns: minmax(300px, 0.42fr) minmax(0, 1fr);
  gap: clamp(20px, 3vw, 42px) clamp(36px, 6vw, 96px);
  align-items: start;
  color: var(--ivory);
  background: var(--forest-dark);
}

.video-title {
  grid-column: 1 / -1;
  max-width: min(1180px, 100%);
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(42px, 5.4vw, 92px);
  line-height: 0.92;
  color: var(--ivory);
}

.video-copy {
  display: grid;
  align-content: start;
  gap: 18px;
}

.video-copy p:first-child {
  max-width: 470px;
  color: rgba(247, 241, 227, 0.92);
  font-size: 18px;
  line-height: 1.65;
}

.video-copy h2 {
  font-family: var(--serif);
  font-size: clamp(38px, 5vw, 72px);
  line-height: 0.95;
}

.video-copy p:last-child {
  max-width: 470px;
  color: rgba(247, 241, 227, 0.74);
  font-size: 17px;
  line-height: 1.65;
}

.video-frame {
  position: relative;
  align-self: start;
  margin-top: clamp(4px, 1vw, 14px);
  overflow: hidden;
  border: 0;
  background: #081811;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.26);
}

.video-frame video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(140px, 0.28fr) minmax(0, 0.72fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 42px;
}

.section-heading p,
.contact-copy > p:first-child {
  color: var(--burgundy);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.section-heading h2 {
  max-width: 780px;
  margin-bottom: 0;
}

.section-heading-full {
  grid-template-columns: 1fr;
}

.section-heading-full h2 {
  max-width: 1180px;
}

.packages {
  grid-template-columns: repeat(4, 1fr);
}

.package {
  display: grid;
  grid-template-rows: auto 1fr auto auto auto;
  gap: 22px;
  min-height: 430px;
  padding: 18px;
  border: 1px solid var(--line);
  background: var(--ivory);
  box-shadow: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.package.is-active,
.package:hover {
  border-color: rgba(200, 157, 80, 0.76);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.package h3 {
  font-family: var(--serif);
  font-size: clamp(28px, 2.4vw, 34px);
  line-height: 1;
}

.package-image {
  width: 100%;
  height: 190px;
  object-fit: cover;
  object-position: center 24%;
  border: 1px solid var(--line);
}

.package-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.42);
}

.package-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 700ms ease;
}

.package-slider img.is-active {
  opacity: 1;
}

.package[data-package="sur-mesure"] .package-image {
  object-position: center 20%;
}

.package p {
  color: var(--muted);
}

.package span {
  color: var(--forest);
  font-weight: 800;
}

.package-link {
  width: fit-content;
  color: var(--burgundy);
  font-size: 14px;
  font-weight: 800;
  border-bottom: 1px solid rgba(143, 38, 54, 0.34);
}

.package-examples {
  display: grid;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid rgba(143, 38, 54, 0.18);
  background: rgba(255, 255, 255, 0.45);
}

.package-examples summary {
  color: var(--burgundy);
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.package-examples ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px;
}

.route-ideas {
  display: grid;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.route-ideas p {
  margin: 0;
}

.route-ideas strong {
  color: var(--forest);
}

.route-option {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: stretch;
  padding: 16px;
  border: 1px solid rgba(143, 38, 54, 0.16);
  background: rgba(255, 255, 255, 0.54);
}

.route-option:last-of-type {
  border-bottom: 1px solid rgba(143, 38, 54, 0.16);
}

.route-option-content {
  display: grid;
  align-content: start;
  gap: 10px;
}

.route-kicker {
  color: var(--burgundy);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.route-stops {
  display: grid;
  gap: 6px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.route-option button {
  justify-self: start;
  margin-top: 4px;
  min-height: 42px;
  padding: 10px 16px;
  color: #fff;
  border-color: var(--burgundy);
  background: var(--burgundy);
}

.route-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 0;
}

.route-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid rgba(143, 38, 54, 0.14);
  border-radius: 6px;
}

.route-main-image {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 9;
}

.route-gallery-wide img {
  aspect-ratio: 16 / 9;
}

@media (max-width: 620px) {
  .route-gallery {
    grid-template-columns: 1fr;
  }

  .route-option {
    padding: 12px;
  }

  .route-option button {
    width: 100%;
  }
}

.route-ideas-note {
  padding-top: 8px;
  border-top: 1px solid rgba(143, 38, 54, 0.14);
  font-weight: 700;
}

.package button {
  width: fit-content;
  color: #fff;
  border-color: var(--forest);
  background: var(--forest);
}

.package.is-active button {
  color: #fff;
  background: var(--forest);
}

.package .route-option button {
  width: fit-content;
  color: #fff;
  border-color: var(--burgundy);
  background: var(--burgundy);
}

.package .route-option button:hover {
  background: var(--car-red-dark);
}

.packages-note {
  max-width: 920px;
  margin: 22px 0 0;
  padding: 18px 22px;
  color: var(--forest);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.68);
  font-weight: 800;
  line-height: 1.5;
}

.package-extras {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 22px;
}

.package-extra {
  display: grid;
  grid-template-columns: minmax(180px, 0.46fr) minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
  padding: 18px;
  border: 1px solid var(--line);
  background: #fff;
}

.package-extra img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
  border: 1px solid var(--line);
}

.package-extra > div {
  display: grid;
  align-content: center;
  gap: 14px;
}

.package-extra p:first-child {
  color: var(--burgundy);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.package-extra h3 {
  color: var(--forest);
  font-family: var(--serif);
  font-size: clamp(32px, 3vw, 48px);
  line-height: 0.96;
}

.package-extra p:not(:first-child) {
  color: var(--muted);
}

.package-extra .button {
  justify-self: start;
}

.routes {
  color: var(--ivory);
  background: var(--forest);
}

.routes .section-heading p {
  color: var(--brass);
}

.circuit-card {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.78fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.circuit-card + .circuit-card {
  margin-top: clamp(54px, 8vw, 116px);
  padding-top: clamp(54px, 8vw, 96px);
  border-top: 1px solid rgba(247, 241, 227, 0.18);
}

.circuit-media {
  display: grid;
  gap: 14px;
}

.circuit-media > img,
.circuit-thumbs img {
  width: 100%;
  object-fit: cover;
  border: 1px solid rgba(247, 241, 227, 0.18);
}

.circuit-media > img {
  aspect-ratio: 16 / 10;
}

.circuit-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.circuit-thumbs img {
  aspect-ratio: 4 / 3;
}

.circuit-thumbs-wide {
  grid-template-columns: repeat(5, 1fr);
}

.circuit-content {
  color: rgba(247, 241, 227, 0.8);
}

.circuit-number {
  color: var(--brass);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.circuit-content h3 {
  margin: 12px 0 12px;
  color: var(--ivory);
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 74px);
  line-height: 0.92;
}

.circuit-lead {
  color: var(--ivory);
  font-size: 19px;
  font-weight: 700;
}

.circuit-highlights {
  display: grid;
  gap: 8px;
  margin: 18px 0;
  padding-left: 20px;
  color: rgba(247, 241, 227, 0.92);
  font-weight: 800;
}

.circuit-info {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: 28px 0;
  background: rgba(247, 241, 227, 0.2);
}

.circuit-info div {
  padding: 18px;
  background: rgba(15, 41, 31, 0.78);
}

.circuit-info dt {
  color: var(--brass);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.circuit-info dd {
  margin: 6px 0 0;
  color: var(--ivory);
  font-weight: 700;
}

.details {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.65fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: stretch;
  background: var(--ivory);
}

.gift-section,
.event-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 0.78fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
}

.gift-section {
  background: var(--ivory);
}

.event-section {
  color: var(--ivory);
  background: var(--forest-dark);
}

.gift-section > img,
.event-section > img {
  width: 100%;
  max-height: 680px;
  object-fit: cover;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.gift-section > img {
  aspect-ratio: 4 / 3;
  object-position: center 22%;
}

.event-section > img {
  aspect-ratio: 4 / 5;
  border-color: rgba(247, 241, 227, 0.22);
  object-position: center 18%;
}

.gift-copy > p:first-child,
.event-copy > p:first-child {
  color: var(--burgundy);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.event-copy > p:first-child {
  color: var(--brass);
}

.gift-copy h2,
.event-copy h2 {
  margin-bottom: 22px;
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 72px);
  line-height: 0.92;
}

.gift-copy p:not(:first-child),
.event-copy p:not(:first-child) {
  color: var(--muted);
  font-size: 17px;
}

.event-copy p:not(:first-child),
.event-points dd {
  color: rgba(247, 241, 227, 0.78);
}

.feature-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 28px;
  padding-left: 20px;
  color: var(--muted);
}

.event-points {
  display: grid;
  gap: 1px;
  margin: 28px 0;
  background: rgba(247, 241, 227, 0.16);
}

.event-points div {
  padding: 18px;
  background: rgba(24, 60, 46, 0.78);
}

.event-points dt {
  color: var(--brass);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.event-points dd {
  margin: 6px 0 0;
}

.detail-panel,
.quote-panel {
  padding: clamp(28px, 5vw, 54px);
}

.detail-panel {
  background: var(--paper);
}

.detail-panel ul {
  display: grid;
  gap: 14px;
  padding-left: 20px;
  margin: 28px 0 0;
}

.why-choose {
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.why-choose h3 {
  margin: 0 0 18px;
  color: var(--forest);
  font-family: var(--serif);
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1;
}

.why-choose ul {
  margin-top: 0;
}

.practical-faq {
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.practical-faq h3 {
  margin: 0 0 18px;
  color: var(--forest);
  font-family: var(--serif);
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1;
}

.practical-faq .faq-list {
  max-width: none;
  margin-left: 0;
}

.quote-panel {
  display: grid;
  align-content: center;
  gap: 18px;
  place-items: center;
  color: var(--ivory);
  background: var(--burgundy);
}

.quote-panel p {
  max-width: 460px;
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1;
}

.quote-panel cite {
  width: min(460px, 100%);
  color: rgba(247, 241, 227, 0.78);
  font-style: normal;
  font-weight: 800;
}

.reviews {
  background: #fff;
}

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

.rating-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: center;
  margin-top: 16px;
  color: var(--muted);
  font-weight: 800;
}

.rating-summary span {
  color: var(--car-red);
  letter-spacing: 2px;
}

.review-card {
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 270px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line);
  background: var(--ivory);
}

.review-stars {
  color: var(--car-red);
  font-size: 18px;
  letter-spacing: 2px;
}

.review-card blockquote {
  margin: 0;
  color: var(--charcoal);
  font-family: var(--serif);
  font-size: clamp(25px, 2.4vw, 34px);
  font-weight: 700;
  line-height: 1.08;
}

.review-card > p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.review-card-callout {
  background: var(--forest);
  color: var(--ivory);
}

.review-card-callout h3 {
  color: var(--ivory);
  font-family: var(--serif);
  font-size: clamp(32px, 3vw, 46px);
  line-height: 0.96;
}

.review-card-callout p {
  color: rgba(247, 241, 227, 0.78);
}

.review-card-callout .button {
  justify-self: start;
  align-self: end;
}

.review-form {
  display: grid;
  gap: 18px;
  margin-top: 24px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  background: var(--paper);
}

.review-form-heading {
  display: grid;
  gap: 8px;
}

.review-form-heading p {
  color: var(--burgundy);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.review-form-heading h3 {
  color: var(--forest);
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 0.96;
}

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

.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
  text-transform: none;
}

.consent-label input {
  width: auto;
  margin-top: 2px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 7vw, 96px);
  align-items: start;
  background: var(--paper);
}

.contact-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: 24px;
}

.contact-methods a {
  border-bottom: 1px solid rgba(143, 38, 54, 0.35);
}

.booking-form {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
}

.hidden-field {
  display: none;
}

.faq {
  background: var(--paper);
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 980px;
  margin-left: auto;
}

.faq-list details {
  border: 1px solid var(--line);
  background: var(--ivory);
}

.faq-list summary {
  padding: 20px 24px;
  color: var(--forest);
  font-weight: 800;
  cursor: pointer;
}

.faq-list p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--muted);
}

label {
  display: grid;
  gap: 8px;
  color: var(--forest);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(32, 35, 31, 0.18);
  border-radius: 3px;
  padding: 14px 14px;
  color: var(--charcoal);
  background: var(--paper);
  font: 500 15px var(--sans);
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(200, 157, 80, 0.34);
  border-color: var(--brass);
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--forest);
  font-weight: 700;
}

.mobile-quick-actions {
  display: none;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 5vw, 72px);
  color: rgba(247, 241, 227, 0.82);
  background: var(--forest-dark);
}

.site-footer p {
  margin: 0;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: #fff8ea;
  font-weight: 800;
}

.footer-brand img {
  width: 86px;
  height: 86px;
  object-fit: contain;
  border-radius: 50%;
  padding: 6px;
  border: 3px solid rgba(247, 241, 227, 0.9);
  background: #fff8ea;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.25);
  cursor: zoom-in;
}

[data-logo-lightbox] {
  cursor: zoom-in;
}

.lightbox {
  position: fixed;
  z-index: 80;
  inset: 0;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 72px;
  align-items: center;
  gap: 16px;
  padding: 72px clamp(16px, 4vw, 54px) 36px;
  background: rgba(6, 16, 12, 0.92);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-figure {
  display: grid;
  justify-items: center;
  gap: 14px;
  margin: 0;
}

.lightbox-figure img {
  max-width: min(100%, 1180px);
  max-height: calc(100vh - 160px);
  object-fit: contain;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.46);
}

.lightbox-figure figcaption {
  max-width: min(820px, 100%);
  color: rgba(247, 241, 227, 0.86);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.lightbox button {
  border: 1px solid rgba(247, 241, 227, 0.34);
  color: var(--ivory);
  background: rgba(247, 241, 227, 0.08);
  cursor: pointer;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 34px;
  line-height: 1;
}

.lightbox-nav {
  width: 54px;
  height: 78px;
  justify-self: center;
  border-radius: 3px;
  font-size: 52px;
  line-height: 1;
}

.lightbox button:hover,
.lightbox button:focus-visible {
  background: rgba(247, 241, 227, 0.18);
  outline: 3px solid rgba(200, 157, 80, 0.48);
}

.thanks-page {
  min-height: 100vh;
  color: var(--ivory);
  background:
    linear-gradient(90deg, rgba(15, 41, 31, 0.94), rgba(15, 41, 31, 0.58)),
    url("../images/cars/peugeot-203-decouvrable-1952-exterieur.webp") center / cover;
}

.thanks-main {
  min-height: 100vh;
  display: grid;
  align-content: center;
  gap: 48px;
  padding: 42px clamp(20px, 5vw, 72px);
}

.thanks-brand {
  position: absolute;
  top: 24px;
  left: clamp(20px, 5vw, 72px);
}

.thanks-card {
  max-width: 760px;
}

.thanks-card > p:first-child {
  color: var(--brass);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.thanks-card h1 {
  font-size: clamp(52px, 7vw, 96px);
}

.thanks-card p:not(:first-child) {
  max-width: 620px;
  color: rgba(247, 241, 227, 0.84);
  font-size: 18px;
}

.legal-page {
  color: var(--forest);
  background: var(--paper);
}

.legal-nav {
  margin-left: auto;
}

.legal-main {
  padding-top: 118px;
}

.legal-hero {
  display: grid;
  gap: 18px;
  padding: clamp(56px, 8vw, 104px) clamp(20px, 6vw, 96px);
  color: var(--ivory);
  background:
    linear-gradient(90deg, rgba(15, 41, 31, 0.96), rgba(143, 38, 54, 0.84)),
    url("../images/cars/peugeot-203-circuit-lemans.webp") center / cover;
}

.legal-hero > p:first-child {
  color: var(--brass);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.legal-hero h1 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(46px, 7vw, 88px);
}

.legal-hero p:last-child {
  max-width: 760px;
  color: rgba(247, 241, 227, 0.86);
  font-size: clamp(17px, 2vw, 20px);
}

.legal-content {
  display: grid;
  gap: 18px;
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(42px, 6vw, 86px) clamp(20px, 5vw, 48px);
}

.legal-content article {
  display: grid;
  gap: 12px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--line);
  background: #fff;
}

.legal-content h2 {
  color: var(--forest);
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
}

.legal-content ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
}

.legal-content strong {
  color: var(--forest);
}

@media (max-width: 920px) {
  .site-nav {
    position: absolute;
    top: 100%;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    color: var(--ivory);
    background: var(--car-red-dark);
    box-shadow: 0 18px 44px rgba(42, 8, 13, 0.4);
  }

  .site-nav.is-open {
    display: flex;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown-link {
    width: fit-content;
  }

  .nav-submenu {
    position: static;
    min-width: 0;
    margin-top: 10px;
    padding: 0 0 0 14px;
    border: 0;
    border-left: 1px solid rgba(247, 241, 227, 0.28);
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-submenu a {
    padding: 8px 0;
    white-space: normal;
  }

  .nav-toggle {
    display: grid;
    gap: 6px;
    width: 44px;
    height: 44px;
    place-content: center;
    border: 1px solid rgba(247, 241, 227, 0.62);
    border-radius: 3px;
    background: rgba(247, 241, 227, 0.08);
  }

  .nav-toggle span:not(.sr-only) {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--ivory);
  }

  .intro,
  .details,
  .experience-header,
  .experience-grid,
  .gift-section,
  .event-section,
  .contact,
  .car-feature,
  .video-story,
  .circuit-card,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .intro-facts,
  .packages,
  .package-extras,
  .reviews-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .car-gallery {
    grid-template-columns: 1fr;
  }

  .booking-summary {
    position: static;
  }

  .experience-gallery {
    grid-template-columns: 1fr;
  }

  .experience-gallery img:first-child {
    grid-row: auto;
    aspect-ratio: 16 / 10;
  }

  .activity-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .activity-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .package {
    min-height: 240px;
  }

  .hero {
    grid-template-columns: 1fr;
    align-content: center;
    align-items: center;
    gap: 18px;
    padding: 118px 16px 56px;
  }

  .hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    max-height: none;
    height: 100%;
    margin: 0;
    object-fit: cover;
    object-position: left center;
  }

  .hero-title-top {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    width: min(680px, 100%);
    margin: 0;
    white-space: normal;
  }

  .hero-content {
    grid-column: 1;
    width: min(680px, 100%);
    min-height: auto;
    padding: 24px;
    margin-left: 0;
    background: rgba(15, 41, 31, 0.62);
  }

  .package-extra {
    grid-template-columns: 1fr;
  }

  .package-extra img {
    min-height: 220px;
    aspect-ratio: 16 / 10;
  }

  .lightbox {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 70px 14px 20px;
  }

  .lightbox-nav {
    position: absolute;
    top: 50%;
    width: 44px;
    height: 60px;
    transform: translateY(-50%);
    font-size: 40px;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }

  .lightbox-figure img {
    max-height: calc(100vh - 150px);
  }

  .faq-list {
    max-width: none;
    margin-left: 0;
  }

  body {
    padding-bottom: 72px;
  }

  .mobile-quick-actions {
    position: fixed;
    z-index: 30;
    left: 14px;
    right: 14px;
    bottom: 14px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    border: 1px solid rgba(247, 241, 227, 0.24);
    background: var(--car-red-dark);
    box-shadow: 0 18px 44px rgba(42, 8, 13, 0.38);
  }

  .mobile-quick-actions a {
    display: grid;
    min-height: 54px;
    place-items: center;
    color: #fff;
    font-weight: 900;
  }

  .mobile-quick-actions a + a {
    border-left: 1px solid rgba(247, 241, 227, 0.22);
    background: var(--car-red);
  }
}

@media (max-width: 620px) {
  .site-header {
    padding-inline: 16px;
  }

  .brand span:last-child {
    max-width: 150px;
    line-height: 1.15;
  }

  .brand-logo {
    width: 54px;
    height: 54px;
  }

  .site-header.is-scrolled .brand-logo,
  .site-header.is-open .brand-logo {
    width: 50px;
    height: 50px;
  }

  .hero {
    min-height: 88vh;
    padding: 118px 16px 56px;
  }

  .hero-actions {
    grid-template-columns: 1fr;
  }

  .button,
  .package button {
    width: 100%;
  }

  .intro,
  .section {
    padding-inline: 16px;
  }

  .intro-facts {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
  }

  .car-gallery img {
    min-height: 220px;
  }

  .circuit-info,
  .circuit-thumbs {
    grid-template-columns: 1fr;
  }
}

/* Version éditoriale simplifiée */
.wide-quote {
  display: grid;
  gap: 10px;
  grid-column: 1 / -1;
  width: 100%;
  max-width: 1180px;
  margin: clamp(8px, 2vw, 20px) 0 0;
  padding-top: 24px;
  border-top: 1px solid rgba(247, 241, 227, 0.2);
  color: var(--ivory);
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 48px);
  line-height: 1.05;
}

.video-copy > p {
  max-width: 430px;
  color: rgba(247, 241, 227, 0.78);
  font-size: 17px;
}

.minimal-packages,
.audience-section,
.compact-routes,
.minimal-car,
.car-profile,
.practical,
.contact {
  scroll-margin-top: 112px;
}

.audience-section {
  background: #fff;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.audience-grid article {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--line);
  background: var(--paper);
}

.audience-grid h3 {
  color: var(--forest);
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 0.98;
}

.audience-grid p {
  color: var(--muted);
}

.wide-quote cite {
  color: var(--brass);
  font: 700 13px var(--sans);
  font-style: normal;
  text-transform: uppercase;
}

.packages-minimal {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.options-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  align-items: center;
  margin-top: 22px;
  padding: 20px 22px;
  border: 1px solid var(--line);
  color: var(--muted);
  background: #fff;
}

.options-strip strong {
  color: var(--forest);
}

.options-strip span {
  position: relative;
  padding-left: 18px;
  font-weight: 700;
}

.options-strip span::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--car-red);
}

.compact-routes {
  background: #fff;
}

.route-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.route-card {
  display: grid;
  grid-template-rows: auto 1fr;
  border: 1px solid var(--line);
  background: var(--ivory);
}

.route-card > img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.route-card-content {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: clamp(24px, 4vw, 40px);
}

.route-card-content > p:first-child,
.practical-main > p:first-child {
  color: var(--burgundy);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.route-card-content h3 {
  color: var(--forest);
  font-family: var(--serif);
  font-size: clamp(38px, 4vw, 58px);
  line-height: 0.92;
}

.route-card-content ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.route-card-content dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 0;
  background: var(--line);
}

.route-card-content dl div {
  padding: 14px;
  background: #fff;
}

.route-card-content dt {
  color: var(--burgundy);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.route-card-content dd {
  margin: 6px 0 0;
  color: var(--forest);
  font-size: 14px;
  font-weight: 800;
}

.route-card-content .button {
  justify-self: start;
}

.minimal-car {
  background: var(--paper);
}

.car-profile {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.48fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
  background: var(--paper);
}

.car-profile-copy > p:first-child {
  color: var(--burgundy);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.car-profile h2 {
  margin: 12px 0 24px;
  color: var(--forest);
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 68px);
  line-height: 0.96;
}

.car-profile-photo {
  width: 100%;
  max-height: 430px;
  margin: 0 0 24px;
  object-fit: cover;
  object-position: center 58%;
  border: 1px solid rgba(143, 38, 54, 0.16);
  box-shadow: 0 18px 54px rgba(32, 35, 31, 0.12);
}

.car-profile-copy p:not(:first-child),
.car-profile-panel li {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.car-profile-copy p + p {
  margin-top: 16px;
}

.car-profile-panel {
  padding: 24px;
  border: 1px solid rgba(143, 38, 54, 0.16);
  background: rgba(255, 255, 255, 0.58);
}

.car-profile-panel h3 {
  margin: 0 0 16px;
  color: var(--forest);
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1;
}

.car-profile-panel ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}

.practical {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: start;
  background: #fff;
}

.practical-heading {
  display: grid;
  grid-template-columns: minmax(260px, 0.68fr) minmax(280px, 0.72fr);
  gap: clamp(24px, 5vw, 76px);
  align-items: end;
  margin-bottom: 34px;
}

.practical-heading .section-kicker {
  grid-column: 1 / -1;
  margin: 0 0 -12px;
}

.practical-heading h2 {
  margin: 0;
  color: var(--forest);
  font-family: var(--serif);
  font-size: clamp(42px, 5.6vw, 84px);
  line-height: 0.95;
}

.practical-heading p:not(.section-kicker) {
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.55;
}

.practical-info-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.practical-info-grid article {
  padding: 24px 24px 26px;
  border-left: 3px solid rgba(143, 38, 54, 0.72);
  background: linear-gradient(180deg, rgba(248, 242, 230, 0.7), rgba(248, 242, 230, 0.38));
}

.practical-info-grid h3 {
  margin: 0 0 12px;
  color: var(--forest);
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1;
}

.practical-info-grid ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.practical-note-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 26px;
  background: rgba(143, 38, 54, 0.16);
}

.practical-note-grid article {
  padding: 22px 24px;
  background: #fff;
}

.practical-note-grid h3 {
  margin: 0 0 10px;
  color: var(--red);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.practical-note-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.practical-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.practical-list strong {
  color: var(--forest);
}

.practical-note-panel {
  margin-top: 26px;
  padding: 22px 24px;
  border: 1px solid rgba(143, 38, 54, 0.18);
  background: rgba(248, 242, 230, 0.62);
}

.practical-note-panel h3 {
  margin: 0 0 14px;
  color: var(--forest);
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1;
}

.practical-note-panel ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.practical-note-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.practical .practical-faq {
  margin: 0;
  padding: 0;
  border: 0;
  max-width: 980px;
}

.form-reassurance {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

@media (max-width: 1080px) {
  .site-nav {
    gap: 14px;
  }

  .site-nav .nav-phone {
    padding: 9px 11px;
  }
}

@media (max-width: 920px) {
  .audience-grid,
  .packages-minimal,
  .route-list,
  .car-profile,
  .practical-heading,
  .practical {
    grid-template-columns: 1fr;
  }

  .practical-info-grid,
  .practical-note-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .route-card-content dl {
    grid-template-columns: repeat(3, 1fr);
  }

  .site-nav .nav-phone {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 620px) {
  .practical-info-grid,
  .practical-note-grid {
    grid-template-columns: 1fr;
  }

  .practical-info-grid article,
  .practical-note-grid article {
    padding: 20px;
  }

  .route-card-content dl {
    grid-template-columns: 1fr;
  }

  .price-grid {
    grid-template-columns: 1fr;
  }

  .options-strip {
    align-items: flex-start;
    flex-direction: column;
  }

  .route-card-content .button {
    width: 100%;
  }
}

.language-switcher {
  display: inline-flex;
  gap: 2px;
  align-items: center;
  padding: 3px;
  border: 1px solid rgba(247, 241, 227, 0.32);
}

.language-switcher a,
.language-switcher span {
  padding: 6px 8px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  opacity: 1;
}

.language-switcher span[aria-current="page"] {
  background: rgba(247, 241, 227, 0.2);
}

.pricing-note {
  display: grid;
  gap: 6px;
  margin-top: 22px;
  padding: 20px 22px;
  border-left: 4px solid var(--car-red);
  color: var(--muted);
  background: #fff;
}

.pricing-note strong {
  color: var(--forest);
  font-size: 17px;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 10px 0 2px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--line);
}

.price-grid div {
  display: grid;
  gap: 5px;
  min-height: 72px;
  padding: 12px;
  background: #fff;
}

.price-grid span {
  color: var(--burgundy);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.price-grid strong {
  color: var(--forest);
  font-size: 16px;
}

.gallery-section {
  background: var(--paper);
}

.gallery-heading > div {
  display: grid;
  justify-items: start;
  gap: 12px;
}

.share-button {
  padding: 10px 14px;
  border: 1px solid rgba(24, 60, 46, 0.26);
  color: var(--forest);
  background: transparent;
  font: 800 14px var(--sans);
  cursor: pointer;
}

.share-status {
  min-height: 20px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  border: 1px solid var(--line);
}

.gallery-grid img:nth-child(1),
.gallery-grid img:nth-child(4) {
  grid-column: span 7;
}

.gallery-grid img:nth-child(2),
.gallery-grid img:nth-child(3) {
  grid-column: span 5;
}

.gallery-grid img:nth-child(5),
.gallery-grid img:nth-child(6) {
  grid-column: span 6;
}

.contribution-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(340px, 0.85fr);
  gap: clamp(28px, 6vw, 80px);
  margin-top: 26px;
  padding: clamp(26px, 5vw, 52px);
  color: var(--ivory);
  background: var(--forest);
}

.contribution-panel > div > p:first-child {
  color: var(--brass);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.contribution-panel h3 {
  margin: 12px 0 18px;
  font-family: var(--serif);
  font-size: clamp(38px, 5vw, 62px);
  line-height: 0.94;
}

.contribution-panel > div > p:last-child {
  color: rgba(247, 241, 227, 0.76);
}

.contribution-form {
  display: grid;
  gap: 16px;
}

.contribution-form label {
  color: var(--ivory);
}

.contribution-form .consent-label {
  color: rgba(247, 241, 227, 0.76);
}

.upload-note {
  margin: 0;
  color: rgba(247, 241, 227, 0.68);
  font-size: 13px;
}

.route-map {
  display: grid;
  gap: 10px;
}

.route-map iframe {
  width: 100%;
  height: 300px;
  border: 0;
}

.route-map a {
  width: fit-content;
  color: var(--car-red);
  border-bottom: 1px solid currentColor;
  font-weight: 800;
}

.solidarity-banner {
  padding: 30px clamp(20px, 5vw, 72px);
  color: #fff;
  background: var(--car-red);
  text-align: center;
}

.solidarity-banner p {
  max-width: 980px;
  margin: 0 auto;
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.2;
}

.payment-note {
  margin: 0;
  color: var(--forest);
  font-weight: 800;
}

@media (max-width: 1080px) {
  .site-nav {
    font-size: 13px;
  }
}

@media (max-width: 920px) {
  .contribution-panel {
    grid-template-columns: 1fr;
  }

  .language-switcher {
    width: fit-content;
  }
}

@media (max-width: 620px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid img:nth-child(n) {
    grid-column: auto;
    min-height: 220px;
    aspect-ratio: 4 / 3;
  }

  .contribution-panel {
    padding-inline: 20px;
  }
}

/* Clean homepage hero reset */
.hero {
  min-height: 92vh;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(380px, 0.62fr);
  gap: 0;
  align-items: center;
  padding: 112px clamp(20px, 5vw, 72px) 34px;
  color: var(--ivory);
  background: var(--forest-dark);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("../images/cars/peugeot-203-vieux-mans-accueil.jpg") center / cover;
  opacity: 0.16;
  filter: blur(18px) saturate(0.82);
  transform: scale(1.08);
}

.hero-image {
  position: relative;
  inset: auto;
  grid-column: 1;
  z-index: 1;
  display: block;
  align-self: center;
  width: min(106%, 1120px);
  height: auto;
  max-height: calc(92vh - 150px);
  margin: 0;
  object-fit: contain;
  object-position: center;
  border: 0;
  box-shadow: 0 28px 86px rgba(0, 0, 0, 0.24);
}

.hero-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(15, 41, 31, 0) 0%, rgba(15, 41, 31, 0.02) 48%, rgba(15, 41, 31, 0.54) 74%, rgba(15, 41, 31, 0.92) 100%),
    linear-gradient(0deg, rgba(15, 41, 31, 0.22), rgba(15, 41, 31, 0));
  pointer-events: none;
}

.hero-title-top {
  display: none;
}

.hero-content {
  position: relative;
  grid-column: 2;
  z-index: 2;
  display: grid;
  justify-items: start;
  align-self: center;
  width: min(460px, 100%);
  min-height: auto;
  margin: 0 0 0 clamp(-120px, -6vw, -64px);
  padding: clamp(22px, 3vw, 38px) clamp(18px, 2.2vw, 32px);
  border: 0;
  background: radial-gradient(circle at 0% 52%, rgba(15, 41, 31, 0.86), rgba(15, 41, 31, 0.72) 38%, rgba(15, 41, 31, 0.22) 68%, rgba(15, 41, 31, 0) 100%);
  box-shadow: none;
  backdrop-filter: none;
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.5);
}

.hero-content::before {
  content: none;
}

.hero-content > p {
  max-width: 440px;
  margin-bottom: 18px;
  color: rgba(247, 241, 227, 0.9);
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.65;
}

.hero-content > .hero-statement {
  max-width: 450px;
  margin-top: -2px;
  margin-bottom: 18px;
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(23px, 2.2vw, 32px);
  font-weight: 700;
  line-height: 1.05;
}

/* Final polish pass */
.brand span {
  line-height: 1.12;
}

.package,
.route-card,
.pricing-note,
.contribution-panel,
.contact-form {
  border-color: rgba(143, 38, 54, 0.18);
}

.package-slider {
  background: rgba(15, 41, 31, 0.08);
}

.package-slider img,
.gallery-grid img,
.route-card > img {
  background: rgba(15, 41, 31, 0.08);
}

.gallery-grid img,
.package-slider img,
.route-card > img {
  cursor: zoom-in;
}

.pricing-note {
  border-left: 5px solid var(--burgundy);
  background: rgba(255, 255, 255, 0.68);
}

.price-grid {
  border-color: rgba(143, 38, 54, 0.18);
}

.price-grid div {
  background: rgba(255, 255, 255, 0.86);
}

@media (max-width: 620px) {
  .brand span:last-child {
    max-width: 210px;
    font-size: 13px;
  }

  .hero-content > .hero-statement {
    font-size: clamp(24px, 9vw, 34px);
  }
}

@media (max-width: 920px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 118px 16px 56px;
  }

  .hero-image {
    grid-column: 1;
    max-height: none;
  }

  .hero-content {
    grid-column: 1;
    width: min(680px, 100%);
    margin: 0;
    background: linear-gradient(135deg, rgba(15, 41, 31, 0.84), rgba(15, 41, 31, 0.62));
  }
}
