/* ============================================================
   Angéline Capri — Photographe
   Palette douce vert d'eau / bleu canard (identité Caprimage)
   ============================================================ */

:root {
  --cream: #f7faf9;
  --mist: #e4edec;
  --teal: #527d81;
  --teal-dark: #3e6367;
  --ink: #32494b;
  --muted: #67807f;
  --white: #ffffff;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Jost", "Helvetica Neue", sans-serif;
  --radius: 14px;
  --shadow: 0 18px 45px rgba(50, 73, 75, 0.10);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

.container { width: min(1120px, 92%); margin-inline: auto; }

.hidden { display: none !important; }

/* ===== Boutons ===== */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.95rem 2.2rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  cursor: pointer;
  border: 1px solid transparent;
}

.btn--primary {
  background: var(--teal);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(62, 99, 103, 0.35);
}

.btn--ghost {
  border-color: var(--teal);
  color: var(--teal-dark);
  background: transparent;
}
.btn--ghost:hover { background: var(--mist); transform: translateY(-2px); }

.btn--small { padding: 0.7rem 1.6rem; font-size: 0.8rem; background: var(--mist); color: var(--teal-dark); }
.btn--small:hover { background: var(--teal); color: var(--white); }

.btn--full { width: 100%; border: none; }

/* ===== Header ===== */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: rgba(247, 250, 249, 0.9);
  backdrop-filter: blur(12px);
  transition: box-shadow 0.3s ease;
}
.header.is-scrolled { box-shadow: 0 6px 25px rgba(50, 73, 75, 0.08); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1.1rem;
}

.nav__logo {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
}

.nav__list a {
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  transition: color 0.2s ease;
}
.nav__list a:hover { color: var(--teal-dark); }

.nav__cta {
  border: 1px solid var(--teal);
  border-radius: 999px;
  padding: 0.45rem 1.3rem;
  color: var(--teal-dark) !important;
}
.nav__cta:hover { background: var(--teal); color: var(--white) !important; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav__toggle span { width: 24px; height: 2px; background: var(--ink); transition: 0.3s; }

/* ===== Hero ===== */
.hero {
  padding-top: 110px;
  background: linear-gradient(180deg, var(--mist) 0%, var(--cream) 100%);
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 3.5rem;
  min-height: calc(100vh - 110px);
  padding-block: 3rem 4.5rem;
}

.hero__eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 1.4rem;
}

.hero__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  line-height: 1.12;
  margin-bottom: 1.6rem;
}
.hero__title em { font-style: italic; color: var(--teal-dark); }

.hero__subtitle {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 46ch;
  margin-bottom: 2.4rem;
}

.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero__image img {
  width: 100%;
  height: min(72vh, 640px);
  object-fit: cover;
  object-position: 32% 30%;
  border-radius: 200px 200px var(--radius) var(--radius);
  box-shadow: var(--shadow);
}

/* ===== Sections génériques ===== */
.section { padding-block: 6rem; }
.section--tinted { background: var(--mist); }

.section__eyebrow {
  text-align: center;
  font-size: 0.85rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 0.9rem;
}

.section__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 3.6vw, 2.9rem);
  text-align: center;
  line-height: 1.2;
  margin-bottom: 3.5rem;
}

.section__title--left { text-align: left; }
.a-propos .section__eyebrow, .contact .section__eyebrow { text-align: left; }

/* ===== Cartes séances ===== */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-6px); }

.card__image { overflow: hidden; }
.card__image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.card:hover .card__image img { transform: scale(1.05); }

.card__body {
  padding: 1.8rem 1.8rem 2.2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card__body h3 {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 600;
  margin-bottom: 0.7rem;
}

.card__body p { color: var(--muted); font-size: 0.98rem; margin-bottom: 1.6rem; flex: 1; }

.card__body .btn { align-self: flex-start; }

.card__prix {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--teal-dark);
  margin-bottom: 1.2rem;
}

/* ===== Tarifs ===== */
.tarifs {
  margin-top: 4rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2.6rem clamp(1.4rem, 4vw, 3.2rem) 2.4rem;
}

.tarifs__title {
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 1.8rem;
}

.tarifs__list { list-style: none; max-width: 640px; margin-inline: auto; }

.tarifs__list li {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  padding-block: 0.55rem;
  font-size: 1rem;
}

.tarifs__list li span:last-child { font-weight: 400; color: var(--teal-dark); white-space: nowrap; }

.tarifs__dots {
  flex: 1;
  border-bottom: 1px dotted #b7c9c8;
  transform: translateY(-4px);
}

.tarifs__note {
  text-align: center;
  margin-top: 1.6rem;
  font-size: 0.92rem;
  color: var(--muted);
}
.tarifs__note a { color: var(--teal-dark); }

/* ===== Galerie ===== */
.galerie__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 1.2rem;
}

.galerie__item {
  overflow: hidden;
  border-radius: var(--radius);
}
.galerie__item--tall { grid-row: span 2; }

.galerie__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.galerie__item:hover img { transform: scale(1.06); }

.galerie__more { text-align: center; margin-top: 2.6rem; color: var(--muted); }
.galerie__more a { color: var(--teal-dark); text-decoration: none; font-weight: 400; }
.galerie__more a:hover { text-decoration: underline; }

/* ===== À propos ===== */
.a-propos__inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 4rem;
}

.a-propos__image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.a-propos__text .section__title { margin-bottom: 1.6rem; }
.a-propos__text p { margin-bottom: 1.2rem; color: var(--muted); }
.a-propos__text .btn { margin-top: 1rem; }

/* ===== Déroulement ===== */
.etapes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  list-style: none;
  counter-reset: etape;
}

.etape {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.2rem 1.7rem;
  box-shadow: var(--shadow);
}

.etape__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--mist);
  color: var(--teal-dark);
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1.1rem;
}

.etape h3 {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.etape p { color: var(--muted); font-size: 0.95rem; }

/* ===== Contact ===== */
.contact__inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: start;
}

.contact__text .section__title { margin-bottom: 1.4rem; }
.contact__text p { color: var(--muted); margin-bottom: 1.8rem; }

.contact__coords { list-style: none; }
.contact__coords li { margin-bottom: 0.6rem; }
.contact__coords a {
  color: var(--teal-dark);
  text-decoration: none;
  font-size: 1.05rem;
}
.contact__coords a:hover { text-decoration: underline; }

.contact__form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.4rem;
  box-shadow: var(--shadow);
}

.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }

.form__field { margin-bottom: 1.2rem; }

.form__field label {
  display: block;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.45rem;
}

.form__field input,
.form__field select,
.form__field textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 300;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid #d5e2e1;
  border-radius: 10px;
  padding: 0.85rem 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form__field textarea { resize: vertical; }

.form__field input:focus,
.form__field select:focus,
.form__field textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(82, 125, 129, 0.22);
}

/* ===== Footer ===== */
.footer {
  background: var(--ink);
  color: #c3d3d2;
  padding-block: 3.2rem;
  text-align: center;
  font-size: 0.95rem;
}

.footer__logo {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.footer a { color: var(--teal); text-decoration: none; }
.footer a:hover { text-decoration: underline; }

.footer__legal { margin-top: 1.4rem; font-size: 0.82rem; opacity: 0.7; }

/* ===== Animations reveal ===== */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; min-height: auto; }
  .hero__subtitle { margin-inline: auto; }
  .hero__actions { justify-content: center; }
  .hero__image img { height: 420px; border-radius: 160px 160px var(--radius) var(--radius); }

  .cards { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }

  .galerie__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 210px; }

  .a-propos__inner, .contact__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .a-propos__image img { height: 420px; }

  .etapes { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .nav__toggle { display: flex; }

  .nav__list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 1.4rem;
    background: var(--cream);
    padding: 2rem 0 2.4rem;
    box-shadow: 0 20px 30px rgba(50, 73, 75, 0.12);
    transform: translateY(-140%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s ease, opacity 0.35s ease;
  }
  .nav__list.is-open { transform: none; opacity: 1; pointer-events: auto; }
}

@media (max-width: 640px) {
  .section { padding-block: 4rem; }

  .etapes { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; gap: 0; }
  .galerie__grid { grid-template-columns: 1fr; grid-auto-rows: 260px; }
  .galerie__item--tall { grid-row: span 1; }
  .contact__form { padding: 1.6rem; }
}
