/* ediths.love – Landingpage v2 (Ediths Feedback 27.09.2026)
   Beige Papier, sehr leichte Pastell-Auren, eine Akzentfarbe (Lavendel).
   Schriften lokal: Kalnia (Überschriften), Jost (Text), Ephesis (Handschrift-Akzente). Keine externen Requests. */

@font-face { font-family: "Kalnia"; src: url("fonts/kalnia-latin-400-normal.woff2") format("woff2"); font-weight: 400; font-display: swap; }
@font-face { font-family: "Kalnia"; src: url("fonts/kalnia-latin-500-normal.woff2") format("woff2"); font-weight: 500; font-display: swap; }
@font-face { font-family: "Jost"; src: url("fonts/jost-latin-300-normal.woff2") format("woff2"); font-weight: 300; font-display: swap; }
@font-face { font-family: "Jost"; src: url("fonts/jost-latin-400-normal.woff2") format("woff2"); font-weight: 400; font-display: swap; }
@font-face { font-family: "Jost"; src: url("fonts/jost-latin-500-normal.woff2") format("woff2"); font-weight: 500; font-display: swap; }
@font-face { font-family: "Ephesis"; src: url("fonts/ephesis-latin-400-normal.woff2") format("woff2"); font-weight: 400; font-display: swap; }

:root {
  color-scheme: light;
  --paper: #f6f0e8;
  --paper-2: #efe6da;
  --card: rgb(255 255 255 / 0.55);
  --card-solid: #fbf8f3;
  --ink: #3f3734;
  --ink-2: #6e635c;
  --line: rgb(63 55 52 / 0.12);
  --lav-head: #8b7cc4;
  --lav-deep: #6d5fae;
  --lav-deeper: #574a98;
  --lav-soft: #ebe5fa;
  --aura-lav: #e6ddf8;
  --aura-peach: #f8ddd0;
  --aura-blush: #f5dbe4;
  --aura-butter: #f7ebcc;
  --shadow: 0 24px 60px -34px rgb(87 74 152 / 0.45);
  --pill: 999px;
  --wrap: 1180px;
  --gutter: clamp(20px, 5vw, 48px);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --display: "Kalnia", "Didot", "Bodoni 72", serif;
  --sans: "Jost", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --script: "Ephesis", "Snell Roundhand", cursive;
  --dot: radial-gradient(circle at 35% 35%, #fbf1d6, #f1cdd9 55%, #c9bcf0);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; background: var(--paper); color: var(--ink);
  font-family: var(--sans); font-size: 17.5px; line-height: 1.65; font-weight: 400;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
/* feines Papierkorn */
body::after {
  content: ""; position: fixed; inset: 0; z-index: 90; pointer-events: none; opacity: 0.055; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.35  0 0 0 0 0.3  0 0 0 0 0.3  0 0 0 0.9 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button { font: inherit; color: inherit; }
p { margin: 0 0 1em; }
h1, h2, h3 { margin: 0; font-family: var(--display); font-weight: 400; line-height: 1.12; letter-spacing: -0.01em; }
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.skip { position: absolute; left: 12px; top: -60px; background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 10px; z-index: 100; }
.skip:focus { top: 12px; }
.icon { width: 1.15em; height: 1.15em; flex: none; }
.script { font-family: var(--script); font-weight: 400; color: var(--lav-deep); line-height: 1; }
:focus-visible { outline: 2px solid var(--lav-deep); outline-offset: 3px; border-radius: 6px; }

/* ---------- Aura im Hintergrund ---------- */
.aura { position: fixed; inset: -10vh -10vw; z-index: -1; pointer-events: none; overflow: hidden; }
.aura span { position: absolute; border-radius: 50%; filter: blur(70px); opacity: 0.8; }
.aura span:nth-child(1) { width: 52vw; height: 52vw; left: -8vw; top: -10vh; background: var(--aura-lav); animation: drift1 26s ease-in-out infinite alternate; }
.aura span:nth-child(2) { width: 46vw; height: 46vw; right: -6vw; top: 18vh; background: var(--aura-peach); animation: drift2 30s ease-in-out infinite alternate; }
.aura span:nth-child(3) { width: 40vw; height: 40vw; left: 22vw; bottom: -12vh; background: var(--aura-butter); opacity: 0.7; animation: drift1 34s ease-in-out infinite alternate-reverse; }
.aura span:nth-child(4) { width: 30vw; height: 30vw; right: 20vw; bottom: 10vh; background: var(--aura-blush); opacity: 0.6; animation: drift2 28s ease-in-out infinite alternate-reverse; }
@keyframes drift1 { to { transform: translate(6vw, 5vh) scale(1.08); } }
@keyframes drift2 { to { transform: translate(-5vw, -4vh) scale(1.06); } }

/* ---------- Leiste oben ---------- */
.bar { background: rgb(255 255 255 / 0.45); border-bottom: 1px solid var(--line); font-size: 14px; text-align: center; }
.bar a { display: inline-flex; align-items: center; gap: 8px; padding: 9px 16px; text-decoration: none; }
.bar a:hover span { text-decoration: underline; text-underline-offset: 3px; }
.bar .icon { color: var(--lav-deep); }

/* ---------- Kopf ---------- */
.header { position: sticky; top: 0; z-index: 50; background: rgb(246 240 232 / 0.78); backdrop-filter: saturate(140%) blur(14px); -webkit-backdrop-filter: saturate(140%) blur(14px); border-bottom: 1px solid transparent; transition: border-color 0.3s var(--ease); }
.header.is-scrolled { border-bottom-color: var(--line); }
.header__in { display: flex; align-items: center; justify-content: space-between; height: 88px; transition: height 0.35s var(--ease); }
.header.is-scrolled .header__in { height: 74px; }
.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand img { height: 66px; width: auto; transition: height 0.35s var(--ease); }
.header.is-scrolled .brand img { height: 54px; }
.nav { display: flex; align-items: center; gap: 26px; }
.nav__links { display: flex; gap: 26px; list-style: none; margin: 0; padding: 0; }
.nav__links a { text-decoration: none; font-size: 15.5px; color: var(--ink); position: relative; padding: 4px 0; }
.nav__links a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 1px; background: var(--lav-deep); transform: scaleX(0); transform-origin: left; transition: transform 0.35s var(--ease); }
.nav__links a:hover::after, .nav__links a:focus-visible::after { transform: scaleX(1); }
.nav__soon { display: inline-block; margin-left: 4px; padding: 0 8px; border-radius: var(--pill); background: var(--lav-soft); color: var(--lav-deeper); font-size: 11px; font-weight: 500; letter-spacing: 0.02em; vertical-align: 2px; }
.soc { display: inline-grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line); text-decoration: none; transition: background 0.3s var(--ease), transform 0.3s var(--ease); }
.soc:hover { background: var(--lav-soft); transform: translateY(-1px); }
.soc .icon { width: 19px; height: 19px; }
.menu-btn { display: none; }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 15px 28px; border-radius: var(--pill); border: 1px solid transparent; text-decoration: none; font-weight: 500; font-size: 16px; letter-spacing: 0.01em; cursor: pointer; transition: transform 0.3s var(--ease), background 0.3s var(--ease), border-color 0.3s var(--ease); white-space: nowrap; }
.btn:active { transform: scale(0.98); }
.btn--primary { background: var(--lav-deep); color: #fff; box-shadow: var(--shadow); }
.btn--primary:hover { background: var(--lav-deeper); transform: translateY(-1px); }
.btn--ghost { background: rgb(255 255 255 / 0.5); color: var(--ink); border-color: rgb(63 55 52 / 0.2); }
.btn--ghost:hover { border-color: var(--lav-deep); color: var(--lav-deeper); background: #fff; transform: translateY(-1px); }
.btn .icon { transition: transform 0.25s var(--ease); }
.btn:hover .icon { transform: translateX(2px); }
.link { display: inline-flex; align-items: center; gap: 8px; color: var(--lav-deep); font-weight: 500; text-decoration: none; border-bottom: 1px solid currentColor; padding-bottom: 2px; }
.link:hover { color: var(--lav-deeper); }

/* ---------- Einstieg ---------- */
.hero { position: relative; text-align: center; padding: clamp(40px, 8vh, 96px) 0 clamp(80px, 12vh, 130px); }
.hero__in { max-width: 980px; }
.hero__hello { display: inline-flex; align-items: center; gap: 14px; margin-bottom: clamp(18px, 3vh, 28px); }
.hero__avatar { width: 58px; height: 58px; border-radius: 50%; object-fit: cover; padding: 3px; background: conic-gradient(from 200deg, #f1cdd9, #c9bcf0, #f6e3b8, #f3c7b4, #f1cdd9); }
.hero__hi { font-size: clamp(34px, 4.2vw, 48px); }
.hero h1 { font-size: clamp(2.3rem, 5.3vw, 4.4rem); line-height: 1.05; color: var(--lav-head); text-wrap: balance; }
.hero h1 .ink { color: var(--ink); display: block; }
.hero__lead { font-size: clamp(1.12rem, 1.6vw, 1.3rem); color: var(--ink); max-width: 46ch; margin: clamp(22px, 3vh, 32px) auto 0; text-wrap: pretty; }
.hero__offer { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 12px; list-style: none; padding: 0; margin: clamp(20px, 3vh, 28px) 0 clamp(26px, 3.4vh, 34px); }
.hero__offer li { display: inline-flex; align-items: center; gap: 8px; padding: 9px 16px; border-radius: var(--pill); background: rgb(255 255 255 / 0.6); border: 1px solid var(--line); font-size: 15px; }
.hero__offer .icon { color: var(--lav-deep); }
.hero__cta { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.wave { position: absolute; left: 0; right: 0; bottom: -1px; height: clamp(36px, 5vw, 70px); color: var(--card-solid); }
.wave svg { width: 100%; height: 100%; display: block; }

/* ---------- Impulse-Laufband ---------- */
.impulses { background: var(--card-solid); border-bottom: 1px solid var(--line); overflow: hidden; }
.impulses__track { display: flex; width: max-content; animation: marquee 70s linear infinite; }
.impulses:hover .impulses__track { animation-play-state: paused; }
.impulses__list { display: flex; align-items: center; gap: 40px; padding: 22px 20px; margin: 0; list-style: none; }
.impulses__list li { display: flex; align-items: center; gap: 40px; font-family: var(--display); font-size: clamp(1.15rem, 1.7vw, 1.4rem); white-space: nowrap; }
.impulses__list li::after { content: ""; width: 12px; height: 12px; border-radius: 50%; background: var(--dot); flex: none; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Abschnitte ---------- */
.section { padding: clamp(80px, 11vw, 140px) 0; }
.section__head { max-width: 680px; margin-bottom: clamp(34px, 4.4vw, 56px); }
.section__head--center { margin-inline: auto; text-align: center; }
.section__head .script { display: block; font-size: clamp(34px, 4vw, 46px); margin-bottom: 6px; }
.section__head h2 { font-size: clamp(2.1rem, 4vw, 3.3rem); }
.section__head p { color: var(--ink-2); margin: 16px 0 0; font-size: 1.1rem; text-wrap: pretty; }

/* ---------- Kennst du das? ---------- */
.feel__card { position: relative; overflow: hidden; border-radius: 36px; padding: clamp(44px, 6vw, 84px) clamp(22px, 5vw, 72px); background: linear-gradient(160deg, #e7dff7 0%, #ecdff0 45%, #f5e3dc 100%); box-shadow: var(--shadow); }
.feel__card::before { content: ""; position: absolute; right: -12%; top: -20%; width: 60%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgb(255 255 255 / 0.55), transparent 65%); pointer-events: none; }
.feel__card .section__head { position: relative; }
.feel__list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; list-style: none; padding: 0; margin: 0 auto; max-width: 920px; position: relative; }
.feel__list li { display: flex; gap: 14px; align-items: flex-start; padding: 18px 22px; border-radius: 20px; background: rgb(255 255 255 / 0.62); border: 1px solid rgb(255 255 255 / 0.8); font-size: 1.04rem; }
.feel__list li::before { content: ""; width: 12px; height: 12px; margin-top: 8px; border-radius: 50%; flex: none; background: var(--dot); }
.feel__answer { position: relative; max-width: 640px; margin: clamp(34px, 4vw, 48px) auto 0; text-align: center; }
.feel__answer .script { display: block; font-size: clamp(38px, 4.6vw, 52px); margin-bottom: 10px; }
.feel__answer p { font-size: 1.12rem; }
.feel__note { font-size: 13.5px; color: var(--ink-2); margin: 20px 0 0; }

/* ---------- Über mich ---------- */
.about__in { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(40px, 7vw, 104px); align-items: center; }
.about__media { position: relative; justify-self: center; width: min(100%, 420px); isolation: isolate; }
.about__media::before { content: ""; position: absolute; inset: -12% -16%; z-index: -1; border-radius: 50%; background: radial-gradient(closest-side at 35% 40%, var(--aura-lav), transparent), radial-gradient(closest-side at 70% 70%, var(--aura-peach), transparent); filter: blur(22px); }
.about__arch { margin: 0; aspect-ratio: 4 / 5; border-radius: 999px 999px 28px 28px; overflow: hidden; box-shadow: var(--shadow); }
.about__arch img { width: 100%; height: 100%; object-fit: cover; }
.about__text .script { display: block; font-size: clamp(38px, 4.6vw, 54px); margin-bottom: 4px; }
.about__text h2 { font-size: clamp(2.2rem, 4vw, 3.2rem); margin-bottom: 22px; }
.about__text p { color: var(--ink-2); font-size: 1.08rem; max-width: 50ch; }
.about__text p.first { color: var(--ink); font-size: 1.18rem; }
.soul { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 14px; margin: 26px 0 30px; padding: 0; list-style: none; font-size: 13.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-2); }
.soul li { display: inline-flex; align-items: center; gap: 14px; }
.soul li:not(:last-child)::after { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--dot); }

/* ---------- Themen (Highlights + Story) ---------- */
.themen { background: rgb(255 255 255 / 0.35); border-block: 1px solid var(--line); }
.hl-row { display: flex; justify-content: center; gap: clamp(14px, 2.4vw, 30px); list-style: none; margin: 0 0 clamp(34px, 4vw, 52px); padding: 4px 0 8px; }
.hl { display: grid; justify-items: center; gap: 10px; width: 104px; padding: 0; border: 0; background: none; cursor: pointer; text-align: center; }
.hl__ring { position: relative; display: grid; place-items: center; width: 96px; height: 96px; border-radius: 50%; padding: 3px; background: rgb(63 55 52 / 0.14); transition: transform 0.4s var(--ease), background 0.4s var(--ease); }
.hl__ring::before { content: ""; position: absolute; inset: 3px; border-radius: 50%; background: var(--paper); }
.hl__ring img { position: relative; width: calc(100% - 6px); height: calc(100% - 6px); border-radius: 50%; object-fit: cover; }
.hl__label { font-size: 14px; font-weight: 500; line-height: 1.25; }
.hl__badge { position: absolute; right: -4px; top: -2px; padding: 1px 8px; border-radius: var(--pill); background: var(--lav-deep); color: #fff; font-size: 11px; font-weight: 500; }
.hl:hover .hl__ring { transform: translateY(-3px) scale(1.03); }
.hl.is-seen .hl__ring { background: rgb(63 55 52 / 0.2); }
.hl[aria-selected="true"] .hl__ring { background: conic-gradient(from 200deg, #f1cdd9, #c9bcf0, #f6e3b8, #f3c7b4, #f1cdd9); transform: scale(1.06); }
.hl[aria-selected="true"] .hl__label { color: var(--lav-deep); }
.story { display: grid; grid-template-columns: auto 1fr; gap: clamp(28px, 5vw, 72px); align-items: center; max-width: 900px; margin-inline: auto; }
.story[hidden] { display: none; }
.story.is-entering { animation: story-in 0.55s var(--ease); }
@keyframes story-in { from { opacity: 0; transform: translateY(12px); } }
.story__frame { position: relative; width: 290px; aspect-ratio: 9 / 16; border-radius: 26px; overflow: hidden; background: var(--ink); box-shadow: var(--shadow); }
.story__bg { position: absolute; inset: -10%; width: 120%; height: 120%; object-fit: cover; filter: blur(22px) saturate(1.1); opacity: 0.8; }
.story__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; }
.story__frame::after { content: ""; position: absolute; inset: 0 0 auto; height: 90px; background: linear-gradient(rgb(0 0 0 / 0.32), transparent); }
.story__top { position: absolute; inset: 12px 12px auto; z-index: 1; display: grid; gap: 10px; }
.story__bar { height: 3px; border-radius: 3px; background: rgb(255 255 255 / 0.35); overflow: hidden; }
.story__bar span { display: block; height: 100%; background: #fff; transform-origin: left; }
.story.is-entering .story__bar span { animation: bar 0.9s var(--ease); }
@keyframes bar { from { transform: scaleX(0); } }
.story__who { display: flex; align-items: center; gap: 8px; color: #fff; font-size: 13px; font-weight: 500; }
.story__who img { width: 26px; height: 26px; border-radius: 50%; border: 1.5px solid #fff; }
.story__text h3 { font-size: clamp(1.7rem, 2.8vw, 2.3rem); margin-bottom: 16px; }
.story__quote { font-family: var(--display); font-size: 1.2rem; color: var(--lav-deep); margin-bottom: 14px; max-width: 42ch; }
.story__text p { color: var(--ink-2); max-width: 46ch; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 6px 0 24px; padding: 0; list-style: none; }
.chip { padding: 7px 15px; border-radius: var(--pill); font-size: 14px; font-weight: 500; background: rgb(255 255 255 / 0.7); border: 1px solid var(--line); }

/* ---------- Freebies ---------- */
.free { display: grid; gap: clamp(20px, 3vw, 32px); }
.gift { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(24px, 4vw, 56px); padding: clamp(20px, 3.2vw, 40px); border-radius: 36px; background: var(--card); border: 1px solid rgb(255 255 255 / 0.8); box-shadow: var(--shadow); }
.gift:nth-child(even) .gift__media { order: 2; }
.gift__media { position: relative; height: clamp(330px, 34vw, 440px); border-radius: 28px; overflow: hidden; background: radial-gradient(70% 70% at 25% 25%, var(--aura-lav), transparent 70%), radial-gradient(70% 70% at 80% 80%, var(--aura-peach), transparent 70%), var(--aura-butter); }
.gift__media--hair { background: radial-gradient(70% 70% at 25% 25%, var(--aura-blush), transparent 70%), radial-gradient(70% 70% at 80% 80%, var(--aura-lav), transparent 70%), var(--aura-butter); }
.gift__page { position: absolute; left: 50%; top: 50%; width: 44%; aspect-ratio: 210 / 297; margin: 0; border-radius: 6px; overflow: hidden; box-shadow: 0 22px 40px -18px rgb(63 55 52 / 0.45); transition: transform 0.7s var(--ease); background: #fff; }
.gift__page img { width: 100%; height: 100%; object-fit: cover; }
.gift__page:nth-of-type(1) { transform: translate(-92%, -46%) rotate(-9deg); }
.gift__page:nth-of-type(2) { transform: translate(-8%, -52%) rotate(8deg); }
.gift__page:nth-of-type(3) { transform: translate(-50%, -50%) rotate(-1deg); z-index: 2; }
.gift:hover .gift__page:nth-of-type(1) { transform: translate(-102%, -46%) rotate(-12deg); }
.gift:hover .gift__page:nth-of-type(2) { transform: translate(2%, -52%) rotate(11deg); }
.gift:hover .gift__page:nth-of-type(3) { transform: translate(-50%, -54%) rotate(0deg) scale(1.03); }
.gift__badge { position: absolute; z-index: 3; left: 18px; top: 18px; padding: 6px 14px; border-radius: var(--pill); background: #fff; color: var(--lav-deeper); font-size: 12.5px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; }
.gift__body .tag { display: inline-block; margin-bottom: 14px; font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-2); }
.gift__body h3 { font-size: clamp(1.9rem, 3vw, 2.6rem); margin-bottom: 12px; }
.gift__body > p { color: var(--ink-2); }
.gift__list { list-style: none; padding: 0; margin: 18px 0 26px; display: grid; gap: 10px; }
.gift__list li { display: flex; gap: 10px; align-items: flex-start; }
.gift__list .icon { color: var(--lav-deep); margin-top: 5px; }
.gift__hint { display: block; margin-top: 12px; font-size: 14px; color: var(--ink-2); }
.soon { display: flex; align-items: center; gap: 18px; padding: 24px clamp(22px, 3vw, 34px); border-radius: 28px; border: 1px dashed rgb(63 55 52 / 0.25); background: rgb(255 255 255 / 0.35); }
.soon__lock { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 50%; background: var(--lav-soft); color: var(--lav-deep); flex: none; }
.soon__lock .icon { width: 24px; height: 24px; }
.soon h3 { font-size: 1.35rem; margin-bottom: 2px; }
.soon p { color: var(--ink-2); margin: 0; }
.soon__state { margin-left: auto; font-family: var(--script); font-size: 30px; color: var(--lav-deep); white-space: nowrap; }

/* ---------- Natursteine (bald) ---------- */
.stones { display: grid; grid-template-columns: 1.1fr 1fr; min-height: clamp(420px, 46vw, 600px); background: var(--card-solid); border-block: 1px solid var(--line); }
.stones__img { position: relative; overflow: hidden; }
.stones__img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.stones__body { display: flex; flex-direction: column; justify-content: center; padding: clamp(40px, 6vw, 96px) var(--gutter); max-width: 580px; }
.stones__soon { font-size: clamp(40px, 4.6vw, 58px); display: block; margin-bottom: 6px; }
.stones__body h2 { font-size: clamp(2.2rem, 3.8vw, 3.2rem); margin-bottom: 18px; }
.stones__body p { color: var(--ink-2); font-size: 1.1rem; max-width: 42ch; margin-bottom: 30px; }
.stones__cta { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- Instagram ---------- */
.gram { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 880px; margin-inline: auto; }
.gram a { position: relative; display: block; border-radius: 22px; overflow: hidden; aspect-ratio: 4 / 5; }
.gram a:nth-child(3n + 2) { transform: translateY(32px); }
.gram img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.gram a::after { content: ""; position: absolute; inset: 0; background: rgb(87 74 152 / 0.25); opacity: 0; transition: opacity 0.4s var(--ease); }
.gram .icon { position: absolute; z-index: 1; left: 50%; top: 50%; width: 34px; height: 34px; color: #fff; opacity: 0; transform: translate(-50%, -40%); transition: opacity 0.4s var(--ease), transform 0.4s var(--ease); }
.gram a:hover img { transform: scale(1.05); }
.gram a:hover::after, .gram a:focus-visible::after { opacity: 1; }
.gram a:hover .icon, .gram a:focus-visible .icon { opacity: 1; transform: translate(-50%, -50%); }
.gram__foot { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px 28px; margin-top: clamp(64px, 7vw, 88px); }

/* ---------- Abschluss ---------- */
.closing { text-align: center; }
.closing__card { position: relative; overflow: hidden; border-radius: 40px; padding: clamp(56px, 8vw, 104px) var(--gutter); background: radial-gradient(60% 80% at 20% 20%, var(--aura-lav), transparent 70%), radial-gradient(60% 80% at 85% 80%, var(--aura-peach), transparent 70%), radial-gradient(50% 60% at 50% 110%, var(--aura-butter), transparent 70%), var(--card-solid); }
.closing__script { font-size: clamp(40px, 5vw, 64px); display: block; margin-bottom: 8px; }
.closing h2 { font-size: clamp(2.4rem, 5vw, 4.2rem); margin-bottom: 34px; }

/* ---------- Fußzeile ---------- */
.footer { background: var(--paper-2); padding: 56px 0 40px; font-size: 15px; }
.footer__in { display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: start; }
.footer .brand img { height: 170px; }
.footer__tag { color: var(--ink-2); margin: 12px 0 0; }
.footer__nav { display: flex; flex-wrap: wrap; gap: 12px 26px; list-style: none; margin: 0; padding: 0; }
.footer__nav a { text-decoration: none; color: var(--ink); }
.footer__nav a:hover { color: var(--lav-deep); }
.footer__copy { grid-column: 1 / -1; color: var(--ink-2); font-size: 14px; border-top: 1px solid var(--line); padding-top: 22px; margin: 16px 0 0; }

/* ---------- Rechtstexte ---------- */
.legal { padding: clamp(40px, 7vw, 88px) 0 clamp(64px, 9vw, 112px); }
.legal .wrap { max-width: 800px; }
.legal__back { display: inline-flex; align-items: center; gap: 6px; color: var(--lav-deep); text-decoration: none; font-weight: 500; }
.legal__back .icon { transform: rotate(180deg); }
.legal h1 { font-size: clamp(2.2rem, 4vw, 3rem); margin: 18px 0 28px; }
.legal h2 { font-family: var(--sans); font-weight: 500; font-size: 1.25rem; margin: 36px 0 10px; }
.legal p, .legal li { color: var(--ink-2); }
.legal address { font-style: normal; color: var(--ink); margin-bottom: 1em; }

/* ---------- Einblenden ---------- */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.js .reveal.is-in { opacity: 1; transform: none; }
.js .hero .enter { opacity: 0; transform: translateY(14px); animation: enter 0.9s var(--ease) forwards; }
.js .hero .enter:nth-child(2) { animation-delay: 0.08s; }
.js .hero .enter:nth-child(3) { animation-delay: 0.16s; }
.js .hero .enter:nth-child(4) { animation-delay: 0.22s; }
.js .hero .enter:nth-child(5) { animation-delay: 0.28s; }
@keyframes enter { to { opacity: 1; transform: none; } }

/* ---------- Tablet ---------- */
@media (max-width: 1060px) {
  .nav__links { gap: 20px; }
}

/* ---------- Mobil ---------- */
@media (max-width: 860px) {
  .menu-btn { display: inline-grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: rgb(255 255 255 / 0.6); border: 1px solid var(--line); cursor: pointer; }
  .menu-btn .icon { width: 22px; height: 22px; }
  .nav__links { position: absolute; left: 0; right: 0; top: 100%; flex-direction: column; gap: 0; background: var(--paper); border-bottom: 1px solid var(--line); padding: 8px var(--gutter) 18px; display: none; }
  .nav__links.is-open { display: flex; }
  .nav__links a { display: block; padding: 14px 0; font-size: 18px; border-bottom: 1px solid var(--line); }
  .nav__links a::after { display: none; }
  .nav { gap: 10px; }
  .header__in { height: 72px; }
  .header.is-scrolled .header__in { height: 64px; }
  .brand img { height: 52px; }
  .header.is-scrolled .brand img { height: 46px; }
  .footer .brand img { height: 150px; }

  .hero { padding-top: 32px; }
  .hero h1 { font-size: clamp(2rem, 8.4vw, 2.8rem); }
  .hero h1 .ink { display: inline; }
  .hero__offer { gap: 8px; }
  .hero__offer li { font-size: 13.5px; padding: 7px 12px; gap: 6px; }

  .feel__list { grid-template-columns: 1fr; }
  .feel__card { border-radius: 28px; }

  .about__in { grid-template-columns: 1fr; }
  .about__media { width: min(86%, 360px); }

  .hl-row { justify-content: flex-start; overflow-x: auto; scroll-snap-type: x mandatory; scroll-padding-inline: var(--gutter); margin-inline: calc(var(--gutter) * -1); padding-inline: var(--gutter); scrollbar-width: none; }
  .hl-row::-webkit-scrollbar { display: none; }
  .hl-row li { scroll-snap-align: start; }
  .hl { width: 90px; }
  .hl__ring { width: 84px; height: 84px; }
  .story { grid-template-columns: 1fr; gap: 28px; }
  .story__frame { width: min(76%, 290px); margin-inline: auto; }

  .gift { grid-template-columns: 1fr; border-radius: 28px; }
  .gift:nth-child(even) .gift__media { order: 0; }
  .gift__media { height: 300px; }
  .soon { flex-wrap: wrap; align-items: flex-start; }
  .soon__text { flex: 1 1 200px; }
  .soon__state { margin-left: 70px; }

  .stones { grid-template-columns: 1fr; }
  .stones__img { aspect-ratio: 4 / 3; }

  .gram { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .gram a:nth-child(3n + 2) { transform: none; }
  .gram a:nth-child(even) { transform: translateY(22px); }

  .footer__in { grid-template-columns: 1fr; }
}
@media (max-width: 420px) {
  .hero__cta .btn { flex: 1 1 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .impulses__track { animation: none; width: auto; }
  .impulses__list[aria-hidden="true"] { display: none; }
  .impulses__list { flex-wrap: wrap; justify-content: center; row-gap: 10px; }
  .js .reveal, .js .hero .enter { opacity: 1; transform: none; }
}
