:root {
  --encre: #1a1208;
  --encre-clair: #2d2010;
  --or: #b8860b;
  --or-clair: #d4a017;
  --or-pale: #f0e6c0;
  --rouge: #8b1a1a;
  --rouge-clair: #c0392b;
  --jade: #2e6b52;
  --jade-clair: #3d8a68;
  --parchemin: #f0e8d3;
  --parchemin-fonce: #e6dbbc;
  --beige: #f8f2e2;
  --texte: #2d2010;
  --texte-doux: #5a4a30;
  --texte-leger: #8a7a60;
  --bordure: rgba(184,134,11,0.25);
}

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

body {
  font-family: 'Noto Sans SC', sans-serif;
  background: var(--beige);
  color: var(--texte);
  overflow-x: hidden;
}

/* ── NAVIGATION ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(26,18,8,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--or);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  height: 64px;
}

.nav-logo {
  font-family: 'Ma Shan Zheng', cursive;
  font-size: 1.5rem;
  color: var(--or-clair);
  letter-spacing: 0.05em;
  cursor: pointer;
  white-space: nowrap;
}

.nav-logo span {
  font-family: 'Noto Sans SC', sans-serif;
  font-size: 0.65rem;
  font-weight: 300;
  color: var(--or-pale);
  display: block;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: -4px;
}

.nav-links {
  display: flex;
  gap: 0;
  list-style: none;
  flex-wrap: nowrap;
}

.nav-links li a {
  display: block;
  padding: 0 0.55rem;
  height: 64px;
  line-height: 64px;
  color: var(--or-pale);
  text-decoration: none;
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s, background 0.2s;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}

.nav-links li a:hover,
.nav-links li a.active {
  color: var(--or-clair);
  border-bottom-color: var(--or);
}

/* ── SOUS-MENUS DÉROULANTS ── */
.nav-links li.has-dropdown { position: relative; }

.nav-dropdown-label::after {
  content: ' ▾';
  font-size: 0.55rem;
  vertical-align: middle;
}

.nav-dropdown {
  list-style: none;
  position: absolute;
  top: 64px;
  left: 0;
  min-width: 240px;
  background: rgba(26,18,8,0.98);
  border: 1px solid var(--or);
  padding: 0.4rem 0;
  display: none;
  flex-direction: column;
  z-index: 200;
}

.nav-links li.has-dropdown:hover > .nav-dropdown,
.nav-links li.has-dropdown.dropdown-open > .nav-dropdown {
  display: flex;
}

.nav-dropdown li a {
  height: auto;
  line-height: 1.5;
  padding: 0.65rem 1.25rem;
  white-space: nowrap;
}

/* ── BOUTON CTA "SOUTENIR" DANS LE MENU ── */
.nav-cta {
  margin-left: 0.4rem;
  padding: 0 1.1rem !important;
  background: var(--or) !important;
  color: var(--encre) !important;
  font-weight: 700 !important;
  border-radius: 2px;
  border-bottom-color: transparent !important;
}

.nav-cta:hover {
  background: var(--or-clair) !important;
  color: var(--encre) !important;
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--or-clair);
  transition: all 0.3s;
}

/* ── PAGES ── */
.page { display: none; padding-top: 64px; min-height: 100vh; }
.page.active { display: block; }

/* ── HERO ── */
.hero {
  position: relative;
  height: calc(100vh - 64px);
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--encre);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 60%, rgba(184,134,11,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 80% 80% at 50% 50%, rgba(46,107,82,0.06) 0%, transparent 80%);
}

.hero-bamboo {
  position: absolute;
  left: -40px;
  top: 0;
  bottom: 0;
  width: 180px;
  opacity: 0.06;
  background: repeating-linear-gradient(
    to right,
    transparent 0px, transparent 18px,
    rgba(184,134,11,0.8) 18px, rgba(184,134,11,0.8) 22px
  );
}
.hero-bamboo.right {
  left: auto;
  right: -40px;
}

.hero-circle {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(184,134,11,0.15);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.hero-circle:nth-child(3) {
  width: 380px;
  height: 380px;
  border-color: rgba(184,134,11,0.1);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
}

.hero-kanji {
  font-family: 'Ma Shan Zheng', cursive;
  font-size: clamp(4rem, 12vw, 8rem);
  color: rgba(184,134,11,0.18);
  line-height: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -52%);
  pointer-events: none;
  z-index: 1;
  letter-spacing: 0.05em;
}

.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--or-clair);
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: 'Ma Shan Zheng', cursive;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--parchemin);
  line-height: 1.2;
  margin-bottom: 1rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.hero-sub {
  font-family: 'Noto Serif SC', serif;
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  font-weight: 300;
  color: rgba(245,240,224,0.7);
  letter-spacing: 0.1em;
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

.hero-divider {
  width: 60px;
  height: 1px;
  background: var(--or);
  margin: 1.5rem auto;
  position: relative;
}
.hero-divider::before, .hero-divider::after {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--or);
  top: -2.5px;
}
.hero-divider::before { left: -8px; }
.hero-divider::after { right: -8px; }

.btn-primary {
  display: inline-block;
  padding: 0.85rem 2.5rem;
  background: transparent;
  border: 1px solid var(--or);
  color: var(--or-clair);
  font-family: 'Noto Sans SC', sans-serif;
  font-size: 0.78rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--or);
  transform: translateX(-100%);
  transition: transform 0.3s;
  z-index: -1;
}
.btn-primary:hover {
  color: var(--encre);
}
.btn-primary:hover::before {
  transform: translateX(0);
}

.btn-rouge {
  background: var(--rouge);
  border-color: var(--rouge);
  color: var(--parchemin);
}
.btn-rouge:hover {
  color: var(--parchemin);
}
.btn-rouge::before {
  background: var(--rouge-clair);
}

/* ── SECTION COMMUNE ── */
.section {
  padding: 6rem 2rem;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: 'Ma Shan Zheng', cursive;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--encre);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.section-title.light { color: var(--parchemin); }

.ornement {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.ornement-line {
  flex: 1;
  height: 1px;
  background: var(--bordure);
  max-width: 80px;
}
.ornement-diamond {
  width: 8px;
  height: 8px;
  background: var(--or);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ── ACCUEIL : SERVICES ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5px;
  background: var(--bordure);
  border: 1px solid var(--bordure);
  margin-top: 4rem;
}

.service-card {
  background: var(--parchemin);
  padding: 2.5rem 2rem;
  transition: background 0.3s;
  cursor: default;
}
.service-card:hover {
  background: var(--encre);
}
.service-card:hover .service-title,
.service-card:hover .service-text {
  color: var(--parchemin);
}
.service-card:hover .service-num {
  color: var(--or-clair);
}

.service-num {
  font-family: 'Noto Serif SC', serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--or);
  margin-bottom: 1.5rem;
}

.service-title {
  font-family: 'Ma Shan Zheng', cursive;
  font-size: 1.5rem;
  color: var(--encre);
  margin-bottom: 0.75rem;
  transition: color 0.3s;
}

.service-text {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--texte-doux);
  line-height: 1.8;
  transition: color 0.3s;
}

/* ── ACCUEIL : CITATION ── */
.citation-section {
  background: var(--encre);
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.citation-bg {
  position: absolute;
  inset: 0;
  font-family: 'Ma Shan Zheng', cursive;
  font-size: 20rem;
  color: rgba(184,134,11,0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  line-height: 1;
}
.citation-text {
  font-family: 'Noto Serif SC', serif;
  font-size: clamp(1.1rem, 3vw, 1.6rem);
  font-weight: 300;
  color: var(--or-pale);
  max-width: 700px;
  margin: 0 auto 1.5rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
  position: relative;
  z-index: 2;
}
.citation-source {
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  color: var(--or);
  text-transform: uppercase;
  position: relative;
  z-index: 2;
}

/* ── ACCUEIL : LIEU APERÇU ── */
.lieu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 480px;
}
.lieu-img {
  background: linear-gradient(135deg, var(--jade) 0%, var(--encre) 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lieu-texte {
  background: var(--parchemin-fonce);
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.lieu-texte p {
  font-family: 'Noto Serif SC', serif;
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--texte-doux);
  line-height: 1.9;
  margin-bottom: 2rem;
}

/* ── PAGE PRÉSENTATION ── */
.page-header {
  background: var(--encre);
  padding: 5rem 2rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--or), transparent);
}
.page-header-kanji {
  font-family: 'Ma Shan Zheng', cursive;
  font-size: 10rem;
  color: rgba(184,134,11,0.06);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.page-header-label {
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 1rem;
  position: relative;
}
.page-header h2 {
  font-family: 'Ma Shan Zheng', cursive;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--parchemin);
  position: relative;
}

.pres-intro {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
  margin-bottom: 5rem;
}
.pres-img {
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, var(--jade) 0%, var(--encre) 100%);
  border: 1px solid var(--bordure);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.pres-img-inner {
  font-family: 'Ma Shan Zheng', cursive;
  font-size: 5rem;
  color: rgba(184,134,11,0.2);
}

.valeurs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  background: var(--parchemin-fonce);
  padding: 4rem 2rem;
  border-top: 1px solid var(--bordure);
  border-bottom: 1px solid var(--bordure);
  margin: 0 -2rem;
}
.valeur-item {
  text-align: center;
  padding: 1rem;
}
.valeur-icon {
  font-family: 'Ma Shan Zheng', cursive;
  font-size: 2.5rem;
  color: var(--or);
  margin-bottom: 1rem;
  display: block;
}
.valeur-titre {
  font-family: 'Noto Serif SC', serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--encre);
  margin-bottom: 0.5rem;
}
.valeur-text {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--texte-leger);
  line-height: 1.7;
}

/* ── PAGE ÉQUIPE ── */
.equipe-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}
.membre-card {
  border-top: 1px solid var(--bordure);
  padding-top: 2rem;
}
.membre-photo {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--jade) 0%, var(--encre-clair) 100%);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.membre-nom {
  font-family: 'Ma Shan Zheng', cursive;
  font-size: 1.5rem;
  color: var(--encre);
  margin-bottom: 0.25rem;
}
.membre-role {
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 1rem;
}
.membre-bio {
  font-family: 'Noto Serif SC', serif;
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--texte-doux);
  line-height: 1.8;
}

/* ── PAGE ACTIVITÉS ── */
.activites-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.activite-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--bordure);
  transition: background 0.2s;
}
.activite-item:hover {
  background: rgba(184,134,11,0.03);
}
.activite-num {
  font-family: 'Ma Shan Zheng', cursive;
  font-size: 3.5rem;
  color: rgba(184,134,11,0.15);
  text-align: right;
  line-height: 1;
}
.activite-corps h3 {
  font-family: 'Noto Serif SC', serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--encre);
  margin-bottom: 0.5rem;
}
.activite-corps p {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--texte-doux);
  line-height: 1.7;
  max-width: 600px;
}
.activite-meta {
  text-align: right;
  flex-shrink: 0;
}
.activite-tarif {
  font-family: 'Noto Serif SC', serif;
  font-size: 1.1rem;
  color: var(--or);
  display: block;
  margin-bottom: 0.25rem;
}
.activite-freq {
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--texte-leger);
}

/* ── PAGE PHOTOS ── */
.photos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  margin-top: 3rem;
}
.photo-item {
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--jade) 0%, var(--encre) 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.photo-placeholder {
  font-family: 'Ma Shan Zheng', cursive;
  font-size: 3rem;
  color: rgba(184,134,11,0.15);
}
.photo-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,18,8,0.0);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  transition: background 0.3s;
}
.photo-item:hover .photo-overlay {
  background: rgba(26,18,8,0.6);
}
.photo-legende {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245,240,224,0);
  transition: color 0.3s;
}
.photo-item:hover .photo-legende {
  color: var(--or-pale);
}

/* ── PAGE LIEU ── */
.lieu-details {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: start;
  margin-top: 3rem;
}
.lieu-map {
  background: var(--parchemin-fonce);
  border: 1px solid var(--bordure);
  padding: 0;
  overflow: hidden;
}
.lieu-map iframe {
  width: 100%;
  height: 350px;
  border: none;
  display: block;
  filter: sepia(30%) contrast(0.9);
}
.lieu-infos h3 {
  font-family: 'Ma Shan Zheng', cursive;
  font-size: 1.6rem;
  color: var(--encre);
  margin-bottom: 1.5rem;
}
.lieu-infos-list {
  list-style: none;
}
.lieu-infos-list li {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--bordure);
  font-family: 'Noto Serif SC', serif;
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--texte-doux);
  line-height: 1.6;
}
.lieu-infos-list li strong {
  font-weight: 500;
  color: var(--encre);
  min-width: 130px;
  flex-shrink: 0;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: 'Noto Sans SC', sans-serif;
}
.heberg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
  background: var(--bordure);
  border: 1px solid var(--bordure);
  margin-top: 2rem;
}
.heberg-card {
  background: var(--parchemin);
  padding: 2rem;
}
.heberg-titre {
  font-family: 'Noto Serif SC', serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--encre);
  margin-bottom: 0.5rem;
}
.heberg-cap {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 0.75rem;
}
.heberg-desc {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--texte-doux);
  line-height: 1.7;
}

/* ── PAGE RÉSERVATION ── */
.resa-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.resa-card {
  border: 1px solid var(--bordure);
  padding: 2.5rem;
  background: var(--parchemin);
  position: relative;
  transition: border-color 0.3s;
}
.resa-card:hover { border-color: var(--or); }
.resa-card-icon {
  font-family: 'Ma Shan Zheng', cursive;
  font-size: 2.5rem;
  color: var(--or-clair);
  margin-bottom: 1rem;
  display: block;
}
.resa-card h3 {
  font-family: 'Noto Serif SC', serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--encre);
  margin-bottom: 0.5rem;
}
.resa-card p {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--texte-doux);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.resa-embed {
  margin-top: 4rem;
  border-top: 1px solid var(--bordure);
  padding-top: 3rem;
}

/* ── PAGE CONTACT & FORMULAIRE ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  margin-top: 3rem;
  align-items: start;
}
.contact-infos h3 {
  font-family: 'Ma Shan Zheng', cursive;
  font-size: 1.8rem;
  color: var(--encre);
  margin-bottom: 2rem;
}
.contact-item { margin-bottom: 2rem; }
.contact-item-label {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 0.35rem;
}
.contact-item-val {
  font-family: 'Noto Serif SC', serif;
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--texte-doux);
  line-height: 1.6;
}
.contact-item-val a {
  color: var(--texte-doux);
  text-decoration: none;
  border-bottom: 1px solid var(--bordure);
  padding-bottom: 1px;
  transition: border-color 0.2s, color 0.2s;
}
.contact-item-val a:hover { color: var(--or); border-color: var(--or); }
.form-group { margin-bottom: 1.5rem; }
.form-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--texte-leger);
  margin-bottom: 0.5rem;
}
.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--parchemin-fonce);
  border: 1px solid var(--bordure);
  border-radius: 0;
  color: var(--texte);
  font-family: 'Noto Sans SC', sans-serif;
  font-size: 0.88rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.2s;
}
.form-input:focus, .form-textarea:focus, .form-select:focus { border-color: var(--or); }
.form-textarea { height: 160px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ── PAGE DONS ── */
.dons-hero {
  background: var(--encre);
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.dons-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}
.dons-content p {
  font-family: 'Noto Serif SC', serif;
  font-size: 1rem;
  font-weight: 300;
  color: rgba(245,240,224,0.75);
  line-height: 1.9;
  margin: 2rem 0;
}
.dons-montants {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 3rem 0;
}
.don-montant {
  width: 120px;
  height: 120px;
  border: 1px solid var(--or);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
  background: transparent;
  color: var(--or-clair);
  text-decoration: none;
}
.don-montant:hover { background: var(--or); color: var(--encre); }
.don-montant-sum {
  font-family: 'Noto Serif SC', serif;
  font-size: 1.5rem;
  font-weight: 400;
}
.don-montant-label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 0.25rem;
}
.dons-projets {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.projet-card {
  border: 1px solid var(--bordure);
  padding: 2rem;
  background: var(--parchemin);
}
.projet-titre {
  font-family: 'Noto Serif SC', serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--encre);
  margin-bottom: 0.5rem;
}
.projet-desc {
  font-size: 0.82rem;
  color: var(--texte-doux);
  line-height: 1.7;
  font-weight: 300;
}

/* ── PAGE RESSOURCES ── */
.ressources-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 3rem;
  border-top: 1px solid var(--bordure);
}
.ressource-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--bordure);
}
.ressource-icon {
  width: 48px;
  height: 48px;
  background: var(--parchemin-fonce);
  border: 1px solid var(--bordure);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--or);
  font-weight: 500;
  flex-shrink: 0;
}
.ressource-info h4 {
  font-family: 'Noto Serif SC', serif;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--encre);
  margin-bottom: 0.25rem;
}
.ressource-info p {
  font-size: 0.78rem;
  color: var(--texte-leger);
  font-weight: 300;
}
.ressource-dl {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--or);
  text-decoration: none;
  border-bottom: 1px solid rgba(184,134,11,0.3);
  padding-bottom: 2px;
  background: none;
  border-left: none; border-top: none; border-right: none;
  cursor: pointer;
  font-family: inherit;
}

/* ── ACTUALITÉS (liste complète, page Actu) ── */
.actu-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 3rem;
  border-top: 1px solid var(--bordure);
}
.actu-item {
  display: grid;
  grid-template-columns: 110px auto 1fr;
  align-items: baseline;
  gap: 1.5rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--bordure);
}
.actu-date {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--texte-leger);
  font-weight: 500;
  white-space: nowrap;
}
.actu-tag {
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--or);
  border: 1px solid rgba(184,134,11,0.4);
  padding: 0.2rem 0.6rem;
  white-space: nowrap;
  height: fit-content;
}
.actu-body h4 {
  font-family: 'Noto Serif SC', serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--encre);
  margin-bottom: 0.4rem;
}
.actu-body p {
  font-size: 0.85rem;
  color: var(--texte-doux);
  font-weight: 300;
  line-height: 1.7;
}
.actu-body a.actu-link {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--or);
  border-bottom: 1px solid rgba(184,134,11,0.3);
  cursor: pointer;
}
.actu-empty {
  padding: 2rem 0;
  font-size: 0.85rem;
  color: var(--texte-leger);
  font-style: italic;
}
.actu-archive-toggle {
  text-align: center;
  margin-top: 2rem;
}
.actu-archive-toggle button {
  background: none;
  border: 1px solid var(--bordure);
  padding: 0.65rem 1.75rem;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--or);
  cursor: pointer;
  font-family: inherit;
}
.actu-archive-toggle button:hover {
  border-color: var(--or);
}
#actu-archive-list {
  margin-top: 1.5rem;
}

/* ── TEASER ACTUALITÉS (page Accueil) ── */
.actu-teaser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.actu-teaser-card {
  border: 1px solid var(--bordure);
  padding: 1.5rem;
  background: var(--parchemin);
}
.actu-teaser-card .actu-tag { margin-bottom: 0.75rem; }
.actu-teaser-card .actu-date {
  display: block;
  margin-bottom: 0.5rem;
}
.actu-teaser-card h4 {
  font-family: 'Noto Serif SC', serif;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--encre);
  margin-bottom: 0.5rem;
}
.actu-teaser-card p {
  font-size: 0.8rem;
  color: var(--texte-doux);
  font-weight: 300;
  line-height: 1.6;
}
.actu-teaser-more {
  text-align: center;
  margin-top: 2rem;
}

/* ── FOOTER ── */
footer {
  background: var(--encre);
  border-top: 1px solid rgba(184,134,11,0.3);
  padding: 4rem 2rem 2rem;
}
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand {
  font-family: 'Ma Shan Zheng', cursive;
  font-size: 1.8rem;
  color: var(--or-clair);
  margin-bottom: 1rem;
}
.footer-tagline {
  font-family: 'Noto Serif SC', serif;
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(245,240,224,0.45);
  line-height: 1.8;
  max-width: 220px;
}
.footer-col h4 {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 1.25rem;
  font-weight: 500;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li span, .footer-col ul li a {
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(245,240,224,0.55);
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s;
}
.footer-col ul li a:hover, .footer-col ul li span:hover { color: var(--or-clair); }
.footer-bottom {
  border-top: 1px solid rgba(184,134,11,0.15);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy { font-size: 0.72rem; color: rgba(245,240,224,0.3); }
.footer-yin-yang { font-family: 'Ma Shan Zheng', cursive; font-size: 1.5rem; color: rgba(184,134,11,0.3); }

/* ── RESPONSIVE ── */
@media (max-width: 1200px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 64px; left: 0; right: 0;
    background: rgba(26,18,8,0.98);
    border-bottom: 1px solid var(--or);
    padding: 1rem 0; z-index: 999;
  }
  .nav-links.open li a { height: auto; padding: 0.85rem 2rem; font-size: 0.78rem; }
  .nav-links.open li.has-dropdown:hover > .nav-dropdown { display: none; }
  .nav-links.open .nav-dropdown {
    position: static;
    border: none;
    background: rgba(0,0,0,0.18);
    padding: 0;
    min-width: 0;
  }
  .nav-links.open li.has-dropdown.dropdown-open > .nav-dropdown { display: flex; }
  .nav-links.open .nav-dropdown li a { padding: 0.75rem 2rem 0.75rem 3rem; font-size: 0.72rem; }
  .nav-links.open .nav-cta { margin: 0.5rem 2rem; text-align: center; }
  .lieu-grid, .pres-intro, .contact-grid, .lieu-details { grid-template-columns: 1fr; gap: 0; }
  .valeurs-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .photos-grid { grid-template-columns: repeat(2, 1fr); }
  .livre-grid { grid-template-columns: 1fr !important; gap: 1.5rem !important; }
  .actu-teaser-grid { grid-template-columns: 1fr; }
  .actu-item { grid-template-columns: 1fr; gap: 0.5rem; }
}

/* ── VISIONNEUSE PLEIN ÉCRAN (plan du site, etc.) ── */
.image-viewer {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26,18,8,0.95);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  cursor: zoom-out;
}
.image-viewer.open { display: flex; }
.image-viewer img {
  max-width: 100%;
  max-height: 100%;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  cursor: default;
}
.image-viewer-close {
  position: fixed;
  top: 1.5rem;
  right: 2rem;
  background: none;
  border: none;
  color: var(--parchemin);
  font-size: 1.8rem;
  cursor: pointer;
  opacity: 0.75;
  line-height: 1;
  padding: 0.5rem;
}
.image-viewer-close:hover { opacity: 1; }
.image-viewer-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: 1px solid rgba(240,230,192,0.4);
  color: var(--parchemin);
  font-size: 2rem;
  width: 3rem;
  height: 3rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.75;
  display: none;
}
.image-viewer-nav:hover { opacity: 1; border-color: var(--or); }
.image-viewer.has-multiple .image-viewer-nav { display: block; }
.image-viewer-prev { left: 1.5rem; }
.image-viewer-next { right: 1.5rem; }
.image-viewer-counter {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--parchemin);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  opacity: 0.7;
  display: none;
}
.image-viewer.has-multiple .image-viewer-counter { display: block; }
