/* =========================================================
   ONE EVENTS — feuille de style principale
   Police : Muli (texte) + Playfair Display (titres)
   ========================================================= */

:root {
  --teal: #7ec7b8;
  --teal-dark: #4f9c8d;
  --ink: #1c1c1c;
  --ink-soft: #3d3d3d;
  --cream: #faf9f7;
  --line: #e7e3dc;
  --max: 1180px;
  --radius: 4px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Muli", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink-soft);
  background: #fff;
  line-height: 1.7;
  font-size: 16px;
}

h1, h2, h3, h4 {
  font-family: "Playfair Display", Georgia, serif;
  color: var(--ink);
  line-height: 1.25;
  margin: 0 0 0.6em;
  font-weight: 700;
}

h1 { font-size: clamp(2rem, 4vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); }
h3 { font-size: 1.3rem; }

p { margin: 0 0 1.1em; }

a { color: var(--teal-dark); text-decoration: none; }
a:hover { color: var(--ink); }

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

ul { padding-left: 1.2em; }

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

.section {
  padding: 72px 0;
}
.section--tight { padding: 48px 0; }
.bg-cream { background: var(--cream); }
.bg-ink { background: var(--ink); color: #cfcfcf; }
.bg-ink h2, .bg-ink h3 { color: #fff; }

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--teal-dark);
  margin-bottom: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.02em;
  border: 2px solid var(--ink);
  color: var(--ink);
  background: transparent;
  transition: all 0.2s ease;
  cursor: pointer;
  font-size: 0.95rem;
}
.btn:hover { background: var(--ink); color: #fff; }
.btn--solid {
  background: var(--ink);
  color: #fff;
}
.btn--solid:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  color: #fff;
}
.btn--light {
  border-color: #fff;
  color: #fff;
}
.btn--light:hover {
  background: #fff;
  color: var(--ink);
}

/* ---------- HEADER ---------- */
.topline {
  background: var(--ink);
  color: #fff;
  font-size: 0.85rem;
}
.topline .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
  flex-wrap: wrap;
  gap: 6px;
}
.topline a { color: #fff; }
.topline a:hover { color: var(--teal); }
.topline .social a {
  margin-left: 14px;
  font-size: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 56px; width: auto; }

nav.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
nav.main-nav a {
  color: var(--ink);
  font-weight: 600;
  font-size: 0.93rem;
  letter-spacing: 0.01em;
  position: relative;
  padding: 6px 0;
}
nav.main-nav a.active,
nav.main-nav a:hover {
  color: var(--teal-dark);
}
nav.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: var(--teal);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--ink);
}

@media (max-width: 900px) {
  nav.main-nav {
    position: fixed;
    inset: 0 0 0 auto;
    height: 100vh;
    width: min(320px, 82vw);
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 90px 30px 30px;
    gap: 22px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: var(--shadow);
  }
  nav.main-nav.open { transform: translateX(0); }
  .nav-toggle { display: block; }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  color: #fff;
  display: flex;
  align-items: center;
  min-height: 62vh;
  background-size: cover;
  background-position: center;
  text-align: center;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,.55), rgba(10,10,10,.35) 45%, rgba(10,10,10,.7));
}
.hero .container { position: relative; z-index: 2; margin: 0 auto; }
.hero .eyebrow { color: var(--teal); }
.hero h1 { color: #fff; margin-bottom: 0.4em; }
.hero p.lead {
  max-width: 640px;
  margin: 0 auto 28px;
  font-size: 1.15rem;
  color: #f1f1f1;
}
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.page-hero {
  min-height: 40vh;
}

/* ---------- SERVICES GRID ---------- */
.grid {
  display: grid;
  gap: 28px;
}
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
}

.card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card img { height: 210px; width: 100%; object-fit: cover; }
.card-body { padding: 22px 22px 26px; flex: 1; display: flex; flex-direction: column; }
.card-body h3 { margin-bottom: 0.4em; }
.card-body p { flex: 1; color: var(--ink-soft); font-size: 0.96rem; }
.card-link {
  font-weight: 700;
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--teal-dark);
}

/* ---------- CONTENT SPLIT (image / texte) ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.split.reverse .split-media { order: 2; }
@media (max-width: 800px) {
  .split { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
}
.split-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- GALLERY ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: var(--radius);
}
.gallery-item {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: box-shadow 0.25s ease;
}
.gallery-item:hover {
  box-shadow: var(--shadow);
}
@media (max-width: 800px) {
  .gallery { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .gallery { grid-template-columns: 1fr; }
}

/* ---------- QUOTE / CALLOUT ---------- */
.callout {
  text-align: center;
  padding: 60px 0;
}
.callout h2 { max-width: 720px; margin: 0 auto 26px; }

/* ---------- STATS ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
}
.stats .num {
  font-family: "Playfair Display", serif;
  font-size: 2.6rem;
  color: var(--teal-dark);
  font-weight: 700;
}
.stats .label { font-size: 0.9rem; letter-spacing: 0.03em; text-transform: uppercase; color: #666; }
@media (max-width: 600px) { .stats { grid-template-columns: 1fr; gap: 32px; } }

/* ---------- BREADCRUMB ---------- */
.breadcrumb {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 10px;
}
.breadcrumb a { color: #888; }
.breadcrumb a:hover { color: var(--teal-dark); }

/* ---------- FORM (contact) ---------- */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 700px) { .form-grid { grid-template-columns: 1fr; } }

label {
  display: block;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 6px;
  color: var(--ink);
}
input, textarea, select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.95rem;
  background: #fff;
  color: var(--ink);
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--teal);
}
textarea { resize: vertical; min-height: 140px; }

.notice {
  background: #fff7e6;
  border: 1px solid #f1d9a0;
  border-radius: var(--radius);
  padding: 14px 18px;
  font-size: 0.9rem;
  color: #7a5c15;
  margin-top: 18px;
}

/* ---------- CONTACT INFO CARDS ---------- */
.info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 800px) { .info-cards { grid-template-columns: 1fr; } }
.info-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 26px;
  text-align: center;
}
.info-card .icon { font-size: 1.6rem; color: var(--teal-dark); margin-bottom: 10px; }

/* ---------- FOOTER ---------- */
footer.site-footer {
  background: var(--ink);
  color: #bfbfbf;
  padding: 60px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
}
.footer-grid h4 {
  color: #fff;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 10px; }
.footer-grid a { color: #bfbfbf; }
.footer-grid a:hover { color: var(--teal); }
.footer-logo img { height: 50px; margin-bottom: 14px; filter: brightness(0) invert(1); opacity: 0.9; }
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border: 1px solid #555;
  border-radius: 50%;
  margin-right: 10px;
  color: #fff;
}
.footer-social a:hover { background: var(--teal); border-color: var(--teal); }
.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 20px;
  font-size: 0.82rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom a { color: #999; }

/* ---------- MISC ---------- */
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.legal h2 { margin-top: 1.6em; }
.legal ul { margin-bottom: 1.2em; }
