/* Les Gamines - Poix-Saint-Hubert */

:root {
  --amber: #B5751D;
  --amber-dark: #7A4E10;
  --amber-light: #E8CC8A;
  --amber-pale: #F5E6C8;
  --cream: #FDFAF4;
  --brown: #2C1A0E;
  --brown-mid: #5C3D1E;
  --grey-soft: #9E8570;
  --white: #fff;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  background: var(--cream);
  color: var(--brown);
  font-size: 17px;
  line-height: 1.75;
}

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

a {
  color: var(--amber);
  text-decoration: none;
}

a:hover {
  color: var(--amber-dark);
  text-decoration: underline;
}

/* ===========================
   TYPOGRAPHY
=========================== */

h1, h2, h3, h4 {
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--brown);
  line-height: 1.25;
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); }
h3 { font-size: 1.25rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ===========================
   LAYOUT UTILITIES
=========================== */

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

.section {
  padding: 72px 0;
}

.section--alt {
  background: var(--amber-pale);
}

/* ===========================
   HEADER & NAV
=========================== */

.site-header {
  background: var(--cream);
  border-bottom: 2px solid var(--amber-light);
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 1rem;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.site-logo svg {
  flex-shrink: 0;
}

.logo-text {
  font-family: Georgia, serif;
  font-size: 1.35rem;
  color: var(--brown);
  font-weight: normal;
  line-height: 1.1;
}

.logo-text span {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
}

/* hamburger - left on mobile */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  order: -1;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--brown);
  margin: 5px 0;
  transition: 0.3s;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
}

.primary-nav li a {
  display: block;
  padding: 6px 14px;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--brown-mid);
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 600;
}

.primary-nav li a:hover,
.primary-nav li a.active {
  color: var(--amber);
  text-decoration: none;
}

.nav-podcast {
  margin-left: 8px;
  padding: 7px 18px !important;
  background: var(--amber);
  color: var(--white) !important;
  border-radius: 20px;
  transition: background 0.2s !important;
}

.nav-podcast:hover {
  background: var(--amber-dark) !important;
  color: var(--white) !important;
}

/* ===========================
   HERO - SPLIT LAYOUT
=========================== */

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  overflow: hidden;
}

.hero-visual {
  background: var(--amber-dark);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-illustration {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-svg-wrap {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 56px;
  background: var(--cream);
}

.hero-label {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 700;
  margin-bottom: 16px;
}

.hero-content h1 {
  margin-bottom: 20px;
}

.hero-content p {
  color: var(--brown-mid);
  font-size: 1.05rem;
  max-width: 420px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

/* ===========================
   BUTTONS
=========================== */

.btn {
  display: inline-block;
  padding: 11px 26px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  border: 2px solid transparent;
  letter-spacing: 0.02em;
}

.btn-primary {
  background: var(--amber);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--amber-dark);
  color: var(--white);
  text-decoration: none;
}

.btn-outline {
  background: transparent;
  border-color: var(--amber);
  color: var(--amber);
}

.btn-outline:hover {
  background: var(--amber);
  color: var(--white);
  text-decoration: none;
}

/* ===========================
   PILLARS - WHAT WE ARE
=========================== */

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.pillar {
  text-align: center;
  padding: 32px 20px;
}

.pillar-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: var(--amber-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pillar h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.95rem;
}

.pillar p {
  color: var(--brown-mid);
  font-size: 0.95rem;
}

/* ===========================
   PHILOSOPHY STRIP
=========================== */

.philosophy {
  background: var(--amber-dark);
  color: var(--white);
  padding: 56px 0;
  text-align: center;
}

.philosophy p {
  font-family: Georgia, serif;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.6;
  color: var(--amber-pale);
}

/* ===========================
   ARTISANS PREVIEW
=========================== */

.artisans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 36px;
}

.artisan-card {
  text-align: center;
  padding: 24px 16px;
}

.artisan-card .icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.artisan-card h4 {
  font-size: 1rem;
  margin-bottom: 6px;
  color: var(--amber-dark);
}

.artisan-card p {
  font-size: 0.875rem;
  color: var(--grey-soft);
}

/* ===========================
   BLOG / ACTUALITES
=========================== */

.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 36px;
  margin-top: 40px;
}

.post-item {
  border-top: 3px solid var(--amber-light);
  padding-top: 24px;
}

.post-meta {
  font-size: 0.8rem;
  color: var(--grey-soft);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.post-item h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.post-item h3 a {
  color: var(--brown);
  text-decoration: none;
}

.post-item h3 a:hover {
  color: var(--amber);
}

.post-item p {
  color: var(--brown-mid);
  font-size: 0.93rem;
}

.post-item p a {
  color: var(--amber);
}

.read-more {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--amber);
  text-decoration: none;
  letter-spacing: 0.03em;
}

.read-more:hover {
  color: var(--amber-dark);
  text-decoration: underline;
}

.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 8px;
}

.section-link {
  font-size: 0.875rem;
  color: var(--amber);
  font-weight: 600;
}

/* ===========================
   FOOTER
=========================== */

.site-footer {
  background: var(--brown);
  color: var(--amber-light);
  padding: 22px 0;
  text-align: center;
  font-size: 0.85rem;
}

.site-footer a {
  color: var(--amber-light);
  margin: 0 8px;
}

.site-footer a:hover {
  color: var(--white);
}

/* ===========================
   COOKIE NOTICE
=========================== */

.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--brown);
  color: var(--amber-pale);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.875rem;
  z-index: 999;
}

.cookie-bar.hidden { display: none; }

.cookie-btn {
  background: var(--amber);
  color: var(--white);
  border: none;
  padding: 8px 20px;
  border-radius: 16px;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 600;
}

/* ===========================
   RESPONSIVE
=========================== */

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-visual {
    min-height: 260px;
  }

  .hero-content {
    padding: 40px 30px;
  }

  .pillars {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .primary-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    border-top: 2px solid var(--amber-light);
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 0;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  }

  .primary-nav.open {
    display: flex;
  }

  .primary-nav li {
    width: 100%;
  }

  .primary-nav li a {
    padding: 10px 24px;
  }

  .nav-podcast {
    margin: 8px 24px;
    display: inline-block;
    width: auto;
  }

  .site-header .container {
    position: relative;
  }
}

@media (max-width: 600px) {
  .section { padding: 48px 0; }
  .artisans-grid { grid-template-columns: 1fr 1fr; }
  .posts-grid { grid-template-columns: 1fr; }
}
