/* Reset & Base */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  color: #191919;
  line-height: 1.7;
  background: #fff;
}

a {
  color: inherit;
  text-decoration: none;
}

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

ul {
  list-style: none;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid #e6d8d7;
  transition: box-shadow 0.3s;
}

header.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.site-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: #191919;
}

nav {
  display: flex;
  gap: 32px;
}

nav a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #555;
  transition: color 0.3s;
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #8b5956;
  transition: width 0.3s;
}

nav a:hover,
nav a.active {
  color: #8b5956;
}

nav a:hover::after,
nav a.active::after {
  width: 100%;
}

/* Mobile menu toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #191919;
  transition: transform 0.3s, opacity 0.3s;
}

.mobile-menu-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  height: 85vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('/images/hero.jpg') center center / cover no-repeat,
    linear-gradient(135deg, #3a3a3a 0%, #1a1a1a 100%);
  margin-top: 70px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(25, 25, 25, 0.45);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 600;
  letter-spacing: 6px;
  margin-bottom: 16px;
}

.hero-subtitle {
  font-size: 1.25rem;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* Sections */
.section {
  padding: 80px 0;
}

.section-alt {
  background: #faf7f7;
}

h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 48px;
  color: #191919;
  position: relative;
}

h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: #bb9593;
  margin: 16px auto 0;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 40px;
  align-items: center;
  max-width: 750px;
  margin: 0 auto;
}

.about-image img {
  border-radius: 50%;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  width: 165px;
  height: 165px;
  object-fit: cover;
}

.about-text p {
  margin-bottom: 16px;
  font-size: 1.05rem;
}

/* Activité */
.activite-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.activite-text p {
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.activite-text ul {
  margin-top: 8px;
  padding-left: 0;
}

.activite-text li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
  font-size: 1rem;
}

.activite-text li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: #bb9593;
  border-radius: 50%;
}

.activite-images {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.activite-images img {
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Honoraires */
.honoraires-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.honoraires-image {
  max-width: 290px;
  margin: 0 auto 32px;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.honoraires-text p {
  margin-bottom: 16px;
  font-size: 1.05rem;
  text-align: center;
}

.honoraires-highlight {
  margin-top: 32px;
  padding: 32px;
  background: #faf7f7;
  border-left: 4px solid #bb9593;
  border-radius: 4px;
}

.honoraires-highlight p {
  margin-bottom: 8px;
  text-align: left;
}

.honoraires-highlight p:last-child {
  margin-bottom: 0;
}

/* Adresses */
.adresses-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.adresse-card {
  text-align: center;
}

.adresse-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 16px;
  color: #8b5956;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.adresse-lieu {
  font-size: 1.05rem;
  margin-bottom: 8px;
  line-height: 1.8;
}

.adresse-tel {
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.adresse-tel a {
  color: #8b5956;
  font-weight: 500;
}

.adresse-tel a:hover {
  text-decoration: underline;
}

.map-container {
  position: relative;
  width: 100%;
  padding-bottom: 60%;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.adresse-email {
  text-align: center;
  margin-top: 40px;
  font-size: 1.1rem;
}

.adresse-email a {
  color: #8b5956;
  font-weight: 500;
}

.adresse-email a:hover {
  text-decoration: underline;
}

/* Contact */
.contact-block {
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
}

.contact-intro {
  font-size: 1.1rem;
  margin-bottom: 40px;
  color: #555;
}

.contact-methods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.contact-card {
  background: #faf7f7;
  border-radius: 8px;
  padding: 40px 32px;
  transition: box-shadow 0.3s;
}

.contact-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.contact-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  color: #8b5956;
}

.contact-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 20px;
  color: #191919;
}

.contact-card p {
  margin-bottom: 4px;
  font-size: 1rem;
}

.contact-card a {
  color: #8b5956;
  font-weight: 500;
}

.contact-card a:hover {
  text-decoration: underline;
}

.contact-detail {
  font-size: 0.85rem !important;
  color: #888;
  margin-bottom: 16px !important;
}

.contact-email-btn {
  display: inline-block;
  padding: 12px 28px;
  background: #8b5956;
  color: #fff !important;
  border-radius: 4px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: background 0.3s;
  cursor: pointer;
}

.contact-email-btn:hover {
  background: #6e4543;
  text-decoration: none !important;
}

.contact-email-btn.revealed {
  background: transparent;
  color: #8b5956 !important;
  border: 1px solid #bb9593;
  font-size: 1.05rem;
}

/* Footer */
footer {
  background: #191919;
  color: #aaa;
  padding: 24px 0;
  text-align: center;
  font-size: 0.85rem;
}

footer a {
  color: #bb9593;
}

footer a:hover {
  text-decoration: underline;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #191919;
  color: #fff;
  padding: 16px 24px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.cookie-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cookie-content p {
  font-size: 0.9rem;
  line-height: 1.5;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 8px 24px;
  border: none;
  border-radius: 4px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: opacity 0.3s;
}

.cookie-btn:hover {
  opacity: 0.85;
}

.cookie-btn-reject {
  background: transparent;
  color: #fff;
  border: 1px solid #555;
}

.cookie-btn-accept {
  background: #bb9593;
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }

  nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: #fff;
    border-bottom: 1px solid #e6d8d7;
    padding: 16px 24px;
    gap: 16px;
  }

  nav.open {
    display: flex;
  }

  .hero-content h1 {
    font-size: 2.4rem;
    letter-spacing: 3px;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero {
    height: 60vh;
    min-height: 350px;
  }

  h2 {
    font-size: 2rem;
  }

  .section {
    padding: 60px 0;
  }

  .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-image {
    display: flex;
    justify-content: center;
  }

  .about-image img {
    max-width: 250px;
  }

  .activite-content {
    grid-template-columns: 1fr;
  }

  .adresses-grid {
    grid-template-columns: 1fr;
  }

  .contact-methods {
    grid-template-columns: 1fr;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
}
