/* =========================================================
   Kalena Studio – zentrales Stylesheet
   Farben: Gold #c8a96a · Dunkel #090706
   Schriften: Cinzel (Headlines) · Montserrat (Text)
   ========================================================= */

/* ---------- Schriften (selbst gehostet, DSGVO-konform) ---------- */
@font-face {
  font-family: "Cinzel";
  src: url("../fonts/Cinzel.ttf") format("truetype");
  font-weight: 400 900;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat.ttf") format("truetype");
  font-weight: 100 900;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Italic.ttf") format("truetype");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

/* ---------- Design-Tokens ---------- */
:root {
  --gold: #c8a96a;
  --gold-soft: #d8bf8e;
  --dark: #090706;
  --dark-2: #12100d;
  --dark-3: #1c1813;
  --line: rgba(200, 169, 106, 0.28);
  --text: #ece7df;
  --text-muted: #b3aca0;
  --maxw: 1180px;
  --space: clamp(4rem, 9vw, 8rem);
  --radius: 2px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--dark);
  color: var(--text);
  line-height: 1.75;
  font-weight: 300;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ---------- Typografie ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: "Cinzel", serif;
  font-weight: 500;
  line-height: 1.2;
  color: var(--text);
  letter-spacing: 0.04em;
}
h1 { font-size: clamp(2.1rem, 5.4vw, 4rem); }
h2 { font-size: clamp(1.7rem, 3.8vw, 2.7rem); }
h3 { font-size: clamp(1.3rem, 2.6vw, 1.9rem); }
h4 { font-size: clamp(1.05rem, 1.8vw, 1.3rem); }
p { color: var(--text-muted); font-size: clamp(1rem, 1.2vw, 1.08rem); }
.lead { font-size: clamp(1.1rem, 1.6vw, 1.35rem); color: var(--text); line-height: 1.7; }

.eyebrow {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.42em;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--gold);
  display: inline-block;
  margin-bottom: 1.2rem;
}
.gold { color: var(--gold); }
.serif-accent { font-family: "Cinzel", serif; color: var(--gold); }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(1.2rem, 5vw, 3rem); }
section { padding-block: var(--space); }
.center { text-align: center; }
.narrow { max-width: 760px; margin-inline: auto; }

.divider {
  width: 64px; height: 1px; background: var(--gold);
  margin: 1.6rem auto; opacity: 0.6;
}
.divider.left { margin-inline: 0; }

/* ---------- Buttons ---------- */
.btn {
  --pad-y: 0.95rem; --pad-x: 2.4rem;
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: var(--pad-y) var(--pad-x);
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
  cursor: pointer;
  transition: all 0.35s ease;
}
.btn:hover { background: var(--gold); color: var(--dark); }
.btn--solid { background: var(--gold); color: var(--dark); }
.btn--solid:hover { background: var(--gold-soft); border-color: var(--gold-soft); }
.btn--block { display: block; width: 100%; text-align: center; }

/* ---------- Header / Navigation ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem clamp(1.2rem, 5vw, 3rem);
  background: rgba(9, 7, 6, 0.72);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200, 169, 106, 0.14);
  transition: background 0.4s ease;
}
.site-header .brand { display: flex; align-items: center; gap: 0.75rem; }
.site-header .brand img { height: 46px; width: auto; }
.site-header .brand .brand-text {
  font-family: "Cinzel", serif; font-size: 1.05rem; letter-spacing: 0.22em;
  color: var(--text); text-transform: uppercase;
}
.nav { display: flex; align-items: center; gap: 2.2rem; }
.nav a {
  font-family: "Montserrat", sans-serif; font-size: 0.75rem; font-weight: 400;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--text-muted);
  position: relative; padding-bottom: 4px; transition: color 0.3s;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--gold); transition: width 0.3s ease;
}
.nav a:hover, .nav a.active { color: var(--gold); }
.nav a:hover::after, .nav a.active::after { width: 100%; }
.nav .btn { padding: 0.6rem 1.4rem; color: var(--gold); }
.nav .btn:hover { color: var(--dark); }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 0.4rem; z-index: 110; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--gold); margin: 5px 0; transition: 0.3s; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  padding-top: 6rem;
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 25%; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(9,7,6,0.55) 0%, rgba(9,7,6,0.35) 40%, rgba(9,7,6,0.92) 100%);
}
.hero__inner { max-width: 720px; }
.hero h1 { margin-bottom: 1.4rem; }
.hero .lead { margin-bottom: 2.4rem; max-width: 560px; }
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ---------- Text-Blöcke ---------- */
.prose p + p { margin-top: 1.2rem; }
.prose p { color: var(--text-muted); }
.section-head { max-width: 720px; }
.section-head.center { margin-inline: auto; }
.section-head h2 { margin-bottom: 1.2rem; }

/* Wechselnde Bild/Text-Zeilen */
.split {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.split--reverse .split__media { order: 2; }
.split__media img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  border: 1px solid var(--line);
}
.split__body h2 { margin-bottom: 1.4rem; }

/* Value-Liste mit goldenen Haken */
.check-list { list-style: none; margin-top: 1.6rem; display: grid; gap: 0.9rem; }
.check-list li { position: relative; padding-left: 2rem; color: var(--text); }
.check-list li::before {
  content: ""; position: absolute; left: 0; top: 0.55em;
  width: 12px; height: 6px; border-left: 1.5px solid var(--gold);
  border-bottom: 1.5px solid var(--gold); transform: rotate(-45deg);
}

/* Feature-Grid (3 Werte) */
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 3rem; }
.feature {
  border: 1px solid var(--line); padding: 2rem 1.5rem; text-align: center;
  background: var(--dark-2); transition: border-color 0.3s, transform 0.3s;
}
.feature:hover { border-color: var(--gold); transform: translateY(-4px); }
.feature h3 { font-size: 1.15rem; color: var(--gold); margin-bottom: 0.6rem; letter-spacing: 0.08em; }
.feature p { font-size: 0.95rem; }

/* Statement-Section (großes Zitat) */
.statement { background: var(--dark-2); border-block: 1px solid rgba(200,169,106,0.14); }
.statement blockquote { font-family: "Cinzel", serif; font-size: clamp(1.5rem, 3.4vw, 2.4rem); line-height: 1.4; color: var(--text); }
.statement blockquote .gold { display: block; margin-top: 0.6rem; }

/* Galerie */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2.5rem; }
.gallery img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border: 1px solid var(--line); transition: transform 0.5s, filter 0.5s; }
.gallery img:hover { transform: scale(1.02); filter: brightness(1.08); }
.gallery--4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- Preise ---------- */
.price-intro { margin-bottom: 3rem; }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; align-items: stretch; }
.price-card {
  border: 1px solid var(--line); background: var(--dark-2);
  padding: 2.4rem 2rem; display: flex; flex-direction: column;
  transition: border-color 0.3s, transform 0.3s;
}
.price-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.price-card--featured { border-color: var(--gold); background: var(--dark-3); position: relative; }
.price-card--featured::before {
  content: "Beliebt"; position: absolute; top: -0.8rem; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--dark); font-family: "Montserrat"; font-size: 0.65rem;
  letter-spacing: 0.2em; text-transform: uppercase; padding: 0.3rem 1rem;
}
.price-card .tier { font-family: "Cinzel", serif; font-size: 1.5rem; color: var(--gold); letter-spacing: 0.06em; }
.price-card .tier-sub { font-size: 0.85rem; color: var(--text-muted); margin-top: 0.4rem; min-height: 2.6em; }
.price-card .price { font-family: "Cinzel", serif; font-size: 2.4rem; color: var(--text); margin: 1.4rem 0 0.4rem; }
.price-card .price small { font-size: 0.85rem; color: var(--text-muted); font-family: "Montserrat"; }
.price-card ul { list-style: none; margin: 1.6rem 0 2rem; display: grid; gap: 0.7rem; }
.price-card ul li { position: relative; padding-left: 1.6rem; font-size: 0.92rem; color: var(--text-muted); }
.price-card ul li::before { content: ""; position: absolute; left: 0; top: 0.5em; width: 9px; height: 5px; border-left: 1.5px solid var(--gold); border-bottom: 1.5px solid var(--gold); transform: rotate(-45deg); }
.price-card .btn { margin-top: auto; }

.addons { margin-top: 2.5rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.addon { border: 1px solid var(--line); padding: 1.5rem; background: var(--dark-2); }
.addon strong { color: var(--gold); font-family: "Cinzel", serif; letter-spacing: 0.04em; }
.addon span { display: block; color: var(--text-muted); font-size: 0.9rem; margin-top: 0.4rem; }

.note-box { border-left: 2px solid var(--gold); padding: 1.2rem 1.6rem; background: var(--dark-2); margin-top: 2.5rem; }
.note-box p { color: var(--text); }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin-inline: auto; margin-top: 2.5rem; }
.faq details {
  border-bottom: 1px solid rgba(200,169,106,0.18); padding: 1.4rem 0;
}
.faq summary {
  font-family: "Cinzel", serif; font-size: 1.1rem; color: var(--text);
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  letter-spacing: 0.03em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--gold); font-family: "Montserrat"; font-size: 1.5rem; transition: transform 0.3s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin-top: 1rem; }

/* ---------- CTA-Band ---------- */
.cta-band { background: var(--dark-2); border-block: 1px solid rgba(200,169,106,0.16); text-align: center; }
.cta-band h2 { margin-bottom: 1.2rem; }
.cta-band p { max-width: 620px; margin: 0 auto 2rem; }

/* ---------- Kontaktformular ---------- */
.form-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.contact-form { display: grid; gap: 1.3rem; }
.field label { display: block; font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; }
.field input, .field select, .field textarea {
  width: 100%; background: var(--dark-2); border: 1px solid var(--line); color: var(--text);
  font-family: "Montserrat", sans-serif; font-size: 0.98rem; padding: 0.9rem 1rem; border-radius: var(--radius);
  transition: border-color 0.3s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); }
.field textarea { min-height: 150px; resize: vertical; }
.field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%), linear-gradient(135deg, var(--gold) 50%, transparent 50%); background-position: calc(100% - 20px) center, calc(100% - 14px) center; background-size: 6px 6px, 6px 6px; background-repeat: no-repeat; }
.form-consent { display: flex; gap: 0.7rem; align-items: flex-start; font-size: 0.85rem; color: var(--text-muted); }
.form-consent input { width: auto; margin-top: 0.3rem; accent-color: var(--gold); }
.contact-aside p + p { margin-top: 1.1rem; }
.contact-detail { display: flex; align-items: center; gap: 0.8rem; margin-top: 1rem; color: var(--text); }
.contact-detail .gold { font-family: "Cinzel", serif; }

/* ---------- Footer ---------- */
.site-footer { background: var(--dark-2); border-top: 1px solid rgba(200,169,106,0.16); padding-block: 4rem 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; }
.footer-brand img { height: 60px; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.92rem; max-width: 320px; }
.footer-col h4 { font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; }
.footer-col a { display: block; color: var(--text-muted); font-size: 0.92rem; margin-bottom: 0.7rem; transition: color 0.3s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(200,169,106,0.12); margin-top: 3rem; padding-top: 1.6rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; font-size: 0.8rem; color: var(--text-muted); }
.footer-bottom a { color: var(--text-muted); }
.footer-bottom a:hover { color: var(--gold); }

/* ---------- Instagram-Band ---------- */
.insta { text-align: center; }
.insta a.handle { font-family: "Cinzel", serif; color: var(--gold); font-size: 1.3rem; letter-spacing: 0.1em; display: inline-block; margin-top: 0.6rem; }

/* ---------- Reveal-Animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Rechtstexte ---------- */
.legal { padding-top: 9rem; }
.legal h1 { margin-bottom: 2rem; }
.legal h2 { font-size: 1.4rem; margin: 2.5rem 0 1rem; color: var(--gold); }
.legal p, .legal li { color: var(--text-muted); margin-bottom: 0.8rem; }
.legal ul { padding-left: 1.4rem; }
.legal a { color: var(--gold); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .nav {
    position: fixed; inset: 0 0 0 auto; width: min(78vw, 340px); flex-direction: column;
    justify-content: center; align-items: flex-start; gap: 2rem; padding: 3rem;
    background: var(--dark-2); border-left: 1px solid var(--line);
    transform: translateX(100%); transition: transform 0.4s ease;
  }
  .nav.open { transform: translateX(0); }
  .nav a { font-size: 0.9rem; }
  .nav-toggle { display: block; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .price-grid { grid-template-columns: 1fr; }
  .addons { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .form-wrap { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .gallery, .gallery--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .feature-grid { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; text-align: center; }
  .site-header .brand .brand-text { display: none; }
}
