:root {
    --black: #111111;
    --dark: #191919;
    --white: #ffffff;

    --pink: #e8b7bd;
    --pink-dark: #d99da5;
    --pink-light: #f8e8ea;
    --pink-soft: #f4dfe2;

    --gray-100: #faf7f7;
    --gray-200: #eadfe0;
    --gray-400: #b6a8aa;
    --gray-600: #6d6365;

    --text: #343032;

    --container: 1240px;

    --transition: .35s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "DM Sans", Arial, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden;
}

img {
    display: block;
    width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

.container {
    width: min(calc(100% - 50px), var(--container));
    margin: auto;
}

.section-label,
.small-label {
    display: block;
    margin-bottom: 18px;
    color: var(--pink-dark);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.section-label.light {
    color: var(--white);
}

h1,
h2,
h3 {
    font-family: "DM Sans", Arial, sans-serif;
    color: var(--black);
    font-weight: 300;
}

h2 {
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.02;
    letter-spacing: -2px;
}

.btn {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 28px;
    border: 1px solid transparent;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all var(--transition);
}

.btn-dark {
    background: var(--pink);
    color: var(--black);
}

.btn-dark:hover {
    background: var(--pink-dark);
    transform: translateY(-2px);
}

.btn-light {
    background: var(--white);
    color: var(--black);
}

.btn-light:hover {
    background: var(--pink);
    color: var(--black);
    transform: translateY(-2px);
}

.btn-outline {
    border-color: var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background: var(--pink);
    border-color: var(--pink);
    color: var(--black);
}

.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    color: var(--white);
    transition: background .4s ease, color .4s ease, box-shadow .4s ease;
}

.header.scrolled {
    position: fixed;
    background: rgba(255,255,255,.96);
    color: var(--black);
    box-shadow: 0 5px 25px rgba(0,0,0,.07);
    backdrop-filter: blur(12px);
}

.header-inner {
    min-height: 96px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.logo {
    width: 185px;
}

.logo img {
    max-width: 185px;
    max-height: 58px;
    object-fit: contain;
}

.navigation {
    display: flex;
    align-items: center;
    gap: 32px;
}

.navigation a {
    position: relative;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.navigation a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 0;
    height: 1px;
    background: currentColor;
    transition: width var(--transition);
}

.navigation a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    width: 45px;
    height: 45px;
    border: 0;
    background: transparent;
    color: currentColor;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 1px;
    margin: 5px auto;
    background: currentColor;
    transition: var(--transition);
}

.hero {
    position: relative;
    min-height: 790px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: var(--white);
}

.hero-image,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    background: linear-gradient(
        90deg,
        rgba(60,28,32,.62),
        rgba(100,50,58,.22) 65%,
        rgba(255,220,225,.05)
    );
}

.hero-container {
    position: relative;
    z-index: 2;
    padding-top: 90px;
}

.hero-copy {
    max-width: 780px;
}

.hero .small-label {
    color: var(--white);
}

.hero h1 {
    max-width: 780px;
    margin-bottom: 30px;
    color: var(--white);
    font-size: clamp(52px, 7vw, 92px);
    line-height: .96;
    letter-spacing: -3px;
}

.hero h1 em {
    display: block;
    font-family: "Playfair Display", Georgia, serif;
    font-weight: 400;
    letter-spacing: -2px;
}

.hero p {
    max-width: 580px;
    margin-bottom: 38px;
    color: var(--white);
    font-size: 16px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.intro {
    padding: 120px 0;
    background: var(--white);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
}

.intro-title h2 {
    max-width: 570px;
}

.intro-description {
    max-width: 590px;
    padding-top: 35px;
}

.intro-description p {
    margin-bottom: 22px;
    color: var(--gray-600);
    font-size: 16px;
}

.products {
    padding: 115px 0;
    background: var(--pink-light);
}

.section-heading {
    display: grid;
    grid-template-columns: 1.1fr .8fr;
    align-items: end;
    gap: 70px;
    margin-bottom: 80px;
}

.section-heading p {
    max-width: 440px;
    padding-bottom: 8px;
    color: var(--gray-600);
}

.product-lines {
    display: flex;
    flex-direction: column;
    gap: 70px;
}

.product-line {
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    min-height: 520px;
    background: var(--white);
}

.product-line.reverse {
    grid-template-columns: .75fr 1.25fr;
}

.product-line.reverse .product-photo {
    order: 2;
}

.product-line.reverse .product-info {
    order: 1;
}

.product-photo {
    position: relative;
    overflow: hidden;
    background: var(--pink-soft);
}

.product-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s ease;
}

.product-line:hover .product-photo img {
    transform: scale(1.035);
}

.product-index {
    position: absolute;
    top: 25px;
    left: 25px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--pink);
    color: var(--black);
    font-size: 11px;
    font-weight: 600;
}

.product-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 70px;
}

.product-info > span {
    margin-bottom: 18px;
    color: var(--pink-dark);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
}

.product-info h3 {
    margin-bottom: 22px;
    font-size: clamp(42px, 5vw, 65px);
    line-height: 1;
}

.product-info p {
    max-width: 440px;
    margin-bottom: 32px;
    color: var(--gray-600);
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    width: fit-content;
    color: var(--black);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: gap var(--transition);
}

.product-link:hover {
    gap: 19px;
    color: var(--pink-dark);
}

.statement {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: var(--white);
}

.statement-image,
.statement-overlay {
    position: absolute;
    inset: 0;
}

.statement-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.statement-overlay {
    background: linear-gradient(
        90deg,
        rgba(70,32,38,.70),
        rgba(120,60,70,.22)
    );
}

.statement-content {
    position: relative;
    z-index: 2;
}

.statement h2 {
    max-width: 800px;
    color: var(--white);
    font-size: clamp(45px, 6vw, 78px);
}

.about {
    padding: 120px 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr .85fr;
    gap: 110px;
    align-items: center;
}

.about-photo {
    aspect-ratio: 1 / 1.05;
    overflow: hidden;
}

.about-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-copy h2 {
    margin-bottom: 30px;
    max-width: 600px;
}

.about-copy p {
    max-width: 560px;
    margin-bottom: 18px;
    color: var(--gray-600);
}

.gallery {
    padding: 115px 0;
    background: var(--pink-light);
}

.gallery-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 55px;
}

.gallery-heading p {
    max-width: 400px;
    color: var(--gray-600);
}

.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 30px;
}

.filter {
    min-height: 42px;
    padding: 0 20px;
    border: 1px solid var(--gray-200);
    background: transparent;
    color: var(--gray-600);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    transition: all var(--transition);
}

.filter:hover,
.filter.active {
    background: var(--pink);
    border-color: var(--pink);
    color: var(--black);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 8px;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--pink-soft);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(70,30,35,0);
    transition: background var(--transition);
}

.gallery-item:hover::after {
    background: rgba(70,30,35,.2);
}

.gallery-icon {
    position: absolute;
    z-index: 2;
    left: 50%;
    top: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(-50%,-50%);
    background: var(--white);
    color: var(--black);
    opacity: 0;
    transition: opacity var(--transition);
}

.gallery-item:hover .gallery-icon {
    opacity: 1;
}

.gallery-play {
    background: var(--pink);
    color: var(--black);
}

.gallery-more {
    display: flex;
    justify-content: center;
    margin-top: 45px;
}

.contact {
    padding: 120px 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 110px;
}

.contact-intro h2 {
    margin-bottom: 28px;
}

.contact-intro > p {
    max-width: 500px;
    color: var(--gray-600);
}

.contact-data {
    margin-top: 45px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.contact-data span {
    display: block;
    margin-bottom: 4px;
    color: var(--pink-dark);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1.5px;
}

.contact-data a {
    color: var(--black);
    font-size: 14px;
}

.contact-data a:hover {
    color: var(--pink-dark);
}

.contact-form {
    padding: 50px;
    background: var(--pink-light);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.form-group label {
    color: var(--black);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--gray-200);
    outline: none;
    background: var(--white);
    color: var(--black);
    font-size: 14px;
    transition: border-color var(--transition);
}

.form-group input,
.form-group select {
    height: 52px;
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--pink-dark);
}

.privacy {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin-bottom: 22px;
    color: var(--gray-600);
    font-size: 11px;
    line-height: 1.5;
}

.privacy input {
    margin-top: 4px;
}

.form-message {
    margin-top: 20px;
    padding: 14px;
    display: none;
    font-size: 13px;
}

.form-message.success {
    display: block;
    background: var(--pink-light);
    color: var(--black);
}

.form-message.error {
    display: block;
    background: var(--pink-soft);
    color: var(--black);
}

.cta {
    padding: 90px 0;
    background: var(--pink);
    color: var(--black);
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.cta h2 {
    max-width: 700px;
    color: var(--black);
}

.footer {
    background: var(--black);
    color: rgba(255,255,255,.65);
}

.footer-main {
    display: grid;
    grid-template-columns: 1.4fr .8fr .8fr 1fr;
    gap: 60px;
    padding: 70px 0;
}

.footer-brand img {
    width: 180px;
    max-height: 55px;
    object-fit: contain;
    object-position: left;
    margin-bottom: 20px;
}

.footer-brand p {
    max-width: 290px;
    font-size: 13px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
}

.footer-column h4 {
    margin-bottom: 8px;
    color: var(--white);
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.footer-column a,
.footer-column span {
    font-size: 12px;
    transition: color var(--transition);
}

.footer-column a:hover {
    color: var(--pink);
}

.footer-bottom {
    min-height: 75px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    border-top: 1px solid rgba(255,255,255,.1);
    font-size: 10px;
}

.footer-bottom a:hover {
    color: var(--pink);
}

.whatsapp {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 900;
    height: 55px;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 0 21px;
    border-radius: 30px;
    background: var(--pink);
    color: var(--black);
    box-shadow: 0 10px 30px rgba(0,0,0,.18);
    font-size: 11px;
    font-weight: 600;
    transition: transform var(--transition);
}

.whatsapp i {
    font-size: 23px;
}

.whatsapp:hover {
    transform: translateY(-4px);
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    background: rgba(0,0,0,.94);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 1100px;
    max-height: 88vh;
}

.lightbox-content img {
    width: auto;
    max-width: 100%;
    max-height: 88vh;
    object-fit: contain;
}

.lightbox-content iframe {
    width: min(1000px,88vw);
    aspect-ratio: 16 / 9;
    border: 0;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 25px;
    width: 50px;
    height: 50px;
    border: 0;
    background: transparent;
    color: var(--white);
    font-size: 27px;
}

@media (max-width: 1000px) {

    .section-heading {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .product-line,
    .product-line.reverse {
        grid-template-columns: 1fr;
    }

    .product-line.reverse .product-photo {
        order: 1;
    }

    .product-line.reverse .product-info {
        order: 2;
    }

    .product-photo {
        min-height: 480px;
    }

    .about-grid,
    .contact-grid {
        gap: 60px;
    }

    .gallery-grid {
        grid-template-columns: repeat(3,1fr);
    }

    .footer-main {
        grid-template-columns: repeat(2,1fr);
    }
}

@media (max-width: 760px) {

    .container {
        width: calc(100% - 32px);
    }

    .header-inner {
        min-height: 78px;
    }

    .logo {
        width: 155px;
    }

    .menu-toggle {
        display: block;
    }

    .navigation {
        position: fixed;
        inset: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 28px;
        background: var(--white);
        color: var(--black);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition);
    }

    .navigation.active {
        opacity: 1;
        visibility: visible;
    }

    .navigation a {
        font-size: 14px;
    }

    .hero {
        min-height: 720px;
    }

    .hero h1 {
        font-size: clamp(45px, 13vw, 67px);
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        max-width: 330px;
    }

    .intro,
    .products,
    .about,
    .gallery,
    .contact {
        padding: 75px 0;
    }

    .intro-grid,
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .intro-description {
        padding-top: 0;
    }

    .product-info {
        padding: 45px 30px;
    }

    .product-photo {
        min-height: 380px;
    }

    .statement {
        min-height: 500px;
    }

    .gallery-heading {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2,1fr);
        gap: 6px;
    }

    .gallery-icon {
        width: 42px;
        height: 42px;
        opacity: 1;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        padding: 25px 0;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
    }

    .whatsapp {
        width: 55px;
        height: 55px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
    }

    .whatsapp span {
        display: none;
    }
}

@media (max-width: 420px) {

    h2 {
        font-size: 40px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item {
        aspect-ratio: 1.15 / 1;
    }
}