/* =====================================================================
   Valentina Sophie — Moderation · One-Pager
   Design-Richtung: Warm & Nahbar
   ===================================================================== */

:root {
  /* warm surfaces */
  --cream: #f7f0e4;
  --cream-2: #fbf6ee;
  --sand: #efe3d1;
  --sand-deep: #e6d6bf;

  /* ink */
  --espresso: #2c231d;
  --espresso-soft: #4a3d33;
  --muted: #6f6053;
  --muted-2: #8a7a6b;

  /* accents */
  --terra: #bd553a;      /* terracotta / rust */
  --terra-deep: #97402a;
  --rose: #d98e6a;
  --gold: #c39a4d;

  --line: #e4d6c2;
  --shadow: 28px 28px 60px rgba(96, 66, 44, .10);
  --shadow-sm: 0 14px 34px rgba(96, 66, 44, .12);

  --maxw: 1120px;
  --radius: 22px;
  --radius-lg: 30px;

  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "DM Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--espresso);
  background: var(--cream);
  line-height: 1.7;
  font-size: 1.06rem;
  overflow-x: hidden;
  /* subtle paper grain */
  background-image:
    radial-gradient(1200px 600px at 85% -10%, rgba(217, 142, 106, .16), transparent 60%),
    radial-gradient(900px 520px at -10% 20%, rgba(195, 154, 77, .12), transparent 55%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  background-attachment: fixed, fixed, fixed;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

/* ------------------------------------------------------------------ */
/* Typography                                                          */
/* ------------------------------------------------------------------ */
h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.01em;
  margin: 0;
  font-optical-sizing: auto;
}

.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .74rem;
  font-weight: 600;
  color: var(--terra-deep);
  margin: 0 0 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: .7rem;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1.5px;
  background: var(--terra);
  display: inline-block;
}

p { margin: 0 0 1.1rem; color: var(--espresso-soft); }
.lead { font-size: 1.2rem; color: var(--espresso-soft); }

/* ------------------------------------------------------------------ */
/* Layout helpers                                                      */
/* ------------------------------------------------------------------ */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(1.2rem, 4vw, 2.4rem); }
section { padding-block: clamp(4rem, 10vw, 8rem); position: relative; }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.d1 { transition-delay: .08s; } .d2 { transition-delay: .16s; } .d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ------------------------------------------------------------------ */
/* Buttons                                                             */
/* ------------------------------------------------------------------ */
.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--sans); font-weight: 600; font-size: .98rem;
  padding: .92rem 1.6rem; border-radius: 100px; cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  border: 1.5px solid transparent; white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--terra); color: #fff5ee; box-shadow: 0 12px 26px rgba(189, 85, 58, .32); }
.btn-primary:hover { background: var(--terra-deep); transform: translateY(-2px); box-shadow: 0 18px 34px rgba(151, 64, 42, .38); }
.btn-ghost { background: transparent; color: var(--espresso); border-color: var(--sand-deep); }
.btn-ghost:hover { background: var(--cream-2); border-color: var(--terra); color: var(--terra-deep); transform: translateY(-2px); }

/* ------------------------------------------------------------------ */
/* Header                                                              */
/* ------------------------------------------------------------------ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: saturate(1.2) blur(10px);
  background: rgba(247, 240, 228, .72);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background .3s ease, box-shadow .3s ease;
}
.site-header.scrolled { border-color: var(--line); box-shadow: 0 6px 24px rgba(96,66,44,.06); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding-block: .9rem; }
.brand { font-family: var(--serif); font-size: 1.35rem; font-weight: 600; letter-spacing: -.01em; }
.brand .dot { color: var(--terra); }
.header-nav { display: flex; align-items: center; gap: 1.6rem; }
.header-nav a.nav-link { font-size: .95rem; font-weight: 500; color: var(--muted); transition: color .2s; }
.header-nav a.nav-link:hover { color: var(--terra-deep); }
.header-cta { padding: .62rem 1.25rem; font-size: .9rem; }
@media (max-width: 720px) { .header-nav .nav-link { display: none; } }

/* ------------------------------------------------------------------ */
/* Hero                                                                */
/* ------------------------------------------------------------------ */
.hero { padding-top: clamp(2.5rem, 6vw, 4.5rem); padding-bottom: clamp(3rem, 8vw, 6rem); }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.hero h1 {
  font-size: clamp(3.2rem, 9vw, 6.6rem);
  font-weight: 600;
  margin: .2rem 0 .1rem;
}
.hero h1 .last { color: var(--terra); font-style: italic; font-weight: 500; }
.hero .tagline {
  font-family: var(--serif); font-style: italic; font-size: clamp(1.4rem, 3vw, 1.9rem);
  color: var(--espresso-soft); margin: .4rem 0 1.4rem;
}
.hero .subline { max-width: 34ch; font-size: 1.12rem; color: var(--muted); }
.hero-cta { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 1.9rem; }
.hero-meta { margin-top: 2.4rem; display: flex; gap: 2.2rem; flex-wrap: wrap; }
.hero-meta .stat .num { font-family: var(--serif); font-size: 1.7rem; font-weight: 600; color: var(--espresso); }
.hero-meta .stat .lbl { font-size: .8rem; text-transform: uppercase; letter-spacing: .12em; color: var(--muted-2); }

.hero-photo { position: relative; }
.hero-photo img {
  width: 100%; aspect-ratio: 971 / 1600; object-fit: cover; object-position: center top;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.hero-photo::after {
  content: ""; position: absolute; inset: 0; border-radius: var(--radius-lg);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.25);
  pointer-events: none;
}
.hero-badge {
  position: absolute; left: -18px; bottom: 26px;
  background: var(--cream-2); border: 1px solid var(--line);
  border-radius: 100px; padding: .6rem 1.1rem; font-size: .84rem; font-weight: 600;
  color: var(--espresso); box-shadow: var(--shadow-sm);
  display: flex; align-items: center; gap: .5rem;
}
.hero-badge .live { width: 9px; height: 9px; border-radius: 50%; background: var(--terra); box-shadow: 0 0 0 0 rgba(189,85,58,.5); animation: pulse 2.2s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(189,85,58,.45);} 70%{box-shadow:0 0 0 10px rgba(189,85,58,0);} 100%{box-shadow:0 0 0 0 rgba(189,85,58,0);} }

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-photo { order: -1; max-width: 440px; margin: 0 auto; }
  .hero .subline { max-width: none; }
}

/* ------------------------------------------------------------------ */
/* About                                                               */
/* ------------------------------------------------------------------ */
.about { background: linear-gradient(180deg, transparent, rgba(230,214,191,.35) 40%, transparent); }
.about-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.about-photo img { width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.about h2 { font-size: clamp(2rem, 5vw, 3.1rem); margin-bottom: 1.2rem; }
.about .signature { font-family: var(--serif); font-style: italic; font-size: 1.5rem; color: var(--terra); margin-top: .6rem; }
@media (max-width: 780px) { .about-grid { grid-template-columns: 1fr; } .about-photo { max-width: 320px; } }

/* ------------------------------------------------------------------ */
/* Leistungen                                                          */
/* ------------------------------------------------------------------ */
.section-head { max-width: 640px; margin-bottom: clamp(2.4rem, 5vw, 3.6rem); }
.section-head h2 { font-size: clamp(2rem, 5vw, 3.1rem); }
.section-head p { margin-top: 1rem; font-size: 1.12rem; }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.card {
  background: var(--cream-2); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2.1rem 1.9rem; transition: transform .3s ease, box-shadow .3s ease, border-color .3s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-sm); border-color: var(--sand-deep); }
.card .ic {
  width: 52px; height: 52px; border-radius: 15px; display: grid; place-items: center;
  background: linear-gradient(150deg, var(--rose), var(--terra)); color: #fff6f0; margin-bottom: 1.3rem;
}
.card .ic svg { width: 26px; height: 26px; }
.card h3 { font-size: 1.42rem; margin-bottom: .6rem; }
.card p { font-size: 1rem; margin: 0; color: var(--muted); }
@media (max-width: 820px) { .cards { grid-template-columns: 1fr; } }

/* ------------------------------------------------------------------ */
/* Impressionen / Galerie                                              */
/* ------------------------------------------------------------------ */
.gallery { columns: 3; column-gap: 1.1rem; }
.gallery figure {
  margin: 0 0 1.1rem; break-inside: avoid; position: relative; border-radius: 18px; overflow: hidden;
  box-shadow: var(--shadow-sm); background: var(--sand);
}
.gallery img { width: 100%; height: auto; transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.gallery figure:hover img { transform: scale(1.05); }
.gallery figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 1.1rem .95rem .8rem;
  font-size: .84rem; font-weight: 600; color: #fff;
  background: linear-gradient(transparent, rgba(44,35,29,.78));
  opacity: 0; transform: translateY(8px); transition: opacity .35s, transform .35s;
}
.gallery figure:hover figcaption { opacity: 1; transform: none; }
@media (max-width: 820px) { .gallery { columns: 2; } }
@media (max-width: 480px) { .gallery { columns: 1; } }

/* ------------------------------------------------------------------ */
/* Auf einen Blick — Chips                                             */
/* ------------------------------------------------------------------ */
.glance { background: var(--espresso); color: var(--cream); border-radius: var(--radius-lg); padding: clamp(2.4rem, 5vw, 3.6rem); }
.glance h2 { color: var(--cream); font-size: clamp(1.7rem, 4vw, 2.4rem); margin-bottom: 1.6rem; }
.chips { display: flex; flex-wrap: wrap; gap: .8rem; }
.chip {
  display: inline-flex; align-items: center; gap: .55rem;
  border: 1px solid rgba(247,240,228,.22); border-radius: 100px;
  padding: .65rem 1.2rem; font-size: .95rem; font-weight: 500; color: var(--cream);
  background: rgba(247,240,228,.05);
}
.chip .star { color: var(--rose); }

/* ------------------------------------------------------------------ */
/* Persönlich                                                          */
/* ------------------------------------------------------------------ */
.personal-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.personal blockquote {
  font-family: var(--serif); font-size: clamp(1.5rem, 3.2vw, 2.1rem); line-height: 1.32;
  margin: 0 0 1.4rem; color: var(--espresso); font-style: italic;
}
.personal blockquote .accent { color: var(--terra); }
.personal .photo img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.ribbon { display: inline-flex; align-items: center; gap: .5rem; background: rgba(195,154,77,.16); color: var(--terra-deep); font-weight: 600; font-size: .9rem; padding: .5rem 1rem; border-radius: 100px; margin-top: .4rem; }
@media (max-width: 820px) { .personal-grid { grid-template-columns: 1fr; } .personal .photo { order: -1; max-width: 340px; } }

/* ------------------------------------------------------------------ */
/* Kontakt                                                             */
/* ------------------------------------------------------------------ */
.contact { text-align: center; }
.contact-card {
  background: linear-gradient(160deg, var(--cream-2), var(--sand));
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(2.8rem, 7vw, 5rem) clamp(1.4rem, 5vw, 3rem);
  box-shadow: var(--shadow);
}
.contact h2 { font-size: clamp(2.4rem, 7vw, 4.2rem); margin-bottom: 1rem; }
.contact h2 em { color: var(--terra); }
.contact p { max-width: 44ch; margin: 0 auto 2rem; font-size: 1.15rem; }
.contact-cta { display: flex; justify-content: center; flex-wrap: wrap; gap: .9rem; }
/* Spezifischer als `.contact p`, sonst wird das margin-top ueberschrieben */
.contact .contact-loc { margin: 3rem auto 0; font-size: .9rem; color: var(--muted-2); letter-spacing: .04em; }

/* ------------------------------------------------------------------ */
/* Footer                                                              */
/* ------------------------------------------------------------------ */
.site-footer { padding-block: 2.6rem; border-top: 1px solid var(--line); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-inner .fbrand { font-family: var(--serif); font-size: 1.15rem; font-weight: 600; }
.footer-links { display: flex; gap: 1.4rem; font-size: .9rem; }
.footer-links a { color: var(--muted); transition: color .2s; }
.footer-links a:hover { color: var(--terra-deep); }
.footer-note { width: 100%; font-size: .8rem; color: var(--muted-2); margin-top: .4rem; }

/* ------------------------------------------------------------------ */
/* Legal pages                                                         */
/* ------------------------------------------------------------------ */
.legal { max-width: 760px; padding-block: clamp(3rem, 7vw, 5rem); }
.legal h1 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 1.6rem; }
.legal h2 { font-size: 1.4rem; margin: 2rem 0 .6rem; }
.legal p, .legal li { color: var(--espresso-soft); }
.legal .ph { background: rgba(195,85,58,.12); color: var(--terra-deep); padding: 0 .35em; border-radius: 4px; font-weight: 600; }
.legal .back { display: inline-flex; align-items: center; gap: .5rem; margin-bottom: 2rem; color: var(--terra-deep); font-weight: 600; }

/* ------------------------------------------------------------------ */
/* Video (Showreel / Flowfest)                                        */
/* ------------------------------------------------------------------ */
.video-frame { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: #000; }
.video-frame video { width: 100%; aspect-ratio: 9/16; object-fit: cover; display: block; }
.about-media { max-width: 330px; margin: 0 auto; }
.about-media .cap { text-align: center; margin: .95rem 0 0; font-size: .85rem; color: var(--muted-2); letter-spacing: .03em; }

/* Video inside the Impressionen masonry */
.gallery .fig-video { background: none; box-shadow: none; overflow: visible; border-radius: 0; }
.gallery .fig-video .video-frame { box-shadow: var(--shadow-sm); border-radius: 18px; }
.gallery figcaption.static-cap {
  position: static; opacity: 1; transform: none; background: none;
  color: var(--espresso); padding: .7rem .2rem 0; font-weight: 600; font-size: .88rem;
}

/* ------------------------------------------------------------------ */
/* Instagram-Einbettung                                               */
/* ------------------------------------------------------------------ */
.ig-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; align-items: start; }
.ig-card { background: #fff; border: 1px solid var(--line); border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-sm); }
.ig-card iframe { width: 100%; height: 600px; border: 0; display: block; }

/* 2-Klick-Lösung: Platzhalter statt Auto-Load */
.ig-consent {
  height: 600px; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .75rem; padding: 2rem 1.6rem; text-align: center;
  background: linear-gradient(160deg, var(--cream-2), var(--cream));
}
.ig-consent svg { width: 34px; height: 34px; color: var(--terra); }
.ig-consent-title { font-family: var(--serif); font-size: 1.15rem; font-weight: 600; color: var(--espresso); }
.ig-consent-text { font-size: .86rem; line-height: 1.55; color: var(--muted); max-width: 30ch; }
.ig-consent-text a { text-decoration: underline; text-underline-offset: 2px; }
.ig-consent .btn { margin-top: .3rem; }
.ig-consent-alt { font-size: .8rem; color: var(--muted-2); text-decoration: underline; text-underline-offset: 2px; }
.ig-consent-note { margin-top: 1.4rem; text-align: center; font-size: .84rem; color: var(--muted-2); }
.linkish {
  background: none; border: 0; padding: 0; font: inherit; cursor: pointer;
  color: var(--terra-deep); font-weight: 600; text-decoration: underline; text-underline-offset: 2px;
}
@media (max-width: 900px) { .ig-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; } }
