:root {
    --red-700: #b71320;
    --red-600: #cb1f29;
    --red-500: #ea3944;
    --rose-100: #fde9eb;
    --cream-100: #fff8f4;
    --paper: #fffdfb;
    --sand: #f6eee9;
    --ink-950: #221818;
    --ink-800: #4f3c3e;
    --ink-600: #6f5a5b;
    --line: rgba(114, 56, 59, 0.14);
    --white: #ffffff;
    --shadow-soft: 0 24px 60px rgba(89, 25, 28, 0.08);
    --shadow-strong: 0 28px 80px rgba(89, 25, 28, 0.16);
    --radius-xl: 36px;
    --radius-lg: 28px;
    --radius-md: 20px;
    --radius-sm: 14px;
    --transition: 0.32s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Manrope", sans-serif;
    color: var(--ink-950);
    background:
        radial-gradient(circle at top left, rgba(234, 57, 68, 0.12), transparent 26%),
        linear-gradient(180deg, #fffdfb 0%, #fff6f1 28%, var(--paper) 100%);
    line-height: 1.6;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

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

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

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

details summary {
    list-style: none;
}

details summary::-webkit-details-marker {
    display: none;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.section-space {
    padding: 96px 0;
}

.topbar {
    background: var(--red-700);
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.9rem;
}

.topbar-inner {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.topbar a {
    font-weight: 700;
    color: var(--white);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    backdrop-filter: blur(14px);
    background: rgba(255, 253, 251, 0.82);
    border-bottom: 1px solid rgba(183, 19, 32, 0.08);
}

.nav {
    position: relative;
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.brand-mark {
    position: relative;
    width: 26px;
    height: 26px;
    border-radius: 9px;
    background: var(--red-600);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.brand-mark::before,
.brand-mark::after {
    content: "";
    position: absolute;
    inset: 50%;
    transform: translate(-50%, -50%);
    background: var(--white);
    border-radius: 999px;
}

.brand-mark::before {
    width: 14px;
    height: 4px;
}

.brand-mark::after {
    width: 4px;
    height: 14px;
}

.brand-copy {
    display: grid;
    gap: 2px;
}

.brand-copy strong {
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.18rem;
    letter-spacing: 0.04em;
    color: var(--red-600);
}

.brand-copy span {
    font-size: 0.84rem;
    color: var(--ink-600);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-menu > a {
    color: var(--ink-800);
    font-weight: 700;
    transition: color var(--transition);
}

.nav-menu > a:hover,
.nav-menu > a:focus-visible {
    color: var(--red-600);
}

.nav-menu > a.nav-cta,
.nav-menu > a.nav-cta:hover,
.nav-menu > a.nav-cta:focus-visible {
    color: var(--white);
}

.nav-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    border: 1px solid rgba(183, 19, 32, 0.12);
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    background: var(--ink-950);
    transition: transform var(--transition), opacity var(--transition);
}

.menu-open .nav-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.menu-open .nav-toggle span:nth-child(2) {
    opacity: 0;
}

.menu-open .nav-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 999px;
    font-weight: 800;
    transition: transform var(--transition), background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.btn:hover,
.btn:focus-visible {
    transform: translateY(-2px);
}

.btn-primary {
    color: var(--white);
    background: linear-gradient(135deg, var(--red-600), var(--red-500));
    box-shadow: 0 18px 32px rgba(203, 31, 41, 0.24);
}

.btn-secondary {
    color: var(--ink-950);
    border: 1px solid rgba(114, 56, 59, 0.16);
    background: rgba(255, 255, 255, 0.75);
}

.btn-secondary.light {
    color: var(--white);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.26);
}

.hero {
    position: relative;
    padding: 46px 0 54px;
}

.hero-noise {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(203, 31, 41, 0.05) 1px, transparent 1px),
        linear-gradient(0deg, rgba(203, 31, 41, 0.05) 1px, transparent 1px);
    background-size: 54px 54px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 85%);
    pointer-events: none;
}

.hero-layout {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
    gap: 32px;
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(203, 31, 41, 0.1);
    color: var(--red-600);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.eyebrow.accent {
    background: var(--rose-100);
}

.hero-copy h1,
.section-heading h2,
.store-panel h2,
.credibility-copy h2,
.faq-intro h2,
.cta-copy h2 {
    font-family: "Space Grotesk", sans-serif;
}

.hero-copy h1 {
    margin-top: 22px;
    max-width: 11ch;
    font-size: clamp(2.4rem, 5vw, 5.15rem);
    line-height: 0.98;
    letter-spacing: -0.04em;
}

.hero-copy p {
    margin-top: 20px;
    max-width: 61ch;
    font-size: 1.04rem;
    color: var(--ink-800);
}

.hero-actions {
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-points {
    margin-top: 26px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.hero-points article,
.hero-info-card,
.offer-spotlight,
.store-panel,
.credibility-cards article,
.reason-card,
.faq-list details,
.cta-panel {
    box-shadow: var(--shadow-soft);
}

.hero-points article {
    padding: 18px 18px 20px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(114, 56, 59, 0.1);
}

.hero-points strong {
    display: block;
    font-size: 1.06rem;
    margin-bottom: 6px;
}

.hero-points span {
    color: var(--ink-600);
    font-size: 0.95rem;
}

.hero-visual {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(250px, 0.9fr);
    gap: 18px;
    align-items: end;
}

.hero-main-photo,
.hero-side-photo,
.gallery-card,
.offer-image-frame {
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.hero-main-photo {
    height: clamp(420px, 46vw, 560px);
    background: var(--sand);
}

.hero-main-photo img,
.hero-side-photo img,
.gallery-card img,
.offer-image-frame img {
    height: 100%;
    object-fit: cover;
}

.hero-stack {
    display: grid;
    gap: 18px;
}

.hero-info-card {
    padding: 26px;
    border-radius: var(--radius-lg);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 245, 241, 0.98)),
        var(--white);
    border: 1px solid rgba(114, 56, 59, 0.1);
}

.card-label,
.spotlight-kicker {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--red-600);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-info-card h2,
.offer-copy h3,
.reason-card h3 {
    font-family: "Space Grotesk", sans-serif;
    line-height: 1.04;
}

.hero-info-card h2 {
    font-size: clamp(1.4rem, 2vw, 2rem);
    margin-bottom: 12px;
}

.hero-info-card p {
    color: var(--ink-600);
}

.hero-side-photo {
    height: clamp(220px, 22vw, 260px);
}

.quickband {
    padding-bottom: 18px;
}

.quickband-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.quickband-grid article {
    position: relative;
    padding: 22px 22px 24px 78px;
    border-radius: var(--radius-md);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(253, 233, 235, 0.82));
    border: 1px solid rgba(114, 56, 59, 0.08);
}

.quickband-grid span {
    position: absolute;
    top: 18px;
    left: 18px;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: var(--red-600);
    color: var(--white);
    font-weight: 800;
}

.section-heading {
    max-width: 940px;
    margin-bottom: 38px;
}

.section-heading.compact {
    margin-bottom: 26px;
}

.section-heading h2,
.store-panel h2,
.credibility-copy h2,
.faq-intro h2,
.cta-copy h2 {
    margin-top: 18px;
    font-size: clamp(1.85rem, 3vw, 3.3rem);
    line-height: 1.06;
    letter-spacing: -0.04em;
}

.section-heading p,
.store-panel p,
.credibility-copy p,
.faq-intro p,
.cta-copy p {
    margin-top: 16px;
    max-width: 64ch;
    color: var(--ink-800);
}

.offers-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.58fr);
    gap: 22px;
    align-items: stretch;
}

.offers-tabs {
    display: grid;
    gap: 14px;
}

.offer-tab {
    width: 100%;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(114, 56, 59, 0.1);
    transition: transform var(--transition), border-color var(--transition), background var(--transition), box-shadow var(--transition);
}

.offer-tab:hover,
.offer-tab:focus-visible,
.offer-tab.active {
    transform: translateY(-2px);
    border-color: rgba(203, 31, 41, 0.34);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(253, 233, 235, 0.96));
    box-shadow: var(--shadow-soft);
}

.offer-index {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    border-radius: 16px;
    background: rgba(203, 31, 41, 0.1);
    color: var(--red-600);
    font-weight: 800;
}

.offer-tab strong {
    display: block;
    font-size: 1rem;
}

.offer-tab small {
    display: block;
    margin-top: 4px;
    font-size: 0.88rem;
    color: var(--ink-600);
}

.offer-spotlight {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 320px);
    gap: 20px;
    align-items: center;
    padding: 28px;
    border-radius: var(--radius-xl);
    background:
        radial-gradient(circle at top right, rgba(203, 31, 41, 0.12), transparent 32%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 246, 241, 0.98));
    border: 1px solid rgba(114, 56, 59, 0.1);
}

.offer-copy h3 {
    font-size: clamp(1.6rem, 2.3vw, 2.4rem);
    margin-bottom: 12px;
}

.offer-copy p {
    color: var(--ink-800);
}

.offer-copy ul {
    margin: 18px 0 24px;
    display: grid;
    gap: 10px;
    padding-left: 18px;
    color: var(--ink-800);
}

.offer-image-frame {
    min-height: 420px;
    background:
        radial-gradient(circle at top, rgba(255, 255, 255, 0.9), transparent 52%),
        linear-gradient(180deg, #fff5f1, #fffdfb);
    border: 1px solid rgba(114, 56, 59, 0.08);
}

.offer-image-frame img {
    object-fit: contain;
    padding: 18px;
}

.store-layout,
.credibility-layout,
.faq-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
    gap: 24px;
    align-items: start;
}

.store-panel {
    padding: 32px;
    border-radius: var(--radius-xl);
    background: linear-gradient(180deg, rgba(203, 31, 41, 0.96), rgba(183, 19, 32, 1));
    color: var(--white);
}

.store-panel .eyebrow {
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.14);
}

.store-panel p {
    color: rgba(255, 255, 255, 0.82);
}

.store-badges {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.store-badges span {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-weight: 700;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.gallery-card {
    min-height: 250px;
    background: var(--sand);
}

.gallery-card.tall {
    grid-row: span 2;
    min-height: 520px;
}

.gallery-card.wide {
    grid-column: span 2;
    min-height: 280px;
}

.credibility-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.credibility-cards article,
.reason-card,
.faq-list details {
    padding: 24px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(114, 56, 59, 0.1);
}

.credibility-cards strong {
    display: block;
    font-size: 1.06rem;
    margin-bottom: 8px;
}

.credibility-cards p {
    color: var(--ink-600);
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.reason-card span {
    display: inline-grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    margin-bottom: 20px;
    background: var(--rose-100);
    color: var(--red-600);
    font-weight: 800;
}

.reason-card h3 {
    font-size: 1.28rem;
    margin-bottom: 10px;
}

.reason-card p {
    color: var(--ink-600);
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-list summary {
    position: relative;
    padding-right: 40px;
    font-weight: 800;
    cursor: pointer;
}

.faq-list summary::after {
    content: "+";
    position: absolute;
    right: 0;
    top: -4px;
    font-size: 1.6rem;
    color: var(--red-600);
    transition: transform var(--transition);
}

.faq-list details[open] summary::after {
    transform: rotate(45deg);
}

.faq-list p {
    padding-top: 12px;
    color: var(--ink-600);
}

.cta-section {
    padding: 0 0 96px;
}

.cta-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 26px;
    align-items: center;
    padding: 36px;
    border-radius: var(--radius-xl);
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 32%),
        linear-gradient(135deg, #cb1f29, #93111b);
    color: var(--white);
}

.cta-panel .eyebrow {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.16);
}

.cta-copy p {
    color: rgba(255, 255, 255, 0.84);
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: flex-end;
}

.site-footer {
    padding: 0 0 42px;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) repeat(2, minmax(0, 0.75fr));
    gap: 22px;
    padding-top: 24px;
    border-top: 1px solid rgba(114, 56, 59, 0.1);
}

.footer-brand {
    margin-bottom: 14px;
}

.footer-grid strong {
    display: block;
    margin-bottom: 12px;
}

.footer-grid p,
.footer-grid a {
    color: var(--ink-600);
}

.footer-grid a {
    display: block;
    margin-bottom: 8px;
}

.floating-whatsapp {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 40;
    width: 60px;
    height: 60px;
    display: grid;
    place-items: center;
    border-radius: 20px;
    color: var(--white);
    background: linear-gradient(135deg, #28c667, #16a34a);
    box-shadow: 0 22px 38px rgba(22, 163, 74, 0.24);
    font-size: 1.5rem;
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 1100px) {
    .hero-layout,
    .offers-layout,
    .store-layout,
    .credibility-layout,
    .faq-layout,
    .cta-panel,
    .offer-spotlight,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual,
    .credibility-cards,
    .reasons-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cta-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 900px) {
    .topbar-inner {
        flex-direction: column;
        justify-content: center;
        padding: 10px 0;
        text-align: center;
    }

    .nav-toggle {
        display: inline-block;
    }

    .nav-menu {
        position: absolute;
        top: calc(100% + 12px);
        left: 20px;
        right: 20px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 18px;
        border-radius: 24px;
        background: rgba(255, 253, 251, 0.98);
        border: 1px solid rgba(114, 56, 59, 0.1);
        box-shadow: var(--shadow-strong);
    }

    .menu-open .nav-menu {
        display: flex;
    }

    .nav-cta {
        width: 100%;
    }

    .quickband-grid,
    .hero-points,
    .gallery-grid,
    .credibility-cards,
    .reasons-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        grid-template-columns: 1fr;
    }

    .hero-main-photo {
        height: 420px;
    }

    .gallery-card.tall,
    .gallery-card.wide {
        grid-column: auto;
        grid-row: auto;
        min-height: 320px;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 28px, 1180px);
    }

    .section-space {
        padding: 74px 0;
    }

    .hero {
        padding-top: 28px;
    }

    .hero-copy h1 {
        max-width: 12ch;
    }

    .hero-main-photo {
        height: 320px;
    }

    .offer-spotlight,
    .store-panel,
    .cta-panel {
        padding: 22px;
    }

    .offer-image-frame {
        min-height: 320px;
    }

    .floating-whatsapp {
        width: 56px;
        height: 56px;
        right: 14px;
        bottom: 14px;
    }
}

@media (max-height: 780px) {
    .hero {
        padding-top: 26px;
        padding-bottom: 38px;
    }

    .nav {
        min-height: 76px;
    }

    .hero-copy h1 {
        font-size: clamp(2.2rem, 4.4vw, 4.3rem);
        line-height: 1;
    }

    .hero-copy p {
        margin-top: 16px;
    }

    .hero-actions {
        margin-top: 22px;
    }

    .hero-main-photo {
        height: 470px;
    }
}
