/* ============================================================
   Candi Guide Pro — Variante 1 »Luxury«
   Palette: Bone / Espresso / Brass · Adamina + General Sans
   ============================================================ */

:root {
    --bone:          #F3EFE8;
    --bone-soft:     #ECE7DC;
    --bone-deep:     #E2DCCE;
    --espresso:      #241F19;
    --espresso-deep: #191510;
    --ink:           #2E2820;
    --ink-soft:      #5D5346;
    --ink-mute:      #857A6B;
    --brass:         #B98A4E;
    --brass-deep:    #966A38;
    --brass-pale:    #E7D6B4;
    --hairline:      rgba(46, 40, 32, 0.16);
    --hairline-soft: rgba(46, 40, 32, 0.08);
    --hairline-bone: rgba(243, 239, 232, 0.18);
    --shadow-refined: 0 30px 65px -30px rgba(25, 21, 16, 0.4);
    --ease-lux: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    background: var(--bone);
    color: var(--ink);
    font-family: 'General Sans', system-ui, sans-serif;
    font-size: 17px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

a { color: inherit; }

::selection { background: var(--brass-pale); color: var(--espresso); }

/* ---------- Typografie ---------- */

.serif { font-family: 'Adamina', Georgia, serif; font-weight: 400; }

h1, h2, h3 {
    font-family: 'Adamina', Georgia, serif;
    font-weight: 400;
    line-height: 1.16;
    color: var(--espresso);
    text-wrap: balance;
}

h1 { font-size: clamp(1.9rem, 3.3vw, 3rem); letter-spacing: -0.005em; }

.brand-line {
    font-family: 'Adamina', Georgia, serif;
    font-size: clamp(1.5rem, 2.6vw, 2.2rem);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--espresso);
    border-bottom: 1px solid var(--hairline);
    padding-bottom: 1.1rem;
}

.brand-line .pro { color: var(--brass-deep); }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.9rem); letter-spacing: -0.005em; }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--brass-deep);
}

.eyebrow::before {
    content: "";
    width: 2.4rem;
    height: 1px;
    background: var(--brass);
}

.em-i { font-style: italic; }

/* ---------- Layout-Basics ---------- */

.wrap { width: min(1180px, 92vw); margin-inline: auto; }
.wrap-narrow { width: min(860px, 92vw); margin-inline: auto; }

section { position: relative; }

.section-pad { padding-block: clamp(5rem, 10vw, 8.5rem); }

.hairline-top { border-top: 1px solid var(--hairline); }

/* ---------- Header ---------- */

.site-head {
    position: sticky;
    top: 0;
    z-index: 50;
    background: color-mix(in srgb, var(--bone) 88%, transparent);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--hairline-soft);
    transition: box-shadow 0.4s var(--ease-lux);
}

.site-head.is-scrolled { box-shadow: 0 10px 30px -20px rgba(25, 21, 16, 0.25); }

.site-head .inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-block: 1.05rem;
}

.brand img { height: 30px; width: auto; }

.head-cta {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--bone);
    background: var(--espresso);
    border: 1px solid var(--espresso);
    padding: 0.68rem 1.35rem;
    border-radius: 999px;
    transition: background 0.35s var(--ease-lux), border-color 0.35s var(--ease-lux);
    white-space: nowrap;
}

.head-cta:hover { background: var(--brass-deep); border-color: var(--brass-deep); }

/* ---------- Buttons ---------- */

.btn-block { display: flex; flex-direction: column; align-items: flex-start; gap: 0.85rem; }

.btn {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
    text-decoration: none;
    text-align: center;
    background: var(--espresso);
    color: var(--bone);
    padding: 1.15rem 2.6rem;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s var(--ease-lux), box-shadow 0.4s var(--ease-lux);
    box-shadow: 0 18px 38px -18px rgba(25, 21, 16, 0.55);
}

.btn .btn-main {
    font-size: 1.02rem;
    font-weight: 500;
    letter-spacing: 0.06em;
}

.btn .btn-sub {
    font-size: 0.72rem;
    letter-spacing: 0.05em;
    opacity: 0.72;
    font-weight: 400;
}

.btn::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 30%, rgba(243, 239, 232, 0.14) 50%, transparent 70%);
    transform: translateX(-120%);
    transition: transform 0.9s var(--ease-lux);
}

.btn:hover { transform: translateY(-2px); box-shadow: 0 26px 48px -20px rgba(25, 21, 16, 0.6); }
.btn:hover::after { transform: translateX(120%); }

.btn.btn-light { background: var(--bone); color: var(--espresso); box-shadow: 0 18px 38px -18px rgba(0, 0, 0, 0.55); }

.btn:focus-visible, a:focus-visible {
    outline: 2px solid var(--brass);
    outline-offset: 3px;
}

/* ---------- Preis ---------- */

.price-tag { display: flex; align-items: baseline; gap: 0.8rem; flex-wrap: wrap; }

.price-tag .label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--brass-deep);
}

.price-tag .old {
    font-family: 'Adamina', Georgia, serif;
    font-size: 1.25rem;
    color: var(--ink-mute);
    text-decoration: line-through;
    text-decoration-thickness: 1px;
}

.price-tag .now {
    font-family: 'Adamina', Georgia, serif;
    font-size: 2rem;
    color: var(--espresso);
}

.price-tag .vat { font-size: 0.8rem; color: var(--ink-mute); }

/* ---------- Hero ---------- */

.hero { padding-block: clamp(3.5rem, 7vw, 6.5rem) clamp(4rem, 8vw, 7rem); }

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(2.5rem, 6vw, 5.5rem);
    align-items: center;
}

.hero-copy > * + * { margin-top: 1.6rem; }

.hero-copy .sub {
    font-size: clamp(1.05rem, 1.6vw, 1.25rem);
    color: var(--ink-soft);
    max-width: 34rem;
}

.lang-note {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.86rem;
    color: var(--ink-soft);
    border: 1px solid var(--hairline);
    border-radius: 999px;
    padding: 0.4rem 1.05rem;
    background: color-mix(in srgb, var(--bone-soft) 60%, transparent);
}

.lang-note .dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--brass);
    animation: pulse 2.6s ease-in-out infinite;
}

@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }

/* Cover-Bühne */

.hero-stage { position: relative; }

.hero-stage .frame {
    position: absolute;
    inset: 6% -5% -6% 5%;
    border: 1px solid var(--hairline);
    border-radius: 2px;
    pointer-events: none;
}

.hero-stage .frame::after {
    content: "CANDI GUIDE · VOL. 3 · 2026";
    position: absolute;
    right: -0.5px;
    bottom: 8%;
    transform: rotate(180deg);
    writing-mode: vertical-rl;
    font-size: 0.62rem;
    letter-spacing: 0.34em;
    color: var(--ink-mute);
    background: var(--bone);
    padding-block: 0.8rem;
}

.hero-stage .cover {
    width: min(92%, 500px);
    display: block;
    margin-inline: auto;
    box-shadow: var(--shadow-refined);
    border-radius: 2px;
    animation: floaty 9s ease-in-out infinite;
}

@keyframes floaty {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Stats-Streifen */

.stats {
    margin-top: clamp(3.5rem, 7vw, 5.5rem);
    border-top: 1px solid var(--hairline);
    border-bottom: 1px solid var(--hairline);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.stats .stat {
    padding: 1.6rem 1rem;
    text-align: center;
}

.stats .stat + .stat { border-left: 1px solid var(--hairline-soft); }

.stats .num {
    font-family: 'Adamina', Georgia, serif;
    font-size: clamp(1.5rem, 2.6vw, 2.1rem);
    color: var(--espresso);
}

.stats .num sup { font-size: 0.6em; color: var(--brass-deep); }

.stats .lbl {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink-mute);
    margin-top: 0.3rem;
}

/* ---------- Story („Was ist der Candi Guide Pro…“) ---------- */

.story-grid {
    display: grid;
    grid-template-columns: 1fr 0.78fr;
    gap: clamp(2.5rem, 6vw, 5.5rem);
    align-items: start;
}

.story-copy > * + * { margin-top: 1.35rem; }

.story-copy h2 { margin-bottom: 2.2rem; }

.story-copy p { color: var(--ink-soft); }

.story-copy p strong { color: var(--espresso); font-weight: 600; }

.story-copy .letsgo {
    font-family: 'Adamina', Georgia, serif;
    font-size: 1.35rem;
    color: var(--espresso);
    padding-top: 0.4rem;
}

.story-media { position: sticky; top: 96px; }

.story-media video {
    border-radius: 2px;
    box-shadow: var(--shadow-refined);
}

.story-media .caption,
figcaption.caption {
    margin-top: 0.9rem;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-mute);
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.story-media .caption::before,
figcaption.caption::before {
    content: "";
    width: 1.6rem;
    height: 1px;
    background: var(--brass);
    flex: none;
}

.story-cta { margin-top: 2.6rem; }

/* ---------- Dunkle Sektion: Was genau ist enthalten? ---------- */

.dark {
    background: var(--espresso);
    color: var(--bone);
}

.dark h2 { color: var(--bone); }

.dark .eyebrow { color: var(--brass); }

.included-head { max-width: 40rem; }

.included-grid {
    margin-top: clamp(2.8rem, 5vw, 4.2rem);
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: clamp(2.5rem, 5.5vw, 5rem);
    align-items: start;
}

.check-list { list-style: none; }

.check-list li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.1rem;
    padding-block: 1.05rem;
    border-bottom: 1px solid var(--hairline-bone);
    color: color-mix(in srgb, var(--bone) 82%, transparent);
    font-size: 0.98rem;
}

.check-list li:first-child { border-top: 1px solid var(--hairline-bone); }

.check-list li strong { color: var(--bone); font-weight: 600; }

.check-list .tick {
    width: 1.5rem;
    height: 1.5rem;
    flex: none;
    margin-top: 0.15rem;
    border: 1px solid var(--brass);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--brass);
    font-size: 0.72rem;
}

.check-list li .note {
    display: block;
    margin-top: 0.55rem;
    font-size: 0.88rem;
    color: color-mix(in srgb, var(--bone) 58%, transparent);
}

.video-stack { display: grid; gap: 2.6rem; position: sticky; top: 96px; }

.video-frame { position: relative; }

.video-frame .ratio {
    position: relative;
    aspect-ratio: 16 / 9;
    background: var(--espresso-deep);
    border: 1px solid var(--hairline-bone);
    border-radius: 2px;
    overflow: hidden;
}

.video-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-frame figcaption {
    margin-top: 0.85rem;
    font-family: 'Adamina', Georgia, serif;
    font-size: 1.05rem;
    color: var(--bone);
}

.dark-cta { margin-top: clamp(3rem, 5vw, 4rem); display: flex; justify-content: center; }

/* ---------- Blick ins Magazin ---------- */

.pages-section { overflow: hidden; }

.pages-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2.6rem;
}

.pages-scroller {
    display: flex;
    gap: 1.4rem;
    overflow-x: auto;
    padding-bottom: 1.2rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.pages-scroller::-webkit-scrollbar { height: 4px; }
.pages-scroller::-webkit-scrollbar-thumb { background: var(--brass); border-radius: 2px; }
.pages-scroller::-webkit-scrollbar-track { background: var(--hairline-soft); }

.pages-scroller .page {
    flex: 0 0 auto;
    width: min(62vw, 430px);
    scroll-snap-align: start;
}

.pages-scroller .page img {
    border: 1px solid var(--hairline);
    border-radius: 2px;
    box-shadow: 0 20px 45px -25px rgba(25, 21, 16, 0.35);
    background: #fff;
}

.pages-scroller .page.tall { width: min(46vw, 300px); }

.pages-note {
    margin-top: 0.6rem;
    font-size: 0.82rem;
    color: var(--ink-mute);
}

/* ---------- Vorteile ---------- */

.benefits-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: clamp(2.5rem, 6vw, 5.5rem);
    align-items: center;
}

.benefits-media img {
    border-radius: 2px;
    box-shadow: var(--shadow-refined);
}

.benefit-list { list-style: none; margin-top: 2.4rem; }

.benefit-list li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.2rem;
    padding-block: 1.1rem;
    border-bottom: 1px solid var(--hairline);
    color: var(--ink-soft);
}

.benefit-list li:first-child { border-top: 1px solid var(--hairline); }

.benefit-list li strong { color: var(--espresso); font-weight: 600; }

.benefit-list .idx {
    color: var(--brass-deep);
    padding-top: 0.1rem;
    min-width: 1.4rem;
}

.benefits-sub {
    color: var(--ink-soft);
    margin-top: 1.2rem;
    font-size: 1.05rem;
}

.benefits-sub strong { color: var(--espresso); }

/* ---------- Worauf wartest du noch? ---------- */

.waiting-grid {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: clamp(2.5rem, 6vw, 5rem);
    align-items: center;
}

.waiting-copy > * + * { margin-top: 1.35rem; }
.waiting-copy p { color: var(--ink-soft); }
.waiting-copy h2 { margin-bottom: 2rem; }

.waiting-media { position: relative; }

.waiting-media img {
    border-radius: 2px;
    box-shadow: var(--shadow-refined);
    width: 100%;
}

.waiting-media::before {
    content: "";
    position: absolute;
    inset: -1.4rem 1.4rem 1.4rem -1.4rem;
    border: 1px solid var(--brass);
    opacity: 0.5;
    border-radius: 2px;
    pointer-events: none;
}

/* ---------- Testimonials ---------- */

.feedback { background: var(--bone-soft); }

.feedback-grid {
    margin-top: clamp(2.8rem, 5vw, 4rem);
    columns: 2;
    column-gap: 1.8rem;
}

.quote-card {
    break-inside: avoid;
    margin-bottom: 1.8rem;
    background: var(--bone);
    border: 1px solid var(--hairline-soft);
    border-radius: 2px;
    padding: 2.1rem 2.2rem 1.9rem;
    box-shadow: 0 16px 40px -28px rgba(25, 21, 16, 0.3);
}

.quote-card .q-mark {
    font-family: 'Adamina', Georgia, serif;
    font-size: 2.6rem;
    line-height: 0.6;
    color: var(--brass);
    display: block;
    margin-bottom: 1.1rem;
}

.quote-card p {
    font-size: 0.95rem;
    color: var(--ink-soft);
}

.quote-card p + p { margin-top: 0.8rem; }

.quote-card .who {
    display: flex;
    align-items: center;
    gap: 0.95rem;
    margin-top: 1.5rem;
    padding-top: 1.3rem;
    border-top: 1px solid var(--hairline-soft);
}

.quote-card .who img {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    filter: grayscale(0.25);
}

.quote-card .who .name {
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--espresso);
    line-height: 1.3;
}

.quote-card .who .role {
    font-size: 0.76rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-mute);
}

/* ---------- Finale ---------- */

.finale {
    background: var(--espresso);
    color: var(--bone);
    text-align: center;
}

.finale h2 {
    color: var(--bone);
    font-size: clamp(2rem, 4vw, 3.2rem);
}

.finale .sub {
    margin-top: 1.2rem;
    color: color-mix(in srgb, var(--bone) 70%, transparent);
    font-size: 1.1rem;
}

.finale .sub .em-i { color: var(--brass-pale); }

.finale .price-tag { justify-content: center; margin-top: 2.4rem; }
.finale .price-tag .now { color: var(--bone); font-size: 2.4rem; }
.finale .price-tag .old { color: color-mix(in srgb, var(--bone) 45%, transparent); }
.finale .price-tag .vat { color: color-mix(in srgb, var(--bone) 55%, transparent); }

.finale .btn-block { align-items: center; margin-top: 2.2rem; }

.finale .guarantee {
    margin-top: 1.6rem;
    font-size: 0.82rem;
    color: color-mix(in srgb, var(--bone) 55%, transparent);
}

/* ---------- Footer ---------- */

.site-foot {
    background: var(--espresso-deep);
    color: color-mix(in srgb, var(--bone) 62%, transparent);
    padding-block: 3rem;
    font-size: 0.85rem;
}

.site-foot .inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.6rem;
}

.site-foot img { height: 26px; opacity: 0.85; }

.site-foot nav { display: flex; gap: 1.6rem; }

.site-foot a { color: inherit; text-decoration: none; border-bottom: 1px solid transparent; transition: border-color 0.3s, color 0.3s; }

.site-foot a:hover { color: var(--bone); border-color: var(--brass); }

.site-foot .legal { width: 100%; font-size: 0.78rem; opacity: 0.75; }

/* ---------- Reveal ---------- */

.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.9s var(--ease-lux), transform 0.9s var(--ease-lux);
}

.reveal.is-visible { opacity: 1; transform: none; }

.reveal-d1 { transition-delay: 0.12s; }
.reveal-d2 { transition-delay: 0.24s; }

/* CTA buttons must render immediately — never delayed behind scroll reveal */
.btn-block.reveal { opacity: 1; transform: none; transition: none; }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .reveal { opacity: 1; transform: none; transition: none; }
    .hero-stage .cover { animation: none; }
    .lang-note .dot { animation: none; }
    .btn::after { display: none; }
}

/* ---------- Responsive ---------- */

@media (max-width: 980px) {
    .hero-grid,
    .story-grid,
    .included-grid,
    .benefits-grid,
    .waiting-grid { grid-template-columns: 1fr; }

    .hero-stage { order: -1; }
    .hero-stage .frame::after { display: none; }
    .hero-stage .cover { width: min(72%, 380px); }

    .story-media, .video-stack { position: static; }

    .stats { grid-template-columns: repeat(2, 1fr); }
    .stats .stat:nth-child(3) { border-top: 1px solid var(--hairline-soft); border-left: 0; grid-column: 1 / -1; }

    .benefits-media { order: 2; max-width: 520px; }

    .feedback-grid { columns: 1; }
}

@media (max-width: 560px) {
    body { font-size: 16px; }

    .section-pad { padding-block: 4rem; }

    .btn { width: 100%; padding-inline: 1.4rem; }
    .btn-block { align-items: stretch; }

    .head-cta { font-size: 0.68rem; padding: 0.55rem 1rem; }
    .brand img { height: 24px; }

    .quote-card { padding: 1.6rem 1.4rem 1.5rem; }

    .pages-scroller .page { width: 78vw; }
    .pages-scroller .page.tall { width: 58vw; }

    .price-tag .now { font-size: 1.7rem; }
}
