:root {
  --blue: #2f2870;
  --blue-dark: #211b54;
  --green: #a6d6cc;
  --green-light: #e5f3f0;
  --yellow: #ffcd1c;
  --ink: #23263a;
  --muted: #64677a;
  --paper: #fbfaf6;
  --white: #fff;
  --radius: 1.25rem;
  --shadow: 0 18px 55px rgba(33, 27, 84, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Noto Sans", "Segoe UI", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
.skip-link { position: fixed; left: 1rem; top: -5rem; z-index: 99; padding: .7rem 1rem; background: var(--yellow); }
.skip-link:focus { top: 1rem; }
.wrap { width: min(1160px, calc(100% - 2rem)); margin-inline: auto; }
.narrow { width: min(760px, calc(100% - 2rem)); margin-inline: auto; }
.eyebrow { margin: 0 0 .75rem; color: var(--green); font-size: .78rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
h1, h2, h3 { margin: 0 0 .75rem; color: var(--blue); line-height: 1.04; font-style: italic; font-weight: 850; letter-spacing: -.025em; }
h1 { font-size: clamp(2.7rem, 7vw, 6.4rem); }
h2 { font-size: clamp(2.15rem, 4.2vw, 4.1rem); }
h3 { font-size: clamp(1.35rem, 2.1vw, 1.8rem); }
p { margin: 0 0 1.15rem; }
.lead { font-size: clamp(1.15rem, 2vw, 1.45rem); line-height: 1.5; }
.button { display: inline-flex; align-items: center; gap: .65rem; border: 0; border-radius: 999px; padding: .82rem 1.2rem; background: var(--yellow); color: var(--blue-dark); font-weight: 800; text-decoration: none; transition: transform .2s, box-shadow .2s; }
.button:hover, .button:focus-visible { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(33,27,84,.22); }
.button::after { content: "→"; }
.button.secondary { background: var(--green); }
.button.dark { background: var(--blue); color: white; }
.text-link { color: var(--blue); font-weight: 800; text-decoration-thickness: 2px; text-underline-offset: .25rem; }

.site-header { position: sticky; top: 0; z-index: 30; background: var(--blue-dark); border-bottom: 0; }
.nav-shell { min-height: 108px; display: flex; align-items: center; gap: 1.4rem; padding: 1.15rem 0 1.45rem; }
.brand { flex: 0 0 245px; }
.brand img { width: 245px; }
.nav-toggle { display: block; position: relative; z-index: 60; width: 48px; height: 48px; margin-left: auto; border: 0; border-radius: 999px; padding: 0; background: transparent; color: transparent; font: inherit; overflow: hidden; cursor: pointer; }
.nav-toggle::before, .nav-toggle::after, .nav-toggle span { position: absolute; left: 12px; right: 12px; height: 2px; border-radius: 999px; background: white; content: ""; }
.nav-toggle::before { top: 15px; }
.nav-toggle span { top: 23px; }
.nav-toggle::after { top: 31px; background: var(--yellow); }
.site-nav { position: fixed; inset: 0; z-index: 50; display: flex; flex-direction: column; justify-content: center; align-items: stretch; gap: 0; padding: clamp(7rem, 12vw, 10rem) max(2rem, calc((100vw - 1160px) / 2)) 4rem; background: var(--blue-dark); box-shadow: -24px 0 70px rgba(33,27,84,.28); transform: translateX(100%); transition: transform .38s ease; }
.site-nav.open { transform: translateX(0); }
.site-nav a { padding: .82rem 0; color: white; font-size: clamp(1.7rem, 3.7vw, 4rem); font-style: italic; font-weight: 300; line-height: .98; text-decoration: none; border-top: 1px solid rgba(255,255,255,.24); border-left: 0; border-radius: 0; }
.site-nav a:first-child { border-top: 0; }
.site-nav a:hover { color: var(--green); background: transparent; }
.site-nav a[aria-current="page"] { color: var(--green); font-weight: 800; background: transparent; }
.site-nav .nav-cta { align-self: flex-start; margin-top: 2.8rem; padding: 1rem 1.7rem; background: var(--yellow); color: var(--blue-dark); border-top: 0; border-radius: 999px; text-align: center; font-size: clamp(1.55rem, 3.2vw, 3.4rem); }

.hero { position: relative; min-height: 680px; display: grid; align-items: end; overflow: hidden; background: var(--blue); }
.hero::after { content: ""; position: absolute; inset: 0; background: rgba(25,20,66,.22); }
.hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 48%; }
.hero-content { position: relative; z-index: 1; width: min(1160px, calc(100% - 2rem)); margin: 0 auto; padding: 7rem 0 5.3rem; color: white; text-shadow: 0 3px 20px rgba(12,9,38,.72); }
.hero-content h1 { max-width: 930px; color: white; text-shadow: 0 4px 28px rgba(12,9,38,.82); }
.hero-content .lead { max-width: 650px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.8rem; }
.hero-actions .button { text-shadow: none; }
.hero-actions .button:hover, .hero-actions .button:focus-visible { box-shadow: none; }
.hero .button.secondary { background: rgba(255,255,255,.93); }

.section { padding: clamp(4.5rem, 8vw, 8rem) 0; }
.section.soft { background: var(--green-light); }
.teaser-section { padding-bottom: clamp(2rem, 4vw, 3.25rem); }
.section.blue { position: relative; overflow: hidden; background: var(--blue); color: white; }
.section.blue h2, .section.blue h3, .section.blue .eyebrow { color: white; }
.section.blue::after { content: ""; position: absolute; right: -8rem; bottom: -7rem; width: 620px; height: 420px; opacity: .2; background: url("assets/images/topografie.png") center/cover; transform: rotate(-5deg); }
.section.yellow { position: relative; overflow: hidden; background: var(--yellow); color: var(--blue-dark); }
.section.yellow h2, .section.yellow .eyebrow { color: var(--blue); }
.section.yellow::after { content: ""; position: absolute; right: -6rem; bottom: -10rem; width: clamp(260px, 34vw, 520px); aspect-ratio: 1; border: clamp(38px, 5vw, 76px) solid rgba(166,214,204,.62); border-radius: 50%; pointer-events: none; }
.section.yellow.no-circle::after { display: none; }
.section-head { display: grid; grid-template-columns: .85fr 1.15fr; gap: 3rem; align-items: end; margin-bottom: 3rem; }
.section-head-stacked { display: block; max-width: 1040px; }
.section-head-stacked h2 { max-width: 1040px; }
.section-head-stacked .lead { max-width: 720px; margin-top: 1rem; }
.section-head:has(> div:only-child) { display: block; }
.section-head:has(> div:only-child) h2 { max-width: none; white-space: nowrap; }
.section-head p { margin-bottom: .35rem; }
.intro { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem, 6vw, 6rem); align-items: center; }
.intro-small { grid-template-columns: .72fr 1.28fr; }
.intro-top { align-items: start; }
.media { position: relative; overflow: hidden; min-height: 460px; border-radius: var(--radius); box-shadow: var(--shadow); }
.media-small { min-height: 340px; }
.media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.media-contain { background: var(--blue-dark); }
.media-contain img { object-fit: contain; }
.media-natural { min-height: 0; background: white; }
.media-natural img { position: static; width: 100%; height: auto; object-fit: unset; }
.media-natural::after { display: none; }
.media::after { content: ""; position: absolute; left: 1.1rem; bottom: 1.1rem; width: 72px; height: 72px; border-radius: 50%; border: 15px solid var(--green); }

.teaser-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 1.25rem; }
.teaser { grid-column: span 4; min-height: 410px; position: relative; overflow: hidden; display: flex; align-items: flex-end; border-radius: var(--radius); color: white; text-decoration: none; box-shadow: var(--shadow); }
.teaser.wide { grid-column: span 8; }
.teaser img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.teaser-focus-right img { object-position: 72% 28%; }
.teaser::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(24,19,67,.92), rgba(24,19,67,.04) 72%); }
.teaser-body { position: relative; z-index: 1; padding: 1.5rem; }
.teaser .eyebrow { color: var(--green); }
.teaser h3 { color: white; }
.teaser p { margin: 0; max-width: 34rem; }
.teaser:hover img { transform: scale(1.035); }
.teaser-arrow { position: absolute; z-index: 2; right: 1.2rem; top: 1.2rem; display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; background: var(--yellow); color: var(--blue); font-size: 1.4rem; font-weight: 900; }

.stripe-links { display: grid; gap: 1rem; margin-top: 1.25rem; }
.stripe-link { display: grid; grid-template-columns: minmax(240px, .75fr) 1fr auto; gap: 1.5rem; align-items: center; min-height: 138px; padding: 1.5rem 1.7rem; border-radius: var(--radius); color: var(--blue-dark); text-decoration: none; box-shadow: var(--shadow); transition: transform .2s, box-shadow .2s; }
.stripe-link:hover { transform: translateY(-2px); box-shadow: 0 22px 60px rgba(33,27,84,.17); }
.stripe-link-green { background: var(--green); }
.stripe-link .eyebrow { display: block; color: var(--blue); margin-bottom: .35rem; }
.stripe-link strong { display: block; color: var(--blue); font-size: clamp(2rem, 4vw, 4rem); font-style: italic; line-height: .95; letter-spacing: -.025em; }
.stripe-link > span:nth-child(2) { max-width: 34rem; font-size: 1.1rem; }
.stripe-arrow { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 50%; background: var(--blue); color: white; font-size: 1.5rem; font-weight: 900; }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.card { padding: 1.7rem; border-radius: var(--radius); background: white; box-shadow: var(--shadow); }
.card .number { display: grid; place-items: center; width: 44px; height: 44px; margin-bottom: 2rem; border-radius: 50%; background: var(--yellow); color: var(--blue); font-weight: 900; }
.card p:last-child { margin-bottom: 0; }
.quote { margin: 0; padding: 2rem 0; color: var(--blue); font-size: clamp(1.7rem, 3.5vw, 3.2rem); line-height: 1.25; font-style: italic; font-weight: 750; }

.page-hero { position: relative; min-height: 470px; display: grid; align-items: end; overflow: hidden; background: var(--blue); }
.page-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.christian-hero { min-height: 620px; }
.christian-hero > img { object-position: center 42%; }
.christian-hero h1 { max-width: 620px; font-size: clamp(3rem, 5.6vw, 5.2rem); }
.page-hero::after { content: ""; position: absolute; inset: 0; background: rgba(25,20,66,.28); }
.page-hero::before { content: ""; position: absolute; z-index: 1; right: clamp(1.5rem, 8vw, 8rem); top: clamp(7rem, 16vw, 11rem); width: clamp(130px, 18vw, 260px); aspect-ratio: 1; border: clamp(22px, 3vw, 42px) solid rgba(166,214,204,.48); border-radius: 50%; pointer-events: none; }
.page-hero-content { position: relative; z-index: 2; padding: 8rem 0 3.7rem; color: white; text-shadow: 0 3px 20px rgba(12,9,38,.72); }
.page-hero h1 { color: white; font-size: clamp(3.1rem, 7vw, 6rem); text-shadow: 0 4px 28px rgba(12,9,38,.82); }
.page-hero .eyebrow { color: white; }
.page-hero .lead { max-width: 700px; }
.timeline { display: grid; gap: 1rem; counter-reset: steps; }
.timeline-item { display: grid; grid-template-columns: 70px 1fr; gap: 1rem; padding: 1.4rem; background: white; border-radius: var(--radius); }
.timeline-item::before { counter-increment: steps; content: "0" counter(steps); color: var(--green); font-size: 2rem; font-style: italic; font-weight: 900; }
.timeline-item h3 { margin-top: .25rem; }
.method-steps { display: grid; gap: 0; border-top: 1px solid rgba(47,40,112,.18); }
.method-step { display: grid; grid-template-columns: 95px 1fr; gap: clamp(1rem, 3vw, 2.4rem); padding: 1.7rem 0; border-bottom: 1px solid rgba(47,40,112,.18); }
.method-step > span { color: var(--green); font-size: clamp(2.1rem, 4vw, 4rem); font-style: italic; font-weight: 900; line-height: 1; }
.method-step h3 { margin-top: .2rem; }
.method-step p { max-width: 720px; margin-bottom: 0; }
.event { display: grid; grid-template-columns: 155px 1fr auto; gap: 1.4rem; align-items: center; padding: 1.5rem; border-top: 1px solid rgba(47,40,112,.18); }
.event:last-child { border-bottom: 1px solid rgba(47,40,112,.18); }
.event-date { color: var(--blue); font-weight: 900; }
.event-highlight { display: inline-block; margin: .35rem 0 0; padding: .45rem .8rem; border-radius: 999px; background: var(--yellow); color: var(--blue); font-size: clamp(1rem, 1.8vw, 1.35rem); font-weight: 900; line-height: 1.25; }
.tag { display: inline-block; margin-bottom: .5rem; padding: .22rem .55rem; border-radius: 999px; background: var(--green-light); color: var(--blue); font-size: .76rem; font-weight: 850; text-transform: uppercase; letter-spacing: .08em; }
.publication { display: grid; grid-template-columns: 110px 1fr auto; gap: 1.3rem; align-items: center; padding: 1.5rem 0; border-bottom: 1px solid rgba(47,40,112,.18); }
.publication-type { color: var(--blue); font-size: .8rem; font-weight: 900; text-transform: uppercase; letter-spacing: .1em; }
.offer-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2rem, 6vw, 5rem); align-items: start; }
.check-list { display: grid; gap: .9rem; margin: 2rem 0 0; padding: 0; list-style: none; }
.process-line { margin: -.2rem 0 2rem; color: var(--green); font-size: clamp(1rem, 1.7vw, 1.25rem); font-weight: 850; line-height: 1.45; }
.process-line span { color: var(--yellow); padding: 0 .35rem; }
.check-list li { position: relative; padding-left: 2rem; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--blue); font-weight: 900; }
.offer-facts { padding: 1.8rem; border-radius: var(--radius); background: var(--green-light); box-shadow: var(--shadow); }
.offer-facts dl { display: grid; gap: 1rem; margin: 0; }
.offer-facts dl > div { padding-bottom: 1rem; border-bottom: 1px solid rgba(47,40,112,.16); }
.offer-facts dl > div:last-child { padding-bottom: 0; border-bottom: 0; }
.offer-facts dt { color: var(--muted); font-size: .78rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.offer-facts dd { margin: .2rem 0 0; color: var(--blue); font-size: 1.2rem; font-weight: 850; }
.offer-booking { margin-top: 1.4rem; }

.contact-panel { position: relative; z-index: 1; display: grid; grid-template-columns: 1.1fr .9fr; gap: 3rem; align-items: center; }
.contact-email { display: inline-block; color: var(--blue); font-size: clamp(1.35rem, 3vw, 2.7rem); font-style: italic; font-weight: 850; text-underline-offset: .25rem; }
.social-link { display: inline-flex; align-items: center; gap: .45rem; }
.social-link::before { display: inline-grid; place-items: center; flex: 0 0 auto; width: 1.35em; height: 1.35em; border-radius: 999px; background: var(--green); color: var(--blue-dark); font-size: .78em; font-weight: 900; line-height: 1; text-decoration: none; }
.social-link.linkedin::before { content: "in"; font-family: Arial, sans-serif; }
.social-link.instagram::before { content: ""; background: var(--green) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23211b54' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='5' y='5' width='14' height='14' rx='4'/%3E%3Ccircle cx='12' cy='12' r='3.2'/%3E%3Ccircle cx='16.6' cy='7.4' r='.7' fill='%23211b54' stroke='none'/%3E%3C/svg%3E") center/78% 78% no-repeat; }
.social-link.whatsapp::before { content: ""; background: var(--green) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23211b54'%3E%3Cpath d='M13.601 2.326A7.854 7.854 0 0 0 7.994 0C3.627 0 .068 3.558.064 7.926c0 1.399.366 2.76 1.057 3.965L0 16l4.204-1.102a7.933 7.933 0 0 0 3.79.965h.004c4.368 0 7.926-3.558 7.93-7.93A7.898 7.898 0 0 0 13.6 2.326zM7.994 14.521a6.573 6.573 0 0 1-3.356-.92l-.24-.144-2.494.654.666-2.433-.156-.251a6.56 6.56 0 0 1-1.007-3.505c0-3.626 2.957-6.584 6.591-6.584a6.56 6.56 0 0 1 4.66 1.931 6.557 6.557 0 0 1 1.928 4.66c-.004 3.639-2.961 6.592-6.592 6.592zm3.615-4.934c-.197-.099-1.17-.578-1.353-.646-.182-.065-.315-.099-.445.099-.133.197-.513.646-.627.775-.114.133-.232.148-.43.05-.197-.1-.836-.308-1.592-.985-.59-.525-.985-1.175-1.103-1.372-.114-.198-.011-.304.1-.403.093-.087.207-.229.31-.343.098-.114.132-.198.198-.33.065-.134.034-.248-.015-.347-.05-.098-.45-1.084-.617-1.483-.164-.398-.333-.344-.457-.35-.114-.005-.245-.005-.376-.005a.723.723 0 0 0-.526.246c-.182.198-.691.677-.691 1.654 0 .977.71 1.916.81 2.049.098.133 1.394 2.132 3.383 2.9 1.685.65 2.02.522 2.386.489.368-.033 1.171-.478 1.336-.94.164-.46.164-.854.114-.936-.049-.082-.182-.133-.38-.232z'/%3E%3C/svg%3E") center/78% 78% no-repeat; }
.footer { background: var(--blue-dark); color: white; padding: 2.4rem 0 1.25rem; font-size: .9rem; line-height: 1.55; }
.footer-grid { display: grid; grid-template-columns: 1.25fr 1fr .85fr .85fr; gap: clamp(1.5rem, 4vw, 4rem); align-items: start; }
.footer strong { display: block; margin-bottom: .65rem; color: var(--green); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; }
.footer a { color: white; }
.footer ul { margin: 0; padding: 0; list-style: none; }
.footer-bottom { margin-top: 2.5rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.15); color: rgba(255,255,255,.65); font-size: .82rem; }
.legal h2 { margin-top: 2.5rem; font-size: 1.55rem; }
.notice { padding: 1rem 1.1rem; border-left: 5px solid var(--yellow); background: #fff7d4; }

@media (max-width: 800px) {
  body { font-size: 16px; }
  .hero { min-height: 650px; }
  .hero::after { background: rgba(25,20,66,.32); }
  .section-head, .intro, .contact-panel, .offer-grid { grid-template-columns: 1fr; }
  .section-head { gap: 1rem; }
  .section-head:has(> div:only-child) h2 { white-space: normal; }
  .christian-hero::before { display: none; }
  .teaser, .teaser.wide { grid-column: span 6; }
  .stripe-link { grid-template-columns: 1fr auto; gap: 1rem; }
  .stripe-link > span:nth-child(2) { grid-column: 1 / -1; grid-row: 2; }
  .cards { grid-template-columns: 1fr; }
  .event, .publication { grid-template-columns: 1fr; gap: .5rem; }
  .method-step { grid-template-columns: 1fr; gap: .5rem; }
  .event .button { justify-self: start; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .nav-shell { min-height: 94px; padding: .95rem 0 1.2rem; }
  .brand, .brand img { width: 205px; flex-basis: 205px; }
  .site-nav { padding-inline: 1.25rem; }
  .site-nav a { font-size: clamp(1.45rem, 8vw, 2.8rem); }
  .teaser, .teaser.wide { grid-column: 1 / -1; min-height: 360px; }
  .stripe-link { grid-template-columns: 1fr; }
  .stripe-arrow { width: 46px; height: 46px; }
  .media { min-height: 360px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > :first-child { grid-column: auto; }
}
