:root {
    --hero-green: #19c56f;
    --hero-green-soft: #e5f8ee;
    --hero-green-deep: #08713b;
    --brave-pink: #ef4f9a;
    --brave-pink-soft: #ffe4f0;
    --butter: #fff3c8;
    --cream: #fffaf0;
    --ink: #15131a;
    --muted: #6f6872;
    --line: #ebdee4;
    --panel: #ffffff;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.landing-body {
    margin: 0;
    background: var(--cream);
    color: var(--ink);
    font-family: "Plus Jakarta Sans", Arial, sans-serif;
}

img {
    max-width: 100%;
}

.landing-header {
    position: sticky;
    top: 12px;
    z-index: 20;
    width: min(1120px, calc(100% - 32px));
    min-height: 64px;
    display: grid;
    grid-template-columns: minmax(220px, 1fr) auto minmax(130px, auto);
    gap: 18px;
    align-items: center;
    margin: 12px auto 0;
    padding: 8px 10px 8px 14px;
    border: 1px solid rgba(235, 222, 228, 0.92);
    border-radius: 999px;
    background: rgba(255, 250, 240, 0.96);
    backdrop-filter: blur(12px);
}

.landing-brand {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    color: inherit;
    text-decoration: none;
    font-weight: 900;
}

.landing-brand span:last-child {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.landing-brand-mark {
    width: 40px;
    height: 40px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--brave-pink-soft);
    color: var(--brave-pink);
    font-weight: 900;
}

.landing-brand-mark.logo-image {
    object-fit: cover;
}

.landing-header nav {
    display: flex;
    gap: 18px;
    font-weight: 800;
    font-size: 14px;
}

.landing-header a,
.landing-primary,
.landing-secondary {
    color: inherit;
    text-decoration: none;
}

.landing-header nav a {
    color: var(--muted);
}

.landing-header nav a:hover {
    color: var(--brave-pink);
}

.landing-catalog-button,
.landing-primary,
.landing-secondary,
.landing-contact-card button,
.contact-info-button {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0 22px;
    border: 0;
    font: inherit;
    font-weight: 900;
    cursor: pointer;
    transition: transform 160ms ease, background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}

.landing-catalog-button,
.landing-primary {
    background: var(--brave-pink);
    color: #fff;
}

.landing-catalog-button {
    color: #fff !important;
}

.landing-secondary {
    border: 1px solid var(--hero-green);
    background: #fff;
    color: var(--hero-green-deep);
}

.landing-catalog-button:hover,
.landing-primary:hover {
    transform: translateY(-2px);
    background: var(--hero-green);
    color: #fff !important;
}

.landing-secondary:hover,
.landing-contact-card button:hover,
.contact-info-button:hover {
    transform: translateY(-2px);
    background: var(--brave-pink);
    border-color: var(--brave-pink);
    color: #fff !important;
}

.landing-hero,
.landing-marketplace,
.landing-contact-info,
.landing-contact {
    width: min(1180px, calc(100% - 28px));
    margin-inline: auto;
}

.landing-hero {
    min-height: 520px;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
    gap: 34px;
    align-items: center;
    padding: 44px;
    margin-top: 22px;
    border: 1px solid var(--line);
    border-radius: 34px;
    background: var(--section-bg, var(--butter));
}

.landing-eyebrow {
    margin: 0 0 14px;
    color: var(--brave-pink);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.landing-hero h1,
.landing-marketplace h2,
.landing-contact-info h2,
.landing-contact h2 {
    margin: 0;
    font-size: 44px;
    line-height: 1.05;
    letter-spacing: 0;
    font-weight: 900;
}

.landing-hero-copy p:not(.landing-eyebrow),
.landing-marketplace p,
.landing-contact-info p {
    max-width: 660px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.75;
}

.landing-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.landing-hero-media {
    margin: 0;
    overflow: hidden;
    border-radius: 28px;
    background: #fff;
}

.landing-hero-media img {
    width: 100%;
    min-height: 410px;
    display: block;
    object-fit: cover;
}

.landing-hero-full-image {
    position: relative;
    min-height: min(620px, calc(100vh - 120px));
    grid-template-columns: 1fr;
    place-items: center;
    text-align: center;
    overflow: hidden;
    background: var(--section-bg, var(--butter));
    isolation: isolate;
}

.landing-hero-full-image::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background-image: var(--hero-image);
    background-size: cover;
    background-position: center;
}

.landing-hero-full-image::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: rgba(0, 0, 0, var(--hero-overlay-opacity, 0.48));
}

.landing-hero-full-image .landing-hero-copy {
    width: min(100%, 1040px);
    max-width: none;
    display: grid;
    justify-items: center;
}

.landing-hero-full-image .landing-eyebrow,
.landing-hero-full-image h1,
.landing-hero-full-image .landing-hero-copy p:not(.landing-eyebrow) {
    color: #fff;
}

.landing-hero-full-image h1 {
    max-width: 940px;
    font-size: 58px;
    font-weight: 900;
    line-height: 0.98;
}

.landing-hero-full-image .landing-hero-copy p:not(.landing-eyebrow) {
    max-width: 720px;
}

.landing-hero-full-image .landing-actions {
    justify-content: center;
}

.landing-hero-full-image .landing-hero-media {
    display: none;
}

.landing-marketplace {
    display: grid;
    grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
    gap: 22px;
    margin-top: 24px;
}

.landing-marketplace-copy,
.marketplace-card,
.landing-contact-info,
.landing-contact-card,
.landing-contact-aside {
    border: 1px solid var(--line);
    border-radius: 28px;
    background: var(--panel);
}

.landing-marketplace-copy {
    display: grid;
    align-content: space-between;
    gap: 22px;
    padding: 34px;
    background: var(--section-bg, #e9e1f4);
}

.landing-marketplace-copy h2 + p,
.contact-info-copy h2 + p {
    margin-top: -8px;
}

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

.marketplace-card {
    min-height: 148px;
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 12px;
    color: inherit;
    text-decoration: none;
    text-align: center;
    background: #fff;
    transition: transform 180ms ease, border-color 180ms ease;
}

.marketplace-logo {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: var(--brave-pink-soft);
    color: var(--brave-pink);
    font-size: 30px;
}

.marketplace-logo-image {
    background: #fff;
    border: 1px solid var(--line);
}

.marketplace-logo-image img {
    width: 76%;
    height: 76%;
    object-fit: contain;
}

.marketplace-card strong {
    font-size: 18px;
}

.marketplace-card small {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
}

.marketplace-card:hover {
    transform: translateY(-3px);
    border-color: var(--brave-pink);
}

.marketplace-card-static {
    cursor: default;
}

.marketplace-card-empty {
    background: rgba(255, 255, 255, 0.4);
    border-style: dashed;
}

.landing-contact-info {
    display: grid;
    grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
    gap: 34px;
    margin-top: 24px;
    padding: 44px;
    background: var(--section-bg, var(--hero-green));
    color: #fff;
}

.landing-contact-info .landing-eyebrow,
.landing-contact-info h2,
.landing-contact-info p {
    color: #fff;
}

.contact-info-copy {
    display: grid;
    align-content: center;
    gap: 14px;
}

.contact-info-copy .landing-primary {
    width: max-content;
    background: #fff;
    color: var(--brave-pink);
}

.contact-info-list {
    display: grid;
    gap: 20px;
    align-content: start;
    justify-items: start;
}

.contact-info-list article {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
}

.contact-info-list article > span {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.36);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.16);
    font-size: 30px;
}

.contact-info-list strong {
    display: block;
    margin-bottom: 4px;
    font-size: 17px;
}

.contact-info-list p {
    margin: 0;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.45;
}

.contact-info-list a {
    color: #fff;
    text-decoration: none;
}

.contact-info-button {
    width: max-content;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    border-radius: 16px;
    background: var(--brave-pink);
    color: #fff !important;
    text-decoration: none;
    font-weight: 900;
    margin-top: 8px;
    grid-column: 1;
    justify-self: start;
}

.contact-info-button:hover {
    background: #fff;
    color: var(--brave-pink) !important;
    border-color: #fff;
}

.landing-contact {
    display: grid;
    grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.94fr);
    gap: 20px;
    margin-top: 24px;
    margin-bottom: 48px;
}

.landing-contact-card {
    padding: 46px;
    background: var(--hero-green);
    color: #fff;
}

.landing-contact-card .landing-eyebrow {
    color: #fff;
}

.landing-contact-card form {
    display: grid;
    gap: 18px;
    margin-top: 30px;
}

.landing-contact-card label {
    display: grid;
    gap: 8px;
    font-weight: 900;
}

.landing-contact-card input,
.landing-contact-card textarea {
    width: 100%;
    min-height: 58px;
    border: 0;
    border-radius: 18px;
    padding: 0 18px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--ink);
    font: inherit;
}

.landing-contact-card textarea {
    min-height: 132px;
    padding-top: 18px;
    resize: vertical;
}

.landing-contact-card button {
    border: 2px solid #fff;
    background: transparent;
    color: #fff;
}

.landing-contact-aside {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 44px;
    background: var(--brave-pink-soft);
}

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

.landing-gallery-grid-marketplace {
    align-content: start;
}

.landing-gallery-tile {
    aspect-ratio: 1 / 1;
    margin: 0;
    overflow: hidden;
    border-radius: 18px;
    background: #fff;
    perspective: 900px;
}

.landing-gallery-tile img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 180ms ease;
}

.marketplace-grid-contact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
}

.landing-floating-wa {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 30;
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: #fff;
    text-decoration: none;
}

.landing-floating-wa img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.landing-footer {
    width: min(1180px, calc(100% - 28px));
    margin: -22px auto 42px;
    color: rgba(21, 19, 26, 0.38);
    font-size: 13px;
    font-weight: 800;
    text-align: center;
}

@media (max-width: 980px) {
    .landing-header {
        top: 10px;
        width: calc(100% - 22px);
        grid-template-columns: 1fr auto;
        padding: 10px 12px;
    }

    .landing-header nav {
        display: none;
    }

    .landing-hero,
    .landing-marketplace,
    .landing-contact-info,
    .landing-contact {
        grid-template-columns: 1fr;
    }

    .landing-hero {
        min-height: auto;
        padding: 28px;
    }

    .landing-hero-full-image {
        min-height: 520px;
    }

    .marketplace-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .marketplace-grid-contact {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 981px) and (max-width: 1180px) {
    .landing-header {
        grid-template-columns: minmax(210px, 1fr) auto auto;
        gap: 16px;
    }

    .landing-header nav {
        gap: 16px;
        font-size: 14px;
    }

    .landing-hero {
        grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
        gap: 26px;
        padding: 40px;
    }

    .landing-hero h1,
    .landing-marketplace h2,
    .landing-contact-info h2,
    .landing-contact h2 {
        font-size: 42px;
    }

    .landing-contact-info,
    .landing-contact {
        gap: 24px;
    }
}

@media (max-width: 620px) {
    .landing-header {
        width: calc(100% - 18px);
        min-height: 64px;
        margin-top: 9px;
        gap: 10px;
    }

    .landing-brand {
        font-size: 14px;
    }

    .landing-brand-mark {
        width: 36px;
        height: 36px;
    }

    .landing-catalog-button {
        min-height: 40px;
        padding-inline: 13px;
        font-size: 13px;
    }

    .landing-hero,
    .landing-marketplace,
    .landing-contact-info,
    .landing-contact {
        width: calc(100% - 18px);
    }

    .landing-hero h1,
    .landing-marketplace h2,
    .landing-contact-info h2,
    .landing-contact h2 {
        font-size: 34px;
    }

    .landing-hero-media img {
        min-height: 280px;
    }

    .landing-hero-full-image {
        min-height: 460px;
    }

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

    .marketplace-grid-contact {
        grid-template-columns: 1fr;
    }

    .landing-contact-info,
    .landing-contact-card,
    .landing-contact-aside {
        padding: 26px;
    }

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

    .landing-floating-wa {
        right: 16px;
        bottom: 16px;
    }
}

@media (max-width: 460px) {
    .landing-body {
        padding-top: 0;
    }

    .landing-header {
        width: calc(100% - 14px);
        grid-template-columns: minmax(0, 1fr) auto;
        border-radius: 28px;
        padding: 8px;
    }

    .landing-brand {
        gap: 8px;
    }

    .landing-brand span:last-child {
        max-width: 142px;
    }

    .landing-catalog-button {
        min-width: 0;
        min-height: 38px;
        padding-inline: 11px;
        font-size: 12px;
    }

    .landing-hero,
    .landing-marketplace,
    .landing-contact-info,
    .landing-contact {
        width: calc(100% - 14px);
        border-radius: 24px;
    }

    .landing-hero {
        gap: 20px;
        padding: 22px;
        margin-top: 14px;
    }

    .landing-hero h1,
    .landing-marketplace h2,
    .landing-contact-info h2,
    .landing-contact h2 {
        font-size: 29px;
        line-height: 1.08;
    }

    .landing-hero-copy p:not(.landing-eyebrow),
    .landing-marketplace p,
    .landing-contact-info p {
        font-size: 15px;
        line-height: 1.65;
    }

    .landing-actions {
        gap: 10px;
    }

    .landing-primary,
    .landing-secondary,
    .landing-contact-card button,
    .contact-info-button {
        width: 100%;
        min-height: 46px;
        padding-inline: 16px;
        text-align: center;
        white-space: normal;
    }

    .landing-hero-media {
        border-radius: 20px;
    }

    .landing-hero-media img {
        min-height: 230px;
    }

    .landing-hero-full-image {
        min-height: 420px;
    }

    .landing-marketplace-copy,
    .landing-contact-info,
    .landing-contact-card,
    .landing-contact-aside {
        padding: 22px;
        border-radius: 24px;
    }

    .contact-info-list article {
        grid-template-columns: 48px minmax(0, 1fr);
        gap: 12px;
    }

    .contact-info-list article > span {
        width: 48px;
        height: 48px;
        border-radius: 14px;
        font-size: 25px;
    }

    .contact-info-list p {
        font-size: 15px;
        overflow-wrap: anywhere;
    }

    .marketplace-card {
        min-height: 134px;
        padding: 16px 12px;
    }

    .landing-floating-wa {
        width: 56px;
        height: 56px;
    }
}

@media (min-width: 1440px) {
    .landing-header {
        width: min(1320px, calc(100% - 48px));
    }

    .landing-hero,
    .landing-marketplace,
    .landing-contact-info,
    .landing-contact,
    .landing-footer {
        width: min(1280px, calc(100% - 48px));
    }
}
