/* Schmidt-Sec — production website
   Imports tokens from ../colors_and_type.css */

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.container--narrow { max-width: 880px; }

/* ================= TOP BAR ================= */
.topbar { position: sticky; top: 0; z-index: 50; background: rgba(250, 248, 243, 0.92); backdrop-filter: blur(10px); border-bottom: 1px solid var(--navy-line); }
.topbar .row { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; gap: 24px; }
.logo { display: inline-flex; align-items: center; gap: 12px; font-weight: 800; font-size: 19px; letter-spacing: -0.02em; color: var(--navy); text-decoration: none; }
.logo img { height: 40px; width: auto; display: block; }
.logo .dot { color: var(--burgund); }
.logo .wordmark { display: none; }
.topbar nav { display: flex; gap: 30px; font-size: 15px; font-weight: 500; }
.topbar nav a { color: var(--text-soft); text-decoration: none; transition: color 0.2s ease; padding: 6px 0; border-bottom: 2px solid transparent; }
.topbar nav a:hover, .topbar nav a.active { color: var(--navy); }
.topbar nav a.active { border-bottom-color: var(--burgund); }
.topbar .cta { background: var(--navy); color: var(--cream); padding: 10px 18px; border-radius: 6px; text-decoration: none; font-size: 14px; font-weight: 600; transition: background 0.2s ease; }
.topbar .cta:hover { background: var(--burgund); }
.menu-toggle { display: none; background: none; border: 0; padding: 8px; cursor: pointer; color: var(--navy); }
.menu-toggle svg { width: 24px; height: 24px; }
@media (max-width: 900px) {
  .topbar nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--cream); flex-direction: column; gap: 0; border-bottom: 1px solid var(--navy-line); padding: 8px var(--gutter); }
  .topbar nav.open { display: flex; }
  .topbar nav a { padding: 14px 0; border-bottom: 1px solid var(--navy-line); }
  .topbar nav a:last-child { border-bottom: 0; }
  .menu-toggle { display: inline-flex; }
  .topbar .cta { display: none; }
}

/* ================= BUTTONS ================= */
.btn-primary { background: var(--navy); color: var(--cream); padding: 14px 28px; border-radius: 6px; text-decoration: none; font-size: 15px; font-weight: 600; transition: background 0.2s ease; display: inline-flex; align-items: center; gap: 8px; border: 0; cursor: pointer; font-family: inherit; }
.btn-primary:hover { background: var(--burgund); }
.btn-primary::after { content: '→'; transition: transform 0.2s ease; }
.btn-primary:hover::after { transform: translateX(4px); }
.btn-secondary { background: transparent; color: var(--navy); padding: 14px 24px; border-radius: 6px; border: 1px solid var(--navy); text-decoration: none; font-size: 15px; font-weight: 600; transition: all 0.2s ease; display: inline-flex; align-items: center; gap: 8px; cursor: pointer; font-family: inherit; }
.btn-secondary:hover { background: var(--navy); color: var(--cream); }

/* ================= SECTION HELPERS ================= */
.eyebrow { font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--burgund); display: inline-flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.eyebrow::before { content: ''; width: 24px; height: 2px; background: var(--burgund); }
.eyebrow.on-navy { color: var(--burgund-soft); }
.eyebrow.on-navy::before { background: var(--burgund-soft); }

.section-head { margin-bottom: 56px; max-width: 800px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-head h2 { margin-bottom: 16px; }
.section-head p { font-size: 18px; line-height: 1.55; color: var(--text-soft); }

.section { padding: 100px 0; }
.section--cream-warm { background: var(--cream-warm); }
.section--navy { background: var(--navy); color: var(--cream); }
.section--navy .section-head h2 { color: var(--cream); }
.section--navy .section-head p { color: rgba(250, 248, 243, 0.78); }

@media (max-width: 800px) { .section { padding: 64px 0; } }

/* ================= PAGE BANNER (sub-pages) ================= */
.page-banner { padding: 80px 0 56px; background: var(--cream); border-bottom: 1px solid var(--navy-line); }
.page-banner h1 { font-size: clamp(36px, 5vw, 56px); margin-bottom: 16px; }
.page-banner h1 .accent { color: var(--burgund); }
.page-banner p { font-size: 19px; line-height: 1.55; color: var(--text-soft); max-width: 680px; }

/* ================= TRUST BAR ================= */
.trust { padding: 64px 0; background: var(--cream); border-bottom: 1px solid var(--navy-line); }
.trust .row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.trust .item h5 { font-weight: 700; font-size: 17px; color: var(--navy); margin-bottom: 6px; }
.trust .item p { font-size: 14px; color: var(--text-muted); line-height: 1.5; }
@media (max-width: 800px) { .trust .row { grid-template-columns: 1fr 1fr; gap: 28px; } }

/* ================= FOOTER ================= */
footer { padding: 64px 0 32px; background: var(--navy); color: rgba(250, 248, 243, 0.85); font-size: 14px; }
footer .row { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 40px; }
footer .brand-col .logo { color: var(--cream); margin-bottom: 14px; display: inline-flex; }
footer .brand-col .logo img { filter: brightness(0) invert(1); }
footer .brand-col p { line-height: 1.6; max-width: 320px; margin-bottom: 16px; color: rgba(250, 248, 243, 0.92); }
footer .col h6 { color: var(--cream); font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 16px; }
footer .col ul { list-style: none; }
footer .col ul li { margin-bottom: 10px; }
footer .col ul li a { color: rgba(250, 248, 243, 0.85); text-decoration: none; transition: color 0.2s ease; }
footer .col ul li a:hover { color: var(--cream); }
footer .bottom { border-top: 1px solid rgba(250, 248, 243, 0.15); padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 13px; color: rgba(250, 248, 243, 0.5); }
footer .bottom a { color: inherit; text-decoration: none; }
footer .bottom a:hover { color: var(--cream); }
@media (max-width: 800px) { footer .row { grid-template-columns: 1fr 1fr; } footer .brand-col { grid-column: span 2; } }

/* ================= HERO (home) ================= */
.hero { padding: 80px 0 96px; }
.hero .grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.hero h1 { margin-bottom: 24px; }
.hero h1 .accent { color: var(--burgund); }
.hero .lead { margin-bottom: 32px; max-width: 540px; font-size: 19px; line-height: 1.55; color: var(--text-soft); }
.hero .ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.hero .mini-trust { display: flex; gap: 24px; flex-wrap: wrap; font-size: 13px; color: var(--text-muted); align-items: center; }
.hero .mini-trust .item { display: flex; align-items: center; gap: 8px; }
.hero .mini-trust .item::before { content: '✓'; color: var(--burgund); font-weight: 700; }
.hero-image { position: relative; aspect-ratio: 4/5; border-radius: 8px; overflow: hidden; background: var(--navy); background-image: url('assets/hero-kanzlei.png'); background-size: cover; background-position: center; box-shadow: var(--shadow-image); }
.hero-image .badge { position: absolute; bottom: 24px; left: 24px; right: 24px; background: rgba(250, 248, 243, 0.95); backdrop-filter: blur(8px); padding: 18px 22px; border-radius: 6px; box-shadow: var(--shadow-card); }
.hero-image .badge .label { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--burgund); margin-bottom: 4px; }
.hero-image .badge .text { font-size: 15px; color: var(--navy); font-weight: 600; line-height: 1.35; }
@media (max-width: 900px) { .hero { padding: 48px 0 64px; } .hero .grid { grid-template-columns: 1fr; gap: 40px; } .hero-image { aspect-ratio: 3/4; max-width: 480px; margin: 0 auto; } }

/* ================= PAIN HOOK ================= */
.pain { background: var(--navy); color: var(--cream); padding: 88px 0; position: relative; overflow: hidden; }
.pain::before { content: ''; position: absolute; top: -50%; right: -20%; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(139, 31, 47, 0.18), transparent 70%); pointer-events: none; }
.pain .container { position: relative; }
.pain .quote { color: var(--cream); max-width: 920px; margin-bottom: 28px; font-weight: 600; font-size: clamp(24px, 3.4vw, 36px); line-height: 1.35; letter-spacing: -0.015em; }
.pain .quote .accent { color: var(--burgund-soft); }
.pain .answer { font-size: 18px; line-height: 1.6; color: rgba(250, 248, 243, 0.78); max-width: 720px; }

/* ================= PILLAR / SCOPE ================= */
.scope-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.pillar { padding: 36px; background: var(--cream-warm); border-radius: 8px; transition: transform 0.2s ease, border-color 0.2s ease; border: 1px solid transparent; }
.pillar:hover { transform: translateY(-2px); border-color: var(--navy); }
.pillar .num { font-weight: 800; font-size: 13px; color: var(--burgund); margin-bottom: 14px; letter-spacing: 0.08em; }
.pillar h3 { margin-bottom: 12px; }
.pillar p { font-size: 16px; line-height: 1.6; color: var(--text-soft); }
.pillar ul { list-style: none; margin-top: 14px; }
.pillar ul li { font-size: 15px; color: var(--text-soft); padding-left: 20px; position: relative; margin-bottom: 6px; }
.pillar ul li::before { content: '—'; position: absolute; left: 0; color: var(--burgund); font-weight: 700; }
@media (max-width: 800px) { .scope-grid { grid-template-columns: 1fr; } .pillar { padding: 28px; } }

/* ================= PROCESS ================= */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.process-step { padding-top: 24px; border-top: 2px solid var(--navy); }
.process-step .num { font-weight: 800; font-size: 13px; color: var(--burgund); margin-bottom: 16px; letter-spacing: 0.08em; }
.process-step h4 { margin-bottom: 12px; }
.process-step p { font-size: 15px; line-height: 1.55; color: var(--text-soft); }
@media (max-width: 800px) { .process-grid { grid-template-columns: 1fr 1fr; gap: 28px; } }
@media (max-width: 500px) { .process-grid { grid-template-columns: 1fr; } }

/* ================= PRICING ================= */
.pricing-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 32px; }
.price-card { padding: 36px 32px; background: var(--cream); border: 1px solid var(--line); border-radius: 8px; position: relative; transition: all 0.2s ease; display: flex; flex-direction: column; }
.price-card:hover { border-color: var(--navy); transform: translateY(-2px); }
.price-card.featured { border-color: var(--navy); background: var(--navy); color: var(--cream); }
.price-card.featured .name { color: rgba(250, 248, 243, 0.7); }
.price-card.featured .desc, .price-card.featured ul li { color: rgba(250, 248, 243, 0.78); }
.price-card.featured .price { color: var(--cream); }
.price-card.featured .unit { color: rgba(250, 248, 243, 0.6); }
.price-card.featured ul li::before { color: var(--burgund-soft); }
.price-card .ribbon { position: absolute; top: -12px; left: 32px; background: var(--burgund); color: var(--cream); padding: 5px 12px; border-radius: 4px; font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.price-card .name { font-weight: 700; font-size: 14px; color: var(--text-muted); margin-bottom: 12px; letter-spacing: 0.08em; text-transform: uppercase; }
.price-card .price { font-weight: 800; font-size: 44px; line-height: 1; letter-spacing: -0.02em; color: var(--navy); margin-bottom: 4px; }
.price-card .unit { font-size: 14px; color: var(--text-muted); margin-bottom: 22px; }
.price-card .desc { font-size: 15px; line-height: 1.55; color: var(--text-soft); margin-bottom: 22px; }
.price-card ul { list-style: none; margin-bottom: 26px; }
.price-card ul li { font-size: 14px; color: var(--text-soft); padding-left: 22px; position: relative; margin-bottom: 8px; line-height: 1.5; }
.price-card ul li::before { content: '✓'; position: absolute; left: 0; color: var(--burgund); font-weight: 700; }
.price-card .card-cta { margin-top: auto; }
.pricing-footnote { text-align: center; font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.pricing-footnote a { color: var(--burgund); text-decoration: none; font-weight: 600; }
.price-inline { margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--line); font-size: 14px; color: var(--text-muted); }
.price-inline strong { color: var(--navy); font-size: 16px; font-weight: 700; }
@media (max-width: 900px) { .pricing-cards { grid-template-columns: 1fr; } }

/* ================= ABOUT ================= */
.about-grid { display: grid; grid-template-columns: 5fr 7fr; gap: 64px; align-items: center; }
.about-grid .image { aspect-ratio: 4/5; border-radius: 8px; overflow: hidden; background-color: var(--navy-soft); background-image: url('assets/goettingen-gaenseliesel.jpg'); background-size: cover; background-position: center; }
.about-grid .text p { font-size: 17px; line-height: 1.7; color: rgba(250, 248, 243, 0.78); margin-bottom: 16px; }
.about-grid .text p strong { color: var(--cream); font-weight: 600; }
.about-grid h2 { color: var(--cream); margin-bottom: 24px; }
.about-grid .signature { margin-top: 32px; padding-top: 24px; border-top: 1px solid rgba(250, 248, 243, 0.18); }
.about-grid .signature strong { display: block; color: var(--cream); font-size: 16px; margin-bottom: 4px; font-weight: 600; }
.about-grid .signature .info { font-size: 14px; color: rgba(250, 248, 243, 0.6); line-height: 1.6; }
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; gap: 40px; } .about-grid .image { aspect-ratio: 3/2; max-width: 480px; } }

/* ================= CLIENTS ================= */
.clients { padding: 100px 0; background: var(--navy); }
.clients .section-head { margin-bottom: 56px; }
.clients .section-head h2 { color: var(--cream); }
.client-logos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1080px; margin: 0 auto; }
.client-card { display: flex; align-items: center; justify-content: center; aspect-ratio: 16 / 10; background: var(--cream); border-radius: 8px; padding: 36px 32px; transition: transform 0.25s ease, box-shadow 0.25s ease; text-decoration: none; }
.client-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,0.18); }
.client-card img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; }
@media (max-width: 760px) { .client-logos { grid-template-columns: 1fr; max-width: 360px; } }

/* ================= CTA FINAL ================= */
.cta-final { padding: 100px 0; background: var(--cream-warm); text-align: center; }
.cta-final h2 { margin-bottom: 22px; max-width: 760px; margin-left: auto; margin-right: auto; }
.cta-final h2 .accent { color: var(--burgund); }
.cta-final p { font-size: 18px; line-height: 1.6; color: var(--text-soft); max-width: 600px; margin: 0 auto 36px; }
.cta-final .buttons { display: inline-flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* ================= FAQ ================= */
.faq-list { max-width: 880px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary { padding: 24px 0; cursor: pointer; list-style: none; font-weight: 700; font-size: 18px; color: var(--navy); display: flex; justify-content: space-between; align-items: center; gap: 24px; transition: color 0.2s ease; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 24px; font-weight: 400; color: var(--burgund); transition: transform 0.2s ease; flex-shrink: 0; }
.faq-item[open] summary::after { content: '−'; }
.faq-item summary:hover { color: var(--burgund); }
.faq-item .faq-body { padding: 0 0 24px; font-size: 16px; line-height: 1.7; color: var(--text-soft); max-width: 760px; }
.faq-item .faq-body p { margin-bottom: 12px; }
.faq-item .faq-body p:last-child { margin-bottom: 0; }

/* ================= CONTACT ================= */
.contact-grid { display: grid; grid-template-columns: 5fr 7fr; gap: 64px; }
.contact-info h3 { margin-bottom: 24px; }
.contact-info .channel { padding: 18px 0; border-bottom: 1px solid var(--line); }
.contact-info .channel:last-child { border-bottom: 0; }
.contact-info .channel .label { font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 4px; }
.contact-info .channel a, .contact-info .channel .value { font-size: 18px; font-weight: 600; color: var(--navy); text-decoration: none; transition: color 0.2s ease; }
.contact-info .channel a:hover { color: var(--burgund); }
.contact-info .channel p { font-size: 14px; color: var(--text-muted); margin-top: 4px; line-height: 1.5; }

.contact-form { background: var(--cream-warm); padding: 40px; border-radius: 8px; }
.contact-form h3 { margin-bottom: 8px; }
.contact-form .form-intro { font-size: 15px; color: var(--text-soft); margin-bottom: 28px; line-height: 1.55; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.field label .req { color: var(--burgund); }
.field input, .field textarea, .field select { width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: 6px; background: var(--cream); font-family: inherit; font-size: 15px; color: var(--text); transition: border-color 0.2s ease; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--navy); }
.field textarea { resize: vertical; min-height: 130px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field-check { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 22px; font-size: 13px; line-height: 1.55; color: var(--text-soft); }
.field-check input { width: 16px; height: 16px; margin-top: 3px; flex-shrink: 0; accent-color: var(--burgund); }
.field-check a { color: var(--burgund); text-decoration: underline; }
.form-success { display: none; background: var(--navy); color: var(--cream); padding: 22px; border-radius: 6px; font-size: 15px; line-height: 1.55; margin-bottom: 18px; }
.form-success.visible { display: block; }
.form-success strong { display: block; margin-bottom: 4px; }
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } .contact-form { padding: 28px; } .field-row { grid-template-columns: 1fr; } }

/* ================= LEGAL PAGES ================= */
.legal { padding: 56px 0 100px; }
.legal h2 { font-size: 28px; margin: 40px 0 16px; }
.legal h3 { font-size: 20px; margin: 28px 0 10px; }
.legal p { font-size: 16px; line-height: 1.7; color: var(--text); margin-bottom: 14px; }
.legal ul { margin: 0 0 16px 22px; }
.legal ul li { font-size: 16px; line-height: 1.7; color: var(--text); margin-bottom: 6px; }
.legal a { color: var(--burgund); }
.legal .placeholder { display: inline-block; padding: 2px 8px; background: rgba(193, 18, 31, 0.08); color: var(--burgund); border-radius: 4px; font-size: 14px; font-weight: 600; }

/* ================= 404 ================= */
.notfound { padding: 100px 0; text-align: center; }
.notfound h1 { font-size: clamp(72px, 12vw, 144px); color: var(--burgund); margin-bottom: 16px; line-height: 1; }
.notfound h2 { margin-bottom: 16px; }
.notfound p { font-size: 18px; color: var(--text-soft); margin-bottom: 32px; max-width: 480px; margin-left: auto; margin-right: auto; }
