:root {
  --ink: #151515;
  --soft-ink: #45423d;
  --muted: #756f67;
  --paper: #f7f2ea;
  --paper-deep: #ede4d7;
  --white: #fffdf8;
  --sage: #687767;
  --sage-dark: #34423a;
  --clay: #a4573e;
  --gold: #c99b4c;
  --line: rgba(21, 21, 21, 0.14);
  --shadow: 0 22px 70px rgba(30, 25, 18, 0.15);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(20px, 4vw, 56px);
  background: rgba(247, 242, 234, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand,
.nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand {
  min-width: 126px;
  font-weight: 750;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: auto;
  height: 54px;
  object-fit: contain;
}

.brand-name {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 750;
  white-space: nowrap;
}

.nav a {
  color: var(--soft-ink);
  font-size: 0.95rem;
  text-decoration: none;
}

.nav a:hover {
  color: var(--ink);
}

.section {
  position: relative;
  padding: clamp(72px, 9vw, 126px) 0;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.narrow {
  width: min(820px, calc(100% - 40px));
}

.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: clamp(64px, 8vw, 112px);
  background:
    linear-gradient(90deg, rgba(247, 242, 234, 0.96) 0%, rgba(247, 242, 234, 0.82) 52%, rgba(247, 242, 234, 0.2) 100%),
    radial-gradient(circle at 70% 45%, rgba(201, 155, 76, 0.34), transparent 34%),
    linear-gradient(135deg, #f7f2ea 0%, #e4d4c1 48%, #586b64 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: clamp(32px, 6vw, 76px);
  align-items: end;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow,
.section-kicker,
.panel-kicker {
  margin: 0 0 14px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1,
h2 {
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 860px;
  margin-bottom: 26px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 8vw, 7.45rem);
  font-weight: 500;
}

h2 {
  margin-bottom: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  font-weight: 500;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
  line-height: 1.25;
}

.lead {
  max-width: 670px;
  margin-bottom: 32px;
  color: var(--soft-ink);
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  line-height: 1.45;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 17px 28px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 750;
  font-size: 1.02rem;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

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

.primary {
  color: var(--white);
  background: var(--sage-dark);
}

.primary:hover {
  background: #26322b;
}

.secondary {
  color: var(--ink);
  background: rgba(255, 253, 248, 0.45);
  border-color: var(--line);
}

.full {
  width: 100%;
}

.large {
  min-height: 72px;
  padding-inline: 40px;
  font-size: 1.18rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 34px;
}

.event-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 680px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.58);
}

.event-strip div {
  padding: 18px;
}

.event-strip div + div {
  border-left: 1px solid var(--line);
}

dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

dd {
  margin: 4px 0 0;
  font-weight: 750;
}

.hero-panel,
.portrait-card {
  padding: 28px;
  border: 1px solid rgba(255, 253, 248, 0.42);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.76);
  box-shadow: var(--shadow);
}

.hero-panel {
  position: relative;
  z-index: 2;
}

.price {
  margin-bottom: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.4rem;
  line-height: 1;
}

.value-price {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 0.95rem;
  text-decoration: line-through;
}

.hero-visual {
  position: absolute;
  inset: 0 0 0 50%;
  pointer-events: none;
}

.sun {
  position: absolute;
  top: 22%;
  right: 12%;
  width: clamp(180px, 26vw, 380px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 221, 146, 0.92), rgba(201, 155, 76, 0.4) 52%, transparent 68%);
}

.rings {
  position: absolute;
  right: 8%;
  bottom: 6%;
  width: clamp(320px, 46vw, 700px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 253, 248, 0.42);
  border-radius: 50%;
}

.rings::before,
.rings::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 253, 248, 0.32);
  border-radius: 50%;
}

.rings::before {
  inset: 12%;
}

.rings::after {
  inset: 25%;
}

.path {
  position: absolute;
  right: 25%;
  bottom: -8%;
  width: 180px;
  height: 62%;
  transform: rotate(18deg);
  border-radius: 100% 100% 0 0;
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.24), rgba(255, 253, 248, 0));
}

.intro {
  background: var(--white);
}

.intro p:not(.section-kicker),
.narrow p,
.split p,
.details p,
.pierre-grid p {
  color: var(--soft-ink);
  font-size: 1.08rem;
}

.contrast {
  background: var(--sage-dark);
  color: var(--white);
}

.contrast .section-kicker {
  color: #efc46e;
}

.contrast p {
  color: rgba(255, 253, 248, 0.78);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: clamp(32px, 7vw, 92px);
  align-items: start;
}

.check-list {
  display: grid;
  gap: 16px;
}

.check-list p {
  position: relative;
  margin: 0;
  padding: 0 0 16px 34px;
  border-bottom: 1px solid rgba(255, 253, 248, 0.18);
}

.check-list p::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 44px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.timeline article {
  min-height: 310px;
  padding: 28px;
}

.timeline article + article {
  border-left: 1px solid var(--line);
}

.timeline span {
  display: inline-block;
  margin-bottom: 72px;
  color: var(--clay);
  font-weight: 850;
}

.timeline p,
.benefit-grid p,
.detail-list span,
.faq p,
.microcopy,
.portrait-card p {
  color: var(--muted);
}

.quote-band {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(30, 38, 33, 0.98), rgba(98, 54, 43, 0.98)),
    linear-gradient(90deg, #1e2621, #62362b);
}

.quote-band p {
  color: #fffdf8;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4.4vw, 4.4rem);
  line-height: 1.08;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.28);
}

.pierre-grid {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: clamp(32px, 7vw, 86px);
  align-items: center;
}

.pierre-grid h2 {
  line-height: 1.08;
}

.portrait-placeholder {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 12px;
  min-height: 420px;
  padding: 24px;
  border-radius: 6px;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(21, 21, 21, 0.04), rgba(21, 21, 21, 0.72)),
    radial-gradient(circle at 50% 22%, rgba(245, 200, 111, 0.42), transparent 22%),
    linear-gradient(145deg, #657568, #243029);
}

.portrait-placeholder span {
  width: fit-content;
  padding: 9px 12px;
  border: 1px solid rgba(255, 253, 248, 0.28);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.1);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.portrait-card p {
  margin: 16px 0 0;
  font-size: 0.92rem;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 253, 248, 0.16);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.16);
}

.benefit-grid article {
  min-height: 220px;
  padding: 28px;
  background: rgba(255, 253, 248, 0.06);
}

.benefit-grid p {
  color: rgba(255, 253, 248, 0.74);
}

.details {
  background: var(--paper-deep);
}

.details-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: clamp(32px, 7vw, 86px);
  align-items: start;
}

.detail-list {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.detail-list div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 22px;
}

.detail-list div + div {
  border-top: 1px solid var(--line);
}

.detail-list strong {
  text-align: right;
}

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

details {
  border-bottom: 1px solid var(--line);
}

summary {
  cursor: pointer;
  padding: 24px 0;
  font-size: 1.08rem;
  font-weight: 800;
}

details p {
  padding-bottom: 24px;
}

.final-cta {
  text-align: center;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(21, 21, 21, 0.32), rgba(21, 21, 21, 0.68)),
    radial-gradient(circle at 50% 0%, rgba(201, 155, 76, 0.36), transparent 38%),
    var(--sage-dark);
}

.final-cta .section-kicker,
.final-cta p {
  color: rgba(255, 253, 248, 0.82);
}

.final-cta h2 {
  color: var(--white);
}

.microcopy {
  margin: 18px 0 0;
  font-size: 0.92rem;
}

.launch-price {
  margin: 18px 0 0;
  color: rgba(255, 253, 248, 0.9);
  font-weight: 800;
}

.footer {
  padding: 28px 0;
  color: rgba(255, 253, 248, 0.78);
  background: #151515;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.footer p {
  margin: 0;
}

.footer a {
  text-decoration: none;
}

/* Version plus aspirationnelle: image pleine présence et rythme plus émotionnel. */
.hero {
  min-height: calc(100vh - 74px);
  color: var(--white);
  background: #161512;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(12, 13, 11, 0.92) 0%, rgba(21, 19, 16, 0.74) 38%, rgba(21, 19, 16, 0.18) 66%, rgba(21, 19, 16, 0.48) 100%),
    linear-gradient(0deg, rgba(21, 21, 21, 0.72), rgba(21, 21, 21, 0.05) 36%, rgba(21, 21, 21, 0.24));
}

.hero-visual {
  inset: 0;
  background-image: url("assets/hero-gps-interieur.jpg");
  background-size: cover;
  background-position: center;
  opacity: 1;
}

.hero-grid {
  position: relative;
  z-index: 2;
  align-items: center;
}

.hero-copy {
  max-width: 820px;
}

.hero .eyebrow {
  color: #f5c86f;
}

.hero h1 {
  max-width: 940px;
  text-shadow: 0 22px 70px rgba(0, 0, 0, 0.34);
}

.hero .lead {
  max-width: 720px;
  color: rgba(255, 253, 248, 0.9);
}

.hero .secondary {
  color: var(--white);
  background: rgba(255, 253, 248, 0.12);
  border-color: rgba(255, 253, 248, 0.34);
}

.hero .event-strip {
  border-color: rgba(255, 253, 248, 0.28);
  background: rgba(21, 21, 21, 0.36);
  backdrop-filter: blur(14px);
}

.hero .event-strip div + div {
  border-left-color: rgba(255, 253, 248, 0.22);
}

.hero dt,
.hero-note {
  color: rgba(255, 253, 248, 0.72);
}

.hero-note {
  max-width: 620px;
  margin: 22px 0 0;
  font-size: 1rem;
}

.hero-panel {
  color: var(--ink);
  background: rgba(255, 253, 248, 0.88);
  border-color: rgba(255, 253, 248, 0.54);
  backdrop-filter: blur(16px);
}

.hero-panel img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 0.92;
  object-fit: cover;
  object-position: center top;
  margin: -10px 0 22px;
  border-radius: 7px;
}

.dream-map {
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 0%, rgba(245, 200, 111, 0.28), transparent 28%),
    linear-gradient(135deg, #18221d 0%, #34423a 46%, #6e3f34 100%);
}

.dream-map::after {
  content: "";
  position: absolute;
  right: -140px;
  bottom: -260px;
  width: min(760px, 86vw);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 253, 248, 0.18);
  border-radius: 50%;
}

.dream-heading {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin-bottom: 42px;
}

.dream-map .section-kicker,
.vision-band .section-kicker,
.clarity-section .section-kicker {
  color: #f5c86f;
}

.dream-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 253, 248, 0.18);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.18);
}

.dream-grid article {
  min-height: 360px;
  padding: clamp(26px, 4vw, 40px);
  background: rgba(255, 253, 248, 0.08);
  backdrop-filter: blur(10px);
}

.dream-grid .center-card {
  background: rgba(255, 253, 248, 0.16);
}

.dream-grid span {
  display: inline-block;
  margin-bottom: 70px;
  color: #f5c86f;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dream-grid h3 {
  max-width: 320px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  font-weight: 500;
  line-height: 1.05;
}

.dream-grid p {
  color: rgba(255, 253, 248, 0.78);
}

.intro {
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.94), rgba(247, 242, 234, 1)),
    var(--white);
}

.big-dream {
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(247, 242, 234, 0.94), rgba(237, 228, 215, 0.98));
}

.big-dream-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 76px);
  align-items: center;
}

.big-dream-copy {
  position: relative;
  z-index: 1;
}

.big-dream-copy h2 {
  font-size: clamp(2.45rem, 5.6vw, 5.6rem);
}

.big-dream-copy p:not(.section-kicker) {
  color: var(--soft-ink);
  font-size: 1.1rem;
}

.drive-card,
.human-gallery figure {
  margin: 0;
}

.drive-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 30px 90px rgba(30, 25, 18, 0.2);
}

.drive-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(21, 21, 21, 0.64));
  pointer-events: none;
}

.drive-card img,
.human-gallery img,
.pierre-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.drive-card img {
  aspect-ratio: 1.12 / 1;
}

.drive-card figcaption {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2vw, 1.85rem);
  line-height: 1.1;
}

.human-gallery {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr);
  justify-content: center;
  gap: 18px;
  margin-top: 34px;
}

.human-gallery figure {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  max-height: 620px;
  border-radius: 8px;
  background: #ddd;
}

.human-gallery figure::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 46%, rgba(21, 21, 21, 0.68));
  pointer-events: none;
}

.human-gallery figcaption {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  color: var(--white);
  font-weight: 750;
}

.pierre-photo {
  aspect-ratio: 0.86 / 1;
  border-radius: 6px;
  object-position: center 42%;
}

.credibility-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0;
}

.credibility-strip span {
  padding: 10px 13px;
  border: 1px solid rgba(52, 66, 58, 0.18);
  border-radius: 999px;
  color: var(--sage-dark);
  background: rgba(255, 253, 248, 0.72);
  font-size: 0.88rem;
  font-weight: 800;
}

.vision-band {
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 24%, rgba(245, 200, 111, 0.18), transparent 32%),
    linear-gradient(135deg, #17211c 0%, #28382f 48%, #6f3f32 100%);
  background-size: cover;
  background-position: center;
}

.clarity-section {
  padding: clamp(54px, 7vw, 84px) 0;
  background: var(--paper-deep);
}

.clarity-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.82fr);
  gap: clamp(26px, 5vw, 64px);
  align-items: start;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 20px 70px rgba(30, 25, 18, 0.1);
}

.clarity-section .section-kicker {
  color: var(--clay);
}

.clarity-section h2 {
  max-width: 820px;
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(2rem, 3.8vw, 4rem);
  line-height: 1.02;
}

.clarity-list {
  display: grid;
  gap: 12px;
}

.clarity-list p {
  margin: 0;
  padding: 18px 20px;
  color: var(--soft-ink);
  border: 1px solid rgba(52, 66, 58, 0.16);
  border-radius: 8px;
  background: #f7f2ea;
  font-weight: 650;
}

.vision-band h2 {
  max-width: 760px;
  color: #fffdf8;
  font-size: clamp(2.15rem, 4.2vw, 4.35rem);
  line-height: 1.02;
}

.vision-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 0.85fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: center;
}

.vision-list {
  display: grid;
  gap: 16px;
}

.vision-list p {
  margin: 0;
  padding: 22px;
  color: #fffdf8;
  border: 1px solid rgba(255, 253, 248, 0.24);
  border-radius: 8px;
  background: rgba(12, 16, 14, 0.42);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
}

.final-cta {
  background:
    linear-gradient(180deg, rgba(18, 24, 20, 0.54), rgba(18, 24, 20, 0.9)),
    url("assets/hero-gps-interieur.jpg");
  background-size: cover;
  background-position: center;
}

@media (max-width: 900px) {
  .site-header {
    position: static;
  }

  .nav {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid,
  .split,
  .pierre-grid,
  .details-grid,
  .big-dream-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    max-width: 520px;
  }

  .hero-visual {
    inset: 0;
    opacity: 1;
    background-position: 58% center;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(12, 13, 11, 0.86) 0%, rgba(21, 19, 16, 0.68) 48%, rgba(21, 19, 16, 0.88) 100%);
  }

  .timeline,
  .benefit-grid,
  .dream-grid,
  .vision-grid,
  .clarity-panel,
  .human-gallery {
    grid-template-columns: 1fr;
  }

  .timeline article {
    min-height: auto;
  }

  .timeline article + article {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .timeline span {
    margin-bottom: 36px;
  }

  .dream-grid article {
    min-height: auto;
  }

  .dream-grid span {
    margin-bottom: 36px;
  }

  .human-gallery figure {
    min-height: 360px;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 52px 0;
  }

  .container,
  .narrow {
    width: min(100% - 28px, 1120px);
  }

  h1 {
    font-size: clamp(2.72rem, 14vw, 4.25rem);
    line-height: 1;
  }

  h2 {
    font-size: clamp(1.85rem, 9.6vw, 3rem);
    line-height: 1.04;
  }

  .lead {
    font-size: 1.08rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .event-strip {
    grid-template-columns: 1fr;
  }

  .event-strip div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .hero-panel,
  .portrait-card,
  .timeline article,
  .benefit-grid article,
  .clarity-panel {
    padding: 22px;
  }

  .hero-panel img {
    aspect-ratio: 1 / 0.78;
  }

  .big-dream-copy h2,
  .clarity-section h2 {
    font-size: clamp(1.9rem, 9.5vw, 3rem);
  }

  .drive-card img {
    aspect-ratio: 1 / 1.08;
  }

  .human-gallery figure {
    min-height: 310px;
  }

  .pierre-photo {
    aspect-ratio: 1 / 1.12;
  }

  .price {
    font-size: 3.6rem;
  }

  .detail-list div {
    display: block;
  }

  .detail-list strong {
    display: block;
    margin-top: 4px;
    text-align: left;
  }
}
