:root {
  --beige: #FBF6EF;
  --beige2: #F5EBDF;
  --sage: #F58B81;
  --green: #B4423D;
  --green2: #9E3B37;
  --gold: #C9A24B;
  --white: #FFFFFF;
  --text: #2E3A45;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Montserrat', system-ui, sans-serif;
  color: var(--text);
  background: var(--beige);
  line-height: 1.6;
}
h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; color: var(--green); }
a { color: var(--green); }

nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 2.5rem; background: var(--white);
  border-bottom: 1px solid rgba(61,45,43,.1);
  position: sticky; top: 0; z-index: 100;
}
.nav-logo { text-decoration: none; }
.nav-logo-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700; letter-spacing: .03em; color: var(--green);
  font-size: 1.05rem; text-transform: uppercase;
}
.nav-logo-text span {
  display: block; font-family: 'Montserrat', sans-serif;
  font-weight: 400; text-transform: none; letter-spacing: 0;
  font-size: .68rem; color: #6a6560;
}
.nav-links { display: flex; gap: 2rem; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  font-size: .78rem; font-weight: 500; letter-spacing: .08em;
  text-transform: uppercase; color: var(--green); text-decoration: none; opacity: .75;
}
.nav-links a:hover { opacity: 1; }
.btn-rdv {
  background: var(--green); color: var(--white); padding: .6rem 1.4rem;
  border-radius: 50px; text-decoration: none; font-size: .8rem;
  font-weight: 500; letter-spacing: .03em;
}
@media (max-width: 768px) { .nav-links { display: none; } }

.blog-hero { max-width: 760px; margin: 0 auto; padding: 4rem 2rem 1rem; text-align: center; }
.blog-hero p { color: #4a4a4a; }

.blog-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem;
  max-width: 1080px; margin: 2rem auto 5rem; padding: 0 2rem;
}
@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr; } }
.blog-card {
  display: flex; flex-direction: column; background: var(--white);
  border: 1px solid rgba(61,45,43,.14); border-radius: 16px; overflow: hidden;
  text-decoration: none; transition: transform .25s ease, box-shadow .25s ease;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(61,45,43,.14); }
.blog-card-img { aspect-ratio: 16/10; overflow: hidden; background: var(--beige2); }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 1.4rem 1.5rem .5rem; flex: 1; }
.blog-card-tag {
  font-size: .66rem; letter-spacing: .12em; text-transform: uppercase;
  font-weight: 700; color: var(--sage);
}
.blog-card-body h3 { font-size: 1.15rem; margin: .5rem 0; line-height: 1.3; }
.blog-card-body p { font-size: .88rem; color: #4a4a4a; line-height: 1.6; }
.blog-card-footer { padding: 0 1.5rem 1.4rem; font-size: .8rem; font-weight: 600; color: var(--green); }

.blog-article { max-width: 720px; margin: 0 auto; padding: 0 2rem 5rem; }
.blog-article-hero { text-align: center; padding: 3.5rem 0 2.5rem; }
.blog-kicker { font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--sage); font-weight: 700; margin-bottom: .8rem; }
.blog-article-hero h1 { font-size: clamp(1.7rem, 4vw, 2.6rem); font-weight: 600; line-height: 1.25; margin: 0 0 1rem; }
.blog-meta { font-size: .8rem; color: #7a7570; }
.blog-article-body { font-size: 1.05rem; line-height: 1.85; color: #2a2f3a; }
.blog-article-body h2 { font-size: 1.4rem; margin: 2rem 0 .8rem; }
.blog-article-body p { margin: 0 0 1.2rem; }
.blog-article-body blockquote {
  margin: 1.5rem 0; padding: 1rem 1.5rem; border-left: 3px solid var(--gold);
  background: var(--beige2); font-style: italic; color: #4a4a4a;
}
.blog-article-body ul { padding-left: 1.4rem; }
.blog-article-author {
  margin-top: 3rem; padding-top: 2rem; border-top: 1px solid rgba(61,45,43,.12);
}
.blog-author-name { font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; color: var(--sage); font-weight: 700; margin-bottom: .5rem; }
.blog-author-bio { font-size: .9rem; color: #5a6475; line-height: 1.6; margin-bottom: 1.2rem; }
.blog-back { margin-top: 1.5rem; }
.blog-back a { font-size: .82rem; text-decoration: none; font-weight: 600; }

footer { text-align: center; padding: 3rem 2rem; background: var(--white); border-top: 1px solid rgba(61,45,43,.1); font-size: .85rem; color: #6a6560; }
footer strong { color: var(--green); font-family: 'Playfair Display', Georgia, serif; }
footer a { color: var(--green); text-decoration: none; }
