/* ==========================================================================
   Mietstudio VS – Stylesheet
   Farbwelt: Anthrazit/Schwarz + Weiß, dezenter warmer Akzent
   ========================================================================== */

:root {
  --ink:        #1c1e22;   /* dunkles Anthrazit, wie das Logo */
  --ink-soft:   #2a2d33;
  --ink-deep:   #141519;
  --paper:      #ffffff;
  --paper-warm: #f6f4f1;   /* warmer Weißton für Abschnitte */
  --line:       #e3e0db;
  --muted:      #6c6f76;
  --accent:     #c8a24a;   /* gedämpftes Gold als Akzent */
  --accent-dk:  #ab8633;

  --maxw: 1180px;
  --radius: 4px;
  --shadow: 0 18px 50px -20px rgba(20,21,25,.45);

  --serif: "Manrope", "Helvetica Neue", Arial, sans-serif;
  --sans:  "Manrope", "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; }

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 .4em;
}

h1 { font-size: clamp(2.4rem, 6vw, 4.6rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: 1.35rem; }

p { margin: 0 0 1.1em; }

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

.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: .28em;
  font-size: .72rem;
  font-weight: 500;
  color: var(--accent-dk);
  margin: 0 0 1.1em;
  display: block;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .8rem;
  font-weight: 500;
  text-decoration: none;
  padding: 15px 34px;
  border-radius: var(--radius);
  transition: all .25s ease;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn--solid { background: var(--ink); color: #fff; }
.btn--solid:hover { background: var(--accent-dk); transform: translateY(-2px); }
.btn--ghost { border-color: rgba(255,255,255,.5); color: #fff; }
.btn--ghost:hover { background: #fff; color: var(--ink); }
.btn--dark-ghost { border-color: var(--ink); color: var(--ink); }
.btn--dark-ghost:hover { background: var(--ink); color: #fff; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(28,30,34,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  height: 74px;
}
.site-header .logo img { height: 30px; width: auto; }
.nav { display: flex; gap: 30px; align-items: center; }
.nav a {
  color: #e8e6e2; text-decoration: none;
  text-transform: uppercase; letter-spacing: .12em;
  font-size: .78rem; font-weight: 400;
  transition: color .2s;
}
.nav a:hover { color: var(--accent); }
.nav a.is-active { color: var(--accent); }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: #fff; margin: 5px 0; transition: .3s; }

/* ---------- Hero (Startseite) ---------- */
.hero {
  position: relative;
  min-height: 78vh;
  display: flex; align-items: center;
  color: #fff; text-align: center;
  background: linear-gradient(rgba(20,21,25,.72), rgba(20,21,25,.78)),
              var(--hero-img, #1c1e22) center/cover no-repeat;
}
.hero .wrap { width: 100%; }
.hero h1 { color: #fff; max-width: 16ch; margin-inline: auto; }
.hero p { color: rgba(255,255,255,.82); max-width: 52ch; margin-inline: auto; font-size: 1.1rem; }
.hero .btn-row { margin-top: 2.2em; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- Studio-Auswahl (Startseite) ---------- */
.choose { padding: clamp(60px, 9vw, 120px) 0; }
.choose-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
}
.studio-card {
  position: relative; overflow: hidden; border-radius: var(--radius);
  min-height: 460px; display: flex; align-items: flex-end;
  text-decoration: none; color: #fff;
  box-shadow: var(--shadow);
}
.studio-card::before {
  content: ""; position: absolute; inset: 0;
  background: var(--card-img) center/cover no-repeat;
  transition: transform .7s ease;
}
.studio-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,21,25,.9) 8%, rgba(20,21,25,.15) 60%, rgba(20,21,25,.35));
}
.studio-card:hover::before { transform: scale(1.06); }
.studio-card .card-body { position: relative; z-index: 2; padding: 38px; width: 100%; }
.studio-card .tag {
  font-size: .72rem; letter-spacing: .25em; text-transform: uppercase;
  color: var(--accent); display: block; margin-bottom: .7em;
}
.studio-card h3 { font-size: 2.1rem; color: #fff; margin-bottom: .15em; }
.studio-card .card-desc { color: rgba(255,255,255,.85); font-size: .98rem; margin-bottom: 1.2em; }
.studio-card .card-link {
  font-size: .8rem; text-transform: uppercase; letter-spacing: .14em;
  border-bottom: 1px solid var(--accent); padding-bottom: 3px;
}
.studio-card--soon { pointer-events: none; }
.studio-card--soon .badge {
  position: absolute; top: 22px; right: 22px; z-index: 3;
  background: var(--accent); color: var(--ink);
  font-size: .68rem; letter-spacing: .18em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px; font-weight: 600;
}

/* ---------- Section / Intro ---------- */
.section { padding: clamp(60px, 9vw, 120px) 0; }
.section--warm { background: var(--paper-warm); }
.lead { font-size: 1.18rem; max-width: 60ch; color: #3a3d43; }
.center { text-align: center; }
.center .lead, .center .eyebrow { margin-inline: auto; }

.intro-split {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center;
}
.intro-split img { border-radius: var(--radius); box-shadow: var(--shadow); }

/* ---------- Fakten / Specs ---------- */
.specs {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px; background: var(--line);
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
}
.spec {
  background: #fff; padding: 30px 28px;
}
.spec h4 {
  font-family: var(--sans); text-transform: uppercase;
  letter-spacing: .16em; font-size: .72rem; color: var(--accent-dk);
  margin: 0 0 .8em; font-weight: 600;
}
.spec p { margin: 0; font-size: .98rem; color: #3a3d43; line-height: 1.55; }

/* ---------- Equipment-Liste ---------- */
.equip-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 14px 34px; margin-top: 1.5em;
}
.equip-grid li {
  list-style: none; padding-left: 26px; position: relative;
  font-size: .98rem; color: #3a3d43; line-height: 1.5;
}
.equip-grid li::before {
  content: ""; position: absolute; left: 0; top: .55em;
  width: 9px; height: 9px; border: 1.5px solid var(--accent); border-radius: 50%;
}
.equip-grid { padding: 0; margin-left: 0; }

/* ---------- Galerie ---------- */
.gallery {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
}
.gallery a {
  display: block; overflow: hidden; border-radius: var(--radius);
  aspect-ratio: 3/2; background: var(--paper-warm);
}
.gallery img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.gallery a:hover img { transform: scale(1.05); }

/* Lightbox */
.lb {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(15,16,19,.94);
  display: none; align-items: center; justify-content: center;
  padding: 30px;
}
.lb.open { display: flex; }
.lb img { max-width: 92vw; max-height: 88vh; border-radius: var(--radius); }
.lb-close { position: absolute; top: 22px; right: 28px; color: #fff; font-size: 2rem; cursor: pointer; background: none; border: 0; }
.lb-nav { position: absolute; top: 50%; transform: translateY(-50%); color: #fff; font-size: 2.6rem; cursor: pointer; background: none; border: 0; padding: 0 20px; opacity: .7; }
.lb-nav:hover { opacity: 1; }
.lb-prev { left: 4px; } .lb-next { right: 4px; }

/* ---------- Preise ---------- */
.price-band {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 28px; margin-top: 2em;
}
.price-item { text-align: center; }
.price-item .amount { font-family: var(--serif); font-size: 3rem; font-weight: 600; letter-spacing: -.02em; color: var(--ink); line-height: 1; }
.price-item .amount span { font-size: 1.1rem; color: var(--muted); }
.price-item .label { display:block; margin-top:.6em; font-size:.85rem; letter-spacing:.08em; text-transform:uppercase; color: var(--muted); }
.price-note { text-align:center; margin-top: 2em; color: var(--muted); font-size:.95rem; }

/* ---------- Kalender ---------- */
.calendar-frame {
  border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
}
.calendar-frame iframe { width: 100%; height: 600px; border: 0; display: block; }

/* ---------- Kontakt ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-list { list-style: none; padding: 0; margin: 1.5em 0 0; }
.contact-list li { display: flex; gap: 14px; margin-bottom: 1.1em; align-items: flex-start; }
.contact-list a { text-decoration: none; border-bottom: 1px solid var(--line); }
.contact-list a:hover { border-color: var(--accent); }
.contact-ico { color: var(--accent-dk); flex: 0 0 auto; margin-top: 3px; }

/* ---------- CTA-Band ---------- */
.cta-band {
  background: var(--ink); color: #fff; text-align: center;
  padding: clamp(60px, 8vw, 100px) 0;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.78); max-width: 50ch; margin-inline: auto; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink-deep); color: rgba(255,255,255,.7); padding: 56px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.site-footer img { height: 30px; margin-bottom: 18px; }
.site-footer h4 { color: #fff; font-family: var(--sans); font-size: .78rem; text-transform: uppercase; letter-spacing: .16em; margin: 0 0 1.1em; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: .6em; font-size: .92rem; }
.site-footer a { color: rgba(255,255,255,.7); text-decoration: none; }
.site-footer a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 22px; font-size: .82rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }

/* ---------- Reveal-Animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Breadcrumb ---------- */
.crumb { padding: 26px 0 0; font-size: .82rem; letter-spacing: .06em; color: var(--muted); }
.crumb a { text-decoration: none; }
.crumb a:hover { color: var(--accent-dk); }

/* ---------- Page-Hero (Unterseiten) ---------- */
.page-hero {
  position: relative; color: #fff; padding: clamp(70px, 11vw, 150px) 0 clamp(50px,7vw,90px);
  background: linear-gradient(rgba(20,21,25,.6), rgba(20,21,25,.82)),
              var(--hero-img, #1c1e22) center/cover no-repeat;
}
.page-hero h1 { color: #fff; }
.page-hero .eyebrow { color: var(--accent); }
.page-hero p { color: rgba(255,255,255,.85); max-width: 56ch; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .nav { 
    position: fixed; inset: 74px 0 auto 0; flex-direction: column;
    background: var(--ink); padding: 24px; gap: 20px;
    transform: translateY(-130%); transition: transform .35s ease; z-index: 40;
  }
  .nav.open { transform: translateY(0); }
  .nav-toggle { display: block; }
  .intro-split { grid-template-columns: 1fr; gap: 32px; }
  .choose-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .gallery { grid-template-columns: 1fr; }
  body { font-size: 16px; }
}

/* ==========================================================================
   Anfrageformular
   ========================================================================== */
.form-wrap {
  max-width: 760px; margin: 0 auto;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow);
  padding: clamp(28px, 5vw, 52px);
}
.aform { display: grid; gap: 22px; }
.aform .row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.aform .row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label {
  font-size: .76rem; text-transform: uppercase; letter-spacing: .12em;
  color: var(--ink); font-weight: 500;
}
.field label .req { color: var(--accent-dk); }
.field input,
.field select,
.field textarea {
  font-family: var(--sans); font-size: 1rem; color: var(--ink);
  background: var(--paper-warm);
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 13px 14px; width: 100%;
  transition: border-color .2s, background .2s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none; border-color: var(--accent); background: #fff;
}
.field textarea { resize: vertical; min-height: 110px; }

/* Honeypot (für Menschen unsichtbar) */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* Checkboxen */
.check {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: .95rem; color: #3a3d43; line-height: 1.5;
}
.check input[type="checkbox"] {
  width: 20px; height: 20px; margin-top: 2px; flex: 0 0 auto;
  accent-color: var(--accent-dk); cursor: pointer;
}
.check a { color: var(--accent-dk); }
.check-group {
  display: grid; gap: 14px;
  background: var(--paper-warm); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 20px 22px;
}
.consent-divider {
  border: 0; border-top: 1px solid var(--line); margin: 4px 0;
}

/* Erste Checkbox (schon mal da) hervorheben */
.check-toggle {
  background: #fff; border: 1px dashed var(--accent);
  border-radius: var(--radius); padding: 16px 18px;
}

.aform .form-actions { margin-top: 6px; }
.aform button[type="submit"] {
  font-family: var(--sans); text-transform: uppercase; letter-spacing: .14em;
  font-size: .85rem; font-weight: 500; color: #fff; background: var(--ink);
  border: 0; border-radius: var(--radius); padding: 16px 40px; cursor: pointer;
  transition: background .25s, transform .25s;
}
.aform button[type="submit"]:hover { background: var(--accent-dk); transform: translateY(-2px); }

.form-hint { font-size: .85rem; color: var(--muted); margin-top: 14px; }
.form-hint a { color: var(--accent-dk); }

/* ausgeblendete Adressfelder */
.address-fields { display: grid; gap: 22px; }
.address-fields.hidden { display: none; }

@media (max-width: 640px) {
  .aform .row, .aform .row-3 { grid-template-columns: 1fr; }
}
