/* ============================================
   HE CONCIERGERIE VAUCLUSE
   Direction artistique : Provençal Chic
   ============================================ */

:root {
  /* Palette provençale */
  --terracotta: #B8543C;
  --terracotta-deep: #8C3A28;
  --terracotta-light: #D4715B;
  --cream: #F5EFE6;
  --cream-warm: #EDE3D2;
  --bone: #FAF6EE;
  --olive: #5C5D3F;
  --olive-deep: #3D3E29;
  --sage: #A8A88A;
  --ink: #1A1410;
  --stone: #6B5D52;
  --gold: #B8924A;

  /* Typographie */
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Inter Tight', system-ui, sans-serif;
  --font-accent: 'Italiana', serif;

  /* Espacements */
  --container: 1320px;
  --container-narrow: 980px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bone);
  line-height: 1.6;
  font-size: 17px;
  font-weight: 400;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ============= TYPOGRAPHIE ============= */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--terracotta);
  display: inline-block;
  position: relative;
  padding-left: 36px;
}
.eyebrow::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 24px; height: 1px;
  background: var(--terracotta);
}

.display-xl {
  font-size: clamp(3rem, 7vw, 6rem);
  letter-spacing: -0.025em;
}
.display-lg {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
}
.display-md {
  font-size: clamp(2rem, 3.5vw, 3rem);
}

.serif-italic {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
}

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

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

section { position: relative; }

.section-pad {
  padding: 120px 0;
}
@media (max-width: 768px) {
  .section-pad { padding: 80px 0; }
}

/* ============= NAVIGATION ============= */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  background: rgba(250, 246, 238, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(26, 20, 16, 0.06);
  transition: all 0.3s ease;
}

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

.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo-img {
  height: 80px;
  width: auto;
}
.nav-logo-mark {
  display: none;
}

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
  list-style: none;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: 8px 0;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--terracotta); }
.nav-links a.active { color: var(--terracotta); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--terracotta);
}

.nav-cta {
  background: var(--ink);
  color: var(--bone);
  padding: 12px 22px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: all 0.3s;
}
.nav-cta:hover { background: var(--terracotta); }

.nav-burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 32px; height: 24px;
  position: relative;
}
.nav-burger span {
  position: absolute;
  left: 0; right: 0;
  height: 1.5px;
  background: var(--ink);
  transition: all 0.3s;
}
.nav-burger span:nth-child(1) { top: 4px; }
.nav-burger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.nav-burger span:nth-child(3) { bottom: 4px; }

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: block; }
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--bone);
  z-index: 99;
  padding: 100px 32px 40px;
  transform: translateX(100%);
  transition: transform 0.4s ease;
  display: flex;
  flex-direction: column;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  display: block;
  padding: 18px 0;
  font-family: var(--font-display);
  font-size: 28px;
  border-bottom: 1px solid rgba(26, 20, 16, 0.1);
}
.mobile-menu .nav-cta {
  display: inline-block;
  margin-top: 30px;
  text-align: center;
  align-self: stretch;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-family: var(--font-body);
}

.btn-primary {
  background: var(--terracotta);
  color: var(--bone);
}
.btn-primary:hover {
  background: var(--terracotta-deep);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--ink);
  color: var(--bone);
}
.btn-dark:hover { background: var(--olive-deep); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  border: 1px solid var(--ink);
  color: var(--ink);
}
.btn-outline:hover {
  background: var(--ink);
  color: var(--bone);
}

.btn-ghost {
  padding: 12px 0;
  background: none;
  border-bottom: 1px solid var(--ink);
  font-size: 13px;
}
.btn-ghost:hover { color: var(--terracotta); border-color: var(--terracotta); }

.btn-arrow::after {
  content: "→";
  transition: transform 0.3s;
}
.btn-arrow:hover::after { transform: translateX(6px); }

/* ============= HERO ============= */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 140px 0 80px;
  overflow: hidden;
  background: var(--ink);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.55;
  filter: contrast(1.05) saturate(0.95);
  animation: kenburns 18s ease-out forwards;
}
@keyframes kenburns {
  0% { transform: scale(1.12); }
  100% { transform: scale(1); }
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,20,16,0.4) 0%, rgba(26,20,16,0.2) 40%, rgba(26,20,16,0.85) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--bone);
  max-width: 900px;
}
.hero-content .eyebrow { color: #E8B89E; }
.hero-content .eyebrow::before { background: #E8B89E; }

.hero-title {
  color: var(--bone);
  margin: 24px 0 32px;
  font-weight: 300;
}
.hero-title em {
  font-style: italic;
  color: #E8B89E;
}

.hero-sub {
  font-size: 18px;
  max-width: 580px;
  color: rgba(245, 239, 230, 0.85);
  margin-bottom: 40px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-actions .btn-primary {
  background: var(--bone);
  color: var(--ink);
}
.hero-actions .btn-primary:hover {
  background: var(--terracotta);
  color: var(--bone);
}
.hero-actions .btn-outline {
  border-color: rgba(245, 239, 230, 0.5);
  color: var(--bone);
}
.hero-actions .btn-outline:hover {
  background: var(--bone);
  color: var(--ink);
}

.hero-meta {
  position: absolute;
  bottom: 40px; right: 40px;
  z-index: 2;
  color: var(--bone);
  text-align: right;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.7;
}
.hero-meta .num {
  font-family: var(--font-display);
  font-size: 64px;
  letter-spacing: -0.02em;
  display: block;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 8px;
  color: #E8B89E;
}
@media (max-width: 768px) {
  .hero-meta { display: none; }
}

/* ============= STATS BAND ============= */

.stats-band {
  background: var(--cream);
  padding: 80px 0;
}
.stats-band-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}
.stat-block {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.stat-num {
  font-family: 'Playfair Display', Georgia, serif !important;
  font-style: italic !important;
  font-weight: 400 !important;
  font-size: clamp(3rem, 6vw, 5rem) !important;
  line-height: 1 !important;
  letter-spacing: -0.01em !important;
  color: var(--terracotta) !important;
  display: inline-flex !important;
  align-items: baseline !important;
  font-variant-numeric: tabular-nums;
}
.stat-num small,
.stat-num sup,
.stat-num .stat-suffix {
  font-family: 'Playfair Display', serif !important;
  font-size: 0.4em !important;
  font-weight: 400 !important;
  font-style: italic !important;
  letter-spacing: 0 !important;
  vertical-align: baseline !important;
  margin-left: 0.05em !important;
  line-height: 1 !important;
  color: var(--terracotta);
}
.stat-label {
  margin-top: 14px;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--stone);
  font-weight: 500;
  max-width: 220px;
}
@media (max-width: 768px) {
  .stats-band { padding: 56px 0; }
  .stats-band-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 20px;
  }
  .stat-label { font-size: 11px; letter-spacing: 0.12em; }
}
@media (max-width: 380px) {
  .stats-band-grid { gap: 28px 16px; }
}

/* ============= INTRO TEXT ============= */

.intro-text {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  line-height: 1.3;
  font-weight: 300;
  color: var(--ink);
  max-width: 920px;
}
.intro-text em {
  font-style: italic;
  color: var(--terracotta);
}

/* ============= SERVICES GRID ============= */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(26, 20, 16, 0.1);
  margin-top: 80px;
  border: 1px solid rgba(26, 20, 16, 0.1);
}
.service-card {
  background: var(--bone);
  padding: 50px 40px;
  position: relative;
  transition: background 0.4s;
}
.service-card:hover { background: var(--cream); }
.service-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  color: var(--terracotta);
  letter-spacing: 0.1em;
  margin-bottom: 32px;
  display: block;
}
.service-card h3 {
  font-size: 26px;
  margin-bottom: 16px;
  font-weight: 400;
}
.service-card p {
  color: var(--stone);
  font-size: 15px;
  line-height: 1.65;
}
.service-card-icon {
  width: 56px; height: 56px;
  margin-bottom: 28px;
  color: var(--terracotta);
}

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

/* ============= SPLIT SECTION (image + text) ============= */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split.reverse > :first-child { order: 2; }
.split-image {
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
}
.split-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}
.split-image:hover img { transform: scale(1.04); }
.split-image::after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(245, 239, 230, 0.3);
  pointer-events: none;
}

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

/* ============= GALLERY ============= */

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  margin-top: 60px;
}
.gallery-item {
  overflow: hidden;
  position: relative;
  background: var(--cream);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}
.gallery-item:hover img { transform: scale(1.06); }

.g-1 { grid-column: span 7; aspect-ratio: 16/10; }
.g-2 { grid-column: span 5; aspect-ratio: 4/5; }
.g-3 { grid-column: span 4; aspect-ratio: 1/1; }
.g-4 { grid-column: span 4; aspect-ratio: 1/1; }
.g-5 { grid-column: span 4; aspect-ratio: 1/1; }
.g-6 { grid-column: span 6; aspect-ratio: 4/3; }
.g-7 { grid-column: span 6; aspect-ratio: 4/3; }

@media (max-width: 768px) {
  .gallery-masonry { grid-template-columns: repeat(2, 1fr); }
  .g-1, .g-2, .g-3, .g-4, .g-5, .g-6, .g-7 {
    grid-column: span 1; aspect-ratio: 1/1;
  }
  .g-1 { grid-column: span 2; aspect-ratio: 16/10; }
}

/* ============= TESTIMONIAL ============= */

.testimonial-section {
  background: var(--olive-deep);
  color: var(--bone);
  position: relative;
  overflow: hidden;
}
.testimonial-section::before {
  content: "\201C";
  position: absolute;
  top: 30px; left: 60px;
  font-family: var(--font-display);
  font-size: 380px;
  line-height: 1;
  color: rgba(232, 184, 158, 0.07);
  font-weight: 700;
}
.testimonial {
  position: relative;
  z-index: 1;
}
.testimonial-quote {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-style: italic;
  line-height: 1.4;
  font-weight: 300;
  color: var(--bone);
  margin-bottom: 40px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 20px;
}
.testimonial-author-name {
  font-family: var(--font-display);
  font-size: 22px;
}
.testimonial-author-role {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(232, 184, 158, 0.8);
}
.testimonial-stars {
  color: #E8B89E;
  letter-spacing: 4px;
  margin-bottom: 24px;
}

/* ============= ZONES (CITIES) ============= */

.cities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.city-card {
  background: var(--cream);
  padding: 40px 32px;
  border: 1px solid rgba(26, 20, 16, 0.08);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.city-card::before {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--terracotta);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s;
}
.city-card:hover { background: var(--bone); transform: translateY(-4px); }
.city-card:hover::before { transform: scaleX(1); }
.city-card h3 {
  font-size: 28px;
  margin-bottom: 12px;
  font-weight: 400;
}
.city-card p {
  color: var(--stone);
  font-size: 14px;
  margin-bottom: 20px;
}
.city-card .arrow {
  font-size: 20px;
  color: var(--terracotta);
}

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

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

.faq-list {
  max-width: 820px;
  margin: 60px auto 0;
}
.faq-item {
  border-bottom: 1px solid rgba(26, 20, 16, 0.12);
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 28px 0;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
  transition: color 0.2s;
}
.faq-question:hover { color: var(--terracotta); }
.faq-toggle {
  width: 28px; height: 28px;
  flex-shrink: 0;
  position: relative;
}
.faq-toggle::before, .faq-toggle::after {
  content: "";
  position: absolute;
  background: var(--terracotta);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s;
}
.faq-toggle::before { width: 16px; height: 1px; }
.faq-toggle::after { width: 1px; height: 16px; }
.faq-item.open .faq-toggle::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  color: var(--stone);
  font-size: 16px;
  line-height: 1.7;
}
.faq-item.open .faq-answer {
  max-height: 600px;
  padding-bottom: 28px;
}

/* ============= CTA SECTION ============= */

.cta-section {
  background: var(--terracotta);
  color: var(--bone);
  text-align: center;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.cta-section h2 {
  color: var(--bone);
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 24px;
  font-weight: 300;
}
.cta-section h2 em {
  font-style: italic;
  color: var(--cream);
}
.cta-section p {
  max-width: 620px;
  margin: 0 auto 40px;
  font-size: 18px;
  opacity: 0.95;
}
.cta-section .btn {
  background: var(--ink);
  color: var(--bone);
}
.cta-section .btn:hover {
  background: var(--bone);
  color: var(--ink);
}

/* ============= CONTACT FORM ============= */

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

.contact-info-block {
  margin-bottom: 32px;
}
.contact-info-block h4 {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 8px;
  font-weight: 600;
}
.contact-info-block p, .contact-info-block a {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--ink);
  line-height: 1.4;
}
.contact-info-block a:hover { color: var(--terracotta); }

.form-group {
  margin-bottom: 24px;
}
.form-group label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 8px;
  font-weight: 500;
}
.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 14px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(26, 20, 16, 0.25);
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink);
  transition: border-color 0.3s;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none;
  border-bottom-color: var(--terracotta);
}
.form-textarea { resize: vertical; min-height: 120px; }

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

.footer {
  background: var(--ink);
  color: rgba(245, 239, 230, 0.7);
  padding: 100px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
}
.footer h4 {
  color: var(--bone);
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 24px;
  font-weight: 600;
}
.footer-brand-name {
  font-family: var(--font-accent);
  font-size: 32px;
  color: var(--bone);
  margin-bottom: 20px;
  display: block;
}
.footer-brand-text {
  font-size: 15px;
  max-width: 360px;
  line-height: 1.7;
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 12px; font-size: 14px; }
.footer ul a { font-size: 14px; transition: color 0.2s; word-break: break-all; }
.footer ul a:hover { color: #E8B89E; }
.footer-bottom {
  border-top: 1px solid rgba(245, 239, 230, 0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; }
}

/* ============= PAGE HEADER (autres pages) ============= */

.page-header {
  padding: 200px 0 100px;
  background: var(--cream-warm);
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: "";
  position: absolute;
  top: -200px; right: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(184, 84, 60, 0.1), transparent 70%);
  border-radius: 50%;
}
.page-header h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 300;
  max-width: 900px;
  margin: 24px 0 24px;
}
.page-header h1 em { font-style: italic; color: var(--terracotta); }
.page-header p {
  font-size: 18px;
  color: var(--stone);
  max-width: 640px;
}

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

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}
.blog-card {
  background: var(--bone);
  border: 1px solid rgba(26, 20, 16, 0.08);
  overflow: hidden;
  transition: all 0.4s;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -20px rgba(26, 20, 16, 0.15); }
.blog-card-image {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.blog-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s;
}
.blog-card:hover .blog-card-image img { transform: scale(1.05); }
.blog-card-body {
  padding: 32px 28px;
}
.blog-card-meta {
  display: flex;
  gap: 16px;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 16px;
  font-weight: 500;
}
.blog-card h3 {
  font-size: 24px;
  margin-bottom: 14px;
  font-weight: 400;
  line-height: 1.25;
}
.blog-card p {
  font-size: 15px;
  color: var(--stone);
  line-height: 1.6;
  margin-bottom: 20px;
}
.blog-read-more {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 500;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
  display: inline-block;
}
.blog-read-more:hover { color: var(--terracotta); border-color: var(--terracotta); }
@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .blog-grid { grid-template-columns: 1fr; } }

/* Article complet */
.article-content {
  max-width: 760px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.8;
  color: var(--ink);
}
.article-content h2 {
  font-size: 36px;
  margin: 60px 0 24px;
  font-weight: 400;
}
.article-content h3 {
  font-size: 24px;
  margin: 40px 0 16px;
  font-weight: 500;
  font-family: var(--font-body);
}
.article-content p { margin-bottom: 20px; }
.article-content ul, .article-content ol {
  margin: 0 0 24px 24px;
}
.article-content li { margin-bottom: 8px; }
.article-content blockquote {
  border-left: 3px solid var(--terracotta);
  padding: 16px 0 16px 32px;
  margin: 32px 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 26px;
  line-height: 1.4;
  color: var(--olive-deep);
}
.article-content strong { font-weight: 600; color: var(--terracotta-deep); }
.article-content a {
  color: var(--terracotta);
  border-bottom: 1px solid var(--terracotta);
}

/* ============= TARIFS ============= */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}
.pricing-card {
  background: var(--bone);
  border: 1px solid rgba(26, 20, 16, 0.1);
  padding: 50px 40px;
  position: relative;
  transition: all 0.3s;
}
.pricing-card.featured {
  background: var(--ink);
  color: var(--bone);
  transform: scale(1.04);
}
.pricing-card.featured h3, .pricing-card.featured .price { color: var(--bone); }
.pricing-card.featured .price-currency { color: #E8B89E; }
.pricing-card.featured .pricing-features { color: rgba(245,239,230,0.85); }
.pricing-badge {
  position: absolute;
  top: 0; right: 32px;
  background: var(--terracotta);
  color: var(--bone);
  padding: 6px 16px;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
}
.pricing-card h3 {
  font-size: 28px;
  margin-bottom: 8px;
}
.pricing-card .pricing-sub {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 32px;
}
.price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 32px;
}
.price-num {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 300;
  line-height: 1;
}
.price-currency {
  font-size: 14px;
  color: var(--stone);
  letter-spacing: 0.05em;
}
.pricing-features {
  list-style: none;
  margin-bottom: 36px;
}
.pricing-features li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(26, 20, 16, 0.08);
  font-size: 14px;
  position: relative;
  padding-left: 24px;
}
.pricing-card.featured .pricing-features li {
  border-bottom-color: rgba(245,239,230,0.1);
}
.pricing-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--terracotta);
  font-weight: 600;
}
.pricing-card .btn {
  width: 100%;
  justify-content: center;
}
@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }
}

/* ============= UTILS ============= */

.text-center { text-align: center; }
.mb-sm { margin-bottom: 24px; }
.mb-md { margin-bottom: 40px; }
.mb-lg { margin-bottom: 60px; }

.section-header {
  margin-bottom: 60px;
}
.section-header h2 {
  margin: 16px 0 20px;
  font-weight: 300;
}
.section-header h2 em { font-style: italic; color: var(--terracotta); }
.section-header p {
  font-size: 18px;
  color: var(--stone);
  max-width: 620px;
}

.divider-leaf {
  width: 60px;
  height: 1px;
  background: var(--terracotta);
  margin: 24px 0;
  position: relative;
}
.divider-leaf::after {
  content: "✦";
  position: absolute;
  top: 50%; left: 100%;
  transform: translateY(-50%) translateX(8px);
  color: var(--terracotta);
  font-size: 12px;
}

/* Animation reveal */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal { animation: fadeUp 1s ease forwards; }
.reveal-1 { animation-delay: 0.1s; }
.reveal-2 { animation-delay: 0.3s; }
.reveal-3 { animation-delay: 0.5s; }
.reveal-4 { animation-delay: 0.7s; }

/* ============= MOBILE POLISH ============= */

img, video { max-width: 100%; height: auto; }

.btn { min-height: 48px; }
.nav-cta { min-height: 44px; display: inline-flex; align-items: center; }

@media (max-width: 900px) {
  .nav-logo-img { height: 64px; }

  /* Burger menu plus visible */
  .nav-burger {
    width: 36px;
    height: 28px;
    padding: 4px;
    border: 1px solid rgba(26,20,16,0.15);
    border-radius: 4px;
    background: rgba(26,20,16,0.03);
  }
  .nav-burger span { height: 2px; }
}

@media (max-width: 768px) {
  .container,
  .container-narrow,
  .nav-inner { padding-left: 22px; padding-right: 22px; }

  .page-header { padding: 140px 0 56px; }
  .page-header h1 { font-size: clamp(1.8rem, 8vw, 2.8rem); margin: 16px 0 16px; }
  .page-header p { font-size: 15px; line-height: 1.65; }

  .cta-section { padding: 70px 0; }
  .cta-section h2 { font-size: clamp(1.6rem, 7vw, 2.2rem); }
  .cta-section p { font-size: 15px; margin-bottom: 28px; }

  .footer { padding: 60px 0 28px; }
  .footer-grid { gap: 36px; margin-bottom: 40px; grid-template-columns: 1fr 1fr; }

  .hero { min-height: 85vh; }
  .hero-title { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-sub { font-size: 15px; }
  .hero-actions { flex-direction: column; gap: 12px; }
  .hero-actions .btn { width: 100%; justify-content: center; text-align: center; }

  .testimonial-quote { font-size: clamp(1.3rem, 5vw, 1.8rem); }

  /* Grilles inline → colonnes */
  [style*="grid-template-columns: repeat(4"] { grid-template-columns: repeat(2, 1fr) !important; gap: 20px !important; }
  [style*="grid-template-columns: repeat(3"] { grid-template-columns: 1fr !important; gap: 20px !important; }
  [style*="grid-template-columns: repeat(2"],
  [style*="grid-template-columns: 1fr 1fr"] { grid-template-columns: 1fr !important; gap: 28px !important; }

  /* Cartes : padding allégé */
  [style*="padding: 48px 40px"],
  [style*="padding: 36px 28px"],
  [style*="padding: 50px 40px"],
  [style*="padding: 40px 32px"] { padding: 24px 20px !important; }
  [style*="padding: 60px"] { padding: 28px 20px !important; }
  [style*="padding: 48px"] { padding: 28px 20px !important; }

  /* Split images */
  .split-image { aspect-ratio: 16/10; }
  .split { gap: 40px; }

  /* Sections padding */
  .section-pad { padding: 64px 0; }
  section[style*="padding-top: 200px"] { padding-top: 120px !important; }
  section[style*="padding-top: 60px"][style*="padding-bottom: 60px"] { padding-top: 36px !important; padding-bottom: 36px !important; }

  /* Boutons */
  .btn { padding: 14px 24px; font-size: 13px; }

  /* Forms */
  .form-input, .form-textarea, .form-select { font-size: 16px; padding: 14px 16px; }
  [style*="grid-template-columns: 1fr 1fr"][style*="gap: 24px"] { grid-template-columns: 1fr !important; gap: 16px !important; }

  /* Contact info block */
  .contact-info-block { margin-bottom: 8px; }

  /* Texte article */
  .article-content { font-size: 16px; line-height: 1.7; }
  .article-content h2 { font-size: 24px; margin: 36px 0 16px; }
  .article-content h3 { font-size: 19px; margin: 24px 0 10px; }
  .article-content blockquote { font-size: 18px; padding: 10px 0 10px 18px; }

  .pricing-card { padding: 32px 22px; }
  .price-num { font-size: 48px; }

  /* FAQ */
  .faq-question { font-size: 17px; padding: 18px 0; }

  /* Eyebrow */
  .eyebrow { font-size: 11px; }

  /* Display font sizes */
  .display-md { font-size: clamp(1.6rem, 7vw, 2.2rem); }

  /* Intro text */
  .intro-text { font-size: 18px !important; }

  /* Stats inline */
  .stats-band-grid { grid-template-columns: repeat(2, 1fr); }

  /* Badge confiance contact */
  [style*="grid-template-columns: repeat(3, 1fr)"][style*="text-align: center"] {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }
}

@media (max-width: 480px) {
  .container,
  .container-narrow,
  .nav-inner { padding-left: 16px; padding-right: 16px; }

  .nav-logo-img { height: 50px; }

  .page-header { padding: 120px 0 44px; }
  .page-header h1 { font-size: clamp(1.6rem, 7.5vw, 2.2rem); }
  .display-md { font-size: clamp(1.5rem, 6.5vw, 1.9rem); }

  .hero { min-height: 90vh; }
  .hero-title { font-size: clamp(1.8rem, 7.5vw, 2.5rem); }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { font-size: 11px; text-align: left; flex-direction: column; gap: 8px; }
  .footer-brand-name { font-size: 24px; }

  /* Mobile menu */
  .mobile-menu a { font-size: 24px; padding: 16px 0; }
  .mobile-menu .nav-cta { font-size: 15px; padding: 16px; }

  /* Section titles */
  [style*="font-size: 32px"] { font-size: 24px !important; }
  [style*="font-size: 30px"] { font-size: 22px !important; }
  [style*="font-size: 26px"] { font-size: 21px !important; }

  /* Stat nums */
  .stat-num { font-size: 40px; }

  /* Split */
  .split-image { aspect-ratio: 4/3; }

  /* Section pad even tighter */
  .section-pad { padding: 52px 0; }

  /* CTA */
  .cta-section { padding: 56px 0; }
  .cta-section h2 { font-size: clamp(1.4rem, 6vw, 1.8rem); }

  /* Blog cards */
  .blog-card { margin-bottom: 8px; }
}

/* Accessibilité : focus visibles */
a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.form-input:focus-visible,
.form-textarea:focus-visible,
.form-select:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 3px;
}

/* Réduction des animations si l'utilisateur le demande */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
