/* Rhian Maquille — Romantique & doux */

:root {
  /* Palette par défaut: Rose */
  --bg: #FFF7F2;
  --bg-soft: #FBE9E2;
  --bg-cream: #FDF4EC;
  --ink: #4A2E2A;
  --ink-soft: #7A5450;
  --ink-mute: #A88983;
  --accent: #D88B85;        /* Rose principal carte */
  --accent-deep: #C26B65;   /* Rose foncé pour titres */
  --accent-soft: #F5C5BD;
  --accent-pale: #FBE0D7;
  --gold: #C9A26A;
  --gold-soft: #E5CFA8;
  --line: rgba(200, 128, 122, 0.18);
  --shadow: 0 30px 80px -40px rgba(194, 107, 101, 0.45);

  /* Typographie */
  --serif: "Cormorant Garamond", "Cormorant", Georgia, serif;
  --serif-mod: "Playfair Display", Georgia, serif;
  --sans: "Jost", "Montserrat", -apple-system, BlinkMacSystemFont, sans-serif;
  --script: "Italianno", cursive;
}

/* Variantes couleur via [data-palette] */
[data-palette="peach"] {
  --bg: #FFF6EE;
  --bg-soft: #FBE3CF;
  --bg-cream: #FDEEDD;
  --ink: #4A3328;
  --ink-soft: #7A5A48;
  --accent: #E5A57F;
  --accent-deep: #C77F58;
  --accent-soft: #F4CCB1;
  --accent-pale: #FBE3CF;
  --gold: #C9A26A;
}
[data-palette="nude"] {
  --bg: #FAF3EC;
  --bg-soft: #EDDDCE;
  --bg-cream: #F5E8DA;
  --ink: #3E2E26;
  --ink-soft: #6E5A4E;
  --accent: #B8917B;
  --accent-deep: #936E58;
  --accent-soft: #DCC3AF;
  --accent-pale: #EDDDCE;
  --gold: #B8924F;
}
[data-palette="champagne"] {
  --bg: #FBF7EE;
  --bg-soft: #F0E4C9;
  --bg-cream: #F7EDD6;
  --ink: #3F362A;
  --ink-soft: #6E5F45;
  --accent: #C9A86A;
  --accent-deep: #9C7E48;
  --accent-soft: #E5D4A8;
  --accent-pale: #F0E4C9;
  --gold: #C9A26A;
}

/* Variantes typo via [data-typo] */
[data-typo="modern"] {
  --serif: "Playfair Display", Georgia, serif;
  --serif-mod: "Playfair Display", Georgia, serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}

/* ============ Typographie ============ */

.serif { font-family: var(--serif); font-weight: 400; }
.script { font-family: var(--script); }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.005em;
  line-height: 1.05;
}

.eyebrow {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent-deep);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before, .eyebrow::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--accent);
  opacity: 0.5;
}
.eyebrow.left::after, .eyebrow.right::before { display: none; }

.section-title {
  font-size: clamp(48px, 6vw, 88px);
  font-style: italic;
  font-weight: 300;
  line-height: 1;
}
.section-title em {
  font-style: italic;
  color: var(--accent-deep);
}

p { color: var(--ink-soft); }

.lead {
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink-soft);
  font-weight: 300;
}

/* ============ Layout ============ */

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}
.container-narrow {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 32px;
}

section {
  padding: 140px 0;
  position: relative;
}

/* ============ Décor watercolor ============ */

.watercolor-blob {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  filter: blur(0.5px);
}

.gold-fleck {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
}

/* ============ Boutons ============ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 32px;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  position: relative;
  background: transparent;
}

.btn-primary {
  background: var(--accent);
  color: white;
  border-radius: 999px;
}
.btn-primary:hover {
  background: var(--accent-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -8px rgba(194, 107, 101, 0.5);
}

.btn-ghost {
  color: var(--ink);
  border-bottom: 1px solid var(--accent);
  padding: 8px 0;
  border-radius: 0;
}
.btn-ghost:hover {
  color: var(--accent-deep);
  letter-spacing: 0.34em;
}

.btn .arrow {
  width: 20px;
  height: 1px;
  background: currentColor;
  position: relative;
  transition: width 0.3s;
}
.btn .arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: -3px;
  width: 7px;
  height: 7px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}
.btn:hover .arrow { width: 28px; }

/* ============ Navigation ============ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 22px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s ease;
  background: transparent;
}
.nav.scrolled {
  background: rgba(255, 247, 242, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 14px 40px;
  border-bottom: 1px solid var(--line);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
}
.nav-logo img {
  height: 44px;
  width: auto;
}
.nav-logo .nav-name {
  font-family: var(--serif);
  font-size: 16px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent-deep);
  white-space: nowrap;
}

.nav-links {
  display: flex;
  gap: 44px;
  list-style: none;
}
.nav-links a {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  position: relative;
  padding: 6px 0;
  transition: color 0.3s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: all 0.3s;
}
.nav-links a:hover { color: var(--accent-deep); }
.nav-links a:hover::after { width: 100%; left: 0; }

.nav-cta {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 12px 24px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  color: var(--accent-deep);
  text-decoration: none;
  transition: all 0.3s;
}
.nav-cta:hover {
  background: var(--accent);
  color: white;
}

@media (max-width: 1100px) {
  .nav-links:not(.open) { display: none; }
}

/* Hamburger button */
.nav-burger {
  display: none;
  background: transparent;
  border: 1px solid var(--accent);
  border-radius: 999px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
  z-index: 110;
}
.nav-burger span {
  display: block;
  width: 18px;
  height: 1px;
  background: var(--accent-deep);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 1100px) {
  .nav-burger { display: flex; }
  .nav-cta { display: none; }
  .nav-links.open {
    display: flex;
    position: fixed;
    inset: 0;
    background: var(--bg);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    padding: 80px 32px;
    z-index: 105;
    animation: navFade 0.3s ease;
  }
  .nav-links.open a {
    font-family: var(--serif);
    font-style: italic;
    font-size: 32px;
    letter-spacing: 0.04em;
    text-transform: none;
    color: var(--ink);
  }
  .nav-links.open .mobile-cta {
    margin-top: 16px;
    padding: 14px 32px;
    background: var(--accent);
    color: white;
    border-radius: 999px;
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    font-style: normal;
  }
}
@keyframes navFade { from { opacity: 0; } to { opacity: 1; } }

/* ============ Hero ============ */

.hero {
  min-height: 100vh;
  padding: 140px 0 100px;
  position: relative;
  overflow: hidden;
}

/* Hero - SPLIT (default) */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  align-items: center;
  gap: 80px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 130px 56px 80px;
  min-height: 100vh;
}
.hero-split .hero-text { position: relative; z-index: 2; }
.hero-split .hero-visual {
  position: relative;
  height: 80vh;
  min-height: 600px;
}

/* Hero - FULLSCREEN */
.hero-fullscreen {
  position: relative;
  height: 100vh;
  min-height: 760px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero-fullscreen .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-fullscreen .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-fullscreen .hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(255, 247, 242, 0.4) 0%,
    rgba(255, 247, 242, 0.7) 60%,
    rgba(255, 247, 242, 0.95) 100%);
}
.hero-fullscreen .hero-text {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 0 32px;
}

/* Hero - CENTERED */
.hero-centered {
  text-align: center;
  padding: 180px 0 140px;
  position: relative;
}
.hero-centered .hero-text {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 2;
}
.hero-centered .hero-deco-monogram {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60vw;
  max-width: 800px;
  opacity: 0.08;
  z-index: 0;
}
.hero-centered .hero-scroll { display: none; }

/* Hero text shared */
.hero-title {
  font-size: clamp(54px, 7.5vw, 120px);
  line-height: 1.02;
  font-weight: 300;
  letter-spacing: -0.02em;
  margin: 28px 0;
}
.hero-title em {
  font-style: italic;
  color: var(--accent-deep);
  display: block;
  font-family: var(--serif);
  line-height: 1.05;
}
.hero-title .script-word {
  font-family: var(--script);
  font-style: normal;
  color: var(--accent);
  font-size: 1.25em;
  font-weight: 400;
  letter-spacing: -0.02em;
  display: block;
  line-height: 1;
  margin: 0.05em 0 0.02em;
}

.hero-sub {
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink-soft);
  max-width: 480px;
  margin: 40px 0 44px;
  font-weight: 300;
}
.hero-centered .hero-sub { margin-left: auto; margin-right: auto; }
.hero-fullscreen .hero-sub { margin-left: auto; margin-right: auto; }

.hero-actions {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}
.hero-centered .hero-actions, .hero-fullscreen .hero-actions {
  justify-content: center;
}

/* Hero visual (split) */
.hero-portrait {
  position: absolute;
  inset: 0;
  border-radius: 280px 280px 280px 280px / 320px 320px 280px 280px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hero-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-watercolor-1 {
  position: absolute;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle at 30% 30%,
    var(--accent-soft) 0%,
    var(--accent-pale) 40%,
    transparent 70%);
  border-radius: 50%;
  filter: blur(20px);
  opacity: 0.7;
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.hero-stat .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 38px;
  color: var(--accent-deep);
  line-height: 1;
}
.hero-stat .lbl {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 6px;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--ink-mute);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  pointer-events: none;
}
.hero-scroll::after {
  content: "";
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, var(--accent), transparent);
  animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown {
  0%, 100% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  50% { transform: scaleY(0.4); transform-origin: top; opacity: 0.4; }
}

@media (max-width: 900px) {
  .hero-split { grid-template-columns: 1fr; padding: 100px 32px 60px; }
  .hero-split .hero-visual { height: 60vh; min-height: 400px; }
  .hero-stats { gap: 24px; }
}

/* ============ À propos ============ */

.about {
  background: var(--bg-cream);
  position: relative;
  overflow: hidden;
}
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.about-image {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 200px 200px 200px 200px / 240px 240px 200px 200px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-image img {
  width: 100%; height: 100%; object-fit: cover;
}
.about-image-deco {
  position: absolute;
  inset: -20px;
  border: 1px solid var(--accent);
  border-radius: inherit;
  opacity: 0.4;
  transform: translate(20px, 20px);
  z-index: -1;
}
.about-signature {
  font-family: var(--script);
  font-size: 64px;
  color: var(--accent);
  line-height: 0.8;
  margin-top: 32px;
  display: inline-block;
}
.about-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.5;
  color: var(--accent-deep);
  margin: 24px 0;
  padding-left: 24px;
  border-left: 1px solid var(--accent);
}
.about-list {
  list-style: none;
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 32px;
}
.about-list li {
  font-size: 14px;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 12px;
}
.about-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
}

/* ============ Prestations ============ */

.services {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.services-header {
  text-align: center;
  margin-bottom: 80px;
}
.services-header .lead {
  max-width: 600px;
  margin: 28px auto 0;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  position: relative;
  z-index: 2;
}
.service-card {
  background: var(--bg);
  padding: 56px 40px;
  position: relative;
  cursor: pointer;
  transition: background 0.4s;
}
.service-card:hover {
  background: var(--bg-cream);
}
.service-card .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--accent-deep);
  letter-spacing: 0.1em;
}
.service-card h3 {
  font-size: 32px;
  font-style: italic;
  margin: 16px 0 12px;
  color: var(--ink);
}
.service-card .price {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 20px;
  display: block;
}
.service-card p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 24px;
}
.service-card .duration {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-mute);
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.service-card .ic {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  color: var(--accent-deep);
  transition: all 0.4s;
}
.service-card:hover .ic {
  background: var(--accent);
  color: white;
  transform: rotate(-8deg) scale(1.05);
}

/* ============ Galerie ============ */

.gallery {
  background: var(--bg-cream);
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}
.gallery-header {
  text-align: center;
  margin-bottom: 64px;
}
.gallery-filters {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin: 32px 0 64px;
  flex-wrap: wrap;
}
.gallery-filter {
  padding: 10px 22px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all 0.3s;
}
.gallery-filter.active {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}
.gallery-filter:hover:not(.active) {
  border-color: var(--accent);
  color: var(--accent-deep);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 120px;
  gap: 16px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 2;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--accent-pale);
  transition: transform 0.5s, opacity 0.4s;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item.hidden,
.gallery-item.reveal-scale.hidden {
  display: none;
}

.gallery-item .caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(180deg, transparent, rgba(74, 46, 42, 0.85));
  color: white;
  opacity: 0;
  transition: opacity 0.4s;
}
.gallery-item:hover .caption { opacity: 1; }
.gallery-item .caption .tag {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  opacity: 0.85;
}
.gallery-item .caption h4 {
  font-family: var(--serif);
  font-style: italic;
  color: white;
  font-size: 22px;
  margin-top: 4px;
}

/* Bento grid spans */
.gi-1 { grid-column: span 5; grid-row: span 4; }
.gi-2 { grid-column: span 4; grid-row: span 3; }
.gi-3 { grid-column: span 3; grid-row: span 3; }
.gi-4 { grid-column: span 4; grid-row: span 3; }
.gi-5 { grid-column: span 3; grid-row: span 4; }
.gi-6 { grid-column: span 5; grid-row: span 3; }
.gi-7 { grid-column: span 4; grid-row: span 3; }
.gi-8 { grid-column: span 4; grid-row: span 3; }
.gi-9 { grid-column: span 4; grid-row: span 3; }

@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .gi-1, .gi-2, .gi-3, .gi-4, .gi-5, .gi-6, .gi-7, .gi-8, .gi-9 {
    grid-column: span 1; grid-row: span 1;
  }
  .gi-1, .gi-6 { grid-column: span 2; }
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(74, 46, 42, 0.95);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.lightbox.open { display: flex; animation: fadeIn 0.3s ease; }
.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 4px;
}
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.4);
  color: white;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ============ Témoignage / Process ============ */

.testimonial {
  background: var(--accent-pale);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.testimonial-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.3;
  color: var(--ink);
  max-width: 880px;
  margin: 0 auto;
  font-weight: 300;
  position: relative;
  z-index: 2;
}
.testimonial-quote::before {
  content: "\201C";
  font-family: var(--serif);
  font-size: 200px;
  color: var(--accent);
  opacity: 0.25;
  position: absolute;
  top: -80px;
  left: -40px;
  line-height: 1;
}
.testimonial-author {
  margin-top: 40px;
  font-family: var(--script);
  font-size: 36px;
  color: var(--accent-deep);
  position: relative;
  z-index: 2;
}
.testimonial-role {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 6px;
}

/* ============ Contact ============ */

.contact {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  position: relative;
  z-index: 2;
}
.contact-info h2 {
  font-size: clamp(44px, 5vw, 72px);
  font-style: italic;
  margin-bottom: 24px;
}
.contact-info .lead { margin-bottom: 48px; }

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.contact-detail .ic {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-deep);
  flex-shrink: 0;
}
.contact-detail .meta { flex: 1; }
.contact-detail .meta .lbl {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 4px;
}
.contact-detail .meta .val {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--ink);
}

.contact-form {
  background: var(--bg-cream);
  padding: 56px;
  border-radius: 4px;
  border: 1px solid var(--line);
  position: relative;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form-field { margin-bottom: 20px; position: relative; }
.form-field label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 8px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 14px 0;
  border: none;
  border-bottom: 1px solid var(--line);
  background: transparent;
  font-family: var(--serif);
  font-size: 17px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.3s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-bottom-color: var(--accent);
}
.form-field textarea {
  resize: vertical;
  min-height: 100px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
}
.form-field select {
  appearance: none;
  background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='none' stroke='%23C26B65' stroke-width='1' d='M1 1l4 4 4-4'/%3E%3C/svg%3E") no-repeat right center;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 400;
}

.service-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.service-pill {
  padding: 8px 16px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--bg);
  color: var(--ink-soft);
  cursor: pointer;
  transition: all 0.3s;
  font-family: var(--sans);
}
.service-pill.selected {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}

.form-submit {
  margin-top: 32px;
  width: 100%;
  justify-content: center;
}

.form-success {
  text-align: center;
  padding: 60px 20px;
}
.form-success .check {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 20px;
}
.form-success h3 {
  font-family: var(--serif);
  font-style: italic;
  font-size: 32px;
  margin-bottom: 12px;
}

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ============ Footer ============ */

.footer {
  background: var(--ink);
  color: var(--bg);
  padding: 80px 0 32px;
  position: relative;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 64px;
}
.footer-brand img {
  height: 90px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1) sepia(0.3) saturate(2) hue-rotate(320deg);
  opacity: 0.95;
}
.footer-brand p {
  color: rgba(253, 244, 236, 0.6);
  font-size: 14px;
  line-height: 1.7;
  max-width: 280px;
}
.footer h5 {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 24px;
  font-weight: 400;
}
.footer ul { list-style: none; }
.footer li {
  font-size: 14px;
  color: rgba(253, 244, 236, 0.65);
  margin-bottom: 10px;
}
.footer a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}
.footer a:hover { color: var(--accent-soft); }
.ig-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.ig-link svg {
  flex-shrink: 0;
  transition: transform 0.3s;
}
.ig-link:hover svg { transform: scale(1.12) rotate(-4deg); }
.footer-bottom {
  border-top: 1px solid rgba(253, 244, 236, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(253, 244, 236, 0.4);
  flex-wrap: wrap;
  gap: 12px;
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* ============ Reveal animations ============ */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s cubic-bezier(0.2, 0.6, 0.2, 1),
              transform 0.9s cubic-bezier(0.2, 0.6, 0.2, 1);
  will-change: opacity, transform;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }
.reveal.delay-4 { transition-delay: 0.4s; }
.reveal.delay-5 { transition-delay: 0.5s; }

.reveal-x {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal-x.in { opacity: 1; transform: translateX(0); }
.reveal-x.right { transform: translateX(40px); }
.reveal-x.right.in { transform: translateX(0); }

.reveal-scale {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 1s ease, transform 1.2s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal-scale.in { opacity: 1; transform: scale(1); }

/* Watercolor decoratives */
.deco-wc {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
  filter: blur(40px);
}
.deco-wc.wc-1 {
  top: -10%; right: -5%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--accent-soft) 0%, transparent 70%);
  opacity: 0.6;
}
.deco-wc.wc-2 {
  bottom: -10%; left: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--accent-pale) 0%, transparent 70%);
  opacity: 0.5;
}
.deco-wc.wc-3 {
  top: 30%; left: -8%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--gold-soft) 0%, transparent 70%);
  opacity: 0.4;
}

/* ============ Animations supplémentaires ============ */

/* Floating watercolor blobs */
@keyframes floatBlob {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(-20px, 20px) rotate(8deg); }
}
@keyframes floatBlobAlt {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(20px, -25px) rotate(-6deg); }
}
.watercolor-blob {
  animation: floatBlob 16s ease-in-out infinite;
}
.watercolor-blob:nth-child(odd) {
  animation-name: floatBlobAlt;
  animation-duration: 20s;
}
.deco-wc.wc-1 { animation: floatBlob 22s ease-in-out infinite; }
.deco-wc.wc-2 { animation: floatBlobAlt 26s ease-in-out infinite; }
.deco-wc.wc-3 { animation: floatBlob 30s ease-in-out infinite reverse; }

/* Monogramme qui respire */
@keyframes breath {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.08; }
  50% { transform: translate(-50%, -50%) scale(1.04); opacity: 0.12; }
}
.hero-deco-monogram {
  animation: breath 8s ease-in-out infinite;
}

/* Gold flecks shimmer */
@keyframes shimmer {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.9; transform: scale(1.4); }
}
.fleck-shimmer {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  animation: shimmer 3s ease-in-out infinite;
  z-index: 1;
}

/* Hero title intro animation */
@keyframes titleRise {
  from { opacity: 0; transform: translateY(40px); filter: blur(6px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}
.hero-title { opacity: 0; animation: titleRise 1.2s cubic-bezier(0.2, 0.7, 0.2, 1) 0.2s forwards; }
.hero-title em { display: block; }
.hero-text .eyebrow { opacity: 0; animation: titleRise 1s ease 0.05s forwards; }
.hero-sub { opacity: 0; animation: titleRise 1s ease 0.5s forwards; }
.hero-actions { opacity: 0; animation: titleRise 1s ease 0.7s forwards; }

/* Script word draws in */
@keyframes scriptDraw {
  from { opacity: 0; transform: translateX(-30px) rotate(-3deg); }
  to { opacity: 1; transform: translateX(0) rotate(0); }
}
.hero-title .script-word {
  opacity: 0;
  animation: scriptDraw 1.4s cubic-bezier(0.2, 0.7, 0.2, 1) 0.9s forwards;
  transform-origin: left center;
}

/* Service card lift */
.service-card {
  transition: background 0.4s, transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.service-card:hover {
  transform: translateY(-6px);
}
.service-card .num,
.service-card h3,
.service-card .price,
.service-card p,
.service-card .duration {
  transition: transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.service-card:hover h3 {
  transform: translateX(6px);
  color: var(--accent-deep);
}

/* Gallery image gentle float on hover */
.gallery-item {
  transition: transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1), opacity 0.4s;
}
.gallery-item:hover {
  transform: translateY(-4px);
  z-index: 5;
}

/* About image subtle parallax */
@keyframes aboutFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.about-image {
  animation: aboutFloat 8s ease-in-out infinite;
}
.about-image-deco {
  animation: aboutFloat 10s ease-in-out infinite reverse;
}

/* Marquee section */
.marquee {
  background: var(--bg-cream);
  padding: 60px 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 2;
}
.marquee-track {
  display: flex;
  gap: 80px;
  animation: marquee 35s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.marquee-item {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(36px, 5vw, 64px);
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 80px;
}
.marquee-item::after {
  content: "✦";
  color: var(--accent);
  font-size: 0.6em;
  font-style: normal;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Underline draw on links */
.nav-links a::after { transition: width 0.4s cubic-bezier(0.2, 0.7, 0.2, 1), left 0.4s; }

/* Form field focus glow */
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-bottom-width: 2px;
  padding-bottom: 13px;
}

/* Section title em color reveal */
.section-title em {
  background: linear-gradient(120deg, var(--accent) 0%, var(--accent-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 100%;
  animation: gradientShift 6s ease-in-out infinite;
}
@keyframes gradientShift {
  0%, 100% { background-position: 0% 0%; }
  50% { background-position: 100% 0%; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ====================================================
   MOBILE — comprehensive responsive overrides
   ==================================================== */

@media (max-width: 900px) {
  body { font-size: 15px; }

  .container, .container-narrow { padding: 0 22px; }
  section { padding: 90px 0; }

  /* Nav */
  .nav { padding: 16px 22px; }
  .nav.scrolled { padding: 12px 22px; }
  .nav-logo img { height: 38px; }
  .nav-logo .nav-name {
    font-size: 13px;
    letter-spacing: 0.24em;
  }

  /* Hero */
  .hero { padding: 110px 0 60px; min-height: auto; }
  .hero-split {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 110px 22px 60px;
    min-height: auto;
  }
  .hero-split .hero-visual {
    height: 70vw;
    min-height: 360px;
    max-height: 520px;
    order: 2;
  }
  .hero-split .hero-text { order: 1; }
  .hero-portrait {
    border-radius: 180px 180px 180px 180px / 200px 200px 180px 180px;
  }
  .hero-fullscreen { min-height: 90vh; height: auto; padding: 110px 0 60px; }
  .hero-centered { padding: 130px 0 60px; }
  .hero-centered .hero-deco-monogram { width: 90vw; opacity: 0.06; }

  .hero-title {
    font-size: clamp(44px, 11vw, 64px);
    margin: 22px 0;
  }
  .hero-title .script-word { font-size: 1.15em; }
  .hero-sub {
    font-size: 15px;
    max-width: 100%;
    margin: 28px 0 32px;
  }
  .hero-actions { gap: 16px; flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; width: 100%; }
  .hero-actions .btn-ghost { width: auto; align-self: flex-start; }
  .hero-centered .hero-actions .btn-ghost,
  .hero-fullscreen .hero-actions .btn-ghost { align-self: center; }

  .hero-stats {
    gap: 20px;
    margin-top: 40px;
    padding-top: 24px;
    flex-wrap: wrap;
  }
  .hero-stat .num { font-size: 28px; }
  .hero-stat .lbl { font-size: 9px; }
  .hero-scroll { display: none; }

  .eyebrow { font-size: 10px; letter-spacing: 0.24em; gap: 10px; }
  .eyebrow::before, .eyebrow::after { width: 18px; }

  .section-title {
    font-size: clamp(38px, 9vw, 58px);
  }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-image {
    max-width: 360px;
    margin: 0 auto;
    border-radius: 140px 140px 140px 140px / 160px 160px 140px 140px;
  }
  .about-image-deco { transform: translate(12px, 12px); inset: -12px; }
  .about-list {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .about-quote { font-size: 18px; padding-left: 18px; }
  .about-signature { font-size: 52px; margin-top: 24px; }

  /* Services */
  .services-header { margin-bottom: 48px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 40px 28px; }
  .service-card h3 { font-size: 26px; }
  .service-card .ic {
    width: 48px; height: 48px;
    margin-bottom: 20px;
  }

  /* Gallery */
  .gallery { padding: 90px 0; }
  .gallery-header { margin-bottom: 36px; }
  .gallery-filters {
    margin: 24px 0 36px;
    gap: 6px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    flex-wrap: nowrap;
    padding: 0 22px 8px;
    justify-content: flex-start;
    scrollbar-width: none;
  }
  .gallery-filters::-webkit-scrollbar { display: none; }
  .gallery-filter {
    flex-shrink: 0;
    padding: 8px 16px;
    font-size: 10px;
    letter-spacing: 0.18em;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
    gap: 8px;
    padding: 0 16px;
  }
  .gi-1, .gi-2, .gi-3, .gi-4, .gi-5,
  .gi-6, .gi-7, .gi-8, .gi-9 {
    grid-column: span 1;
    grid-row: span 1;
  }
  .gi-1, .gi-6 { grid-column: span 2; grid-row: span 2; }
  .gallery-item .caption { padding: 14px; opacity: 1; }
  .gallery-item .caption h4 { font-size: 16px; }
  .gallery-item .caption .tag { font-size: 9px; }

  /* Testimonial */
  .testimonial-quote { font-size: 22px; padding: 0 4px; }
  .testimonial-quote::before {
    font-size: 120px;
    top: -50px;
    left: -10px;
  }
  .testimonial-author { font-size: 28px; margin-top: 28px; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 56px; }
  .contact-info h2 { font-size: clamp(36px, 9vw, 48px); }
  .contact-form { padding: 32px 22px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-field input, .form-field textarea, .form-field select {
    font-size: 16px; /* prevents iOS zoom */
  }
  .service-pills { gap: 6px; }
  .service-pill {
    padding: 7px 12px;
    font-size: 10px;
    letter-spacing: 0.12em;
  }
  .contact-detail { padding: 18px 0; gap: 16px; }
  .contact-detail .ic { width: 38px; height: 38px; }
  .contact-detail .meta .val { font-size: 16px; }

  /* Footer */
  .footer { padding: 60px 0 24px; }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    margin-bottom: 40px;
  }
  .footer-brand img { height: 70px; }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    font-size: 11px;
  }

  /* Buttons */
  .btn { padding: 14px 24px; font-size: 11px; letter-spacing: 0.22em; }

  /* Decoratives toned down */
  .deco-wc.wc-1 { width: 280px; height: 280px; }
  .deco-wc.wc-2 { width: 320px; height: 320px; }
  .deco-wc.wc-3 { width: 240px; height: 240px; }

  /* Lightbox padding */
  .lightbox { padding: 16px; }
  .lightbox-close { top: 12px; right: 16px; width: 40px; height: 40px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: clamp(38px, 12vw, 52px); }
  .hero-stats { gap: 16px; }
  .hero-stat .num { font-size: 24px; }
  .gallery-grid { grid-auto-rows: 150px; }
  .section-title { font-size: clamp(34px, 10vw, 48px); }
  .nav-logo .nav-name { display: none; }
}
