/* ============================================================
   KR Coiffure — stylesheet
   Palette: charcoal #1c1a17 · champagne/gold #c9a96a · cream #f7f3ec
   Fonts: Cormorant Garamond (titres) · Jost (texte)
   ============================================================ */

:root {
  --ink: #1c1a17;
  --ink-soft: #4a443c;
  --gold: #c9a96a;
  --gold-dark: #b08f4d;
  --cream: #f7f3ec;
  --cream-2: #efe8dc;
  --white: #ffffff;
  --line: #e4ddcf;
  --shadow: 0 18px 50px -20px rgba(28, 26, 23, 0.35);
  --radius: 14px;
  --maxw: 1140px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Jost", system-ui, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.2px;
}

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

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--gold-dark);
  margin-bottom: 14px;
}
.eyebrow.light { color: var(--gold); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-family: "Jost", sans-serif;
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  border: 1.5px solid transparent;
  white-space: nowrap;
}
.btn-primary { background: var(--gold); color: var(--ink); }
.btn-primary:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 12px 24px -10px rgba(176,143,77,.7); }
.btn-dark { background: var(--ink); color: var(--cream); }
.btn-dark:hover { background: #000; transform: translateY(-2px); }
.btn-ghost { background: transparent; border-color: var(--ink); color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--cream); }
.btn-ghost.light { border-color: var(--cream); color: var(--cream); }
.btn-ghost.light:hover { background: var(--cream); color: var(--ink); }

/* ---------- Topbar ---------- */
.topbar {
  background: var(--ink);
  color: var(--cream);
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 1px;
  padding: 9px 16px;
}
.topbar p { opacity: 0.92; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.logo { display: flex; align-items: baseline; gap: 8px; }
.logo-mark {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: 1.7rem;
  color: var(--gold-dark);
  letter-spacing: 1px;
}
.logo-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav { display: flex; gap: 30px; }
.nav a {
  font-size: 0.82rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--ink-soft);
  position: relative;
  padding: 4px 0;
  transition: color 0.2s;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width 0.25s ease;
}
.nav a:hover { color: var(--ink); }
.nav a:hover::after { width: 100%; }

.header-cta { padding: 10px 24px; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.burger span {
  width: 26px; height: 2px;
  background: var(--ink);
  transition: transform 0.3s, opacity 0.3s;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  text-align: center;
  color: var(--cream);
  background: url("https://images.unsplash.com/photo-1521590832167-7bcbfaa6381f?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,18,15,.55), rgba(20,18,15,.78));
}
.hero-content { position: relative; max-width: 760px; padding-top: 40px; padding-bottom: 60px; }
.hero h1 {
  font-size: clamp(3.2rem, 9vw, 6rem);
  margin: 6px 0 18px;
  letter-spacing: 2px;
}
.hero .eyebrow { color: var(--gold); }
.hero-sub {
  font-size: clamp(1rem, 2.4vw, 1.2rem);
  font-weight: 300;
  max-width: 560px;
  margin: 0 auto 32px;
  opacity: 0.94;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.scroll-cue {
  position: absolute;
  bottom: 26px; left: 50%;
  transform: translateX(-50%);
  color: var(--cream);
  font-size: 1.4rem;
  opacity: 0.8;
  animation: bob 1.8s ease-in-out infinite;
}
@keyframes bob { 0%,100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 8px); } }

/* ---------- Strip ---------- */
.strip { background: var(--ink); color: var(--cream); }
.strip-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 44px;
  padding: 22px 24px;
  text-align: center;
}
.strip-item {
  font-size: 0.86rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0.92;
}
.strip-item span { color: var(--gold); font-size: 1.05rem; }

/* ---------- Sections ---------- */
.section { padding: 92px 0; }
.section-alt { background: var(--cream); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section-head h2 { font-size: clamp(2.2rem, 5vw, 3.2rem); margin-bottom: 14px; }
.section-lead { color: var(--ink-soft); font-size: 1.02rem; }

/* ---------- Cards / prices ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 32px;
  box-shadow: var(--shadow);
  position: relative;
  transition: transform 0.25s ease;
}
.card:hover { transform: translateY(-6px); }
.card h3 {
  font-size: 1.9rem;
  text-align: center;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 2px solid var(--gold);
  color: var(--ink);
}
.card-feature {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
  transform: scale(1.03);
}
.card-feature:hover { transform: scale(1.03) translateY(-6px); }
.card-feature h3 { color: var(--gold); }
.ribbon {
  position: absolute;
  top: 18px; right: -2px;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.62rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 4px 0 0 4px;
}

.price-list { list-style: none; }
.price-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 0.98rem;
}
.card-feature .price-list li { border-bottom-color: rgba(255,255,255,.14); }
.price-list li:last-child { border-bottom: none; }
.price-list b { color: var(--gold-dark); font-weight: 600; white-space: nowrap; }
.card-feature .price-list b { color: var(--gold); }

.services-note { text-align: center; margin-top: 40px; color: var(--ink-soft); }
.services-note a { color: var(--gold-dark); border-bottom: 1px solid var(--gold); }

/* ---------- Split sections ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split-reverse .split-media { order: 2; }
.split-media img {
  width: 100%;
  height: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.split-text h2 { font-size: clamp(2rem, 4.5vw, 2.9rem); margin-bottom: 18px; }
.split-text p { color: var(--ink-soft); margin-bottom: 16px; }

.team-member {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 24px 0 28px;
}
.avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  display: grid;
  place-items: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  font-weight: 700;
}
.team-member strong { display: block; font-size: 1.05rem; }
.team-member span { font-size: 0.9rem; color: var(--ink-soft); }

.ticks { list-style: none; margin-top: 8px; }
.ticks li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  color: var(--ink-soft);
}
.ticks li::before {
  content: "✓";
  position: absolute; left: 0; top: 0;
  color: var(--gold-dark);
  font-weight: 700;
}

/* ---------- Gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.4s ease, filter 0.4s ease;
  filter: grayscale(15%);
}
.gallery img:hover { transform: scale(1.04); filter: grayscale(0); }

/* ---------- Horaires & Adresse ---------- */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}
.info-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}
.info-card h2 { font-size: 2rem; margin-bottom: 22px; }
.hours { list-style: none; }
.hours li {
  display: flex;
  justify-content: space-between;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.98rem;
}
.hours li:last-child { border-bottom: none; }
.hours li span { font-weight: 400; }
.hours li b { font-weight: 500; color: var(--ink); }
.hours li.closed { color: #a39c8f; }
.hours li.closed b { color: #a39c8f; font-weight: 400; font-style: italic; }

address { font-style: normal; margin-bottom: 22px; line-height: 1.9; }
address strong { font-size: 1.05rem; }
address a { color: var(--gold-dark); border-bottom: 1px solid var(--gold); }
.map {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.map iframe { width: 100%; height: 240px; border: 0; display: block; }

/* ---------- CTA ---------- */
.cta {
  position: relative;
  text-align: center;
  color: var(--cream);
  padding: 110px 0;
  background: url("https://images.unsplash.com/photo-1562322140-8baeececf3df?auto=format&fit=crop&w=1600&q=80") center/cover fixed no-repeat;
}
.cta-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,18,15,.7), rgba(20,18,15,.85));
}
.cta-content { position: relative; max-width: 640px; }
.cta h2 { font-size: clamp(2.2rem, 5vw, 3.3rem); margin-bottom: 14px; }
.cta-sub { opacity: 0.9; margin-bottom: 30px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: #d6cfc2; padding-top: 64px; }
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-brand .logo-mark { color: var(--gold); }
.footer-brand .logo-text { color: var(--cream); }
.footer-brand p { margin-top: 14px; max-width: 280px; font-size: 0.92rem; opacity: 0.8; }
.footer-col h4 {
  font-family: "Jost", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 500;
}
.footer-col a, .footer-col p {
  display: block;
  font-size: 0.92rem;
  margin-bottom: 10px;
  opacity: 0.82;
  transition: opacity 0.2s, color 0.2s;
}
.footer-col a:hover { opacity: 1; color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 22px 0;
  text-align: center;
  font-size: 0.82rem;
  opacity: 0.7;
}

/* ---------- Responsive ---------- */
@media (max-width: 920px) {
  .cards { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .card-feature, .card-feature:hover { transform: none; }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .split-reverse .split-media { order: 0; }
  .info-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .cta { background-attachment: scroll; }
}

@media (max-width: 720px) {
  .header-cta { display: none; }
  .burger { display: flex; }
  .nav {
    position: fixed;
    top: 76px; right: 0;
    width: min(78%, 320px);
    height: calc(100vh - 76px);
    background: var(--white);
    flex-direction: column;
    gap: 0;
    padding: 18px 28px;
    box-shadow: -10px 0 40px -20px rgba(0,0,0,.4);
    transform: translateX(110%);
    transition: transform 0.32s ease;
  }
  .nav.open { transform: translateX(0); }
  .nav a {
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
    font-size: 0.92rem;
  }
  .section { padding: 64px 0; }
}

@media (max-width: 440px) {
  .footer-inner { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .btn { padding: 12px 22px; }
  .strip-inner { gap: 12px 24px; }
}
