/* ============================================
   Science of Spirituality UK — Design System
   Aligned with sos.org: Antic Didone headings,
   Nunito body, warm palette, generous whitespace
   ============================================ */

:root {
  --primary: #2C3E6B;
  --primary-light: #3D5A99;
  --primary-dark: #1A2744;
  --accent: #C9A84C;
  --accent-light: #D4BA6A;
  --accent-warm: #E1B93B;
  --warm-bg: #FAF8F5;
  --warm-bg-alt: #F0EBE1;
  --warm-tan: #DCCDBD;
  --white: #FFFFFF;
  --light-border: #E8E3DA;
  --text: #3A3A3A;
  --text-light: #6B6B6B;
  --text-muted: #767676;
  --radius: 8px;
  --transition: 0.3s ease;
  --max-width: 1140px;
  --header-height: 70px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Nunito', 'Open Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent); }
ul { list-style: none; }

/* --- Typography (sos.org style: serif headings, sans body) --- */
h1, h2, h3, h4 {
  font-family: 'Antic Didone', 'Georgia', serif;
  font-weight: 400;
  line-height: 1.3;
  color: var(--primary-dark);
  letter-spacing: 0.01em;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.7rem, 4vw, 2.4rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.15rem, 3vw, 1.4rem); font-family: 'Nunito', sans-serif; font-weight: 700; }
p { margin-bottom: 1rem; }
.section-subtitle {
  color: var(--text-light);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

/* --- Layout --- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 2rem; }
.section { padding: 6rem 0; }
.section-alt { background: var(--warm-bg); }
.text-center { text-align: center; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }

/* --- Header (minimal, sos.org style) --- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--white);
  height: var(--header-height);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: 0 1px 8px rgba(0,0,0,0.06); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-height); max-width: var(--max-width);
  margin: 0 auto; padding: 0 2rem;
}
.nav-brand {
  display: flex; align-items: center; gap: 0.6rem;
  font-family: 'Antic Didone', serif; font-size: 1.05rem;
  color: var(--primary-dark); letter-spacing: 0.02em;
}
.nav-links { display: flex; gap: 0.15rem; align-items: center; }
.nav-links a {
  padding: 0.5rem 0.85rem; border-radius: 4px;
  font-size: 0.85rem; font-weight: 600; color: var(--text-light);
  transition: all var(--transition); letter-spacing: 0.02em;
  text-transform: uppercase;
}
.nav-links a:hover, .nav-links a.active { color: var(--primary-dark); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.nav-toggle span {
  display: block; width: 22px; height: 1.5px; background: var(--text);
  margin: 5px 0; transition: all var(--transition);
}

/* --- Hero (sos.org: full-width photo, subtle overlay, centered text) --- */
.hero {
  min-height: 80vh; display: flex; align-items: center; justify-content: center;
  text-align: center; position: relative; overflow: hidden;
  background: linear-gradient(to bottom, rgba(26,39,68,0.55), rgba(26,39,68,0.65)),
              url('../images/gathering.webp') center/cover no-repeat;
  margin-top: var(--header-height);
}
.hero-content { position: relative; z-index: 1; padding: 2rem; max-width: 720px; }
.hero h1 { color: var(--white); margin-bottom: 1.2rem; font-size: clamp(2.4rem, 6vw, 3.6rem); }
.hero p { color: rgba(255,255,255,0.85); font-size: 1.15rem; margin-bottom: 2.5rem; line-height: 1.8; }
.hero-badge {
  display: inline-block; padding: 0.35rem 1.2rem; border-radius: 50px;
  background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.8);
  font-size: 0.8rem; margin-bottom: 1.8rem; letter-spacing: 0.08em;
  text-transform: uppercase; border: 1px solid rgba(255,255,255,0.15);
}

/* --- Page Hero (inner pages) --- */
.page-hero {
  padding: 8rem 0 4rem; text-align: center;
  background: linear-gradient(to bottom, var(--primary-dark), var(--primary));
  margin-top: var(--header-height); color: var(--white);
}
.page-hero h1 { color: var(--white); margin-bottom: 0.6rem; }
.page-hero p { color: rgba(255,255,255,0.75); font-size: 1.05rem; max-width: 550px; margin: 0 auto; }

/* --- Buttons (sos.org: understated, warm) --- */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 2rem; border-radius: 4px;
  font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 0.85rem;
  cursor: pointer; transition: all var(--transition);
  border: 2px solid transparent; letter-spacing: 0.06em; text-transform: uppercase;
}
.btn-primary { background: var(--accent); color: var(--primary-dark); border-color: var(--accent); }
.btn-primary:hover { background: var(--accent-light); color: var(--white); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.35); }
.btn-outline:hover { background: rgba(255,255,255,0.08); color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn-secondary { background: var(--primary); color: var(--white); }
.btn-secondary:hover { background: var(--primary-light); color: var(--white); }
.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* --- Cards (sos.org: flat, minimal, no heavy borders) --- */
.card {
  background: var(--white); border-radius: var(--radius);
  padding: 2.5rem 2rem; transition: all var(--transition);
  border: 1px solid transparent;
}
.section-alt .card { background: var(--white); border: 1px solid var(--light-border); }
.card:hover { border-color: var(--light-border); box-shadow: 0 4px 20px rgba(0,0,0,0.04); }
.card h3 { margin-bottom: 0.75rem; }
.card p { color: var(--text-light); font-size: 0.95rem; margin-bottom: 0; }

/* --- Icons --- */
.icon-circle {
  width: 48px; height: 48px; border-radius: 50%; margin-bottom: 1.25rem;
  display: flex; align-items: center; justify-content: center;
  background: var(--warm-bg-alt);
}
.icon-circle svg { width: 22px; height: 22px; stroke: var(--primary); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }

/* --- Content Blocks --- */
.content-block { margin-bottom: 2.5rem; }
.content-block h2 { margin-bottom: 1.2rem; }
.content-block ul { padding-left: 0; margin: 1rem 0; }
.content-block ul li {
  padding: 0.4rem 0 0.4rem 1.5rem; position: relative;
  color: var(--text); font-size: 0.95rem;
}
.content-block ul li::before {
  content: '—'; position: absolute; left: 0; color: var(--accent); font-weight: 700;
}

/* --- Info Box (warm, subtle) --- */
.info-box {
  background: var(--warm-bg);
  border-left: 3px solid var(--accent); padding: 1.5rem 2rem;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.info-box p { margin-bottom: 0.5rem; }
.info-box p:last-child { margin-bottom: 0; }

/* --- Schedule Table --- */
.schedule-table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; }
.schedule-table th {
  background: var(--primary-dark); color: var(--white);
  padding: 0.9rem 1rem; text-align: left; font-weight: 600; font-size: 0.85rem;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.schedule-table td { padding: 0.8rem 1rem; border-bottom: 1px solid var(--light-border); font-size: 0.95rem; }
.schedule-table tr:hover td { background: var(--warm-bg); }
.schedule-table .month-header { background: var(--warm-bg-alt); font-weight: 700; color: var(--primary-dark); }
.tag-video {
  display: inline-block; padding: 0.15rem 0.5rem; border-radius: 3px;
  background: rgba(201,168,76,0.15); color: var(--accent); font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.04em;
}
.tag-reading {
  display: inline-block; padding: 0.15rem 0.5rem; border-radius: 3px;
  background: rgba(44,62,107,0.08); color: var(--primary); font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.04em;
}

/* --- Centre Cards --- */
.centre-card {
  background: var(--white); border-radius: var(--radius);
  padding: 2rem; border: 1px solid var(--light-border);
  transition: all var(--transition);
}
.centre-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.04); }
.centre-card h3 { color: var(--primary-dark); margin-bottom: 0.5rem; }
.centre-card .centre-meta { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 0.04em; }
.centre-card .centre-detail { display: flex; align-items: flex-start; gap: 0.6rem; margin-bottom: 0.5rem; font-size: 0.95rem; }
.centre-card .centre-detail .icon { color: var(--accent); flex-shrink: 0; margin-top: 0.2rem; }

/* --- Video Embed --- */
.video-embed {
  position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden;
  border-radius: var(--radius); margin: 1rem 0;
}
.video-embed iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }

/* --- Images --- */
.img-rounded { border-radius: var(--radius); }
.img-cover { width: 100%; height: 280px; object-fit: cover; border-radius: var(--radius); }

/* --- Book Grid --- */
.book-card { text-align: center; }
.book-card img { width: 120px; height: auto; margin: 0 auto 1rem; border-radius: 4px; }

/* --- Contact Form --- */
.contact-form { max-width: 600px; margin: 0 auto; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-weight: 700; margin-bottom: 0.4rem; font-size: 0.85rem; color: var(--primary-dark); text-transform: uppercase; letter-spacing: 0.04em; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 0.75rem 1rem; border: 1px solid var(--light-border);
  border-radius: 4px; font-family: inherit; font-size: 0.95rem;
  transition: border-color var(--transition); background: var(--white);
}
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--primary); }
.form-group textarea { resize: vertical; min-height: 120px; }

/* --- Footer (sos.org: dark, clean) --- */
.site-footer { background: var(--primary-dark); color: rgba(255,255,255,0.6); padding: 5rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; margin-top: 0.75rem; }
.site-footer h3 {
  color: var(--white); font-family: 'Nunito', sans-serif; font-size: 0.8rem;
  margin-bottom: 1.2rem; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700;
}
.site-footer ul li { margin-bottom: 0.6rem; }
.site-footer ul li a { color: rgba(255,255,255,0.55); font-size: 0.9rem; }
.site-footer ul li a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 0; text-align: center; font-size: 0.82rem;
}
.footer-bottom a { color: var(--accent); }
.social-icon {
  width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center; transition: background var(--transition);
}
.social-icon:hover { background: rgba(255,255,255,0.2); }

/* --- Skip Link --- */
.skip-link {
  position: absolute; top: -100%; left: 1rem; z-index: 9999;
  background: var(--primary); color: var(--white); padding: 0.75rem 1.5rem;
  border-radius: 4px; font-weight: 600;
}
.skip-link:focus { top: 1rem; }

/* --- Responsive --- */
@media (max-width: 968px) {
  .grid-2 { grid-template-columns: 1fr; gap: 2.5rem; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute;
    top: var(--header-height); left: 0; right: 0;
    background: var(--white); padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--light-border);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  }
  .nav-toggle { display: block; }
}
@media (max-width: 600px) {
  .grid-3 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 4rem 0; }
  .hero { min-height: 70vh; }
}

/* --- Spiritual Insight Quote (sos.org style) --- */
.quote-section {
  background: linear-gradient(90deg, #043a5b 0%, #313a7d 41%, #1c377d 63%, #043a5b 100%);
  padding: 5rem 2rem; text-align: center; color: var(--white);
}
.quote-section blockquote {
  font-family: 'Antic Didone', serif; font-size: clamp(1.3rem, 3vw, 1.8rem);
  line-height: 1.7; max-width: 800px; margin: 0 auto 1.5rem; font-style: italic;
  color: rgba(255,255,255,0.92);
}
.quote-section cite {
  font-family: 'Nunito', sans-serif; font-style: normal; font-size: 0.9rem;
  color: var(--accent); letter-spacing: 0.06em; text-transform: uppercase; font-weight: 700;
}

/* --- Spiritual Insights (sos.org: featured article + sidebar cards) --- */
.insights-section {
  background: var(--warm-tan); padding: 5rem 0;
  background-image: url('https://www.sos.org/wp-content/uploads/2020/07/gplaypattern.png');
  background-repeat: repeat;
}
.insights-section h2 { text-align: left; margin-bottom: 0.3rem; }
.insights-section > .container > p { text-align: left; color: var(--text-light); margin-bottom: 2rem; }
.insights-layout { display: grid; grid-template-columns: 1.1fr 1fr; gap: 2rem; align-items: start; }
.insights-featured { background: var(--white); border-radius: var(--radius); overflow: hidden; }
.insights-featured img { width: 100%; height: 320px; object-fit: cover; border: 6px solid var(--accent); border-bottom: none; }
.insights-featured-body { padding: 2rem; }
.insights-featured-body h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }
.insights-featured-body p { color: var(--text-light); font-size: 0.95rem; margin-bottom: 1.5rem; }
.insights-list { display: flex; flex-direction: column; gap: 0.75rem; }
.insights-list a {
  display: flex; align-items: center; gap: 1rem; padding: 0.6rem;
  background: var(--white); border-radius: var(--radius); text-decoration: none;
  border-top: 3px solid var(--accent); transition: all var(--transition);
}
.insights-list a:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.insights-list a img { width: 90px; height: 70px; object-fit: cover; border-radius: 4px; flex-shrink: 0; }
.insights-list .il-text { flex: 1; }
.insights-list .il-text h4 { font-family: 'Antic Didone', serif; font-weight: 400; font-size: 1rem; margin-bottom: 0.15rem; color: var(--primary-dark); }
.insights-list .il-text p { font-size: 0.8rem; color: var(--text-muted); margin: 0; }
.insights-list .il-arrow {
  width: 36px; height: 36px; border-radius: 50%; background: var(--primary-dark);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.insights-list .il-arrow svg { width: 16px; height: 16px; stroke: var(--white); fill: none; stroke-width: 2; }

/* --- Featured Videos (sos.org: 3-col grid, video + title + description) --- */
.featured-videos-section {
  background: var(--warm-tan); padding: 5rem 0;
  background-image: url('https://www.sos.org/wp-content/uploads/2020/07/gplaypattern.png');
  background-repeat: repeat;
}
.featured-videos-section h2 { text-align: left; margin-bottom: 2rem; }
.featured-videos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.fv-item .video-embed { margin-bottom: 1rem; border-radius: var(--radius); }
.fv-item h3 { font-family: 'Antic Didone', serif; font-weight: 400; font-size: 1.15rem; margin-bottom: 0.5rem; }
.fv-item p { font-size: 0.9rem; color: var(--text-light); line-height: 1.6; }

/* --- Featured Books (static grid, large covers on cream cards) --- */
.books-section {
  background: var(--warm-tan); padding: 5rem 0;
  background-image: url('https://www.sos.org/wp-content/uploads/2020/07/gplaypattern.png');
  background-repeat: repeat;
}
.books-section h2 { text-align: left; margin-bottom: 2rem; }
.book-showcase { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.5rem; }
.book-item {
  background: var(--warm-bg); border-radius: var(--radius); padding: 1.5rem; text-align: center;
}
.book-item img {
  width: 100%; height: auto; margin: 0 auto;
  border: 6px solid var(--white); box-shadow: 0 2px 12px rgba(0,0,0,0.1); border-radius: 4px;
}
@media (max-width: 968px) { .book-showcase { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .book-showcase { grid-template-columns: repeat(2, 1fr); } }

@media (max-width: 968px) {
  .insights-layout { grid-template-columns: 1fr; }
  .featured-videos-grid { grid-template-columns: 1fr; }
  .books-carousel .book-slide { flex: 0 0 calc(50% - 1rem); }
}
@media (max-width: 600px) {
  .books-carousel .book-slide { flex: 0 0 100%; }
}

/* --- Articles Grid (sos.org style) --- */
.articles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
.article-card { text-decoration: none; color: inherit; display: block; transition: all var(--transition); }
.article-card:hover { transform: translateY(-3px); }
.article-card:hover h3 { color: var(--accent); }
.article-card img { width: 100%; height: 200px; object-fit: cover; border-radius: var(--radius); margin-bottom: 1rem; }
.article-card h3 { font-family: 'Antic Didone', serif; font-size: 1.1rem; font-weight: 400; margin-bottom: 0.5rem; transition: color var(--transition); }
.article-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.6; }

/* --- Programs Banner (sos.org gold bar) --- */
.programs-banner {
  background: var(--accent); padding: 2.5rem 0; text-align: center;
}
.programs-banner h2 { color: var(--white); margin-bottom: 0.5rem; }
.programs-banner p { color: rgba(255,255,255,0.85); margin-bottom: 1.5rem; }
.programs-banner .btn { background: var(--white); color: var(--primary-dark); border-color: var(--white); }
.programs-banner .btn:hover { background: var(--warm-bg); }

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

/* --- Hero Slider --- */
.hero-slider { position: relative; margin-top: var(--header-height); overflow: hidden; }
.hero-slider .slides { display: flex; transition: transform 0.6s ease; }
.hero-slider .slide {
  min-width: 100%; min-height: 550px; display: flex; align-items: center;
  justify-content: flex-start; background-size: cover; background-position: center;
  position: relative;
}
.hero-slider .slide-content {
  position: relative; z-index: 1; max-width: 480px; padding: 3rem 4rem;
  color: var(--white);
}
.hero-slider .slide-content h2 { color: var(--white); font-size: clamp(1.6rem, 4vw, 2.4rem); margin-bottom: 0.75rem; }
.hero-slider .slide-content p { color: rgba(255,255,255,0.85); font-size: 1rem; margin-bottom: 1.5rem; }
.slide-cta {
  position: absolute; bottom: 2.5rem; left: 4rem; z-index: 2;
}
.slider-dots {
  position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  display: flex; gap: 0.5rem; z-index: 2;
}
.slider-dots button {
  width: 10px; height: 10px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.6);
  background: transparent; cursor: pointer; padding: 0; transition: all var(--transition);
}
.slider-dots button.active { background: var(--white); border-color: var(--white); }

/* --- Inspirations (sos.org: video + sidebar playlist on parchment bg) --- */
.inspirations-section {
  background: var(--warm-tan); padding: 5rem 0;
  background-image: url('https://www.sos.org/wp-content/uploads/2020/07/gplaypattern.png');
  background-repeat: repeat; background-size: initial;
}
.inspirations-section h2 { text-align: left; margin-bottom: 0.4rem; }
.inspirations-section .section-subtitle { text-align: left; margin: 0 0 2rem; max-width: none; }
.inspirations-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 0; }
.inspirations-player .video-embed { margin: 0; border-radius: 0; }
.inspirations-playlist { display: flex; flex-direction: column; }
.inspirations-playlist a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 1.2rem; text-decoration: none;
  font-family: 'Antic Didone', serif; font-size: 1.05rem;
  color: var(--accent); background: rgba(255,255,255,0.6);
  border-bottom: 1px solid rgba(0,0,0,0.05); transition: all var(--transition);
  gap: 0.75rem; cursor: pointer;
}
.inspirations-playlist a:hover { background: rgba(255,255,255,0.85); }
.inspirations-playlist a.active { background: var(--accent); color: var(--white); }
.inspirations-playlist a.active svg { stroke: var(--white); }
.inspirations-playlist .pl-arrow { font-size: 0.85rem; flex-shrink: 0; }
.inspirations-playlist .pl-title { flex: 1; }
.inspirations-playlist .pl-icon { flex-shrink: 0; }
.inspirations-playlist .pl-icon svg { width: 20px; height: 20px; stroke: var(--accent); fill: none; stroke-width: 1.5; }

@media (max-width: 968px) {
  .inspirations-layout { grid-template-columns: 1fr; }
  .inspirations-playlist { flex-direction: row; flex-wrap: wrap; }
  .inspirations-playlist a { flex: 1 1 auto; font-size: 0.9rem; padding: 0.8rem 1rem; }
}

/* --- Book Showcase (sos.org style: image with white border, title below) --- */
.book-showcase { display: grid; grid-template-columns: repeat(5, 1fr); gap: 2rem; }
.book-item { text-align: center; }
.book-item img {
  width: 100%; max-width: 160px; height: auto; margin: 0 auto 1rem;
  border-radius: 6px; border: 5px solid var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}
.book-item h3 { font-family: 'Antic Didone', serif; font-size: 0.95rem; font-weight: 400; line-height: 1.4; }

@media (max-width: 968px) {
  .inspirations-grid { grid-template-columns: 1fr; }
  .book-showcase { grid-template-columns: repeat(3, 1fr); }
  .hero-slider .slide-content { padding: 2rem; }
}
@media (max-width: 600px) {
  .book-showcase { grid-template-columns: repeat(2, 1fr); }
  .hero-slider .slide { min-height: 50vh; }
}

/* --- Print --- */
@media print {
  .site-header, .site-footer, .nav-toggle, .btn { display: none; }
  body { font-size: 12pt; color: #000; }
  .hero, .page-hero { background: none; color: #000; min-height: auto; padding: 2rem 0; margin-top: 0; }
  .hero h1, .page-hero h1 { color: #000; }
}
