/* oliviadelgas.de — Hauptseite
   Built on the studio.EWIG design tokens. Editorial, restrained,
   olive + cream. Syncopate display, Manrope body.
*/

* { box-sizing: border-box; }
html, body { overflow-x: hidden; }
body { background: var(--c-bg); color: var(--c-dark); }

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

/* ============================== Italic accents — feminine editorial touch
   The design now mixes three voices:
     • Cormorant Garamond — feminine high-contrast serif for display headings
     • Caveat — bouncy handwritten script for emphasis words
     • Manrope — sans for body, eyebrows, UI
   We deliberately step away from the all-caps Syncopate look for the headings
   to bring a softer, more personal feel.
*/

/* Re-cast every display heading from geometric all-caps Syncopate to Cormorant
   Garamond — sentence-case, italic by default. The script accent comes from
   <span class="script">. */
.hero__display,
.intro__h2,
.sec-header h2,
.bereich__h,
.linkcard__h,
.quote blockquote,
.contact__side h2 {
  font-family: "Cormorant Garamond", "Garamond", serif !important;
  font-style: italic;
  font-weight: 500;
  text-transform: none !important;
  letter-spacing: -0.015em;
}

/* <em> inside any heading reads as a slightly heavier italic, no script — gives
   a subtle weight contrast within an otherwise calm italic line. */
.hero__display em,
.intro__h2 em,
.sec-header h2 em,
.linkcard__h em,
.bereich__h em,
.quote blockquote em,
.contact__side h2 em {
  font-family: "Cormorant Garamond", "Garamond", serif;
  font-style: italic; font-weight: 600;
  letter-spacing: -0.005em;
}

/* The script class — sprinkle this on 1–3 word accents per heading. Caveat is
   bouncy, modern, legible; not the wedding-invitation cliché. */
.script {
  font-family: "Caveat", cursive;
  font-weight: 600;
  font-style: normal;
  letter-spacing: -0.005em;
  position: relative;
  padding: 0 0.04em;
}
.script--underlined {
  display: inline-block;
  line-height: 0.92;
  white-space: nowrap;
  vertical-align: baseline;
}

/* Caveat has a much smaller x-height than Cormorant italic — bump 1.2× inside
   each heading so the line reads as one optical size, not two. */
.hero__display .script    { font-size: 0.95em; }
.intro__h2 .script        { font-size: 1.05em; }
.sec-header h2 .script    { font-size: 1.05em; }
.bereich__h .script       { font-size: 1.1em; }
.linkcard__h .script      { font-size: 1.05em; }
.quote blockquote .script { font-size: 1.10em; color: var(--c-accent); }
.funnel__left h2 .script  { font-size: 1.0em; }

/* Loosen line-heights now that headings are mixed-case italic serif (descenders
   need more breathing room than Syncopate's flat-bottomed all-caps). */
.hero__display { line-height: 1.0 !important; font-size: clamp(52px, 9.5vw, 160px) !important; }
.intro__h2 { line-height: 1.1 !important; font-size: clamp(34px, 4.6vw, 64px) !important; }
.sec-header h2 { line-height: 1.0 !important; font-size: clamp(44px, 6.5vw, 96px) !important; }
.linkcard__h { line-height: 1.0 !important; font-size: clamp(32px, 3.6vw, 52px) !important; }
.bereich__h { line-height: 1.15 !important; font-size: clamp(22px, 1.7vw, 28px) !important; }
.bereich--feature .bereich__h { font-size: clamp(34px, 3.2vw, 52px) !important; }
.quote blockquote { line-height: 1.25 !important; font-size: clamp(32px, 3.8vw, 52px) !important; }
.contact__side h2 { line-height: 1.05 !important; font-size: clamp(40px, 5.5vw, 80px) !important; }

/* The funnel keeps Syncopate uppercase — that section is the user's "promise",
   the clean engineering counterpart to the soft personal sections. */

/* Hand-drawn underline that sits under .script words. The SVG is inlined per
   instance so each can have its own curve length — this class just positions
   it. */
.script--underlined { display: inline-block; }
.script-underline {
  display: block;
  position: absolute;
  left: -4%; right: -4%;
  bottom: -0.18em;
  height: 0.32em;
  color: var(--c-accent);
  pointer-events: none;
}
.script-underline svg { width: 100%; height: 100%; overflow: visible; }

/* Small sparkle / star ornament — used as a decorative spark above headings */
.spark {
  display: inline-block; width: 22px; height: 22px;
  color: var(--c-accent);
  transform: rotate(8deg);
}
.spark--lg { width: 36px; height: 36px; }

/* The handwritten signature: bigger script, with a little hand-drawn flourish */
.intro__signature {
  font-family: "Caveat", cursive !important;
  font-style: normal;
  font-weight: 600;
  font-size: 64px !important;
  line-height: 0.9;
  letter-spacing: -0.01em !important;
  color: var(--c-dark);
}
.intro__signature .small {
  font-family: var(--font-body) !important;
  font-weight: 600;
}

/* Tape piece — a little washi-tape strip overlay for the polaroid mood */
.tape {
  position: absolute;
  width: 90px; height: 22px;
  background: rgba(250, 248, 244, 0.85);
  box-shadow: 0 2px 6px rgba(0,0,0,0.10);
  transform: rotate(-7deg);
  z-index: 3;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(135deg, transparent 0 6px, rgba(81,85,74,0.06) 6px 7px);
}
.tape::before, .tape::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 6px;
  background-image: radial-gradient(circle at 50% 0%, transparent 3px, rgba(250,248,244,0.85) 3.5px),
                    radial-gradient(circle at 50% 100%, transparent 3px, rgba(250,248,244,0.85) 3.5px);
  background-size: 6px 6px;
  background-repeat: repeat-y;
}
.tape::before { left: -3px; }
.tape::after { right: -3px; }

/* ===== Polaroid frames around the intro images ===== */
.polaroid {
  background: #fff;
  padding: 14px 14px 56px;
  box-shadow: 0 25px 50px rgba(81,85,74,0.18), 0 0 0 1px rgba(81,85,74,0.04);
  position: relative;
  transition: transform 0.8s var(--ease-out);
}
.polaroid--main {
  width: 100%;
  transform: rotate(-1.8deg);
}
.polaroid--main .intro__images-main {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover;
  margin: 0 !important;
}
.polaroid--side {
  position: absolute;
  right: -56px; bottom: -72px;
  width: 58%;
  transform: rotate(4.5deg);
  z-index: 2;
}
.polaroid--side .intro__images-side {
  position: static !important;
  width: 100% !important; aspect-ratio: 3 / 4; object-fit: cover;
  margin: 0 !important; border: none !important; box-shadow: none !important;
  right: auto !important; bottom: auto !important;
}
.polaroid--side .tape {
  top: -12px; left: 32%;
}
.polaroid__cap {
  position: absolute; left: 0; right: 0; bottom: 18px;
  text-align: center;
  font-family: "Caveat", cursive;
  font-weight: 600;
  font-size: 22px;
  line-height: 1;
  color: var(--c-dark);
}

/* ===== Hand-written round badge ===== */
.intro__badge {
  position: absolute;
  bottom: -8px; left: -32px;
  width: 132px; height: 132px;
  border-radius: 50%;
  background: var(--c-bg);
  border: 1px dashed rgba(139,139,126,0.7);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-family: "Caveat", cursive;
  font-weight: 600; font-size: 22px; line-height: 1.05;
  text-align: center; color: var(--c-dark);
  transform: rotate(-12deg);
  z-index: 4;
  padding: 12px;
  box-shadow: 0 6px 16px rgba(81,85,74,0.12);
}
.intro__badge__star { color: var(--c-accent); display: inline-block; width: 22px; height: 22px; margin-bottom: 6px; transform: rotate(8deg); }
.intro__badge__star svg { width: 100%; height: 100%; }

/* ===== Decorative big quote mark over the testimonial ===== */
.quote { position: relative; }
.quote__mark {
  display: block;
  font-family: "Cormorant Garamond", "Garamond", serif;
  font-style: italic; font-weight: 400;
  font-size: clamp(140px, 14vw, 240px);
  line-height: 0.5;
  color: var(--c-accent);
  opacity: 0.45;
  margin-bottom: -36px;
  margin-top: 0;
}
.quote .eyebrow { position: relative; z-index: 2; }
.quote cite {
  display: block !important;
  font-family: "Caveat", cursive !important;
  font-weight: 600 !important;
  font-size: 26px !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  color: var(--c-dark) !important;
  margin-top: 56px !important;
  line-height: 1 !important;
}

/* ============================== Reveal
   Pattern: content is visible by default (no-JS / observer never fires = no broken page).
   Once <html> gets .js-reveal-ready, .reveal hides until IO marks it .is-in. */
.reveal { transition: opacity 1s var(--ease-out), transform 1s var(--ease-out); }
.js-reveal-ready .reveal { opacity: 0; transform: translateY(28px); }
.js-reveal-ready .reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }
.reveal[data-delay="5"] { transition-delay: 0.40s; }

/* ============================== Noise */
.noise-overlay { opacity: 0.05; mix-blend-mode: multiply; }

/* ============================== Nav */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 28px 40px;
  color: #faf8f4;
  mix-blend-mode: difference;
  font-family: var(--font-body);
}
.site-nav__logo {
  display: inline-flex; align-items: baseline; gap: 0;
  font-family: var(--font-body); font-weight: 500; font-size: 14px;
  color: inherit; text-decoration: none; letter-spacing: 0.02em;
}
.site-nav__logo .mark {
  font-family: var(--font-display); font-weight: 700;
  font-size: 18px; letter-spacing: -0.03em;
  margin-left: 2px;
}
.site-nav__links {
  display: flex; gap: 36px; align-items: center;
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.24em; font-weight: 600;
}
.site-nav__links a { color: inherit; text-decoration: none; transition: opacity .3s; }
.site-nav__links a:hover { opacity: .6; }
.site-nav__pill {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid currentColor; padding: 9px 18px; border-radius: 999px;
  transition: background .3s var(--ease-out), color .3s var(--ease-out);
}
.site-nav__pill:hover { background: currentColor; }
.site-nav__pill:hover span { color: var(--c-dark); }
.site-nav__pill iconify-icon { transition: transform .3s var(--ease-out); }
.site-nav__pill:hover iconify-icon { transform: translateX(4px); color: var(--c-dark); }

/* ============================== Hero */
.hero {
  position: relative; height: 100vh; min-height: 720px;
  overflow: hidden; background: #1c1e1a;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 80px 40px;
}
.hero__bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; filter: brightness(0.62) grayscale(0.1);
  z-index: 0; transform: scale(1.04);
  animation: kenburns 22s ease-in-out infinite alternate;
}
@keyframes kenburns {
  from { transform: scale(1.04) translate(0, 0); }
  to   { transform: scale(1.10) translate(-1.5%, -1%); }
}
.hero__grain {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0) 35%, rgba(0,0,0,0) 60%, rgba(28,30,26,0.85) 100%);
}
.hero__inner { position: relative; z-index: 2; color: #faf8f4; max-width: 1600px; margin: 0 auto; width: 100%; }
.hero__meta {
  display: none; /* deprecated layout — kept for any stale HTML */
}
.hero__top {
  max-width: 1400px;
}
.hero__sidemeta {
  display: none; /* no longer used */
}
.hero__spark {
  display: inline-flex; width: 18px; height: 18px;
  color: var(--c-accent);
  transform: rotate(8deg);
  margin-right: 12px;
}
.hero__spark svg { width: 100%; height: 100%; }
.hero__handnote {
  margin: 32px 0 0;
  font-family: "Caveat", cursive;
  font-weight: 600;
  font-size: 32px;
  color: #faf8f4;
  opacity: 0.92;
  line-height: 1;
}
.hero__eyebrow {
  font-family: var(--font-body); font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.4em; opacity: 0.85;
  display: inline-flex; align-items: center; gap: 12px;
}
.hero__eyebrow::before {
  content: ""; width: 28px; height: 1px; background: currentColor;
}
.hero__display {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(56px, 11vw, 188px); line-height: 0.86;
  letter-spacing: -0.045em; text-transform: uppercase;
  margin: 24px 0 0; color: #faf8f4;
}
.hero__display em {
  font-style: normal; font-weight: 700;
  display: block;
}
.hero__sidemeta strong { font-weight: 700; opacity: 1; }
.hero__bottom {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-top: 56px; gap: 32px; flex-wrap: wrap;
}
.hero__tags {
  font-family: var(--font-body); font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.28em; font-weight: 600;
  opacity: 0.85;
}
.hero__tags span.sep { opacity: 0.35; margin: 0 12px; }
.hero__scroll {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-size: 10px;
  text-transform: uppercase; letter-spacing: 0.3em; font-weight: 700;
  opacity: 0.7;
}
.hero__scroll .line {
  width: 60px; height: 1px; background: currentColor; position: relative; overflow: hidden;
}
.hero__scroll .line::after {
  content: ""; position: absolute; left: 0; top: 0; height: 100%; width: 30%;
  background: #1c1e1a; animation: scrollLine 2.4s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: translateX(-100%); background: #faf8f4; }
  50% { transform: translateX(200%); background: #faf8f4; }
  100% { transform: translateX(200%); background: #faf8f4; }
}

/* ============================== Section base */
.section {
  position: relative;
  padding: clamp(96px, 12vw, 160px) 40px;
  max-width: 1600px; margin: 0 auto;
}
.section--tight { padding: clamp(72px, 9vw, 120px) 40px; }
.section--dark {
  background: var(--c-dark); color: #faf8f4;
  max-width: none;
}
.section--dark .section__inner { max-width: 1600px; margin: 0 auto; padding: clamp(96px, 12vw, 160px) 40px; }

/* eyebrow */
.eyebrow-dot--on-dark {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.24em;
  color: rgba(250,248,244,0.7);
}
.eyebrow-dot--on-dark::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--c-accent);
}

/* ============================== About / Intro */
.intro { display: grid; grid-template-columns: 5fr 7fr; gap: 96px; align-items: start; }
.intro__images { position: relative; padding-right: 32px; padding-bottom: 80px; }
.intro__images-main { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.intro__images-side {
  /* Sizing now governed by .polaroid--side; this rule kept for safety
     when the polaroid wrapper is absent (e.g. older cached HTML). */
  width: 100%; aspect-ratio: 3 / 4; object-fit: cover;
}
.intro__body { padding-top: 24px; }
.intro__h2 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(28px, 4vw, 52px); line-height: 1.05;
  letter-spacing: -0.025em; text-transform: uppercase;
  margin: 24px 0 32px;
}
.intro__h2 em { font-style: normal; font-weight: 700; }
.intro__lead {
  font-family: var(--font-body); font-weight: 300;
  font-size: 19px; line-height: 1.6; color: rgba(81,85,74,0.95);
  margin: 0 0 24px;
}
.intro__body p { font-size: 16px; line-height: 1.7; color: rgba(81,85,74,0.85); margin: 0 0 16px; }
.intro__signature {
  margin-top: 48px;
  font-family: var(--font-display); font-size: 28px; font-weight: 400;
  letter-spacing: -0.02em; color: var(--c-dark);
}
.intro__signature .small {
  display: block; font-family: var(--font-body); font-size: 10px;
  text-transform: uppercase; letter-spacing: 0.3em; font-weight: 600;
  color: var(--c-accent); margin-top: 6px;
}
.intro__stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 56px; border-top: 1px solid var(--border);
  padding-top: 32px;
}
.intro__stat__n {
  font-family: var(--font-display); font-size: 36px; font-weight: 700;
  letter-spacing: -0.02em; color: var(--c-dark);
}
.intro__stat__label {
  font-family: var(--font-body); font-size: 10px;
  text-transform: uppercase; letter-spacing: 0.24em; font-weight: 600;
  color: var(--c-accent); margin-top: 6px;
}

/* ============================== Section header (used by Portfolio + others) */
.sec-header { display: flex; justify-content: space-between; align-items: flex-end; gap: 48px; margin-bottom: 64px; flex-wrap: wrap; }
.sec-header > div:first-child { flex: 1 1 480px; }
.sec-header__side { flex: 0 0 360px; max-width: 360px; }
.sec-header h2 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(40px, 6vw, 88px); line-height: 0.92;
  letter-spacing: -0.04em; text-transform: uppercase; margin: 16px 0 0; max-width: 900px;
}
.sec-header h2 em { font-style: normal; font-weight: 700; }
.sec-header .sec-header__side {
  text-align: right; max-width: 360px;
  font-size: 15px; font-weight: 300; line-height: 1.65; color: rgba(81,85,74,0.75);
}

/* ============================== Portfolio */
.portfolio { padding: clamp(96px, 12vw, 160px) 40px; max-width: 1600px; margin: 0 auto; }
.portfolio__grid {
  display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px;
}
.work {
  position: relative; overflow: hidden; background: var(--c-bg-stone);
  cursor: pointer;
}
.work img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.6s var(--ease-out), filter 0.6s var(--ease-out);
  filter: grayscale(0.05);
}
.work:hover img { transform: scale(1.05); filter: grayscale(0); }
.work__cap {
  position: absolute; inset: auto 0 0 0; padding: 20px 24px;
  display: flex; justify-content: space-between; align-items: flex-end;
  color: #faf8f4; gap: 16px;
  background: linear-gradient(180deg, transparent 0%, rgba(28,30,26,0.75) 100%);
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.45s var(--ease-out), transform 0.45s var(--ease-out);
}
.work:hover .work__cap { opacity: 1; transform: none; }
.work__cap__cat {
  font-family: var(--font-body); font-size: 9px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.3em; opacity: 0.85;
}
.work__cap__title {
  font-family: var(--font-display); font-size: 18px; font-weight: 400;
  letter-spacing: -0.01em; text-transform: uppercase; margin-top: 4px;
}
.work__cap__year {
  font-family: var(--font-body); font-size: 11px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase; opacity: 0.7;
}
/* grid layout — 5-item editorial */
.work--a { grid-column: span 7; aspect-ratio: 4 / 3; }
.work--b { grid-column: span 5; aspect-ratio: 4 / 5; }
.work--c { grid-column: span 4; aspect-ratio: 3 / 4; }
.work--d { grid-column: span 4; aspect-ratio: 3 / 4; }
.work--e { grid-column: span 4; aspect-ratio: 3 / 4; }

.portfolio__more {
  margin-top: 64px; display: flex; justify-content: center;
}

/* ============================== Two-up linked sections (Studio + Events) */
.dual {
  background: var(--c-bg-warm);
  padding: clamp(96px, 12vw, 160px) 40px;
}
.dual__inner { max-width: 1600px; margin: 0 auto; }
.dual__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 64px; }
.linkcard {
  position: relative; overflow: hidden;
  aspect-ratio: 4 / 5;
  color: #faf8f4; display: flex; flex-direction: column; justify-content: space-between;
  padding: 40px;
  text-decoration: none;
  transition: transform .8s var(--ease-out);
}
.linkcard:hover { transform: translateY(-6px); }
.linkcard__bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; filter: brightness(0.65);
  z-index: 0; transition: transform 1.8s var(--ease-out), filter .8s var(--ease-out);
}
.linkcard:hover .linkcard__bg { transform: scale(1.06); filter: brightness(0.55); }
.linkcard__bg-over {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(28,30,26,0.15) 0%, rgba(28,30,26,0.6) 100%);
}
.linkcard__top, .linkcard__bottom { position: relative; z-index: 2; }
.linkcard__top { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; }
.linkcard__tag {
  font-family: var(--font-body); font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.3em; opacity: 0.85;
  display: inline-flex; align-items: center; gap: 10px;
}
.linkcard__tag::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%; background: #faf8f4; opacity: 0.7;
}
.linkcard__num {
  font-family: var(--font-display); font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; opacity: 0.6;
}
.linkcard__h {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(36px, 4.5vw, 64px); line-height: 0.95;
  letter-spacing: -0.035em; text-transform: uppercase; margin: 0 0 16px;
}
.linkcard__h em { font-style: normal; font-weight: 700; }
.linkcard__desc {
  font-family: var(--font-body); font-size: 15px; font-weight: 300;
  line-height: 1.55; opacity: 0.85; max-width: 420px; margin: 0 0 28px;
}
.linkcard__cta {
  font-family: var(--font-body); font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.24em;
  display: inline-flex; align-items: center; gap: 12px;
  padding-bottom: 8px; border-bottom: 1px solid rgba(250,248,244,0.4);
}
.linkcard__cta iconify-icon { transition: transform .35s var(--ease-out); }
.linkcard:hover .linkcard__cta iconify-icon { transform: translateX(8px); }

/* ============================== Services list */
.services { background: var(--c-dark); color: #faf8f4; }
.services__inner { max-width: 1600px; margin: 0 auto; padding: clamp(96px, 12vw, 160px) 40px; }
.services__header h2 { color: #faf8f4; }
.services__header .sec-header__side { color: rgba(250,248,244,0.7); }
.services__list { margin-top: 32px; border-top: 1px solid rgba(250,248,244,0.18); }
.service {
  display: grid; grid-template-columns: 80px 1.4fr 2fr 240px;
  align-items: center; gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid rgba(250,248,244,0.18);
  cursor: pointer;
  transition: padding-left .5s var(--ease-out);
}
.service:hover { padding-left: 24px; }
.service__num {
  font-family: var(--font-display); font-weight: 400; font-size: 14px;
  letter-spacing: 0.05em; color: rgba(250,248,244,0.55);
}
.service__title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(28px, 3vw, 42px); line-height: 1; letter-spacing: -0.03em;
  text-transform: uppercase;
}
.service__title em { font-style: normal; font-weight: 700; }
.service__desc { font-family: var(--font-body); font-size: 15px; font-weight: 300; line-height: 1.6; color: rgba(250,248,244,0.8); }
.service__price {
  text-align: right;
  font-family: var(--font-body); font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.24em; color: rgba(250,248,244,0.7);
  display: flex; flex-direction: column; gap: 6px; align-items: flex-end;
}
.service__price .from { opacity: 0.55; font-size: 10px; }
.service__price .arrow { transition: transform .35s var(--ease-out); }
.service:hover .service__price .arrow { transform: translateX(6px); }

/* ============================== Testimonial */
.quote {
  padding: clamp(96px, 12vw, 160px) 40px;
  max-width: 1200px; margin: 0 auto;
  text-align: center;
}
.quote blockquote {
  margin: 32px 0 0;
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(28px, 3.4vw, 44px); line-height: 1.2;
  letter-spacing: -0.025em; color: var(--c-dark);
}
.quote blockquote em { font-style: normal; font-weight: 700; }
.quote cite {
  display: block; margin-top: 32px; font-style: normal;
  font-family: var(--font-body); font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.3em; color: var(--c-accent);
}

/* ============================== Contact */
.contact { background: var(--c-bg-stone); }
.contact__inner {
  max-width: 1600px; margin: 0 auto;
  padding: clamp(96px, 12vw, 160px) 40px;
  display: grid; grid-template-columns: 5fr 7fr; gap: 96px;
}
.contact__side h2 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(40px, 5.5vw, 80px); line-height: 0.95;
  letter-spacing: -0.04em; text-transform: uppercase;
  margin: 24px 0 32px;
}
.contact__side h2 em { font-style: normal; font-weight: 700; }
.contact__side p { font-size: 17px; font-weight: 300; line-height: 1.65; color: rgba(81,85,74,0.85); }
.contact__details { margin-top: 56px; display: flex; flex-direction: column; gap: 28px; }
.contact__detail {
  display: flex; gap: 16px; align-items: flex-start;
}
.contact__detail iconify-icon { font-size: 22px; color: var(--c-accent); margin-top: 2px; }
.contact__detail__label {
  font-family: var(--font-body); font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.24em; color: var(--c-accent);
}
.contact__detail__value {
  font-family: var(--font-body); font-size: 16px; font-weight: 400;
  color: var(--c-dark); margin-top: 4px;
}
.contact__form {
  background: #ffffff; padding: 56px;
  border: 1px solid var(--border);
}
.contact__form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.contact__form .row + .row, .contact__form .row + .field, .contact__form .field + .row, .contact__form .field + .field {
  margin-top: 32px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-family: var(--font-body); font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.24em; color: var(--c-dark);
}
.field label .req { color: #b54a3a; margin-left: 2px; }
.field label .opt { font-weight: 400; opacity: 0.55; margin-left: 6px; text-transform: none; letter-spacing: 0.05em; }
.field input, .field textarea, .field select {
  border: none; border-bottom: 1px solid rgba(26,26,26,0.20);
  padding: 10px 0; background: transparent;
  font-family: var(--font-body); font-size: 16px; font-weight: 400;
  color: var(--c-ink); outline: none;
  transition: border-color .3s var(--ease-out);
}
.field textarea {
  border: 1px solid rgba(26,26,26,0.12);
  padding: 16px; resize: vertical; min-height: 140px;
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--c-dark); }
.field select { appearance: none; -webkit-appearance: none; background-repeat: no-repeat; background-position: right 0 center; padding-right: 24px; }

.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  font-family: var(--font-body); font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.16em;
  padding: 10px 18px; border: 1px solid rgba(26,26,26,0.15);
  background: transparent; color: var(--c-ink);
  cursor: pointer; transition: all .3s var(--ease-out);
}
.chip:hover { border-color: var(--c-dark); }
.chip.is-on { background: var(--c-dark); border-color: var(--c-dark); color: var(--c-bg); }

.submit {
  margin-top: 40px;
  display: inline-flex; align-items: center; justify-content: center; gap: 14px;
  width: 100%;
  padding: 22px 32px;
  background: var(--c-ink); color: #faf8f4;
  font-family: var(--font-body); font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.24em;
  border: none; cursor: pointer;
  transition: background .4s var(--ease-out);
}
.submit:hover { background: var(--c-dark); }
.submit iconify-icon { transition: transform .35s var(--ease-out); }
.submit:hover iconify-icon { transform: translateX(6px); }

.contact__form__legal {
  margin-top: 20px; font-size: 11px; color: var(--c-accent); line-height: 1.55;
}
.contact__form__legal a { text-decoration: underline; text-underline-offset: 3px; }

/* ============================== Bereiche (Services restructured)
   Light cream background, 5 cards. Feature (Hochzeit) is tall on the left,
   the other four sit as 2×2 on the right. */
.bereiche { background: var(--c-bg-warm); }
.bereiche__inner {
  max-width: 1600px; margin: 0 auto;
  padding: clamp(96px, 12vw, 160px) 40px;
}
.bereiche__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
}
.bereich {
  background: var(--c-bg); border: 1px solid var(--border);
  transition: transform .6s var(--ease-out), box-shadow .6s var(--ease-out);
}
.bereich:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(81,85,74,0.12); }
.bereich--feature { grid-column: 1; grid-row: 1 / span 2; }
.bereich__inner {
  display: flex; flex-direction: column; height: 100%;
  text-decoration: none; color: var(--c-dark);
}
.bereich__img { position: relative; overflow: hidden; aspect-ratio: 16 / 11; background: var(--c-bg-stone); }
.bereich--feature .bereich__img { aspect-ratio: 4 / 5; }
.bereich__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.4s var(--ease-out), filter .6s var(--ease-out);
  filter: grayscale(0.05);
}
.bereich:hover .bereich__img img { transform: scale(1.05); filter: grayscale(0); }
.bereich__body { padding: 28px 28px 32px; flex: 1; display: flex; flex-direction: column; gap: 14px; }
.bereich--feature .bereich__body { padding: 48px 48px 56px; gap: 20px; }
.bereich__num {
  font-family: var(--font-body); font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.28em; color: var(--c-accent);
  display: inline-flex; align-items: center; gap: 8px;
}
.bereich__num::before {
  content: "❋"; font-size: 14px; color: var(--c-accent); opacity: 0.7;
  transform: rotate(8deg); display: inline-block;
}
.bereich__h {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.1; letter-spacing: -0.025em;
  text-transform: uppercase; margin: 0; color: var(--c-dark);
}
.bereich--feature .bereich__h {
  font-size: clamp(28px, 2.8vw, 44px);
}
.bereich__body p {
  font-family: var(--font-body); font-size: 13.5px; font-weight: 300;
  line-height: 1.6; color: rgba(81,85,74,0.85); margin: 0;
  flex: 1;
}
.bereich--feature .bereich__body p {
  font-size: 16.5px;
}
.bereich__cta {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.24em; color: var(--c-dark);
  padding-top: 14px; border-top: 1px solid var(--border);
  margin-top: auto;
}
.bereich__cta iconify-icon { transition: transform .35s var(--ease-out); }
.bereich:hover .bereich__cta iconify-icon { transform: translateX(6px); }

/* ============================== Funnel bridge */
.funnel { background: var(--c-dark); color: #faf8f4; position: relative; overflow: hidden; }
.funnel::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(80% 60% at 20% 0%, rgba(255,255,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.funnel__inner {
  position: relative; z-index: 1;
  max-width: 1600px; margin: 0 auto;
  padding: clamp(96px, 12vw, 160px) 40px;
  display: grid; grid-template-columns: 5fr 6fr; gap: 96px; align-items: center;
}
.funnel__left h2 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(36px, 5vw, 72px); line-height: 0.95;
  letter-spacing: -0.04em; text-transform: uppercase;
  color: #faf8f4; margin: 24px 0 24px;
}
.funnel__left p {
  font-family: var(--font-body); font-size: 17px; font-weight: 300;
  line-height: 1.65; color: rgba(250,248,244,0.85); margin: 0 0 40px; max-width: 540px;
}
.funnel__steps {
  list-style: none; padding: 0; margin: 0 0 48px;
  display: flex; flex-direction: column; gap: 24px;
  border-top: 1px solid rgba(250,248,244,0.18);
  padding-top: 24px;
}
.funnel__steps li {
  display: grid; grid-template-columns: 56px 1fr; gap: 16px; align-items: baseline;
}
.funnel__steps__n {
  font-family: var(--font-display); font-weight: 700; font-size: 18px;
  letter-spacing: -0.02em; color: var(--c-accent);
}
.funnel__steps strong {
  display: block; font-family: var(--font-body); font-weight: 600; font-size: 15px;
  color: #faf8f4; margin-bottom: 4px;
}
.funnel__steps span {
  font-family: var(--font-body); font-size: 14px; font-weight: 300;
  color: rgba(250,248,244,0.7); line-height: 1.55;
}
.funnel__cta {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 22px 36px;
  background: var(--c-bg); color: var(--c-dark);
  font-family: var(--font-body); font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.26em;
  text-decoration: none;
  transition: background .4s var(--ease-out), color .4s var(--ease-out);
}
.funnel__cta:hover { background: var(--c-accent); color: var(--c-dark); }
.funnel__cta iconify-icon { transition: transform .35s var(--ease-out); }
.funnel__cta:hover iconify-icon { transform: translateX(6px); }
.funnel__small {
  margin-top: 32px;
  font-family: var(--font-body); font-size: 13px; color: rgba(250,248,244,0.6);
}
.funnel__small a { color: rgba(250,248,244,0.85); text-decoration: underline; text-underline-offset: 4px; margin: 0 4px; }

/* Mock card on the right — shows what the funnel actually looks like */
.funnel__mock {
  background: var(--c-bg); color: var(--c-dark);
  padding: 36px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.28), 0 1px 0 rgba(255,255,255,0.06) inset;
  transform: perspective(1200px) rotateY(-6deg) rotateX(2deg);
  transform-origin: center;
}
.funnel__mock__head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 24px;
}
.funnel__mock__step {
  font-family: var(--font-body); font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.24em; color: var(--c-accent);
}
.funnel__mock__bar {
  width: 96px; height: 2px; background: rgba(81,85,74,0.15);
  position: relative;
}
.funnel__mock__bar span {
  position: absolute; top: 0; left: 0; height: 100%;
  background: var(--c-dark);
}
.funnel__mock__q {
  font-family: var(--font-display); font-size: 22px; font-weight: 400;
  line-height: 1.15; letter-spacing: -0.02em; color: var(--c-dark);
  margin-bottom: 24px;
}
.funnel__mock__opts { display: flex; flex-direction: column; gap: 10px; }
.funnel__mock__opt {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  gap: 4px 16px;
  padding: 18px 20px;
  border: 1px solid var(--border);
  transition: all .3s var(--ease-out);
}
.funnel__mock__opt:hover { border-color: var(--c-accent); }
.funnel__mock__opt.is-on { border-color: var(--c-dark); background: rgba(81,85,74,0.06); }
.funnel__mock__opt__t {
  font-family: var(--font-body); font-weight: 600; font-size: 14px;
  letter-spacing: 0.04em;
}
.funnel__mock__opt__d {
  font-family: var(--font-body); font-weight: 300; font-size: 12px;
  color: rgba(81,85,74,0.7); grid-column: 1; grid-row: 2;
}
.funnel__mock__opt__p {
  font-family: var(--font-display); font-weight: 700; font-size: 14px;
  letter-spacing: -0.01em; color: var(--c-dark);
  grid-column: 2; grid-row: 1 / span 2; align-self: center; white-space: nowrap;
}
.funnel__mock__sum {
  margin-top: 24px; padding-top: 20px;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: baseline;
}
.funnel__mock__sum span {
  font-family: var(--font-body); font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.24em; color: var(--c-accent);
}
.funnel__mock__sum strong {
  font-family: var(--font-display); font-weight: 700; font-size: 28px;
  letter-spacing: -0.02em; color: var(--c-dark);
}

.eyebrow--on-dark { color: rgba(250,248,244,0.7) !important; }

/* ============================== Footer — simple, no hero CTA */
.site-footer {
  background: var(--c-darker); color: #faf8f4;
}
.site-footer__inner {
  max-width: 1600px; margin: 0 auto;
  padding: 96px 40px 56px;
}
.site-footer__columns {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 64px;
}
.site-footer__brand { max-width: 320px; }
.site-footer__logo {
  display: inline-flex; align-items: baseline;
  font-family: var(--font-body); font-weight: 500; font-size: 16px;
  color: #faf8f4; text-decoration: none; letter-spacing: 0.02em;
}
.site-footer__logo span {
  font-family: var(--font-display); font-weight: 700;
  font-size: 22px; letter-spacing: -0.03em; margin-left: 2px;
}
.site-footer__claim {
  margin-top: 16px;
  font-family: var(--font-body); font-size: 14px; font-weight: 300;
  line-height: 1.6; color: rgba(250,248,244,0.65);
}
.fcol__head {
  font-family: var(--font-body); font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.3em; color: var(--c-accent);
  margin-bottom: 20px;
}
.fcol__list { display: flex; flex-direction: column; gap: 10px;
  font-family: var(--font-body); font-size: 14px; font-weight: 300; color: rgba(250,248,244,0.85);
}
.fcol__list a { color: inherit; text-decoration: none; transition: opacity .3s; }
.fcol__list a:hover { opacity: 0.6; }
.site-footer__fine {
  margin-top: 80px; padding-top: 28px;
  border-top: 1px solid rgba(250,248,244,0.10);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
  font-family: var(--font-body); font-size: 11px; color: rgba(250,248,244,0.45);
  text-transform: uppercase; letter-spacing: 0.16em;
}
.site-footer__fine a { color: inherit; margin-left: 16px; }
.site-footer__fine a:hover { color: #faf8f4; }

/* ============================== Responsive */
@media (max-width: 1024px) {
  .intro, .funnel__inner { grid-template-columns: 1fr; gap: 56px; }
  .polaroid--side { right: 0; bottom: -40px; width: 50%; transform: rotate(3deg); }
  .intro__badge { left: 0; bottom: -16px; }
  .dual__grid { grid-template-columns: 1fr; }
  .bereiche__grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .bereich--feature { grid-column: span 2; grid-row: auto; }
  .bereich--feature .bereich__img { aspect-ratio: 4 / 3; }
  .site-footer__columns { grid-template-columns: 1fr 1fr; gap: 48px; }
  .funnel__mock { transform: none; }
  .portfolio__grid > .work { grid-column: span 12 !important; aspect-ratio: 4/3 !important; }
}
@media (max-width: 720px) {
  .site-nav { padding: 20px 20px; }
  .site-nav__links { gap: 14px; font-size: 10px; letter-spacing: 0.2em; }
  .section, .portfolio, .dual, .funnel__inner, .bereiche__inner, .site-footer__inner { padding-left: 24px; padding-right: 24px; }
  .hero { padding: 40px 24px; }
  .intro__stats { grid-template-columns: 1fr 1fr; }
  .site-footer__columns { grid-template-columns: 1fr; gap: 40px; }
  .bereiche__grid { grid-template-columns: 1fr; }
  .bereich--feature .bereich__body, .bereich__body { padding: 28px 24px 32px; }
}
