/* ============================================
   CANICHE MINIATURE — Design System
   Univers : Musée de race moderne, pédagogique
   Palette : Porcelaine, Bleu ardoise, Vert sauge, Laiton
   ============================================ */

/* --- Variables --- */
:root {
  --porcelain: #F8F4EF;
  --porcelain-deep: #EDE7DF;
  --slate: #4E6B80;
  --slate-dark: #364B5E;
  --slate-light: #E8EDF1;
  --sage: #7A9E7E;
  --sage-light: #E4EDE5;
  --brass: #C4A235;
  --brass-light: #F5EED4;
  --text-primary: #2C3E50;
  --text-secondary: #5A6C7D;
  --text-muted: #8899A6;
  --white: #FFFFFF;
  --border: #D5CFC7;
  --shadow-sm: 0 1px 3px rgba(44,62,80,0.06);
  --shadow-md: 0 4px 12px rgba(44,62,80,0.08);
  --shadow-lg: 0 8px 32px rgba(44,62,80,0.10);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --container: 1120px;
  --content: 780px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: "DM Sans", "Segoe UI", system-ui, sans-serif;
  color: var(--text-primary);
  background: var(--porcelain);
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Texture de fond subtile */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(122,158,126,0.07) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(78,107,128,0.06) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  color: var(--slate-dark);
  line-height: 1.25;
  letter-spacing: -0.01em;
}

h1 { font-size: 2.5rem; margin-bottom: 1rem; }
h2 { font-size: 1.75rem; margin: 2.5rem 0 1rem; }
h3 { font-size: 1.3rem; margin: 2rem 0 0.75rem; }
h4 { font-size: 1.1rem; margin: 1.5rem 0 0.5rem; }

p { margin-bottom: 1.1rem; }

a {
  color: var(--slate);
  text-decoration: underline;
  text-decoration-color: var(--brass);
  text-underline-offset: 3px;
  transition: color 0.2s, text-decoration-color 0.2s;
}
a:hover {
  color: var(--brass);
  text-decoration-color: var(--brass);
}

strong { color: var(--slate-dark); }

/* --- Layout --- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

.content-wrapper {
  max-width: var(--content);
  margin: 0 auto;
}

main {
  flex: 1;
  position: relative;
  z-index: 1;
}

/* --- Header --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248,244,239,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.site-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.brand-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--slate), var(--sage));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  font-weight: 700;
}

.brand-text {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--slate-dark);
  letter-spacing: -0.02em;
}
.brand-text span {
  color: var(--brass);
}

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

.nav-link {
  display: inline-block;
  padding: 0.4rem 0.85rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: background 0.2s, color 0.2s;
}
.nav-link:hover {
  background: var(--slate-light);
  color: var(--slate-dark);
  text-decoration: none;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 36px;
  height: 36px;
  cursor: pointer;
  position: relative;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--slate-dark);
  border-radius: 2px;
  position: absolute;
  left: 7px;
  transition: transform 0.3s;
}
.nav-toggle span { top: 17px; }
.nav-toggle span::before { content: ""; top: -7px; }
.nav-toggle span::after { content: ""; top: 7px; }

/* --- Hero (Homepage) --- */
.hero {
  padding: 4rem 0 3rem;
  text-align: center;
  background:
    linear-gradient(180deg, var(--porcelain) 0%, var(--slate-light) 100%);
  border-bottom: 2px solid var(--border);
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to top, var(--porcelain), transparent);
}

.hero h1 {
  font-size: 2.8rem;
  max-width: 700px;
  margin: 0 auto 1rem;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.hero-showcase {
  display: grid;
  grid-template-columns: minmax(280px, 340px) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--brass-light);
  color: var(--slate-dark);
  padding: 0.5rem 1.1rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(196,162,53,0.25);
}

.hero-photo-card {
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(78,107,128,0.12);
  border-radius: var(--radius-lg);
  padding: 0.8rem;
  box-shadow: var(--shadow-lg);
  text-align: left;
}

.hero-photo-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: calc(var(--radius-lg) - 6px);
  display: block;
}

.hero-photo-card figcaption {
  margin-top: 0.8rem;
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.hero-schema {
  max-width: 100%;
  margin: 0;
  background: rgba(255,255,255,0.74);
  border: 1px solid rgba(78,107,128,0.1);
  border-radius: var(--radius-lg);
  padding: 1rem;
  box-shadow: var(--shadow-md);
}
.hero-schema svg {
  width: 100%;
  height: auto;
}

/* --- Page Header (inner pages) --- */
.page-header {
  padding: 3rem 0 2rem;
  background: linear-gradient(180deg, var(--porcelain) 0%, var(--slate-light) 40%, var(--porcelain) 100%);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.page-header h1 {
  font-size: 2.2rem;
  max-width: 640px;
  margin: 0 auto;
}

.page-header .page-lead {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 540px;
  margin: 0.75rem auto 0;
}

/* --- Page Content --- */
.page-content {
  padding: 3rem 0 4rem;
}

.page-content h2 {
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--brass-light);
}

.page-content ul, .page-content ol {
  margin: 0 0 1.2rem 1.5rem;
}
.page-content li {
  margin-bottom: 0.4rem;
}

/* --- Cards de navigation (Homepage) --- */
.nav-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin: 2.5rem 0;
}

.nav-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-decoration: none;
  color: var(--text-primary);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.nav-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--brass);
  text-decoration: none;
}

.nav-card-icon {
  width: 40px;
  height: 40px;
  background: var(--sage-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.nav-card h3 {
  font-size: 1.1rem;
  margin: 0.25rem 0 0;
  color: var(--slate-dark);
}

.nav-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.5;
}

/* --- Glossary Cards (FCI vocabulary) --- */
.glossary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.glossary-card {
  background: var(--white);
  border-left: 3px solid var(--brass);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
}

.glossary-card dt {
  font-family: "Playfair Display", serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--slate-dark);
  margin-bottom: 0.4rem;
}

.glossary-card dd {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* --- Data Table --- */
.data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.92rem;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.data-table thead {
  background: var(--slate);
  color: var(--white);
}

.data-table th {
  padding: 0.85rem 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.data-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
}

.data-table tbody tr:hover {
  background: var(--porcelain-deep);
}

.data-table .highlight-row {
  background: var(--brass-light);
  font-weight: 600;
}
.data-table .highlight-row td {
  border-bottom-color: rgba(196,162,53,0.3);
}

/* --- Comparison Card --- */
.compare-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin: 2rem 0;
}

.compare-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
  position: relative;
  transition: box-shadow 0.2s;
}
.compare-card:hover {
  box-shadow: var(--shadow-md);
}

.compare-card.featured {
  border-color: var(--brass);
  box-shadow: 0 0 0 1px var(--brass), var(--shadow-md);
}

.compare-card.featured::before {
  content: "Miniature";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brass);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.2rem 0.8rem;
  border-radius: 100px;
}

.compare-card h4 {
  font-family: "Playfair Display", serif;
  margin: 0 0 0.75rem;
  color: var(--slate-dark);
}

.compare-card .size-number {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--slate);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.compare-card .size-unit {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.compare-card ul {
  list-style: none;
  text-align: left;
  margin-top: 1rem;
  padding: 0;
}
.compare-card li {
  font-size: 0.88rem;
  color: var(--text-secondary);
  padding: 0.3rem 0;
  border-bottom: 1px solid var(--porcelain-deep);
}
.compare-card li:last-child { border: none; }

/* --- Info Box --- */
.info-box {
  background: var(--sage-light);
  border: 1px solid rgba(122,158,126,0.25);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  font-size: 0.93rem;
}

.info-box.warning {
  background: var(--brass-light);
  border-color: rgba(196,162,53,0.3);
}

.info-box.slate {
  background: var(--slate-light);
  border-color: rgba(78,107,128,0.2);
}

.info-box strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--slate-dark);
}

/* --- FAQ --- */
.faq-section {
  margin: 2.5rem 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
}

.faq-item h3 {
  font-size: 1.05rem;
  margin: 0 0 0.5rem;
  color: var(--slate-dark);
  cursor: default;
}

.faq-item p {
  font-size: 0.93rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.65;
}

/* --- Scorecard --- */
.scorecard {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.score-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  text-align: center;
}

.score-value {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--slate);
  line-height: 1;
}

.score-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* --- Timeline --- */
.timeline {
  position: relative;
  margin: 2rem 0;
  padding-left: 2rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.timeline-item {
  position: relative;
  margin-bottom: 1.5rem;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -2rem;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--brass);
  border: 2px solid var(--porcelain);
}

.timeline-item h4 {
  font-size: 0.95rem;
  margin: 0 0 0.25rem;
}

.timeline-item p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0;
}

/* --- Checklist --- */
.checklist {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.checklist li {
  position: relative;
  padding: 0.6rem 0 0.6rem 2rem;
  font-size: 0.93rem;
  border-bottom: 1px solid var(--porcelain-deep);
}

.checklist li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 20px;
  height: 20px;
  background: var(--sage);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

/* --- Breadcrumb --- */
.breadcrumb {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
}
.breadcrumb a:hover { color: var(--slate); }
.breadcrumb span { margin: 0 0.4rem; }

/* --- Footer --- */
.site-footer {
  background: var(--slate-dark);
  color: rgba(255,255,255,0.7);
  padding: 3rem 0 2rem;
  margin-top: auto;
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
}

.footer-brand {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.footer-desc {
  font-size: 0.88rem;
  line-height: 1.6;
  max-width: 320px;
}

.footer-heading {
  font-family: "Playfair Display", serif;
  font-size: 0.9rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li { margin-bottom: 0.4rem; }

.footer-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--brass); }

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.8rem;
  text-align: center;
  color: rgba(255,255,255,0.4);
}

/* --- Section dividers --- */
.section-block {
  margin: 3rem 0;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brass);
  margin-bottom: 0.5rem;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.4rem; }

  .hero { padding: 2.5rem 0 2rem; }
  .hero h1 { font-size: 2rem; }
  .hero-showcase {
    grid-template-columns: 1fr;
    max-width: 520px;
  }
  .hero-photo-card {
    text-align: center;
  }

  .header-inner { height: 60px; }

  .main-nav {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--porcelain);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 0.5rem 1rem;
    box-shadow: var(--shadow-md);
  }
  .main-nav.open { display: flex; }

  .nav-toggle { display: block; }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

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

  .scorecard {
    grid-template-columns: repeat(2, 1fr);
  }

  .data-table {
    display: block;
    overflow-x: auto;
  }

  .page-header { padding: 2rem 0 1.5rem; }
  .page-header h1 { font-size: 1.7rem; }
}

@media (max-width: 480px) {
  .compare-grid { grid-template-columns: 1fr; }
  .nav-cards { grid-template-columns: 1fr; }
  .hero h1 { font-size: 1.6rem; }
}

/* ============================================
   DESIGN PREMIUM — Sections enrichies
   ============================================ */

/* --- Page Hero Banner (inner pages) --- */
.page-hero {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: flex-end;
  padding: 3rem 0 2.5rem;
  overflow: hidden;
  background: var(--slate-dark);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(54,75,94,0.2) 0%, rgba(44,62,80,0.82) 100%);
  z-index: 1;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  z-index: 0;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero .breadcrumb {
  color: rgba(255,255,255,0.6);
}
.page-hero .breadcrumb a {
  color: rgba(255,255,255,0.6);
}
.page-hero .breadcrumb a:hover { color: var(--white); }

.page-hero h1 {
  color: var(--white);
  font-size: 2.4rem;
  max-width: 640px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.page-hero .page-lead {
  color: rgba(255,255,255,0.85);
  font-size: 1.08rem;
  max-width: 540px;
  margin-top: 0.75rem;
  text-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

/* --- Two Column Layout (image + text) --- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  margin: 3rem 0;
}

.two-col.reverse {
  direction: rtl;
}
.two-col.reverse > * {
  direction: ltr;
}

.two-col-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.two-col-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  display: block;
  transition: transform 0.4s ease;
}

.two-col-image:hover img {
  transform: scale(1.03);
}

.two-col-image figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.75rem 1rem;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  color: rgba(255,255,255,0.85);
  font-size: 0.78rem;
}

.two-col-text h2 {
  margin-top: 0;
}

/* --- Image Gallery --- */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
  margin: 2.5rem 0;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
  aspect-ratio: 4 / 3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.6rem 0.8rem;
  background: linear-gradient(to top, rgba(0,0,0,0.65), transparent);
  color: var(--white);
  font-size: 0.78rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover figcaption {
  transform: translateY(0);
}

/* --- Ambiance Image (full-width break) --- */
.ambiance-break {
  margin: 3.5rem -1.5rem;
  position: relative;
  height: 280px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.ambiance-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ambiance-break::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(248,244,239,0.9) 100%);
  pointer-events: none;
}

/* --- Feature Cards (enhanced nav-cards) --- */
.feature-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2.5rem 0;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: var(--text-primary);
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
}

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

.feature-card-image {
  height: 180px;
  overflow: hidden;
}

.feature-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.feature-card:hover .feature-card-image img {
  transform: scale(1.06);
}

.feature-card-body {
  padding: 1.25rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.feature-card-body h3 {
  font-size: 1.1rem;
  margin: 0;
  color: var(--slate-dark);
}

.feature-card-body p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.5;
}

/* --- Quote / Highlight Block --- */
.highlight-quote {
  position: relative;
  background: linear-gradient(135deg, var(--slate-light) 0%, var(--porcelain-deep) 100%);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  margin: 2.5rem 0;
  border-left: 4px solid var(--brass);
}

.highlight-quote::before {
  content: "\201C";
  position: absolute;
  top: -0.2rem;
  left: 1rem;
  font-family: "Playfair Display", serif;
  font-size: 4rem;
  color: var(--brass);
  opacity: 0.3;
  line-height: 1;
}

.highlight-quote p {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--slate-dark);
  line-height: 1.7;
  margin: 0;
}

.highlight-quote cite {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.85rem;
  font-style: normal;
  color: var(--text-muted);
}

/* --- Stat Banner --- */
.stat-banner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0;
  margin: 2.5rem 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.stat-banner-item {
  background: var(--slate-dark);
  padding: 1.5rem 1rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.stat-banner-item:last-child { border-right: none; }

.stat-banner-item .stat-value {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--brass);
  line-height: 1;
}

.stat-banner-item .stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
  margin-top: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* --- Section with decorative line --- */
.section-decorated {
  position: relative;
  padding-top: 3.5rem;
  margin-top: 3rem;
}

.section-decorated::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--brass), var(--sage));
  border-radius: 2px;
}

/* --- Premium Responsive --- */
@media (max-width: 768px) {
  .page-hero { min-height: 280px; padding: 2rem 0 2rem; }
  .page-hero h1 { font-size: 1.8rem; }

  .two-col {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .two-col.reverse { direction: ltr; }

  .ambiance-break {
    margin: 2rem -1rem;
    height: 200px;
    border-radius: var(--radius-md);
  }

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

  .stat-banner {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-banner-item { border-bottom: 1px solid rgba(255,255,255,0.08); }

  .highlight-quote { padding: 1.5rem; }
}

@media (max-width: 480px) {
  .gallery { grid-template-columns: 1fr; }
  .stat-banner { grid-template-columns: 1fr; }
  .feature-cards { grid-template-columns: 1fr; }
}
