/** Shopify CDN: Minification failed

Line 57:0 All "@import" rules must come first

**/
/* ==========================================================================
   SECTION: Notre Histoire
   Fichier: section-notre-histoire.css
   
   Structure:
   1. Variables & Base
   2. Hero Section
   3. Intro Section
   4. Divider
   5. Story Blocks
   6. Quote Section
   7. Values Section
   8. Closing Section
   9. Animations
   10. Responsive (Mobile First)
   ========================================================================== */

/* ==========================================================================
   1. VARIABLES & BASE
   ========================================================================== */

.notre-histoire {
  /* Couleurs - surchargÃ©es par les settings Liquid */
  --nh-brown-deep: #432D1F;
  --nh-brown-medium: #5A3D2B;
  --nh-terracotta: #B8704B;
  --nh-copper: #C4835A;
  --nh-gold: #D4A574;
  --nh-cream: #FAF7F4;
  --nh-cream-warm: #F3EDE6;
  --nh-charcoal: #2C2C2C;
  --nh-charcoal-light: #4A4A4A;
  
  /* Typography */
  --nh-font-display: 'Cormorant Garamond', Georgia, serif;
  --nh-font-body: var(--font-body-family, 'DM Sans', -apple-system, sans-serif);
  
  /* Spacing */
  --nh-section-padding: clamp(4rem, 10vw, 8rem);
  --nh-content-max-width: 1200px;
  --nh-text-max-width: 680px;
  
  /* Reset */
  font-family: var(--nh-font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--nh-charcoal);
  background-color: var(--nh-cream);
}

/* Google Font Import - Cormorant Garamond */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&display=swap');

/* ==========================================================================
   2. HERO SECTION
   ========================================================================== */

.nh-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--nh-brown-deep) 0%, #2A1C13 100%);
  overflow: hidden;
}

.nh-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 20% 80%, rgba(184, 112, 75, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(212, 165, 116, 0.08) 0%, transparent 40%);
  pointer-events: none;
}

.nh-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
}

.nh-hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem;
  max-width: 900px;
  animation: nh-fadeInUp 1.2s ease-out;
}

.nh-hero__eyebrow {
  font-family: var(--nh-font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--nh-gold);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: nh-fadeInUp 1s ease-out 0.3s forwards;
}

.nh-hero__title {
  font-family: var(--nh-font-display);
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--nh-cream);
  margin: 0 0 1.5rem 0;
  opacity: 0;
  animation: nh-fadeInUp 1s ease-out 0.5s forwards;
}

.nh-hero__title em {
  font-style: italic;
  color: var(--nh-terracotta);
}

.nh-hero__subtitle {
  font-family: var(--nh-font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 400;
  font-style: italic;
  color: rgba(250, 247, 244, 0.8);
  max-width: 600px;
  margin: 0 auto;
  opacity: 0;
  animation: nh-fadeInUp 1s ease-out 0.7s forwards;
}

.nh-hero__scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(250, 247, 244, 0.5);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0;
  animation: nh-fadeInUp 1s ease-out 1.2s forwards;
}

.nh-hero__scroll-indicator::after {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--nh-terracotta), transparent);
  animation: nh-scrollPulse 2s ease-in-out infinite;
}

/* ==========================================================================
   3. INTRO SECTION
   ========================================================================== */

.nh-intro {
  padding: var(--nh-section-padding) 2rem;
  background: var(--nh-cream);
}

.nh-intro__container {
  max-width: var(--nh-text-max-width);
  margin: 0 auto;
}

.nh-intro__lead {
  font-family: var(--nh-font-display);
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 400;
  line-height: 1.5;
  color: var(--nh-brown-deep);
  margin: 0 0 2.5rem 0;
  text-align: center;
}

.nh-intro__text {
  font-size: 1.05rem;
  color: var(--nh-charcoal-light);
}

.nh-intro__text p {
  margin: 0 0 1.5rem 0;
}

.nh-intro__text p:last-child {
  margin-bottom: 0;
}

.nh-intro__text strong {
  color: var(--nh-brown-deep);
  font-weight: 600;
}

/* ==========================================================================
   4. DIVIDER
   ========================================================================== */

.nh-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 3rem 2rem;
  background: var(--nh-cream);
}

.nh-divider__line {
  width: 60px;
  height: 1px;
  background: var(--nh-brown-deep);
  opacity: 0.2;
}

.nh-divider__icon {
  color: var(--nh-terracotta);
  opacity: 0.6;
}

/* ==========================================================================
   5. STORY BLOCKS
   ========================================================================== */

.nh-story {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 70vh;
  position: relative;
}

.nh-story__image {
  position: relative;
  min-height: 400px;
  overflow: hidden;
}

.nh-story__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.nh-story:hover .nh-story__image img {
  transform: scale(1.03);
}

.nh-story__placeholder {
  width: 100%;
  height: 100%;
  background: var(--nh-cream-warm);
}

.nh-story__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 6vw, 5rem);
  background: var(--nh-cream);
}

.nh-story__label {
  font-family: var(--nh-font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--nh-terracotta);
  margin-bottom: 1rem;
}

.nh-story__heading {
  font-family: var(--nh-font-display);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 500;
  line-height: 1.25;
  margin: 0 0 1.5rem 0;
  color: var(--nh-brown-deep);
}

.nh-story__text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--nh-charcoal-light);
  max-width: 520px;
}

.nh-story__text p {
  margin: 0 0 1.25rem 0;
}

.nh-story__text p:last-child {
  margin-bottom: 0;
}

.nh-story__text strong {
  color: var(--nh-brown-deep);
  font-weight: 600;
}

/* Story Block - Warm variant */
.nh-story--warm .nh-story__content {
  background: var(--nh-cream-warm);
}

/* Story Block - Dark variant */
.nh-story--dark .nh-story__content {
  background: var(--nh-brown-deep);
  color: var(--nh-cream);
}

.nh-story--dark .nh-story__label {
  color: var(--nh-gold);
}

.nh-story--dark .nh-story__heading {
  color: var(--nh-cream);
}

.nh-story--dark .nh-story__text {
  color: rgba(250, 247, 244, 0.85);
}

.nh-story--dark .nh-story__text strong {
  color: var(--nh-gold);
}

/* ==========================================================================
   6. QUOTE SECTION
   ========================================================================== */

.nh-quote {
  padding: var(--nh-section-padding) 2rem;
  background: var(--nh-brown-deep);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.nh-quote::before {
  content: '"';
  position: absolute;
  top: -0.1em;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--nh-font-display);
  font-size: clamp(15rem, 40vw, 30rem);
  color: rgba(255, 255, 255, 0.03);
  line-height: 1;
  pointer-events: none;
}

.nh-quote__container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.nh-quote__text {
  font-family: var(--nh-font-display);
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.4;
  color: var(--nh-cream);
  margin: 0 0 2rem 0;
}

.nh-quote__text strong {
  color: var(--nh-terracotta);
  font-weight: 500;
}

.nh-quote__author {
  font-family: var(--nh-font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--nh-gold);
  margin: 0;
}

/* ==========================================================================
   7. VALUES SECTION
   ========================================================================== */

.nh-values {
  padding: var(--nh-section-padding) 2rem;
  background: var(--nh-cream-warm);
}

.nh-values__container {
  max-width: var(--nh-content-max-width);
  margin: 0 auto;
}

.nh-values__header {
  text-align: center;
  margin-bottom: 4rem;
}

.nh-values__title {
  font-family: var(--nh-font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 400;
  color: var(--nh-brown-deep);
  margin: 0 0 1rem 0;
}

.nh-values__subtitle {
  font-size: 1rem;
  color: var(--nh-charcoal-light);
  max-width: 500px;
  margin: 0 auto;
}

.nh-values__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.nh-values__card {
  background: var(--nh-cream);
  padding: 2rem;
  border-radius: 2px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nh-values__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, var(--nh-terracotta), var(--nh-copper));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nh-values__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(67, 45, 31, 0.1);
}

.nh-values__card:hover::before {
  opacity: 1;
}

.nh-values__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.5rem;
  color: var(--nh-terracotta);
}

.nh-values__icon svg {
  width: 100%;
  height: 100%;
}

.nh-values__name {
  font-family: var(--nh-font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--nh-brown-deep);
  margin: 0 0 0.75rem 0;
}

.nh-values__description {
  font-size: 0.95rem;
  color: var(--nh-charcoal-light);
  line-height: 1.7;
  margin: 0;
}

/* ==========================================================================
   8. CLOSING SECTION
   ========================================================================== */

.nh-closing {
  padding: var(--nh-section-padding) 2rem;
  background: var(--nh-cream);
  text-align: center;
}

.nh-closing__container {
  max-width: var(--nh-text-max-width);
  margin: 0 auto;
}

.nh-closing__text {
  font-family: var(--nh-font-display);
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  font-weight: 400;
  line-height: 1.6;
  color: var(--nh-charcoal);
  margin-bottom: 2rem;
}

.nh-closing__text p {
  margin: 0 0 1.5rem 0;
}

.nh-closing__text p:last-child {
  margin-bottom: 0;
}

.nh-closing__signature {
  font-family: var(--nh-font-display);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--nh-brown-deep);
  margin: 2rem 0 3rem 0;
}

.nh-closing__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  font-family: var(--nh-font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--nh-cream);
  background: var(--nh-brown-deep);
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.nh-closing__cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--nh-terracotta);
  transform: translateX(-101%);
  transition: transform 0.4s ease;
}

.nh-closing__cta:hover::before {
  transform: translateX(0);
}

.nh-closing__cta span {
  position: relative;
  z-index: 1;
}

.nh-closing__cta svg {
  position: relative;
  z-index: 1;
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.nh-closing__cta:hover svg {
  transform: translateX(4px);
}

/* ==========================================================================
   9. ANIMATIONS
   ========================================================================== */

@keyframes nh-fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes nh-scrollPulse {
  0%, 100% { 
    opacity: 0.3; 
    transform: scaleY(1); 
  }
  50% { 
    opacity: 1; 
    transform: scaleY(1.2); 
  }
}

/* Scroll Reveal Animation */
.nh-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.nh-reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .nh-hero__content,
  .nh-hero__eyebrow,
  .nh-hero__title,
  .nh-hero__subtitle,
  .nh-hero__scroll-indicator,
  .nh-reveal {
    animation: none;
    opacity: 1;
    transform: none;
  }
  
  .nh-hero__scroll-indicator::after {
    animation: none;
  }
  
  .nh-story__image img {
    transition: none;
  }
}

/* ==========================================================================
   10. RESPONSIVE
   ========================================================================== */

/* Tablet (768px+) */
@media (min-width: 768px) {
  .nh-values__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .nh-values__card {
    padding: 2.5rem;
  }
}

/* Desktop (900px+) */
@media (min-width: 900px) {
  .nh-story {
    grid-template-columns: 1fr 1fr;
  }
  
  .nh-story--reverse .nh-story__image {
    order: 2;
  }
  
  .nh-story--reverse .nh-story__content {
    order: 1;
  }
  
  .nh-values__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

/* Large Desktop (1200px+) */
@media (min-width: 1200px) {
  .nh-story__content {
    padding: 5rem;
  }
}

/* Mobile Small (max 600px) */
@media (max-width: 600px) {
  .nh-hero {
    min-height: 75vh;
  }
  
  .nh-hero__content {
    padding: 1.5rem;
  }
  
  .nh-story__content {
    padding: 2.5rem 1.5rem;
  }
  
  .nh-story__image {
    min-height: 300px;
  }
  
  .nh-intro {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  
  .nh-quote {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  
  .nh-values {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  
  .nh-closing {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  
  .nh-closing__cta {
    padding: 1rem 2rem;
    font-size: 0.8rem;
  }
}