/* =====================================================
   ENERGIZE AIR — Pre-Launch
   Edel, ruhig, mit Detail
   ===================================================== */

:root {
    --soft-teal: #4BBAC0;
    --nebel-weiss: #F5F0F0;
    --rosengold-beige: #EBD5C4;
    --rauchiges-violett: #A6A1BB;
    --tiefgruen: #29555E;
    --tiefgruen-dark: #1d3f47;
    --tiefgruen-soft: rgba(41, 85, 94, 0.6);

    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'Lato', sans-serif;

    --ease-soft: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-luxe: cubic-bezier(0.65, 0, 0.35, 1);

    --section-pad: clamp(5rem, 12vw, 9rem);
    --container: 1100px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    min-height: 100vh;
    background:
        radial-gradient(ellipse 80% 60% at 15% 5%, rgba(166, 161, 187, 0.22) 0%, transparent 55%),
        radial-gradient(ellipse 70% 50% at 90% 30%, rgba(235, 213, 196, 0.32) 0%, transparent 60%),
        radial-gradient(ellipse 90% 60% at 50% 100%, rgba(75, 186, 192, 0.12) 0%, transparent 65%),
        linear-gradient(180deg, #F8F4F0 0%, #EFE9E4 50%, #F2EDE8 100%);
    color: var(--tiefgruen);
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
}

::selection { background: var(--tiefgruen); color: var(--nebel-weiss); }

/* =====================================================
   FILM-GRAIN OVERLAY — gibt der Seite haptische Tiefe
   ===================================================== */
.grain {
    position: fixed;
    inset: -100%;
    width: 300%;
    height: 300%;
    background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.16 0 0 0 0 0.33 0 0 0 0 0.37 0 0 0 0.35 0'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.5'/></svg>");
    opacity: 0.18;
    pointer-events: none;
    z-index: 100;
    mix-blend-mode: multiply;
    animation: grain-shift 8s steps(6) infinite;
}
@keyframes grain-shift {
    0%, 100% { transform: translate(0, 0); }
    20%      { transform: translate(-3%, -2%); }
    40%      { transform: translate(2%, -4%); }
    60%      { transform: translate(-2%, 3%); }
    80%      { transform: translate(3%, 1%); }
}

/* =====================================================
   NEBEL
   ===================================================== */
.fog-layer {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.5;
    mix-blend-mode: screen;
}
.fog-1 {
    background: radial-gradient(ellipse 60% 40% at 30% 30%, rgba(255, 255, 255, 0.7), transparent 60%);
    animation: drift-1 38s ease-in-out infinite alternate;
}
.fog-2 {
    background: radial-gradient(ellipse 50% 35% at 70% 60%, rgba(235, 213, 196, 0.55), transparent 60%);
    animation: drift-2 52s ease-in-out infinite alternate;
}
.fog-3 {
    background: radial-gradient(ellipse 40% 30% at 50% 80%, rgba(166, 161, 187, 0.4), transparent 60%);
    animation: drift-3 44s ease-in-out infinite alternate;
}
@keyframes drift-1 { from { transform: translate(0,0) scale(1); } to { transform: translate(8%,5%) scale(1.18); } }
@keyframes drift-2 { from { transform: translate(0,0) scale(1); } to { transform: translate(-10%,-6%) scale(1.22); } }
@keyframes drift-3 { from { transform: translate(0,0) scale(1.1); } to { transform: translate(6%,-8%) scale(1); } }

/* =====================================================
   PARTIKEL
   ===================================================== */
.particles {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}
.particles span {
    position: absolute;
    bottom: -10px;
    width: 4px; height: 4px;
    background: var(--soft-teal);
    border-radius: 50%;
    opacity: 0;
    filter: blur(0.5px);
    animation: float-up 22s linear infinite;
}
.particles span:nth-child(1)  { left: 6%;  animation-delay: 0s;  }
.particles span:nth-child(2)  { left: 13%; animation-delay: 3s;  background: var(--rauchiges-violett); }
.particles span:nth-child(3)  { left: 20%; animation-delay: 7s;  width: 2px; height: 2px; }
.particles span:nth-child(4)  { left: 27%; animation-delay: 11s; background: var(--rauchiges-violett); width: 5px; height: 5px; }
.particles span:nth-child(5)  { left: 34%; animation-delay: 2s;  }
.particles span:nth-child(6)  { left: 41%; animation-delay: 14s; background: var(--rosengold-beige); }
.particles span:nth-child(7)  { left: 48%; animation-delay: 5s;  width: 3px; height: 3px; }
.particles span:nth-child(8)  { left: 55%; animation-delay: 9s;  background: var(--rauchiges-violett); }
.particles span:nth-child(9)  { left: 62%; animation-delay: 13s; }
.particles span:nth-child(10) { left: 69%; animation-delay: 1s;  width: 2px; height: 2px; }
.particles span:nth-child(11) { left: 76%; animation-delay: 16s; background: var(--rosengold-beige); }
.particles span:nth-child(12) { left: 83%; animation-delay: 6s;  }
.particles span:nth-child(13) { left: 90%; animation-delay: 10s; background: var(--rosengold-beige); width: 5px; height: 5px; }
.particles span:nth-child(14) { left: 96%; animation-delay: 4s;  width: 2px; height: 2px; }
.particles span:nth-child(15) { left: 10%; animation-delay: 17s; }
.particles span:nth-child(16) { left: 45%; animation-delay: 8s;  width: 2px; height: 2px; }
.particles span:nth-child(17) { left: 72%; animation-delay: 19s; }
.particles span:nth-child(18) { left: 88%; animation-delay: 12s; width: 3px; height: 3px; background: var(--rauchiges-violett);}

@keyframes float-up {
    0%   { transform: translateY(0) translateX(0); opacity: 0; }
    10%  { opacity: 0.7; }
    50%  { transform: translateY(-55vh) translateX(20px); opacity: 0.5; }
    90%  { opacity: 0.25; }
    100% { transform: translateY(-110vh) translateX(-15px); opacity: 0; }
}

/* =====================================================
   LAYOUT GRUNDLAGEN
   ===================================================== */
section, header, footer { position: relative; z-index: 2; }

.story-eyebrow {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: var(--soft-teal);
    margin-bottom: 1.5rem;
    padding-left: 0.5em;
}

.story-headline {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(2.2rem, 5.5vw, 3.6rem);
    line-height: 1.15;
    color: var(--tiefgruen);
    margin-bottom: 2rem;
    letter-spacing: -0.005em;
}
.story-headline em {
    font-style: italic;
    font-weight: 300;
    color: var(--rauchiges-violett);
}

.ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
    color: var(--soft-teal);
}
.ornament .line-thin {
    display: block;
    width: 60px;
    height: 1px;
    background: var(--tiefgruen);
    opacity: 0.3;
}

/* =====================================================
   HEADER / LOGO
   ===================================================== */
.site-header {
    padding: 4rem 1.5rem 2rem;
    display: flex;
    justify-content: center;
}

.logo-wrap {
    text-align: center;
    color: var(--tiefgruen);
    animation: fade-down 1.4s var(--ease-soft) both;
}

.logo-mark {
    width: 60px;
    height: 76px;
    display: block;
    margin: 0 auto 0.8rem;
    color: var(--tiefgruen);
}

.logo-mark .smoke {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.4;
    stroke-linecap: round;
    animation: smoke-rise 4s ease-in-out infinite;
}
.logo-mark .smoke-delay { animation-delay: 2s; }

.logo-mark .dot {
    fill: currentColor;
    animation: dot-rise 4s ease-in-out infinite;
}
.dot-1 { animation-delay: 0.5s; }
.dot-2 { animation-delay: 1.2s; }
.dot-3 { animation-delay: 1.8s; }
.dot-4 { animation-delay: 2.4s; }

@keyframes smoke-rise {
    0%, 100% { opacity: 0.35; transform: translateY(2px); }
    50%      { opacity: 1;    transform: translateY(-2px); }
}
@keyframes dot-rise {
    0%   { opacity: 0; transform: translateY(8px); }
    50%  { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(-8px); }
}

.logo-text {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(1.5rem, 3vw, 2rem);
    letter-spacing: 0.42em;
    text-transform: uppercase;
    color: var(--tiefgruen);
    margin-top: 0.5rem;
    padding-left: 0.42em;
}

.logo-divider {
    width: 40px;
    height: 1px;
    background: var(--tiefgruen);
    opacity: 0.35;
    margin: 1rem auto 0.8rem;
}

.logo-tagline {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 400;
    font-size: 0.95rem;
    color: var(--tiefgruen);
    opacity: 0.75;
    letter-spacing: 0.05em;
}

/* =====================================================
   HERO
   ===================================================== */
.hero {
    padding: 4rem 1.5rem 8rem;
    display: flex;
    justify-content: center;
    text-align: center;
}

.hero-inner {
    max-width: 700px;
    width: 100%;
}

.kicker {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.7rem;
    letter-spacing: 0.55em;
    text-transform: uppercase;
    color: var(--soft-teal);
    margin-bottom: 2.5rem;
    padding-left: 0.55em;
    animation: fade-up 1s var(--ease-soft) 0.3s both;
}
.kicker span {
    display: inline-block;
    width: 30px;
    height: 1px;
    background: var(--soft-teal);
    opacity: 0.5;
}

.hero-headline {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(3rem, 9vw, 5.5rem);
    line-height: 1.02;
    color: var(--tiefgruen);
    margin-bottom: 2.5rem;
    letter-spacing: -0.015em;
}
.hero-headline .line {
    display: block;
    animation: fade-up 1.1s var(--ease-soft) both;
}
.hero-headline .line:nth-child(1) { animation-delay: 0.5s; }
.hero-headline .line:nth-child(2) { animation-delay: 0.85s; }
.hero-headline .italic {
    font-style: italic;
    font-weight: 300;
    color: var(--rauchiges-violett);
}

.hero-lede {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(1.15rem, 2.2vw, 1.45rem);
    line-height: 1.75;
    color: var(--tiefgruen);
    opacity: 0.85;
    max-width: 540px;
    margin: 0 auto 4rem;
    animation: fade-up 1s var(--ease-soft) 1.2s both;
}

.scroll-hint {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.7rem;
    color: var(--tiefgruen);
    opacity: 0.55;
    font-size: 0.65rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    padding-left: 0.4em;
    animation: fade-up 1s var(--ease-soft) 1.6s both, bob 2.5s ease-in-out 2s infinite;
}

@keyframes bob {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(6px); }
}

/* =====================================================
   STORY
   ===================================================== */
.story {
    padding: var(--section-pad) 1.5rem;
    display: flex;
    justify-content: center;
    text-align: center;
}

.story-inner {
    max-width: 660px;
    width: 100%;
}

.story-prose {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--tiefgruen);
    opacity: 0.85;
}
.story-prose p { margin-bottom: 1.5rem; }

.story-prose .brand {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 500;
    color: var(--soft-teal);
    font-size: 1.1em;
}

.story-close {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.4rem;
    color: var(--tiefgruen);
    opacity: 1 !important;
    margin-top: 2.5rem !important;
    letter-spacing: 0.02em;
}

/* =====================================================
   KOLLEKTION
   ===================================================== */
.collection {
    padding: var(--section-pad) 1.5rem;
    max-width: var(--container);
    margin: 0 auto;
}

.collection-header {
    text-align: center;
    margin-bottom: 5rem;
}
.collection-sub {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.15rem;
    color: var(--tiefgruen);
    opacity: 0.75;
}

.essences {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.essence {
    position: relative;
    padding: 2.5rem 1.8rem 2.2rem;
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(41, 85, 94, 0.1);
    border-radius: 2px;
    text-align: center;
    transition: all 0.5s var(--ease-soft);
    overflow: hidden;
}

.essence::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(75, 186, 192, 0.04) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s var(--ease-soft);
    pointer-events: none;
}

.essence:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.55);
    border-color: rgba(75, 186, 192, 0.3);
    box-shadow: 0 25px 50px -20px rgba(41, 85, 94, 0.15);
}
.essence:hover::before { opacity: 1; }

.essence-num {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--soft-teal);
    letter-spacing: 0.2em;
    margin-bottom: 1.5rem;
    opacity: 0.7;
}

.essence-name {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 1.75rem;
    color: var(--tiefgruen);
    margin-bottom: 0.4rem;
    letter-spacing: 0.01em;
}

.essence-translation {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1rem;
    color: var(--rauchiges-violett);
    margin-bottom: 1.5rem;
}

.essence-desc {
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--tiefgruen);
    opacity: 0.75;
}

/* =====================================================
   RITUAL
   ===================================================== */
.ritual {
    padding: var(--section-pad) 1.5rem;
    max-width: var(--container);
    margin: 0 auto;
    text-align: center;
}

.ritual-inner > .story-eyebrow,
.ritual-inner > .story-headline {
    margin-left: auto;
    margin-right: auto;
}

.ritual-inner > .story-headline { margin-bottom: 4.5rem; }

.steps {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 1.5rem;
    align-items: start;
    max-width: 900px;
    margin: 0 auto;
}

.step { text-align: center; padding: 0 0.5rem; }

.step-num {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 400;
    font-size: 2.5rem;
    color: var(--soft-teal);
    opacity: 0.85;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.step h4 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 1.6rem;
    color: var(--tiefgruen);
    margin-bottom: 0.8rem;
    letter-spacing: 0.02em;
}

.step p {
    font-size: 0.95rem;
    color: var(--tiefgruen);
    opacity: 0.75;
    line-height: 1.7;
    max-width: 220px;
    margin: 0 auto;
}

.step-divider {
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, transparent, var(--tiefgruen-soft), transparent);
    margin-top: 2.5rem;
}

@media (max-width: 720px) {
    .steps {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .step-divider {
        width: 60px;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--tiefgruen-soft), transparent);
        margin: 0 auto;
    }
}

/* =====================================================
   SIGNUP
   ===================================================== */
.signup-section {
    padding: var(--section-pad) 1.5rem;
    display: flex;
    justify-content: center;
    position: relative;
}

.signup-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(255, 255, 255, 0.4), transparent 70%);
    pointer-events: none;
    z-index: -1;
}

.signup-inner {
    width: 100%;
    max-width: 540px;
    text-align: center;
}

.signup-sub {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--tiefgruen);
    opacity: 0.8;
    margin-bottom: 3.5rem;
}

.signup-form {
    text-align: left;
}

.field { margin-bottom: 1.8rem; }

.field > label {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--tiefgruen);
    opacity: 0.7;
    margin-bottom: 0.8rem;
    padding-left: 0.3em;
}

.field input[type="text"],
.field input[type="email"] {
    width: 100%;
    padding: 1.1rem 1.3rem;
    border: none;
    border-bottom: 1px solid rgba(41, 85, 94, 0.25);
    background: transparent;
    color: var(--tiefgruen);
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.2rem;
    border-radius: 0;
    transition: all 0.4s var(--ease-soft);
}

.field input[type="text"]::placeholder,
.field input[type="email"]::placeholder {
    color: var(--tiefgruen);
    opacity: 0.35;
    font-style: italic;
}

.field input[type="text"]:focus,
.field input[type="email"]:focus {
    outline: none;
    border-bottom-color: var(--soft-teal);
}

.feeling-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.feeling-options input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.feeling-options label {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-style: italic;
    color: var(--tiefgruen);
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(41, 85, 94, 0.18);
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.3s var(--ease-soft);
    user-select: none;
}

.feeling-options label:hover {
    border-color: var(--soft-teal);
    color: var(--soft-teal);
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.6);
}

.feeling-options input[type="radio"]:checked + label {
    background: var(--tiefgruen);
    color: var(--nebel-weiss);
    border-color: var(--tiefgruen);
}

.feeling-options input[type="radio"]:focus-visible + label {
    box-shadow: 0 0 0 3px rgba(75, 186, 192, 0.3);
}

/* Honeypot — versteckt, aber für Bots zugänglich */
.hp-field {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden;
    opacity: 0;
}

.submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    width: 100%;
    margin-top: 1rem;
    padding: 1.25rem 1.5rem;
    background: var(--tiefgruen);
    color: var(--nebel-weiss);
    border: 1px solid var(--tiefgruen);
    border-radius: 2px;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.75rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.5s var(--ease-luxe);
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transform: translateX(-100%);
    transition: transform 0.8s var(--ease-luxe);
}

.submit-btn:hover {
    background: var(--tiefgruen-dark);
    transform: translateY(-2px);
    box-shadow: 0 15px 35px -10px rgba(41, 85, 94, 0.4);
    letter-spacing: 0.42em;
}
.submit-btn:hover::before { transform: translateX(100%); }
.submit-btn:hover svg { transform: translateX(5px); }

.submit-btn:disabled {
    opacity: 0.6;
    cursor: wait;
    transform: none !important;
}

.submit-btn svg { transition: transform 0.4s var(--ease-soft); }

.privacy {
    text-align: center;
    font-size: 0.72rem;
    color: var(--tiefgruen);
    opacity: 0.55;
    margin-top: 1.5rem;
    line-height: 1.7;
    letter-spacing: 0.02em;
}

/* =====================================================
   SUCCESS / ERROR
   ===================================================== */
.success-message {
    text-align: center;
    padding: 3rem 1.5rem;
    color: var(--tiefgruen);
    animation: fade-up 0.9s var(--ease-soft) both;
}
.success-message svg { color: var(--soft-teal); margin-bottom: 1.5rem; }
.success-message h3 {
    font-family: var(--font-display);
    font-weight: 400;
    font-style: italic;
    font-size: 2.4rem;
    margin-bottom: 0.8rem;
}
.success-message p {
    opacity: 0.75;
    line-height: 1.8;
}

.error-message {
    text-align: center;
    padding: 1.5rem;
    margin-top: 1rem;
    color: var(--rauchiges-violett);
    background: rgba(166, 161, 187, 0.1);
    border-radius: 2px;
    font-size: 0.9rem;
}

/* =====================================================
   FOOTER
   ===================================================== */
.site-footer {
    padding: 5rem 1.5rem 3rem;
    text-align: center;
    border-top: 1px solid rgba(41, 85, 94, 0.1);
    margin-top: 3rem;
}

.footer-inner {
    max-width: var(--container);
    margin: 0 auto;
}

.footer-mark {
    color: var(--tiefgruen);
    margin-bottom: 2.5rem;
}

.footer-mark svg {
    margin: 0 auto 0.5rem;
    display: block;
    opacity: 0.85;
}

.footer-name {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 1rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--tiefgruen);
    padding-left: 0.4em;
    margin-bottom: 0.3rem;
}

.footer-tagline {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 0.85rem;
    color: var(--tiefgruen);
    opacity: 0.65;
}

.footer-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    margin-bottom: 2rem;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
}

.footer-nav a {
    color: var(--tiefgruen);
    opacity: 0.7;
    text-decoration: none;
    transition: opacity 0.3s var(--ease-soft), color 0.3s var(--ease-soft);
    padding-bottom: 2px;
    border-bottom: 1px solid transparent;
}
.footer-nav a:hover {
    opacity: 1;
    color: var(--soft-teal);
    border-bottom-color: var(--soft-teal);
}
.footer-nav span { opacity: 0.4; }

.footer-copy {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--tiefgruen);
    opacity: 0.45;
}

/* =====================================================
   SCROLL-REVEAL (via JS toggled class)
   ===================================================== */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 1.1s var(--ease-soft), transform 1.1s var(--ease-soft);
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* gestaffelt für die Essenzen */
.essence.reveal { transition-delay: 0s; }
.essences .essence.reveal.is-visible:nth-child(1) { transition-delay: 0s; }
.essences .essence.reveal.is-visible:nth-child(2) { transition-delay: 0.08s; }
.essences .essence.reveal.is-visible:nth-child(3) { transition-delay: 0.16s; }
.essences .essence.reveal.is-visible:nth-child(4) { transition-delay: 0.24s; }
.essences .essence.reveal.is-visible:nth-child(5) { transition-delay: 0.32s; }
.essences .essence.reveal.is-visible:nth-child(6) { transition-delay: 0.40s; }
.essences .essence.reveal.is-visible:nth-child(7) { transition-delay: 0.48s; }

/* =====================================================
   ANIMATIONS
   ===================================================== */
@keyframes fade-down {
    from { opacity: 0; transform: translateY(-14px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fade-up {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 600px) {
    .site-header { padding: 3rem 1rem 1.5rem; }
    .hero { padding: 3rem 1rem 6rem; }
    .hero-lede { font-size: 1.1rem; }
    .feeling-options label { font-size: 0.98rem; padding: 0.5rem 1rem; }
    .essence { padding: 2rem 1.5rem; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .reveal { opacity: 1; transform: none; }
}
