/* ==========================================================================
   Islandpferdegestüt Teichhof – Main Stylesheet
   ========================================================================== */

/* ---------- Custom Properties ---------- */
:root {
  --primary: #4A3728;
  --primary-light: #6B5344;
  --secondary: #8B7355;
  --accent: #C8956C;
  --accent-light: #E0B990;
  --green: #4A6741;
  --green-light: #6B8F62;
  --bg: #FAF7F4;
  --bg-alt: #F0EBE5;
  --text: #2D2A26;
  --text-light: #6B6560;
  --white: #FFFFFF;
  --border: #E0D8D0;
  --shadow: 0 4px 24px rgba(74, 55, 40, 0.10);
  --shadow-lg: 0 12px 48px rgba(74, 55, 40, 0.15);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.3s ease;
  --nav-height: 72px;
  --max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
  font-size: 16px;
}

body {
  font-family: 'Source Sans 3', 'Segoe UI', system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary); }
ul, ol { list-style: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--primary);
  line-height: 1.25;
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 3vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.15rem; font-weight: 600; }

p { margin-bottom: 1rem; }
.lead { font-size: 1.15rem; color: var(--text-light); }

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

.section { padding: 5rem 0; }
.section-alt { background: var(--bg-alt); }

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p { max-width: 640px; margin: 0 auto; color: var(--text-light); }

.section-header::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin: 1rem auto 0;
  border-radius: 2px;
}

.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.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; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.8rem;
  border-radius: var(--radius-sm);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-align: center;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
}

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

/* ---------- Navigation ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  transition: box-shadow var(--transition);
}
.navbar.scrolled {
  box-shadow: var(--shadow);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  flex-shrink: 0;
}
.nav-brand:hover { color: var(--primary); }

.nav-brand svg,
.nav-brand .nav-brand-logo {
  width: 40px;
  height: 40px;
  fill: var(--accent);
  object-fit: contain;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links a {
  padding: 0.5rem 0.85rem;
  color: var(--text);
  font-weight: 500;
  font-size: 0.92rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--accent);
  background: rgba(200, 149, 108, 0.08);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1001;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--primary);
  border-radius: 2px;
  transition: all var(--transition);
}

/* Mobile Nav */
@media (max-width: 960px) {
  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 5rem 1.5rem 2rem;
    gap: 0;
    box-shadow: var(--shadow-lg);
    transition: right var(--transition);
  }
  .nav-links.open { right: 0; }

  .nav-links a {
    padding: 0.9rem 1rem;
    font-size: 1.05rem;
    border-bottom: 1px solid var(--border);
  }

  .nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
}

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 999;
}
.nav-overlay.show { display: block; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-height) + 2rem) 1.5rem 4rem;
  overflow: hidden;
  background:
    linear-gradient(165deg,
      rgba(74, 55, 40, 0.75) 0%,
      rgba(74, 55, 40, 0.55) 50%,
      rgba(74, 55, 40, 0.75) 100%
    ),
    url('../img/hero-portrait.jpg') center/cover no-repeat,
    linear-gradient(to bottom, #5B7553 0%, #8B7355 50%, #C8956C 100%);
  color: var(--white);
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 20% 80%, rgba(200, 149, 108, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(107, 143, 98, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero-content h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 6vw, 4rem);
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.hero-content .lead {
  color: rgba(255,255,255,0.9);
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  padding: 0.4rem 1.2rem;
  border-radius: 99px;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255,255,255,0.2);
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
  color: rgba(255,255,255,0.6);
}
.hero-scroll svg { width: 28px; height: 28px; }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
  padding: calc(var(--nav-height) + 3rem) 0 3rem;
  background:
    linear-gradient(165deg,
      rgba(74, 55, 40, 0.85) 0%,
      rgba(74, 55, 40, 0.7) 100%
    ),
    url('../img/hero-portrait.jpg') center/cover no-repeat,
    var(--primary);
  color: var(--white);
  text-align: center;
}
.page-hero h1 {
  color: var(--white);
  margin-bottom: 0.5rem;
}
.page-hero .lead {
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  margin: 0 auto;
}

/* ---------- Cards ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  background: var(--bg-alt);
  display: block;
}

.card-body {
  padding: 1.75rem;
}
.card-body h3 { margin-bottom: 0.5rem; }
.card-body .card-subtitle {
  font-style: italic;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.card-body p { color: var(--text-light); }

/* ---------- Features / Icon Grid ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.feature-item {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}
.feature-item:hover { transform: translateY(-3px); }

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200, 149, 108, 0.12);
  border-radius: 50%;
  color: var(--accent);
}
.feature-icon svg { width: 28px; height: 28px; stroke: currentColor; fill: none; stroke-width: 2; }

.feature-item h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}
.feature-item p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* ---------- Price Tables ---------- */
.price-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin: 1.5rem 0;
}

.price-table thead th {
  background: var(--primary);
  color: var(--white);
  padding: 1rem 1.25rem;
  text-align: left;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 1rem;
}

.price-table tbody td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
}

.price-table tbody tr:last-child td { border-bottom: none; }

.price-table tbody tr:hover { background: var(--bg-alt); }

.price-highlight {
  font-weight: 700;
  color: var(--accent);
  font-size: 1.1rem;
}

/* ---------- Timeline / Achievements ---------- */
.timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

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

.timeline-item {
  position: relative;
  padding: 0 0 2rem 2rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -5px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid var(--white);
}

.timeline-year {
  font-weight: 700;
  color: var(--accent);
  font-size: 0.9rem;
  letter-spacing: 0.03em;
}
.timeline-text {
  color: var(--text-light);
  margin-top: 0.25rem;
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  background:
    linear-gradient(135deg,
      rgba(74, 103, 65, 0.9) 0%,
      rgba(74, 55, 40, 0.9) 100%
    );
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
}
.cta-banner h2 {
  color: var(--white);
  margin-bottom: 0.75rem;
}
.cta-banner p {
  color: rgba(255,255,255,0.85);
  max-width: 560px;
  margin: 0 auto 1.5rem;
}

/* ---------- Two-Column Layout ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.two-col-text h2 { margin-bottom: 1rem; }
.two-col-text p { color: var(--text-light); }

.two-col-media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 320px;
  background: var(--bg-alt);
}

.two-col-media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .two-col {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .two-col-media { min-height: 240px; }
}

/* ---------- Info Boxes ---------- */
.info-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--accent);
}

.info-box h3 {
  margin-bottom: 0.5rem;
  font-size: 1.15rem;
}

.info-box p {
  color: var(--text-light);
  margin-bottom: 0.5rem;
}
.info-box p:last-child { margin-bottom: 0; }

/* ---------- Checklist ---------- */
.checklist {
  list-style: none;
}

.checklist li {
  position: relative;
  padding: 0.5rem 0 0.5rem 2rem;
  color: var(--text);
}

.checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(74, 103, 65, 0.1);
  color: var(--green);
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 700;
}

/* ---------- Contact Form ---------- */
.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--primary);
  font-size: 0.95rem;
}

.form-group input:not([type="checkbox"]):not([type="radio"]),
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(200, 149, 108, 0.15);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
}

.form-note {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 0.5rem;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-weight: 400;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text);
  cursor: pointer;
  margin-bottom: 0;
}
.form-consent input[type="checkbox"] {
  width: 1.1rem;
  height: 1.1rem;
  margin: 0.2rem 0 0 0;
  flex-shrink: 0;
  accent-color: var(--accent);
  cursor: pointer;
}
.form-consent span { flex: 1; min-width: 0; }

.alert {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.alert-success {
  background: rgba(74, 103, 65, 0.1);
  color: var(--green);
  border: 1px solid rgba(74, 103, 65, 0.2);
}
.alert-error {
  background: rgba(180, 60, 60, 0.1);
  color: #9B2C2C;
  border: 1px solid rgba(180, 60, 60, 0.2);
}

/* ---------- Map (2-Klick DSGVO-konform) ---------- */
.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 400px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.map-consent {
  height: 400px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--bg-alt);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  gap: 1rem;
}

.map-consent svg {
  width: 48px;
  height: 48px;
  stroke: var(--secondary);
  fill: none;
  stroke-width: 1.5;
}

.map-consent p {
  max-width: 480px;
  color: var(--text-light);
  font-size: 0.95rem;
  margin: 0;
}

.map-consent .btn { margin-top: 0.5rem; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--primary);
  color: rgba(255,255,255,0.8);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-col h4 {
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.footer-col p,
.footer-col a {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  line-height: 1.8;
}
.footer-col a:hover { color: var(--accent-light); }

.footer-links a {
  display: block;
  padding: 0.2rem 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

/* ---------- Scroll Animations ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- News / Aktuelles ---------- */
.news-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  margin-bottom: 1.5rem;
}
.news-item .news-date {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  padding: 0.25rem 0.8rem;
  border-radius: 99px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.news-item h3 { margin-bottom: 0.5rem; }
.news-item p { color: var(--text-light); }

/* ---------- FAQ (Accordion, native details/summary) ---------- */
.faq {
  max-width: 760px;
  margin: 0 auto;
}

.faq details {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 1.25rem 3.25rem 1.25rem 1.5rem;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--primary);
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }

.faq summary::after {
  content: '+';
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.6rem;
  line-height: 1;
  color: var(--accent);
}
.faq details[open] summary::after { content: '\2212'; }

.faq summary:hover { color: var(--accent); }

.faq .faq-body {
  padding: 0 1.5rem 1.25rem;
}
.faq .faq-body p {
  color: var(--text-light);
  margin: 0;
}

/* ---------- Horse Detail ---------- */
.horse-profile {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 2.5rem;
}

.horse-profile-header {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 0;
}

.horse-profile-img {
  height: 100%;
  min-height: 280px;
  background: var(--bg-alt);
  overflow: hidden;
}

.horse-profile-img img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
}

.horse-profile-info {
  padding: 2rem;
}
.horse-profile-info h3 { font-size: 1.5rem; margin-bottom: 0.25rem; }
.horse-profile-info .horse-nickname {
  font-style: italic;
  color: var(--accent);
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.horse-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}
.horse-meta-item {
  background: var(--bg-alt);
  padding: 0.4rem 0.9rem;
  border-radius: 99px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-light);
}

.horse-profile-body {
  padding: 0 2rem 2rem;
  color: var(--text-light);
  line-height: 1.8;
}

@media (max-width: 768px) {
  .horse-profile-header {
    grid-template-columns: 1fr;
  }
  .horse-profile-img { min-height: 200px; }
}

/* ---------- Gestüt Stats ---------- */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-top: 0.35rem;
}

/* ---------- Responsive Adjustments ---------- */
@media (max-width: 768px) {
  .section { padding: 3.5rem 0; }
  .card-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .hero { min-height: 90vh; }
}

@media (max-width: 480px) {
  :root { --nav-height: 64px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .stats-row { grid-template-columns: 1fr; }
  .container { padding: 0 1rem; }
}

/* ---------- Print ---------- */
@media print {
  .navbar, .nav-overlay, .hero-scroll, .cta-banner { display: none; }
  .hero { min-height: auto; padding: 2rem; }
  body { font-size: 12pt; }
}
