/* Gosteo one-pager — "Adriatische Abendrezeption"
   Palette: dubina (Abendmeer) / kamen (Kalkstein) / mjed (Messing) / more (Türkis) */

:root {
  --dubina: #132a3e;
  --dubina-2: #0e2233;
  --kamen: #f1ede4;
  --bijela: #fbfaf7;
  --mjed: #b98a47;
  --mjed-hell: #d9b984;
  --more: #2c7a8c;
  --more-dunkel: #1f5e6d;
  --tinta: #22303c;
  --tinta-soft: #55636f;
  --linie: #e0d9c9;
  --radius: 14px;
  --max: 1080px;
  --display: "Newsreader", Georgia, "Times New Roman", serif;
  --body: "Source Sans 3", system-ui, -apple-system, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; margin: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  color: var(--tinta);
  background: var(--kamen);
  line-height: 1.6;
  font-size: 17px;
}

img { max-width: 100%; }

a { color: var(--more); }
a:hover { color: var(--more-dunkel); }

:focus-visible {
  outline: 3px solid var(--more);
  outline-offset: 2px;
  border-radius: 3px;
}

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

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

.site-head {
  background: var(--dubina);
  color: var(--bijela);
}

.site-head .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 18px;
  padding-bottom: 4px;
}

.wordmark {
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.55rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bijela);
  text-decoration: none;
}

.wordmark b { color: var(--mjed-hell); font-weight: 500; }

.lang {
  display: flex;
  gap: 2px;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
}

.lang a, .lang span {
  color: #b8c4cf;
  text-decoration: none;
  padding: 4px 8px;
  border-radius: 6px;
}

.lang span[aria-current] {
  color: var(--dubina);
  background: var(--mjed-hell);
  font-weight: 600;
}

.lang a:hover { color: var(--bijela); background: rgba(255, 255, 255, 0.08); }

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

.hero {
  background:
    radial-gradient(1100px 480px at 82% -12%, rgba(44, 122, 140, 0.35), transparent 65%),
    radial-gradient(700px 380px at -8% 108%, rgba(185, 138, 71, 0.18), transparent 60%),
    var(--dubina);
  color: var(--bijela);
  overflow: hidden;
}

.hero .wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
  padding-top: 64px;
  padding-bottom: 88px;
}

.eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mjed-hell);
  margin-bottom: 18px;
}

.hero h1 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(2.1rem, 4.6vw, 3.3rem);
  line-height: 1.14;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}

.hero h1 em {
  font-style: italic;
  color: var(--mjed-hell);
}

.hero .lead {
  font-size: 1.13rem;
  color: #ccd6de;
  max-width: 46ch;
  margin-bottom: 32px;
}

.cta-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

.btn {
  display: inline-block;
  font-weight: 600;
  text-decoration: none;
  border-radius: 999px;
  padding: 13px 26px;
  font-size: 1rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

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

.btn-mjed {
  background: var(--mjed);
  color: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.btn-mjed:hover { color: #fff; background: #c69754; }

.btn-ghost {
  color: var(--bijela);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn-ghost:hover { color: var(--bijela); border-color: rgba(255, 255, 255, 0.7); }

.hero-note { font-size: 0.9rem; color: #9fb0bd; margin-top: 18px; }

/* ---------- 23:47-Vignette (Signatur) ---------- */

.vignette {
  background: var(--bijela);
  color: var(--tinta);
  border-radius: 18px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4);
  padding: 22px 22px 18px;
  position: relative;
  min-height: 320px;
}

.vignette-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px solid var(--linie);
  padding-bottom: 12px;
  margin-bottom: 6px;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: var(--tinta-soft);
}

.vignette-head .sat {
  font-family: var(--display);
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  color: var(--dubina);
}

.pairs { position: relative; min-height: 230px; }

.pair {
  position: absolute;
  inset: 0;
  opacity: 0;
  animation: pairCycle 15s infinite;
  padding-top: 14px;
}

.pair:nth-child(2) { animation-delay: 5s; }
.pair:nth-child(3) { animation-delay: 10s; }

@keyframes pairCycle {
  0% { opacity: 0; }
  4% { opacity: 1; }
  30% { opacity: 1; }
  36% { opacity: 0; }
  100% { opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .pair { animation: none; }
  .pair:first-child { opacity: 1; }
  .btn, .btn:hover { transition: none; transform: none; }
}

.bubble {
  max-width: 88%;
  padding: 11px 15px;
  border-radius: 14px;
  font-size: 0.98rem;
  line-height: 1.45;
  margin-bottom: 10px;
}

.bubble.gost {
  background: var(--kamen);
  border-bottom-left-radius: 4px;
}

.bubble.bot {
  background: var(--more);
  color: #fff;
  margin-left: auto;
  border-bottom-right-radius: 4px;
}

.pair .meta {
  font-size: 0.8rem;
  color: var(--tinta-soft);
  margin-bottom: 6px;
}

/* ---------- Sektionen ---------- */

section { padding: 72px 0; }

.sec-head { max-width: 640px; margin-bottom: 44px; }

.sec-head h2 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.2;
  color: var(--dubina);
  margin-bottom: 12px;
}

.sec-head h2::after {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  background: var(--mjed);
  margin-top: 14px;
  border-radius: 2px;
}

.sec-head p { color: var(--tinta-soft); font-size: 1.05rem; }

/* Schritte */

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

.step {
  background: var(--bijela);
  border-radius: var(--radius);
  padding: 26px 24px;
  border: 1px solid var(--linie);
}

.step .num {
  font-family: var(--display);
  font-size: 2rem;
  color: var(--mjed);
  line-height: 1;
  margin-bottom: 12px;
}

.step h3 { font-size: 1.08rem; margin-bottom: 8px; color: var(--dubina); }
.step p { font-size: 0.95rem; color: var(--tinta-soft); }

/* Kernversprechen */

.features { background: var(--dubina); color: var(--bijela); }
.features .sec-head h2 { color: var(--bijela); }
.features .sec-head p { color: #b8c4cf; }

.feat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }

.feat {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 24px;
}

.feat h3 { font-size: 1.05rem; margin-bottom: 8px; color: var(--mjed-hell); }
.feat p { font-size: 0.95rem; color: #ccd6de; }

/* ROI */

.roi .wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.roi-card {
  background: var(--bijela);
  border: 1px solid var(--linie);
  border-left: 4px solid var(--mjed);
  border-radius: var(--radius);
  padding: 28px;
  font-size: 1.02rem;
}

.roi-card .row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 9px 0;
  border-bottom: 1px dashed var(--linie);
}

.roi-card .row:last-child { border-bottom: 0; font-weight: 700; color: var(--dubina); }

/* Preise */

.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }

.price {
  background: var(--bijela);
  border: 1px solid var(--linie);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
}

.price.pilot {
  border: 2px solid var(--mjed);
  box-shadow: 0 16px 40px rgba(185, 138, 71, 0.18);
  position: relative;
}

.price.pilot .ribbon {
  position: absolute;
  top: -13px;
  left: 24px;
  background: var(--mjed);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
}

.price h3 { font-size: 1.05rem; color: var(--dubina); margin-bottom: 6px; }

.price .amount {
  font-family: var(--display);
  font-size: 2rem;
  color: var(--dubina);
  margin: 8px 0 2px;
}

.price .amount small { font-size: 1rem; font-family: var(--body); color: var(--tinta-soft); }

.price ul { padding-left: 18px; margin: 14px 0 18px; color: var(--tinta-soft); font-size: 0.93rem; }
.price li { margin-bottom: 7px; }

.price .foot { margin-top: auto; font-size: 0.85rem; color: var(--tinta-soft); }

/* Über */

.about .wrap { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 48px; align-items: center; }

.portrait {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  background:
    linear-gradient(160deg, rgba(44, 122, 140, 0.25), rgba(19, 42, 62, 0.7)),
    var(--dubina-2);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  color: #b8c4cf;
  font-size: 0.85rem;
  border: 1px solid var(--linie);
}

.about h2 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  color: var(--dubina);
  margin-bottom: 16px;
}

.about p { margin-bottom: 14px; color: var(--tinta); }

.badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }

.badge {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--more-dunkel);
  background: rgba(44, 122, 140, 0.1);
  border: 1px solid rgba(44, 122, 140, 0.3);
  padding: 6px 12px;
  border-radius: 999px;
}

/* FAQ */

.faq details {
  background: var(--bijela);
  border: 1px solid var(--linie);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin-bottom: 12px;
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--dubina);
  font-size: 1.02rem;
}

.faq details[open] summary { margin-bottom: 10px; }
.faq details p { color: var(--tinta-soft); font-size: 0.97rem; }

/* Kontakt */

.contact { background: var(--dubina); color: var(--bijela); text-align: center; }

.contact h2 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  margin-bottom: 14px;
}

.contact p { color: #ccd6de; max-width: 54ch; margin: 0 auto 28px; }

.contact .cta-row { justify-content: center; }

.contact .fine { font-size: 0.88rem; color: #9fb0bd; margin-top: 22px; }

/* Footer */

footer {
  background: var(--dubina-2);
  color: #9fb0bd;
  font-size: 0.85rem;
  padding: 26px 0;
}

footer .wrap { display: flex; flex-wrap: wrap; gap: 18px; justify-content: space-between; }

footer a { color: #b8c4cf; text-decoration: none; margin-left: 18px; }
footer a:first-child { margin-left: 0; }
footer a:hover { color: var(--bijela); }

/* Legal-Seite */

.legal { padding: 56px 0; }
.legal .wrap { max-width: 760px; }
.legal h1 { font-family: var(--display); font-weight: 500; color: var(--dubina); margin-bottom: 8px; }
.legal h2 { font-family: var(--display); font-weight: 500; color: var(--dubina); margin: 40px 0 10px; }
.legal h3 { margin: 22px 0 6px; color: var(--dubina); }
.legal p, .legal li { color: var(--tinta-soft); font-size: 0.97rem; }
.legal hr { border: 0; border-top: 1px solid var(--linie); margin: 44px 0; }

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

@media (max-width: 880px) {
  .hero .wrap { grid-template-columns: 1fr; gap: 40px; padding-top: 44px; padding-bottom: 60px; }
  .steps, .price-grid { grid-template-columns: 1fr; }
  .feat-grid { grid-template-columns: 1fr; }
  .roi .wrap, .about .wrap { grid-template-columns: 1fr; gap: 32px; }
  .portrait { max-width: 340px; }
  section { padding: 52px 0; }
}
