/* ============================================
   PAWPY — Design System
   Premium chaleureux pour marque vétérinaire
   ============================================ */

:root {
  /* Couleurs (univers packaging Pawpy) */
  --cream: #FAF7FF;
  --cream-deep: #F0E9FB;
  --bone: #DDD0F0;
  --sage-deep: #7E5BD8;    /* Violet vif — couleur signature (footer, boutons, sections) */
  --sage: #5B3DA8;          /* Violet moyen (hovers) */
  --sage-light: #A899D5;    /* Lavande accent */
  --sage-mist: #EFE7FB;     /* Lavande pâle (badges) */
  --purple-deep: #2E1953;   /* Violet profond (badges contraste type "Testé en laboratoire") */
  --terracotta: #FCBA1A;    /* Jaune doré CTA */
  --terracotta-light: #FFD550;
  --blush: #A8B8E8;         /* Périanche accent */
  --charcoal: #1F1135;      /* Texte très foncé */
  --stone: #5B5D6E;
  --stone-light: #959CB5;
  --white: #FFFFFF;

  /* Typographie */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Espacement */
  --section-py: clamp(4rem, 8vw, 8rem);
  --container-px: clamp(1.25rem, 4vw, 3rem);

  /* Bordures */
  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 36px;
  --radius-pill: 999px;

  /* Ombres */
  --shadow-sm: 0 1px 2px rgba(26,31,28,0.04);
  --shadow: 0 4px 24px rgba(26,31,28,0.06);
  --shadow-lg: 0 20px 60px rgba(26,31,28,0.08);

  /* Transitions */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

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

/* ============================================
   Typographie
   ============================================ */

.display {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.05;
  font-variation-settings: "SOFT" 50, "WONK" 0;
}

.display-xl {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.75rem, 7vw, 5.5rem);
  line-height: 1;
  letter-spacing: -0.035em;
  font-variation-settings: "SOFT" 50, "WONK" 0, "opsz" 144;
}

.display-lg {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.25rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-variation-settings: "SOFT" 50, "opsz" 144;
}

.display-md {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  font-variation-settings: "SOFT" 30, "opsz" 100;
}

.italic-soft {
  font-style: italic;
  font-variation-settings: "SOFT" 100, "WONK" 1;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
}

.lede {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.55;
  color: var(--stone);
  font-weight: 400;
}

/* ============================================
   Container
   ============================================ */

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding-left: var(--container-px);
  padding-right: var(--container-px);
}

.container-narrow {
  max-width: 880px;
  margin: 0 auto;
  padding-left: var(--container-px);
  padding-right: var(--container-px);
}

section {
  padding-top: var(--section-py);
  padding-bottom: var(--section-py);
}

/* ============================================
   Navigation
   ============================================ */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 247, 240, 0.85);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease);
}

.nav.scrolled {
  border-bottom-color: rgba(26,31,28,0.06);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.1rem var(--container-px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
}

.logo img {
  height: 44px;
  width: auto;
  display: block;
}

@media (max-width: 600px) {
  .logo img { height: 36px; }
}

/* Footer logo : version inversée pour fond violet */
.footer-brand .logo img {
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.nav-links {
  display: flex;
  gap: 2.25rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal);
  position: relative;
  transition: color 0.2s var(--ease);
}

.nav-links a:hover {
  color: var(--sage-deep);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--sage-deep);
  transition: width 0.3s var(--ease);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--cream-deep);
  color: var(--sage-deep);
  align-items: center;
  justify-content: center;
}

.nav-toggle svg {
  width: 20px;
  height: 20px;
  color: var(--sage-deep);
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 1.5rem var(--container-px) 2rem;
    gap: 1.25rem;
    border-bottom: 1px solid rgba(26,31,28,0.06);
  }
  .nav-links.open {
    display: flex;
  }
  .nav-toggle {
    display: inline-flex;
  }
  .nav-cta .btn {
    display: none;
  }
}

/* ============================================
   Boutons
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.75rem;
  border-radius: var(--radius-pill);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  border: 1.5px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--sage-deep);
  color: var(--cream);
}

.btn-primary:hover {
  background: var(--purple-deep);
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(126,91,216,0.32);
}

.btn-accent {
  background: var(--terracotta);
  color: var(--charcoal);
}

.btn-accent:hover {
  background: #FFD550;
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(252,186,26,0.32);
}

.btn-ghost {
  background: transparent;
  color: var(--charcoal);
  border-color: rgba(26,31,28,0.15);
}

.btn-ghost:hover {
  background: var(--charcoal);
  color: var(--cream);
  border-color: var(--charcoal);
}

.btn-cream {
  background: var(--cream);
  color: var(--sage-deep);
}

.btn-cream:hover {
  background: var(--white);
  transform: translateY(-1px);
}

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--sage-deep);
  padding-bottom: 4px;
  border-bottom: 1.5px solid currentColor;
  transition: gap 0.3s var(--ease);
}

.btn-link:hover {
  gap: 0.85rem;
}

.btn .arrow {
  transition: transform 0.3s var(--ease);
}

.btn:hover .arrow {
  transform: translateX(3px);
}

/* ============================================
   Cards & Surfaces
   ============================================ */

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-pill);
  background: var(--sage-mist);
  color: var(--sage-deep);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.badge-cream {
  background: var(--cream-deep);
  color: var(--charcoal);
}

.badge-terracotta {
  background: var(--blush);
  color: var(--sage-deep);
}

.badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

/* ============================================
   Animations utilitaires
   ============================================ */

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.fade-up.in {
  opacity: 1;
  transform: none;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes gentle-pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.08); opacity: 0.7; }
}

@keyframes ripple {
  0% { transform: scale(0.85); opacity: 0.6; }
  100% { transform: scale(2); opacity: 0; }
}

/* ============================================
   Footer (commun)
   ============================================ */

.footer {
  background: var(--sage-deep);
  color: var(--cream);
  padding: 5rem 0 2rem;
  margin-top: 4rem;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(252,186,26,0.22), transparent 70%);
  border-radius: 50%;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
  position: relative;
}

@media (max-width: 800px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

.footer-brand .logo {
  color: var(--cream);
  margin-bottom: 1.25rem;
}

.footer-brand p {
  color: rgba(251,247,240,0.7);
  max-width: 280px;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.footer h4 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  font-variation-settings: "SOFT" 50;
}

.footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer ul a {
  color: rgba(251,247,240,0.7);
  font-size: 0.95rem;
  transition: color 0.2s var(--ease);
}

.footer ul a:hover {
  color: var(--cream);
}

.footer-bottom {
  border-top: 1px solid rgba(251,247,240,0.12);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  color: rgba(251,247,240,0.55);
  font-size: 0.85rem;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(251,247,240,0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s var(--ease);
}

.footer-socials a:hover {
  background: rgba(251,247,240,0.18);
}

.footer-socials svg {
  width: 16px;
  height: 16px;
  color: var(--cream);
}

/* ============================================
   Marquee announcement bar
   ============================================ */

.announcement {
  background: var(--sage-deep);
  color: var(--cream);
  padding: 0.6rem 0;
  overflow: hidden;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

.marquee {
  display: flex;
  gap: 4rem;
  white-space: nowrap;
  animation: scroll 32s linear infinite;
}

.marquee span {
  display: inline-flex;
  align-items: center;
  gap: 4rem;
}

@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================
   Hero — Homepage
   ============================================ */

.hero {
  padding-top: 3rem;
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 950px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.hero-content .badge {
  margin-bottom: 1.75rem;
}

.hero h1 {
  margin-bottom: 1.5rem;
}

.hero h1 .accent {
  color: var(--terracotta);
  font-style: italic;
  font-variation-settings: "SOFT" 100, "WONK" 1, "opsz" 144;
}

.hero-lede {
  font-size: clamp(1.08rem, 1.4vw, 1.25rem);
  color: var(--stone);
  margin-bottom: 2.25rem;
  max-width: 520px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 2.5rem;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(26,31,28,0.08);
}

.avatar-stack {
  display: flex;
}

.avatar-stack img,
.avatar-stack .avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2.5px solid var(--cream);
  margin-left: -10px;
  object-fit: cover;
  background: var(--bone);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--sage-deep);
  font-size: 0.9rem;
}

.avatar-stack > *:first-child {
  margin-left: 0;
}

.hero-trust-text {
  font-size: 0.9rem;
}

.hero-trust-text strong {
  display: block;
  font-weight: 600;
  color: var(--charcoal);
}

.hero-trust-text span {
  color: var(--stone);
}

.stars {
  display: inline-flex;
  gap: 1px;
  color: var(--terracotta);
}

.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #A8B8E8 0%, #7E5BD8 100%);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-xl);
}

.hero-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(45,74,62,0.18));
  pointer-events: none;
  border-radius: var(--radius-xl);
}

.hero-card {
  position: absolute;
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 1.1rem 1.4rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  z-index: 2;
  animation: float 6s ease-in-out infinite;
}

.hero-card-vet {
  bottom: 5%;
  left: -3%;
  max-width: 280px;
}

.hero-card-stats {
  top: 7%;
  right: -5%;
  animation-delay: 1.5s;
}

.hero-card .icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--sage-mist);
  color: var(--sage-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-card strong {
  display: block;
  font-size: 0.95rem;
  color: var(--charcoal);
  margin-bottom: 2px;
}

.hero-card span {
  font-size: 0.8rem;
  color: var(--stone);
}

@media (max-width: 600px) {
  .hero-card-vet { left: 4%; bottom: 4%; }
  .hero-card-stats { right: 4%; top: 4%; }
  .hero-card { padding: 0.85rem 1rem; }
}

/* ============================================
   Logos / Trust bar
   ============================================ */

.trust-bar {
  padding: 3rem 0;
  border-top: 1px solid rgba(26,31,28,0.06);
  border-bottom: 1px solid rgba(26,31,28,0.06);
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.trust-bar p {
  font-size: 0.85rem;
  color: var(--stone);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

.trust-logos {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  flex-wrap: wrap;
  opacity: 0.65;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--stone);
}

.trust-logos span {
  font-style: italic;
  font-variation-settings: "SOFT" 80;
}

/* ============================================
   Bénéfices section
   ============================================ */

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}

@media (max-width: 900px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 500px) {
  .benefits-grid { grid-template-columns: 1fr; }
}

.benefit-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  transition: transform 0.4s var(--ease), background 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}

.benefit-card:nth-child(2) { background: var(--cream-deep); }
.benefit-card:nth-child(3) { background: var(--blush); }
.benefit-card:nth-child(4) { background: var(--sage-mist); }

.benefit-card:hover {
  transform: translateY(-6px);
}

.benefit-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(45,74,62,0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--sage-deep);
}

.benefit-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 0.6rem;
  font-variation-settings: "SOFT" 50;
  color: var(--charcoal);
}

.benefit-card p {
  font-size: 0.95rem;
  color: var(--stone);
  line-height: 1.55;
}

/* ============================================
   Section "Conséquences" — fond violet impact
   ============================================ */

.consequences {
  background: var(--sage-deep);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.consequences::before {
  content: '';
  position: absolute;
  top: -15%;
  right: -10%;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(252,186,26,0.18), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.consequences::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(168,184,232,0.22), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.consequences .container {
  position: relative;
  z-index: 1;
}

.consequences .eyebrow {
  color: var(--terracotta);
}

.consequences h2 {
  color: var(--white);
  max-width: 840px;
  margin-left: auto;
  margin-right: auto;
}

.consequences .lede {
  color: rgba(255,255,255,0.78);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.consequences-tag {
  display: inline-block;
  margin: 2.5rem 0 2rem;
  color: var(--terracotta);
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  font-variation-settings: "SOFT" 50;
}

.consequences-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  max-width: 1100px;
  margin: 0 auto 3rem;
}

@media (max-width: 900px) {
  .consequences-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 500px) {
  .consequences-grid { grid-template-columns: 1fr; }
}

.consequence-item {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.25rem;
  text-align: center;
  transition: transform 0.4s var(--ease), background 0.4s var(--ease), border-color 0.4s var(--ease);
}

.consequence-item:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.22);
}

.consequence-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 1rem;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terracotta);
}

.consequence-item h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  font-variation-settings: "SOFT" 50;
  color: var(--white);
  line-height: 1.2;
}

.consequence-item p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}

.consequences-punchline {
  text-align: center;
  max-width: 720px;
  margin: 2rem auto 2.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  font-weight: 400;
  line-height: 1.4;
  color: var(--white);
  font-variation-settings: "SOFT" 50;
}

.consequences-punchline .italic-soft {
  color: var(--terracotta);
}

.consequences-cta {
  text-align: center;
}

/* ============================================
   Section header (titre + lede)
   ============================================ */

.section-head {
  max-width: 720px;
  margin: 0 auto 2rem;
  text-align: center;
}

.section-head.left {
  text-align: left;
  margin-left: 0;
}

.section-head .eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
}

.section-head h2 {
  margin-bottom: 1.25rem;
}

/* ============================================
   Science / Comment ça marche
   ============================================ */

.science {
  background: var(--cream-deep);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 5vw, 5rem);
  margin: 0 var(--container-px);
}

.science-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
  position: relative;
}

@media (max-width: 800px) {
  .steps { grid-template-columns: 1fr; }
}

.step {
  text-align: left;
}

.step-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--sage-light);
  line-height: 1;
  margin-bottom: 0.75rem;
  font-variation-settings: "SOFT" 100, "opsz" 144;
}

.step h4 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 0.6rem;
  font-variation-settings: "SOFT" 50;
}

.step p {
  color: var(--stone);
  font-size: 0.97rem;
}

/* ============================================
   Product showcase / split
   ============================================ */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.split.reverse > :first-child { order: 2; }

@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 2.5rem; }
  .split.reverse > :first-child { order: 0; }
}

.split-visual {
  aspect-ratio: 1/1;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--cream-deep);
  position: relative;
}

.split-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-content h2 { margin-bottom: 1.25rem; }
.split-content .lede { margin-bottom: 1.75rem; }

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.feature-list li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  color: var(--charcoal);
  font-size: 1rem;
}

.feature-list li svg {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: var(--sage-deep);
  margin-top: 2px;
}

/* ============================================
   Testimonials
   ============================================ */

.testimonials {
  background: var(--sage-deep);
  color: var(--cream);
  padding: var(--section-py) 0;
  position: relative;
  overflow: hidden;
}

.testimonials .eyebrow { color: var(--sage-mist); }
.testimonials .lede { color: rgba(251,247,240,0.7); }

.testimonials::before {
  content: '';
  position: absolute;
  top: 10%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(252,186,26,0.22), transparent 70%);
  border-radius: 50%;
}

.testimonials::after {
  content: '';
  position: absolute;
  bottom: -10%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(168,184,232,0.28), transparent 70%);
  border-radius: 50%;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
  position: relative;
}

@media (max-width: 900px) {
  .testimonial-grid { grid-template-columns: 1fr; }
}

.testimonial {
  background: rgba(251,247,240,0.06);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(251,247,240,0.1);
  backdrop-filter: blur(8px);
}

.testimonial .stars {
  color: var(--terracotta-light);
  margin-bottom: 1rem;
}

.testimonial blockquote {
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1.45;
  font-weight: 400;
  margin-bottom: 1.5rem;
  font-variation-settings: "SOFT" 50;
  color: var(--cream);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.testimonial-author img,
.testimonial-author .avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--sage-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  font-weight: 600;
}

.testimonial-author strong {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
}

.testimonial-author span {
  font-size: 0.85rem;
  color: rgba(251,247,240,0.6);
}

/* ============================================
   FAQ
   ============================================ */

.faq-list {
  max-width: 760px;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(26,31,28,0.06);
  transition: box-shadow 0.3s var(--ease);
}

.faq-item:hover {
  box-shadow: var(--shadow);
}

.faq-q {
  width: 100%;
  text-align: left;
  padding: 1.4rem 1.75rem;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--charcoal);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: inherit;
}

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--cream-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}

.faq-item.open .faq-icon {
  background: var(--sage-deep);
  color: var(--cream);
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}

.faq-a-inner {
  padding: 0 1.75rem 1.5rem;
  color: var(--stone);
  line-height: 1.65;
}

.faq-item.open .faq-a {
  max-height: 400px;
}

/* ============================================
   Newsletter / CTA
   ============================================ */

.cta-band {
  background: var(--sage-deep);
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: clamp(2.5rem, 5vw, 4rem);
  margin: 0 var(--container-px);
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.15), transparent 70%);
  border-radius: 50%;
}

.cta-band-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
}

@media (max-width: 800px) {
  .cta-band-inner { grid-template-columns: 1fr; text-align: center; }
}

.cta-band h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-band p {
  color: rgba(255,255,255,0.88);
  font-size: 1.05rem;
  max-width: 480px;
}

@media (max-width: 800px) {
  .cta-band p { margin: 0 auto; }
}

.cta-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

@media (max-width: 800px) {
  .cta-actions { justify-content: center; }
}

/* ============================================
   Product page
   ============================================ */

.product-hero {
  padding: 3rem 0 4rem;
}

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

@media (max-width: 900px) {
  .product-grid { grid-template-columns: 1fr; }
}

.product-gallery {
  position: sticky;
  top: 100px;
}

@media (max-width: 900px) {
  .product-gallery {
    position: static;
    top: auto;
  }
}

.product-main-img {
  aspect-ratio: 1/1;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--cream-deep), var(--blush));
  overflow: hidden;
  position: relative;
  margin-bottom: 1rem;
}

.product-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.product-thumb {
  aspect-ratio: 1/1;
  border-radius: var(--radius);
  background: var(--cream-deep);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s var(--ease);
}

.product-thumb.active {
  border-color: var(--sage-deep);
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info .eyebrow { margin-bottom: 0.75rem; }

.product-info h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
  font-variation-settings: "SOFT" 50, "opsz" 144;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  font-size: 0.92rem;
  color: var(--stone);
}

.product-price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  margin-bottom: 1.5rem;
}

.product-price .price-unit {
  flex-basis: 100%;
}

@media (min-width: 700px) {
  .product-price .price-unit {
    flex-basis: auto;
  }
}

.product-price .price {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 500;
  color: var(--charcoal);
  font-variation-settings: "SOFT" 50;
}

.product-price .price-old {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--stone-light);
  text-decoration: line-through;
  margin-right: 0.4rem;
  font-variation-settings: "SOFT" 50;
}

.product-price .price-old:empty {
  display: none;
}

.product-price .price-unit {
  color: var(--stone);
  font-size: 0.95rem;
}

.product-options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--cream-deep);
  border-radius: var(--radius-lg);
}

.option-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--stone);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.option-pills {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.option-pill {
  padding: 0.7rem 1.1rem;
  border-radius: var(--radius-pill);
  background: var(--white);
  border: 1.5px solid transparent;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.92rem;
  transition: all 0.2s var(--ease);
  position: relative;
}

.option-pill:hover {
  border-color: var(--sage-light);
}

.option-pill.selected {
  border-color: var(--sage-deep);
  background: var(--sage-deep);
  color: var(--cream);
}

.option-pill .save {
  display: block;
  font-size: 0.72rem;
  color: var(--terracotta);
  font-weight: 600;
  margin-top: 2px;
}

.option-pill.selected .save {
  color: var(--terracotta-light);
}

.product-cta {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.product-cta .btn { flex: 1; }

.product-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(26,31,28,0.08);
}

.product-meta-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.4rem;
  font-size: 0.83rem;
  color: var(--stone);
}

.product-meta-item svg {
  width: 24px;
  height: 24px;
  color: var(--sage-deep);
}

/* Product sections */
.product-section {
  padding: 4rem 0;
}

.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}

@media (max-width: 800px) {
  .ingredients-grid { grid-template-columns: repeat(2, 1fr); }
}

.ingredient {
  background: var(--cream-deep);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
}

.ingredient-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage-deep);
}

.ingredient h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
  font-variation-settings: "SOFT" 50;
}

.ingredient p {
  font-size: 0.88rem;
  color: var(--stone);
  line-height: 1.5;
}

/* ============================================
   Formule détaillée (page produit)
   ============================================ */

.formula-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin: 3rem auto 0;
  max-width: 880px;
}

.formula-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  border-left: 4px solid var(--sage-light);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.formula-item:hover {
  transform: translateX(3px);
  box-shadow: var(--shadow);
}

.formula-item h4 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.45rem;
  letter-spacing: -0.005em;
  line-height: 1.4;
}

.formula-item .benefit {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: var(--stone);
  line-height: 1.5;
}

.formula-item .benefit::before {
  content: '→';
  color: var(--sage-light);
  font-weight: 500;
  flex-shrink: 0;
}

/* Bouton de révélation global */
.reveal-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 1.75rem;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--sage-light);
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.4rem 0.5rem;
  transition: color 0.2s var(--ease);
}

.reveal-toggle:hover {
  color: var(--sage-deep);
}

.reveal-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--sage-mist);
  color: var(--sage-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), transform 0.4s var(--ease);
}

.reveal-toggle:hover .reveal-arrow {
  background: var(--sage-light);
  color: var(--white);
}

.reveal-toggle.open .reveal-arrow {
  transform: rotate(180deg);
  background: var(--sage-deep);
  color: var(--white);
}

.formula-reveal {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.7s var(--ease), opacity 0.5s var(--ease);
}

.formula-reveal.open {
  max-height: 1400px;
  opacity: 1;
}

.formula-support {
  background: var(--cream-deep);
  border-radius: var(--radius);
  padding: 1.4rem 1.75rem;
  margin-top: 0.5rem;
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}

.formula-support .dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sage-light);
  margin-top: 9px;
}

.formula-support p {
  font-size: 0.94rem;
  color: var(--charcoal);
  line-height: 1.55;
  margin: 0;
}

.formula-support strong {
  font-weight: 600;
}

/* ============================================
   Liste complète des ingrédients (accordéon)
   ============================================ */

.full-list {
  max-width: 880px;
  margin: 1.5rem auto 0;
  background: var(--sage-mist);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(126,91,216,0.12);
}

.full-list-toggle {
  width: 100%;
  text-align: left;
  padding: 1.5rem 1.85rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  background: transparent;
  font-family: inherit;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
}

.full-list-toggle .icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(126,91,216,0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--sage);
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}

.full-list.open .full-list-toggle .icon {
  background: var(--sage-light);
  color: var(--white);
  transform: rotate(180deg);
}

.full-list-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease);
}

.full-list.open .full-list-content {
  max-height: 1200px;
}

.full-list-inner {
  padding: 0 1.85rem 2rem;
  border-top: 1px solid rgba(126,91,216,0.12);
}

.full-list-inner > .eyebrow {
  display: block;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--sage-light);
}

.full-list-inner > p {
  color: var(--charcoal);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.75rem;
}

.ingredient-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 0.5rem;
}

.ingredient-pill {
  background: var(--white);
  border-radius: var(--radius-pill);
  padding: 0.7rem 1.1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--purple-deep);
  border: 1px solid rgba(126,91,216,0.1);
}

.useful-info {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem 2rem;
  margin-top: 1.25rem;
}

.useful-info p {
  font-size: 0.97rem;
  color: var(--charcoal);
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.useful-info p:last-of-type {
  margin-bottom: 0;
}

.useful-info strong {
  font-weight: 600;
  color: var(--charcoal);
}

.useful-info .closing {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(126,91,216,0.12);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--sage-light);
  font-variation-settings: "SOFT" 50;
  font-style: italic;
}

/* ============================================
   Guide d'introduction (page produit)
   ============================================ */

.intro-guide-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

@media (max-width: 800px) {
  .intro-guide-grid { grid-template-columns: 1fr; }
}

.intro-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 2rem 1.75rem;
  border: 1px solid rgba(126,91,216,0.08);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.intro-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.intro-card .eyebrow {
  display: block;
  margin-bottom: 1.25rem;
  color: var(--sage-light);
}

.intro-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.intro-card li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  font-size: 0.97rem;
  line-height: 1.5;
  color: var(--charcoal);
}

.intro-card li .marker {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  margin-top: 9px;
  border-radius: 50%;
  background: var(--sage-light);
}

.intro-card li .check {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--sage-light);
  margin-top: 2px;
}

.intro-card li strong {
  font-weight: 600;
  color: var(--charcoal);
}

.intro-note {
  margin-top: 1.5rem;
  background: linear-gradient(135deg, #FFF5EC 0%, #FFE5D0 100%);
  border-radius: var(--radius-lg);
  padding: 2rem 2.25rem;
  border: 1px solid rgba(252,186,26,0.15);
}

.intro-note .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: var(--sage-light);
}

.intro-note p {
  color: var(--charcoal);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 0.85rem;
}

.intro-note p:last-child {
  margin-bottom: 0;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--purple-deep);
  font-variation-settings: "SOFT" 50;
  font-style: italic;
}

/* ============================================
   Story / About page
   ============================================ */

.story-hero {
  text-align: center;
  padding: 5rem 0 3rem;
  position: relative;
}

.story-hero h1 {
  max-width: 800px;
  margin: 1.5rem auto;
}

.story-hero .lede {
  max-width: 620px;
  margin: 0 auto;
}

.story-image {
  margin-top: 4rem;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 21/9;
  background: var(--cream-deep);
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

@media (max-width: 800px) {
  .story-values { grid-template-columns: 1fr; }
}

.value-card {
  padding: 2.5rem 2rem;
  background: var(--cream-deep);
  border-radius: var(--radius-lg);
}

.value-card .num {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--terracotta);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: block;
}

.value-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 0.85rem;
  font-variation-settings: "SOFT" 50;
}

.value-card p {
  color: var(--stone);
  line-height: 1.6;
  font-size: 0.96rem;
}

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

.story-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem 1rem;
  margin-top: 4rem;
  text-align: center;
}

@media (max-width: 800px) {
  .story-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 1rem;
  }
}

@media (max-width: 800px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 500px) {
  .team-grid { grid-template-columns: 1fr; }
}

.team-card {
  text-align: left;
}

.team-photo {
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--cream-deep);
  margin-bottom: 1.25rem;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.team-card:hover .team-photo img {
  transform: scale(1.04);
}

.team-card h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  font-variation-settings: "SOFT" 50;
  margin-bottom: 0.25rem;
}

.team-card .role {
  font-size: 0.92rem;
  color: var(--terracotta);
  font-weight: 500;
  margin-bottom: 0.6rem;
}

.team-card p {
  color: var(--stone);
  font-size: 0.93rem;
}

/* ============================================
   Blog page
   ============================================ */

.blog-hero {
  padding: 4rem 0 2rem;
}

.blog-categories {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin: 2.5rem 0 3rem;
}

.blog-cat {
  padding: 0.55rem 1.1rem;
  border-radius: var(--radius-pill);
  background: var(--white);
  border: 1.5px solid rgba(26,31,28,0.1);
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s var(--ease);
  color: var(--charcoal);
}

.blog-cat:hover, .blog-cat.active {
  background: var(--sage-deep);
  color: var(--cream);
  border-color: var(--sage-deep);
}

.blog-featured {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
  background: var(--cream-deep);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

@media (max-width: 800px) {
  .blog-featured { grid-template-columns: 1fr; }
}

.blog-featured-img {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.blog-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-featured-content {
  padding: clamp(2rem, 4vw, 3.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-featured-content .badge { margin-bottom: 1.25rem; }

.blog-featured-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.1;
  margin-bottom: 1.25rem;
  font-variation-settings: "SOFT" 50, "opsz" 144;
  letter-spacing: -0.02em;
}

.blog-featured-content p {
  color: var(--stone);
  margin-bottom: 1.5rem;
  line-height: 1.55;
}

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

@media (max-width: 900px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .blog-grid { grid-template-columns: 1fr; }
}

.blog-card {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  transition: transform 0.4s var(--ease);
}

.blog-card:hover { transform: translateY(-6px); }

.blog-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--sage-light);
  letter-spacing: 0.005em;
  transition: gap 0.3s var(--ease), color 0.2s var(--ease);
}

.blog-card-cta svg {
  transition: transform 0.3s var(--ease);
}

.blog-card:hover .blog-card-cta {
  gap: 0.85rem;
  color: var(--sage-deep);
}

.blog-card:hover .blog-card-cta svg {
  transform: translateX(3px);
}

.blog-card h3 {
  transition: color 0.2s var(--ease);
}

.blog-card:hover h3 {
  color: var(--sage-light);
}

.blog-card-img {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--cream-deep);
  margin-bottom: 1.25rem;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.blog-card:hover .blog-card-img img { transform: scale(1.05); }

.blog-card-meta {
  display: flex;
  gap: 0.75rem;
  font-size: 0.82rem;
  color: var(--stone);
  margin-bottom: 0.75rem;
  align-items: center;
}

.blog-card-meta .dot-sep {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--stone-light);
}

.blog-card-meta .cat-tag {
  color: var(--terracotta);
  font-weight: 500;
}

.blog-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 0.6rem;
  font-variation-settings: "SOFT" 50;
}

.blog-card p {
  color: var(--stone);
  font-size: 0.94rem;
  line-height: 1.55;
}

/* ============================================
   Article page
   ============================================ */

.article-header {
  padding: 3rem 0 1.5rem;
}

.article-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--sage-light);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  margin-bottom: 2.5rem;
  transition: gap 0.3s var(--ease), color 0.2s var(--ease);
}

.article-back:hover {
  gap: 0.8rem;
  color: var(--sage-deep);
}

.article-category {
  display: inline-block;
  padding: 0.45rem 0.95rem;
  background: var(--sage-mist);
  color: var(--sage-deep);
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.article-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
  font-variation-settings: "SOFT" 50, "opsz" 144;
  max-width: 880px;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  font-size: 0.92rem;
  color: var(--stone);
  margin-bottom: 3rem;
}

.article-meta strong {
  color: var(--charcoal);
  font-weight: 600;
}

.article-meta .dot-sep {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--stone-light);
  display: inline-block;
}

.article-hero {
  aspect-ratio: 21/10;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--cream-deep);
  margin-bottom: 4rem;
}

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

.article-content {
  padding-bottom: 4rem;
}

.article-content p,
.article-content ol,
.article-content ul {
  font-size: 1.075rem;
  line-height: 1.75;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}

.article-lede {
  font-size: 1.2rem !important;
  line-height: 1.6 !important;
  color: var(--charcoal);
  font-weight: 450;
  margin-bottom: 2.25rem !important;
}

.article-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.4vw, 1.9rem);
  font-weight: 500;
  line-height: 1.25;
  color: var(--charcoal);
  margin: 3rem 0 1rem;
  font-variation-settings: "SOFT" 50;
  letter-spacing: -0.015em;
}

.article-callout {
  background: var(--sage-mist);
  border-left: 4px solid var(--sage-light);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  margin: 2.5rem 0;
  font-size: 1.025rem;
  line-height: 1.65;
  color: var(--charcoal);
}

.article-callout strong {
  color: var(--sage-deep);
  font-weight: 600;
  margin-right: 0.4rem;
}

.article-list {
  padding-left: 1.25rem;
}

.article-list li {
  margin-bottom: 1.1rem;
  padding-left: 0.5rem;
}

.article-list li strong {
  color: var(--charcoal);
  font-weight: 600;
}

.article-list li::marker {
  color: var(--sage-light);
  font-weight: 700;
}

.article-divider {
  border: none;
  border-top: 1px solid rgba(126,91,216,0.18);
  margin: 3rem 0;
}

/* ============================================
   Contact page
   ============================================ */

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

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

.contact-info {
  padding: 2.5rem;
  background: var(--sage-deep);
  color: var(--cream);
  border-radius: var(--radius-xl);
  height: fit-content;
  position: relative;
  overflow: hidden;
}

.contact-info::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(252,186,26,0.22), transparent 70%);
  border-radius: 50%;
}

.contact-info h2 {
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
  font-variation-settings: "SOFT" 50;
}

.contact-info > p {
  color: rgba(251,247,240,0.75);
  margin-bottom: 2rem;
  line-height: 1.55;
}

.contact-channels {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
}

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

.contact-channel-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(251,247,240,0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  flex-shrink: 0;
}

.contact-channel strong {
  display: block;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 2px;
}

.contact-channel span {
  font-size: 0.92rem;
  color: rgba(251,247,240,0.7);
}

.contact-form {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 500px) {
  .form-row { grid-template-columns: 1fr; }
}

.field {
  margin-bottom: 1.25rem;
}

.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--charcoal);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.95rem 1.1rem;
  border-radius: var(--radius);
  border: 1.5px solid rgba(26,31,28,0.1);
  background: var(--cream);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--charcoal);
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--sage-deep);
  background: var(--white);
}

.field textarea {
  resize: vertical;
  min-height: 140px;
}

/* ============================================
   Page header (subpages)
   ============================================ */

.page-header {
  text-align: center;
  padding: 5rem 0 3rem;
  position: relative;
}

.page-header .eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
}

.page-header h1 {
  max-width: 800px;
  margin: 0 auto 1.25rem;
}

.page-header .lede {
  max-width: 620px;
  margin: 0 auto;
}

/* ============================================
   Utilities
   ============================================ */

.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.divider {
  height: 1px;
  background: rgba(26,31,28,0.08);
  margin: 3rem 0;
}

/* Subtle decorative wave */
.wave-divider {
  display: block;
  width: 100%;
  height: 80px;
  color: var(--cream-deep);
}
