/* ============================================================
   GAIA-Schamanismus — SunDragon
   Mobile-First CSS · Portal-Website-Builder Stack
   ============================================================ */

:root {
  /* Brand Colors */
  --primary:        #2D4A2D;
  --primary-dark:   #1A2E1A;
  --primary-light:  #4A7A4A;
  --accent:         #8B4513;
  --accent-dark:    #6B3410;
  --accent-rgb:     139,69,19;
  --bg:             #F5F0E8;
  --bg-soft:        #FAF7F0;
  --bg-dark:        #1A2E1A;
  --ink:            #2A2015;
  --ink-soft:       #4A3D2E;
  --muted:          #8A7D6A;
  --line:           #E5DDD0;
  --white:          #FFFFFF;
  --gold:           #C8A96E;

  /* Typography */
  --font-heading: "Cormorant Garamond", Georgia, serif;
  --font-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(42,32,21,0.06);
  --shadow-md: 0 6px 24px rgba(42,32,21,0.10);
  --shadow-lg: 0 20px 48px rgba(42,32,21,0.14);

  /* Radius */
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   24px;
  --radius-full: 999px;

  /* Layout */
  --max:  1180px;
  --pad:  1.25rem;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--accent); }
ul { list-style: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

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

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.2;
  color: var(--ink);
}
h1 { font-size: clamp(2rem, 6vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.6rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.7rem); }
h4 { font-size: 1.1rem; }
p  { color: var(--ink-soft); }

.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.6rem;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  border: 2px solid transparent;
  line-height: 1;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
  color: var(--white);
}
.btn-accent {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-accent:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-arrow::after {
  content: "→";
  font-style: normal;
}

/* ---- Sticky Banner ---- */
.top-banner {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.9);
  font-size: 0.8rem;
  font-weight: 500;
  text-align: center;
  padding: 0.5rem var(--pad);
  padding-right: 2.5rem;
  position: relative;
}
.top-banner a { color: var(--gold); text-decoration: underline; }
.top-banner-close {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  font-size: 1rem;
  padding: 0.25rem;
  line-height: 1;
}
.top-banner-close:hover { color: #fff; }

/* ---- Navigation ---- */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 var(--pad);
  max-width: var(--max);
  margin: 0 auto;
}
.nav-brand { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; }
.nav-brand-icon {
  width: 36px; height: 36px;
  background: var(--primary);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  flex-shrink: 0;
}
.nav-brand-text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.1;
}
.nav-brand-text span {
  display: none;
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}
.nav-links {
  display: none;
  gap: 1.75rem;
  align-items: center;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--primary); }
.nav-cta { display: none; }
.nav-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  color: var(--ink);
  display: flex; align-items: center;
}
.nav-toggle svg { pointer-events: none; }
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--line);
  padding: 1rem var(--pad) 1.5rem;
  gap: 0.5rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 0.6rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu .btn { margin-top: 0.75rem; width: 100%; justify-content: center; }

@media (min-width: 720px) {
  .nav-brand-text span { display: block; }
  .nav-cta { display: flex; }
  .nav-toggle { display: none; }
  .nav-links { display: flex; }
}

/* ---- Hero ---- */
.hero {
  position: relative;
  background: linear-gradient(160deg, var(--primary-dark) 0%, #2a3d1f 60%, #1a2e1a 100%);
  color: var(--white);
  padding: 3rem 0 2.5rem;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Ccircle cx='200' cy='200' r='150' fill='none' stroke='rgba(255,255,255,0.03)' stroke-width='60'/%3E%3Ccircle cx='200' cy='200' r='80' fill='none' stroke='rgba(255,255,255,0.04)' stroke-width='30'/%3E%3C/svg%3E") center/700px no-repeat;
  pointer-events: none;
}
.hero-inner {
  display: grid;
  gap: 2rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px; height: 1px;
  background: var(--gold);
}
.hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero h1 em {
  font-style: normal;
  color: var(--gold);
}
.hero-lead {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.82);
  margin-bottom: 2rem;
  max-width: 540px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}
.hero-image-wrap {
  position: relative;
}
.hero-image-wrap picture img {
  width: 100%;
  max-height: 380px;
  object-fit: cover;
  object-position: center 20%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.hero-badge {
  position: absolute;
  bottom: -0.75rem;
  left: 1rem;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 0.6rem 1rem;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink);
}
.hero-badge-icon {
  width: 32px; height: 32px;
  background: var(--primary);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1rem;
  flex-shrink: 0;
}

@media (min-width: 720px) {
  .hero { padding: 4rem 0 3.5rem; }
  .hero-inner { grid-template-columns: 1fr 1fr; }
  .hero-image-wrap picture img { max-height: 460px; }
}
@media (min-width: 1024px) {
  .hero { padding: 5rem 0 4rem; }
  .hero-inner { grid-template-columns: 1.1fr 0.9fr; gap: 4rem; }
}

/* ---- Trust Bar ---- */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding: 1rem 0;
}
.trust-bar-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: center;
  align-items: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink-soft);
}
.trust-item svg { color: var(--primary); flex-shrink: 0; }

/* ---- Sections ---- */
.section { padding: 3.5rem 0; }
.section-header {
  margin-bottom: 2.5rem;
  max-width: 640px;
}
.section-header.centered { margin: 0 auto 2.5rem; text-align: center; max-width: 640px; }
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p { font-size: 1.05rem; }
.section-alt { background: var(--bg-soft); }
.section-dark {
  background: var(--primary-dark);
  color: var(--white);
}
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,0.8); }
.section-dark .section-eyebrow { color: var(--gold); }

@media (min-width: 720px) {
  .section { padding: 5rem 0; }
}
@media (min-width: 1024px) {
  .section { padding: 6rem 0; }
}

/* ---- About Teaser ---- */
.about-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}
.about-image picture img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  object-position: center 20%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.about-content h2 { margin-bottom: 1rem; }
.about-content p { margin-bottom: 1rem; }
.about-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 1.5rem 0;
}
.about-fact {
  background: var(--bg-soft);
  border-radius: var(--radius-md);
  padding: 1rem;
  border-left: 3px solid var(--primary);
}
.about-fact strong {
  display: block;
  font-size: 1.4rem;
  font-family: var(--font-heading);
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.about-fact span { font-size: 0.8rem; color: var(--muted); }

@media (min-width: 720px) {
  .about-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
}
@media (min-width: 1024px) {
  .about-grid { grid-template-columns: 0.9fr 1.1fr; gap: 4rem; }
}

/* ---- Offerings Grid ---- */
.offerings-grid {
  display: grid;
  gap: 1.5rem;
}
.offering-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition: box-shadow 0.2s, transform 0.2s;
}
.offering-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.offering-icon {
  width: 48px; height: 48px;
  background: var(--primary);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}
.offering-icon.accent { background: var(--accent); }
.offering-card h3 { margin-bottom: 0.5rem; font-size: 1.2rem; }
.offering-card p { font-size: 0.92rem; margin-bottom: 1.25rem; }
.offering-price {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 1rem;
}
.offering-price strong { color: var(--primary); font-size: 1rem; }

@media (min-width: 720px) {
  .offerings-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .offerings-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ---- Cannabis Section ---- */
.cannabis-section {
  background: linear-gradient(135deg, #1a1a0a 0%, #2a2010 60%, #1a2e1a 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cannabis-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='600' height='600'%3E%3Ccircle cx='300' cy='300' r='200' fill='none' stroke='rgba(200,169,110,0.06)' stroke-width='80'/%3E%3C/svg%3E") right center/500px no-repeat;
  pointer-events: none;
}
.cannabis-inner {
  display: grid;
  gap: 2.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.cannabis-content h2 { color: var(--white); margin-bottom: 1rem; }
.cannabis-content h2 em { font-style: normal; color: var(--gold); }
.cannabis-content p { color: rgba(255,255,255,0.8); margin-bottom: 1rem; }
.cannabis-features {
  display: grid;
  gap: 0.75rem;
  margin: 1.5rem 0;
}
.cannabis-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.85);
}
.cannabis-feature-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 0.55rem;
  flex-shrink: 0;
}
.cannabis-cards {
  display: grid;
  gap: 1rem;
}
.cannabis-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 1.25rem;
}
.cannabis-card h4 { color: var(--gold); margin-bottom: 0.4rem; font-size: 1rem; }
.cannabis-card p { font-size: 0.85rem; color: rgba(255,255,255,0.75); margin: 0; }
.cannabis-card .price {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
}
.cannabis-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.5rem; }

@media (min-width: 720px) {
  .cannabis-inner { grid-template-columns: 1.1fr 0.9fr; gap: 3rem; }
  .cannabis-cards { grid-template-columns: 1fr; }
}

/* ---- Testimonials ---- */
.testimonials-grid {
  display: grid;
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--primary-light);
  opacity: 0.3;
  line-height: 1;
  position: absolute;
  top: 0.5rem;
  left: 1.25rem;
}
.testimonial-text {
  font-style: italic;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  padding-top: 1.5rem;
}
.testimonial-author {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--primary);
}
.testimonial-role {
  font-size: 0.8rem;
  color: var(--muted);
}
.stars {
  display: flex;
  gap: 0.2rem;
  margin-bottom: 0.75rem;
  color: var(--gold);
  font-size: 0.9rem;
}

@media (min-width: 720px) {
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ---- CTA Section ---- */
.cta-section {
  background: var(--primary);
  color: var(--white);
  text-align: center;
  padding: 4rem 0;
}
.cta-section h2 { color: var(--white); margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,0.85); margin-bottom: 2rem; font-size: 1.05rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ---- Portal Badge ---- */
.portal-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0.55rem 0.9rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-full);
  color: rgba(255,255,255,0.85);
  font-size: 0.8rem;
  font-weight: 500;
  text-decoration: none;
  transition: background .2s, border-color .2s, color .2s, transform .2s;
  width: fit-content;
}
.portal-badge:hover {
  background: rgba(var(--accent-rgb),0.2);
  border-color: var(--gold);
  color: #fff;
  transform: translateY(-1px);
}
.portal-badge .portal-badge-icon { color: var(--gold); flex-shrink: 0; }
.portal-badge strong { color: #fff; font-weight: 600; }
.portal-badge-arrow { flex-shrink: 0; opacity: 0.6; transition: transform .2s, opacity .2s; }
.portal-badge:hover .portal-badge-arrow { opacity: 1; transform: translateX(2px); }

/* ---- Footer ---- */
footer.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: 3rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.footer-brand strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 0.25rem;
}
.footer-brand span { font-size: 0.8rem; color: var(--gold); }
.footer-brand p {
  margin-top: 0.75rem;
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.65);
}
.footer-links h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.85rem;
}
.footer-links ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p { font-size: 0.8rem; margin: 0; }
.footer-bottom-links { display: flex; gap: 1rem; flex-wrap: wrap; }
.footer-bottom-links a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-bottom-links a:hover { color: var(--white); }

@media (min-width: 720px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
}

/* ---- Contact Form ---- */
.contact-grid {
  display: grid;
  gap: 2.5rem;
}
.contact-info h2 { margin-bottom: 1rem; }
.contact-info p { margin-bottom: 1.25rem; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.contact-item-icon {
  width: 36px; height: 36px;
  background: var(--primary);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}
.contact-item-text strong { display: block; font-size: 0.8rem; color: var(--muted); margin-bottom: 0.1rem; }
.contact-item-text a, .contact-item-text span { font-size: 0.95rem; color: var(--ink); }
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--ink);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--bg-soft);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(45,74,45,0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; gap: 1rem; }
.form-status {
  margin-top: 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  display: none;
}
.form-status.success { color: var(--primary); display: block; }
.form-status.error { color: #c0392b; display: block; }

@media (min-width: 720px) {
  .contact-grid { grid-template-columns: 1fr 1.3fr; align-items: start; }
  .form-row { grid-template-columns: 1fr 1fr; }
}

/* ---- Bio Page ---- */
.bio-grid {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}
.bio-portrait picture img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  object-position: center 15%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.bio-content h1 { margin-bottom: 0.5rem; }
.bio-subtitle {
  font-size: 1.1rem;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.bio-content p { margin-bottom: 1rem; }
.bio-timeline {
  margin: 2rem 0;
  border-left: 2px solid var(--line);
  padding-left: 1.5rem;
}
.bio-timeline-item {
  position: relative;
  margin-bottom: 1.5rem;
}
.bio-timeline-item::before {
  content: '';
  position: absolute;
  left: -1.75rem;
  top: 0.35rem;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--primary);
  border: 2px solid var(--bg);
}
.bio-timeline-item time {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  text-transform: uppercase;
}
.bio-timeline-item p { font-size: 0.9rem; margin: 0.2rem 0 0; }

@media (min-width: 720px) {
  .bio-grid { grid-template-columns: 0.85fr 1.15fr; }
}

/* ---- Portal Feature Section ---- */
.portal-feature {
  display: grid;
  gap: 2rem;
  background: var(--primary-dark);
  border-radius: var(--radius-lg);
  padding: 2rem;
  align-items: center;
  color: var(--white);
}
.portal-feature h3 { color: var(--white); margin-bottom: 0.5rem; }
.portal-feature p { color: rgba(255,255,255,0.8); margin-bottom: 1.25rem; }
.portal-feature-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.portal-feature-meta span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
}
.portal-feature-visual {
  display: flex;
  justify-content: center;
}
.portal-feature-visual-inner {
  width: 120px; height: 120px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
}

@media (min-width: 720px) {
  .portal-feature { grid-template-columns: 1fr auto; padding: 2.5rem; }
}

/* ---- Angebote Page ---- */
.angebot-full {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  margin-bottom: 2rem;
}
.angebot-full-header {
  background: var(--primary);
  color: var(--white);
  padding: 1.5rem 2rem;
}
.angebot-full-header h3 { color: var(--white); margin-bottom: 0.25rem; }
.angebot-full-header p { color: rgba(255,255,255,0.8); font-size: 0.9rem; margin: 0; }
.angebot-full-body { padding: 1.75rem 2rem; }
.angebot-full-body ul {
  list-style: none;
  margin: 1rem 0;
}
.angebot-full-body ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin-bottom: 0.5rem;
}
.angebot-full-body ul li::before {
  content: '✦';
  color: var(--primary);
  font-size: 0.7rem;
  margin-top: 0.35rem;
  flex-shrink: 0;
}
.angebot-price-box {
  background: var(--bg-soft);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.angebot-price {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--primary);
  font-weight: 600;
}
.angebot-price small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 400;
}

/* ---- Impressum / Datenschutz ---- */
.prose { max-width: 740px; }
.prose h2 { margin: 2rem 0 0.75rem; font-size: 1.4rem; }
.prose h3 { margin: 1.5rem 0 0.5rem; font-size: 1.1rem; }
.prose p { margin-bottom: 1rem; }
.prose ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1rem; }
.prose ul li { margin-bottom: 0.4rem; color: var(--ink-soft); }
.prose a { color: var(--primary); text-decoration: underline; }

/* ---- Page Hero (Sub-Pages) ---- */
.page-hero {
  background: var(--primary-dark);
  color: var(--white);
  padding: 3rem 0 2.5rem;
  text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: 0.5rem; }
.page-hero p { color: rgba(255,255,255,0.75); font-size: 1.05rem; }

/* ---- Fade-in animation ---- */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}
