/* VENAYA METHOD — V5 CORRIGÉE
   Version simple multi-pages, sans dossiers.
   Tous les fichiers sont à la racine GitHub.
*/

:root {
  --ivory: #fbf7ef;
  --cream: #f4eadb;
  --porcelain: #fffdf8;
  --gold: #c6a05a;
  --bronze: #8b633f;
  --brown: #34251f;
  --black: #18120f;
  --taupe: #7b6557;
  --line: rgba(198, 160, 90, 0.28);
  --shadow: 0 24px 70px rgba(52, 37, 31, 0.14);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: linear-gradient(180deg, var(--ivory), var(--cream));
  color: var(--brown);
  font-family: "Montserrat", Arial, sans-serif;
  line-height: 1.65;
}

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

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

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--brown);
  font-weight: 500;
}

h1 {
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.92;
  margin: 18px 0 24px;
}

h2 {
  font-size: clamp(38px, 5vw, 72px);
  line-height: 0.98;
  margin: 0 0 24px;
}

h3 {
  font-size: 34px;
  line-height: 1.08;
  margin: 0 0 14px;
}

p {
  color: #5e4a3e;
  font-size: 17px;
  margin: 0 0 20px;
}

/* NAVIGATION */

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(251, 247, 239, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 5.5%;
}

.brand {
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand-logo-wrap {
  width: 138px;
  height: 138px;
  border-radius: 50%;
  background: var(--porcelain);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 10px 35px rgba(52, 37, 31, 0.06);
}

.brand-logo-wrap img {
  width: 122px;
  height: 122px;
  object-fit: contain;
  transform: scale(1.28);
}

.brand-title {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 36px;
  letter-spacing: 0.18em;
  line-height: 0.9;
}

.brand-subtitle {
  display: block;
  color: var(--bronze);
  font-size: 12px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  margin-top: 7px;
}

.menu {
  display: flex;
  gap: 22px;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.menu a:hover {
  color: var(--bronze);
}

/* BOUTONS */

.btn,
.btn-ghost,
.btn-light {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 999px;
  padding: 15px 25px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid transparent;
}

.btn {
  background: linear-gradient(135deg, var(--brown), var(--black));
  color: var(--ivory);
  box-shadow: 0 16px 36px rgba(52, 37, 31, 0.18);
}

.btn-ghost {
  border-color: var(--gold);
  background: rgba(255, 253, 248, 0.4);
  color: var(--brown);
}

.btn-light {
  background: var(--porcelain);
  color: var(--brown);
  border-color: var(--line);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.eyebrow {
  color: var(--bronze);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

/* LAYOUT */

.hero {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 58px;
  align-items: center;
  padding: 76px 5.5% 100px;
}

.hero p {
  font-size: 21px;
  max-width: 760px;
}

.hero-photo {
  height: 680px;
  overflow: hidden;
  border-radius: 46px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.section {
  padding: 105px 5.5%;
}

.section-tight {
  padding: 76px 5.5%;
}

.center {
  max-width: 900px;
  margin: 0 auto 58px;
  text-align: center;
}

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

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

.card {
  background: rgba(255, 253, 248, 0.76);
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: 36px;
  box-shadow: 0 18px 55px rgba(52, 37, 31, 0.07);
}

.card-dark {
  background: linear-gradient(145deg, #392820, #17110f);
}

.card-dark h2,
.card-dark h3,
.card-dark p {
  color: var(--ivory);
}

.card-gold {
  background: linear-gradient(145deg, #d8bd88, #ad7f44);
}

/* VISUELS */

.visual-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  padding: 0;
}

.visual-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(24, 18, 15, 0.7));
}

.visual-card-content {
  position: absolute;
  z-index: 2;
  inset: auto 28px 28px;
}

.visual-card-content h3,
.visual-card-content p {
  color: var(--ivory);
}

.split {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 58px;
  align-items: center;
}

.photo-frame {
  overflow: hidden;
  border-radius: 42px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.photo-frame img {
  width: 100%;
  height: 610px;
  object-fit: cover;
  object-position: center center;
}

.photo-frame.manon img {
  object-position: center 22%;
}

.photo-frame.formation img {
  object-position: center 34%;
}

.photo-frame.massage img {
  object-position: center 22%;
}

/* PAGE ACADÉMIE : photo plus grande, lisible, sans énorme cadre blanc */
.academie-showcase {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 64px;
  align-items: center;
}

.academie-poster {
  width: 100%;
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--porcelain);
}

.academie-poster img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.page-hero {
  padding: 94px 5.5% 78px;
  border-bottom: 1px solid var(--line);
}

.page-hero p {
  max-width: 900px;
  font-size: 21px;
}

.quote {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(30px, 3.4vw, 52px);
  line-height: 1.05;
  color: var(--brown);
}

.list {
  padding-left: 18px;
}

.list li {
  margin: 10px 0;
  color: #5e4a3e;
}

.price {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 58px;
  color: var(--bronze);
  margin: 10px 0 16px;
}

.timeline {
  display: grid;
  gap: 18px;
}

.step {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 24px;
  padding: 26px;
  background: rgba(255, 253, 248, 0.65);
  border: 1px solid var(--line);
  border-radius: 28px;
}

.step-num {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 48px;
  color: var(--gold);
}

/* CONTACT */

.contact-choice {
  align-items: stretch;
}

.contact-card {
  min-height: 360px;
}

.form {
  display: grid;
  gap: 14px;
}

input,
select,
textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 253, 248, 0.9);
  color: var(--brown);
  font-family: "Montserrat", Arial, sans-serif;
}

textarea {
  min-height: 140px;
}

.notice {
  font-size: 13px;
  color: var(--taupe);
}

.footer {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 34px;
  padding: 66px 5.5%;
  background: var(--black);
  color: var(--ivory);
}

.footer h3,
.footer p,
.footer a {
  color: var(--ivory);
}

.footer-logo-wrap {
  width: 145px;
  height: 145px;
  border-radius: 50%;
  background: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 18px;
}

.footer-logo-wrap img {
  width: 130px;
  height: 130px;
  object-fit: contain;
  transform: scale(1.25);
}

@media (max-width: 980px) {
  .menu {
    display: none;
  }

  .hero,
  .grid-2,
  .grid-3,
  .split,
  .footer,
  .academie-showcase {
    grid-template-columns: 1fr;
  }

  .brand-logo-wrap {
    width: 86px;
    height: 86px;
  }

  .brand-logo-wrap img {
    width: 78px;
    height: 78px;
  }

  .brand-title {
    font-size: 27px;
  }

  .hero-photo {
    height: 520px;
  }

  .section {
    padding: 78px 6%;
  }

  .photo-frame img {
    height: 480px;
  }

  .academie-poster {
    border-radius: 28px;
  }

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