/* Well Studio — vitrine. Palette sable/terracotta, typographie Georgia. */
:root {
  --bg: #faf7f2;
  --bg-soft: #f3ede3;
  --ink: #2d2a26;
  --ink-soft: #6b645c;
  --accent: #b5654a;
  --accent-dark: #94503a;
  --line: #e5dcce;
  --max: 68rem;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: Georgia, "Times New Roman", serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.75;
  font-size: 1.0625rem;
}
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}
a {
  color: var(--accent-dark);
}
a:hover {
  color: var(--accent);
}

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(250, 247, 242, 0.94);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
  flex-wrap: wrap;
}
.brand {
  font-size: 1.45rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: var(--ink);
}
.brand span {
  color: var(--accent);
  font-style: italic;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  flex-wrap: wrap;
}
.site-nav a {
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 0.98rem;
}
.site-nav a:hover,
.site-nav a[aria-current] {
  color: var(--ink);
}
.site-nav a[aria-current] {
  border-bottom: 2px solid var(--accent);
}
.nav-cta {
  background: var(--ink);
  color: #fff !important;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
}
.nav-cta:hover {
  background: var(--accent-dark);
}

/* ── Hero ── */
.hero {
  position: relative;
  overflow: hidden;
}
.hero img {
  width: 100%;
  height: min(62vh, 34rem);
  object-fit: cover;
  border-radius: 0;
}
.hero-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(90deg, rgba(30, 26, 22, 0.62) 0%, rgba(30, 26, 22, 0.15) 70%);
  color: #fff;
  padding: 0 1.25rem;
}
.hero-text > div {
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
}
.hero h1 {
  font-size: clamp(1.7rem, 4.5vw, 2.9rem);
  font-weight: 500;
  line-height: 1.25;
  max-width: 34ch;
}
.hero p {
  margin-top: 0.8rem;
  font-size: 1.1rem;
  max-width: 52ch;
  color: #f1e9df;
}
.hero .btn {
  margin-top: 1.4rem;
}

/* ── Sections & typographie ── */
section {
  padding: 3rem 0;
}
section.soft {
  background: var(--bg-soft);
}
h2 {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 1rem;
}
h3 {
  font-size: 1.15rem;
  margin: 1.6rem 0 0.5rem;
}
p + p {
  margin-top: 0.9rem;
}
.lead {
  font-size: 1.15rem;
  color: var(--ink-soft);
}
.cols {
  display: grid;
  gap: 2.2rem;
  align-items: center;
}
@media (min-width: 46rem) {
  .cols {
    grid-template-columns: 1fr 1fr;
  }
  .cols.rev > :first-child {
    order: 2;
  }
}
ul {
  padding-left: 1.2rem;
}
li {
  margin: 0.35rem 0;
}

/* ── Boutons ── */
.btn {
  display: inline-block;
  text-decoration: none;
  background: var(--accent);
  color: #fff !important;
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  font-size: 1rem;
}
.btn:hover {
  background: var(--accent-dark);
}
.btn.ghost {
  background: transparent;
  color: var(--ink) !important;
  border: 1px solid var(--ink);
}
.btn.ghost:hover {
  background: var(--ink);
  color: #fff !important;
}
.btn-row {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1.3rem;
}

/* ── Cartes activités ── */
.cards {
  display: grid;
  gap: 1.4rem;
  margin-top: 1.8rem;
}
@media (min-width: 46rem) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.card h3 {
  margin: 0;
  font-size: 1.25rem;
}
.card p {
  color: var(--ink-soft);
  font-size: 0.99rem;
}
.card a.more {
  margin-top: auto;
  font-size: 0.98rem;
}
.badge {
  color: var(--accent-dark);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ── Infos pratiques / accès ── */
.facts {
  display: grid;
  gap: 1rem;
  margin-top: 1.4rem;
}
@media (min-width: 46rem) {
  .facts {
    grid-template-columns: repeat(3, 1fr);
  }
}
.fact {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.1rem 1.2rem;
  font-size: 0.97rem;
}
.fact strong {
  display: block;
  margin-bottom: 0.2rem;
}

/* ── FAQ ── */
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 0.9rem 0;
}
.faq summary {
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 500;
  list-style: none;
}
.faq summary::before {
  content: "+ ";
  color: var(--accent);
}
.faq details[open] summary::before {
  content: "– ";
}
.faq p {
  margin-top: 0.6rem;
  color: var(--ink-soft);
}

/* ── Bandeau CTA ── */
.cta-band {
  background: var(--ink);
  color: #f1e9df;
  text-align: center;
  border-radius: 16px;
  padding: 2.6rem 1.5rem;
}
.cta-band h2 {
  color: #fff;
}
.cta-band p {
  max-width: 56ch;
  margin: 0.6rem auto 0;
}

/* ── Footer ── */
.site-footer {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  padding: 2.6rem 0 2rem;
  margin-top: 3rem;
  font-size: 0.97rem;
}
.footer-grid {
  display: grid;
  gap: 1.8rem;
}
@media (min-width: 46rem) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.brand-footer {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}
.footer-title {
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.site-footer a {
  color: var(--ink-soft);
}
.site-footer a:hover {
  color: var(--ink);
}
.footer-note {
  margin-top: 2rem;
  color: var(--ink-soft);
  font-size: 0.88rem;
}
.footer-legal {
  margin-top: 0.8rem;
  font-size: 0.88rem;
}
