/* ========================================
   DECOREZ VOTRE MAISON — style.css
   ======================================== */

/* --- Variables --- */
:root {
  --cream: #e4e2e1;
  --gold: #d1a763;
  --gold-hover: #c4963a;
  --dark: #33332b;
  --gray: #82807a;
  --white: #ffffff;
  --bg: #f7f6f0;
  --off-white: #f8f7f6;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'DM Sans', sans-serif;
  --max-width: 1200px;
  --radius: 8px;
  --radius-lg: 12px;
  --border: rgba(0,0,0,0.08);
  --header-height: 70px;
  --font-display: 'Playfair Display', serif;
  --shadow: 0 2px 12px rgba(0,0,0,0.07);
  --shadow-hover: 0 8px 28px rgba(0,0,0,0.12);
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--dark);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--gold-hover);
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--dark);
}

h1 { font-size: 2.2rem; font-weight: 800; }
h2 { font-size: 1.75rem; font-weight: 700; }
h3 { font-size: 1.3rem; font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

p {
  margin-bottom: 1rem;
  color: var(--dark);
}

/* --- Utility --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

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

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  text-align: center;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.btn-primary:hover {
  background: var(--gold-hover);
  border-color: var(--gold-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn-outline {
  background: transparent;
  color: var(--dark);
  border-color: var(--dark);
}

.btn-outline:hover {
  background: var(--dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

/* ========================================
   HEADER
   ======================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--bg);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  text-decoration: none;
}

.logo span {
  color: var(--gold);
}

.logo:hover {
  color: var(--dark);
}

.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--dark);
  transition: color var(--transition);
  white-space: nowrap;
}

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

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  transition: all var(--transition);
}

.burger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger.open span:nth-child(2) {
  opacity: 0;
}

.burger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ========================================
   HERO
   ======================================== */
.hero {
  position: relative;
  background: url('../img/hero-decoration-maison.webp') center center / cover no-repeat;
  padding: 140px 20px 80px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(248,247,246,0.58) 0%, rgba(228,226,225,0.55) 100%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(209,167,99,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.hero-content .label {
  margin-bottom: 1rem;
}

.hero-content h1 {
  margin-bottom: 1.25rem;
  font-size: 2.2rem;
}

.hero-content h1 em {
  font-style: normal;
  color: var(--gold);
}

.hero-content p {
  font-size: 1.05rem;
  color: var(--gray);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========================================
   SECTIONS
   ======================================== */
section {
  padding: 80px 20px;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.section-header h2 {
  margin-bottom: 0.75rem;
}

.section-header p {
  color: var(--gray);
  font-size: 1rem;
}

.bg-cream {
  background: var(--off-white);
}

.bg-white {
  background: var(--bg);
}

/* ========================================
   SILO CARDS GRID (Homepage)
   ======================================== */
.silo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.silo-card {
  background: var(--bg);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.silo-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.silo-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.silo-card:hover::before {
  transform: scaleX(1);
}

.silo-card .icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  display: block;
}

.silo-card .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.silo-card h3 {
  margin-bottom: 8px;
  font-size: 1.15rem;
}

.silo-card p {
  color: var(--gray);
  font-size: 0.92rem;
  margin-bottom: 16px;
}

.silo-card .card-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold);
}

.silo-card .card-link:hover {
  color: var(--gold-hover);
}

/* ========================================
   FEATURED CARDS (Par où commencer)
   ======================================== */
.featured-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.featured-card {
  background: var(--bg);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}

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

.featured-card .card-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

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

.featured-card .card-body {
  padding: 24px;
}

.featured-card .card-body .label {
  margin-bottom: 0.5rem;
}

.featured-card .card-body h3 {
  margin-bottom: 8px;
}

.featured-card .card-body p {
  color: var(--gray);
  font-size: 0.92rem;
}

/* ========================================
   EMPTY STATE (Blog)
   ======================================== */
.empty-state {
  border: 2px dashed rgba(0,0,0,0.12);
  border-radius: var(--radius);
  background: var(--off-white);
  padding: 60px 32px;
  text-align: center;
}

.empty-state .empty-icon {
  font-size: 3rem;
  opacity: 0.5;
  margin-bottom: 16px;
  display: block;
}

.empty-state p {
  color: var(--gray);
  font-size: 0.95rem;
  max-width: 480px;
  margin: 0 auto;
}

/* ========================================
   SILO PAGES
   ======================================== */

/* Breadcrumb */
.breadcrumb {
  padding: 90px 20px 0;
  font-size: 0.85rem;
  color: var(--gray);
}

.breadcrumb a {
  color: var(--gray);
}

.breadcrumb a:hover {
  color: var(--gold);
}

.breadcrumb span {
  margin: 0 6px;
}

/* Page Hero */
.page-hero {
  background: var(--off-white);
  padding: 40px 20px 48px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  text-align: center;
}

.page-hero .label {
  margin-bottom: 1rem;
}

.page-hero h1 {
  max-width: 720px;
  margin: 0 auto 16px;
  font-size: 2rem;
}

.page-hero p {
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.02rem;
}

/* Article Content */
.article-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 60px 20px;
}

.article-content p {
  font-size: 1.02rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: var(--dark);
}

/* Child Articles Grid */
.children-section {
  background: var(--off-white);
  padding: 80px 20px;
}

.children-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.child-card {
  background: var(--bg);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all var(--transition);
}

.child-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.child-card .child-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.6;
  margin-bottom: 8px;
  display: block;
}

.child-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.child-card p {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.badge-soon {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray);
  background: var(--cream);
  padding: 4px 12px;
  border-radius: 20px;
}

/* Related Silos */
.related-silos {
  border-top: 1px solid rgba(0,0,0,0.06);
  padding: 48px 20px;
  text-align: center;
}

.related-silos h3 {
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.pill-list {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.pill {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--dark);
  background: var(--off-white);
  border: 1px solid rgba(0,0,0,0.08);
  padding: 8px 20px;
  border-radius: 50px;
  transition: all var(--transition);
}

.pill:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: var(--bg);
}

/* ========================================
   ARTICLE / BLOG
   ======================================== */
.silo-content__text {
  max-width: 780px;
  margin: 0 auto;
  padding: 60px 20px;
}

.silo-content__text p,
.silo-content__text li {
  font-size: 1.02rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.silo-content__text h2 {
  margin-top: 3rem;
  margin-bottom: 1rem;
}

.silo-content__text h3 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.silo-content__text ul,
.silo-content__text ol {
  padding-left: 24px;
  margin-bottom: 1.5rem;
}

.silo-content__text ul {
  list-style: disc;
}

.silo-content__text ol {
  list-style: decimal;
}

.silo-content__text li {
  margin-bottom: 0.4rem;
}

.article-hero-img {
  width: 100%;
  max-height: 450px;
  overflow: hidden;
  margin-bottom: 2.5rem;
  border-radius: var(--radius-lg);
}

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

.article-summary {
  background: var(--cream);
  color: var(--dark);
  border-left: 5px solid var(--gold);
  padding: 2rem;
  margin-bottom: 2.5rem;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  font-size: 0.95rem;
  line-height: 1.8;
  position: relative;
}

.article-summary::before {
  content: '\1F4A1';
  position: absolute;
  top: -15px;
  left: 20px;
  font-size: 1.5rem;
  background: var(--cream);
  padding: 0 0.3rem;
}

.article-summary strong {
  color: var(--gold);
}

.silo-content__text blockquote {
  border-left: 4px solid var(--gold);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--gray);
  background: var(--off-white);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.silo-content__text table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.9rem;
}

.silo-content__text table th {
  background: var(--dark);
  color: var(--white);
  padding: 0.75rem 1rem;
  text-align: left;
  font-weight: 600;
}

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

.silo-content__text table th {
  border: 1px solid rgba(0,0,0,0.15);
}

.silo-content__text table tr:hover {
  background: var(--off-white);
}

.silo-content__text table caption {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--dark);
  text-align: left;
}

.article-date {
  font-size: 0.85rem;
  color: var(--gray);
  margin-top: 0.5rem;
}

.article-related {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.article-related h3 {
  margin-bottom: 1rem;
}

/* --- Article Grid Layout (TOC + Content) --- */
.article-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 3rem;
  align-items: start;
}

.article-toc {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
  max-height: calc(100vh - var(--header-height) - 4rem);
  overflow-y: auto;
}

.article-toc__inner {
  padding: 1.5rem;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.article-toc__title {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark);
  display: block;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--gold);
}

.article-toc nav ol {
  padding-left: 0;
  counter-reset: toc;
  list-style: none;
  margin-bottom: 0;
}

.article-toc nav ol li {
  counter-increment: toc;
  margin-bottom: 0.6rem;
  list-style: none;
}

.article-toc nav ol li a {
  font-size: 0.8rem;
  color: var(--gray);
  line-height: 1.4;
  display: flex;
  gap: 0.5rem;
  transition: color var(--transition);
  text-decoration: none;
}

.article-toc nav ol li a::before {
  content: counter(toc, decimal-leading-zero);
  font-weight: 700;
  color: var(--gold);
  font-size: 0.75rem;
  flex-shrink: 0;
}

.article-toc nav ol li a:hover {
  color: var(--gold);
}

.article-toc nav ol li a.active {
  color: var(--dark);
  font-weight: 600;
}

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

.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  transition: all var(--transition);
}

.blog-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
  border-color: var(--gold);
}

.blog-card__img {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.blog-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.blog-card__body {
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card__tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.blog-card__title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.4rem;
  line-height: 1.35;
}

.blog-card__excerpt {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.55;
  margin: 0;
  flex: 1;
}

.blog-card__date {
  font-size: 0.75rem;
  color: var(--gray);
  margin-top: 0.8rem;
  opacity: 0.7;
}

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

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .silo-content__text table {
    font-size: 0.8rem;
  }
  .silo-content__text table th,
  .silo-content__text table td {
    padding: 0.5rem;
  }
  .article-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .article-toc {
    position: relative;
    top: 0;
    max-height: none;
  }
  .article-toc__inner {
    padding: 1rem;
  }
}

/* ========================================
   LEGAL / CONTENT PAGES
   ======================================== */
.legal-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 60px 20px;
}

.legal-content h2 {
  font-size: 1.4rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.legal-content h3 {
  font-size: 1.15rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.legal-content p,
.legal-content li {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--gray);
}

.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 1rem;
}

.legal-content li {
  margin-bottom: 0.4rem;
}

/* ========================================
   CONTACT FORM
   ======================================== */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 12px 16px;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--dark);
  transition: border-color var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

/* ========================================
   SITEMAP PAGE
   ======================================== */
.sitemap-list {
  list-style: none;
  padding: 0;
}

.sitemap-list > li {
  margin-bottom: 24px;
}

.sitemap-list > li > a {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
}

.sitemap-list > li > a:hover {
  color: var(--gold);
}

.sitemap-sublist {
  list-style: none;
  padding-left: 20px;
  margin-top: 8px;
}

.sitemap-sublist li {
  margin-bottom: 4px;
  font-size: 0.9rem;
  color: var(--gray);
}

.sitemap-sublist li a {
  color: var(--gray);
}

.sitemap-sublist li a:hover {
  color: var(--gold);
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 60px 20px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding-bottom: 48px;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-col p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

.footer-brand .logo {
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 12px;
  display: inline-block;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
}

.footer-bottom p {
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
}

.footer-bottom-links a:hover {
  color: var(--gold);
}

/* ========================================
   RESPONSIVE — Tablet (768px)
   ======================================== */
@media (min-width: 768px) {
  h1 { font-size: 2.6rem; }
  h2 { font-size: 2rem; }

  .hero {
    padding: 160px 20px 100px;
  }

  .hero-content h1 {
    font-size: 2.6rem;
  }

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

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

  .featured-grid .featured-card:last-child {
    grid-column: 1 / -1;
    max-width: 50%;
    justify-self: center;
  }

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

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

/* ========================================
   RESPONSIVE — Desktop (1024px)
   ======================================== */
@media (min-width: 1024px) {
  h1 { font-size: 3rem; }

  .hero-content h1 {
    font-size: 3rem;
  }

  .burger {
    display: none !important;
  }

  .nav-links {
    display: flex !important;
  }

  .silo-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .featured-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .featured-grid .featured-card:last-child {
    grid-column: auto;
    max-width: 100%;
    justify-self: auto;
  }

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

  .page-hero h1 {
    font-size: 2.5rem;
  }
}

/* ========================================
   MOBILE NAV
   ======================================== */
@media (max-width: 1023px) {
  .burger {
    display: flex;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg);
    flex-direction: column;
    padding: 32px 24px;
    gap: 20px;
    overflow-y: auto;
    border-top: 1px solid rgba(0,0,0,0.06);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    font-size: 1.05rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0,0,0,0.04);
  }
}
