/* Atelier Olive — épicerie fine & table parisienne */

:root {
  --ivoire: #F4EFE6;
  --ivoire-dark: #E8E0D4;
  --olive: #3F4A2E;
  --olive-light: #5C6B42;
  --olive-muted: #6B7A52;
  --soleil: #E2B04A;
  --soleil-dark: #C99A35;
  --ink: #2A2F22;
  --shadow: rgba(63, 74, 46, 0.12);
  --shadow-deep: rgba(42, 47, 34, 0.2);
  --font-serif: 'Literata', Georgia, 'Times New Roman', serif;
  --font-sans: 'DM Sans', system-ui, sans-serif;
  --max-width: 1180px;
  --header-h: 72px;
}

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

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

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--ivoire);
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ── Header ── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244, 239, 230, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(63, 74, 46, 0.1);
  height: var(--header-h);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.brand-icon {
  width: 36px;
  height: 36px;
}

.brand-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--olive);
  display: block;
}

.brand-tagline {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--olive-muted);
  display: block;
}

.main-nav {
  display: flex;
  gap: 2rem;
}

.main-nav a {
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--olive);
  position: relative;
  transition: color 0.2s;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--soleil);
  transition: width 0.25s;
}

.main-nav a:hover::after {
  width: 100%;
}

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

.cart-trigger {
  position: relative;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(63, 74, 46, 0.2);
  transition: background 0.2s, border-color 0.2s;
}

.cart-trigger:hover {
  background: var(--ivoire-dark);
  border-color: var(--olive);
}

.cart-trigger svg {
  width: 20px;
  height: 20px;
  stroke: var(--olive);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cart-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  background: var(--soleil);
  color: var(--olive);
  font-size: 0.65rem;
  font-weight: 700;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.2s, transform 0.2s;
}

.cart-badge.is-visible {
  opacity: 1;
  transform: scale(1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  font-size: 1.4rem;
  color: var(--olive);
  border: 1px solid rgba(63, 74, 46, 0.2);
  border-radius: 8px;
}

/* ── Hero ── */

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  min-height: calc(100dvh - var(--header-h));
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ivoire);
}

.hero-leaf-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.07;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cpath d='M40 8c-10 8-18 18-18 28 0 10 8 18 18 18s18-8 18-18c0-10-8-20-18-28z' fill='%233F4A2E'/%3E%3Cpath d='M40 8v36' stroke='%23E2B04A' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 80px 80px;
  pointer-events: none;
}

.hero-leaf-pattern::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--ivoire) 0%, transparent 50%, rgba(226, 176, 74, 0.08) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 4rem 1.5rem 5rem;
  width: 100%;
}

.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--olive-muted);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-eyebrow::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--soleil);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--olive);
  max-width: 14ch;
  margin-bottom: 1.5rem;
}

.hero-title em {
  font-style: italic;
  color: var(--soleil-dark);
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--olive-muted);
  max-width: 42ch;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 2rem;
  background: var(--olive);
  color: var(--ivoire);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.25s, transform 0.2s;
}

.btn-primary:hover {
  background: var(--olive-light);
  transform: translateY(-1px);
}

.btn-primary svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.hero-accent {
  position: absolute;
  right: 5%;
  bottom: 15%;
  width: clamp(180px, 25vw, 280px);
  height: clamp(180px, 25vw, 280px);
  border: 1px solid rgba(63, 74, 46, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-accent::before {
  content: '';
  width: 70%;
  height: 70%;
  border: 1px solid rgba(226, 176, 74, 0.3);
  border-radius: 50%;
}

.hero-accent-leaf {
  position: absolute;
  width: 60px;
  height: 60px;
  opacity: 0.25;
}

/* ── Sections ── */

.section {
  padding: 5rem 0;
}

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

.section-label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--soleil-dark);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 500;
  color: var(--olive);
  margin-bottom: 2rem;
  line-height: 1.2;
}

/* ── Histoire ── */

.histoire {
  background: var(--olive);
  color: var(--ivoire);
}

.histoire .section-label {
  color: var(--soleil);
}

.histoire .section-title {
  color: var(--ivoire);
}

.histoire-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.histoire-text p {
  margin-bottom: 1.25rem;
  opacity: 0.9;
  font-size: 1.05rem;
}

.histoire-text p:last-child {
  margin-bottom: 0;
}

.histoire-quote {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-style: italic;
  line-height: 1.5;
  padding-left: 1.5rem;
  border-left: 2px solid var(--soleil);
  opacity: 0.95;
}

.histoire-meta {
  margin-top: 2rem;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--soleil);
}

/* ── Products ── */

.products {
  background: var(--ivoire-dark);
}

.products-header {
  max-width: var(--max-width);
  margin: 0 auto 3rem;
  padding: 0 1.5rem;
  text-align: center;
}

.products-header .section-title {
  margin-bottom: 0.5rem;
}

.products-intro {
  color: var(--olive-muted);
  max-width: 50ch;
  margin: 0 auto;
}

.product-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.product-label {
  background: var(--ivoire);
  border: 1px solid rgba(63, 74, 46, 0.15);
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}

.product-label:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px var(--shadow);
}

.product-label-tag {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--soleil);
  color: var(--olive);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  clip-path: polygon(8% 0, 92% 0, 100% 100%, 0 100%);
}

.product-image {
  aspect-ratio: 5/4;
  background: linear-gradient(180deg, var(--ivoire) 0%, var(--ivoire-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  border-bottom: 1px dashed rgba(63, 74, 46, 0.15);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-body {
  padding: 1.5rem 1.75rem 1.75rem;
}

.product-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--olive);
  margin-bottom: 0.5rem;
}

.product-desc {
  font-size: 0.9rem;
  color: var(--olive-muted);
  margin-bottom: 1.25rem;
  line-height: 1.55;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(63, 74, 46, 0.1);
}

.product-price {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--olive);
}

.btn-add {
  padding: 0.65rem 1.1rem;
  background: transparent;
  border: 1.5px solid var(--olive);
  color: var(--olive);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
}

.btn-add:hover {
  background: var(--olive);
  color: var(--ivoire);
}

/* ── Engagements ── */

.engagements {
  background: var(--ivoire);
}

.engagements-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.engagement-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border: 1px solid rgba(63, 74, 46, 0.12);
  background: var(--ivoire);
  position: relative;
}

.engagement-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: var(--soleil);
}

.engagement-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.engagement-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--olive);
  fill: none;
  stroke-width: 1.5;
}

.engagement-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--olive);
  margin-bottom: 0.75rem;
}

.engagement-text {
  font-size: 0.9rem;
  color: var(--olive-muted);
  line-height: 1.6;
}

/* ── Contact ── */

.contact {
  background: var(--ivoire-dark);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-item svg {
  width: 22px;
  height: 22px;
  stroke: var(--olive);
  fill: none;
  stroke-width: 1.5;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-item strong {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--olive-muted);
  margin-bottom: 0.25rem;
}

.contact-item a {
  color: var(--olive);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-item a:hover {
  color: var(--soleil-dark);
}

.legal-block {
  background: var(--olive);
  color: var(--ivoire);
  padding: 2rem;
  font-size: 0.9rem;
  line-height: 1.8;
}

.legal-block strong {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  display: block;
  margin-bottom: 0.5rem;
}

/* ── Footer ── */

.site-footer {
  background: var(--olive);
  color: rgba(244, 239, 230, 0.7);
  padding: 1.5rem 0;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--ivoire);
}

/* ── Cart Drawer ── */

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(42, 47, 34, 0.5);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.cart-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(420px, 100vw);
  height: 100%;
  background: var(--ivoire);
  z-index: 201;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -8px 0 40px var(--shadow-deep);
}

.cart-drawer.is-open {
  transform: translateX(0);
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  border-bottom: 1px solid rgba(63, 74, 46, 0.12);
}

.cart-header h2 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--olive);
}

.cart-close {
  width: 40px;
  height: 40px;
  font-size: 1.5rem;
  color: var(--olive);
  border-radius: 50%;
  transition: background 0.2s;
}

.cart-close:hover {
  background: var(--ivoire-dark);
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.5rem;
}

.cart-empty {
  text-align: center;
  color: var(--olive-muted);
  padding: 3rem 1rem;
  font-style: italic;
}

.cart-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(63, 74, 46, 0.1);
  align-items: start;
}

.cart-item-image {
  width: 64px;
  height: 64px;
  object-fit: contain;
  background: var(--ivoire-dark);
  padding: 0.5rem;
}

.cart-item-info h3 {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--olive);
  margin-bottom: 0.25rem;
}

.cart-item-price {
  font-size: 0.85rem;
  color: var(--olive-muted);
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.qty-btn {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(63, 74, 46, 0.25);
  border-radius: 4px;
  font-size: 1rem;
  color: var(--olive);
  transition: background 0.2s;
}

.qty-btn:hover {
  background: var(--ivoire-dark);
}

.qty-value {
  min-width: 24px;
  text-align: center;
  font-weight: 600;
  font-size: 0.9rem;
}

.cart-item-remove {
  font-size: 0.75rem;
  color: var(--olive-muted);
  text-decoration: underline;
  margin-top: 0.35rem;
}

.cart-item-remove:hover {
  color: var(--olive);
}

.cart-item-total {
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--olive);
  font-size: 0.95rem;
}

.cart-footer {
  padding: 1.5rem;
  border-top: 1px solid rgba(63, 74, 46, 0.12);
  background: var(--ivoire-dark);
}

.cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.cart-subtotal span:last-child {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--olive);
}

.btn-checkout {
  width: 100%;
  padding: 1rem;
  background: var(--olive);
  color: var(--ivoire);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.2s;
}

.btn-checkout:hover:not(:disabled) {
  background: var(--olive-light);
}

.btn-checkout:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* ── Checkout Modal ── */

.checkout-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.checkout-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.checkout-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(42, 47, 34, 0.6);
}

.checkout-panel {
  position: relative;
  background: var(--ivoire);
  width: min(440px, 100%);
  padding: 2.5rem;
  box-shadow: 0 24px 80px var(--shadow-deep);
}

.checkout-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  font-size: 1.4rem;
  color: var(--olive-muted);
  transition: color 0.2s;
}

.checkout-close:hover {
  color: var(--olive);
}

.checkout-form h2 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--olive);
  margin-bottom: 0.75rem;
}

.checkout-form p {
  color: var(--olive-muted);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.checkout-form label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--olive-muted);
  margin-bottom: 0.5rem;
}

.checkout-form input {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(63, 74, 46, 0.25);
  background: var(--ivoire);
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  margin-bottom: 1.5rem;
  transition: border-color 0.2s;
}

.checkout-form input:focus {
  outline: none;
  border-color: var(--olive);
}

.checkout-actions .btn-primary {
  width: 100%;
  justify-content: center;
}

.success-message {
  text-align: center;
  padding: 1rem 0;
}

.success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  background: var(--olive);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--ivoire);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.success-message h2 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--olive);
  margin-bottom: 0.75rem;
}

.success-message p {
  color: var(--olive-muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.btn-secondary {
  padding: 0.75rem 1.5rem;
  border: 1px solid var(--olive);
  color: var(--olive);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: background 0.2s;
}

.btn-secondary:hover {
  background: var(--ivoire-dark);
}

/* ── Cookie Banner ── */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 150;
  background: var(--olive);
  color: var(--ivoire);
  padding: 1.25rem 1.5rem;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.is-visible {
  transform: translateY(0);
}

.cookie-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cookie-text {
  font-size: 0.9rem;
  opacity: 0.9;
  flex: 1;
  min-width: 200px;
}

.cookie-text a {
  color: var(--soleil);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 0.75rem;
}

.btn-cookie-accept,
.btn-cookie-decline {
  padding: 0.6rem 1.25rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: background 0.2s, color 0.2s;
}

.btn-cookie-accept {
  background: var(--soleil);
  color: var(--olive);
}

.btn-cookie-accept:hover {
  background: var(--soleil-dark);
}

.btn-cookie-decline {
  background: transparent;
  border: 1px solid rgba(244, 239, 230, 0.4);
  color: var(--ivoire);
}

.btn-cookie-decline:hover {
  background: rgba(244, 239, 230, 0.1);
}

/* ── Legal Pages ── */

.legal-page {
  padding: 4rem 0 5rem;
  min-height: calc(100vh - var(--header-h) - 80px);
}

.legal-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.legal-content h1 {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--olive);
  margin-bottom: 0.5rem;
}

.legal-updated {
  font-size: 0.85rem;
  color: var(--olive-muted);
  margin-bottom: 2rem;
}

.legal-content h2 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--olive);
  margin: 2rem 0 0.75rem;
}

.legal-content p {
  margin-bottom: 1rem;
  color: var(--ink);
}

.legal-content ul {
  margin: 0 0 1rem 1.5rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
}

.legal-content a {
  color: var(--olive);
  text-decoration: underline;
}

/* ── Responsive ── */

@media (max-width: 900px) {
  .histoire-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .engagements-grid {
    grid-template-columns: 1fr;
  }

  .hero-accent {
    display: none;
  }
}

@media (max-width: 768px) {
  .main-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--ivoire);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
    border-bottom: 1px solid rgba(63, 74, 46, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s, opacity 0.3s, visibility 0.3s;
  }

  .main-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .product-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-add {
    text-align: center;
  }

  .cookie-inner {
    flex-direction: column;
    text-align: center;
  }
}
