:root {
    --wine-950: #4f0620;
    --wine-900: #690a28;
    --wine-850: #7a0d2c;
    --wine-800: #8e1538;
    --wine-700: #a42d4e;
    --blush-200: #d8b1be;
    --sand-300: #d7b594;
    --cream-100: #f8f2ea;
    --cream-050: #fffaf5;
    --charcoal-900: #231a1f;
    --charcoal-700: #5c4b52;
    --charcoal-500: #8f7f85;
    --white: #ffffff;
    --border: rgba(79, 6, 32, 0.1);
    --shadow-soft: 0 18px 45px rgba(79, 6, 32, 0.08);
    --shadow-strong: 0 28px 60px rgba(53, 8, 22, 0.18);
    --radius-xl: 34px;
    --radius-lg: 26px;
    --radius-md: 20px;
    --radius-sm: 16px;
    --transition: 0.35s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Plus Jakarta Sans", sans-serif;
    color: var(--charcoal-900);
    background:
        radial-gradient(circle at top left, rgba(164, 45, 78, 0.18), transparent 28%),
        radial-gradient(circle at right 12%, rgba(215, 181, 148, 0.18), transparent 26%),
        linear-gradient(180deg, #fffaf5 0%, #f6eee6 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,
input,
textarea,
select {
    font: inherit;
}

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

ul {
    list-style: none;
}

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

.section {
    padding: 108px 0;
}

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

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

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--wine-800);
}

.section-heading {
    max-width: 900px;
    margin: 0 auto 46px;
}

.section-heading-center {
    text-align: center;
}

.section-heading h2,
.story-copy h2,
.solutions-panel h2,
.contact-copy h2,
.cta-box h2 {
    margin: 16px 0 18px;
    font-family: "Syne", sans-serif;
    font-size: clamp(2.1rem, 3.6vw, 3.5rem);
    line-height: 1;
    letter-spacing: -0.05em;
}

.section-heading p,
.story-copy p,
.solutions-panel p,
.contact-copy p,
.cta-box p,
.hero-lead,
.hero-stats span,
.topbar p,
.topbar-links a,
.brand span {
    color: var(--charcoal-700);
}

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

.btn:hover {
    transform: translateY(-3px);
}

.btn-lg {
    padding: 16px 28px;
}

.btn-primary {
    color: var(--white);
    background: linear-gradient(135deg, var(--wine-850), var(--wine-700));
    box-shadow: 0 20px 44px rgba(122, 13, 44, 0.28);
}

.btn-primary:hover {
    box-shadow: 0 28px 52px rgba(122, 13, 44, 0.34);
}

.btn-secondary {
    color: var(--charcoal-900);
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(79, 6, 32, 0.08);
    backdrop-filter: blur(14px);
}

.floating-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 1100;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: linear-gradient(135deg, #25d366, #159a47);
    box-shadow: 0 18px 35px rgba(37, 211, 102, 0.34);
    font-size: 1.6rem;
}

.floating-whatsapp::after {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 1px solid rgba(37, 211, 102, 0.28);
    animation: pulse 2.4s infinite;
}

@keyframes pulse {
    from {
        transform: scale(0.94);
        opacity: 0.8;
    }
    to {
        transform: scale(1.18);
        opacity: 0;
    }
}

.topbar {
    background: var(--wine-950);
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.92rem;
}

.topbar-content,
.topbar-links {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.topbar-content {
    padding: 12px 0;
}

.topbar p,
.topbar-links a {
    color: rgba(255, 255, 255, 0.82);
}

.topbar-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 250, 245, 0.84);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid transparent;
    transition: background-color var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
    background: rgba(255, 250, 245, 0.96);
    border-color: rgba(79, 6, 32, 0.08);
    box-shadow: 0 14px 36px rgba(79, 6, 32, 0.07);
}

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

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

.brand img {
    width: 74px;
    height: 74px;
    border-radius: 22px;
    object-fit: cover;
    box-shadow: 0 16px 34px rgba(122, 13, 44, 0.18);
}

.brand strong {
    display: block;
    font-family: "Syne", sans-serif;
    font-size: 1.55rem;
    line-height: 0.95;
    color: var(--wine-900);
}

.brand span {
    display: block;
    margin-top: 5px;
    font-size: 0.94rem;
}

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

.nav-menu a {
    position: relative;
    font-weight: 700;
}

.nav-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--wine-850), var(--sand-300));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a:focus-visible::after {
    transform: scaleX(1);
}

.nav-cta {
    padding: 14px 22px;
}

.desktop-only {
    display: inline-flex;
}

.nav-toggle {
    display: none;
}

.hero {
    position: relative;
    padding: 58px 0 46px;
    overflow: clip;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(92deg, rgba(255, 250, 245, 0.95) 0%, rgba(255, 250, 245, 0.88) 38%, rgba(255, 250, 245, 0.62) 62%, rgba(255, 250, 245, 0.9) 100%),
        url("assets/img/Totem%201-63%20(1).png") center/cover no-repeat;
    opacity: 0.9;
    pointer-events: none;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
    gap: 34px;
    align-items: center;
}

.hero-copy h1 {
    margin: 16px 0 18px;
    max-width: 720px;
    font-family: "Syne", sans-serif;
    font-size: clamp(2.6rem, 4.6vw, 4.4rem);
    line-height: 0.98;
    letter-spacing: -0.06em;
}

.hero-lead {
    max-width: 650px;
    font-size: 1.05rem;
}

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

.quick-actions {
    margin-top: 24px;
}

.quick-actions p {
    margin-bottom: 12px;
    font-weight: 700;
}

.quick-actions-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.quick-chip {
    padding: 11px 16px;
    border-radius: 999px;
    border: 1px solid rgba(79, 6, 32, 0.1);
    background: rgba(255, 255, 255, 0.7);
    color: var(--charcoal-900);
    font-weight: 700;
    transition: transform var(--transition), background-color var(--transition), border-color var(--transition);
}

.quick-chip:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(122, 13, 44, 0.24);
}

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

.hero-stats article,
.trust-grid article,
.segment-card,
.stack-card,
.footer-card,
.contact-cards article {
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(255, 255, 255, 0.76);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(12px);
}

.hero-stats article {
    padding: 18px 18px 16px;
}

.hero-stats strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1.28rem;
    color: var(--wine-900);
}

.hero-visual {
    position: relative;
    min-height: 610px;
}

.hero-main-card,
.hero-side-card,
.hero-note-card {
    position: absolute;
    overflow: hidden;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-strong);
}

.hero-main-card {
    inset: 0 52px 28px 0;
}

.hero-main-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(20, 12, 16, 0.03) 38%, rgba(20, 12, 16, 0.72) 100%);
}

.hero-main-card img,
.hero-side-card img {
    height: 100%;
    object-fit: cover;
}

.hero-overlay-card {
    position: absolute;
    left: 26px;
    right: 26px;
    bottom: 26px;
    z-index: 1;
    padding: 20px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.24);
    backdrop-filter: blur(12px);
    color: var(--white);
}

.hero-overlay-card span,
.story-badge span,
.stack-card-copy span {
    display: block;
    margin-bottom: 8px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero-overlay-card strong,
.story-badge strong,
.stack-card-copy strong {
    display: block;
    font-family: "Syne", sans-serif;
    font-size: 1.7rem;
    line-height: 0.96;
}

.hero-side-card {
    width: 190px;
    height: 210px;
    right: 0;
    top: 34px;
    border: 8px solid rgba(255, 250, 245, 0.92);
}

.hero-side-card img {
    object-position: center;
}

.hero-note-card {
    right: 0;
    bottom: 0;
    width: 240px;
    padding: 22px;
    background: linear-gradient(180deg, rgba(79, 6, 32, 0.96), rgba(122, 13, 44, 0.94));
    color: rgba(255, 255, 255, 0.9);
}

.hero-note-card span {
    display: block;
    margin-bottom: 10px;
    color: var(--sand-300);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.trust-strip {
    margin-top: -8px;
    padding-bottom: 26px;
}

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

.trust-grid article {
    padding: 24px 22px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.trust-grid i,
.solutions-list i,
.contact-cards i {
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(122, 13, 44, 0.14), rgba(215, 181, 148, 0.24));
    color: var(--wine-900);
    font-size: 1.14rem;
}

.trust-grid h3,
.segment-card h3,
.solutions-list h3,
.stack-card-contact h3,
.footer-card h3 {
    margin-bottom: 8px;
    font-size: 1.06rem;
}

.story-grid,
.solutions-grid,
.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 42px;
    align-items: center;
}

.section-story {
    padding-top: 84px;
}

.story-points {
    display: grid;
    gap: 16px;
    margin-top: 28px;
}

.story-points article {
    padding: 20px 22px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(249, 240, 233, 0.92));
    border: 1px solid var(--border);
}

.story-points strong {
    display: block;
    margin-bottom: 6px;
    color: var(--wine-900);
}

.story-visual {
    position: relative;
    min-height: 620px;
}

.story-photo-frame {
    position: absolute;
    inset: 0 48px 54px 0;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-strong);
}

.story-photo-frame img {
    height: 100%;
    object-fit: cover;
}

.story-badge {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 280px;
    padding: 24px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(79, 6, 32, 0.96), rgba(122, 13, 44, 0.94));
    color: var(--white);
    box-shadow: var(--shadow-strong);
}

.section-segments {
    background:
        radial-gradient(circle at right top, rgba(122, 13, 44, 0.1), transparent 24%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.4), rgba(250, 242, 234, 0.88));
}

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

.segment-card {
    padding: 28px;
}

.segment-card span {
    display: inline-flex;
    margin-bottom: 18px;
    color: var(--wine-700);
    font-family: "Syne", sans-serif;
    font-size: 1.7rem;
    font-weight: 700;
}

.section-solutions {
    overflow: clip;
}

.solutions-panel p {
    max-width: 580px;
}

.solutions-list {
    display: grid;
    gap: 16px;
    margin-top: 28px;
}

.solutions-list article {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 18px 20px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(79, 6, 32, 0.08);
    box-shadow: var(--shadow-soft);
}

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

.stack-card {
    overflow: hidden;
}

.stack-card-brand {
    min-height: 320px;
    background: linear-gradient(180deg, rgba(79, 6, 32, 0.96), rgba(122, 13, 44, 0.94));
}

.stack-card-brand img {
    height: 100%;
    object-fit: cover;
}

.stack-card-copy,
.stack-card-contact {
    padding: 28px;
}

.stack-card-copy {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(251, 238, 231, 0.94));
}

.stack-card-copy span {
    color: var(--wine-800);
}

.stack-card-copy strong {
    color: var(--charcoal-900);
}

.stack-card-contact {
    display: grid;
    gap: 10px;
    background: linear-gradient(135deg, rgba(79, 6, 32, 0.96), rgba(122, 13, 44, 0.94));
    color: rgba(255, 255, 255, 0.92);
}

.stack-card-contact a {
    font-weight: 700;
}

.cta-section {
    padding-top: 28px;
}

.cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 42px;
    border-radius: var(--radius-xl);
    background:
        linear-gradient(135deg, rgba(79, 6, 32, 0.97), rgba(122, 13, 44, 0.94)),
        url("assets/img/Totem%201-63%20(1).png") center/cover no-repeat;
    box-shadow: var(--shadow-strong);
}

.cta-box .section-kicker,
.cta-box h2 {
    color: var(--white);
}

.cta-box h2 {
    max-width: 720px;
}

.section-contact {
    padding-top: 76px;
}

.contact-cards {
    display: grid;
    gap: 16px;
    margin: 28px 0;
}

.contact-cards article {
    padding: 18px 20px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.contact-cards strong {
    display: block;
    margin-bottom: 5px;
}

.contact-cards span,
.contact-cards a {
    color: var(--charcoal-700);
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.contact-map {
    height: 100%;
}

.map-frame {
    min-height: 560px;
    height: 100%;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-strong);
}

.map-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

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

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

.footer-brand {
    padding-right: 16px;
}

.footer-brand-link {
    margin-bottom: 18px;
}

.footer-brand p {
    color: var(--charcoal-700);
}

.footer-card {
    padding: 24px;
}

.footer-card ul {
    display: grid;
    gap: 12px;
}

.footer-card li {
    display: flex;
    gap: 10px;
    color: var(--charcoal-700);
}

.footer-card i {
    width: 18px;
    margin-top: 3px;
    color: var(--wine-800);
}

@media (max-width: 1080px) {
    .desktop-only {
        display: none;
    }

    .nav-toggle {
        display: inline-flex;
        flex-direction: column;
        gap: 5px;
        width: 44px;
        height: 44px;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        border: 1px solid rgba(79, 6, 32, 0.1);
        background: rgba(255, 255, 255, 0.88);
    }

    .nav-toggle span {
        width: 18px;
        height: 2px;
        border-radius: 999px;
        background: var(--charcoal-900);
        transition: transform var(--transition), opacity var(--transition);
    }

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

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

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

    .nav-menu {
        position: absolute;
        top: calc(100% + 12px);
        left: 20px;
        right: 20px;
        padding: 22px;
        border-radius: 24px;
        background: rgba(255, 250, 245, 0.98);
        border: 1px solid rgba(79, 6, 32, 0.08);
        box-shadow: var(--shadow-soft);
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-12px);
        transition: opacity var(--transition), transform var(--transition);
    }

    .nav-menu.active {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .hero-grid,
    .story-grid,
    .solutions-grid,
    .contact-grid,
    .footer-grid,
    .trust-grid,
    .segments-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual,
    .story-visual {
        min-height: auto;
    }

    .hero-main-card,
    .hero-side-card,
    .hero-note-card,
    .story-photo-frame,
    .story-badge {
        position: relative;
        inset: auto;
        right: auto;
        bottom: auto;
        top: auto;
        left: auto;
        width: auto;
    }

    .hero-visual,
    .story-visual {
        display: grid;
        gap: 16px;
    }

    .hero-main-card {
        height: 460px;
    }

    .hero-side-card {
        width: 100%;
        height: 220px;
    }

    .hero-note-card {
        width: 100%;
    }

    .story-photo-frame {
        height: 480px;
    }

    .cta-box {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 820px) {
    .section {
        padding: 88px 0;
    }

    .topbar-content,
    .topbar-links {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero {
        padding-top: 48px;
    }

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

    .hero-main-card {
        height: 360px;
    }

    .map-frame {
        min-height: 420px;
    }
}

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

    .nav {
        min-height: 78px;
    }

    .brand strong {
        font-size: 1.3rem;
    }

    .brand img {
        width: 62px;
        height: 62px;
    }

    .hero-copy h1 {
        font-size: clamp(2.2rem, 11vw, 3.2rem);
    }

    .hero-actions,
    .contact-actions,
    .quick-actions-list {
        flex-direction: column;
    }

    .btn-lg,
    .nav-cta,
    .quick-chip {
        width: 100%;
    }

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

    .story-photo-frame {
        height: 360px;
    }

    .map-frame {
        min-height: 320px;
    }

    .trust-grid article,
    .segment-card,
    .stack-card-copy,
    .stack-card-contact,
    .footer-card,
    .cta-box {
        padding-left: 20px;
        padding-right: 20px;
    }

    .floating-whatsapp {
        width: 56px;
        height: 56px;
        right: 16px;
        bottom: 16px;
        font-size: 1.45rem;
    }
}
