/* ============================================================
   Nineties.cc — main stylesheet
   Breakpoints (matched to Figma frames):
     mobile  : default (< 820px) — 390px design
     sm-desk : ≥ 820px  — Home-1100 design
     desk    : ≥ 1300px — Home-1512 design
     xl-desk : ≥ 1700px — Home-1920 design
   ============================================================ */

@font-face {
  font-family: "Asgard";
  src: url("./fonts/Asgard-WideRegular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("./fonts/Gilroy-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("./fonts/Gilroy-Regular.woff2") format("woff2"),
       url("./fonts/Gilroy-Regular.woff")  format("woff"),
       url("./fonts/Gilroy-Regular.ttf")   format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("./fonts/Gilroy-Regular.woff2") format("woff2"),
       url("./fonts/Gilroy-Regular.ttf")   format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("./fonts/Gilroy-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("./fonts/Gilroy-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --black: #000000;
  --bg: #000000;
  --orange: #fe3c00;
  --cream: #dad6ca;
  --line: #222222;
  --line-pale: #d9d9d9;
  --sommaire-gray: #878787;
  --footer-gray: #4f5153;

  --font-display: "Asgard", "Big Shoulders Display", "Anton", Impact, sans-serif;
  --font-script: "Caveat Brush", "Permanent Marker", cursive;
  --font-sans: "Gilroy", "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;

  /* Container widths per breakpoint */
  --container: 100%;
  --page-pad: 20px;
}

@media (min-width: 820px) {
  :root { --container: 1100px; --page-pad: 60px; }
}
@media (min-width: 1300px) {
  :root { --container: 1512px; --page-pad: 100px; }
}
@media (min-width: 1700px) {
  :root { --container: 1920px; --page-pad: 204px; }
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
html { overflow-x: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* ---------- shared ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--page-pad);
  padding-right: var(--page-pad);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 30px;
  border-radius: 30px;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 22px;
  color: var(--cream);
  background: transparent;
  border: 1px solid var(--cream);
  text-decoration: none;
  transition: background .18s ease, color .18s ease, border-color .18s ease;
}
.btn--solid {
  background: var(--orange);
  border-color: var(--orange);
  color: #121111;
  border-radius: 0;
  padding: 8px 20px;
}
.btn--solid:hover { background: #ff5418; }
.btn--cream {
  background: var(--cream);
  border-color: var(--cream);
  color: #121111;
  border-radius: 30px;
  padding: 8px 22px;
  font-family: var(--font-sans);
  font-weight: 400;
}
.btn--cream:hover { background: #fff; border-color: #fff; }
.btn--ghost:hover { background: var(--cream); color: #121111; }
.btn--orange-outline {
  border-color: var(--orange);
  color: var(--orange);
  background: transparent;
}
.btn--orange-outline:hover { background: var(--orange); color: #121111; }
.btn--orange {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--cream);
  border-radius: 30px;
}
.btn--orange:hover { background: #ff5418; }

.tirets {
  display: flex;
  gap: 10px;
  height: 3px;
}
.tirets span {
  display: block;
  width: 20px;
  height: 3px;
  background: var(--orange);
}
.tirets--row {
  width: 100%;
  background: linear-gradient(to right,
    var(--orange) 20px, transparent 20px,
    transparent 30px, var(--orange) 30px,
    var(--orange) 50px, transparent 50px,
    transparent 60px, var(--orange) 60px,
    var(--orange) 80px, transparent 80px,
    transparent 90px, var(--orange) 90px,
    var(--orange) 110px, transparent 110px);
  background-repeat: no-repeat;
}

.section-line {
  height: 1px;
  background: var(--line);
  width: 100%;
}

/* ---------- header ---------- */
.site-header {
  position: relative;
  z-index: 20;
  border-top: 1px solid var(--line-pale);
  border-bottom: 1px solid var(--line-pale);
}
.site-header__inner {
  padding-top: 50px;
  padding-bottom: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 137px;
}
.site-header__left,
.site-header__right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
}
.site-header__right { justify-content: flex-end; }
.site-header__socials {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--cream);
}
.site-header__socials .sep {
  width: 15px;
  height: 1px;
  background: var(--cream);
  flex-shrink: 0;
}
.icon-btn {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  flex-shrink: 0;
}
.icon-btn svg { width: 18px; height: 18px; display: block; }
.site-header__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.site-header__logo img {
  height: 49px;
  width: auto;
  display: block;
}
.site-header__burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 9px;
  background: transparent;
  border: 0;
  padding: 0;
}
.site-header__burger span {
  display: block;
  width: 30px;
  height: 1px;
  background: var(--line-pale);
}

@media (max-width: 819px) {
  .site-header { border-top: 0; border-bottom: 0; }
  .site-header__inner {
    padding-top: 24px;
    padding-bottom: 24px;
    min-height: auto;
  }
  .site-header__socials { display: flex; }
  .site-header__socials .sep,
  .site-header__socials .icon-btn:last-child { display: none; }
  .site-header__left { gap: 12px; }
  .site-header__right .btn { display: none; }
  .site-header__burger { display: flex; }
  .site-header__logo img { height: 32px; }
  .site-header__mail-mobile { display: none; }
}
.site-header__burger span { transition: transform .3s ease; transform-origin: center; }
.site-header__burger.is-open span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.site-header__burger.is-open span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

/* Mobile slide-in menu */
.mobile-menu { display: none; }
@media (max-width: 819px) {
  .mobile-menu {
    display: flex;
    position: fixed;
    inset: 0;
    z-index: 15;
    background: #0b0b0b;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .28s ease;
  }
  .mobile-menu.is-open { opacity: 1; visibility: visible; }
  .mobile-menu a {
    font-family: var(--font-display);
    text-transform: uppercase;
    font-weight: 400;
    font-size: clamp(44px, 14vw, 84px);
    line-height: 1;
    color: var(--cream);
  }
  .mobile-menu a + a { color: var(--orange); }
}
@media (min-width: 820px) {
  .site-header__mail-mobile { display: none; }
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  background: #000;
  overflow: hidden;
  /* Reserve canvas based on 1920x1118 ratio so scaling stays consistent */
  width: 100%;
  aspect-ratio: 1920 / 1118;
  max-height: 100vh;
}
@media (max-width: 819px) {
  .hero { aspect-ratio: auto; height: 740px; max-height: none; }
}

.hero__wordmark {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 1;
}
.hero__wordmark img {
  width: 55.6%;       /* 1066/1920 of the canvas width */
  height: auto;
  display: block;
  user-select: none;
}
@media (max-width: 819px) {
  .hero__wordmark img { width: 118%; max-width: none; }
}

.hero__photos {
  position: absolute;
  inset: 0;
  z-index: 2;
}
.hero__photo {
  position: absolute;
  height: auto;          /* natural aspect ratio */
  display: block;
}

/* Positions match Hero-layout.png (1920x1118). All hero images are ~250x282 in the
   Figma design (Img.jsx: width: 250, height: 282). We express their width as a % of
   the 1920 canvas and let height stay auto so each image keeps its native aspect ratio. */

/* p7 — engine bay, top-left, half-cut off left edge */
.hero__photo--p7 { left: -1.56%;  top: 26.84%; width: 13.02%; }
/* p6 — car + motorcycle parking, upper mid-left */
.hero__photo--p6 { left: 20.57%;  top: 13.42%; width: 13.02%; }
/* p3 — Jeep, center (overlaps the wordmark) */
.hero__photo--p3 { left: 43.49%;  top: 20.39%; width: 13.80%; }
/* p1 — silver car rear, upper-right */
.hero__photo--p1 { left: 75.52%;  top: 12.52%; width: 13.75%; }
/* p4 — black Ferrari, bottom-left */
.hero__photo--p4 { left: 11.46%;  top: 65.74%; width: 13.02%; }
/* p2 — cafe racer motorcycle, bottom mid-right */
.hero__photo--p2 { left: 56.51%;  top: 73.35%; width: 11.15%; }
/* p5 — bike gauges, bottom-right, half-cut off right edge */
.hero__photo--p5 { left: 85.16%;  top: 65.30%; width: 13.02%; }

/* Mobile: collage matching the model — jeep visible centre, script bleeds off both sides */
@media (max-width: 819px) {
  .hero__photo--p7 { left: -12%; top: 17%; width: 30%; }
  .hero__photo--p1 { left: 60%;  top: 10%; width: 31%; }
  .hero__photo--p3 { display: block; left: 22%; top: 26%; width: 32%; }
  .hero__photo--p6 { left: -10%; top: 56%; width: 24%; }
  .hero__photo--p4 { left: 22%;  top: 60%; width: 32%; }
  .hero__photo--p2 { left: 60%;  top: 82%; width: 27%; }
  .hero__photo--p5 { left: 84%;  top: 58%; width: 30%; }
}

/* ---------- sharing the golden years ---------- */
.sharing {
  padding: 90px 0 90px;
}
.sharing__block {
  position: relative;
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  color: var(--cream);
  line-height: 0.84;
  letter-spacing: -0.005em;
  max-width: 1512px;
  margin: 0 auto;
  /* Scales with viewport: clamp from mobile to 1920 design */
  --sharing-size: clamp(56px, 12vw, 182px);
  font-size: var(--sharing-size);
}
.sharing__date {
  position: absolute;
  top: -1.1em;
  left: 7%;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: clamp(11px, 1.05vw, 16px);
  letter-spacing: 0.06em;
  color: var(--orange);
  text-transform: none;
  line-height: 1;
}
.sharing__word {
  display: block;
  white-space: nowrap;
}
/* Per Figma: each line indents further right; words overlap vertically (tight line-height).
   Margins use em so they scale with the title size. */
.sharing__word--1 { padding-left: 7%;   margin-top: 0; }
.sharing__word--2 { padding-left: 25%;  margin-top: -0.08em; }
.sharing__word--3 { padding-left: 31%;  margin-top: -0.06em; color: var(--orange); }
.sharing__word--4 { padding-left: 20%;  margin-top: -0.08em; }

@media (max-width: 819px) {
  .sharing { padding: 60px 0; }
  .sharing__block { --sharing-size: clamp(48px, 16vw, 92px); }
  .sharing__date { left: 4%; }
  .sharing__word--1 { padding-left: 4%; }
  .sharing__word--2 { padding-left: 18%; }
  .sharing__word--3 { padding-left: 4%; }
  .sharing__word--4 { padding-left: 14%; }
}

/* ---------- about nineties ---------- */
.about {
  padding: 80px var(--page-pad);
}
.about__inner {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 50px 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  max-width: 884px;
  margin: 0 auto;
}
.about__intro h2 {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: clamp(36px, 4vw, 60px);
  line-height: .9;
  margin: 0 0 20px 0;
  color: var(--cream);
  letter-spacing: -0.02em;
}
.about__intro h2 .is-accent { color: var(--orange); }
.about__intro p {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.55;
  margin: 0;
  color: var(--cream);
}
.about__col {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.625;
  margin: 0;
  color: var(--cream);
}
@media (min-width: 820px) {
  .about__inner {
    grid-template-columns: 1fr 1fr 1fr;
    align-items: end;
  }
}

/* ---------- sommaire ---------- */
.sommaire {
  padding: 100px var(--page-pad);
}
.sommaire__list {
  max-width: 884px;
  margin: 0 auto;
  list-style: none;
  padding-left: 0;
  padding-inline-start: 0;
}
.sommaire__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.sommaire__row:first-child { border-top: 1px solid var(--line); }
.sommaire__left {
  display: flex;
  align-items: baseline;
  gap: 24px;
  min-width: 0;
  flex: 1;
}
.sommaire__num {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1;
  color: var(--orange);
  flex-shrink: 0;
}
.sommaire__name {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: clamp(20px, 3vw, 48px);
  line-height: 1.05;
  color: var(--sommaire-gray);
  letter-spacing: -0.01em;
}
.sommaire__year {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 18px;
  color: var(--orange);
  flex-shrink: 0;
}

/* ---------- triple image ---------- */
.triple {
  padding: 60px 0 80px;
}
@media (min-width: 820px) { .triple { padding: 140px 0; } }

.triple__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 882px;
  margin: 0 auto;
  padding: 0 var(--page-pad);
}
@media (min-width: 820px) {
  .triple__grid {
    gap: 30px;
    padding: 0;
  }
}
.triple__img {
  position: relative;
  width: 100%;
  aspect-ratio: 274 / 567;
  background: url("./images/vertical.png") center/cover no-repeat;
}

/* ---------- bando (orange logo strip) ---------- */
.bando {
  background: var(--orange);
  padding: 80px var(--page-pad) 90px;
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: center;
}
.bando__logo {
  width: 100%;
  max-width: 742px;
  height: auto;
  display: block;
}
@media (max-width: 819px) {
  .bando { padding: 60px var(--page-pad) 70px; }
}

/* ---------- car section ---------- */
.car {
  padding: 80px 0 100px;
}
@media (min-width: 820px) {
  .car { padding: 20px 0 100px; }
}
@media (max-width: 819px) {
  .car { padding: 40px 0 50px; }
  .car__title-block { padding-top: 30px; }
}

.car__title-block {
  position: relative;
  padding: 60px var(--page-pad) 0;
  max-width: 1512px;
  margin: 0 auto;
}
.car__index {
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--orange);
  margin: 0 0 24px 0;
  line-height: 1;
}
.car__title {
  position: relative;
  display: block;
  --car-title-size: clamp(56px, 9.5vw, 137px);
}
.car__title-row {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  color: var(--cream);
  font-size: var(--car-title-size);
  line-height: 1.09;
  letter-spacing: -0.005em;
  white-space: nowrap;
  position: relative;
  z-index: 2;
}
@media (min-width: 1300px) { .car__title { --car-title-size: 137px; } }
.car__title-row:nth-child(1) { padding-left: 0; }
.car__title-row:nth-child(2) { padding-left: 30%; margin-top: -0.18em; }
.car__title-row:nth-child(3) { padding-left: 12%; margin-top: -0.18em; }
.car__title-row--accent { color: var(--orange); }
@media (max-width: 819px) {
  .car__title { --car-title-size: clamp(28px, 9vw, 56px); }
  .car__title-block { overflow: hidden; }
  .car__title-row:nth-child(2),
  .car__title-row:nth-child(3) { padding-left: 0; }
}

.car__nbarre {
  position: absolute;
  right: -2%;
  top: 18%;
  width: clamp(220px, 34%, 560px);
  height: auto;
  color: #1d1d1d;
  pointer-events: none;
  z-index: 1;
  display: block;
}
@media (max-width: 819px) {
  .car__nbarre { width: 40%; right: 0; top: 22%; }
}

.car__tags {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

/* image row */
.car__images {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 40px;
  padding: 0 var(--page-pad);
  max-width: 1512px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1700px) {
  .car__images { max-width: 1512px; gap: 30px; }
}

.car__images-head { display: none; }

/* Mobile: clean 2×2 grid — all four images visible and aligned */
@media (max-width: 819px) {
  .car__images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 1fr;
    gap: 12px;
    overflow: visible;
    padding: 0 var(--page-pad);
    cursor: default;
    user-select: auto;
  }
  .car__images .thumb {
    display: block;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    justify-content: initial;
  }
  .car__images .thumb__img-el {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
  }
  .car__images .thumb__label { display: none; }
}

/* Tirets navigation: only visible on mobile */
.car__thumbs-nav {
  display: none;
  gap: 18px;
  justify-content: center;
  margin-top: 28px;
}
.car__thumbs-nav span {
  position: relative;
  width: 28px;
  height: 3px;
  background: #343434;
  transition: background .2s ease;
  cursor: pointer;
  flex-shrink: 0;
}
/* Larger invisible hit area around each dash so it's easy to tap */
.car__thumbs-nav span::before {
  content: "";
  position: absolute;
  inset: -22px -10px;
}
.car__thumbs-nav span.is-active { background: var(--orange); }
@media (max-width: 819px) {
  .car__thumbs-nav { display: none; }
}

.thumb {
  position: relative;
  display: flex;
  flex-direction: column;
  background: transparent;
}
.thumb--top    { justify-content: flex-start; }
.thumb--bottom { justify-content: flex-end; }
.thumb__img-el {
  display: block;
  width: 100%;
  height: auto;
}
.thumb__label {
  display: block;
  margin-top: 12px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  color: var(--orange);
  letter-spacing: 0.02em;
}

/* Legacy badge (used by car sections that still have placeholder thumbnails) */
.thumb__img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}
.thumb__num {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 29px;
  height: 29px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--orange);
  color: #1d1d1d;
  font-weight: 700;
  font-size: 14px;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
}

.thumb--tall    { aspect-ratio: 306 / 419; }
.thumb--wide-up { aspect-ratio: 306 / 419; }
.thumb--wide-up .thumb__img { background-position: top center; height: 33%; }
.thumb--wide-dn { aspect-ratio: 306 / 419; }
.thumb--wide-dn .thumb__img { height: 60%; margin-top: 35%; }
.thumb--orange .thumb__img { background-color: var(--orange); background-blend-mode: multiply; }
.thumb--orange-half { background: var(--orange); }
.thumb--orange-half .thumb__img { display: none; }

/* paragraph block */
.car__para {
  max-width: 640px;
  margin: 40px auto 0;
  padding: 0 var(--page-pad);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.625;
  color: var(--cream);
}
.car__para p { margin: 0 0 20px; }
.car__para .btn { margin-top: 12px; }
/* Narrow paragraph: spans the two center columns of the 4-column image grid.
   Per design: only constrain at >= 1100px; below 1100px paragraph uses the full
   width of the image grid (all 4 columns). Padding is dropped at the narrow
   width so the text fills the full 2-column span. */
.car__para--narrow {
  max-width: none;
}
@media (min-width: 1100px) {
  .car__para--narrow {
    padding-left: 0;
    padding-right: 0;
    max-width: calc((var(--container) - var(--page-pad) * 2) * 0.5);
  }
}
.car__para--narrow p:first-child {
  font-weight: 700;
}

.car__big {
  margin: 40px auto 0;
  padding: 0 var(--page-pad);
  max-width: 1512px;
  position: relative;
}
.car__big-img {
  width: 100%;
  aspect-ratio: 1314 / 612;
  background: url("./images/big.png") center / cover no-repeat;
  background-color: #2a2a2a;
}
.car__big-tirets {
  display: none;
}
.car__big-tirets span {
  width: 20px;
  height: 3px;
  background: var(--orange);
}

/* ---------- about me ---------- */
.aboutme {
  padding: 100px 0;
}
.aboutme__h1 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(56px, 9.5vw, 137px);
  line-height: .84;
  color: var(--cream);
  text-align: center;
  margin: 0 0 60px 0;
  letter-spacing: -0.01em;
}
.aboutme__h1 .is-accent { color: var(--orange); }
@media (min-width: 1300px) {
  .aboutme__h1, .lets-talk__title { font-size: 137px; }
}
.aboutme__row {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  max-width: 643px;
  margin: 0 auto;
  padding: 0 var(--page-pad);
}
@media (min-width: 820px) {
  .aboutme__row {
    flex-direction: row;
    align-items: flex-start;
    gap: 30px;
    padding: 0;
  }
  .aboutme__row .aboutme__text { margin-top: 110px; }
}
.aboutme__photo {
  width: 100%;
  max-width: 240px;
  aspect-ratio: 306 / 401;
  background: url("./images/portrait-aboutme.png") center / cover no-repeat;
  flex-shrink: 0;
}
.aboutme__text {
  flex: 1;
  font-size: 16px;
  line-height: 1.625;
  color: var(--cream);
  margin: 0;
}

/* ---------- let's talk ---------- */
.lets-talk {
  background: var(--orange);
  padding: 100px var(--page-pad) 70px;
}
.lets-talk__title {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(56px, 9.5vw, 137px);
  line-height: .84;
  text-align: center;
  margin: 0 0 80px 0;
  letter-spacing: -0.01em;
}
.lets-talk__title .l1 { color: #000; }
.lets-talk__title .l2 { color: var(--cream); margin-left: 30px; }
@media (max-width: 819px) {
  .lets-talk__title { font-size: clamp(40px, 12vw, 72px); }
  .lets-talk__title .l2 { margin-left: 14px; }
}

.form {
  max-width: 447px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 23px;
}
.form__row {
  display: flex;
  gap: 10px;
}
.form__row > * { flex: 1; }
.field {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.field > label {
  font-family: var(--font-sans);
  font-size: 16px;
  letter-spacing: 0;
  color: #000;
  text-transform: none;
  font-weight: 400;
}
.field > label strong { font-weight: 700; }
.field > label .field__opt { font-weight: 400; font-style: italic; }
.field > label .field__req { font-weight: 700; color: #000; }
.form__legend {
  font-family: var(--font-sans);
  font-size: 14px;
  font-style: italic;
  color: #000;
  margin: 4px 0 0 0;
}
.form__status {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.4;
  margin: 14px 0 0 0;
}
.form__status.is-error { color: #000; }
.form__status.is-success { color: #1a7f37; }
.field input,
.field textarea {
  border: 0;
  background: var(--line-pale);
  height: 45px;
  padding: 10px 14px;
  font: 400 16px/1.4 var(--font-sans);
  color: #1a1a1a;
  outline: none;
  width: 100%;
  resize: none;
}
.field textarea { height: 104px; }
.field input:focus, .field textarea:focus { box-shadow: 0 0 0 2px rgba(0,0,0,.2); }
.form__submit {
  align-self: flex-start;
  margin-top: 12px;
  padding: 10px 28px;
  background: #000;
  color: var(--cream);
  border: 1px solid #000;
  border-radius: 30px;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background .25s ease, color .25s ease, opacity .25s ease;
}
.form__submit:hover { background: var(--cream); color: #000; }
.form__submit:disabled { opacity: .6; cursor: default; }
.form__submit:disabled:hover { background: #000; color: var(--cream); }

/* hide the flex form when the confirmation panel takes over */
.form[hidden] { display: none; }

.form-confirm {
  max-width: 447px;
  margin: 0 auto;
}
.form-confirm__title {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: clamp(36px, 4vw, 60px);
  line-height: .9;
  white-space: nowrap;
  letter-spacing: -0.02em;
  color: #000;
  margin: 0 0 22px 0;
  outline: none;
}
.form-confirm__text {
  font-family: var(--font-sans);
  font-size: 18px;
  line-height: 1.5;
  color: #000;
  margin: 0 0 34px 0;
}
.form-confirm__text .confirm-email {
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.form-confirm__again {
  display: inline-block;
  background: none;
  border: 0;
  padding: 0 0 4px 0;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #000;
  cursor: pointer;
  border-bottom: 2px solid #000;
}
.form-confirm__again:hover { color: var(--cream); border-color: var(--cream); }

/* ---------- footer ---------- */
.site-footer {
  position: relative;
  background: #131313 url("./images/footer-bg.jpg") center/cover no-repeat;
  background-blend-mode: multiply;
  color: var(--cream);
  padding: 50px var(--page-pad) 40px;
  text-align: center;
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(19,19,19,.92);
  z-index: 0;
}
.site-footer > * { position: relative; z-index: 1; }
.site-footer__logo svg,
.site-footer__logo img {
  width: 100%;
  max-width: 1066px;
  height: auto;
  color: #2c2c2c;
  margin: 0 auto;
  display: block;
}
.site-footer__socials {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
  color: #242424;
}
.site-footer__socials .sep {
  width: 1px;
  height: 21px;
  background: #242424;
}
.site-footer__links {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 16px;
  flex-wrap: wrap;
  font-size: 12px;
  font-weight: 600;
  color: #242424;
}
.site-footer__links a:hover { color: var(--cream); }
.site-footer__copy {
  font-family: "Gilroy", var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  color: #242424;
  margin-top: 18px;
  letter-spacing: 0.02em;
}

/* ---------- legal pages ---------- */
.legal {
  max-width: 820px;
  margin: 0 auto;
  padding: 72px var(--page-pad) 120px;
}
.legal__eyebrow {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0 0 18px;
}
.legal__title {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(44px, 8vw, 110px);
  line-height: 0.92;
  color: var(--cream);
  margin: 0 0 14px;
}
.legal__updated {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--footer-gray);
  margin: 0 0 56px;
}
.legal h2 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 21px;
  color: var(--cream);
  margin: 44px 0 14px;
}
.legal p,
.legal li {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.72;
  color: var(--cream);
  opacity: 0.82;
}
.legal p { margin: 0 0 16px; }
.legal ul { margin: 0 0 18px; padding-left: 22px; }
.legal li { margin-bottom: 9px; }
.legal a { color: var(--orange); }
.legal__fill {
  font-style: italic;
  color: var(--orange);
  opacity: 0.95;
}
.legal__back {
  display: inline-block;
  margin-top: 8px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--footer-gray);
}
.legal__back:hover { color: var(--cream); }

/* ---------- cookie consent ---------- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  background: #131313;
  border-top: 1px solid #2a2a2a;
  color: var(--cream);
  padding: 22px var(--page-pad);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  transform: translateY(110%);
  transition: transform .45s cubic-bezier(.2,.7,.2,1);
}
.cookie-banner.is-visible { transform: translateY(0); }
.cookie-banner__text {
  font-family: var(--font-sans);
  font-size: 13px;
  line-height: 1.55;
  max-width: 660px;
  margin: 0;
  opacity: 0.9;
}
.cookie-banner__text a { color: var(--orange); }
.cookie-banner__actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
@media (max-width: 819px) {
  .cookie-banner { gap: 16px; padding: 20px; }
  .cookie-banner__actions { width: 100%; }
  .cookie-banner__actions .btn { flex: 1; }
}
