/* ==============================================================
   CANNELLE & POTIRON — Feuille de styles principale
   ==============================================================
   Sommaire
   01. Variables (palette, typo, spacing)
   02. Reset & base
   03. Layout (container, grids)
   04. Typographie
   05. Boutons
   06. Header & navigation
   07. Hero
   08. Bandeau réassurance
   09. Section À propos
   10. Section Prestations
   11. Section Cuisine signature
   12. Galerie + Lightbox
   13. Avis
   14. Contact + formulaire
   15. Footer
   16. Animations (scroll reveal)
   17. Responsive (tablette, desktop)
   ============================================================== */


/* ==============================================================
   01. VARIABLES
   ============================================================== */
:root {
  /* — Palette principale — */
  --cream:        #FAF6EE;       /* fond principal, blanc cassé chaud */
  --cream-soft:   #F4ECDC;       /* fond alternatif sections */
  --cream-deep:   #EDE2CC;       /* lignes / séparateurs */
  --beige-warm:   #E8D9BD;       /* dégradés doux */

  --brown:        #5C3A1E;       /* brun cannelle profond, texte titres */
  --brown-soft:   #7A4E2C;       /* brun cannelle medium */
  --brown-light:  #9A6B43;       /* brun éclairé */

  --gold:         #C9A35E;       /* doré principal */
  --gold-deep:    #A8853F;       /* doré accent */
  --gold-soft:    #E0C68F;       /* doré clair */

  --saffron:      #E0A04A;       /* safran (énergie) */
  --pumpkin:      #D97540;       /* orange potiron (CTA, accent) */
  --pumpkin-deep: #B85B2A;       /* potiron foncé hover */

  --green-soft:   #A8B89A;       /* vert pistache discret */

  --text:         #3D2817;       /* corps de texte */
  --text-soft:    #6B5847;       /* texte secondaire */
  --text-muted:   #9A8775;       /* texte placeholder / discret */

  --white:        #FFFFFF;
  --black:        #1F1610;

  /* — Typographie — */
  --font-serif:   'Cormorant Garamond', 'Georgia', serif;
  --font-sans:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* — Espacements (échelle 8px) — */
  --space-1:  0.5rem;
  --space-2:  1rem;
  --space-3:  1.5rem;
  --space-4:  2rem;
  --space-5:  3rem;
  --space-6:  4rem;
  --space-7:  6rem;
  --space-8:  8rem;

  /* — Rayons de bordure — */
  --radius-sm:  4px;
  --radius:     8px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  --radius-pill: 999px;

  /* — Ombres — */
  --shadow-sm:   0 2px 8px rgba(92, 58, 30, 0.06);
  --shadow:      0 8px 24px rgba(92, 58, 30, 0.10);
  --shadow-lg:   0 20px 50px rgba(92, 58, 30, 0.15);
  --shadow-gold: 0 8px 24px rgba(201, 163, 94, 0.25);

  /* — Transitions — */
  --transition:        180ms ease;
  --transition-slow:   400ms cubic-bezier(0.4, 0, 0.2, 1);

  /* — Mise en page — */
  --container-max:   1200px;
  --container-pad:   1.5rem;
  --header-h:        80px;
}


/* ==============================================================
   02. RESET & BASE
   ============================================================== */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--brown-soft);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--pumpkin); }

ul { list-style: none; padding: 0; margin: 0; }

button { font-family: inherit; cursor: pointer; }

input, select, textarea, button {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}


/* ==============================================================
   03. LAYOUT
   ============================================================== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

section {
  padding: var(--space-7) 0;
}


/* ==============================================================
   04. TYPOGRAPHIE
   ============================================================== */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--brown);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 var(--space-3);
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 500;
}
h1 em { font-style: italic; color: var(--saffron); font-weight: 500; }

h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 500;
}

h3 {
  font-size: 1.4rem;
  font-weight: 600;
}

h4 {
  font-size: 1rem;
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--brown);
}

p { margin: 0 0 var(--space-2); }

.lead {
  font-size: 1.15rem;
  color: var(--text-soft);
  font-weight: 400;
}

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: var(--space-2);
  position: relative;
  padding-left: 36px;
}
.section-eyebrow::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 24px;
  height: 1px;
  background: var(--gold);
}
.section-eyebrow.light { color: var(--gold-soft); }
.section-eyebrow.light::before { background: var(--gold-soft); }

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--space-6);
}

.section-intro {
  font-size: 1.05rem;
  color: var(--text-soft);
  margin-top: var(--space-2);
}


/* ==============================================================
   05. BOUTONS
   ============================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--pumpkin);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(217, 117, 64, 0.35);
}
.btn-primary:hover {
  background: var(--pumpkin-deep);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(184, 91, 42, 0.4);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.6);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
  color: var(--white);
}

.btn-sm {
  padding: 0.6rem 1.2rem;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}


/* ==============================================================
   06. HEADER & NAVIGATION
   ============================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 246, 238, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all var(--transition);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(250, 246, 238, 0.98);
  border-bottom-color: var(--cream-deep);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.logo img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-name {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--brown);
}
.logo-tagline {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-top: 2px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}
.site-nav ul {
  display: flex;
  gap: var(--space-3);
}
.site-nav ul a {
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  padding: 0.25rem 0;
}
.site-nav ul a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width var(--transition);
}
.site-nav ul a:hover {
  color: var(--brown);
}
.site-nav ul a:hover::after {
  width: 100%;
}

/* Bouton burger */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--brown);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ==============================================================
   07. HERO
   ============================================================== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  overflow: hidden;
  isolation: isolate;
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg,
      rgba(60, 35, 15, 0.78) 0%,
      rgba(92, 58, 30, 0.55) 45%,
      rgba(184, 91, 42, 0.35) 100%);
}

.hero-content {
  color: var(--white);
  max-width: 800px;
  padding-top: var(--space-5);
  padding-bottom: var(--space-5);
}

.hero-eyebrow {
  display: inline-block;
  padding: 0.4rem 1rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-soft);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(224, 198, 143, 0.4);
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-3);
  backdrop-filter: blur(10px);
}

.hero h1 {
  color: var(--white);
  margin-bottom: var(--space-3);
}
.hero h1 em {
  color: var(--gold-soft);
}

.hero-subtitle {
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
  max-width: 620px;
  margin-bottom: var(--space-4);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}


/* ==============================================================
   08. BANDEAU RÉASSURANCE
   ============================================================== */
.reassurance {
  padding: var(--space-5) 0;
  background: var(--cream-soft);
}

.reassurance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-4);
}

.reassurance-item {
  text-align: center;
  padding: var(--space-2);
}
.reassurance-item .icon {
  width: 38px;
  height: 38px;
  color: var(--gold-deep);
  margin: 0 auto var(--space-2);
}
.reassurance-item h3 {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 0.4rem;
}
.reassurance-item p {
  font-size: 0.92rem;
  color: var(--text-soft);
  margin: 0;
  line-height: 1.55;
}


/* ==============================================================
   09. SECTION À PROPOS
   ============================================================== */
.about {
  background: var(--cream);
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: var(--space-7);
  align-items: center;
}

.about-image {
  position: relative;
}
.about-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.about-image-deco {
  position: absolute;
  top: 24px;
  left: 24px;
  right: -24px;
  bottom: -24px;
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  z-index: 1;
}

.about-content .lead {
  margin: var(--space-2) 0 var(--space-3);
}

.about-content p {
  margin-bottom: var(--space-2);
}

.about-content .btn {
  margin-top: var(--space-3);
}


/* ==============================================================
   10. SECTION PRESTATIONS
   ============================================================== */
.services {
  background: var(--cream-soft);
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-3);
}

.service-card {
  background: var(--white);
  padding: var(--space-4) var(--space-3);
  border-radius: var(--radius-lg);
  border: 1px solid var(--cream-deep);
  transition: all var(--transition-slow);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-soft);
}

.service-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--cream-soft), var(--beige-warm));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-2);
}
.service-icon svg {
  width: 28px;
  height: 28px;
  color: var(--gold-deep);
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
}

.service-card p {
  color: var(--text-soft);
  font-size: 0.95rem;
  flex: 1;
  margin-bottom: var(--space-2);
}

.service-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--pumpkin);
  letter-spacing: 0.02em;
}
.service-link:hover { color: var(--pumpkin-deep); }

.services-note {
  text-align: center;
  margin-top: var(--space-4);
  color: var(--text-soft);
  font-size: 0.95rem;
}


/* ==============================================================
   11. SECTION CUISINE SIGNATURE
   ============================================================== */
.signature {
  background: var(--cream);
}

.signature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-4);
}

.signature-item {
  text-align: center;
}

.signature-img {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: var(--space-2);
  box-shadow: var(--shadow);
}
.signature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.signature-item:hover .signature-img img {
  transform: scale(1.05);
}

.signature-item h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.signature-item p {
  color: var(--text-soft);
  max-width: 320px;
  margin: 0 auto;
  font-size: 0.95rem;
}


/* ==============================================================
   12. GALERIE + LIGHTBOX
   ============================================================== */
.gallery {
  background: var(--cream-soft);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: var(--space-2);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  display: block;
  background: var(--cream-deep);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(60, 35, 15, 0.5));
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item:hover::after { opacity: 1; }

.gallery-item-tall  { grid-row: span 2; }
.gallery-item-wide  { grid-column: span 2; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(20, 12, 6, 0.94);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: var(--space-3);
}
.lightbox.is-open { display: flex; }
.lightbox img {
  max-width: 92vw;
  max-height: 86vh;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  line-height: 1;
  transition: all var(--transition);
  backdrop-filter: blur(8px);
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.18);
}
.lightbox-close { top: 20px; right: 20px; }
.lightbox-prev  { left: 20px; top: 50%; transform: translateY(-50%); font-size: 2rem; }
.lightbox-next  { right: 20px; top: 50%; transform: translateY(-50%); font-size: 2rem; }


/* ==============================================================
   13. AVIS
   ============================================================== */
.reviews {
  background: var(--cream);
  position: relative;
}

.reviews-rating {
  margin-top: var(--space-3);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.stars {
  display: flex;
  gap: 4px;
}
.stars svg {
  width: 22px;
  height: 22px;
  fill: var(--saffron);
}
.reviews-rating-text {
  font-size: 0.95rem;
  color: var(--text-soft);
  margin: 0;
}
.reviews-rating-text strong { color: var(--brown); }
.reviews-note {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-3);
  margin-bottom: var(--space-5);
}

.review-card {
  background: var(--white);
  padding: var(--space-4) var(--space-3);
  border-radius: var(--radius-lg);
  border: 1px solid var(--cream-deep);
  margin: 0;
  position: relative;
}
.review-card::before {
  content: '“';
  position: absolute;
  top: 8px;
  left: 16px;
  font-family: var(--font-serif);
  font-size: 4rem;
  color: var(--gold-soft);
  line-height: 1;
  opacity: 0.6;
}
.review-text {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text);
  position: relative;
  margin-bottom: var(--space-2);
  padding-top: var(--space-2);
}
.review-author {
  font-size: 0.85rem;
  color: var(--gold-deep);
  font-weight: 500;
  letter-spacing: 0.04em;
}
.review-placeholder .review-text {
  color: var(--text-muted);
}

.reviews-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
}
.reviews-tags span {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--cream-soft);
  border: 1px solid var(--cream-deep);
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  color: var(--brown-soft);
}


/* ==============================================================
   14. CONTACT + FORMULAIRE
   ============================================================== */
.contact {
  background: linear-gradient(135deg, #4A2E16 0%, #5C3A1E 50%, #7A4E2C 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(224, 160, 74, 0.18), transparent 70%);
  pointer-events: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-7);
  position: relative;
  z-index: 1;
}

.contact-info h2 {
  color: var(--white);
}

.contact-info p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
}

.contact-list {
  margin-top: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.95rem;
}
.contact-list .icon {
  width: 22px;
  height: 22px;
  color: var(--gold-soft);
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-list a {
  color: var(--white);
  text-decoration: underline;
  text-decoration-color: rgba(224, 198, 143, 0.4);
  text-underline-offset: 4px;
}
.contact-list a:hover {
  color: var(--gold-soft);
  text-decoration-color: var(--gold-soft);
}
.contact-todo {
  font-style: italic;
  color: rgba(255, 255, 255, 0.6);
}

/* Formulaire */
.contact-form {
  background: var(--white);
  padding: var(--space-4);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  color: var(--text);
}

.form-row {
  margin-bottom: var(--space-2);
}
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2);
}

.form-field {
  display: flex;
  flex-direction: column;
}
.form-field label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--brown);
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  background: var(--cream-soft);
  border: 1.5px solid transparent;
  border-radius: var(--radius);
  color: var(--text);
  font-size: 0.95rem;
  transition: all var(--transition);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201, 163, 94, 0.15);
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--text-muted);
}
.form-field textarea {
  resize: vertical;
  min-height: 100px;
  font-family: var(--font-sans);
}

.form-actions {
  margin-top: var(--space-3);
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}
.form-actions .btn {
  align-self: flex-start;
}
.form-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
}

.form-success {
  margin-top: var(--space-3);
  padding: var(--space-2) var(--space-3);
  background: #E8F1E0;
  border-left: 3px solid var(--green-soft);
  border-radius: var(--radius);
  color: #3A5A2C;
  font-size: 0.95rem;
}


/* ==============================================================
   15. FOOTER
   ============================================================== */
.site-footer {
  background: #2D1C0E;
  color: rgba(250, 246, 238, 0.75);
  padding-top: var(--space-6);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-4);
  padding-bottom: var(--space-5);
}

.footer-brand .footer-logo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--cream);
  margin-bottom: var(--space-2);
}
.footer-tagline {
  color: rgba(250, 246, 238, 0.7);
  font-size: 0.95rem;
  max-width: 280px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
}

.footer-col h4 {
  color: var(--gold-soft);
  margin-bottom: var(--space-2);
  font-size: 0.78rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col li { font-size: 0.92rem; color: rgba(250, 246, 238, 0.7); }
.footer-col a { color: rgba(250, 246, 238, 0.85); }
.footer-col a:hover { color: var(--gold-soft); }

.footer-bottom {
  border-top: 1px solid rgba(250, 246, 238, 0.1);
  padding: var(--space-3) 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-2);
  font-size: 0.85rem;
  color: rgba(250, 246, 238, 0.5);
}
.footer-legal a {
  color: rgba(250, 246, 238, 0.6);
}
.footer-legal a:hover { color: var(--gold-soft); }


/* ==============================================================
   16. ANIMATIONS — scroll reveal
   ============================================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease-out, transform 700ms cubic-bezier(0.2, 0.8, 0.3, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}


/* ==============================================================
   17. RESPONSIVE
   ============================================================== */

/* — Tablette : ≤ 960px — */
@media (max-width: 960px) {

  section { padding: var(--space-6) 0; }

  /* Navigation : passage burger */
  .nav-toggle {
    display: flex;
    z-index: 110;
  }

  .site-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(360px, 90vw);
    height: 100vh;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: var(--space-5) var(--space-4);
    gap: var(--space-3);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.08);
    transition: right var(--transition-slow);
  }
  .site-nav.is-open { right: 0; }
  .site-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-2);
    width: 100%;
  }
  .site-nav ul a { font-size: 1.2rem; font-family: var(--font-serif); }
  .nav-cta { width: 100%; text-align: center; }

  /* Sections en colonne */
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--space-5);
  }
  .about-image-deco { display: none; }
  .about-image img { max-width: 480px; margin: 0 auto; }

  /* Galerie : grille 2 colonnes */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }
  .gallery-item-tall  { grid-row: span 2; }
  .gallery-item-wide  { grid-column: span 2; }
}

/* — Mobile : ≤ 640px — */
@media (max-width: 640px) {

  :root { --header-h: 70px; }

  section { padding: var(--space-5) 0; }

  .logo img { width: 44px; height: 44px; }
  .logo-name { font-size: 1.15rem; }
  .logo-tagline { font-size: 0.65rem; }

  .hero { min-height: 88vh; padding-top: calc(var(--header-h) + var(--space-3)); }
  .hero-content { padding-top: var(--space-4); }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; }

  .form-row-2 { grid-template-columns: 1fr; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 160px;
  }
  .gallery-item-tall { grid-row: span 1; }
  .gallery-item-wide { grid-column: span 2; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3);
  }
  .footer-brand { grid-column: span 2; }
}

/* — Très petit mobile : ≤ 380px — */
@media (max-width: 380px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-item-wide { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
}
