/* =====================================================
   Ecole Pierre Gilles Degennes — style.css v1
   Primary: #4a0e0e | Accent: #c5a44e | BG: #faf5eb
   ===================================================== */

/* --- RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'Georgia', 'Times New Roman', serif;
  background-color: #faf5eb;
  color: #2c1810;
  line-height: 1.7;
  min-height: 100vh;
}
img { max-width: 100%; height: auto; display: block; }
a { color: #4a0e0e; text-decoration: none; transition: color 0.3s ease; }
a:hover { color: #c5a44e; }
ul, ol { list-style: none; }

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Palatino Linotype', 'Palatino', 'Book Antiqua', Georgia, serif;
  line-height: 1.25;
  color: #4a0e0e;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.7rem); font-weight: 600; }
h4 { font-size: 1.15rem; font-weight: 600; }
p { margin-bottom: 1.1rem; }
p:last-child { margin-bottom: 0; }

/* --- LAYOUT --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section--dark { background-color: #4a0e0e; color: #faf5eb; }
.section--dark h2, .section--dark h3, .section--dark h4 { color: #c5a44e; }
.section--cream { background-color: #faf5eb; }
.section--warm { background-color: #f5ede0; }
.section--gold-light { background-color: #fdf8ee; }

/* --- HEADER / NAV --- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background-color: #4a0e0e;
  box-shadow: 0 2px 12px rgba(0,0,0,0.35);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1200px; margin: 0 auto; padding: 0 1.5rem;
  height: 72px;
}
.site-logo { display: flex; align-items: center; gap: 0.75rem; }
.site-logo img { height: 46px; width: auto; }
.site-logo .logo-text {
  font-family: 'Palatino Linotype', 'Palatino', Georgia, serif;
  font-size: 1.05rem; font-weight: 700;
  color: #c5a44e; line-height: 1.2;
  display: none;
}
@media (min-width: 480px) { .site-logo .logo-text { display: block; } }

.main-nav { display: flex; align-items: center; gap: 0.25rem; }
.main-nav a {
  font-family: 'Palatino Linotype', 'Palatino', Georgia, serif;
  font-size: 0.92rem; font-weight: 600; letter-spacing: 0.04em;
  color: #faf5eb; padding: 0.5rem 0.8rem; border-radius: 3px;
  transition: color 0.3s, background 0.3s;
  text-transform: uppercase;
}
.main-nav a:hover, .main-nav a.active {
  color: #c5a44e;
  background-color: rgba(197,164,78,0.12);
}
.main-nav a.nav-cta {
  background-color: #c5a44e; color: #4a0e0e;
  padding: 0.5rem 1.1rem; border-radius: 3px; margin-left: 0.5rem;
}
.main-nav a.nav-cta:hover { background-color: #d4b462; }

.nav-toggle {
  display: none; flex-direction: column; justify-content: space-between;
  width: 30px; height: 22px; background: none; border: none;
  cursor: pointer; padding: 0;
}
.nav-toggle span {
  display: block; height: 2px; background-color: #c5a44e;
  border-radius: 2px; transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .main-nav {
    display: none; flex-direction: column; align-items: flex-start; gap: 0;
    position: absolute; top: 72px; left: 0; right: 0;
    background-color: #3a0a0a; padding: 1rem 1.5rem 1.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 0.65rem 0; width: 100%; border-bottom: 1px solid rgba(197,164,78,0.15); }
  .main-nav a.nav-cta { margin-left: 0; margin-top: 0.75rem; text-align: center; }
}

/* --- HERO --- */
.hero {
  position: relative;
  min-height: 88vh;
  background-image: url('/images/hero-ecole.jpg');
  background-size: cover; background-position: center 15%;
  display: flex; align-items: center;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(74,14,14,0.82) 0%, rgba(44,8,8,0.55) 60%, rgba(0,0,0,0.3) 100%);
}
.hero-content {
  position: relative; z-index: 1;
  max-width: 1200px; margin: 0 auto; padding: 0 1.5rem;
  display: flex; flex-direction: column; gap: 1.5rem;
}
.hero-badge {
  display: inline-block;
  background-color: #c5a44e; color: #4a0e0e;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 0.35rem 1rem; border-radius: 2px;
  width: fit-content;
}
.hero h1 { color: #faf5eb; text-shadow: 0 2px 8px rgba(0,0,0,0.5); max-width: 720px; }
.hero h1 em { color: #c5a44e; font-style: normal; }
.hero-sub {
  font-size: 1.15rem; color: rgba(250,245,235,0.9);
  max-width: 580px; line-height: 1.65;
  font-family: Georgia, serif;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-stats {
  display: flex; flex-wrap: wrap; gap: 2rem;
  margin-top: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(197,164,78,0.4);
  max-width: 640px;
}
.hero-stat { text-align: center; }
.hero-stat strong {
  display: block; font-size: 2rem; color: #c5a44e;
  font-family: 'Palatino Linotype', Georgia, serif;
}
.hero-stat span { font-size: 0.85rem; color: rgba(250,245,235,0.8); }

/* --- BUTTONS --- */
.btn {
  display: inline-block;
  font-family: 'Palatino Linotype', 'Palatino', Georgia, serif;
  font-size: 0.95rem; font-weight: 600; letter-spacing: 0.06em;
  padding: 0.85rem 2rem; border-radius: 3px;
  cursor: pointer; transition: all 0.3s ease; border: 2px solid transparent;
  text-align: center;
}
.btn-primary {
  background-color: #c5a44e; color: #4a0e0e;
  border-color: #c5a44e;
}
.btn-primary:hover { background-color: #d4b462; border-color: #d4b462; color: #4a0e0e; }
.btn-secondary {
  background-color: transparent; color: #faf5eb;
  border-color: rgba(250,245,235,0.7);
}
.btn-secondary:hover { background-color: rgba(250,245,235,0.1); color: #faf5eb; border-color: #faf5eb; }
.btn-outline {
  background-color: transparent; color: #4a0e0e;
  border-color: #4a0e0e;
}
.btn-outline:hover { background-color: #4a0e0e; color: #faf5eb; }
.btn-gold {
  background-color: #c5a44e; color: #4a0e0e;
  border-color: #c5a44e;
}
.btn-gold:hover { background-color: #4a0e0e; color: #c5a44e; border-color: #4a0e0e; }
.btn-sm { padding: 0.55rem 1.25rem; font-size: 0.88rem; }

/* --- SECTION HEADERS --- */
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header .eyebrow {
  display: inline-block;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: #c5a44e; margin-bottom: 0.75rem;
}
.section-header h2 { margin-bottom: 1rem; }
.section-header p { font-size: 1.05rem; color: #5a3a28; max-width: 640px; margin: 0 auto; }
.section-header--light p { color: rgba(250,245,235,0.82); }
.divider {
  width: 56px; height: 3px; background-color: #c5a44e;
  margin: 0.85rem auto 0; border-radius: 2px;
}

/* --- CARDS --- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.card {
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 2px 16px rgba(74,14,14,0.08);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(74,14,14,0.14); }
.card-img { width: 100%; height: 210px; object-fit: cover; }
.card-body { padding: 1.5rem; }
.card-tag {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: #c5a44e; margin-bottom: 0.6rem;
}
.card h3 { margin-bottom: 0.75rem; font-size: 1.15rem; }
.card p { font-size: 0.93rem; color: #5a3a28; margin-bottom: 1.25rem; }
.card-link {
  font-size: 0.88rem; font-weight: 700; color: #4a0e0e;
  text-transform: uppercase; letter-spacing: 0.06em;
  border-bottom: 2px solid #c5a44e; padding-bottom: 1px;
}
.card-link:hover { color: #c5a44e; }

/* --- TWO-COL SPLIT --- */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.two-col--reverse .two-col-img { order: 2; }
.two-col--reverse .two-col-text { order: 1; }
.two-col-img img { border-radius: 6px; box-shadow: 0 6px 32px rgba(74,14,14,0.18); width: 100%; height: 420px; object-fit: cover; }
.two-col-text .eyebrow {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: #c5a44e; margin-bottom: 0.75rem; display: block;
}
.two-col-text h2 { margin-bottom: 1rem; }
.two-col-text p { color: #5a3a28; margin-bottom: 1rem; }
.two-col-text ul { margin-bottom: 1.5rem; }
.two-col-text ul li {
  padding: 0.4rem 0 0.4rem 1.5rem; position: relative; color: #5a3a28; font-size: 0.97rem;
}
.two-col-text ul li::before {
  content: '▸'; color: #c5a44e; position: absolute; left: 0; font-size: 0.85rem;
}
@media (max-width: 768px) {
  .two-col { grid-template-columns: 1fr; gap: 2rem; }
  .two-col--reverse .two-col-img, .two-col--reverse .two-col-text { order: unset; }
  .two-col-img img { height: 260px; }
}

/* --- BANNER BG (vue-paris) --- */
.paris-banner {
  position: relative;
  background-image: url('/images/vue-paris.jpg');
  background-size: cover; background-position: center;
  background-attachment: fixed;
  padding: 6rem 0;
  text-align: center;
}
.paris-banner::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(74,14,14,0.75);
}
.paris-banner > * { position: relative; z-index: 1; }
.paris-banner h2 { color: #c5a44e; margin-bottom: 1rem; }
.paris-banner p { color: rgba(250,245,235,0.9); font-size: 1.1rem; max-width: 640px; margin: 0 auto 2rem; }

/* --- CTA SECTION (equipement-cinema) --- */
.cta-section {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 440px;
}
.cta-section-img {
  background-image: url('/images/equipement-cinema.jpg');
  background-size: cover; background-position: center;
}
.cta-section-body {
  background-color: #4a0e0e;
  padding: 4rem;
  display: flex; flex-direction: column; justify-content: center;
}
.cta-section-body h2 { color: #c5a44e; margin-bottom: 1rem; }
.cta-section-body p { color: rgba(250,245,235,0.88); margin-bottom: 2rem; font-size: 1.05rem; }
@media (max-width: 768px) {
  .cta-section { grid-template-columns: 1fr; }
  .cta-section-img { min-height: 240px; }
  .cta-section-body { padding: 2.5rem 1.5rem; }
}

/* --- PROGRAM / ACCORDION --- */
.accordion { border: 1px solid rgba(197,164,78,0.3); border-radius: 6px; overflow: hidden; }
.accordion-item { border-bottom: 1px solid rgba(197,164,78,0.3); }
.accordion-item:last-child { border-bottom: none; }
.accordion-header {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 1.5rem;
  font-family: 'Palatino Linotype', Georgia, serif;
  font-size: 1.05rem; font-weight: 600; color: #4a0e0e;
  text-align: left; transition: background 0.3s;
}
.accordion-header:hover { background-color: rgba(197,164,78,0.08); }
.accordion-header.open { background-color: #4a0e0e; color: #c5a44e; }
.accordion-header .icon {
  width: 22px; height: 22px; border-radius: 50%;
  background-color: #c5a44e; color: #4a0e0e;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0; transition: transform 0.3s;
}
.accordion-header.open .icon { transform: rotate(45deg); background-color: #c5a44e; }
.accordion-body { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.accordion-body.open { max-height: 800px; }
.accordion-body-inner { padding: 1.25rem 1.5rem; background-color: #fdf8ee; }
.accordion-body-inner ul { margin-top: 0.5rem; }
.accordion-body-inner ul li { padding: 0.3rem 0 0.3rem 1.25rem; position: relative; font-size: 0.95rem; color: #5a3a28; }
.accordion-body-inner ul li::before { content: '•'; color: #c5a44e; position: absolute; left: 0; }

/* --- FAQ --- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(197,164,78,0.3); }
.faq-question {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 0; font-family: 'Palatino Linotype', Georgia, serif;
  font-size: 1.05rem; font-weight: 600; color: #4a0e0e; text-align: left;
  transition: color 0.3s;
}
.faq-question:hover { color: #c5a44e; }
.faq-question.open { color: #c5a44e; }
.faq-question .faq-icon {
  width: 26px; height: 26px; border-radius: 50%;
  border: 2px solid currentColor; display: flex; align-items: center;
  justify-content: center; font-size: 1.2rem; flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-question.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer.open { max-height: 600px; }
.faq-answer p { padding: 0.5rem 0 1.25rem; font-size: 0.97rem; color: #5a3a28; }

/* --- TESTIMONIALS --- */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.testimonial {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(197,164,78,0.3);
  border-radius: 6px; padding: 2rem;
}
.testimonial-quote { font-size: 1rem; line-height: 1.7; color: rgba(250,245,235,0.88); margin-bottom: 1.25rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background-color: #c5a44e; color: #4a0e0e;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 700; flex-shrink: 0;
}
.testimonial-name { font-weight: 700; color: #c5a44e; font-size: 0.95rem; }
.testimonial-role { font-size: 0.82rem; color: rgba(250,245,235,0.65); }

/* --- FEATURES GRID --- */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; }
.feature { text-align: center; padding: 2rem 1.25rem; }
.feature-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background-color: rgba(197,164,78,0.15);
  border: 2px solid rgba(197,164,78,0.4);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem; font-size: 1.75rem;
}
.feature h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.feature p { font-size: 0.92rem; color: #5a3a28; }
.section--dark .feature p { color: rgba(250,245,235,0.75); }

/* --- NUMBERS / STATS --- */
.stats-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 3rem; }
.stat-item { text-align: center; }
.stat-item strong {
  display: block; font-size: 3rem; font-weight: 700;
  color: #c5a44e; font-family: 'Palatino Linotype', Georgia, serif;
  line-height: 1;
}
.stat-item span { font-size: 0.9rem; color: rgba(250,245,235,0.75); margin-top: 0.4rem; display: block; }

/* --- BLOG / JOURNAL --- */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(310px, 1fr)); gap: 2rem; }
.blog-card {
  background: #fff; border-radius: 6px;
  box-shadow: 0 2px 16px rgba(74,14,14,0.08);
  overflow: hidden; transition: transform 0.3s, box-shadow 0.3s;
  display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(74,14,14,0.14); }
.blog-card-img { width: 100%; height: 200px; object-fit: cover; }
.blog-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.blog-card-meta { font-size: 0.78rem; color: #8a6a50; margin-bottom: 0.6rem; text-transform: uppercase; letter-spacing: 0.06em; }
.blog-card h3 { font-size: 1.1rem; margin-bottom: 0.75rem; }
.blog-card p { font-size: 0.92rem; color: #5a3a28; flex: 1; margin-bottom: 1.25rem; }
.blog-card .read-more {
  font-size: 0.85rem; font-weight: 700; color: #4a0e0e;
  text-transform: uppercase; letter-spacing: 0.06em;
  border-bottom: 2px solid #c5a44e; padding-bottom: 1px; width: fit-content;
}
.blog-card .read-more:hover { color: #c5a44e; }

/* --- ARTICLE (blog single) --- */
.article-hero {
  height: 420px;
  background-size: cover; background-position: center;
  position: relative;
}
.article-hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(74,14,14,0.3), rgba(74,14,14,0.7));
}
.article-hero-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 2rem 1.5rem;
  max-width: 1200px; margin: 0 auto;
}
.article-breadcrumb {
  font-size: 0.82rem; color: rgba(250,245,235,0.75); margin-bottom: 0.75rem;
}
.article-breadcrumb a { color: #c5a44e; }
.article-meta { font-size: 0.82rem; color: rgba(250,245,235,0.75); margin-top: 0.75rem; }
.article-body { max-width: 800px; margin: 0 auto; padding: 3rem 1.5rem; }
.article-body h2 { margin: 2rem 0 1rem; }
.article-body h3 { margin: 1.75rem 0 0.75rem; color: #4a0e0e; }
.article-body p { margin-bottom: 1.25rem; color: #3a2218; }
.article-body ul, .article-body ol { margin: 0.75rem 0 1.25rem 1.5rem; list-style: disc; }
.article-body ol { list-style: decimal; }
.article-body li { margin-bottom: 0.5rem; color: #3a2218; font-size: 0.97rem; }
.article-body a { color: #4a0e0e; border-bottom: 1px solid #c5a44e; }
.article-body a:hover { color: #c5a44e; }
.article-body img {
  width: 100%; border-radius: 6px; margin: 1.75rem 0;
  box-shadow: 0 4px 20px rgba(74,14,14,0.12);
}
.article-body blockquote {
  border-left: 4px solid #c5a44e; margin: 1.75rem 0;
  padding: 1rem 1.5rem; background-color: #fdf8ee; border-radius: 0 4px 4px 0;
}
.article-body blockquote p { color: #4a0e0e; font-style: italic; margin: 0; }
.article-cta {
  background-color: #4a0e0e; border-radius: 8px;
  padding: 2rem 2.5rem; margin: 2.5rem 0; text-align: center;
}
.article-cta h3 { color: #c5a44e; margin-bottom: 0.75rem; }
.article-cta p { color: rgba(250,245,235,0.85); margin-bottom: 1.25rem; }

/* --- CONTACT FORM --- */
.contact-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 4rem; align-items: start; }
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; gap: 2rem; } }
.contact-info h3 { margin-bottom: 1rem; }
.contact-info-item { display: flex; align-items: flex-start; gap: 0.85rem; margin-bottom: 1.25rem; }
.contact-info-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background-color: rgba(197,164,78,0.15); border: 1px solid rgba(197,164,78,0.4);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.contact-info-text strong { display: block; font-size: 0.88rem; color: #4a0e0e; }
.contact-info-text span { font-size: 0.92rem; color: #5a3a28; }
.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block; font-size: 0.88rem; font-weight: 700;
  color: #4a0e0e; margin-bottom: 0.4rem; letter-spacing: 0.04em;
  text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 0.85rem 1rem;
  border: 2px solid rgba(74,14,14,0.2); border-radius: 4px;
  background-color: #fff; color: #2c1810;
  font-family: Georgia, serif; font-size: 0.97rem;
  transition: border-color 0.3s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: #c5a44e;
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
@media (max-width: 500px) { .form-row { grid-template-columns: 1fr; } }

/* --- PAGE HERO (inner pages) --- */
.page-hero {
  background-color: #4a0e0e;
  padding: 4.5rem 0 3.5rem;
  text-align: center;
}
.page-hero .eyebrow {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: #c5a44e; margin-bottom: 0.75rem; display: block;
}
.page-hero h1 { color: #faf5eb; }
.page-hero p { color: rgba(250,245,235,0.8); max-width: 640px; margin: 1rem auto 0; font-size: 1.05rem; }
.breadcrumb {
  font-size: 0.82rem; margin-bottom: 1rem;
  color: rgba(250,245,235,0.6);
}
.breadcrumb a { color: rgba(197,164,78,0.85); }
.breadcrumb a:hover { color: #c5a44e; }
.breadcrumb span { color: rgba(250,245,235,0.4); margin: 0 0.5rem; }

/* --- PROGRAMME STEPS --- */
.steps { counter-reset: step; display: flex; flex-direction: column; gap: 1.5rem; }
.step { display: flex; gap: 1.5rem; align-items: flex-start; }
.step-num {
  width: 48px; height: 48px; border-radius: 50%; flex-shrink: 0;
  background-color: #4a0e0e; color: #c5a44e;
  font-family: 'Palatino Linotype', Georgia, serif;
  font-size: 1.25rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.step-body h4 { margin-bottom: 0.35rem; color: #4a0e0e; }
.step-body p { font-size: 0.94rem; color: #5a3a28; margin: 0; }

/* --- TABLE --- */
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
thead th {
  background-color: #4a0e0e; color: #c5a44e;
  padding: 0.85rem 1rem; text-align: left;
  font-family: 'Palatino Linotype', Georgia, serif; font-weight: 600;
}
tbody td { padding: 0.8rem 1rem; border-bottom: 1px solid rgba(197,164,78,0.2); color: #3a2218; }
tbody tr:nth-child(even) { background-color: rgba(197,164,78,0.05); }
tbody tr:hover { background-color: rgba(197,164,78,0.1); }

/* --- SITEMAP --- */
.sitemap-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2.5rem; }
.sitemap-category h3 { color: #4a0e0e; font-size: 1rem; margin-bottom: 0.85rem; padding-bottom: 0.5rem; border-bottom: 2px solid #c5a44e; }
.sitemap-category ul { list-style: none; }
.sitemap-category ul li { padding: 0.35rem 0; font-size: 0.95rem; }
.sitemap-category ul li a { color: #5a3a28; }
.sitemap-category ul li a:hover { color: #4a0e0e; }

/* --- 404 --- */
.error-page { text-align: center; padding: 8rem 1.5rem; min-height: 70vh; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.error-code { font-size: 8rem; font-weight: 700; color: rgba(197,164,78,0.25); line-height: 1; margin-bottom: 1rem; font-family: 'Palatino Linotype', Georgia, serif; }
.error-page h1 { font-size: 1.8rem; margin-bottom: 1rem; }
.error-page p { color: #5a3a28; max-width: 480px; margin-bottom: 2rem; }

/* --- FOOTER --- */
.site-footer { background-color: #2c1810; color: rgba(250,245,235,0.8); padding: 4rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand img { height: 48px; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.92rem; line-height: 1.65; color: rgba(250,245,235,0.65); margin-bottom: 1.5rem; }
.footer-col h4 {
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: #c5a44e; margin-bottom: 1rem;
}
.footer-col ul li { padding: 0.3rem 0; }
.footer-col ul li a { font-size: 0.92rem; color: rgba(250,245,235,0.65); transition: color 0.3s; }
.footer-col ul li a:hover { color: #c5a44e; }
.footer-col address { font-style: normal; font-size: 0.92rem; color: rgba(250,245,235,0.65); line-height: 1.8; }
.footer-bottom {
  border-top: 1px solid rgba(197,164,78,0.2);
  padding: 1.5rem 0; display: flex;
  align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(250,245,235,0.45); }
.footer-bottom a { color: rgba(197,164,78,0.7); }
.footer-bottom a:hover { color: #c5a44e; }
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* --- RELATED ARTICLES --- */
.related-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; }

/* --- TAGS --- */
.tag-list { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1rem 0; }
.tag {
  font-size: 0.78rem; padding: 0.3rem 0.75rem;
  background-color: rgba(197,164,78,0.12); color: #4a0e0e;
  border: 1px solid rgba(197,164,78,0.4); border-radius: 2px;
  text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600;
}

/* --- HIGHLIGHT BOX --- */
.highlight-box {
  background-color: #fdf8ee; border-left: 4px solid #c5a44e;
  padding: 1.5rem 2rem; border-radius: 0 6px 6px 0; margin: 2rem 0;
}
.highlight-box h3 { margin-bottom: 0.5rem; font-size: 1rem; }
.highlight-box p { margin: 0; font-size: 0.95rem; color: #5a3a28; }

/* --- UTILITY --- */
.text-center { text-align: center; }
.text-gold { color: #c5a44e; }
.text-dark { color: #4a0e0e; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.pt-0 { padding-top: 0; }
.pb-0 { padding-bottom: 0; }

/* --- RESPONSIVE UTILITIES --- */
@media (max-width: 768px) {
  .section { padding: 3.5rem 0; }
  .hide-mobile { display: none; }
  .hero { min-height: 70vh; }
  .paris-banner { background-attachment: scroll; }
}

/* --- PAGINATION --- */
.pagination { display: flex; justify-content: center; gap: 0.5rem; margin-top: 3rem; flex-wrap: wrap; }
.pagination a, .pagination span {
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  border-radius: 4px; font-size: 0.9rem; font-weight: 600;
  border: 1px solid rgba(74,14,14,0.25); color: #4a0e0e;
  transition: all 0.3s;
}
.pagination a:hover { background-color: #4a0e0e; color: #c5a44e; border-color: #4a0e0e; }
.pagination .current { background-color: #4a0e0e; color: #c5a44e; border-color: #4a0e0e; }

/* --- CHECKLIST --- */
.checklist { list-style: none !important; margin-left: 0 !important; }
.checklist li { padding-left: 2rem !important; position: relative; }
.checklist li::before { content: '✓'; color: #c5a44e; position: absolute; left: 0; font-weight: 700; }

/* --- NOTICE --- */
.notice {
  background-color: rgba(197,164,78,0.12); border: 1px solid rgba(197,164,78,0.4);
  border-radius: 6px; padding: 1.25rem 1.5rem;
}
.notice p { margin: 0; font-size: 0.95rem; }
