/* ===== Reset & base ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html {
  overflow-x: hidden;
}
body {
  margin: 0;
  background: #F5EFDF;
  color: #000000;
  font-family: 'Instrument Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
ul { margin: 0; padding: 0; list-style: none; }
p { margin: 0; }

:root {
  --black: #000000;
  --gold: #F1C46B;
  --salmon: #EBAA99;
  --ivory: #F5EFDF;
}

em, i { font-style: italic; }

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 6vw;
}
.wrap--narrow {
  max-width: 900px;
}

/* ===== Typography helpers ===== */
.serif-lead {
  font-family: 'Instrument Serif', serif;
  font-style: normal;
  font-size: clamp(1.6rem, 3.4vw, 2.6rem);
  line-height: 1.35;
  font-weight: 400;
  margin-bottom: 1.4rem;
}
.serif-lead em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
}
.serif-lead--small { font-size: clamp(1.4rem, 2.6vw, 2rem); }
.serif-lead--offer { font-size: clamp(1.4rem, 2.6vw, 2.1rem); }
.serif-lead--tight { margin-top: 2.5rem; }

.body-mono {
  font-family: 'Instrument Sans', sans-serif;
  font-size: clamp(0.95rem, 1.3vw, 1.15rem);
  line-height: 1.7;
  max-width: 60ch;
}
.body-mono--wide { max-width: none; }
.body-mono + .body-mono { margin-top: 1rem; }
.body-mono em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 1.15em;
}

/* ===== Heart icon ===== */
.heart { display: inline-block; }
.heart img { width: 100%; height: auto; display: block; }
.heart--center { width: 40px; margin: 0 auto 2.5rem; }
.heart--footer { width: 40px; }

/* ===== HERO (Ecran 1) ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 560px;
  width: 100%;
  overflow: hidden;
}
.hero__photos {
  position: absolute;
  inset: 0;
  display: flex;
}
.hero__photo {
  width: 50%;
  height: 100%;
  object-fit: cover;
}
.hero__heart {
  position: absolute;
  top: 6%;
  left: 50%;
  transform: translateX(-50%);
  width: 68px;
  z-index: 3;
}
.hero__heart img { width: 100%; height: auto; display: block; }

.hero__overlay {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  z-index: 3;
  padding: 0 6vw;
}
.hero__tagline {
  font-family: 'Instrument Serif', serif;
  color: #F5EFDF;
  font-size: clamp(1.1rem, 2.4vw, 1.8rem);
  line-height: 1.5;
  text-align: left;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
  text-shadow: 0 2px 18px rgba(0,0,0,0.35);
}
.hero__tagline em { font-style: italic; }

.hero__logo {
  position: absolute;
  left: 50%;
  bottom: 1%;
  transform: translateX(-50%);
  width: 90%;
  z-index: 4;
  pointer-events: none;
  will-change: transform, opacity;
}
.hero__logo img {
  width: 100%;
  margin: 0 auto;
}

/* ===== Screens ===== */
.screen {
  padding: clamp(2.25rem, 5vw, 4rem) 0;
}
.screen--ivory { background: var(--ivory); }
.screen--gold {
  background-color: var(--gold);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 140px 140px;
}
.screen--pad-top-only { padding-bottom: 3.5rem; }
.screen--tight-bottom { padding-bottom: 1.25rem; }

/* ===== CTA banner (marquee) ===== */
.cta-banner {
  background: var(--salmon);
  border-top: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
  overflow: hidden;
  white-space: nowrap;
  padding: 0.9rem 0;
}
.cta-banner--inset { margin: 0; }
.cta-banner__track {
  display: inline-flex;
  animation: marquee 22s linear infinite;
}
.cta-banner__item {
  font-family: 'Instrument Sans', sans-serif;
  font-weight: 400;
  font-size: clamp(0.8rem, 1.4vw, 1rem);
  letter-spacing: 0.02em;
  padding-right: 4rem;
  white-space: nowrap;
}
.cta-link {
  text-decoration: underline;
  cursor: pointer;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-33.3333%); }
}

/* ===== Ecran 3 — Offres ===== */
.offers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
}
.offer__label {
  font-family: 'Instrument Sans', sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 0.8rem;
}
.offer__list li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 0.6rem;
}
.offer__list li::before {
  content: "–";
  position: absolute;
  left: 0;
}

/* ===== Ecran 4 — Fondatrice ===== */
.founder {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
  padding: clamp(1.75rem, 4vw, 3rem) 0 0.5rem;
}
.founder__photo img {
  width: 100%;
  height: auto;
}
.founder__text p { margin-bottom: 1.4rem; }
.founder__text p:last-child { margin-bottom: 0; }

/* ===== Ecran 5 — Services ===== */
.services {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  margin: 0 auto;
}
.services td {
  font-family: 'Instrument Sans', sans-serif;
  font-size: clamp(0.95rem, 1.4vw, 1.15rem);
  padding: 0.9rem 0.5rem;
}
.services__period { width: 40%; font-weight: 400; white-space: nowrap; padding-right: 2rem; }
.services__action { width: 60%; }
.services__action--nowrap { white-space: nowrap; }
.services__heading { margin-bottom: 2rem; }

/* ===== Footer ===== */
.footer {
  background: var(--ivory);
  padding: clamp(1.75rem, 4vw, 3rem) 0 clamp(1.25rem, 3vw, 2rem);
}
.footer__row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.footer__link {
  font-family: 'Instrument Sans', sans-serif;
  text-decoration: underline;
  text-transform: uppercase;
  font-size: clamp(0.85rem, 1.3vw, 1rem);
}
.footer__contact {
  justify-self: end;
  text-align: right;
}
.footer__label {
  font-family: 'Instrument Sans', sans-serif;
  text-transform: uppercase;
  font-size: clamp(0.85rem, 1.3vw, 1rem);
}
.footer__back {
  display: block;
  text-align: center;
  font-family: 'Instrument Sans', sans-serif;
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
  text-decoration: none;
}
.footer__privacy {
  display: block;
  width: fit-content;
  margin: 0 auto 2rem;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  text-decoration: underline;
}
.footer__logo {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

/* ===== Privacy policy ===== */
.privacy-page {
  min-height: 100vh;
  padding: clamp(2rem, 6vw, 5rem) 0;
  background: var(--ivory);
}
.privacy-page__back {
  display: inline-block;
  margin-bottom: clamp(3rem, 8vw, 6rem);
  font-size: 0.85rem;
  text-transform: uppercase;
}
.privacy-page h1,
.privacy-page h2 {
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
}
.privacy-page h1 {
  max-width: 12ch;
  margin: 0 0 2.5rem;
  font-size: clamp(2.8rem, 8vw, 6rem);
  line-height: 0.95;
}
.privacy-page h2 {
  margin: 2.5rem 0 0.75rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
}
.privacy-page p,
.privacy-page li {
  max-width: 72ch;
  font-size: 0.95rem;
  line-height: 1.7;
}
.privacy-page p + p { margin-top: 1rem; }
.privacy-page ul {
  max-width: 72ch;
  padding-left: 1.2rem;
  list-style: disc;
}
.privacy-page li + li { margin-top: 0.5rem; }
.privacy-page__date {
  margin-bottom: 3rem;
  font-size: 0.8rem !important;
  text-transform: uppercase;
}

/* ===== Responsive ===== */
@media (min-width: 721px) and (max-width: 900px) {
  .services td {
    font-size: 0.8rem;
  }
}

@media (max-width: 720px) {
  .wrap {
    padding-inline: 7.25vw;
  }

  .hero {
    height: 100svh;
    min-height: 640px;
  }
  .hero__photo {
    width: 100%;
    object-position: center center;
  }
  .hero__photo + .hero__photo {
    display: none;
  }
  .hero__heart {
    top: 4.5%;
    width: 54px;
  }
  .hero__overlay {
    top: 48%;
    padding-inline: 10vw;
  }
  .hero__tagline {
    width: fit-content;
    margin-inline: auto;
    text-align: left;
    font-size: 1.3rem;
    line-height: 1.45;
  }
  .hero__logo {
    bottom: 4%;
    width: 94%;
  }

  .screen {
    padding: 2.6rem 0;
  }
  .serif-lead {
    font-size: 1.65rem;
    line-height: 1.34;
  }
  .body-mono {
  font-family: 'Instrument Sans', sans-serif;
    font-size: 0.875rem;
    line-height: 1.7;
  }
  .screen--ivory:first-of-type {
    padding-top: 2.5rem;
    padding-bottom: 4.275rem;
  }
  .screen--ivory:first-of-type .serif-lead {
    margin-bottom: 2.75rem;
  }
  .screen--ivory:first-of-type .body-mono + .body-mono {
    margin-top: 1.8rem;
  }
  .screen--ivory.screen--tight-bottom {
    padding-top: 3rem;
    padding-bottom: 2.75rem;
  }

  .cta-banner {
    padding: 0.65rem 0;
  }
  .cta-banner__item {
  font-family: 'Instrument Sans', sans-serif;
    font-size: 0.65rem;
    padding-right: 2.5rem;
  }

  .heart--center {
    width: 42px;
    margin-bottom: 3.2rem;
  }

  .founder {
    grid-template-columns: 1fr;
    gap: 3.5rem;
    padding-top: 0;
  }
  .founder__photo {
    width: 100%;
    max-width: none;
    margin: 0 auto;
  }
  .founder__text p {
    margin-bottom: 1.8rem;
  }
  .screen--gold.screen--tight-bottom {
    padding-top: 5rem;
    padding-bottom: 1rem;
  }

  .offers {
    grid-template-columns: 1fr;
    gap: 4.5rem;
  }
  main > .screen:nth-of-type(3) {
    padding-bottom: 5.1rem;
  }
  .offer__label {
  font-family: 'Instrument Sans', sans-serif;
    font-weight: 400;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
  }
  .serif-lead--offer {
    font-size: 1.65rem;
    margin-bottom: 0.2rem;
  }
  .offer__list li {
    margin-bottom: 0;
  }
  .screen--gold.screen--pad-top-only {
    padding-top: 1.5rem;
    padding-bottom: 5.2rem;
  }
  .services__heading {
    margin-bottom: 3rem;
  }

  .services__period {
    display: block;
    width: 100%;
    margin-bottom: 0.2rem;
    padding-right: 0;
    white-space: normal;
  }
  .services__action {
    display: block;
    width: 100%;
    padding-top: 0;
    white-space: normal;
  }
  .services td {
    display: block;
    padding: 0;
  font-family: 'Instrument Sans', sans-serif;
    font-size: 0.875rem;
    line-height: 1.7;
  }
  .services tr {
    display: block;
    padding: 0 0 0.75rem;
  }

  .footer {
    padding-top: 2.4rem;
    padding-bottom: 1.35rem;
  }
  .footer__row {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
    margin-bottom: 3.8rem;
  }
  .footer__row > .heart--footer {
    order: 1;
    justify-self: center;
  }
  .footer__row > .footer__link {
    order: 2;
  }
  .footer__row > .footer__contact {
    order: 3;
  }
  .footer__contact {
    justify-self: center;
    text-align: center;
  }
  .footer__link,
  .footer__label {
  font-family: 'Instrument Sans', sans-serif;
    font-size: 0.9rem;
  }
  .footer__back {
  font-family: 'Instrument Sans', sans-serif;
    margin-bottom: 3.65rem;
  }
  .footer__logo {
    width: 106%;
    max-width: none;
    margin-left: -3%;
  }
}
