/* sections.css — styles propres à chaque section */

/* ── Shared section ── */
.section {
  padding: clamp(48px, 8vw, 96px) 0;
}
.section--alt {
  background: var(--bg-alt, #EDE8DC);
  background-image: none;
}
.section--dark {
  background: var(--surface-deep);
  background-image: none;
}

.section-eyebrow {
  font-family: var(--ff-ui);
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  display: block;
}
.section-eyebrow--light { color: var(--accent-2); }

.section-title {
  font-family: var(--ff-display);
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  line-height: 1.06;
  color: var(--text);
  margin-bottom: 16px;
}
.section-title--light { color: var(--on-dark); }

.section-lead {
  font-family: var(--ff-body);
  font-size: clamp(1rem, 1.7vw, 1.12rem);
  line-height: 1.65;
  color: var(--text-2);
  max-width: 60ch;
  margin-bottom: 40px;
}
.section-lead--light { color: var(--on-dark-2); }

/* ── HERO EDITORIAL CENTRE ── */
.sec-hero {
  padding: 0;
  background: none;
}
.hero-centre {
  text-align: center;
  padding: calc(var(--header-h-mobile) + 40px) 20px clamp(28px,4vw,48px);
  max-width: 900px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .hero-centre { padding: calc(var(--header-h) + 56px) 24px clamp(32px,4vw,52px); }
}
.hero-eyebrow {
  font-family: var(--ff-ui);
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  display: block;
}
.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(2.4rem, 6.5vw, 4.8rem);
  line-height: 1.02;
  color: var(--text);
  margin-bottom: 20px;
}
.hero-title em {
  font-style: italic;
  color: var(--accent);
  position: relative;
}
/* souligne accent derrière le mot-clé */
.hero-title .gold-under {
  position: relative;
  display: inline;
}
.hero-title .gold-under::after {
  content: "";
  position: absolute;
  bottom: .06em;
  left: 0;
  right: 0;
  height: .18em;
  background: var(--accent);
  opacity: .22;
  z-index: -1;
  border-radius: 2px;
}

.hero-sub {
  font-family: var(--ff-body);
  font-size: clamp(.98rem, 1.6vw, 1.15rem);
  color: var(--text-2);
  max-width: 52ch;
  margin: 0 auto 28px;
  line-height: 1.65;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 28px;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
}
@media (min-width: 540px) {
  .hero-cta {
    flex-direction: row;
    justify-content: center;
    max-width: none;
  }
  .hero-cta .btn { flex: 0 1 auto; }
}

/* Band photo sous le titre */
.hero-band {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  margin-top: clamp(32px, 5vw, 56px);
  border-radius: 0 0 var(--r-xl) var(--r-xl);
  position: relative;
}
.hero-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-band-tag {
  position: absolute;
  bottom: 16px;
  left: 20px;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  font-family: var(--ff-ui);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 50px;
}
@media (min-width: 768px) { .hero-band { aspect-ratio: 21 / 9; } }

/* ── Stats strip ── */
.sec-stats {
  padding: 0;
}

/* ── A propos ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 6vw, 64px);
  align-items: center;
}
@media (min-width: 768px) {
  .about-grid { grid-template-columns: 1fr 1fr; }
}
.about-photo-wrap {
  position: relative;
}
.about-photo {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--r-xl) var(--r-sm) var(--r-xl) var(--r-sm);
  display: block;
}
.about-badge {
  position: absolute;
  bottom: -12px;
  right: 16px;
  background: var(--accent);
  color: #fff;
  font-family: var(--ff-ui);
  font-size: .74rem;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 50px;
  box-shadow: 0 4px 14px color-mix(in srgb, var(--accent) 40%, transparent);
}

.about-text .drop-cap::first-letter {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 3.2em;
  float: left;
  line-height: .8;
  margin: .05em .1em 0 0;
  color: var(--accent);
}
.about-intro {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  color: var(--text);
  line-height: 1.5;
  margin-bottom: 16px;
}
.about-body {
  font-family: var(--ff-ui);
  font-size: .9rem;
  line-height: 1.7;
  color: var(--text-2);
  margin-bottom: 24px;
}
.about-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--ff-ui);
  font-size: .84rem;
  color: var(--text-2);
}
.about-list li::before {
  content: "";
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--accent-soft);
  border: 1.5px solid var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'%3E%3Cpath d='M4 9l3.5 3.5L14 6' stroke='%232E5B3E' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
}
.about-sig {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--accent);
}

/* ── Services grid-asym ── */
.svc-asym-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(12px, 2vw, 20px);
}
.svc-asym-grid .c-asym { grid-column: span 2; }
.svc-asym-grid .c-asym--lead { grid-column: span 6; }
.svc-asym-grid .c-asym--wide { grid-column: span 3; }

@media (max-width: 900px) {
  .svc-asym-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-asym-grid .c-asym { grid-column: span 1; }
  .svc-asym-grid .c-asym--lead { grid-column: span 2; }
  .svc-asym-grid .c-asym--wide { grid-column: span 1; }
}
@media (max-width: 560px) {
  .svc-asym-grid { grid-template-columns: 1fr; }
  .svc-asym-grid .c-asym,
  .svc-asym-grid .c-asym--lead,
  .svc-asym-grid .c-asym--wide { grid-column: 1 / -1; }
}

/* lead card layout */
.c-asym--lead .lead-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 640px) {
  .c-asym--lead .lead-inner {
    flex-direction: row;
    align-items: center;
    gap: 32px;
  }
  .c-asym--lead .lead-text { flex: 1; }
  .c-asym--lead .lead-icon { flex-shrink: 0; }
}
.c-asym--lead .lead-icon svg {
  width: clamp(48px, 8vw, 72px);
  height: clamp(48px, 8vw, 72px);
  color: rgba(255,255,255,.3);
}

/* ── Réalisations ── */
.gal-cta-card {
  background: var(--accent-deep);
  border-radius: var(--r-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
  color: var(--on-dark);
}
.gal-cta-card p {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--on-dark-2);
  line-height: 1.4;
}

/* ── Avis section ── */
.avis-header {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}
.avis-score {
  font-family: var(--ff-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: var(--text);
  line-height: 1;
}
.avis-score-sub {
  font-family: var(--ff-ui);
  font-size: .82rem;
  color: var(--text-2);
}
.avis-link {
  font-family: var(--ff-ui);
  font-size: .82rem;
  color: var(--accent);
  text-decoration: underline;
  margin-top: 20px;
  display: inline-block;
}
.avis-link:hover { color: var(--accent-deep); }

/* ── Zone & carte ── */
.zone-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 768px) { .zone-cols { grid-template-columns: 1fr 1.2fr; } }

.map-wrap {
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  padding-bottom: 70%;
}
@media (min-width: 768px) { .map-wrap { padding-bottom: 100%; } }
.map-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ── Contact ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 768px) { .contact-grid { grid-template-columns: 1fr 1.3fr; } }
.contact-rows { display: flex; flex-direction: column; gap: 12px; }

/* ── Page realisations ── */
.page-hero {
  text-align: center;
  padding: calc(var(--header-h-mobile) + 40px) 20px 48px;
}
@media (min-width: 768px) { .page-hero { padding: calc(var(--header-h) + 56px) 24px 64px; } }
.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 16px;
}
.page-hero p {
  font-family: var(--ff-body);
  font-style: italic;
  font-size: clamp(.96rem, 1.6vw, 1.1rem);
  color: var(--text-2);
  max-width: 52ch;
  margin: 0 auto 24px;
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-ui);
  font-size: .8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  margin-bottom: 24px;
  transition: background .2s;
}
.back-link:hover { background: var(--accent); color: #fff; }
.back-link svg { width: 14px; height: 14px; }

.real-cta {
  background: var(--surface-deep);
  background-image: none;
  color: var(--on-dark);
  text-align: center;
  padding: 56px 20px;
}
.real-cta h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  margin-bottom: 12px;
  color: var(--on-dark);
}
.real-cta p {
  font-family: var(--ff-body);
  font-style: italic;
  font-size: 1rem;
  color: var(--on-dark-2);
  margin-bottom: 28px;
  max-width: 46ch;
  margin-inline: auto;
}
.real-cta-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
  max-width: 320px;
  margin: 0 auto;
}
@media (min-width: 480px) {
  .real-cta-btns { flex-direction: row; justify-content: center; max-width: none; }
  .real-cta-btns .btn { flex: 0 1 auto; }
}
