/*
  Lena Berding — Website Stylesheet
  ----------------------------------
  Farben, Abstände und Layout werden hier gesteuert.
  Texte werden direkt in index.html geändert.
*/

  :root{
    --terracotta: #A9522F;
    --terracotta-dark: #7A3A1F;
    --terracotta-deep: #5E2C16;
    --cream: #F3EEE7;
    --cream-2: #ECE4D8;
    --ink: #3A2A1E;
    --ink-soft: #6B4630;
    --gold: #F0C9A0;
    --line: rgba(58,42,30,0.15);
  }
  * { box-sizing: border-box; margin:0; padding:0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'Inter', sans-serif;
    color: var(--ink);
    background: var(--cream);
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
  }
  h1,h2,h3 { font-family:'Playfair Display', serif; font-weight:400; }
  .acc { font-family:'Playfair Display', serif; font-style: italic; color: var(--gold); font-size: 1.05em; }
  a { color: inherit; text-decoration: none; }
  button { font-family: inherit; cursor: pointer; background:none; border:none; color:inherit; }
  .wrap { max-width: 1160px; margin: 0 auto; padding: 0 40px; }
  @media (max-width: 700px){ .wrap{ padding: 0 22px; } }

  /* ---------- header ---------- */
  header {
    position: sticky; top:0; z-index: 60;
    background: var(--cream); border-bottom: 1px solid var(--line);
  }
  .headbar {
    display:flex; align-items:center; justify-content:space-between;
    padding: 22px 40px;
  }
  @media (max-width: 700px){ .headbar{ padding: 18px 22px; } }
  .logo {
    font-family:'Playfair Display', serif; font-size:19px; letter-spacing:0.02em;
    cursor: pointer; border: none; background: none; color: var(--ink);
  }
  .burger {
    display:flex; flex-direction:column; gap:5px; width: 26px; cursor:pointer;
  }
  .burger span { display:block; height:1px; background: var(--ink); width:100%; transition: transform .2s, opacity .2s; }

  /* ---------- overlay menu ---------- */
  .overlay {
    position: fixed; inset:0; background: var(--terracotta-deep); color: var(--cream);
    z-index: 100; display:flex; flex-direction:column; justify-content:center;
    padding: 60px; opacity:0; visibility:hidden; transform: translateY(-8px);
    transition: opacity .28s ease, transform .28s ease, visibility .28s;
  }
  .overlay.open { opacity:1; visibility:visible; transform: translateY(0); }
  .overlay-close {
    position:absolute; top: 26px; right: 34px; font-size: 26px; color: var(--cream); line-height:1;
  }
  @media (max-width:700px){ .overlay{ padding: 36px 26px; } .overlay-close{ top:20px; right:22px; } }
  .overlay-links { display:flex; flex-direction:column; gap: 16px; }
  .overlay-links a {
    font-family:'Playfair Display', serif; font-size: 44px; color: var(--cream);
    transition: color .2s;
  }
  .overlay-links a:hover { color: var(--gold); }
  .overlay-links a[aria-current="page"] { color: var(--gold); }
  @media (max-width:700px){ .overlay-links a{ font-size:30px; } }
  .overlay-quick {
    display:flex; gap: 26px; margin-top: 54px; padding-top: 28px; border-top: 1px solid rgba(243,238,231,0.25);
  }
  .overlay-quick a {
    font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold);
  }
  .overlay-quick a:hover { color: var(--cream); }

  /* ---------- generic ---------- */
  section { padding: 90px 0; }
  .band-terracotta { background: var(--terracotta); color: var(--cream); }
  .band-deep { background: var(--terracotta-deep); color: var(--cream); }
  p.lead { font-size: 16px; line-height: 1.8; color: var(--ink-soft); max-width: 520px; }
  .band-terracotta p.lead, .band-deep p.lead { color: #ecd9c8; }
  .sketch svg { width:100%; height:100%; display:block; }
  .sketch { stroke: currentColor; }

  /* ---------- home hero ---------- */
  .hero {
    display:grid; grid-template-columns: 1.1fr 0.9fr; align-items:center; gap: 50px;
    min-height: 520px;
  }
  @media (max-width:900px){ .hero{ grid-template-columns:1fr; min-height:auto; } }
  .hero h1 { font-size: 46px; line-height: 1.2; max-width: 600px; }
  @media (max-width:600px){ .hero h1{ font-size:32px; } }
  .hero p.lead { margin-top: 22px; }
  .hero-figure { color: var(--gold); opacity:0.9; }

  /* ---------- offer cards ---------- */
  .offers { display:grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 46px; }
  @media (max-width:780px){ .offers{ grid-template-columns:1fr; } }
  .offer-card {
    padding: 42px 40px; border-radius: 2px; transition: transform .2s ease, box-shadow .2s ease;
  }
  .offer-card:hover { transform: translateY(-4px); box-shadow: 0 16px 34px rgba(58,42,30,0.14); }
  .offer-card.dark { background: var(--terracotta-deep); color: var(--cream); }
  .offer-card.light { background: var(--cream-2); color: var(--ink); }
  .offer-card h3 { font-size: 25px; margin-bottom: 14px; }
  .offer-card p { font-size:14px; line-height:1.75; margin-bottom: 26px; max-width: 380px; }
  .offer-card.dark p { color: #ecd9c8; }
  .offer-card.light p { color: var(--ink-soft); }
  .offer-cta {
    display:inline-flex; align-items:center; gap: 8px; font-size:11px; letter-spacing:0.12em; text-transform:uppercase;
    padding: 12px 22px; border: 1px solid currentColor; transition: background .2s ease, color .2s ease;
  }
  .offer-card.dark .offer-cta:hover { background: var(--cream); color: var(--terracotta-deep); }
  .offer-card.light .offer-cta:hover { background: var(--terracotta); color: var(--cream); border-color: var(--terracotta); }
  .offer-cta .arrow { transition: transform .2s ease; }
  .offer-cta:hover .arrow { transform: translateX(4px); }

  /* ---------- split (about teaser) ---------- */
  .split { display:grid; grid-template-columns: 0.8fr 1.2fr; gap: 60px; align-items:center; }
  @media (max-width:860px){ .split{ grid-template-columns:1fr; } }
  .portrait {
    aspect-ratio: 3/4; background: var(--terracotta-dark); border-radius: 2px;
    display:flex; align-items:center; justify-content:center; color: var(--gold);
  }
  .imgblock {
    aspect-ratio: 4/5; background: var(--cream-2); border-radius: 2px;
    display:flex; align-items:center; justify-content:center; color: var(--terracotta);
  }
  .band-terracotta .imgblock, .band-deep .imgblock { background: rgba(243,238,231,0.08); color: var(--gold); }

  /* ---------- contact / CTA section ---------- */
  .cta-section { text-align:center; }
  .cta-section h2 { font-size: 30px; max-width: 560px; margin: 0 auto; }
  .cta-section p.lead { margin: 16px auto 0; text-align:center; }
  .email-pill {
    display:inline-flex; align-items:center; margin-top: 30px; border: 1px solid currentColor;
    border-radius: 999px; overflow:hidden;
  }
  .email-pill .email-text { padding: 13px 22px; font-size: 14px; letter-spacing:0.01em; }
  .email-pill .copy-btn {
    padding: 13px 22px; font-size: 11px; letter-spacing:0.1em; text-transform:uppercase;
    border-left: 1px solid currentColor; transition: background .2s ease, color .2s ease;
    display:flex; align-items:center; gap:6px;
  }
  .cta-section.on-light .email-pill { color: var(--ink); }
  .cta-section.on-light .copy-btn:hover { background: var(--ink); color: var(--cream); }
  .cta-section.on-dark .email-pill { color: var(--cream); }
  .cta-section.on-dark .copy-btn:hover { background: var(--cream); color: var(--terracotta-deep); }

  /* ---------- process steps ---------- */
  .steps { display:grid; grid-template-columns: repeat(3,1fr); gap: 46px; margin-top: 50px; }
  @media (max-width:820px){ .steps{ grid-template-columns:1fr; } }
  .step .stepnum { font-family:'Cormorant Garamond', serif; font-style:italic; font-size:40px; color: var(--terracotta); margin-bottom: 14px; }
  .step h3 { font-size: 20px; margin-bottom: 10px; }
  .step p { font-size: 13.5px; line-height:1.75; color: var(--ink-soft); }

  /* ---------- magic section ---------- */
  .magic { display:grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items:center; }
  @media (max-width:860px){ .magic{ grid-template-columns:1fr; } }
  .magic h2 { font-size: 30px; margin-bottom: 18px; }

  /* ---------- quote section ---------- */
  .quote-section { text-align:center; }
  .quote-section blockquote {
    font-family:'Playfair Display', serif; font-style: italic; font-size: 32px; line-height:1.4;
    max-width: 640px; margin: 0 auto 40px;
  }
  @media (max-width:600px){ .quote-section blockquote{ font-size:24px; } }
  .quote-image {
    max-width: 520px; margin: 0 auto; aspect-ratio: 16/9; background: rgba(243,238,231,0.08);
    display:flex; align-items:center; justify-content:center; color: var(--gold); border-radius: 2px;
  }

  /* ---------- faq ---------- */
  .faq-item { border-top: 1px solid rgba(243,238,231,0.25); padding: 26px 0; cursor:pointer; }
  .faq-item:last-child { border-bottom: 1px solid rgba(243,238,231,0.25); }
  .faq-q { display:flex; justify-content:space-between; align-items:center; font-size:15px; font-family:'Playfair Display',serif; color: var(--cream); }
  .faq-q .plus { font-family:'Inter',sans-serif; font-size: 20px; color: var(--gold); transition: transform .2s; }
  .faq-item.open .plus { transform: rotate(45deg); }
  .faq-a { max-height:0; overflow:hidden; transition: max-height .25s ease; }
  .faq-item.open .faq-a { max-height: 300px; }
  .faq-a p { padding-top: 14px; font-size:13.5px; line-height:1.8; color: #f2e6d9; max-width: 620px; }

  /* ---------- editorial gallery (wendy macnaughton style) ---------- */
  .drawings { margin-top: 50px; display:grid; grid-template-columns: 1fr 1fr; gap: 50px 40px; }
  @media (max-width:700px){ .drawings{ grid-template-columns:1fr; gap: 44px; } }
  .drawing-img {
    aspect-ratio: 4/5; background: var(--cream-2); color: var(--terracotta);
    display:flex; align-items:center; justify-content:center; border-radius: 2px;
  }
  .drawing figcaption {
    margin-top: 16px; font-family:'Cormorant Garamond', serif; font-style: italic; font-size: 16px;
    color: var(--ink-soft);
  }

  /* ---------- about ---------- */
  .credits { margin-top: 34px; padding-top: 20px; padding-bottom: 20px; display:flex; flex-wrap:wrap; gap: 10px 28px; }
  .credits a { font-size:11px; letter-spacing:0.08em; text-transform:uppercase; color: var(--ink-soft); opacity:0.75; border-bottom: 1px solid transparent; }
  .credits a:hover { opacity:1; border-color: var(--ink-soft); }

  /* ---------- legal ---------- */
  .legal h2 { font-size: 30px; margin-bottom: 26px; }
  .legal h3 { font-size: 16px; margin: 26px 0 8px; }
  .legal p { font-size: 13.5px; line-height: 1.9; color: var(--ink-soft); max-width: 640px; }

  /* ---------- footer ---------- */
  footer { background: var(--terracotta-deep); color: var(--cream); padding: 64px 0 30px; }
  .foot-top { display:grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 40px; }
  @media (max-width:700px){ .foot-top{ grid-template-columns:1fr; gap: 34px; } }
  .foot-col-title { font-size: 11px; letter-spacing:0.1em; text-transform:uppercase; color: var(--gold); margin-bottom: 18px; }
  .foot-links { display:flex; flex-direction:column; gap: 12px; font-size: 14px; }
  .foot-links a { color: #ecd9c8; }
  .foot-links a:hover { color: var(--cream); }
  .foot-bottom {
    margin-top: 54px; padding-top: 24px; border-top: 1px solid rgba(243,238,231,0.2);
    display:flex; flex-wrap:wrap; justify-content:space-between; gap:14px;
    font-size: 11px; letter-spacing:0.05em; color: #d9bfa8;
  }


/* ---------- Bilder ----------
   Alle Bild-Container (Hero, Portrait, Galerie, Zitat-Bild) skalieren
   das eingesetzte <img> automatisch passend zu, egal welches Seitenverhältnis
   das Originalfoto hat. */
.hero-figure img,
.portrait img,
.imgblock img,
.quote-image img,
.drawing-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 2px;
}
