/* Wood&C — one-page — charte : noir #0A0A0A / or #C9A24B / ivoire #F7F4EE */

:root {
  --black: #0A0A0A;
  --gold: #C9A24B;
  --gold-light: #E4C878;
  --gold-deep: #8C6B2E; /* variante accessible du gold pour texte sur fond clair (contraste >= 4.5:1) */
  --ivory: #F7F4EE;
  --anthracite: #2B2B2B;
  --white: #FFFFFF;
  --font-title: 'Oswald', sans-serif;
  --font-body: 'Work Sans', sans-serif;
  --container-w: 1140px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--anthracite);
  background: var(--white);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: var(--font-title);
  color: var(--black);
  line-height: 1.2;
  margin: 0 0 .5em;
  text-transform: uppercase;
  letter-spacing: .02em;
}

h1 { font-size: clamp(2rem, 4.5vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1em; }

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

.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Banner test */
.banner-test {
  background: var(--gold);
  color: var(--black);
  text-align: center;
  font-size: .8rem;
  font-weight: 600;
  padding: .5rem 1rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--black);
  border-bottom: 1px solid rgba(201,162,75,.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .6rem 1.5rem;
  gap: 1rem;
}

.brand-logo { height: 48px; display: block; }

.main-nav {
  display: flex;
  gap: 1.75rem;
  flex: 1;
  justify-content: center;
}

.main-nav a {
  color: var(--ivory);
  font-family: var(--font-title);
  font-size: .9rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  transition: color .2s;
}

.main-nav a:hover { color: var(--gold); }

.header-actions { display: flex; align-items: center; gap: 1rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .4rem;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--gold); display: block; }

/* Buttons */
.btn {
  display: inline-block;
  font-family: var(--font-title);
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: .85rem;
  padding: .8rem 1.6rem;
  border-radius: 2px;
  border: 2px solid transparent;
  transition: background .2s, color .2s, border-color .2s;
  cursor: pointer;
}
.btn-primary { background: var(--gold); color: var(--black); }
.btn-primary:hover { background: var(--gold-light); }
.btn-outline { border-color: var(--gold); color: var(--ivory); }
.btn-outline:hover { background: var(--gold); color: var(--black); }
.btn-outline-dark { border-color: var(--black); color: var(--black); }
.btn-outline-dark:hover { background: var(--black); color: var(--gold); }
.btn-ghost { color: var(--gold); font-family: var(--font-title); font-size: .85rem; letter-spacing: .03em; white-space: nowrap; }
.btn-ghost:hover { color: var(--gold-light); }

/* Hero */
.hero {
  position: relative;
  background: var(--black);
  color: var(--ivory);
  padding: 7rem 0 6rem;
  overflow: hidden;
}

.hero-watermark {
  position: absolute;
  right: -60px;
  top: -40px;
  width: 420px;
  height: 420px;
  background: url('/assets/img/icon-wood-c.png') no-repeat center / contain;
  opacity: .08;
  pointer-events: none;
}

.hero-inner { position: relative; z-index: 1; max-width: 760px; }

.eyebrow {
  font-family: var(--font-title);
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .85rem;
  margin-bottom: 1rem;
}
.eyebrow-dark { color: var(--gold-deep); }

.hero-baseline {
  font-size: 1.1rem;
  color: var(--ivory);
  opacity: .85;
  margin-bottom: 2rem;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Sections */
.section { padding: 5.5rem 0; }
.section-light { background: var(--white); }
.section-ivory { background: var(--ivory); }
.section-dark { background: var(--black); color: var(--ivory); }
.section-dark h2, .section-dark h3 { color: var(--ivory); }

.section-intro { max-width: 620px; color: var(--anthracite); }
.section-dark .section-intro { color: var(--ivory); opacity: .85; }

/* Cards */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.75rem;
  margin-top: 2.5rem;
}
.card {
  background: var(--ivory);
  border-top: 3px solid var(--gold);
  padding: 2rem 1.5rem;
  text-align: left;
}
.card-icon { font-size: 2rem; margin-bottom: .75rem; }
.card p { color: var(--anthracite); font-size: .95rem; }

/* A propos */
.apropos-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: center;
}
.badge-compagnon {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-title);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: .8rem;
  padding: .3rem .8rem;
  margin-bottom: 1.2rem;
}
.apropos-mark { display: flex; justify-content: center; }
.apropos-mark img { width: 100%; max-width: 260px; opacity: .9; }

/* Instagram grid */
.insta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  margin: 2.5rem 0 2rem;
}
.insta-tile {
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, var(--black), var(--anthracite));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  border: 1px solid rgba(201,162,75,.4);
  transition: transform .2s, border-color .2s;
}
.insta-tile:hover { transform: translateY(-4px); border-color: var(--gold); }
.insta-grid.has-widget { display: block; }
.insta-cta { margin-top: 1rem; }

/* Zone list */
.zone-list {
  list-style: none;
  padding: 0;
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1.5rem;
}
.zone-list li {
  font-family: var(--font-title);
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: .95rem;
  padding: .4rem 0;
  border-bottom: 2px solid var(--gold);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
}
.contact-list { list-style: none; padding: 0; margin-top: 1.5rem; }
.contact-list li { margin-bottom: .9rem; font-size: 1.05rem; }
.contact-list a:hover { color: var(--gold); }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  background: var(--ivory);
  padding: 2rem;
}
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  font-family: var(--font-title);
  text-transform: uppercase;
  font-size: .8rem;
  letter-spacing: .04em;
  color: var(--anthracite);
}
.contact-form input,
.contact-form textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: .7rem .8rem;
  border: 1px solid #ccc;
  border-radius: 2px;
  background: var(--white);
}
.contact-form button { align-self: flex-start; margin-top: .3rem; }

/* Footer */
.site-footer { background: var(--black); color: var(--ivory); padding: 3rem 0 2rem; }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; text-align: center; }
.footer-logo { height: 44px; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 1.5rem; justify-content: center; }
.footer-nav a { font-size: .85rem; letter-spacing: .03em; color: var(--ivory); opacity: .85; }
.footer-nav a:hover { color: var(--gold); opacity: 1; }
.footer-credit { font-size: .8rem; opacity: .6; margin: 0; }

/* Responsive */
@media (max-width: 900px) {
  .apropos-grid, .contact-grid { grid-template-columns: 1fr; }
  .apropos-mark { order: -1; }
}

@media (max-width: 780px) {
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--black);
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 0;
    gap: 1.25rem;
    display: none;
  }
  .main-nav.open { display: flex; }
  .nav-toggle { display: flex; }
  .btn-ghost { display: none; }
}
