/* ============================================
   Bienenzuchtverein Taufkirchen/Vils – 2025 Design
   ============================================ */

:root {
  --honey-50: #fffbeb;
  --honey-100: #fef3c7;
  --honey-200: #fde68a;
  --honey-300: #fcd34d;
  --honey-400: #fbbf24;
  --honey-500: #f59e0b;
  --honey-600: #d97706;
  --honey-700: #b45309;
  --honey-800: #92400e;
  --honey-900: #78350f;

  --forest-700: #1a3a2f;
  --forest-800: #142e25;
  --forest-900: #0d1f19;

  --neutral-50: #fafaf9;
  --neutral-100: #f5f5f4;
  --neutral-200: #e7e5e4;
  --neutral-400: #a8a29e;
  --neutral-600: #57534e;
  --neutral-800: #292524;

  --white: #ffffff;
  --shadow-sm: 0 1px 3px rgba(13, 31, 25, 0.06);
  --shadow-md: 0 8px 24px rgba(13, 31, 25, 0.08);
  --shadow-lg: 0 20px 48px rgba(13, 31, 25, 0.12);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 999px;

  --font-sans: "DM Sans", system-ui, sans-serif;
  --font-serif: "Fraunces", Georgia, serif;

  --header-height: 76px;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
}

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--neutral-800);
  background: var(--neutral-50);
  -webkit-font-smoothing: antialiased;
}

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

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

a:hover {
  color: var(--honey-600);
}

.container {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  padding: 0.75rem 1.25rem;
  background: var(--forest-900);
  color: var(--white);
  border-radius: var(--radius-sm);
}

.skip-link:focus {
  top: 1rem;
}

/* ---- Header ---- */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-height);
  background: var(--white);
  border-bottom: 1px solid rgba(13, 31, 25, 0.06);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--forest-900);
  text-decoration: none;
}

.brand img {
  width: 44px;
  height: auto;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-text strong {
  font-size: 0.95rem;
  font-weight: 600;
}

.brand-text small {
  font-size: 0.78rem;
  color: var(--neutral-600);
}

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

.site-nav a {
  padding: 0.5rem 0.85rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--neutral-800);
  border-radius: var(--radius-full);
  transition: background var(--transition), color var(--transition);
}

.site-nav a:hover {
  background: var(--honey-100);
  color: var(--honey-800);
}

.site-nav .nav-cta {
  background: var(--forest-900);
  color: var(--white);
  margin-left: 0.5rem;
}

.site-nav .nav-cta:hover {
  background: var(--forest-700);
  color: var(--white);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: var(--radius-sm);
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--forest-900);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---- Hero ---- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-height) + 3rem) 0 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(13, 31, 25, 0.88) 0%, rgba(26, 58, 47, 0.75) 45%, rgba(120, 53, 15, 0.55) 100%),
    url("assets/hero-bg.jpg") center/cover no-repeat;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(251, 191, 36, 0.15), transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  max-width: 720px;
}

.hero-eyebrow {
  display: inline-block;
  margin-bottom: 1.25rem;
  padding: 0.4rem 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-full);
  backdrop-filter: blur(8px);
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.hero-lead {
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 2rem;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.5rem;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--transition), background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--honey-400);
  color: var(--forest-900);
  box-shadow: 0 4px 20px rgba(251, 191, 36, 0.35);
}

.btn-primary:hover {
  background: var(--honey-300);
  color: var(--forest-900);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-full {
  width: 100%;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat-value {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
}

.stat-label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
}

/* ---- Sections ---- */

.section {
  padding: 5.5rem 0;
}

.section-alt {
  background: var(--white);
}

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

.section-header {
  max-width: 640px;
  margin-bottom: 3rem;
}

.section-header h2,
.split-content h2,
.contact-info h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--forest-900);
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--neutral-600);
  font-size: 1.05rem;
}

/* ---- Highlight ---- */

.highlight-section {
  padding-top: 0;
  margin-top: -3rem;
  position: relative;
  z-index: 2;
}

.highlight-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--neutral-200);
}

.highlight-badge {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.35rem 0.85rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--honey-800);
  background: var(--honey-100);
  border-radius: var(--radius-full);
}

.highlight-card h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--forest-900);
  margin-bottom: 0.5rem;
}

.highlight-date {
  font-weight: 600;
  color: var(--honey-700);
  margin-bottom: 1rem;
}

.text-link {
  display: inline-block;
  margin-top: 1rem;
  font-weight: 600;
}

/* ---- Split layout ---- */

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: start;
}

.split-content p {
  color: var(--neutral-600);
  margin-bottom: 1rem;
}

.feature-list {
  list-style: none;
  margin-top: 1.5rem;
}

.feature-list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  color: var(--neutral-800);
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--honey-600);
  font-weight: 700;
}

.split-visual {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.visual-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  border: 1px solid var(--neutral-200);
  box-shadow: var(--shadow-sm);
}

.visual-card.accent {
  background: linear-gradient(135deg, var(--honey-100), var(--honey-50));
  border-color: var(--honey-200);
}

.visual-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.visual-card h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--forest-900);
  margin-bottom: 0.5rem;
}

.visual-card p {
  font-size: 0.95rem;
  color: var(--neutral-600);
}

/* ---- Benefits ---- */

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.benefit-card {
  background: var(--neutral-50);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.benefit-number {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--honey-300);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.benefit-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--forest-900);
  margin-bottom: 0.5rem;
}

.benefit-card p {
  font-size: 0.95rem;
  color: var(--neutral-600);
}

.cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem 2.5rem;
  background: linear-gradient(135deg, var(--forest-900), var(--forest-700));
  border-radius: var(--radius-lg);
  color: var(--white);
}

.cta-banner h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin-bottom: 0.35rem;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
}

.cta-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cta-banner .btn-secondary {
  border-color: rgba(255, 255, 255, 0.3);
}

/* ---- Timeline ---- */

.timeline {
  --timeline-date-width: 9.5rem;
  --timeline-x: calc(var(--timeline-date-width) + 1rem);
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: calc(var(--timeline-x) - 1px);
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--honey-300), var(--neutral-200));
}

.timeline-item {
  display: grid;
  grid-template-columns: var(--timeline-date-width) 1fr;
  gap: 1.75rem;
  padding: 1.5rem 0;
  position: relative;
}

.timeline-item time {
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--forest-800);
  font-variant-numeric: tabular-nums;
  text-align: left;
  padding-top: 0.15rem;
  padding-right: 0.5rem;
  position: relative;
}

.timeline-item time::after {
  content: "";
  position: absolute;
  left: calc(var(--timeline-x) - 6px);
  top: 0.45rem;
  width: 12px;
  height: 12px;
  background: var(--white);
  border: 3px solid var(--honey-400);
  border-radius: 50%;
  z-index: 1;
}

.timeline-item > div {
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  transition: box-shadow var(--transition);
}

.timeline-item:hover > div {
  box-shadow: var(--shadow-md);
}

.timeline-item.featured > div {
  border-color: var(--honey-300);
  background: linear-gradient(to right, var(--honey-50), var(--white));
}

.timeline-item.muted > div {
  opacity: 0.65;
}

.timeline-item h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--forest-900);
  margin-bottom: 0.35rem;
}

.timeline-item p {
  font-size: 0.92rem;
  color: var(--neutral-600);
}

/* ---- News ---- */

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

.news-card {
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: transform var(--transition), box-shadow var(--transition);
}

.news-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.news-tag {
  display: inline-block;
  margin-bottom: 0.75rem;
  padding: 0.25rem 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--forest-700);
  background: var(--neutral-100);
  border-radius: var(--radius-full);
}

.news-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--forest-900);
  margin-bottom: 0.5rem;
  line-height: 1.35;
}

.news-card p {
  font-size: 0.92rem;
  color: var(--neutral-600);
}

/* ---- Downloads ---- */

.download-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.download-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem 1.75rem;
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-md);
  color: inherit;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.download-card:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
  border-color: var(--honey-300);
  color: inherit;
}

.download-icon {
  font-size: 1.75rem;
  flex-shrink: 0;
}

.download-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--forest-900);
  margin-bottom: 0.25rem;
}

.download-card p {
  font-size: 0.9rem;
  color: var(--neutral-600);
}

.download-arrow {
  margin-left: auto;
  font-size: 1.25rem;
  color: var(--honey-600);
  flex-shrink: 0;
}

/* ---- Contact ---- */

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

.contact-info p {
  color: var(--neutral-600);
  margin-bottom: 2rem;
}

address {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.contact-item strong {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--honey-700);
  margin-bottom: 0.25rem;
}

.contact-item span,
.contact-item a {
  color: var(--neutral-800);
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.form-row {
  margin-bottom: 1.25rem;
}

.form-row label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--forest-900);
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: inherit;
  font-size: 1rem;
  color: var(--neutral-800);
  background: var(--neutral-50);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--honey-400);
  box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.2);
}

.form-row textarea {
  resize: vertical;
  min-height: 120px;
}

.form-note {
  font-size: 0.82rem;
  color: var(--neutral-400);
  margin-bottom: 1.25rem;
}


.form-status {
  margin-bottom: 1.25rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 600;
}

.form-status--success {
  color: var(--forest-900);
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.35);
}

.form-status--error {
  color: #991b1b;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
}

/* ---- Legal pages ---- */

.legal-page {
  padding: calc(var(--header-height) + 3rem) 0 5rem;
}

.legal-content {
  max-width: 720px;
}

.legal-content h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--forest-900);
  margin-bottom: 1.5rem;
}

.legal-intro {
  font-size: 1.05rem;
  color: var(--neutral-600);
  margin-bottom: 2.5rem;
}

.legal-section {
  margin-bottom: 2rem;
}

.legal-section h2 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--forest-900);
  margin-bottom: 0.75rem;
}

.legal-section p,
.legal-section li {
  color: var(--neutral-600);
  line-height: 1.75;
}

.legal-section p + p {
  margin-top: 0.75rem;
}

.legal-section ul {
  margin: 0.75rem 0 0 1.25rem;
}

.legal-section li + li {
  margin-top: 0.35rem;
}

.legal-contact {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--neutral-200);
  font-size: 0.95rem;
  color: var(--neutral-600);
}

.legal-source {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--neutral-200);
  font-size: 0.88rem;
  color: var(--neutral-400);
}

.legal-source a {
  color: var(--neutral-600);
}

.footer-nav a[aria-current="page"] {
  color: var(--honey-300);
}

/* ---- Footer ---- */

.site-footer {
  background: var(--forest-900);
  color: rgba(255, 255, 255, 0.75);
  padding: 3rem 0 2rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.footer-brand strong {
  display: block;
  color: var(--white);
  font-size: 0.95rem;
}

.footer-brand span {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer-nav {
  display: flex;
  gap: 1.5rem;
}

.footer-nav a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
}

.footer-nav a:hover {
  color: var(--honey-300);
}

.footer-legal {
  padding-top: 2rem;
}

.footer-legal h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-legal p {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.footer-legal a {
  color: var(--honey-300);
}

.footer-copy {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ---- Animations ---- */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Responsive ---- */

@media (max-width: 960px) {
  .split,
  .benefits-grid,
  .news-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .split {
    gap: 2rem;
  }

  .cta-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .timeline {
    --timeline-date-width: 6.75rem;
    --timeline-x: calc(var(--timeline-date-width) + 0.75rem);
  }

  .timeline-item {
    gap: 1.25rem;
  }

  .timeline-item time {
    font-size: 0.85rem;
  }
}

@media (max-width: 640px) {
  .timeline {
    --timeline-x: 1.125rem;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 0.65rem;
    padding-left: 2.75rem;
  }

  .timeline-item time {
    display: inline-block;
    width: fit-content;
    max-width: 100%;
    font-size: 0.82rem;
    padding: 0.3rem 0.7rem;
    background: var(--honey-100);
    color: var(--honey-900);
    border-radius: var(--radius-full);
  }

  .timeline-item time::after {
    top: 0.55rem;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem 1.5rem;
    background: var(--white);
    border-bottom: 1px solid var(--neutral-200);
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--transition), opacity var(--transition);
  }

  .site-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 0.85rem 1rem;
  }

  .site-nav .nav-cta {
    margin-left: 0;
    text-align: center;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .highlight-card {
    padding: 1.75rem;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .section {
    padding: 4rem 0;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .cta-banner-actions {
    width: 100%;
    flex-direction: column;
  }

  .cta-banner-actions .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .btn:hover,
  .benefit-card:hover,
  .news-card:hover,
  .download-card:hover {
    transform: none;
  }
}