/* =====================================================
   KEL'ONGLES — Feuille de style
   Palette : crème · rose gold · or · fusain
   ===================================================== */

:root {
  --cream:        #F7F0E7;
  --cream-deep:   #EFE4D5;
  --ivory:        #FCF8F2;
  --rose:         #C99E93;
  --rose-light:   #E4C7BE;
  --rose-deep:    #B07E72;
  --gold:         #C6A15B;
  --gold-light:   #E3C88C;
  --gold-deep:    #A6813F;
  --charcoal:     #2B2521;
  --charcoal-soft:#4A4038;
  --text-muted:   #8B7E71;
  --white:        #ffffff;

  --shadow-soft: 0 18px 50px -20px rgba(80, 55, 40, .28);
  --shadow-card: 0 24px 60px -28px rgba(80, 55, 40, .35);

  --font-display: 'Playfair Display', 'Cormorant Garamond', serif;
  --font-serif:   'Cormorant Garamond', Georgia, serif;
  --font-sans:    'Jost', 'Segoe UI', sans-serif;

  --ease: cubic-bezier(.22, 1, .36, 1);
  --maxw: 1200px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3 { font-family: var(--font-display); font-weight: 500; line-height: 1.12; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { width: 90%; max-width: var(--maxw); margin: 0 auto; }

section { position: relative; }

/* ---- Utilities ---------------------------------------------------- */
.eyebrow {
  font-family: var(--font-sans);
  font-size: .74rem;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 500;
  margin-bottom: 1.1rem;
  display: inline-block;
}
.section-title {
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  color: var(--charcoal);
  letter-spacing: .01em;
}
.section-title em { font-style: italic; color: var(--rose-deep); }
.lead { font-family: var(--font-serif); font-size: 1.35rem; color: var(--charcoal-soft); }

.divider-mark {
  display: flex; align-items: center; justify-content: center;
  gap: .8rem; margin: 1.4rem 0;
}
.divider-mark::before, .divider-mark::after {
  content: ""; height: 1px; width: 54px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.divider-mark::after { background: linear-gradient(90deg, var(--gold), transparent); }
.divider-mark span { color: var(--gold); font-size: 1.1rem; }

.btn {
  --pad-y: .95rem; --pad-x: 2.2rem;
  display: inline-flex; align-items: center; gap: .6rem;
  padding: var(--pad-y) var(--pad-x);
  font-family: var(--font-sans);
  font-size: .82rem; letter-spacing: .22em; text-transform: uppercase;
  font-weight: 500; cursor: pointer; border: none;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), background .4s;
  border-radius: 2px;
}
.btn-primary {
  background: linear-gradient(120deg, var(--rose-deep), var(--rose));
  color: var(--ivory);
  box-shadow: 0 14px 30px -12px rgba(176, 126, 114, .7);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 20px 38px -12px rgba(176, 126, 114, .85); }
.btn-ghost {
  background: transparent; color: var(--charcoal);
  border: 1px solid var(--gold);
}
.btn-ghost:hover { background: var(--gold); color: var(--ivory); transform: translateY(-3px); }
.btn-gold {
  background: linear-gradient(120deg, var(--gold-deep), var(--gold-light));
  color: var(--charcoal);
  box-shadow: 0 14px 30px -12px rgba(166, 129, 63, .6);
}
.btn-gold:hover { transform: translateY(-3px); }

/* ===================================================================
   NAVBAR
   =================================================================== */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem 5%;
  transition: background .5s var(--ease), padding .5s var(--ease), box-shadow .5s;
}
.nav.scrolled {
  background: rgba(247, 240, 231, .92);
  backdrop-filter: blur(14px);
  padding: .8rem 5%;
  box-shadow: 0 8px 30px -20px rgba(80,55,40,.5);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem; letter-spacing: .04em; color: var(--charcoal);
}
.nav-logo span { color: var(--gold-deep); font-style: italic; }
.nav-links { display: flex; gap: 2.3rem; align-items: center; }
.nav-links a {
  font-size: .78rem; letter-spacing: .16em; text-transform: uppercase;
  font-weight: 500; color: var(--charcoal-soft); position: relative;
  transition: color .3s;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  width: 0; height: 1px; background: var(--gold); transition: width .4s var(--ease);
}
.nav-links a:hover { color: var(--charcoal); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { padding: .7rem 1.5rem; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.nav-toggle span { width: 26px; height: 2px; background: var(--charcoal); transition: .3s; }

/* ===================================================================
   HERO
   =================================================================== */
.hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1.05fr .95fr; align-items: center;
  gap: 2rem;
  padding: 8rem 5% 4rem;
  background:
    radial-gradient(120% 90% at 90% 10%, rgba(228,199,190,.55), transparent 55%),
    radial-gradient(90% 80% at 5% 90%, rgba(227,200,140,.35), transparent 55%),
    linear-gradient(160deg, var(--ivory), var(--cream) 55%, var(--cream-deep));
  position: relative; overflow: hidden;
}
.hero-content { max-width: 620px; }
.hero h1 {
  font-size: clamp(2.8rem, 6.2vw, 5.2rem);
  letter-spacing: .01em; margin: .4rem 0 1.4rem;
}
.hero h1 em { font-style: italic; color: var(--rose-deep); }
.hero .lead { max-width: 480px; margin-bottom: 2.4rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 2.6rem; margin-top: 3.4rem;
  padding-top: 2rem; border-top: 1px solid rgba(198,161,91,.35);
}
.hero-stats .num {
  font-family: var(--font-display); font-size: 2rem; color: var(--rose-deep); display: block;
}
.hero-stats .lbl { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--text-muted); }

.hero-visual { display: flex; justify-content: center; align-items: center; position: relative; }
.hero-logo-frame {
  position: relative; width: min(480px, 90%); aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
}
.hero-logo-frame img {
  width: 100%; border-radius: 50%;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(198,161,91,.4);
}
.hero-ring {
  position: absolute; inset: -22px; border-radius: 50%;
  border: 1px solid rgba(198,161,91,.45);
  animation: spin 46s linear infinite;
}
.hero-ring::before {
  content: ""; position: absolute; top: -5px; left: 50%;
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--gold); box-shadow: 0 0 16px var(--gold-light);
}
.hero-ring.two { inset: -42px; border-style: dashed; border-color: rgba(201,158,147,.4); animation-duration: 60s; animation-direction: reverse; }
@keyframes spin { to { transform: rotate(360deg); } }

.hero-badge {
  position: absolute; bottom: -8%; right: -6%; left: auto;
  background: var(--ivory); padding: 1rem 1.4rem; border-radius: 4px;
  box-shadow: var(--shadow-soft); display: flex; align-items: center; gap: .7rem;
  border: 1px solid rgba(198,161,91,.25); z-index: 3;
}
.hero-badge .stars { color: var(--gold); letter-spacing: 2px; font-size: .9rem; }
.hero-badge small { display: block; font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--text-muted); }
.hero-badge strong { font-family: var(--font-display); font-size: 1.05rem; }

.scroll-hint {
  position: absolute; bottom: 1.6rem; left: 50%; transform: translateX(-50%);
  font-size: .66rem; letter-spacing: .3em; text-transform: uppercase; color: var(--text-muted);
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
}
.scroll-hint::after { content: ""; width: 1px; height: 34px; background: linear-gradient(var(--gold), transparent); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:.3;} 50%{opacity:1;} }

/* ===================================================================
   MARQUEE
   =================================================================== */
.marquee {
  background: var(--charcoal); color: var(--cream);
  padding: 1.1rem 0; overflow: hidden; white-space: nowrap;
}
.marquee-track { display: inline-flex; gap: 3rem; animation: slide 30s linear infinite; }
.marquee span { font-family: var(--font-serif); font-size: 1.3rem; letter-spacing: .06em; display: inline-flex; align-items: center; gap: 3rem; }
.marquee span::after { content: "✦"; color: var(--gold); }
@keyframes slide { to { transform: translateX(-50%); } }

/* ===================================================================
   ABOUT
   =================================================================== */
.about { padding: 7rem 0; background: var(--ivory); }
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 4.5rem; align-items: center; }
.about-visual { position: relative; }
.about-visual img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center; border-radius: 6px; box-shadow: var(--shadow-card); border: 1px solid rgba(198,161,91,.3); }
.signature-row { display: flex; align-items: center; gap: 1.3rem; margin-top: 1.8rem; }
.signature-photo { width: 132px; height: 132px; border-radius: 50%; object-fit: cover; object-position: center 22%; border: 3px solid var(--gold-light); box-shadow: var(--shadow-soft); flex-shrink: 0; }
.signature-row .signature { margin-top: 0; font-size: 1.7rem; }
.about-visual .float-card {
  position: absolute; right: -6%; bottom: -8%;
  background: var(--charcoal); color: var(--cream); padding: 1.6rem 1.8rem;
  border-radius: 6px; box-shadow: var(--shadow-card); max-width: 220px;
}
.about-visual .float-card .num { font-family: var(--font-display); font-size: 2.4rem; color: var(--gold-light); }
.about-visual .float-card p { font-size: .82rem; letter-spacing: .04em; color: rgba(247,240,231,.8); }
.about-text p { color: var(--charcoal-soft); margin-bottom: 1.3rem; font-size: 1.02rem; }
.about-values { display: flex; gap: 2.5rem; margin-top: 2rem; flex-wrap: wrap; }
.about-values .v { flex: 1; min-width: 140px; }
.about-values .v .ico { font-size: 1.5rem; color: var(--gold-deep); margin-bottom: .5rem; }
.about-values .v h4 { font-family: var(--font-serif); font-size: 1.25rem; margin-bottom: .3rem; }
.about-values .v p { font-size: .88rem; margin: 0; }
.signature {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 1.9rem; color: var(--rose-deep); margin-top: 1.8rem;
}

/* ===================================================================
   SERVICES
   =================================================================== */
.services { padding: 7rem 0; background: linear-gradient(180deg, var(--cream), var(--cream-deep)); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 3.8rem; }
.section-head p { color: var(--charcoal-soft); font-family: var(--font-serif); font-size: 1.25rem; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }
.service-card {
  background: var(--ivory); padding: 2.4rem 2rem; border-radius: 6px;
  border: 1px solid rgba(198,161,91,.22); position: relative; overflow: hidden;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.service-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--rose), var(--gold)); transform: scaleX(0);
  transform-origin: left; transition: transform .5s var(--ease);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-card); }
.service-card:hover::before { transform: scaleX(1); }
.service-card .s-ico {
  width: 82px; height: 82px; border-radius: 50%;
  background: var(--cream-deep, #f4ece0);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem; overflow: hidden;
  box-shadow:
    0 0 0 1.5px rgba(198,161,91,.7),
    0 0 0 4px rgba(255,250,242,.95),
    0 0 0 5.5px rgba(198,161,91,.28),
    0 10px 22px -10px rgba(139,110,60,.4);
  transition: transform .55s var(--ease), box-shadow .55s var(--ease);
}
.service-card .s-ico img {
  width: 100%; height: 100%; object-fit: cover; border-radius: 50%; display: block;
}
.service-card:hover .s-ico {
  transform: scale(1.07) rotate(-3deg);
  box-shadow:
    0 0 0 1.5px rgba(198,161,91,.85),
    0 0 0 4px rgba(255,250,242,.98),
    0 0 0 5.5px rgba(198,161,91,.35),
    0 14px 26px -10px rgba(139,110,60,.5);
}
.service-card h3 { font-size: 1.5rem; margin-bottom: .6rem; }
.service-card .s-desc { font-size: .92rem; color: var(--charcoal-soft); margin-bottom: 1.4rem; min-height: 60px; }
.service-card .price-list { list-style: none; }
.service-card .price-list li {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: .55rem 0; border-bottom: 1px dashed rgba(139,126,113,.28); font-size: .9rem;
}
.service-card .price-list li:last-child { border-bottom: none; }
.service-card .price-list .p { font-family: var(--font-display); color: var(--rose-deep); font-size: 1.05rem; }
.services-note { text-align: center; margin-top: 3rem; color: var(--text-muted); font-size: .9rem; }

/* ===================================================================
   GALLERY
   =================================================================== */
.gallery { padding: 7rem 0; background: var(--ivory); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: 1rem; }
.g-item {
  position: relative; overflow: hidden; border-radius: 6px; cursor: pointer;
  background: linear-gradient(135deg, var(--cream-deep), var(--rose-light));
  display: flex; align-items: flex-end; padding: 1.2rem;
  border: 1px solid rgba(198,161,91,.25);
}
.g-item.tall { grid-row: span 2; }
.g-item.wide { grid-column: span 2; }
.g-item::before {
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, rgba(255,255,255,.05) 0 12px, transparent 12px 24px);
  opacity: .5;
}
.g-item::after {
  content: "✦"; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  font-size: 2rem; color: rgba(255,255,255,.55); transition: transform .5s var(--ease);
}
.g-item:hover::after { transform: translate(-50%,-50%) scale(1.3) rotate(20deg); }
.g-item .g-label {
  position: relative; z-index: 2; color: var(--charcoal);
  font-family: var(--font-serif); font-size: 1.15rem; font-weight: 600;
  background: rgba(252,248,242,.85); padding: .3rem .8rem; border-radius: 3px;
}
.g-item.v-2 { background: linear-gradient(135deg, var(--gold-light), var(--cream)); }
.g-item.v-3 { background: linear-gradient(135deg, var(--rose), var(--rose-light)); }
.g-item.v-4 { background: linear-gradient(135deg, var(--charcoal-soft), var(--rose-deep)); }
.g-item.v-4 .g-label { background: rgba(252,248,242,.9); }
.g-item.v-5 { background: linear-gradient(135deg, var(--gold), var(--gold-deep)); }
.gallery-cta { text-align: center; margin-top: 2.6rem; }

/* ===================================================================
   TESTIMONIALS
   =================================================================== */
.testimonials { padding: 7rem 0; background: linear-gradient(160deg, var(--cream), var(--cream-deep)); }
.t-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.t-card {
  background: var(--ivory); padding: 2.2rem; border-radius: 6px;
  box-shadow: var(--shadow-soft); border: 1px solid rgba(198,161,91,.18);
  position: relative;
}
.t-card .quote-mark { font-family: var(--font-display); font-size: 4rem; color: var(--rose-light); line-height: .5; height: 30px; }
.t-card .stars { color: var(--gold); letter-spacing: 2px; margin-bottom: .8rem; }
.t-card p { font-family: var(--font-serif); font-size: 1.15rem; color: var(--charcoal-soft); font-style: italic; margin-bottom: 1.4rem; }
.t-card .who { display: flex; align-items: center; gap: .8rem; }
.t-card .avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--gold-light));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); color: var(--ivory); font-size: 1.1rem;
}
.t-card .who strong { display: block; font-size: .95rem; }
.t-card .who small { color: var(--text-muted); font-size: .78rem; }

/* ===================================================================
   BOOKING / CTA
   =================================================================== */
.booking { padding: 7rem 0; background: var(--charcoal); color: var(--cream); position: relative; overflow: hidden; }
.booking::before {
  content: ""; position: absolute; top: -30%; right: -10%; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(198,161,91,.22), transparent 70%); border-radius: 50%;
}
.booking::after {
  content: ""; position: absolute; bottom: -30%; left: -10%; width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(201,158,147,.22), transparent 70%); border-radius: 50%;
}
.booking-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; position: relative; z-index: 2; }
.booking-info .eyebrow { color: var(--gold-light); }
.booking-info h2 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); color: var(--ivory); margin-bottom: 1.2rem; }
.booking-info h2 em { color: var(--gold-light); font-style: italic; }
.booking-info > p { color: rgba(247,240,231,.75); font-size: 1.05rem; margin-bottom: 2rem; max-width: 440px; }
.booking-contacts { display: flex; flex-direction: column; gap: 1rem; }
.booking-contacts a, .booking-contacts div {
  display: flex; align-items: center; gap: 1rem; color: var(--cream); font-size: .98rem;
}
.booking-contacts .ico {
  width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(198,161,91,.5);
  display: flex; align-items: center; justify-content: center; color: var(--gold-light); flex-shrink: 0;
}
.booking-form {
  background: rgba(252,248,242,.06); border: 1px solid rgba(198,161,91,.3);
  padding: 2.6rem; border-radius: 8px; backdrop-filter: blur(6px);
}
.booking-form h3 { color: var(--ivory); font-size: 1.7rem; margin-bottom: 1.6rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-light); margin-bottom: .5rem; }
.field input, .field select, .field textarea {
  width: 100%; padding: .85rem 1rem; background: rgba(252,248,242,.08);
  border: 1px solid rgba(198,161,91,.3); border-radius: 3px; color: var(--ivory);
  font-family: var(--font-sans); font-size: .92rem; transition: border .3s;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(247,240,231,.4); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold-light); }
.field select option { color: var(--charcoal); }
.booking-form .btn { width: 100%; justify-content: center; margin-top: .5rem; }
.form-note { font-size: .78rem; color: rgba(247,240,231,.55); text-align: center; margin-top: 1rem; }

/* ===================================================================
   FOOTER
   =================================================================== */
.footer { background: #211C18; color: rgba(247,240,231,.7); padding: 4.5rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 3rem; }
.footer-brand .nav-logo { color: var(--ivory); font-size: 1.7rem; display: inline-block; margin-bottom: 1rem; }
.footer-brand p { font-size: .9rem; max-width: 280px; }
.footer h5 { font-family: var(--font-sans); font-size: .74rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 1.2rem; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: .7rem; }
.footer ul a { font-size: .9rem; transition: color .3s; }
.footer ul a:hover { color: var(--ivory); }
.footer-social { display: flex; gap: .8rem; margin-top: 1.4rem; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(198,161,91,.4);
  display: flex; align-items: center; justify-content: center; color: var(--gold-light);
  transition: .3s; font-size: .95rem;
}
.footer-social a:hover { background: var(--gold); color: var(--charcoal); border-color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(198,161,91,.2); padding-top: 1.6rem;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  font-size: .8rem; color: rgba(247,240,231,.5);
}

/* ===================================================================
   REVEAL ANIMATION
   =================================================================== */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .1s; }
.reveal.d2 { transition-delay: .2s; }
.reveal.d3 { transition-delay: .3s; }

/* ===================================================================
   RESPONSIVE
   =================================================================== */
@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; text-align: center; padding-top: 7rem; }
  .hero-content { max-width: 100%; margin: 0 auto; }
  .hero .lead { margin-left: auto; margin-right: auto; }
  .hero-actions, .hero-stats { justify-content: center; }
  .hero-visual { order: -1; }
  .about-grid, .booking-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-visual .float-card { right: 4%; }
  .services-grid, .t-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--ivory); padding: 1.6rem 5%; gap: 1.4rem; box-shadow: var(--shadow-soft);
  }
  .services-grid, .t-grid, .gallery-grid, .form-row, .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.6rem; }
  .hero-badge { right: 0; left: auto; bottom: -6%; }
  .about-values { flex-direction: column; gap: 1.4rem; }
  .g-item.wide { grid-column: span 1; }
  .booking-form { padding: 1.8rem; }
}
