/* Art by Deidara — 瞬間の美 */

:root {
  --white: #ffffff;
  --black: #111111;
  --gold: #ddd886;
  --gold-dark: #c4b85e;
  --gold-hover: #b8ac4f;
  --gray-50: #f9f9f9;
  --gray-100: #f0f0f0;
  --gray-300: #cccccc;
  --gray-500: #888888;
  --gray-700: #444444;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --nav-height: 115px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; }

.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
  font-size: 22px;
  vertical-align: middle;
}

/* ─── NAV ─── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: background 0.3s, box-shadow 0.3s, height 0.3s;
  background: transparent;
}
.nav.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 20px rgba(0,0,0,0.06);
  height: 95px;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
}
.nav.scrolled .nav-logo { color: var(--black); }
.nav-logo img { height: 85px; width: 70px; }

.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  transition: color 0.2s;
  letter-spacing: 0.2px;
  position: relative;
}
.nav.scrolled .nav-links a { color: var(--black); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.2s;
}
.nav-links a:hover::after { width: 100%; }
.nav-links a.btn::after { display: none; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; color: #fff; padding: 4px; }
.nav.scrolled .nav-toggle { color: var(--black); }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1649083048381-520a5b3d91ff?w=1920&q=80') center/cover no-repeat;
  display: flex;
  align-items: center;
  padding: 120px 32px 80px;
  position: relative;
}
.hero-content { max-width: 650px; }
.hero-tag {
  display: inline-block;
  font-size: 12px; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 20px;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 7vw, 64px);
  font-weight: 700; line-height: 1.10; color: #fff; margin-bottom: 20px;
}
.hero h1 em { font-style: italic; color: var(--gold); }
.hero p {
  font-size: 17px; color: rgba(255,255,255,0.8); line-height: 1.5;
  margin-bottom: 36px; max-width: 480px;
}

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; font-size: 14px; font-weight: 600;
  letter-spacing: 0.5px; text-decoration: none;
  border-radius: 12px; cursor: pointer;
  transition: background 0.3s, transform 0.3s, color 0.3s;
  font-family: var(--font-body); border: none;
}
.btn--gold { background: var(--gold); color: #0F0F0D; }
.btn--gold:hover { background: var(--gold); color: #0F0F0D; transform: none; }
.btn--nav-cta { background: rgba(255,255,255,0.12); color: #fff; }
.nav.scrolled .btn--nav-cta { background: var(--gold); color: #0F0F0D; }
.btn--nav-cta:hover { background: var(--gold); color: #fff !important; transform: translateY(-2px); }

.hero-scroll {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  animation: bounce 2s infinite;
}
.hero-scroll span { font-size: 28px; color: rgba(255,255,255,0.5); }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* ─── SECTIONS ─── */
section { padding: 100px 32px; }
.container { max-width: 1100px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
  font-size: 11px; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold-dark); margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 42px); font-weight: 600;
  line-height: 1.15; margin-bottom: 16px;
}
.section-subtitle { font-size: 16px; color: var(--gray-500); max-width: 500px; margin: 0 auto; }

/* ─── SERVICES ─── */
#services { background: var(--gray-50); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.service-card {
  background: var(--white); border-radius: 16px; overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s; border: 1px solid var(--gray-100);
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); border-color: var(--gold); }
.service-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.service-body { padding: 24px 20px; text-align: center; }
.service-body h3 { font-family: var(--font-display); font-size: 20px; font-weight: 600; margin-bottom: 6px; }
.service-body p { font-size: 14px; color: var(--gray-500); line-height: 1.5; }

/* ─── AVANT/APRÈS ─── */
.compare-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.mini-slider {
  position: relative; aspect-ratio: 4/3; border-radius: 12px; overflow: hidden;
  cursor: ew-resize; user-select: none; -webkit-user-select: none; border: 1px solid var(--gray-100);
}
.mini-slider .ms-img { position: absolute; inset: 0; background-size: cover; background-position: center; }
.mini-slider .ms-before { z-index: 1; }
.mini-slider .ms-after { z-index: 2; clip-path: inset(0 50% 0 0); }
.mini-slider .ms-line {
  position: absolute; top: 0; bottom: 0; left: 50%; width: 2px;
  background: #fff; box-shadow: 0 0 4px rgba(0,0,0,0.25);
  transform: translateX(-50%); pointer-events: none; z-index: 3;
}
.mini-slider .ms-handle {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 32px; height: 32px; border-radius: 50%; background: #fff;
  box-shadow: 0 1px 8px rgba(0,0,0,0.2);
  display: flex; align-items: center; justify-content: center;
  pointer-events: none; z-index: 4;
}
.mini-slider .ms-handle .material-symbols-outlined { font-size: 16px; color: var(--gray-700); font-variation-settings: 'FILL' 1; }
.mini-slider .ms-labels {
  position: absolute; bottom: 6px; left: 6px; right: 6px;
  display: flex; justify-content: space-between; pointer-events: none; z-index: 3;
}
.mini-slider .ms-tag {
  font-size: 9px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  padding: 3px 8px; border-radius: 5px; color: #fff; background: rgba(0,0,0,0.45);
}

/* ─── TÉMOIGNAGES ─── */
#reviews { background: var(--gray-50); }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 20px; }
.review-card {
  background: var(--white); border-radius: 14px; padding: 28px;
  border: 1px solid var(--gray-100); transition: transform 0.2s, box-shadow 0.2s;
}
.review-card:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(0,0,0,0.06); }
.review-stars { color: var(--gold-dark); font-size: 16px; letter-spacing: 2px; margin-bottom: 12px; }
.review-text { font-size: 14px; line-height: 1.6; color: var(--gray-700); margin-bottom: 16px; font-style: italic; }
.review-author { font-size: 13px; font-weight: 600; color: var(--black); }
.review-date { font-size: 12px; color: var(--gray-500); margin-top: 2px; }
.google-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; color: var(--gray-500); margin-top: 32px; }
.google-badge span { color: var(--gold-dark); font-size: 18px; }

/* ─── A PROPOS ─── */
#about { background: var(--black); color: #fff; }
#about .section-tag { color: var(--gold); }
#about .section-subtitle { color: var(--gray-500); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-text p { font-size: 15px; line-height: 1.7; color: var(--gray-300); margin-bottom: 16px; }
.about-image { aspect-ratio: 4/3; border-radius: 20px; overflow: hidden; }
.about-image img { width: 100%; height: 100%; object-fit: cover; }

/* ─── CONTACT ─── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-info h3 { font-family: var(--font-display); font-size: 22px; margin-bottom: 12px; }
.contact-info p { color: var(--gray-500); margin-bottom: 24px; font-size: 14px; }
.contact-detail { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; font-size: 14px; }
.contact-detail .material-symbols-outlined { color: var(--gold-dark); }
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.contact-form input, .contact-form textarea {
  padding: 14px 16px; border: 1px solid var(--gray-300); border-radius: 10px;
  font-family: var(--font-body); font-size: 14px; transition: border-color 0.2s; background: #fff;
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: none; border-color: var(--gold-dark); box-shadow: 0 0 0 3px rgba(221,216,134,0.15);
}
.contact-form textarea { min-height: 100px; resize: vertical; }

/* ─── FOOTER ─── */
footer { background: var(--black); color: var(--gray-300); padding: 60px 32px 0; }
.footer-grid { max-width: 1100px; margin: 0 auto 40px; display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: 40px; }
.footer-col:first-child { text-align: left; }
.footer-col h4 { font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: #fff; margin-bottom: 20px; }
.footer-col a { display: block; font-size: 14px; color: var(--gray-500); text-decoration: none; line-height: 2.2; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold); }
.footer-col p { font-size: 14px; color: var(--gray-500); line-height: 1.7; margin-bottom: 8px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06); padding: 20px 0;
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12px; color: var(--gray-500); flex-wrap: wrap; gap: 12px;
}
.footer-bottom-left { flex: 1; }
.footer-bottom-center { text-align: center; flex: 1; }
.footer-bottom-center a { color: var(--gray-500); text-decoration: none; transition: color 0.2s; }
.footer-bottom-center a:hover { color: var(--gold); }
.footer-bottom-right { display: flex; gap: 20px; flex: 1; justify-content: flex-end; }
.footer-bottom-right a { color: var(--gray-500); text-decoration: none; transition: color 0.2s; font-size: 12px; }
.footer-bottom-right a:hover { color: var(--gold); }

/* ─── MOBILE MENU ─── */
.mobile-menu {
  display: none; position: fixed; inset: 0; background: #fff; z-index: 999;
  flex-direction: column; align-items: center; justify-content: center; gap: 32px;
}
.mobile-menu.active { display: flex; }
.mobile-menu a { font-family: var(--font-display); font-size: 24px; color: var(--black); text-decoration: none; font-weight: 600; }
.mobile-menu .btn--gold { font-family: var(--font-body); font-size: 14px; }

/* ─── COOKIE BANNER ─── */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 10000;
  background: var(--black); color: #fff; padding: 20px 32px;
  display: flex; align-items: center; justify-content: center; gap: 24px;
  flex-wrap: wrap; font-size: 14px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
  transform: translateY(100%); transition: transform 0.4s ease;
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner p { color: var(--gray-300); max-width: 600px; line-height: 1.5; }
.cookie-banner a { color: var(--gold); text-decoration: underline; }
.cookie-banner .btn--gold { white-space: nowrap; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) { .compare-grid { grid-template-columns: repeat(2, 1fr); } }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .hero { padding: 100px 20px 60px; text-align: center; }
  .hero-content { max-width: 100%; text-align: center; }
  .hero p { margin: 0 auto 36px; max-width: 100%; }
  section { padding: 60px 20px; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; text-align: center; }
  .contact-info { text-align: center; }
  .contact-detail { justify-content: center; }
  .contact-form { text-align: left; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-col, .footer-col:first-child, .footer-col:not(:first-child) { text-align: center !important; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-right { justify-content: center; }
}

@media (max-width: 480px) {
  .compare-grid { grid-template-columns: 1fr !important; }
  .services-grid { grid-template-columns: 1fr; }
  .mini-slider { aspect-ratio: 16/9; }
  .nav-logo img { height: 65px; width: 53px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 360px) {
  .hero h1 { font-size: 28px; }
  .hero p { font-size: 14px; }
  .btn { padding: 12px 20px; font-size: 13px; }
  .nav-logo img { height: 55px; width: 45px; }
  .nav-inner { padding: 0 16px; }
  .footer-col img { max-width: 70%; height: auto !important; }
}
