/* =============================================
   giantmotel GmbH — Interview- & Podcast-Studio
   Editorial / Agentur-Layout, Frankfurt am Main
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,700&display=swap');

:root {
  --ink:     #161520;
  --ink2:    #1e1c2e;
  --coral:   #ff5e3a;
  --coral2:  #e84f2c;
  --paper:   #fff8f5;
  --sand:    #ffeee8;
  --muted:   #7a6f7c;
  --border:  #eee0da;
  --line:    #f0ddd8;
  --r:       10px;
  --r2:      18px;
  --maxw:    1180px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: #221d24;
  background: #fff;
  line-height: 1.7;
  overflow-x: hidden;
}
a { color: var(--coral2); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }

/* ── TOP STRIP ── */
.top-strip {
  background: var(--ink); color: rgba(255,255,255,.55);
  font-size: 12px; text-align: center; padding: 8px 16px;
}
.top-strip a { color: rgba(255,255,255,.85); }
.top-strip a:hover { color: #fff; text-decoration: none; }

/* ── NAV BAR ── */
.nav-bar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.94); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav-row { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.brand-mark {
  width: 38px; height: 38px; border-radius: 9px;
  background: linear-gradient(135deg, var(--coral) 0%, #ff8c5a 100%);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 800; font-size: 12px;
}
.brand-name { font-size: 16px; font-weight: 800; color: var(--ink); line-height: 1.1; }
.brand-sub { font-size: 10px; color: var(--muted); font-weight: 500; letter-spacing: .2px; }
.main-nav { display: flex; align-items: center; gap: 2px; }
.main-nav a {
  font-size: 14px; font-weight: 600; color: #4a4148;
  padding: 9px 16px; border-radius: 100px; text-decoration: none;
  transition: background .15s, color .15s;
}
.main-nav a:hover { background: var(--sand); color: var(--ink); }
.main-nav a.is-active { color: var(--coral2); }
.nav-cta {
  background: var(--ink) !important; color: #fff !important; font-weight: 700 !important;
  margin-left: 6px;
}
.nav-cta:hover { background: var(--coral) !important; color: #fff !important; }
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.burger span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; }
.mnav {
  display: none; position: fixed; inset: 72px 0 0 0; z-index: 90;
  background: #fff; padding: 12px 32px 32px;
}
.mnav.open { display: block; }
.mnav a { display: block; font-size: 17px; font-weight: 700; color: var(--ink); padding: 14px 0; border-bottom: 1px solid var(--border); }

/* ── INTRO / HERO (asymmetric, no boxed image) ── */
.intro { position: relative; background: var(--ink); overflow: hidden; }
.intro::after {
  content: ''; position: absolute; top: -20%; right: -10%; width: 60%; height: 140%;
  background: radial-gradient(ellipse, rgba(255,94,58,.16) 0%, transparent 65%);
  pointer-events: none;
}
.intro-grid {
  position: relative; z-index: 1;
  max-width: var(--maxw); margin: 0 auto; padding: 76px 32px 0;
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: end;
}
.intro-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase;
  color: var(--coral); margin-bottom: 26px;
}
.intro-eyebrow::before { content: ''; width: 26px; height: 1px; background: var(--coral); }
.intro h1 {
  font-size: clamp(2.1rem, 4.6vw, 3.6rem); font-weight: 700; line-height: 1.08;
  color: #fff; margin-bottom: 22px; letter-spacing: -.01em;
}
.intro h1 em { color: var(--coral); font-style: normal; font-weight: 800; }
.intro-lead { font-size: 16.5px; color: rgba(255,255,255,.62); max-width: 460px; margin-bottom: 34px; }
.intro-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }
.btn { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 15px; padding: 14px 26px; border-radius: var(--r); cursor: pointer; border: none; transition: background .15s, transform .1s, border-color .15s; text-decoration: none; }
.btn:hover { text-decoration: none; }
.btn-coral { background: var(--coral); color: #fff; }
.btn-coral:hover { background: var(--coral2); transform: translateY(-1px); }
.btn-line { background: transparent; color: rgba(255,255,255,.8); border: 1px solid rgba(255,255,255,.22); }
.btn-line:hover { border-color: rgba(255,255,255,.5); color: #fff; }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--ink2); }
.intro-figure { position: relative; align-self: end; }
.intro-figure img { width: 100%; border-radius: var(--r2) var(--r2) 0 0; filter: saturate(1.05); }
.intro-figure::before {
  content: ''; position: absolute; top: -18px; left: -18px; right: 18px; bottom: 18px;
  border: 1px solid rgba(255,94,58,.35); border-radius: var(--r2); z-index: -1;
}
.numbers-strip {
  position: relative; z-index: 1; max-width: var(--maxw); margin: 0 auto; padding: 0 32px;
  display: flex; border-top: 1px solid rgba(255,255,255,.09); margin-top: 44px;
}
.numbers-strip .num-item {
  flex: 1; padding: 22px 20px; border-right: 1px solid rgba(255,255,255,.09);
}
.numbers-strip .num-item:last-child { border-right: none; }
.num-val { font-size: 1.7rem; font-weight: 800; color: var(--coral); line-height: 1; }
.num-lbl { font-size: 12px; color: rgba(255,255,255,.42); margin-top: 6px; }

/* ── SECTION SHELL ── */
.blk { padding: 96px 32px; }
.blk-alt { background: var(--paper); }
.blk-ink { background: var(--ink2); color: #fff; }
.blk-head { max-width: 620px; margin-bottom: 56px; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; color: var(--coral2); margin-bottom: 14px; }
.eyebrow::before { content: ''; width: 26px; height: 1px; background: var(--coral2); }
.blk-ink .eyebrow { color: var(--coral); }
.blk-ink .eyebrow::before { background: var(--coral); }
.blk-title { font-size: clamp(1.7rem, 3.2vw, 2.5rem); font-weight: 700; color: var(--ink); line-height: 1.2; letter-spacing: -.01em; }
.blk-ink .blk-title { color: #fff; }
.blk-lede { font-size: 15.5px; color: var(--muted); margin-top: 14px; line-height: 1.75; }
.blk-ink .blk-lede { color: rgba(255,255,255,.55); }

/* ── OFFERINGS (numbered list rows, not cards) ── */
.offering-row {
  display: grid; grid-template-columns: 90px 1fr 200px; gap: 28px; align-items: start;
  padding: 34px 0; border-top: 1px solid var(--line);
}
.offering-row:last-child { border-bottom: 1px solid var(--line); }
.offering-idx { font-size: 13px; font-weight: 800; color: var(--coral2); letter-spacing: .5px; padding-top: 4px; }
.offering-body h3 { font-size: 21px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.offering-body p { font-size: 14.5px; color: var(--muted); max-width: 560px; }
.offering-tags { display: flex; flex-wrap: wrap; gap: 6px; justify-content: flex-end; align-content: start; }
.offering-tags span { background: var(--sand); color: var(--ink); font-size: 11.5px; font-weight: 600; padding: 5px 11px; border-radius: 100px; }

/* ── DIFFERENTIATOR ── */
.diff-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.diff-list { display: flex; flex-direction: column; gap: 22px; }
.diff-item { display: flex; gap: 16px; }
.diff-num { font-size: 13px; font-weight: 800; color: var(--coral); flex-shrink: 0; width: 28px; padding-top: 3px; }
.diff-item h4 { font-size: 15.5px; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.diff-item p { font-size: 13.5px; color: var(--muted); line-height: 1.65; }
.diff-quote-box {
  background: var(--ink); color: #fff; border-radius: var(--r2); padding: 38px 34px;
  position: relative;
}
.diff-quote-box::before { content: '"'; position: absolute; top: 14px; left: 26px; font-size: 64px; color: rgba(255,94,58,.35); font-family: Georgia, serif; line-height: 1; }
.diff-quote-box p { position: relative; font-size: 18px; line-height: 1.55; margin-bottom: 20px; }
.diff-quote-box footer { font-size: 13px; color: rgba(255,255,255,.5); }
.diff-quote-box footer strong { color: var(--coral); }

/* ── FOUNDING STORY (timeline dots, replaces generic interview-history block) ── */
.story-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 60px; }
.story-grid p { font-size: 15px; color: rgba(255,255,255,.62); line-height: 1.85; margin-bottom: 15px; }
.story-line { position: relative; padding-left: 30px; }
.story-line::before { content: ''; position: absolute; left: 6px; top: 6px; bottom: 6px; width: 1px; background: rgba(255,255,255,.15); }
.story-point { position: relative; padding-bottom: 30px; }
.story-point:last-child { padding-bottom: 0; }
.story-point::before { content: ''; position: absolute; left: -30px; top: 3px; width: 13px; height: 13px; border-radius: 50%; background: var(--ink2); border: 2px solid var(--coral); }
.story-year { font-size: 12px; font-weight: 800; color: var(--coral); letter-spacing: .5px; margin-bottom: 4px; }
.story-point h4 { font-size: 15.5px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.story-point p { font-size: 13.5px; color: rgba(255,255,255,.5); margin: 0; }

/* ── TESTIMONIAL STRIP (horizontal scroll, not 3-card grid) ── */
.tstrip { display: flex; gap: 22px; overflow-x: auto; padding-bottom: 12px; scroll-snap-type: x mandatory; }
.tstrip::-webkit-scrollbar { height: 6px; }
.tstrip::-webkit-scrollbar-thumb { background: var(--line); border-radius: 10px; }
.tcard {
  flex: 0 0 340px; scroll-snap-align: start;
  background: #fff; border: 1px solid var(--border); border-radius: var(--r2); padding: 28px 26px;
}
.tstars { color: var(--coral); font-size: 14px; letter-spacing: 2px; margin-bottom: 14px; }
.tcard p { font-size: 14px; color: #3d3540; line-height: 1.7; font-style: italic; margin-bottom: 18px; }
.tauthor { display: flex; align-items: center; gap: 10px; }
.tavatar { width: 34px; height: 34px; border-radius: 9px; background: var(--coral); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 12px; flex-shrink: 0; }
.tname { font-size: 13px; font-weight: 700; color: var(--ink); }
.tcity { font-size: 11.5px; color: var(--muted); }

/* ── STAT BAR (equipment / trust proof as inline row) ── */
.fact-row { display: flex; flex-wrap: wrap; gap: 0; border: 1px solid var(--line); border-radius: var(--r2); overflow: hidden; }
.fact { flex: 1; min-width: 180px; padding: 26px 24px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.fact:last-child { border-right: none; }
.fact-icon { font-size: 22px; margin-bottom: 10px; }
.fact h4 { font-size: 14.5px; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.fact p { font-size: 12.5px; color: var(--muted); line-height: 1.6; }

/* ── VERTICAL TIMELINE (Ablauf) ── */
.vt { position: relative; max-width: 720px; }
.vt::before { content: ''; position: absolute; left: 27px; top: 8px; bottom: 8px; width: 1px; background: var(--line); }
.vt-step { position: relative; padding-left: 74px; padding-bottom: 46px; }
.vt-step:last-child { padding-bottom: 0; }
.vt-dot {
  position: absolute; left: 0; top: 0; width: 56px; height: 56px; border-radius: 50%;
  background: #fff; border: 2px solid var(--coral); color: var(--coral2);
  display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 16px;
}
.vt-step h3 { font-size: 18px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.vt-step p { font-size: 14.5px; color: var(--muted); max-width: 480px; }

/* ── CLOSER (CTA band, links to /kontakt) ── */
.closer { background: var(--ink); padding: 88px 32px; text-align: center; position: relative; overflow: hidden; }
.closer::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 0%, rgba(255,94,58,.16) 0%, transparent 60%); }
.closer h2 { position: relative; font-size: clamp(1.7rem, 3.4vw, 2.7rem); font-weight: 700; color: #fff; margin-bottom: 14px; }
.closer h2 em { font-style: normal; color: var(--coral); }
.closer p { position: relative; font-size: 15.5px; color: rgba(255,255,255,.5); margin-bottom: 30px; }
.closer .btn { position: relative; }
.closer-note { position: relative; margin-top: 16px; font-size: 12.5px; color: rgba(255,255,255,.32); }

/* ── FOOTER (single centered column, not grid) ── */
.site-foot { background: #0f0e18; color: rgba(255,255,255,.5); padding: 56px 32px 28px; text-align: center; }
.foot-brand { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.foot-brand .brand-name { color: #fff; }
.foot-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 22px; margin-bottom: 28px; }
.foot-links a { font-size: 13.5px; color: rgba(255,255,255,.55); }
.foot-links a:hover { color: #fff; }
.foot-rule { max-width: 480px; margin: 0 auto 22px; border: none; border-top: 1px solid rgba(255,255,255,.08); }
.foot-fine { font-size: 12px; color: rgba(255,255,255,.32); line-height: 1.8; }

/* ── COOKIE BANNER ── */
.cookie-banner { position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%); width: calc(100% - 40px); max-width: 640px; background: var(--ink); color: rgba(255,255,255,.75); border-radius: var(--r2); padding: 18px 22px; display: flex; flex-wrap: wrap; align-items: center; gap: 16px; box-shadow: 0 8px 40px rgba(0,0,0,.4); z-index: 500; font-size: 13.5px; line-height: 1.5; border: 1px solid rgba(255,94,58,.2); }
.cookie-banner.hidden { display: none; }
.cookie-banner p { flex: 1; min-width: 200px; }
.cookie-banner a { color: var(--coral); }
.cookie-actions { display: flex; gap: 10px; }
.cookie-btn { padding: 8px 18px; border-radius: 8px; font-size: 13px; font-weight: 700; cursor: pointer; border: none; font-family: inherit; }
.cookie-accept { background: var(--coral); color: #fff; }
.cookie-accept:hover { background: var(--coral2); }
.cookie-reject { background: rgba(255,255,255,.1); color: rgba(255,255,255,.7); }
.cookie-reject:hover { background: rgba(255,255,255,.15); }

/* ── CONTACT FORM (inline on page, not modal) ── */
.form-card { background: #fff; border: 1px solid var(--border); border-radius: var(--r2); padding: 40px; box-shadow: 0 20px 60px rgba(22,21,32,.06); }
.form-row { margin-bottom: 16px; }
.form-row label { display: block; font-size: 12.5px; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.form-row input, .form-row select, .form-row textarea { width: 100%; padding: 12px 14px; border: 1.5px solid var(--border); border-radius: var(--r); font-size: 14.5px; font-family: inherit; color: var(--ink); background: #fff; outline: none; transition: border-color .15s; }
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { border-color: var(--coral); }
.form-row textarea { resize: vertical; min-height: 110px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 16px; }
.form-consent { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 20px; }
.form-consent input[type="checkbox"] { width: 16px; height: 16px; min-width: 16px; margin-top: 3px; cursor: pointer; accent-color: var(--coral); }
.form-consent label { font-size: 12.5px; color: var(--muted); line-height: 1.5; cursor: pointer; }
.form-consent label a { color: var(--coral2); }
.form-submit { width: 100%; padding: 15px; background: var(--coral); color: #fff; font-weight: 700; font-size: 15px; font-family: inherit; border: none; border-radius: var(--r); cursor: pointer; transition: background .15s; }
.form-submit:hover { background: var(--coral2); }
.form-note { text-align: center; font-size: 12px; color: var(--muted); margin-top: 12px; }
.form-success { display: none; text-align: center; padding: 30px 0; }
.form-success .success-icon { font-size: 48px; margin-bottom: 14px; }
.form-success h3 { font-size: 22px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.form-success p { font-size: 14.5px; color: var(--muted); line-height: 1.6; }

.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: start; }
.contact-info h1 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); font-weight: 700; color: var(--ink); margin-bottom: 16px; line-height: 1.18; }
.contact-info > p { font-size: 15px; color: var(--muted); margin-bottom: 30px; line-height: 1.75; max-width: 420px; }
.contact-block { display: flex; gap: 16px; padding: 18px 0; border-top: 1px solid var(--line); }
.contact-block:last-child { border-bottom: 1px solid var(--line); }
.contact-block-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--sand); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.contact-block h4 { font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 2px; }
.contact-block p, .contact-block a { font-size: 13.5px; color: var(--muted); }

/* ── SUB-PAGE HEADER ── */
.page-hero { background: var(--ink); padding: 64px 32px 56px; position: relative; overflow: hidden; }
.page-hero::after { content: ''; position: absolute; top: -30%; right: -8%; width: 46%; height: 160%; background: radial-gradient(ellipse, rgba(255,94,58,.14) 0%, transparent 65%); pointer-events: none; }
.page-hero-inner { position: relative; max-width: var(--maxw); margin: 0 auto; }
.page-hero h1 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); font-weight: 700; color: #fff; line-height: 1.15; max-width: 640px; }
.page-hero p { font-size: 15.5px; color: rgba(255,255,255,.55); margin-top: 14px; max-width: 560px; }

/* ── ZIGZAG (Leistungen detail rows) ── */
.zigzag { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding: 56px 0; border-top: 1px solid var(--line); }
.zigzag:last-child { border-bottom: 1px solid var(--line); }
.zigzag.rev .zz-visual { order: 2; }
.zz-idx { font-size: 13px; font-weight: 800; color: var(--coral2); letter-spacing: .5px; margin-bottom: 10px; }
.zz-text h3 { font-size: 26px; font-weight: 700; color: var(--ink); margin-bottom: 12px; }
.zz-text p { font-size: 15px; color: var(--muted); line-height: 1.75; margin-bottom: 18px; }
.zz-list { display: flex; flex-direction: column; gap: 9px; }
.zz-list li { list-style: none; font-size: 13.5px; color: #3d3540; display: flex; gap: 9px; align-items: flex-start; }
.zz-list li::before { content: '✓'; color: var(--coral2); font-weight: 800; flex-shrink: 0; }
.zz-visual { background: var(--sand); border-radius: var(--r2); padding: 40px; min-height: 220px; display: flex; align-items: center; justify-content: center; font-size: 68px; }

/* ── LEGAL PAGES ── */
.legal-head { background: var(--paper); border-bottom: 1px solid var(--border); padding: 52px 32px 34px; }
.legal-head h1 { font-size: clamp(1.7rem, 3vw, 2.3rem); font-weight: 700; color: var(--ink); }
.legal-body { max-width: 720px; margin: 0 auto; padding: 44px 32px 96px; }
.legal-updated { font-size: 13px; color: var(--muted); margin-bottom: 10px; }
.legal-body h2 { font-size: 1.15rem; font-weight: 700; color: var(--ink); margin: 34px 0 10px; padding-bottom: 8px; border-bottom: 1px solid var(--line); }
.legal-body h3 { font-size: 1rem; font-weight: 700; color: var(--coral2); margin: 20px 0 8px; }
.legal-body p { font-size: 14.5px; color: #4a4148; line-height: 1.8; margin-bottom: 14px; }
.legal-body a { color: var(--coral2); text-decoration: underline; }
.legal-box { background: var(--paper); border: 1px solid var(--border); border-radius: var(--r); padding: 20px 22px; margin: 14px 0 24px; }
.legal-box p { margin-bottom: 6px; }
.legal-box p:last-child { margin-bottom: 0; }

/* ── RESPONSIVE ── */
@media (max-width: 980px) {
  .intro-grid { grid-template-columns: 1fr; }
  .intro-figure { max-width: 460px; margin: 0 auto; }
  .numbers-strip { flex-wrap: wrap; }
  .numbers-strip .num-item { flex: 1 1 50%; border-bottom: 1px solid rgba(255,255,255,.09); }
  .diff-grid, .story-grid, .contact-grid, .zigzag { grid-template-columns: 1fr; }
  .zigzag.rev .zz-visual { order: 0; }
  .offering-row { grid-template-columns: 56px 1fr; }
  .offering-tags { grid-column: 1 / -1; justify-content: flex-start; margin-top: 4px; }
  .fact { min-width: 45%; }
}
@media (max-width: 700px) {
  .main-nav { display: none; }
  .burger { display: flex; }
  .blk { padding: 64px 20px; }
  .wrap { padding: 0 20px; }
  .intro-grid { padding: 56px 20px 0; }
  .numbers-strip { padding: 0 20px; }
  .closer { padding: 64px 20px; }
  .form-row-2 { grid-template-columns: 1fr; }
  .fact { min-width: 100%; }
  .legal-body { padding: 36px 20px 64px; }
}
