@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;600;700&display=swap");

:root {
  --black: #111111;
  --warm-white: #f6f3ed;
  --white: #ffffff;
  --indigo: #4f46e5;
  --orange: #ff7a59;
  --gray: #e7e7e7;
  --muted: #6f6f6f;
  --border: rgba(17, 17, 17, 0.12);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  background: var(--warm-white);
  color: var(--black);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

/* HEADER */

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  padding: 22px 4vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(246, 243, 237, 0.88);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
  transition: 0.3s ease;
}

.site-header.scrolled {
  border-color: var(--border);
}

.site-logo img {
  width: 150px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.site-nav a {
  font-size: 0.9rem;
  font-weight: 600;
}

.site-nav a:hover {
  opacity: 0.55;
}

.nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--black);
  color: white;
}

.nav-cta:hover {
  opacity: 1 !important;
  background: var(--indigo);
}

/* HERO */

.hero {
  min-height: 100vh;
  padding: 150px 4vw 0;
  position: relative;
}

.hero-grid {
  min-height: 690px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}

.hero-kicker {
  display: inline-flex;
  margin-bottom: 24px;
  padding: 9px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-copy h1 {
  max-width: 820px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(4.2rem, 8vw, 8.7rem);
  line-height: 0.88;
  letter-spacing: -0.075em;
}

.hero-copy h1 span {
  display: block;
  color: var(--indigo);
}

.hero-copy p {
  max-width: 620px;
  margin-top: 34px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.hero-actions {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.button-primary {
  padding: 16px 24px;
  border-radius: 999px;
  background: var(--black);
  color: white;
  font-weight: 700;
  transition: 0.25s ease;
}

.button-primary:hover {
  transform: translateY(-3px);
  background: var(--indigo);
}

.button-link {
  font-weight: 700;
  border-bottom: 1px solid var(--black);
  padding-bottom: 4px;
}

/* HERO ART */

.hero-art {
  position: relative;
  min-height: 590px;
}

.shape {
  position: absolute;
  border-radius: 38px;
  transform: rotate(-12deg);
}

.shape-blue {
  width: 370px;
  height: 470px;
  right: 30px;
  top: 30px;
  background: var(--indigo);
}

.shape-orange {
  width: 220px;
  height: 220px;
  left: 40px;
  bottom: 35px;
  background: var(--orange);
  border-radius: 50%;
}

.hero-symbol {
  position: absolute;
  z-index: 3;
  width: 280px;
  height: 280px;
  top: 150px;
  left: 120px;
  display: grid;
  place-items: center;
  border-radius: 34px;
  background: var(--white);
  box-shadow: 0 35px 80px rgba(17, 17, 17, 0.14);
  transform: rotate(6deg);
}

.hero-symbol img {
  width: 170px;
}

.hero-note {
  position: absolute;
  z-index: 4;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 16px;
  background: white;
  box-shadow: 0 16px 40px rgba(17, 17, 17, 0.12);
  font-size: 0.85rem;
  font-weight: 700;
}

.hero-note span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--black);
  color: white;
  font-size: 0.68rem;
}

.note-one {
  top: 55px;
  left: 35px;
}

.note-two {
  right: 0;
  top: 210px;
}

.note-three {
  left: 20px;
  bottom: 55px;
}

/* MARQUEE */

.hero-marquee {
  margin-top: 30px;
  padding: 26px 0;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.marquee-track {
  width: max-content;
  display: flex;
  gap: 50px;
  animation: marquee 22s linear infinite;
}

.marquee-track span {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.marquee-track span::after {
  content: "✦";
  margin-left: 50px;
  color: var(--orange);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* MANIFESTO */

.manifesto {
  padding: 130px 4vw;
  display: grid;
  grid-template-columns: 0.25fr 1fr;
  gap: 60px;
  background: var(--black);
  color: white;
}

.manifesto-number {
  font-family: "Space Grotesk", sans-serif;
  font-size: 8rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.14);
}

.manifesto-content p {
  margin-bottom: 24px;
  color: #b8b8b8;
  font-size: 0.95rem;
}

.manifesto-content h2 {
  max-width: 1050px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.8rem, 5vw, 5.8rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

/* SECTIONS */

.services,
.projects,
.process,
.studio,
.contact {
  padding: 120px 4vw;
}

.section-heading {
  margin-bottom: 70px;
}

.section-heading span,
.process-title > span,
.studio-copy > span,
.contact-text > span {
  display: block;
  margin-bottom: 18px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.section-heading h2,
.process-title h2,
.studio-copy h2,
.contact-text h2 {
  max-width: 920px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(3rem, 5vw, 6rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

/* SERVICES */

.services {
  background: var(--warm-white);
}

.services-list {
  border-top: 1px solid var(--border);
}

.service-row {
  min-height: 170px;
  display: grid;
  grid-template-columns: 80px 1.1fr 1fr 50px;
  gap: 30px;
  align-items: center;
  border-bottom: 1px solid var(--border);
  transition: 0.3s ease;
}

.service-row:hover {
  padding-inline: 20px;
  background: white;
}

.service-index {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
}

.service-row h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2rem;
}

.service-row p {
  color: var(--muted);
}

.service-arrow {
  font-size: 1.8rem;
}

/* PROJECTS */

.projects {
  background: var(--indigo);
  color: white;
}

.section-heading-light span {
  color: rgba(255, 255, 255, 0.68);
}

.project-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 28px;
}

.project {
  padding: 22px;
  border-radius: 28px;
  background: white;
  color: var(--black);
}

.project-large {
  grid-row: span 2;
}

.project-number {
  margin-bottom: 18px;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--muted);
}

.project-visual {
  min-height: 290px;
  padding: 24px;
  display: flex;
  align-items: flex-end;
  border-radius: 22px;
}

.project-large .project-visual {
  min-height: 620px;
}

.project-visual span {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.4rem, 4vw, 5rem);
  font-weight: 700;
  line-height: 0.95;
}

.visual-indigo {
  background: #dad7ff;
}

.visual-orange {
  background: #ffd3c7;
}

.visual-dark {
  background: #1b1b1b;
  color: white;
}

.project-copy {
  padding: 24px 6px 8px;
}

.project-copy h3 {
  margin-bottom: 8px;
  font-size: 1.35rem;
}

.project-copy p {
  color: var(--muted);
}

/* PROCESS */

.process {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;
  background: var(--orange);
}

.process-title {
  position: sticky;
  top: 130px;
  align-self: start;
}

.process-list {
  border-top: 1px solid rgba(17, 17, 17, 0.25);
}

.process-list article {
  padding: 44px 0;
  display: grid;
  grid-template-columns: 70px 220px minmax(280px, 1fr);
  gap: 36px;
  align-items: start;
  border-bottom: 1px solid rgba(17, 17, 17, 0.25);
}

.process-list article > span {
  padding-top: 8px;
}

.process-list h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.2rem;
  line-height: 1;
}

.process-list p {
  max-width: 430px;
  margin: 0;
  color: rgba(17, 17, 17, 0.67);
  font-size: 1rem;
  line-height: 1.65;
}

.process-list article > span {
  font-size: 0.78rem;
  font-weight: 700;
}

.process-list h3 {
  margin-bottom: 8px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.8rem;
}

.process-list p {
  color: rgba(17, 17, 17, 0.67);
}

/* STUDIO */

.studio {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
  align-items: center;
  background: white;
}

.studio-symbol {
  min-height: 520px;
  display: grid;
  place-items: center;
  border-radius: 40px;
  background: var(--gray);
}

.studio-symbol img {
  width: 230px;
}

.studio-copy p {
  max-width: 680px;
  margin-top: 30px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

/* CONTACT */

.contact {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
  background: var(--black);
  color: white;
}

.contact a {
  min-width: 320px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 999px;
  background: white;
  color: var(--black);
  font-weight: 800;
  transition: 0.25s ease;
}

.contact a:hover {
  transform: translateY(-4px);
  background: var(--orange);
}

/* FOOTER */

footer {
  padding: 45px 4vw;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 40px;
  align-items: center;
  border-top: 1px solid var(--border);
  background: var(--warm-white);
}

.footer-logo img {
  width: 145px;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 0.84rem;
  font-weight: 600;
}

footer p {
  color: var(--muted);
  font-size: 0.8rem;
}

/* RESPONSIVE */

@media (max-width: 980px) {
  .site-nav {
    display: none;
  }

  .hero-grid,
  .manifesto,
  .process,
  .studio {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-copy p {
    margin-inline: auto;
  }

  .hero-art {
    max-width: 650px;
    margin-inline: auto;
  }

  .manifesto-number {
    font-size: 5rem;
  }

  .service-row {
    grid-template-columns: 50px 1fr 40px;
  }

  .service-row p {
    grid-column: 2 / 3;
  }

  .project-grid {
    grid-template-columns: 1fr;
  }

  .project-large {
    grid-row: auto;
  }

  .project-large .project-visual {
    min-height: 400px;
  }

  .process-title {
    position: static;
  }

  .contact {
    align-items: flex-start;
    flex-direction: column;
  }

  footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 18px 20px;
  }

  .site-logo img {
    width: 130px;
  }

  .hero {
    padding: 125px 20px 0;
  }

  .hero-copy h1 {
    font-size: 4rem;
  }

  .hero-art {
    min-height: 470px;
  }

  .shape-blue {
    width: 270px;
    height: 350px;
    right: 10px;
  }

  .shape-orange {
    width: 160px;
    height: 160px;
    left: 0;
  }

  .hero-symbol {
    width: 220px;
    height: 220px;
    left: 50%;
    top: 130px;
    transform: translateX(-50%) rotate(6deg);
  }

  .hero-symbol img {
    width: 130px;
  }

  .hero-note {
    font-size: 0.72rem;
    padding: 12px 14px;
  }

  .note-one {
    left: 0;
  }

  .note-two {
    right: 0;
    top: 245px;
  }

  .note-three {
    left: 10px;
    bottom: 15px;
  }

  .manifesto,
  .services,
  .projects,
  .process,
  .studio,
  .contact {
    padding: 85px 20px;
  }

  .service-row {
    min-height: 210px;
    grid-template-columns: 45px 1fr 30px;
    gap: 16px;
  }

  .service-row h3 {
    font-size: 1.5rem;
  }

  .service-row p {
    font-size: 0.9rem;
  }

  .project-large .project-visual,
  .project-visual {
    min-height: 300px;
  }

  .studio-symbol {
    min-height: 360px;
  }

  .studio-symbol img {
    width: 160px;
  }

  .contact a {
    min-width: 100%;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}
/* ANIMATIONS D'APPARITION */

.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ANIMATION DU HERO */

.hero-copy,
.hero-art {
  animation: hero-entry 0.9s ease both;
}

.hero-art {
  animation-delay: 0.15s;
}

@keyframes hero-entry {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* MOUVEMENT LÉGER DES BLOCS DU HERO */

.hero-symbol {
  animation: float-symbol 5s ease-in-out infinite;
}

.note-one {
  animation: float-note 4s ease-in-out infinite;
}

.note-two {
  animation: float-note 4.8s ease-in-out infinite reverse;
}

.note-three {
  animation: float-note 5.4s ease-in-out infinite;
}

@keyframes float-symbol {
  0%,
  100% {
    transform: rotate(6deg) translateY(0);
  }

  50% {
    transform: rotate(6deg) translateY(-12px);
  }
}

@keyframes float-note {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* ACCESSIBILITÉ */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}/* MENU MOBILE */

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--black);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  background: white;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.menu-toggle.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 980px) {
  .menu-toggle {
    display: block;
    position: relative;
    z-index: 1002;
  }

  .site-nav {
    position: fixed;
    z-index: 1001;
    inset: 0;
    padding: 130px 28px 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
    background: var(--warm-white);
    transform: translateX(100%);
    transition: transform 0.4s ease;
  }

  .site-nav.open {
    transform: translateX(0);
  }

  .site-nav a {
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(2.4rem, 8vw, 4.5rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.04em;
  }

  .site-nav .nav-cta {
    margin-top: 12px;
    padding: 16px 22px;
    font-size: 1rem;
    letter-spacing: normal;
  }
}
@media (max-width: 980px) {
  .process-list article {
    grid-template-columns: 55px 1fr;
    gap: 20px;
  }

  .process-list h3 {
    font-size: 1.8rem;
  }

  .process-list p {
    grid-column: 2;
    max-width: 100%;
  }
}
@media (max-width: 640px) {
  .process-list article {
    padding: 32px 0;
    grid-template-columns: 42px 1fr;
    gap: 16px;
  }

  .process-list h3 {
    font-size: 1.6rem;
  }

  .process-list p {
    grid-column: 2;
    font-size: 0.95rem;
  }
}
/* FORMULAIRE DE CONTACT */

.contact {
  align-items: flex-start;
}

.contact-text {
  max-width: 620px;
}

.contact-text p {
  max-width: 540px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.8;
}

.contact-form {
  width: min(100%, 680px);
  padding: 34px;
  border-radius: 28px;
  background: white;
  color: var(--black);
}

.hidden-field {
  position: absolute;
  left: -9999px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.form-field {
  margin-bottom: 20px;
}

.form-field label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.8rem;
  font-weight: 700;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid #d8d8d8;
  border-radius: 14px;
  background: #f7f7f7;
  color: var(--black);
  font: inherit;
  outline: none;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.form-field input,
.form-field select {
  min-height: 52px;
  padding: 0 15px;
}

.form-field textarea {
  padding: 15px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--indigo);
  background: white;
  box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
}

.form-bottom {
  display: flex;
  align-items: center;
  gap: 22px;
}

.form-bottom button {
  flex-shrink: 0;
  min-height: 54px;
  padding: 14px 22px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  border: 0;
  border-radius: 999px;
  background: var(--indigo);
  color: white;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    background 0.25s ease;
}

.form-bottom button:hover {
  transform: translateY(-3px);
  background: var(--black);
}

.form-bottom p {
  max-width: 280px;
  color: #777;
  font-size: 0.7rem;
  line-height: 1.5;
}

@media (max-width: 980px) {
  .contact-form {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-form {
    padding: 24px 18px;
  }

  .form-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .form-bottom button {
    width: 100%;
    justify-content: space-between;
  }
}
/* PAGE DE REMERCIEMENT */

.thank-you-page {
  min-height: 100vh;
  background: var(--warm-white);
}

.thank-you {
  position: relative;
  min-height: 100vh;
  padding: 70px 25px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.thank-you-content {
  position: relative;
  z-index: 3;
  width: min(100%, 760px);
  padding: 60px;
  border-radius: 38px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 35px 90px rgba(17, 17, 17, 0.12);
  text-align: center;
  backdrop-filter: blur(18px);
}

.thank-you-logo {
  position: absolute;
  top: 30px;
  left: 35px;
}

.thank-you-logo img {
  width: 135px;
}

.thank-you-symbol {
  width: 130px;
  height: 130px;
  margin: 40px auto 34px;
  display: grid;
  place-items: center;
  border-radius: 30px;
  background: var(--gray);
  transform: rotate(5deg);
}

.thank-you-symbol img {
  width: 82px;
}

.thank-you-label {
  display: inline-flex;
  margin-bottom: 24px;
  padding: 9px 15px;
  border-radius: 999px;
  background: #e9e7ff;
  color: var(--indigo);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.thank-you h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.thank-you h1 strong {
  display: block;
  color: var(--indigo);
}

.thank-you-content > p {
  max-width: 560px;
  margin: 28px auto 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.thank-you-actions {
  margin-top: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
}

.thank-you-shape {
  position: absolute;
}

.thank-you-shape-blue {
  width: 480px;
  height: 480px;
  top: -180px;
  right: -100px;
  border-radius: 80px;
  background: var(--indigo);
  transform: rotate(20deg);
}

.thank-you-shape-orange {
  width: 300px;
  height: 300px;
  bottom: -100px;
  left: -70px;
  border-radius: 50%;
  background: var(--orange);
}

@media (max-width: 640px) {
  .thank-you {
    padding: 20px;
  }

  .thank-you-content {
    padding: 35px 20px;
  }

  .thank-you-logo {
    position: static;
    display: inline-flex;
    margin-bottom: 30px;
  }

  .thank-you-logo img {
    width: 125px;
  }

  .thank-you-symbol {
    margin-top: 0;
  }

  .thank-you-actions {
    flex-direction: column;
  }

  .thank-you-actions .button-primary {
    width: 100%;
  }
}
/* PAGES LÉGALES */

.legal-page {
  background: var(--warm-white);
  color: var(--black);
}

.legal-header {
  width: min(calc(100% - 40px), 1100px);
  min-height: 100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
}

.legal-header img {
  width: 145px;
}

.legal-back {
  font-size: 0.85rem;
  font-weight: 700;
}

.legal-content {
  width: min(calc(100% - 40px), 850px);
  margin: 0 auto;
  padding: 90px 0;
}

.legal-label {
  margin-bottom: 18px;
  color: var(--indigo);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.legal-content h1 {
  margin-bottom: 70px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(3.2rem, 7vw, 6rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.legal-content section {
  padding: 34px 0;
  border-top: 1px solid var(--border);
}

.legal-content h2 {
  margin-bottom: 16px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.55rem;
}

.legal-content p {
  margin-bottom: 14px;
  color: var(--muted);
  line-height: 1.8;
}

.legal-content a {
  color: var(--indigo);
  text-decoration: underline;
}

.legal-footer {
  width: min(calc(100% - 40px), 1100px);
  margin: 0 auto;
  padding: 30px 0;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.8rem;
}

@media (max-width: 640px) {
  .legal-header {
    min-height: 80px;
  }

  .legal-header img {
    width: 125px;
  }

  .legal-content {
    padding: 65px 0;
  }

  .legal-content h1 {
    margin-bottom: 50px;
  }
}