/* =============================================
   STYLE.CSS – Be Fresh. Be You. by Denise

   WO FINDEST DU WAS?

   Suche mit Strg+F nach dem Begriff in Klammern:
   → Farben ändern:    suche ":root"
   → Schriften ändern: suche "font-display" oder "font-body"
   → Navigation:       suche "NAVIGATION"
   → Hero-Bereich:     suche "HERO"
   → Über mich:        suche "ABOUT"
   → Warum frisch:     suche "WHY FRESH"
   → Produkte:         suche "FAVORITES"
   → Routine:          suche "ROUTINE"
   → Fresh Date:       suche "FRESH DATE"
   → FAQ:              suche "FAQ"
   → Footer:           suche "FOOTER"
   → Mobile Ansicht:   suche "RESPONSIVE"
============================================= */


/* =============================================
   FARBEN & VARIABLEN

   Hier kannst du alle Farben der Website ändern.
   Ersetze einfach die Hex-Codes (z.B. #FAF7F2).
   Die Änderung wirkt sich sofort auf die ganze Seite aus.
============================================= */
:root {
    /* Hintergrundfarben */
    --cream:       #FAF7F2;   /* Hellster Hintergrund */
    --cream-warm:  #F4EDE0;   /* Etwas wärmeres Creme (für Abschnitte) */
    --beige:       #EDE0CC;   /* Beige */
    --beige-dark:  #D4C4AA;   /* Dunkleres Beige (für Rahmen) */

    /* Akzentfarben */
    --sage:        #8A9E7E;   /* Salbeigrün (Hauptakzent) */
    --sage-light:  #B5C5AA;   /* Helles Salbei */
    --sage-dark:   #6B7F62;   /* Dunkles Salbei */
    --sage-bg:     #EBF0E7;   /* Salbei als Hintergrundton */
    --earth:       #A67B5B;   /* Warmer Erdton (zweiter Akzent) */
    --earth-dark:  #7A5C3F;   /* Dunkler Erdton */

    /* Textfarben */
    --text-dark:   #2C2318;   /* Haupttext */
    --text-medium: #5C4A3A;   /* Nebentext */
    --text-light:  #8B7355;   /* Dezenter Text */

    /* =============================================
       SCHRIFTEN – hier ändern
       Schriftnamen müssen mit dem Google Fonts Link
       in index.html übereinstimmen.
    ============================================= */
    --font-display: 'Cormorant Garamond', Georgia, serif; /* Überschriften */
    --font-body:    'Jost', system-ui, sans-serif;        /* Fließtext */

    /* Abstände */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 28px;
    --radius-xl: 48px;

    /* Übergänge */
    --transition:      0.28s ease;
    --transition-slow: 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}


/* =============================================
   RESET & BASIS
============================================= */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 16px;
    color: var(--text-dark);
    background-color: var(--cream);
    line-height: 1.75;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

ul { list-style: none; }

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    padding: 0;
}


/* =============================================
   LAYOUT-HELFER
============================================= */
.container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 96px 0;
}

/* Abschnitt mit warmem Hintergrund */
.section--warm {
    background-color: var(--cream-warm);
}

/* Abschnitt mit Salbei-Hintergrund */
.section--sage {
    background-color: var(--sage-bg);
}


/* =============================================
   GEMEINSAME SECTION-ELEMENTE
============================================= */
.section__header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

/* Kleine Zeile über der Überschrift */
.section__eyebrow {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 16px;
    display: block;
}

/* Große Überschrift */
.section__headline {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 20px;
}

/* Kursiver Akzent in Überschriften */
.section__headline em {
    font-style: italic;
    color: var(--earth);
}

/* Einleitungstext unter der Überschrift */
.section__intro {
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.85;
}


/* =============================================
   BUTTONS
============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.3px;
    transition: background-color var(--transition), border-color var(--transition),
                color var(--transition), transform var(--transition), box-shadow var(--transition);
    cursor: pointer;
}

/* Gefüllter Button (Salbeigrün) */
.btn--primary {
    background-color: var(--sage);
    color: #fff;
    border: 1.5px solid var(--sage);
}

.btn--primary:hover {
    background-color: var(--sage-dark);
    border-color: var(--sage-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(107, 127, 98, 0.28);
}

/* Umrandeter Button */
.btn--outline {
    background: transparent;
    color: var(--text-dark);
    border: 1.5px solid var(--beige-dark);
}

.btn--outline:hover {
    border-color: var(--sage);
    color: var(--sage);
    transform: translateY(-2px);
}


/* =============================================
   SCROLL-ANIMATIONEN

   Elemente mit class="reveal" erscheinen sanft
   beim Hinein-Scrollen. Das passiert automatisch
   per JavaScript.
============================================= */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Eingangsanimation Hero */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(36px); }
    to   { opacity: 1; transform: translateY(0); }
}


/* =============================================
   NAVIGATION
============================================= */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    padding: 22px 0;
    transition: background-color 0.4s ease, box-shadow 0.4s ease, padding 0.3s ease;
}

/* Nav nach dem Scrollen */
.nav.scrolled {
    background-color: rgba(250, 247, 242, 0.95);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
    padding: 14px 0;
}

.nav__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Logo / Name links */
.nav__logo {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-dark);
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    letter-spacing: 0.3px;
}

.nav__logo span {
    font-family: var(--font-body);
    font-size: 0.62rem;
    font-weight: 400;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--text-light);
}

/* Link-Liste */
.nav__links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav__link {
    font-size: 13px;
    font-weight: 400;
    color: var(--text-medium);
    letter-spacing: 0.2px;
    transition: color var(--transition);
    position: relative;
}

/* Unterstrich-Hover-Effekt */
.nav__link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--sage);
    transition: width var(--transition);
}

.nav__link:hover { color: var(--text-dark); }
.nav__link:hover::after { width: 100%; }

/* CTA-Button in der Nav */
.nav__link--cta {
    background-color: var(--sage);
    color: #fff !important;
    padding: 9px 22px;
    border-radius: 100px;
}

.nav__link--cta::after { display: none; }

.nav__link--cta:hover {
    background-color: var(--sage-dark);
    transform: translateY(-1px);
}

/* Hamburger-Button (nur Mobile sichtbar) */
.nav__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}

.nav__hamburger span {
    display: block;
    width: 24px;
    height: 1.5px;
    background-color: var(--text-dark);
    transition: transform var(--transition), opacity var(--transition);
    transform-origin: center;
}

.nav__hamburger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__hamburger.active span:nth-child(2) { opacity: 0; }
.nav__hamburger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }


/* =============================================
   HERO
============================================= */
.hero {
    min-height: 100svh;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 24px 80px;
    gap: 40px;
    max-width: 1120px;
    margin: 0 auto;
}

/* Animierter Hintergrund-Blob */
.hero__blob {
    position: fixed;
    top: -15%;
    right: -18%;
    width: min(640px, 85vw);
    height: min(640px, 85vw);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    background: linear-gradient(135deg,
        rgba(181, 197, 170, 0.18),
        rgba(237, 224, 204, 0.35));
    animation: morphBlob 14s ease-in-out infinite;
    z-index: -1;
    pointer-events: none;
}

@keyframes morphBlob {
    0%,100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    25%      { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
    50%      { border-radius: 50% 60% 30% 60% / 40% 50% 60% 50%; }
    75%      { border-radius: 60% 40% 60% 30% / 70% 30% 60% 40%; }
}

/* Text-Seite */
.hero__content {
    position: relative;
    z-index: 1;
    flex: 1;
    max-width: 560px;
    animation: fadeInUp 1s ease both;
}

.hero__eyebrow {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 24px;
    display: block;
}

.hero__headline {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 400;
    line-height: 1.08;
    color: var(--text-dark);
    margin-bottom: 28px;
    letter-spacing: -0.5px;
}

.hero__headline em {
    font-style: italic;
    color: var(--earth);
}

.hero__subheadline {
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    color: var(--text-medium);
    line-height: 1.85;
    margin-bottom: 40px;
    font-weight: 300;
}

/* Bild-Seite */
.hero__image-area {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s 0.2s ease both;
}

/* Echtes Bild (wenn aktiviert) */
.hero__image {
    width: 100%;
    max-width: 440px;
    height: 560px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

/* Platzhalter bis Bild eingefügt wird */
.hero__image-placeholder {
    width: 300px;
    height: 400px;
    border-radius: var(--radius-lg);
    background: linear-gradient(145deg, var(--beige), var(--cream-warm));
    border: 1px solid var(--beige-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__botanical {
    width: 180px;
    height: auto;
}

/* Scroll-Pfeil unten */
.hero__scroll-hint {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 10px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    animation: float 3.5s ease-in-out infinite;
}

.hero__scroll-line {
    width: 1px;
    height: 38px;
    background: linear-gradient(to bottom, var(--text-light), transparent);
}

@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(7px); }
}


/* =============================================
   ABOUT – Über mich
============================================= */
.about__grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 72px;
    align-items: center;
}

.about__image-wrap {
    position: relative;
}

/* Echtes Foto */
.about__image {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

/* Platzhalter */
.about__image-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    background: linear-gradient(145deg, var(--beige), var(--cream-warm));
    border-radius: var(--radius-lg);
    border: 1px solid var(--beige-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about__initials {
    font-family: var(--font-display);
    font-size: 7rem;
    color: var(--text-light);
    opacity: 0.4;
    font-style: italic;
    font-weight: 400;
    user-select: none;
}

/* Abzeichen unten rechts am Foto */
.about__badge {
    position: absolute;
    bottom: -16px;
    right: -16px;
    background-color: var(--sage);
    color: #fff;
    padding: 18px 22px;
    border-radius: var(--radius-md);
    text-align: center;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    gap: 3px;
    box-shadow: 0 8px 24px rgba(107, 127, 98, 0.28);
    line-height: 1.4;
}

.about__text {
    color: var(--text-medium);
    line-height: 1.9;
    margin-bottom: 18px;
    font-size: 0.97rem;
}

.about__instagram {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--earth);
    font-size: 14px;
    font-weight: 400;
    transition: gap var(--transition), color var(--transition);
    margin-top: 8px;
}

.about__instagram:hover {
    gap: 13px;
    color: var(--earth-dark);
}


/* =============================================
   WHY FRESH – Warum frische Pflege?
============================================= */
.features__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature-card {
    background: #fff;
    padding: 40px 32px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: transform var(--transition), box-shadow var(--transition);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.05);
}

.feature-card__icon {
    width: 48px;
    height: 48px;
    color: var(--sage);
    margin-bottom: 22px;
}

.feature-card__title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.feature-card__text {
    font-size: 0.92rem;
    color: var(--text-medium);
    line-height: 1.8;
}


/* =============================================
   FAVORITES – Meine Pflege-Favoriten
============================================= */
.products__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

.product-card {
    background: #fff;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform var(--transition), box-shadow var(--transition);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.08);
}

/* Bild-Bereich der Produktkarte */
.product-card__image-wrap {
    position: relative;
    background: linear-gradient(145deg, var(--cream-warm), var(--beige));
    aspect-ratio: 3/4;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Echtes Produktfoto */
.product-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Icon-Platzhalter */
.product-card__placeholder {
    width: 65px;
    height: 85px;
    color: var(--text-light);
    opacity: 0.5;
}

/* Kleiner Badge (z.B. "Bestseller") */
.product-card__tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background-color: var(--earth);
    color: #fff;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 100px;
}

.product-card__content {
    padding: 22px 22px 24px;
}

.product-card__name {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.product-card__desc {
    font-size: 0.875rem;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 16px;
}

.product-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--sage);
    transition: gap var(--transition), color var(--transition);
}

.product-card__link:hover {
    gap: 10px;
    color: var(--sage-dark);
}

.favorites__cta {
    text-align: center;
}


/* =============================================
   ROUTINE – 4-Step-Routine
============================================= */
.routine {
    position: relative;
    overflow: hidden;
}

/* 2×2 Grid der Schritte */
.routine__steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    background-color: rgba(107, 127, 98, 0.12);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.routine__step {
    background-color: var(--sage-bg);
    padding: 48px 40px;
    display: flex;
    gap: 28px;
    align-items: flex-start;
    transition: background-color var(--transition);
}

.routine__step:hover {
    background-color: #e3eade;
}

/* Große Schrittnummer */
.routine__step-number {
    font-family: var(--font-display);
    font-size: 3.8rem;
    font-weight: 300;
    color: var(--sage-light);
    line-height: 1;
    flex-shrink: 0;
    min-width: 65px;
    font-style: italic;
}

.routine__step-title {
    font-family: var(--font-display);
    font-size: 1.55rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.routine__step-text {
    font-size: 0.9rem;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 12px;
}

.routine__step-product {
    font-size: 12px;
    font-weight: 500;
    color: var(--sage-dark);
    letter-spacing: 0.5px;
}

/* Dekorativer Kreis-Ring im Hintergrund */
.routine__deco {
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: 56px solid rgba(181, 197, 170, 0.12);
    pointer-events: none;
}


/* =============================================
   FRESH DATE – Persönliche Beratung
============================================= */
.fresh-date__card {
    background: linear-gradient(135deg, var(--cream-warm), var(--beige));
    border-radius: var(--radius-xl);
    padding: 80px 72px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 72px;
    align-items: center;
    border: 1px solid var(--beige-dark);
    position: relative;
    overflow: hidden;
}

/* Dekorativer Hintergrund-Blob in der Karte */
.fresh-date__card::before {
    content: '';
    position: absolute;
    top: -120px;
    left: -120px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(181, 197, 170, 0.1);
    pointer-events: none;
}

.fresh-date__text {
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.9;
    margin-bottom: 28px;
}

.fresh-date__benefits {
    list-style: none;
    margin-bottom: 36px;
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.fresh-date__benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--text-medium);
}

.fresh-date__benefits li svg {
    color: var(--sage);
    flex-shrink: 0;
}

/* Botanische Kreis-Grafik rechts */
.fresh-date__visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.fresh-date__circle {
    width: 240px;
    height: 240px;
    color: var(--sage);
    animation: rotateSlow 32s linear infinite;
}

@keyframes rotateSlow {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}


/* =============================================
   FAQ
============================================= */
.faq__list {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.faq__item {
    background: #fff;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.faq__question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 26px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--text-dark);
    text-align: left;
    transition: background-color var(--transition);
    gap: 16px;
}

.faq__question:hover {
    background-color: var(--cream-warm);
}

.faq__icon {
    font-size: 1.5rem;
    color: var(--sage);
    font-weight: 300;
    flex-shrink: 0;
    line-height: 1;
    transition: transform var(--transition);
    width: 24px;
    text-align: center;
}

.faq__item.open .faq__icon {
    transform: rotate(45deg);
}

/* Ausgeklappter Bereich */
.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 26px;
}

.faq__item.open .faq__answer {
    max-height: 400px;
    padding: 0 26px 22px;
}

.faq__answer p {
    font-size: 0.9rem;
    color: var(--text-medium);
    line-height: 1.9;
}

.faq__answer a {
    color: var(--sage-dark);
    text-decoration: underline;
    text-decoration-color: rgba(107, 127, 98, 0.35);
    transition: text-decoration-color var(--transition);
}

.faq__answer a:hover {
    text-decoration-color: var(--sage-dark);
}


/* =============================================
   FOOTER
============================================= */
.footer {
    background-color: var(--text-dark);
    color: rgba(255, 255, 255, 0.65);
    padding: 64px 0 40px;
}

.footer__top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 56px;
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer__logo {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: #fff;
    font-weight: 400;
    margin-bottom: 4px;
}

.footer__tagline {
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--sage-light);
    margin-bottom: 16px;
}

.footer__desc {
    font-size: 0.875rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.4);
}

.footer__links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.footer__col-title {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 18px;
}

.footer__col ul {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.footer__col a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.55);
    transition: color var(--transition);
}

.footer__col a:hover {
    color: #fff;
}

.footer__bottom {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Pflichttext (Ringana-Compliance) */
.footer__disclaimer {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.28);
    line-height: 1.7;
    max-width: 680px;
}

.footer__copyright {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.28);
}


/* =============================================
   RESPONSIVE – Mobile Anpassungen

   Hier werden die Layouts für kleinere
   Bildschirme angepasst. Meistens musst du
   hier nichts ändern.
============================================= */

/* Tablets (bis 1024px) */
@media (max-width: 1024px) {
    .products__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fresh-date__card {
        grid-template-columns: 1fr;
        padding: 52px 44px;
        gap: 36px;
    }

    .fresh-date__visual {
        display: none;
    }

    .about__grid {
        gap: 48px;
    }
}

/* Große Smartphones & kleine Tablets (bis 768px) */
@media (max-width: 768px) {
    .section {
        padding: 72px 0;
    }

    /* Hamburger zeigen */
    .nav__hamburger {
        display: flex;
    }

    /* Mobile Menü als Side-Drawer */
    .nav__links {
        position: fixed;
        top: 0;
        right: -100%;
        bottom: 0;
        width: 76vw;
        max-width: 300px;
        background-color: var(--cream);
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 80px 32px 40px;
        box-shadow: -8px 0 36px rgba(0, 0, 0, 0.08);
        transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        overflow-y: auto;
    }

    .nav__links.open {
        right: 0;
    }

    .nav__link {
        font-size: 1.05rem;
        width: 100%;
        padding: 15px 0;
        border-bottom: 1px solid var(--beige);
    }

    .nav__link--cta {
        margin-top: 24px;
        width: auto;
        padding: 12px 26px;
        border-bottom: none;
    }

    /* Hero: untereinander */
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 100px 24px 56px;
        gap: 0;
    }

    .hero__image-area {
        display: none;
    }

    .hero__blob {
        top: -5%;
        right: -20%;
        width: 75vw;
        height: 75vw;
    }

    /* About: untereinander */
    .about__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about__image-wrap {
        max-width: 280px;
        margin: 0 auto;
    }

    /* Features: 1 Spalte */
    .features__grid {
        grid-template-columns: 1fr;
    }

    /* Produkte: 2 Spalten */
    .products__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Routine: 1 Spalte */
    .routine__steps {
        grid-template-columns: 1fr;
    }

    .routine__step {
        padding: 36px 28px;
    }

    /* Fresh Date */
    .fresh-date__card {
        border-radius: var(--radius-lg);
        padding: 40px 28px;
    }

    /* Footer */
    .footer__top {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer__links {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

/* Kleine Smartphones (bis 480px) */
@media (max-width: 480px) {
    .hero__headline {
        font-size: 2.8rem;
    }

    .products__grid {
        grid-template-columns: 1fr;
    }

    .fresh-date__card {
        padding: 36px 22px;
    }
}
