/* ========================================
   EVERPIECE — BASE / DESKTOP
   This file reorganises the existing CSS only.
   No visual values were intentionally changed.
======================================== */
/* ========================================
   EVERPIECE — BASE
======================================== */

:root {
    --deep-navy: #172936;
    --warm-ivory: #f4efe6;
    --soft-white: #fcfbf8;
    --sage: #74887d;
    --muted-gold: #c9a66b;

    --font-display: "Playfair Display", serif;
    --font-body: "Inter", sans-serif;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    background: var(--warm-ivory);
    color: var(--deep-navy);
    font-family: var(--font-body);
}

body.header-scrolled {
    padding-top: 78px;
}

a {
    color: inherit;
    text-decoration: none;
}


.container {
    width: min(1240px, 92%);
    margin: 0 auto;
}


/* ========================================
   HEADER
======================================== */

.site-header {
    width: 100%;
    padding: 28px 0;
    background: var(--warm-ivory);
}
/* ========================================
   HEADER — SCROLLED STATE
======================================== */

.site-header {
    transition:
        padding 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease,
        backdrop-filter 0.3s ease;
}


.site-header.is-scrolled {
    position: fixed;

    top: 0;
    left: 0;
    right: 0;

    z-index: 1000;

    padding: 16px 0;

    background: rgba(244, 239, 230, 0.88);

    box-shadow:
        0 8px 30px rgba(23, 41, 54, 0.07);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}


.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}


.logo {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.16em;
}


.main-nav {
    display: flex;
    align-items: center;
    gap: 34px;
    margin-left: auto;
}


.main-nav a {
    font-size: 13px;
    font-weight: 500;
    transition: opacity 0.25s ease;
}


.main-nav a:hover {
    opacity: 0.6;
}


.header-cta {
    padding: 13px 20px;
    border: 1px solid var(--deep-navy);
    font-size: 12px;
    font-weight: 600;

    transition:
        background 0.25s ease,
        color 0.25s ease;
}


.header-cta:hover {
    background: var(--deep-navy);
    color: var(--soft-white);
}


/* ========================================
   HERO
======================================== */

.hero {
    position: relative;
    min-height: calc(100vh - 90px);
    display: flex;
    align-items: center;
    padding: 50px 0 70px;
}


.hero-inner {
    display: grid;

    /*
        Texto um pouco menor que a imagem,
        dando mais protagonismo ao produto.
    */
    grid-template-columns: 0.95fr 1.05fr;

    align-items: center;
    gap: 60px;
}


.hero-content {
    max-width: 590px;
}

/* ========================================
   HERO — BRAND DETAIL
======================================== */
.hero-gold-detail {
    display: block;

    width: 34px;
    height: 1px;

    margin-top: -10px;
    margin-bottom: 22px;

    background: var(--muted-gold);
}


.eyebrow {
    margin-bottom: 25px;

    color: var(--sage);

    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    line-height: 1.5;
}


.hero h1 {
    max-width: 620px;

    font-family: var(--font-display);

    font-size: clamp(52px, 5vw, 78px);
    line-height: 1.02;

    font-weight: 500;

    letter-spacing: -0.035em;
}


.hero-description {
    max-width: 480px;

    margin-top: 30px;

    color: #4c5a5f;

    font-size: 16px;
    line-height: 1.75;
}


.primary-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    margin-top: 34px;

    padding: 16px 25px;

    background: var(--deep-navy);
    color: var(--soft-white);

    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.02em;

    transition:
        transform 0.25s ease,
        background 0.25s ease;
}


.primary-button:hover {
    transform: translateY(-2px);
    background: #223a49;
}


.hero-tagline {
    margin-top: 24px;

    color: var(--sage);

    font-family: var(--font-display);

    font-size: 14px;
    font-style: italic;
}


/* ========================================
   HERO IMAGE
======================================== */

.hero-visual {
    position: relative;

    width: 100%;
}


.hero-image-wrapper {
    position: relative;

    width: 100%;

    overflow: hidden;

    /*
        A imagem fica alta e editorial,
        acompanhando a proporção da fotografia.
    */
    aspect-ratio: 4 / 5;

    background: #e7e0d5;
}


.hero-image-wrapper img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}
/* ========================================
   HERO — SCROLL INDICATOR
======================================== */

.scroll-indicator {
    position: absolute;

    left: 50%;
    bottom: 18px;

    z-index: 20;

    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 6px;

    color: var(--sage);

    transform: translateX(-50%);

    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.18em;

    pointer-events: none;
}


.scroll-indicator span {
    display: block;
}


.scroll-indicator svg {
    display: block;

    width: 20px;
    height: 20px;

    color: var(--deep-navy);

    animation: scrollIndicator 1.8s ease-in-out infinite;
}


@keyframes scrollIndicator {

    0%,
    100% {
        transform: translateY(0);
        opacity: 0.6;
    }

    50% {
        transform: translateY(5px);
        opacity: 1;
    }

}


/* ========================================
   RESPONSIVE — TABLET
======================================== */
/* ========================================
   SECTION 02 — STORY
======================================== */

.story-section {
    padding: 90px 0;
    background: var(--soft-white);
}


.story-inner {
    display: grid;

    grid-template-columns: 1.15fr 0.85fr;

    align-items: center;

    gap: 90px;
}


/* ========================================
   STORY IMAGE
======================================== */

.story-visual {
    width: 100%;
    overflow: hidden;
}


.story-visual img {
    width: 100%;
    height: auto;

    display: block;

    object-fit: cover;
}


/* ========================================
   STORY CONTENT
======================================== */

.story-content {
    max-width: 500px;
}


.story-content .eyebrow {
    margin-bottom: 25px;
}


.story-content h2 {
    font-family: var(--font-display);

    font-size: clamp(48px, 5vw, 70px);

    line-height: 1.05;

    font-weight: 500;

    letter-spacing: -0.035em;
}


.story-description {
    max-width: 450px;

    margin-top: 32px;

    color: #4c5a5f;

    font-size: 16px;

    line-height: 1.8;
}

/* ========================================
   SECTION 5 — MEMORY
======================================== */

.memory-section {
    padding: 75px 0 80px;
    background: var(--soft-white);
}

.memory-inner {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 90px;
}

.memory-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
}

.memory-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    background: #e7e0d5;
}

.memory-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.memory-content {
    max-width: 520px;
}

.memory-content .eyebrow {
    margin-bottom: 24px;
}

.memory-content h2 {
    font-family: var(--font-display);
    font-size: clamp(42px, 4.5vw, 68px);
    line-height: 1.05;
    font-weight: 500;
    letter-spacing: -0.025em;
}

.memory-description {
    max-width: 480px;
    margin-top: 30px;
    color: #4c5a5f;
    font-size: 16px;
    line-height: 1.8;
}

.memory-content .primary-button {
    margin-top: 34px;
}

/* ========================================
   SECTION 03 — MOMENTS
======================================== */

.moments-section {
    padding: 130px 0;
    background: var(--warm-ivory);
}


.moments-inner {
    display: grid;

    grid-template-columns: 0.75fr 1.25fr;

    align-items: center;

    gap: 90px;
}


/* ========================================
   MOMENTS CONTENT
======================================== */

.moments-content {
    max-width: 500px;
}


.moments-content .eyebrow {
    margin-bottom: 25px;
}


.moments-content h2 {
    font-family: var(--font-display);

    font-size: clamp(44px, 4.5vw, 62px);

    line-height: 1.06;

    font-weight: 500;

    letter-spacing: -0.035em;
}


.moments-description {
    max-width: 450px;

    margin-top: 30px;

    color: #4c5a5f;

    font-size: 16px;

    line-height: 1.8;
}


/* ========================================
   MOMENTS IMAGE
======================================== */

.moments-visual {
    width: 100%;
    overflow: hidden;
}


.moments-visual img {
    width: 100%;
    height: auto;

    display: block;
}


/* ========================================
   RESPONSIVE
======================================== */
/* ========================================
   PUZZLE OPTIONS
======================================== */

.puzzle-options {
    padding: 130px 0 150px;
    background: var(--soft-white);
}


.puzzle-options-header {
    max-width: 700px;
    margin-bottom: 70px;
}


.puzzle-options-header .eyebrow {
    margin-bottom: 22px;
}


.puzzle-options-header h2 {
    font-family: var(--font-display);
    font-size: clamp(48px, 5vw, 72px);
    line-height: 1.05;
    font-weight: 500;
    letter-spacing: -0.025em;
}


.section-description {
    max-width: 600px;
    margin-top: 28px;
    color: #4c5a5f;
    font-size: 16px;
    line-height: 1.8;
}




/* ========================================
   PUZZLE CARDS
======================================== */

.puzzle-options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}


.puzzle-card {
    background: var(--warm-ivory);
    overflow: hidden;
}


.puzzle-card-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}


.puzzle-card-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;

    transition: transform 0.6s ease;
}
.puzzle-price {
    margin-top: 14px;

    color: var(--deep-navy);

    font-family: var(--font-body);

    font-size: 22px;
    font-weight: 600;

    letter-spacing: -0.02em;
}
.puzzle-price-note {
    margin-top: 4px;

    color: var(--sage);

    font-size: 11px;
    font-weight: 500;
}


/* ========================================
   PUZZLE CARD — HOVER
======================================== */

.puzzle-card {
    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}


.puzzle-card:hover {
    transform: translateY(-3px);

    box-shadow:
        0 14px 35px rgba(23, 41, 54, 0.08);
}


.puzzle-card-image img {
    transition:
        transform 0.5s ease;
}


.puzzle-card:hover .puzzle-card-image img {
    transform: scale(1.02);
}

/* ========================================
   SECTION 06 — HOW IT WORKS
======================================== */

.how-it-works {
    padding: 130px 0 140px;
    background: var(--warm-ivory);
}


/* ========================================
   HEADER
======================================== */

.how-it-works-header {
    max-width: 700px;
    margin-bottom: 80px;
}


.how-it-works-header .eyebrow {
    margin-bottom: 22px;
}


.how-it-works-header h2 {
    font-family: var(--font-display);
    font-size: clamp(48px, 5vw, 70px);
    line-height: 1.05;
    font-weight: 500;
    letter-spacing: -0.025em;
}


.how-it-works-header .section-description {
    max-width: 620px;
}


/* ========================================
   STEPS
======================================== */

.steps {
    position: relative;

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 40px;
}


/* Linha que conecta os passos */

.steps::before {
    content: "";

    position: absolute;

    top: 34px;
    left: 12.5%;
    right: 12.5%;

    height: 1px;

    background: rgba(23, 41, 54, 0.18);

    z-index: 0;
}


/* ========================================
   STEP
======================================== */

.step {
    position: relative;

    z-index: 1;

    max-width: 250px;
}


.step-icon {
    width: 68px;
    height: 68px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 24px;

    background: var(--soft-white);

    border: 1px solid rgba(23, 41, 54, 0.14);

    color: var(--deep-navy);

    border-radius: 50%;
}


.step-icon svg {
    width: 34px;
    height: 34px;
}


.step-number {
    display: block;

    margin-bottom: 12px;

    color: var(--sage);

    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.16em;
}


.step h3 {
    margin-bottom: 14px;

    font-family: var(--font-display);

    font-size: 27px;
    line-height: 1.1;

    font-weight: 500;
    letter-spacing: -0.015em;
}


.step p {
    color: #4c5a5f;

    font-size: 14px;
    line-height: 1.75;
}


/* ========================================
   CTA
======================================== */

.how-it-works-cta {
    margin-top: 65px;
}


.how-it-works-cta .text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    font-size: 12px;
    font-weight: 600;
}


.how-it-works-cta .text-link span {
    font-size: 17px;

    transition: transform 0.25s ease;
}


.how-it-works-cta .text-link:hover span {
    transform: translateX(4px);
}

/* ========================================
   CARD CONTENT
======================================== */

.puzzle-card-content {
    padding: 34px 36px 38px;
}


.puzzle-card-number {
    margin-bottom: 16px;

    color: var(--sage);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;
}


.puzzle-card h3 {
    max-width: 480px;

    font-family: var(--font-display);
    font-size: clamp(30px, 3vw, 42px);
    line-height: 1.08;
    font-weight: 500;
    letter-spacing: -0.02em;
}


.puzzle-card-content > p:not(.puzzle-card-number) {
    max-width: 500px;
    margin-top: 20px;

    color: #4c5a5f;
    font-size: 15px;
    line-height: 1.75;
}


/* ========================================
   CARD BUTTON
======================================== */

.card-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-top: 28px;
    padding: 14px 21px;

    border: 1px solid var(--deep-navy);

    color: var(--deep-navy);

    font-size: 12px;
    font-weight: 600;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}


.card-button:hover {
    background: var(--deep-navy);
    color: var(--soft-white);
    transform: translateY(-1px);
}

/* ========================================
   SECTION 07 — TRUST / QUALITY
======================================== */

.trust-section {
    padding: 130px 0 140px;
    background: var(--soft-white);
}


/* ========================================
   HEADER
======================================== */

.trust-header {
    max-width: 760px;
    margin-bottom: 75px;
}


.trust-header .eyebrow {
    margin-bottom: 22px;
}


.trust-header h2 {
    font-family: var(--font-display);

    font-size: clamp(48px, 5vw, 70px);

    line-height: 1.05;

    font-weight: 500;

    letter-spacing: -0.025em;
}


.trust-header .section-description {
    max-width: 650px;
}


/* ========================================
   TRUST GRID
======================================== */

.trust-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 45px;
}


/* ========================================
   TRUST ITEM
======================================== */

.trust-item {
    max-width: 260px;
}


.trust-icon {
    width: 62px;
    height: 62px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 26px;

    border: 1px solid rgba(23, 41, 54, 0.15);

    border-radius: 50%;

    color: var(--deep-navy);

    background: var(--warm-ivory);
}


.trust-icon svg {
    width: 30px;
    height: 30px;
}


.trust-item h3 {
    margin-bottom: 14px;

    font-family: var(--font-display);

    font-size: 26px;

    line-height: 1.1;

    font-weight: 500;

    letter-spacing: -0.015em;
}


.trust-item p {
    color: #4c5a5f;

    font-size: 14px;

    line-height: 1.75;
}

/* ========================================
   SECTION 08 — FAQ
======================================== */

.faq-section {
    padding: 120px 0 130px;
    background: var(--warm-ivory);
}


.faq-inner {
    display: grid;

    grid-template-columns: 0.75fr 1.25fr;

    gap: 100px;

    align-items: start;
}


.faq-header {
    max-width: 460px;

    position: sticky;
    top: 40px;
}


.faq-header .eyebrow {
    margin-bottom: 22px;
}


.faq-header h2 {
    font-family: var(--font-display);

    font-size: clamp(42px, 4.5vw, 62px);

    line-height: 1.06;

    font-weight: 500;

    letter-spacing: -0.03em;
}


/* ========================================
   FAQ LIST
======================================== */

.faq-list {
    width: 100%;

    border-top: 1px solid rgba(23, 41, 54, 0.18);
}


.faq-item {
    border-bottom: 1px solid rgba(23, 41, 54, 0.18);
}


/* ========================================
   QUESTION
======================================== */

.faq-question {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    padding: 25px 0;

    border: 0;

    background: transparent;

    color: var(--deep-navy);

    font-family: var(--font-body);

    font-size: 15px;
    font-weight: 500;

    text-align: left;

    cursor: pointer;
}


.faq-question:hover {
    opacity: 0.72;
}


.faq-icon {
    flex: 0 0 auto;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: 28px;
    height: 28px;

    font-size: 24px;
    font-weight: 300;

    line-height: 1;

    transition: transform 0.3s ease;
}


/* ========================================
   ANSWER
======================================== */

.faq-answer {
    display: grid;

    grid-template-rows: 0fr;

    transition:
        grid-template-rows 0.35s ease,
        opacity 0.35s ease;

    opacity: 0;
}


.faq-answer p {
    overflow: hidden;

    max-width: 700px;

    padding-bottom: 0;

    color: #4c5a5f;

    font-size: 14px;
    line-height: 1.8;
}


/* ========================================
   OPEN STATE
======================================== */

.faq-item.is-open .faq-answer {
    grid-template-rows: 1fr;

    opacity: 1;
}


.faq-item.is-open .faq-answer p {
    padding-bottom: 24px;
}


.faq-item.is-open .faq-icon {
    transform: rotate(45deg);
}

/* ========================================
   SECTION 09 — FINAL CTA
======================================== */

.final-cta-section {
    padding: 110px 0;
    background: var(--deep-navy);
    color: var(--soft-white);
}


.final-cta-inner {
    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    align-items: center;

    gap: 90px;
}
/* ========================================
   FINAL CTA — BRAND MARK
======================================== */

.final-brand-mark {
    margin-top: 28px;

    color: var(--muted-gold);
}


.final-brand-mark svg {
    width: 28px;
    height: 28px;

    display: block;
}
/* ========================================
   BRAND SEPARATOR
======================================== */

.brand-separator {
    width: min(1240px, 92%);

    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 22px;

    color: var(--muted-gold);
}


.brand-separator-line {
    flex: 1;

    height: 1px;

    background: rgba(23, 41, 54, 0.12);
}


.brand-mark {
    width: 24px;
    height: 24px;

    flex: 0 0 auto;
}


/* ========================================
   FINAL CTA CONTENT
======================================== */

.final-cta-content {
    max-width: 560px;
}


.final-cta-content .eyebrow {
    margin-bottom: 24px;
    color: var(--muted-gold);
}


.final-cta-content h2 {
    font-family: var(--font-display);

    font-size: clamp(52px, 5vw, 76px);

    line-height: 1.03;

    font-weight: 500;

    letter-spacing: -0.035em;
}


.final-cta-description {
    max-width: 480px;

    margin-top: 30px;

    color: #d7dddd;

    font-size: 16px;

    line-height: 1.8;
}


/* ========================================
   FINAL CTA BUTTON
======================================== */

.final-cta-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    margin-top: 36px;

    padding: 17px 27px;

    background: var(--soft-white);
    color: var(--deep-navy);

    font-size: 12px;
    font-weight: 600;

    transition:
        transform 0.25s ease,
        background 0.25s ease;
}


.final-cta-button:hover {
    transform: translateY(-2px);
    background: var(--warm-ivory);
}


.final-cta-tagline {
    margin-top: 25px;

    color: var(--muted-gold);

    font-family: var(--font-display);

    font-size: 14px;

    font-style: italic;
}


/* ========================================
   FINAL CTA IMAGE
======================================== */

.final-cta-visual {
    width: 100%;
    overflow: hidden;
}


.final-cta-visual img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    aspect-ratio: 4 / 3;
}

/* ========================================
   SCROLL REVEAL
======================================== */

.reveal {
    opacity: 0;
    transform: translateY(25px);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease;

    will-change: opacity, transform;
}


.reveal-image {
    transform: translateY(calc(25px + var(--parallax-y, 0px)))
        scale(0.985);

    transition:
        opacity 0.8s ease,
        transform 0.9s ease;
}


.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}


.reveal-image.is-visible {
    transform: translateY(var(--parallax-y, 0px))
        scale(1);
}


/* ========================================
   ACCESSIBILITY
======================================== */

@media (prefers-reduced-motion: reduce) {

    .reveal,
    .reveal-image {
        opacity: 1;
        transform: none;
        transition: none;
    }

}
/* ========================================
   REVEAL STAGGER
======================================== */

.puzzle-card:nth-child(2),
.step:nth-child(2),
.trust-item:nth-child(2) {
    transition-delay: 0.08s;
}


.step:nth-child(3),
.trust-item:nth-child(3) {
    transition-delay: 0.16s;
}


.step:nth-child(4),
.trust-item:nth-child(4) {
    transition-delay: 0.24s;
}
/* ========================================
   PARALLAX
======================================== */

.parallax-image {
    --parallax-y: 0px;

    will-change: transform;
}
/* ========================================
   RESPONSIVE
======================================== */
/* ========================================
   RESPONSIVE
   Existing media-query rules grouped by breakpoint.
======================================== */

/* ========================================
   FOOTER
======================================== */

.site-footer {
    padding: 28px 0;

    background: var(--deep-navy);

    color: var(--soft-white);

    border-top: 1px solid rgba(252, 251, 248, 0.12);
}


.footer-inner {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;
}


.footer-logo {
    font-size: 14px;
    font-weight: 600;

    letter-spacing: 0.16em;
}


.footer-mark {
    color: var(--muted-gold);
}


.footer-mark svg {
    width: 22px;
    height: 22px;

    display: block;
}


.footer-copy {
    color: rgba(252, 251, 248, 0.65);

    font-family: var(--font-display);

    font-size: 13px;

    font-style: italic;
}

@media (max-width: 1000px) {
.hero-inner {
        grid-template-columns: 1fr 1fr;
        gap: 45px;
    }

    .hero h1 {
        font-size: clamp(46px, 5vw, 64px);
    }

    .main-nav {
        gap: 22px;
    }

}

@media (max-width: 900px) {
.moments-section {
        padding: 100px 0;
    }

    .moments-inner {
        grid-template-columns: 1fr;

        gap: 55px;
    }

    .moments-content {
        max-width: 700px;
    }

    .moments-description {
        max-width: 600px;
    }

}

@media (max-width: 800px) {
.main-nav {
        display: none;
    }

    .site-header {
        padding: 22px 0;
    }


    .hero {
        min-height: auto;

        padding: 45px 0 70px;
    }


    .hero-inner {
        grid-template-columns: 1fr;

        gap: 45px;
    }


    .hero-content {
        max-width: 700px;
    }


    .hero h1 {
        max-width: 650px;

        font-size: clamp(46px, 9vw, 62px);
        line-height: 1.03;
    }


    .hero-description {
        max-width: 600px;

        font-size: 15px;
        line-height: 1.7;
    }


    .hero-visual {
        max-width: 700px;
    }


    .hero-image-wrapper {
        aspect-ratio: 4 / 5;
    }
        .story-section {
        padding: 90px 0;
    }


    .story-inner {
        grid-template-columns: 1fr;

        gap: 50px;
    }


    .story-content {
        max-width: 650px;
    }


    .story-content h2 {
        font-size: clamp(46px, 9vw, 62px);
    }


    .story-description {
        font-size: 15px;
    }
        /* FINAL CTA — TABLET */

    .final-cta-section {
        padding: 90px 0;
    }

    .final-cta-inner {
        grid-template-columns: 1fr;

        gap: 55px;
    }

    .final-cta-content {
        max-width: 700px;
    }

    .final-cta-visual {
        max-width: 700px;
    }

.puzzle-options {
        padding: 90px 0 100px;
    }

    .puzzle-options-header {
        margin-bottom: 50px;
    }

    .puzzle-options-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
        /* HOW IT WORKS — TABLET/MOBILE */

    .how-it-works {
        padding: 90px 0 100px;
    }

    .how-it-works-header {
        margin-bottom: 55px;
    }

    .steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 55px 35px;
    }

    .steps::before {
        display: none;
    }

    .step {
        max-width: 100%;
    }

    .how-it-works-cta {
        margin-top: 50px;
    }
        /* FAQ — TABLET */

    .faq-section {
        padding: 90px 0 100px;
    }

    .faq-inner {
        grid-template-columns: 1fr;

        gap: 55px;
    }

    .faq-header {
        position: static;

        max-width: 700px;
    }

}

@media (max-width: 600px) {

    .footer-inner {
    flex-direction: column;
    justify-content: center;
    gap: 14px;

    text-align: center;
}

    body.header-scrolled {
        padding-top: 66px;
    }

    .scroll-indicator {
    display: none;
}

.container {
        width: 90%;
    }


    .header-inner {
        gap: 15px;
    }


    .logo {
        font-size: 16px;
    }


    .header-cta {
        padding: 11px 14px;

        font-size: 10px;
    }


    .hero {
        padding-top: 35px;
    }


    .eyebrow {
        font-size: 9px;
        letter-spacing: 0.12em;
    }


    .hero h1 {
        font-size: 44px;
        line-height: 1.04;
    }


    .hero-description {
        font-size: 14px;
    }


    .primary-button {
        width: 100%;
    }


    .hero-tagline {
        font-size: 13px;
    }

.moments-section {
        padding: 75px 0;
    }

    .moments-content h2 {
        font-size: 43px;
    }

    .moments-description {
        font-size: 15px;
    }
        .container {
        width: 90%;
    }


    .header-inner {
        gap: 15px;
    }


    .logo {
        font-size: 16px;
    }


    .header-cta {
        padding: 11px 14px;
        font-size: 10px;
    }


    .hero {
        padding-top: 35px;
    }

    .hero {
    position: relative;
    }


    .eyebrow {
        font-size: 9px;
        letter-spacing: 0.12em;
    }


    .hero h1 {
        font-size: 44px;
        line-height: 1.04;
    }


    .hero-description {
        font-size: 14px;
    }


    .primary-button {
        width: 100%;
    }


    .hero-tagline {
        font-size: 13px;
    }

    


    /* ========================================
       MEMORY — MOBILE
    ======================================== */

    .memory-section {
        padding: 70px 0 80px;
    }


    .memory-images {
        grid-template-columns: 1fr 1fr;
        gap: 3px;
    }


    .memory-content {
        margin-top: 50px;
        text-align: center;
    }


    .memory-content h2 {
        font-size: 42px;
    }


    .memory-description {
        font-size: 15px;
    }
        /* HOW IT WORKS — MOBILE */

    .how-it-works {
        padding: 70px 0 80px;
    }

    .how-it-works-header h2 {
        font-size: 42px;
    }

    .how-it-works-header .section-description {
        font-size: 15px;
    }

    .steps {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .step {
        max-width: 100%;
    }

    .step-icon {
        width: 62px;
        height: 62px;
    }

    .step-icon svg {
        width: 31px;
        height: 31px;
    }
        /* TRUST — MOBILE */

    .trust-section {
        padding: 70px 0 80px;
    }

    .trust-header h2 {
        font-size: 42px;
    }

    .trust-header .section-description {
        font-size: 15px;
    }

    .trust-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .trust-item {
        max-width: 100%;
    }
        /* FAQ — MOBILE */

    .faq-section {
        padding: 70px 0 80px;
    }

    .faq-header h2 {
        font-size: 42px;
    }

    .faq-question {
        padding: 22px 0;

        font-size: 14px;
    }

    .faq-answer p {
        font-size: 14px;
    }
        /* FINAL CTA — MOBILE */

    .final-cta-section {
        padding: 70px 0 80px;
    }

    .final-cta-content h2 {
        font-size: 44px;
    }

    .final-cta-description {
        font-size: 15px;
    }

    .final-cta-button {
        width: 100%;
    }

.puzzle-options {
        padding: 70px 0 80px;
    }

    .puzzle-card-content {
        padding: 28px 24px 30px;
    }
    .final-cta-section {
    padding: 70px 0 80px;
}

.final-cta-content h2 {
    font-size: 44px;
}

.final-cta-description {
    font-size: 15px;
}

.final-cta-button {
    width: 100%;
}

}
/* ========================================
   CREATE FLOW
======================================== */

.create-section {
    display: none;
    position: relative;
    padding: 120px 0;
    background: #142a38;
    color: #f7f3ea;
}

.create-section.is-visible {
    display: block;
}

.create-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.85fr);
    gap: 80px;
    align-items: center;
}

.create-content {
    max-width: 620px;
}

.create-section .eyebrow {
    color: #a8b69e;
}

.create-section h2 {
    margin: 0 0 24px;
    font-family: "Playfair Display", serif;
    font-size: clamp(48px, 6vw, 76px);
    line-height: 0.98;
    font-weight: 500;
}

.create-section .final-cta-description {
    max-width: 520px;
    margin-bottom: 42px;
    color: rgba(247, 243, 234, 0.78);
}


/* ========================================
   FORM
======================================== */

.everpiece-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #d8ddd7;
}


/* ========================================
   PUZZLE OPTIONS
======================================== */

.puzzle-choice-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.puzzle-choice {
    position: relative;
    cursor: pointer;
}

.puzzle-choice input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.puzzle-choice-inner {
    display: flex;
    min-height: 150px;
    padding: 22px;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;

    border: 1px solid rgba(247, 243, 234, 0.25);
    background: rgba(255, 255, 255, 0.025);

    transition:
        border-color 0.25s ease,
        background 0.25s ease,
        transform 0.25s ease;
}

.puzzle-choice:hover .puzzle-choice-inner {
    transform: translateY(-2px);
    border-color: rgba(247, 243, 234, 0.55);
}

.puzzle-choice input:checked + .puzzle-choice-inner {
    border-color: #c4ab72;
    background: rgba(196, 171, 114, 0.08);
}

.puzzle-choice-top {
    display: flex;
    justify-content: space-between;
    gap: 20px;

    font-size: 13px;
    letter-spacing: 0.08em;
    font-weight: 600;
}

.puzzle-choice-top strong {
    color: #d2b87f;
    white-space: nowrap;
}

.puzzle-choice-description {
    max-width: 280px;
    color: rgba(247, 243, 234, 0.65);
    font-size: 14px;
    line-height: 1.6;
}


/* ========================================
   INPUTS
======================================== */

.everpiece-form input[type="email"] {
    width: 100%;
    height: 58px;
    padding: 0 18px;

    border: 1px solid rgba(247, 243, 234, 0.25);
    background: rgba(255, 255, 255, 0.04);
    color: #fff;

    font-family: inherit;
    font-size: 15px;

    outline: none;

    transition:
        border-color 0.25s ease,
        background 0.25s ease;
}

.everpiece-form input[type="email"]:focus {
    border-color: #c4ab72;
    background: rgba(255, 255, 255, 0.07);
}

.everpiece-form input[type="email"]::placeholder {
    color: rgba(247, 243, 234, 0.38);
}


/* ========================================
   PHOTO UPLOAD
======================================== */

.photo-upload {
    position: relative;

    min-height: 180px;
    padding: 30px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    border: 1px dashed rgba(247, 243, 234, 0.35);

    background: rgba(255, 255, 255, 0.025);

    text-align: center;
    cursor: pointer;

    transition:
        border-color 0.25s ease,
        background 0.25s ease;
}

.photo-upload:hover {
    border-color: #c4ab72;
    background: rgba(255, 255, 255, 0.05);
}

.photo-upload input[type="file"] {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    opacity: 0;

    cursor: pointer;
}

.photo-upload-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 52px;
    height: 52px;
    margin-bottom: 14px;

    border: 1px solid rgba(247, 243, 234, 0.35);
    border-radius: 50%;

    font-family: Arial, sans-serif;
    font-size: 28px;
    font-weight: 300;
}

.photo-upload-text {
    font-size: 15px;
    font-weight: 500;
}

.photo-upload-note {
    margin-top: 7px;

    font-size: 12px;
    color: rgba(247, 243, 234, 0.45);
}


/* ========================================
   BUTTON
======================================== */

.create-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;

    width: 100%;
    min-height: 62px;

    border: 1px solid #d2b87f;
    background: #d2b87f;
    color: #142a38;

    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.03em;

    cursor: pointer;

    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}

.create-submit:hover {
    transform: translateY(-2px);
}

.create-submit:disabled {
    opacity: 0.55;
    cursor: wait;
    transform: none;
}

.form-note {
    margin: -12px 0 0;

    font-size: 12px;
    line-height: 1.6;
    color: rgba(247, 243, 234, 0.45);
}

.create-section .final-cta-tagline {
    margin-top: 34px;
    color: #a8b69e;
}

.create-section .final-brand-mark {
    margin-top: 38px;
    color: #d2b87f;
}


/* ========================================
   VISUAL
======================================== */

.create-section .final-cta-visual {
    overflow: hidden;
}

.create-section .final-cta-visual img {
    display: block;
    width: 100%;
    height: auto;
}


/* ========================================
   RESPONSIVE
======================================== */

@media (max-width: 900px) {

    .create-inner {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .create-section {
        padding: 90px 0;
    }

}

@media (max-width: 620px) {

    .puzzle-choice-grid {
        grid-template-columns: 1fr;
    }

    .create-section h2 {
        font-size: 46px;
    }

    .create-section {
        padding: 70px 0;
    }

}