/* =========================================================
   Fotostudio StockCity – Stylesheet
   Reines CSS, keine externen Abhängigkeiten (CDN-frei).
   ========================================================= */

:root {
  --ink: #1b1a18;
  --ink-soft: #4a4744;
  --paper: #faf7f2;
  --paper-alt: #f1ece3;
  --line: #e4ddd1;
  --accent: #b8763c;
  --accent-dark: #96602e;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(27, 26, 24, 0.12);
  --radius: 10px;
  --font-head: Georgia, "Iowan Old Style", "Times New Roman", serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --maxw: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 600; line-height: 1.2; margin: 0 0 .5em; }
p { margin: 0 0 1em; }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .78rem;
  color: var(--accent);
  font-weight: 700;
  margin: 0 0 .6em;
}
section.section { padding: 88px 0; }
@media (max-width: 720px) { section.section { padding: 56px 0; } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  font-size: .95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--accent); color: var(--white); }
.btn-primary:hover { background: var(--accent-dark); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--white); }
.btn-light { background: var(--white); color: var(--ink); }
.btn-light:hover { background: var(--paper-alt); }
.btn-block { width: 100%; justify-content: center; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  gap: 20px;
}
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo img { height: 44px; width: auto; border-radius: 4px; }
.logo span { font-family: var(--font-head); font-size: 1.15rem; font-weight: 700; color: var(--ink); }
.main-nav ul { list-style: none; display: flex; gap: 28px; margin: 0; padding: 0; }
.main-nav a { text-decoration: none; font-weight: 600; font-size: .95rem; color: var(--ink-soft); }
.main-nav a:hover { color: var(--accent); }
.header-cta { flex-shrink: 0; }
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
}
.nav-toggle span { display: block; height: 2px; background: var(--ink); border-radius: 2px; }

@media (max-width: 860px) {
  .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .main-nav ul {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--paper);
    padding: 20px 24px 28px;
    gap: 6px;
    border-bottom: 1px solid var(--line);
    display: none;
  }
  .main-nav ul.open { display: flex; }
  .main-nav a { display: block; padding: 10px 0; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,18,15,.55) 0%, rgba(20,18,15,.68) 55%, rgba(20,18,15,.85) 100%);
}
.hero-content { position: relative; z-index: 2; padding: 100px 24px; max-width: 760px; }
.hero-content h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); color: var(--white); margin-bottom: .4em; }
.hero-content .lead { font-size: 1.15rem; color: rgba(255,255,255,.9); max-width: 560px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }

/* ---------- Quickfacts ---------- */
.quickfacts { background: var(--ink); color: var(--white); padding: 34px 0; }
.quickfacts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.quickfacts-grid div { display: flex; flex-direction: column; gap: 4px; }
.quickfacts-grid strong { font-family: var(--font-head); font-size: 1.4rem; color: var(--accent); }
.quickfacts-grid span { font-size: .85rem; color: rgba(255,255,255,.75); }
@media (max-width: 720px) { .quickfacts-grid { grid-template-columns: repeat(2, 1fr); gap: 26px; } }

/* ---------- Two column ---------- */
.two-col { display: grid; grid-template-columns: 1.05fr .95fr; gap: 64px; align-items: center; }
@media (max-width: 860px) { .two-col { grid-template-columns: 1fr; gap: 36px; } }
.studio-image img { border-radius: var(--radius); box-shadow: var(--shadow); }
.address-card {
  margin-top: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 24px;
}
.address-card h3 { font-size: 1rem; margin-bottom: .3em; }
.address-card p { margin: 0; color: var(--ink-soft); }

/* ---------- Feature grid ---------- */
.studio-section { background: var(--paper); }
.features-section { background: var(--paper-alt); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 44px;
}
@media (max-width: 960px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .features-grid { grid-template-columns: 1fr; } }
.feature-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: left;
}
.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--paper-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--accent);
}
.feature-card h3 { font-size: 1.05rem; margin-bottom: .35em; }
.feature-card p { color: var(--ink-soft); font-size: .93rem; margin: 0; }

.section-head { max-width: 640px; }
.section-head.center { max-width: 640px; margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- Gallery ---------- */
.gallery-section { background: var(--paper); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 44px;
}
@media (max-width: 760px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
  cursor: zoom-in;
  border: none;
  padding: 0;
  background: var(--paper-alt);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery-item:hover img { transform: scale(1.06); }

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15,14,12,.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 24px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 86vh; border-radius: 6px; }
.lightbox-close {
  position: absolute;
  top: 22px;
  right: 28px;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}

/* ---------- Pricing ---------- */
.pricing-section { background: var(--ink); color: var(--white); }
.pricing-section .eyebrow { color: var(--accent); }
.pricing-section h2 { color: var(--white); }
.pricing-section .section-head p { color: rgba(255,255,255,.75); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; } }
.price-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
}
.price-card.featured { border-color: var(--accent); background: rgba(184,118,60,.12); }
.price-badge {
  align-self: flex-start;
  background: var(--accent);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.price-card .duration { color: rgba(255,255,255,.65); font-size: .9rem; margin-bottom: 2px; }
.price-card .amount { font-family: var(--font-head); font-size: 2.2rem; margin: 0 0 18px; }
.price-card .amount small { font-size: .95rem; font-weight: 400; color: rgba(255,255,255,.6); }
.price-card ul { list-style: none; margin: 0 0 26px; padding: 0; flex-grow: 1; }
.price-card li { padding: 7px 0; border-top: 1px solid rgba(255,255,255,.1); font-size: .92rem; color: rgba(255,255,255,.85); }
.price-card li:first-child { border-top: none; }

/* ---------- Partners ---------- */
.partners-section { background: var(--paper); text-align: center; }
.partners-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 32px; }
.partners-list a {
  text-decoration: none;
  padding: 12px 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .9rem;
  color: var(--ink-soft);
  font-weight: 600;
}
.partners-list a:hover { border-color: var(--accent); color: var(--accent); }

/* ---------- Contact ---------- */
.contact-section { background: var(--paper-alt); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-top: 44px; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; gap: 32px; } }
.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
}
.contact-row { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
.contact-row:last-child { margin-bottom: 0; }
.contact-row .ic {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--paper-alt); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-row h4 { margin: 0 0 3px; font-size: .95rem; }
.contact-row p, .contact-row a { margin: 0; color: var(--ink-soft); text-decoration: none; font-size: .95rem; }
.contact-row a:hover { color: var(--accent); }
.anfahrt-block { margin-top: 18px; }
.anfahrt-block h4 { font-size: .95rem; margin-bottom: 4px; }
.anfahrt-block p { color: var(--ink-soft); font-size: .92rem; margin-bottom: 14px; }
.owner-note {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  margin-top: 28px;
}
.owner-note img { width: 58px; height: 58px; border-radius: 50%; object-fit: cover; }
.owner-note strong { display: block; font-size: .95rem; }
.owner-note span { font-size: .85rem; color: var(--ink-soft); }

/* ---------- Footer ---------- */
footer.site-footer { background: var(--ink); color: rgba(255,255,255,.7); padding: 40px 0; font-size: .88rem; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-links { display: flex; gap: 18px; list-style: none; margin: 0; padding: 0; }
.footer-links a { text-decoration: none; color: rgba(255,255,255,.7); }
.footer-links a:hover { color: var(--white); }

/* ---------- Legal pages ---------- */
.legal-page { padding: 64px 0 90px; }
.legal-page .container { max-width: 800px; }
.legal-page h1 { font-size: 2rem; margin-bottom: .3em; }
.legal-page h2 { font-size: 1.15rem; margin-top: 1.8em; }
.legal-page p, .legal-page li { color: var(--ink-soft); }
.legal-page a { color: var(--accent); }
.back-link { display: inline-block; margin-bottom: 24px; font-weight: 600; text-decoration: none; color: var(--accent); }
