css
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Manrope:wght@400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', sans-serif;
    color: #20201e;
    background:
        radial-gradient(circle at 15% 15%, rgba(255, 178, 210, .55), transparent 28%),
        radial-gradient(circle at 85% 10%, rgba(185, 215, 255, .65), transparent 30%),
        radial-gradient(circle at 50% 65%, rgba(255, 224, 166, .45), transparent 30%),
        #f7f3ef;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
}

img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* =========================
   BACKGROUND
========================= */

.site-background {
    position: fixed;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: -1;
}

.glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .65;
}

.glow-one {
    width: 420px;
    height: 420px;
    background: #ffc3dc;
    top: 5%;
    left: -160px;
}

.glow-two {
    width: 480px;
    height: 480px;
    background: #b9d9ff;
    right: -180px;
    top: 28%;
}

.glow-three {
    width: 400px;
    height: 400px;
    background: #ffe1aa;
    left: 35%;
    bottom: -200px;
}


/* =========================
   HEADER / LIQUID GLASS
========================= */


.header-glass {
    max-width: 1400px;
    min-height: 72px;
    margin: auto;
    padding: 10px 14px 10px 22px;
    position: relative;
    top: 15px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background: rgba(255, 255, 255, .42);
    border: 1px solid rgba(255, 255, 255, .72);
    border-radius: 100px;

    backdrop-filter: blur(24px) saturate(160%);
    -webkit-backdrop-filter: blur(24px) saturate(160%);

    box-shadow:
        0 15px 45px rgba(70, 55, 50, .10),
        inset 0 1px 0 rgba(255, 255, 255, .85);
}

.logo {
    display: flex;
    align-items: center;
    gap: 11px;

    font-family: 'DM Serif Display', serif;
    font-size: 25px;
}

.logo-mark {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: linear-gradient(
        135deg,
        #f5a7c7,
        #c9b5ff
    );

    color: white;

    box-shadow:
        0 7px 20px rgba(193, 135, 180, .25),
        inset 0 1px 3px rgba(255,255,255,.7);
}

.nav {
    display: flex;
    align-items: center;
    gap: 42px;
}

.nav a {
    position: relative;

    font-size: 13px;
    font-weight: 700;

    color: #65615d;

    transition: .3s ease;
}

.nav a::after {
    content: "";

    position: absolute;

    width: 0;
    height: 2px;

    left: 50%;
    bottom: -8px;

    transform: translateX(-50%);

    border-radius: 10px;

    background: #20201e;

    transition: .3s ease;
}

.nav a:hover,
.nav a.active {
    color: #20201e;
}

.nav a:hover::after,
.nav a.active::after {
    width: 18px;
}


.header-button {
    display: flex;
    align-items: center;
    gap: 12px;

    padding: 14px 20px;

    border-radius: 50px;

    background: #22211f;
    color: white;

    font-size: 12px;
    font-weight: 800;

    box-shadow: 0 8px 25px rgba(30,30,30,.15);

    transition: .3s ease;
}

.header-button:hover {
    transform: translateY(-2px);
}

.header-button span {
    font-size: 16px;
}

.mobile-menu-button {
    display: none;
}


/* =========================
   GENERAL
========================= */

.section {
    width: min(1400px, 90%);
    margin: auto;
    padding: 150px 0;
}

.section-label {
    display: flex;
    align-items: center;
    gap: 12px;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;

    color: #77716c;
}

.section-label span {
    width: 28px;
    height: 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255,255,255,.55);
    border: 1px solid rgba(255,255,255,.8);

    backdrop-filter: blur(12px);
}


/* =========================
   HERO
========================= */

.hero {
    width: min(1400px, 90%);
    min-height: calc(100vh - 90px);

    margin: auto;
    padding: 50px 0 70px;

    display: grid;
    grid-template-columns: .9fr 1.1fr;
    align-items: center;

    gap: 70px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 9px 15px;

    border-radius: 50px;

    background: rgba(255,255,255,.45);
    border: 1px solid rgba(255,255,255,.7);

    backdrop-filter: blur(15px);

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.7px;
}

.eyebrow-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #ef86ae;

    box-shadow:
        0 0 0 5px rgba(239,134,174,.12);
}

.hero h1 {
    margin-top: 30px;

    font-family: 'DM Serif Display', serif;

    font-size: clamp(64px, 7vw, 108px);
    line-height: .92;

    letter-spacing: -3px;
    font-weight: 400;
}

.hero h1 span {
    display: block;

    font-style: italic;

    background: linear-gradient(
        90deg,
        #df6e9b,
        #9d78d6
    );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}

.hero-description {
    max-width: 500px;

    margin-top: 35px;

    font-size: 16px;
    line-height: 1.8;

    color: #706b66;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 28px;

    margin-top: 38px;
}

.primary-button {
    display: inline-flex;
    align-items: center;
    gap: 25px;

    padding: 17px 18px 17px 24px;

    border-radius: 50px;

    background: #22211f;
    color: white;

    font-size: 12px;
    font-weight: 800;

    box-shadow:
        0 12px 35px rgba(30,25,25,.18);

    transition: .35s ease;
}

.primary-button:hover {
    transform: translateY(-4px);

    box-shadow:
        0 18px 40px rgba(30,25,25,.23);
}

.button-arrow {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255,255,255,.12);

    font-size: 17px;
}

.text-button {
    display: flex;
    align-items: center;
    gap: 10px;

    font-size: 12px;
    font-weight: 800;

    color: #55514d;
}

.text-button span {
    font-size: 17px;
}


/* =========================
   HERO IMAGE
========================= */

.hero-visual {
    position: relative;
}

.hero-glass-card {
    width: 94%;
    margin: auto;

    padding: 13px;

    border-radius: 40px;

    background: rgba(255,255,255,.38);

    border: 1px solid rgba(255,255,255,.72);

    backdrop-filter: blur(25px) saturate(150%);
    -webkit-backdrop-filter: blur(25px) saturate(150%);

    box-shadow:
        0 30px 80px rgba(80,55,65,.18),
        inset 0 1px 0 rgba(255,255,255,.9);

    transform: rotate(2deg);
}

.hero-image-wrapper {
    height: 620px;

    position: relative;
    overflow: hidden;

    border-radius: 30px;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 1s ease;
}

.hero-glass-card:hover .hero-image {
    transform: scale(1.04);
}

.image-shine {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            120deg,
            rgba(255,255,255,.22),
            transparent 35%,
            transparent 70%,
            rgba(255,255,255,.12)
        );

    pointer-events: none;
}

.hero-card-info {
    display: flex;
    align-items: center;
    gap: 20px;

    padding: 17px 12px 5px;
}

.hero-card-info div:first-child {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero-card-info small {
    font-size: 8px;
    letter-spacing: 2px;
    color: #88817b;
}

.hero-card-info strong {
    font-size: 11px;
}

.card-line {
    height: 1px;
    flex: 1;

    background: rgba(50,50,50,.12);
}

.card-heart {
    font-size: 25px;
}

.floating-card {
    position: absolute;

    padding: 15px 19px;

    border-radius: 18px;

    background: rgba(255,255,255,.5);

    border: 1px solid rgba(255,255,255,.75);

    backdrop-filter: blur(18px) saturate(160%);

    box-shadow:
        0 15px 35px rgba(50,40,40,.13),
        inset 0 1px 0 rgba(255,255,255,.7);

    font-size: 11px;
    font-weight: 800;
}

.floating-card-one {
    left: -45px;
    bottom: 100px;
}

.floating-card-one span {
    color: #df6e9b;
    margin-right: 7px;
}

.floating-card-two {
    right: -30px;
    top: 90px;

    display: flex;
    flex-direction: column;
    gap: 2px;
}

.floating-card-two strong {
    font-family: 'DM Serif Display', serif;

    font-size: 28px;
    font-weight: 400;
}


/* =========================
   INTRO
========================= */

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 100px;

    margin-top: 70px;
}

.intro-title h2,
.story-content h2,
.return h2,
.collection-heading h2 {
    margin-top: 20px;

    font-family: 'DM Serif Display', serif;

    font-size: clamp(50px, 5vw, 76px);
    line-height: .98;

    font-weight: 400;
    letter-spacing: -2px;
}

h2 em {
    color: #bd7195;
    font-style: italic;
}

.mini-label {
    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1.5px;
    text-transform: uppercase;

    color: #9b918a;
}

.intro-text {
    padding-top: 20px;
}

.intro-text p {
    max-width: 600px;

    margin-bottom: 25px;

    color: #6e6964;

    font-size: 15px;
    line-height: 1.85;
}

.intro-text .large-text {
    font-size: 20px;
    line-height: 1.6;

    color: #282522;
}

.round-link {
    width: 105px;
    height: 105px;

    margin-top: 35px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-direction: column;
    gap: 4px;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,.7),
            rgba(255,205,223,.6)
        );

    border: 1px solid rgba(255,255,255,.9);

    backdrop-filter: blur(15px);

    font-size: 15px;
    font-weight: 800;

    transition: .35s ease;
}

.round-link:hover {
    transform: rotate(8deg) scale(1.05);
}


/* =========================
   VISUAL IMAGE
========================= */

.visual-section {
    width: 90%;
    max-width: 1500px;

    margin: auto;
}

.visual-image-container {
    height: 680px;

    position: relative;
    overflow: hidden;

    border-radius: 45px;

    box-shadow:
        0 30px 90px rgba(70,50,50,.18);
}

.visual-image-container img {
    transition: transform 1.2s ease;
}

.visual-image-container:hover img {
    transform: scale(1.035);
}

.visual-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(30,20,25,.22),
            transparent 55%
        );
}

.visual-glass {
    position: absolute;

    left: 40px;
    bottom: 40px;

    display: flex;
    align-items: center;
    gap: 25px;

    padding: 20px 25px;

    border-radius: 22px;

    background: rgba(255,255,255,.24);

    border: 1px solid rgba(255,255,255,.5);

    backdrop-filter: blur(22px) saturate(150%);
    -webkit-backdrop-filter: blur(22px) saturate(150%);

    color: white;
}

.visual-number {
    font-family: 'DM Serif Display', serif;
    font-size: 42px;
}

.visual-glass div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.visual-glass small {
    font-size: 8px;
    letter-spacing: 2px;
}

.visual-glass strong {
    font-family: 'DM Serif Display', serif;

    font-size: 22px;
    font-weight: 400;
}

.vertical-label {
    position: absolute;

    right: 30px;
    top: 50%;

    transform: rotate(90deg) translateX(50%);

    color: rgba(255,255,255,.8);

    font-size: 9px;
    letter-spacing: 3px;
    font-weight: 800;
}


/* =========================
   STORY
========================= */

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 120px;

    margin-top: 75px;
}

.story-images {
    position: relative;

    min-height: 650px;
}

.story-image {
    position: absolute;

    overflow: hidden;

    border-radius: 30px;

    box-shadow:
        0 25px 60px rgba(50,40,40,.16);
}

.story-image-main {
    width: 73%;
    height: 570px;

    left: 0;
    top: 0;
}

.story-image-small {
    width: 47%;
    height: 320px;

    right: 0;
    bottom: 0;

    border: 9px solid #f7f3ef;
}

.story-sticker {
    position: absolute;

    left: 48%;
    top: 50%;

    width: 105px;
    height: 105px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-direction: column;

    text-align: center;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            #f5b3ce,
            #cbb9f3
        );

    color: white;

    transform: rotate(-10deg);

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;

    box-shadow:
        0 15px 35px rgba(150,100,140,.2);
}

.story-sticker span {
    font-size: 21px;
    margin-bottom: 5px;
}

.story-copy {
    margin-top: 35px;
}

.story-copy p {
    margin-bottom: 22px;

    color: #6f6964;

    font-size: 15px;
    line-height: 1.85;
}


/* =========================
   QUOTE / LIQUID GLASS
========================= */

.quote-section {
    width: 90%;
    max-width: 1500px;

    margin: 40px auto 100px;

    padding: 70px 0;

    border-radius: 50px;

    position: relative;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 20% 20%,
            #e8a7c6,
            transparent 35%
        ),
        radial-gradient(
            circle at 80% 80%,
            #9eaee5,
            transparent 40%
        ),
        #272426;

    box-shadow:
        0 35px 90px rgba(50,40,50,.25);
}

.quote-section::before {
    content: "";

    position: absolute;
    inset: 15px;

    border: 1px solid rgba(255,255,255,.14);

    border-radius: 38px;
}

.quote-glass {
    position: relative;
    z-index: 1;

    width: min(1000px, 80%);

    margin: auto;

    padding: 65px;

    text-align: center;

    background: rgba(255,255,255,.08);

    border: 1px solid rgba(255,255,255,.17);

    backdrop-filter: blur(25px) saturate(150%);
    -webkit-backdrop-filter: blur(25px) saturate(150%);

    border-radius: 35px;

    color: white;

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.18);
}

.quote-mark {
    font-family: 'DM Serif Display', serif;

    font-size: 80px;
    line-height: .5;

    opacity: .7;
}

blockquote {
    margin-top: 30px;

    font-family: 'DM Serif Display', serif;

    font-size: clamp(40px, 5vw, 70px);
    line-height: 1;

    font-weight: 400;
}

blockquote em {
    color: #ffb7d4;
}

.quote-bottom {
    display: flex;
    justify-content: space-between;

    margin-top: 45px;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 2px;

    opacity: .65;
}


/* =========================
   RETURN
========================= */

.return-header {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 100px;

    align-items: end;

    margin-top: 70px;
}

.return-header > p {
    max-width: 480px;

    font-size: 16px;
    line-height: 1.8;

    color: #706a65;
}

.return-layout {
    margin-top: 70px;

    display: grid;
    grid-template-columns: .7fr 1.3fr;

    gap: 80px;

    align-items: center;
}

.return-text {
    padding-left: 30px;
}

.return-text p {
    color: #6e6964;

    font-size: 15px;
    line-height: 1.85;

    margin-bottom: 24px;
}

.signature {
    margin-top: 45px;

    font-family: 'DM Serif Display', serif;

    font-style: italic;

    font-size: 40px;

    color: #bd7195;
}

.signature span {
    font-family: 'Manrope', sans-serif;

    font-size: 20px;

    margin-left: 10px;
}

.return-image {
    height: 600px;

    position: relative;
}

.return-image img {
    border-radius: 35px;

    box-shadow:
        0 30px 70px rgba(50,40,40,.17);
}

.return-badge {
    position: absolute;

    right: -25px;
    top: 35px;

    width: 105px;
    height: 105px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-direction: column;

    border-radius: 50%;

    background: rgba(255,255,255,.55);

    border: 1px solid rgba(255,255,255,.85);

    backdrop-filter: blur(20px) saturate(150%);

    box-shadow:
        0 15px 40px rgba(60,40,50,.15);

    transform: rotate(8deg);
}

.return-badge span {
    font-size: 9px;

    font-weight: 800;

    letter-spacing: 2px;
}

.return-badge strong {
    font-family: 'DM Serif Display', serif;

    font-size: 15px;
    font-weight: 400;
}


/* =========================
   COLLECTION PREVIEW
========================= */

.collection-heading {
    display: flex;

    align-items: end;
    justify-content: space-between;

    margin-bottom: 75px;
}

.outline-button {
    display: flex;
    align-items: center;
    gap: 20px;

    padding: 14px 18px 14px 23px;

    border-radius: 50px;

    background: rgba(255,255,255,.42);

    border: 1px solid rgba(255,255,255,.8);

    backdrop-filter: blur(18px) saturate(150%);

    font-size: 11px;
    font-weight: 800;

    transition: .3s ease;
}

.outline-button span {
    width: 35px;
    height: 35px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #22211f;
    color: white;
}

.outline-button:hover {
    transform: translateY(-3px);
}

.products-grid {
    display: grid;

    grid-template-columns: 1.15fr .85fr;

    grid-template-rows: 520px 520px;

    gap: 25px;
}

.product-card {
    display: block;
}

.product-image {
    height: calc(100% - 55px);

    position: relative;
    overflow: hidden;

    border-radius: 30px;

    box-shadow:
        0 20px 50px rgba(60,45,45,.13);
}

.product-card img {
    transition: transform .7s ease;
}

.product-card:hover img {
    transform: scale(1.05);
}

.product-large {
    grid-row: span 2;
}

.product-wide {
    grid-column: 1 / -1;
    width: 85%;
    margin: 0 auto;
}

.product-number {
    position: absolute;

    top: 20px;
    left: 20px;

    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: white;

    background: rgba(20,20,20,.25);

    backdrop-filter: blur(12px);

    font-size: 11px;
}

.product-plus {
    position: absolute;

    right: 20px;
    bottom: 20px;

    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #222;

    background: rgba(255,255,255,.65);

    backdrop-filter: blur(12px);

    font-size: 22px;

    transition: .3s ease;
}

.product-card:hover .product-plus {
    transform: rotate(90deg);
}

.product-info {
    height: 55px;

    display: flex;
    justify-content: space-between;
    align-items: end;

    padding: 10px 4px;
}

.product-info span {
    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.5px;

    color: #89817b;
}

.product-info strong {
    font-family: 'DM Serif Display', serif;

    font-size: 18px;

    font-weight: 400;
}


/* =========================
   FINAL CTA
========================= */

.final-section {
    width: 90%;
    max-width: 1500px;

    margin: 50px auto 100px;

    min-height: 650px;

    position: relative;
    overflow: hidden;

    border-radius: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    background:
        radial-gradient(
            circle at 20% 20%,
            #ffbad6,
            transparent 35%
        ),
        radial-gradient(
            circle at 80% 30%,
            #b9c6ff,
            transparent 35%
        ),
        radial-gradient(
            circle at 50% 100%,
            #ffe1a7,
            transparent 45%
        ),
        #f0dce6;

    box-shadow:
        0 30px 90px rgba(80,50,70,.18);
}

.final-section::before {
    content: "";

    position: absolute;
    inset: 16px;

    border-radius: 37px;

    border: 1px solid rgba(255,255,255,.55);
}

.final-glow {
    position: absolute;

    width: 450px;
    height: 450px;

    border-radius: 50%;

    background: rgba(255,255,255,.3);

    filter: blur(60px);
}

.final-content {
    position: relative;
    z-index: 1;

    width: 90%;
}

.final-small {
    font-size: 10px;

    font-weight: 800;

    letter-spacing: 3px;
}

.final-content h2 {
    margin-top: 25px;

    font-family: 'DM Serif Display', serif;

    font-size: clamp(65px, 8vw, 120px);

    line-height: .86;

    font-weight: 400;

    letter-spacing: -4px;
}

.final-content h2 em {
    display: block;

    color: #9b6680;
}

.final-content p {
    margin-top: 30px;

    color: #6f6066;

    font-size: 15px;
}

.final-button {
    display: inline-flex;
    align-items: center;
    gap: 25px;

    margin-top: 35px;

    padding: 17px 18px 17px 25px;

    border-radius: 50px;

    background: #22211f;
    color: white;

    font-size: 12px;
    font-weight: 800;

    transition: .3s ease;
}

.final-button span:last-child {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255,255,255,.12);
}

.final-button:hover {
    transform: translateY(-4px);
}


/* =========================
   FOOTER
========================= */

.footer {
    width: 90%;
    max-width: 1400px;

    margin: auto;

    padding: 30px 0 40px;
}

.footer-top {
    display: grid;

    grid-template-columns: 1fr 1fr 1fr;

    align-items: center;

    padding: 30px 0;

    border-top: 1px solid rgba(50,40,40,.1);
}

.footer-logo {
    font-family: 'DM Serif Display', serif;

    font-size: 30px;
}

.footer-top p {
    font-size: 11px;

    line-height: 1.7;

    color: #85807a;
}

.footer-nav {
    display: flex;

    justify-content: flex-end;

    gap: 25px;
}

.footer-nav a {
    font-size: 10px;

    font-weight: 800;

    color: #77716c;

    transition: .3s ease;
}

.footer-nav a:hover {
    color: #22211f;
}

.footer-bottom {
    display: flex;

    justify-content: space-between;

    padding-top: 20px;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1.5px;

    color: #9b948e;
}


/* =========================
   TABLET
========================= */

@media (max-width: 1000px) {

    .hero {
        grid-template-columns: 1fr;

        padding-top: 160px;
    }

    .hero-content {
        max-width: 700px;
    }

    .hero-visual {
        max-width: 700px;

        margin: auto;
    }

    .intro-grid,
    .story-grid,
    .return-header {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .story-content {
        max-width: 700px;
    }

    .return-layout {
        grid-template-columns: 1fr;
    }

    .return-text {
        padding-left: 0;

        max-width: 600px;
    }

    .return-image {
        max-width: 800px;
    }

    .products-grid {
        grid-template-columns: 1fr 1fr;

        grid-template-rows:
            500px
            500px
            500px;
    }

    .product-large {
        grid-row: span 1;
    }

    .product-wide {
        grid-column: 1 / -1;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;

        gap: 30px;
    }

    .footer-nav {
        justify-content: flex-start;
    }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 700px) {

    .header {
        padding: 12px 4%;
    }

    .header-glass {
        min-height: 62px;

        padding-left: 15px;
    }

    .logo {
        font-size: 21px;
    }

    .logo-mark {
        width: 33px;
        height: 33px;
    }

    .nav,
    .header-button {
        display: none;
    }

    .mobile-menu-button {
        width: 44px;
        height: 44px;

        display: flex;
        align-items: center;
        justify-content: center;

        flex-direction: column;

        gap: 6px;

        border: 0;

        border-radius: 50%;

        background: #22211f;

        cursor: pointer;
    }

    .mobile-menu-button span {
        width: 16px;
        height: 1px;

        background: white;
    }

    .section {
        width: 90%;

        padding: 100px 0;
    }

    .hero {
        width: 90%;

        padding-top: 130px;

        gap: 50px;
    }

    .hero h1 {
        font-size: 61px;

        letter-spacing: -2px;
    }

    .hero-description {
        font-size: 14px;
    }

    .hero-actions {
        flex-wrap: wrap;
    }

    .hero-image-wrapper {
        height: 470px;
    }

    .hero-glass-card {
        border-radius: 28px;
    }

    .floating-card-one {
        left: -8px;

        bottom: 75px;
    }

    .floating-card-two {
        right: -8px;

        top: 50px;
    }

    .intro-grid {
        margin-top: 50px;
    }

    .intro-title h2,
    .story-content h2,
    .return h2,
    .collection-heading h2 {
        font-size: 50px;
    }

    .visual-section {
        width: 94%;
    }

    .visual-image-container {
        height: 500px;

        border-radius: 30px;
    }

    .visual-glass {
        left: 20px;
        right: 20px;
        bottom: 20px;

        padding: 15px;
    }

    .visual-number {
        font-size: 30px;
    }

    .visual-glass strong {
        font-size: 17px;
    }

    .vertical-label {
        display: none;
    }

    .story-images {
        min-height: 500px;
    }

    .story-image-main {
        width: 78%;

        height: 430px;
    }

    .story-image-small {
        width: 48%;

        height: 240px;
    }

    .story-sticker {
        width: 85px;
        height: 85px;

        left: 46%;
    }

    .quote-section,
    .final-section {
        width: 94%;

        border-radius: 30px;
    }

    .quote-section {
        padding: 30px 0;
    }

    .quote-glass {
        width: 88%;

        padding: 40px 20px;

        border-radius: 25px;
    }

    blockquote {
        font-size: 39px;
    }

    .return-image {
        height: 470px;
    }

    .return-badge {
        right: -5px;
    }

    .collection-heading {
        align-items: flex-start;

        flex-direction: column;

        gap: 30px;
    }

    .products-grid {
        grid-template-columns: 1fr;

        grid-template-rows:
            repeat(4, 480px);
    }

    .product-wide {
        grid-column: auto;
    }

    .final-section {
        min-height: 520px;
    }

    .final-content h2 {
        font-size: 65px;

        letter-spacing: -2px;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-nav {
        flex-wrap: wrap;
    }

    .footer-bottom {
        flex-direction: column;

        gap: 10px;
    }
}


/* =========================
   SMALL PHONES
========================= */

@media (max-width: 420px) {

    .hero h1 {
        font-size: 53px;
    }

    .hero-image-wrapper {
        height: 400px;
    }

    .floating-card {
        font-size: 9px;

        padding: 11px 13px;
    }

    .intro-title h2,
    .story-content h2,
    .return h2,
    .collection-heading h2 {
        font-size: 43px;
    }

    .final-content h2 {
        font-size: 54px;
    }

    .primary-button {
        width: 100%;

        justify-content: space-between;
    }

    .text-button {
        margin-left: 10px;
    }
}
css
/* =========================================================
   COLLECTION PAGE
   LIQUID GLASS / MODERN FASHION
   ========================================================= */

.collection-hero {
    position: relative;
    width: min(1400px, 90%);
    min-height: 620px;
    margin: 0 auto;
    padding: 210px 0 90px;

    display: grid;
    grid-template-columns: 1fr 220px;
    align-items: center;
    gap: 60px;

    overflow: visible;
}

.collection-hero-content {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 850px;
    margin: 0 auto;
    padding-top: 45px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;
}

.collection-hero-content h1 {
    margin: 14px 0 24px;

    font-family: "DM Serif Display", serif;
    font-size: clamp(64px, 8vw, 120px);
    line-height: .92;
    letter-spacing: -0.04em;

    text-align: center;
}

.collection-hero-content h1 em {
    display: block;
    font-weight: 400;
}

.collection-hero-content p {
    max-width: 680px;
    margin: 0 auto;

    text-align: center;

    font-size: 17px;
    line-height: 1.8;
}

.collection-count {
    position: relative;
    z-index: 2;

    width: 205px;
    height: 205px;

    margin: 0 auto;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;
}

.collection-hero-content .glass-label {
    margin-bottom: 25px;
}

.collection-hero h1 {
    margin: 0;

    font-family: 'DM Serif Display', serif;
    font-size: clamp(65px, 8vw, 115px);
    line-height: .88;
    font-weight: 400;
    letter-spacing: -4px;

    color: #292321;
}

.collection-hero h1 em {
    display: block;

    font-style: italic;
    font-weight: 400;

    color: transparent;

    background:
        linear-gradient(
            100deg,
            #df6e9b,
            #b77fd0 45%,
            #7d8bd1
        );

    -webkit-background-clip: text;
    background-clip: text;
}

.collection-hero-content > p {
    max-width: 590px;

    margin-top: 32px;

    font-size: 16px;
    line-height: 1.8;

    color: #706a65;
}


/* =========================
   HERO GLOW
   ========================= */

.collection-hero-glow {
    position: absolute;

    border-radius: 50%;

    filter: blur(90px);

    pointer-events: none;

    z-index: -1;
}

.collection-hero-glow.glow-one {
    width: 400px;
    height: 400px;

    top: 40px;
    right: 5%;

    background: rgba(247, 163, 194, .42);
}

.collection-hero-glow.glow-two {
    width: 360px;
    height: 360px;

    left: 20%;
    bottom: -100px;

    background: rgba(158, 178, 245, .35);
}


/* =========================
   20 WORKS GLASS CARD
   ========================= */

.collection-count {
    width: 205px;
    height: 205px;

    padding: 25px;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    text-align: center;

    border-radius: 45px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.48),
            rgba(255,255,255,.18)
        );

    border: 1px solid rgba(255,255,255,.72);

    backdrop-filter: blur(28px) saturate(170%);
    -webkit-backdrop-filter: blur(28px) saturate(170%);

    box-shadow:
        0 25px 70px rgba(60,48,43,.13),
        inset 0 1px 0 rgba(255,255,255,.9);

    transform: rotate(3deg);

    transition:
        transform .4s ease,
        box-shadow .4s ease;
}

.collection-count:hover {
    transform: rotate(0deg) translateY(-7px);

    box-shadow:
        0 35px 90px rgba(60,48,43,.18),
        inset 0 1px 0 rgba(255,255,255,.95);
}

.collection-count strong {
    font-family: 'DM Serif Display', serif;

    font-size: 72px;
    line-height: .85;
    font-weight: 400;

    color: #302724;
}

.collection-count span {
    max-width: 120px;

    margin-top: 16px;

    font-size: 10px;
    line-height: 1.5;

    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;

    color: #756d68;
}


/* =========================================================
   COLLECTION SECTION
   ========================================================= */

.collection-section {
    width: min(1450px, 92%);

    margin: 0 auto;

    padding: 80px 0 130px;
}

.collection-intro {
    max-width: 720px;

    margin: 0 auto 75px;

    text-align: center;
}

.collection-intro > span {
    display: inline-block;

    margin-bottom: 20px;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 3px;

    color: #938a84;
}

.collection-intro h2 {
    margin: 0;

    font-family: 'DM Serif Display', serif;

    font-size: clamp(48px, 6vw, 78px);
    line-height: .98;

    font-weight: 400;
    letter-spacing: -2px;

    color: #302724;
}

.collection-intro h2 i {
    color: #bd7195;
}

.collection-intro p {
    max-width: 620px;

    margin: 25px auto 0;

    font-size: 15px;
    line-height: 1.8;

    color: #706a65;
}


/* =========================================================
   PERFECT 4 COLUMN GRID
   ========================================================= */

.collection-grid {
    width: 100%;
    max-width: 1400px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 28px;
}


/* Все карточки абсолютно одинаковые */

.bag-card,
.bag-card-large,
.bag-card-tall {
    grid-column: span 1;

    min-width: 0;

    margin-top: 0 !important;
}


/* =========================================================
   BAG CARD
   ========================================================= */

.bag-card {
    position: relative;

    cursor: pointer;
}


/* =========================================================
   IMAGE
   ========================================================= */

.bag-image,
.bag-card-large .bag-image,
.bag-card-tall .bag-image {
    position: relative;

    width: 100%;

    aspect-ratio: 4 / 5;

    overflow: hidden;

    border-radius: 30px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.55),
            rgba(241,225,226,.35)
        );

    border: 1px solid rgba(255,255,255,.72);

    box-shadow:
        0 20px 55px rgba(62,48,43,.12),
        inset 0 1px 0 rgba(255,255,255,.85);

    isolation: isolate;
}

.bag-image img {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .8s cubic-bezier(.2,.75,.2,1),
        filter .7s ease;
}


/* =========================================================
   OVERLAY
   ========================================================= */

.bag-overlay {
    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            to bottom,
            rgba(20,15,18,.02) 20%,
            rgba(20,15,18,.08) 45%,
            rgba(20,15,18,.78) 100%
        );

    opacity: 0;

    transition: opacity .5s ease;
}


/* =========================================================
   NUMBER
   ========================================================= */

.bag-number {
    position: absolute;

    top: 17px;
    left: 17px;

    z-index: 5;

    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255,255,255,.30);

    border: 1px solid rgba(255,255,255,.65);

    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

    color: white;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.8),
        0 8px 25px rgba(30,25,23,.1);

    transition:
        transform .4s ease,
        background .4s ease;
}


/* =========================================================
   DESCRIPTION — LIQUID GLASS
   ========================================================= */

.bag-info {
    position: absolute;

    z-index: 6;

    left: 14px;
    right: 14px;
    bottom: 14px;

    padding: 20px 20px 21px;

    border-radius: 22px;

    background: rgba(255,255,255,.19);

    border: 1px solid rgba(255,255,255,.42);

    backdrop-filter: blur(24px) saturate(160%);
    -webkit-backdrop-filter: blur(24px) saturate(160%);

    box-shadow:
        0 15px 45px rgba(25,20,19,.18),
        inset 0 1px 0 rgba(255,255,255,.6);

    transform: translateY(28px);

    opacity: 0;

    transition:
        transform .55s cubic-bezier(.2,.75,.2,1),
        opacity .45s ease;
}

.bag-category {
    display: block;

    margin-bottom: 7px;

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 2px;

    color: rgba(255,255,255,.78);
}

.bag-info h3 {
    margin: 0 0 8px;

    font-family: 'DM Serif Display', serif;

    font-size: 26px;
    line-height: 1;

    font-weight: 400;

    color: white;
}

.bag-info p {
    margin: 0;

    font-size: 11.5px;
    line-height: 1.55;

    color: rgba(255,255,255,.92);
}


/* =========================================================
   HOVER
   ========================================================= */

.bag-card:hover .bag-image img {
    transform: scale(1.06);

    filter: saturate(1.08);
}

.bag-card:hover .bag-overlay {
    opacity: 1;
}

.bag-card:hover .bag-info {
    transform: translateY(0);

    opacity: 1;
}

.bag-card:hover .bag-number {
    transform: scale(1.08);

    background: rgba(255,255,255,.48);
}


/* =========================================================
   CTA
   ========================================================= */

.collection-cta {
    width: 92%;
    max-width: 1450px;

    margin: 0 auto;

    padding: 10px 0 130px;

    position: relative;
}

.collection-cta::before,
.collection-cta::after {
    content: "";

    position: absolute;

    border-radius: 50%;

    filter: blur(90px);

    pointer-events: none;
}

.collection-cta::before {
    width: 450px;
    height: 450px;

    left: -80px;
    top: -100px;

    background: rgba(239,157,190,.30);
}

.collection-cta::after {
    width: 420px;
    height: 420px;

    right: -80px;
    bottom: -120px;

    background: rgba(151,169,239,.28);
}

.collection-cta-glass {
    position: relative;

    z-index: 2;

    min-height: 350px;

    padding: 60px 70px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 60px;

    border-radius: 42px;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,.42),
            rgba(255,255,255,.20)
        );

    border: 1px solid rgba(255,255,255,.72);

    backdrop-filter: blur(30px) saturate(160%);
    -webkit-backdrop-filter: blur(30px) saturate(160%);

    box-shadow:
        0 30px 90px rgba(60,48,43,.13),
        inset 0 1px 0 rgba(255,255,255,.9);
}

.collection-cta-glass .glass-label {
    margin-bottom: 18px;
}

.collection-cta-glass h2 {
    margin: 0;

    font-family: 'DM Serif Display', serif;

    font-size: clamp(45px, 5vw, 72px);
    line-height: .95;

    font-weight: 400;
    letter-spacing: -2px;

    color: #302724;
}

.collection-cta-glass h2 em {
    color: #a36f7e;
}

.collection-cta-glass p {
    max-width: 500px;

    margin-top: 20px;

    font-size: 14px;
    line-height: 1.75;

    color: #706762;
}


/* CTA BUTTON */

.glass-cta-button {
    flex-shrink: 0;

    min-height: 58px;

    padding: 0 26px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 15px;

    border-radius: 100px;

    background: rgba(48,39,36,.90);

    border: 1px solid rgba(255,255,255,.35);

    color: white;

    font-size: 12px;
    font-weight: 800;

    box-shadow:
        0 15px 35px rgba(40,32,29,.18);

    transition:
        transform .35s ease,
        box-shadow .35s ease;
}

.glass-cta-button span {
    font-size: 17px;

    transition: transform .35s ease;
}

.glass-cta-button:hover {
    transform: translateY(-4px);

    box-shadow:
        0 22px 45px rgba(40,32,29,.25);
}

.glass-cta-button:hover span {
    transform: translate(3px,-3px);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1100px) {

    .collection-hero {
        width: 90%;

        grid-template-columns: 1fr 180px;

        gap: 45px;

        padding-top: 135px;
    }

    .collection-count {
        width: 170px;
        height: 170px;
    }

    .collection-count strong {
        font-size: 60px;
    }

    .collection-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));

        gap: 22px;
    }

    .collection-cta-glass {
        padding: 50px;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .collection-hero {
        width: 90%;

        min-height: auto;

        padding: 125px 0 70px;

        display: block;
    }

    .collection-hero h1 {
        font-size: clamp(58px, 17vw, 82px);

        letter-spacing: -3px;
    }

    .collection-hero-content > p {
        margin-top: 25px;

        font-size: 14px;

        line-height: 1.7;
    }

    .collection-count {
        width: 135px;
        height: 135px;

        margin: 40px 0 0 auto;

        border-radius: 32px;
    }

    .collection-count strong {
        font-size: 48px;
    }

    .collection-count span {
        margin-top: 11px;

        font-size: 8px;
    }


    /* INTRO */

    .collection-section {
        width: 92%;

        padding: 35px 0 90px;
    }

    .collection-intro {
        margin-bottom: 50px;
    }

    .collection-intro h2 {
        font-size: clamp(43px, 13vw, 60px);
    }

    .collection-intro p {
        font-size: 13px;
        line-height: 1.7;
    }


    /* GRID */

    .collection-grid {
        grid-template-columns: 1fr;

        gap: 25px;
    }

    .bag-card,
    .bag-card-large,
    .bag-card-tall {
        grid-column: 1;

        margin-top: 0 !important;
    }

    .bag-image,
    .bag-card-large .bag-image,
    .bag-card-tall .bag-image {
        aspect-ratio: 4 / 5;

        border-radius: 26px;
    }


    /* PHONE: TEXT ALWAYS VISIBLE */

    .bag-overlay {
        opacity: .48;
    }

    .bag-info {
        left: 11px;
        right: 11px;
        bottom: 11px;

        padding: 18px;

        border-radius: 20px;

        transform: translateY(0);

        opacity: 1;
    }

    .bag-info h3 {
        font-size: 26px;
    }

    .bag-info p {
        font-size: 12px;
    }

    .bag-number {
        top: 14px;
        left: 14px;

        width: 38px;
        height: 38px;
    }


    /* CTA */

    .collection-cta {
        width: 92%;

        padding: 5px 0 80px;
    }

    .collection-cta-glass {
        min-height: auto;

        padding: 40px 25px;

        display: block;

        border-radius: 30px;
    }

    .collection-cta-glass h2 {
        font-size: clamp(42px, 13vw, 58px);
    }

    .collection-cta-glass p {
        font-size: 13px;
    }

    .glass-cta-button {
        width: 100%;

        margin-top: 28px;
    }


    /* FOOTER */

    .collection-footer {
        width: 92%;

        padding: 30px 0 35px;
    }

    .collection-footer-inner {
        grid-template-columns: 1fr;

        gap: 22px;

        text-align: center;
    }

    .collection-footer-brand {
        justify-content: center;
    }

    .collection-footer-nav {
        justify-content: center;

        flex-wrap: wrap;

        gap: 14px 25px;
    }

    .collection-footer-copy {
        justify-self: center;
    }
}


/* =========================================================
   SMALL PHONES
   ========================================================= */

@media (max-width: 430px) {

    .collection-hero {
        padding-top: 120px;
    }

    .collection-hero h1 {
        font-size: 56px;
    }

    .collection-count {
        width: 125px;
        height: 125px;
    }

    .collection-count strong {
        font-size: 44px;
    }

    .collection-section {
        width: 92%;
    }

    .bag-image,
    .bag-card-large .bag-image,
    .bag-card-tall .bag-image {
        border-radius: 23px;
    }

    .bag-info {
        padding: 16px;
    }

    .bag-info h3 {
        font-size: 24px;
    }

    .bag-info p {
        font-size: 11px;
    }

    .collection-cta-glass {
        padding: 34px 21px;
    }
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .bag-image img,
    .bag-info,
    .bag-overlay,
    .bag-number,
    .collection-count,
    .glass-cta-button,
    .glass-cta-button span {
        transition: none;
    }
}
@media (max-width: 900px) {
    .collection-hero {
        grid-template-columns: 1fr;
        gap: 45px;
        padding: 125px 0 70px;
        text-align: center;
    }

    .collection-hero-content {
        margin: 0 auto;
    }

    .collection-count {
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .collection-hero {
        width: 92%;
        padding-top: 110px;
    }

    .collection-hero-content h1 {
        font-size: clamp(52px, 15vw, 78px);
    }

    .collection-hero-content p {
        font-size: 15px;
        line-height: 1.7;
    }

    .collection-count {
        width: 170px;
        height: 170px;
    }
}

/* =========================
   COLLECTION PAGE LAYOUT
========================= */

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.collection-page {
    flex: 1;
}
/* =========================
CONTACTS PAGE
========================= */

.contacts-page {
flex: 1;
}

/* =========================
CONTACTS HERO
========================= */

.contacts-hero {
position: relative;

width: min(1400px, 90%);
min-height: 500px;

margin: 0 auto;
padding: 190px 0 80px;

display: flex;
align-items: center;
justify-content: center;

overflow: visible;

}

.contacts-hero-content {
position: relative;
z-index: 2;

width: 100%;
max-width: 850px;

text-align: center;

display: flex;
flex-direction: column;
align-items: center;

}

.contacts-hero h1 {
margin-top: 24px;

font-family: 'DM Serif Display', serif;

font-size: clamp(58px, 7vw, 105px);
line-height: .92;
font-weight: 400;
letter-spacing: -3px;

}

.contacts-hero h1 em {
display: block;

font-style: italic;

background: linear-gradient(
    90deg,
    #8d7772,
    #b99a9b,
    #7d6966
);

-webkit-background-clip: text;
background-clip: text;

color: transparent;

}

.contacts-hero p {
max-width: 570px;

margin-top: 30px;

font-size: 14px;
line-height: 1.9;

color: #817a75;

}

/* =========================
HERO GLOWS
========================= */

.contacts-hero-glow {
position: absolute;

border-radius: 50%;

filter: blur(80px);

pointer-events: none;

}

.contacts-glow-one {
width: 250px;
height: 250px;

top: 100px;
left: 4%;

background: rgba(222, 194, 194, .28);

}

.contacts-glow-two {
width: 280px;
height: 280px;

right: 5%;
bottom: 20px;

background: rgba(195, 207, 220, .22);

}

/* =========================
CONTACTS SECTION
========================= */

.contacts-section {
width: min(1400px, 90%);

margin: 0 auto;

padding: 30px 0 110px;

}

.contacts-layout {
display: grid;

grid-template-columns: minmax(380px, .9fr) minmax(450px, 1.1fr);

gap: clamp(50px, 7vw, 110px);

align-items: center;

}

/* =========================
PHOTO
========================= */

.contacts-photo-wrap {
position: relative;

width: 100%;
max-width: 560px;

margin: 0 auto;

}

.contacts-photo-glow {
position: absolute;

width: 75%;
height: 75%;

left: 12%;
top: 12%;

border-radius: 50%;

background: rgba(211, 185, 184, .28);

filter: blur(70px);

z-index: -1;

}

.contacts-photo {
position: relative;

width: 100%;

aspect-ratio: 4 / 5;

overflow: hidden;

border-radius: 42px;

background:
    linear-gradient(
        145deg,
        rgba(255,255,255,.58),
        rgba(241,225,226,.32)
    );

border: 1px solid rgba(255,255,255,.75);

box-shadow:
    0 30px 80px rgba(62,48,43,.15),
    inset 0 1px 0 rgba(255,255,255,.9);

}

.contacts-photo::after {
content: "";

position: absolute;

inset: 0;

background:
    linear-gradient(
        to bottom,
        rgba(20,15,18,0) 45%,
        rgba(20,15,18,.42) 100%
    );

pointer-events: none;

}

.contacts-photo img {
width: 100%;
height: 100%;

object-fit: cover;

transition: transform .8s cubic-bezier(.2,.75,.2,1);

}

.contacts-photo img {
transform: scale(1.035);
}

.contacts-photo-label {
position: absolute;

z-index: 3;

left: 24px;
right: 24px;
bottom: 24px;

display: flex;
align-items: flex-end;
justify-content: space-between;

color: white;

}

.contacts-photo-label span {
font-size: 12px;
font-weight: 800;

letter-spacing: 3px;

}

.contacts-photo-label small {
font-size: 8px;
font-weight: 700;

letter-spacing: 2px;

opacity: .8;

}

/* =========================
CONTACT INFORMATION
========================= */

.contacts-info {
width: 100%;
max-width: 620px;
}

.contacts-intro {
margin-bottom: 34px;
}

.contacts-number {
display: block;

margin-bottom: 18px;

font-size: 9px;
font-weight: 800;

letter-spacing: 2.5px;

color: #9a918b;

}

.contacts-intro h2 {
font-family: 'DM Serif Display', serif;

font-size: clamp(44px, 5vw, 68px);

line-height: .98;
font-weight: 400;

letter-spacing: -1.8px;

}

.contacts-intro h2 em {
display: block;

font-style: italic;

color: #a68d8b;

}

.contacts-intro p {
max-width: 500px;

margin-top: 24px;

font-size: 13px;
line-height: 1.85;

color: #817a75;

}

/* =========================
CONTACT CARD
========================= */

.contact-card {
position: relative;

width: 100%;

min-height: 100px;

padding: 18px 22px;

margin-bottom: 16px;

display: flex;
align-items: center;

gap: 20px;

border-radius: 26px;

background: rgba(255,255,255,.42);

border: 1px solid rgba(255,255,255,.7);

backdrop-filter: blur(22px) saturate(150%);
-webkit-backdrop-filter: blur(22px) saturate(150%);

box-shadow:
    0 18px 50px rgba(62,48,43,.08),
    inset 0 1px 0 rgba(255,255,255,.8);

transition:
    transform .35s ease,
    box-shadow .35s ease,
    background .35s ease;

}

.contact-card:hover {
    transform: translateY(-4px);

    background: rgba(255,255,255,.58);

    box-shadow:
        0 25px 60px rgba(62,48,43,.12),
        inset 0 1px 0 rgba(255,255,255,.9);
}

.contact-card-icon {
width: 58px;
height: 58px;

flex-shrink: 0;

display: flex;
align-items: center;
justify-content: center;

border-radius: 19px;

background: rgba(255,255,255,.62);

border: 1px solid rgba(255,255,255,.8);

box-shadow:
    inset 0 1px 0 rgba(255,255,255,.9);

}

.instagram-icon img {
    width: 27px;
    height: 27px;
    object-fit: contain;
}

.contact-card-content {
display: flex;
flex-direction: column;

gap: 6px;

}

.contact-card-content span,
.contact-small-label {
font-size: 8px;
font-weight: 800;

letter-spacing: 2px;

color: #9a918b;

}

.contact-card-content strong {
font-size: 16px;
font-weight: 700;

color: #2c2927;

}

.contact-card-arrow {
margin-left: auto;

width: 42px;
height: 42px;

display: flex;
align-items: center;
justify-content: center;

border-radius: 50%;

background: #22211f;
color: white;

font-size: 16px;

transition: transform .3s ease;

}

.contact-card .contact-card-arrow {
transform: rotate(8deg) translate(2px, -2px);
}

/* =========================
PHONE CARD
========================= */

.contact-phone-card {
width: 100%;

padding: 26px 24px 22px;

border-radius: 28px;

background: rgba(255,255,255,.34);

border: 1px solid rgba(255,255,255,.68);

backdrop-filter: blur(24px) saturate(150%);
-webkit-backdrop-filter: blur(24px) saturate(150%);

box-shadow:
    0 18px 50px rgba(62,48,43,.08),
    inset 0 1px 0 rgba(255,255,255,.8);

}

.contact-phone-top {
display: flex;
align-items: center;
justify-content: space-between;

padding-bottom: 22px;

border-bottom: 1px solid rgba(50,40,40,.08);

}

.contact-phone-top > div {
display: flex;
flex-direction: column;

gap: 8px;

}

.contact-phone {
font-family: 'DM Serif Display', serif;

font-size: clamp(25px, 3vw, 38px);

color: #8d7772;

letter-spacing: -.5px;

transition: color .3s ease;

}



.phone-icon {
width: 52px;
height: 52px;

display: flex;
align-items: center;
justify-content: center;

border-radius: 18px;

background: rgba(255,255,255,.6);

border: 1px solid rgba(255,255,255,.8);

font-size: 20px;

}

/* =========================
MESSENGERS
========================= */

.messengers {
display: grid;

grid-template-columns: repeat(3, 1fr);

gap: 10px;

margin-top: 18px;

}

.messenger {
min-height: 58px;

padding: 9px 11px;

display: flex;
align-items: center;

gap: 9px;

border-radius: 17px;

background: rgba(255,255,255,.42);

border: 1px solid rgba(255,255,255,.65);

font-size: 10px;
font-weight: 700;

color: #69625e;

transition:
    transform .3s ease,
    background .3s ease;

}

.messenger:hover {
    transform: translateY(-3px);

    background: rgba(255,255,255,.65);
}

.messenger-icon {
    width: 32px;
    height: 32px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 11px;

    background: rgba(255,255,255,.65);

    border: 1px solid rgba(255,255,255,.8);
}

.messenger-icon img {
    width: 17px;
    height: 17px;

    object-fit: contain;
}

/* =========================
CONTACT NOTE
========================= */

.contacts-note {
display: flex;
align-items: center;

gap: 12px;

margin-top: 22px;

}

.contacts-note > span {
font-size: 15px;

color: #aa9290;

}

.contacts-note p {
font-size: 10px;
line-height: 1.6;

color: #99908a;

}

/* =========================
FINAL CTA
========================= */

.contacts-final {
width: min(1400px, 90%);

margin: 0 auto;

padding: 10px 0 100px;

}

.contacts-final-glass {
position: relative;

padding: 55px 60px;

display: flex;
align-items: center;
justify-content: space-between;

gap: 40px;

overflow: hidden;

border-radius: 38px;

background:
    linear-gradient(
        135deg,
        rgba(255,255,255,.55),
        rgba(247,232,233,.38)
    );

border: 1px solid rgba(255,255,255,.75);

backdrop-filter: blur(25px) saturate(160%);
-webkit-backdrop-filter: blur(25px) saturate(160%);

box-shadow:
    0 25px 70px rgba(62,48,43,.10),
    inset 0 1px 0 rgba(255,255,255,.9);

}

.contacts-final-glass::before {
content: "";

position: absolute;

width: 250px;
height: 250px;

right: -70px;
top: -100px;

border-radius: 50%;

background: rgba(222,194,194,.25);

filter: blur(35px);

pointer-events: none;

}

.contacts-final-glass > div {
position: relative;
z-index: 1;
}

.contacts-final-glass h2 {
margin-top: 18px;

font-family: 'DM Serif Display', serif;

font-size: clamp(38px, 4vw, 60px);

line-height: 1;

font-weight: 400;

letter-spacing: -1.5px;

}

.contacts-final-glass h2 em {
font-style: italic;

color: #9d8583;

}

.glass-cta-button {
position: relative;
z-index: 1;

flex-shrink: 0;

min-height: 56px;

padding: 0 25px;

display: flex;
align-items: center;
justify-content: center;

gap: 18px;

border-radius: 100px;

background: #22211f;

color: white;

font-size: 11px;
font-weight: 800;

transition:
    transform .3s ease,
    box-shadow .3s ease;

}

.glass-cta-button span {
font-size: 17px;
}

.glass-cta-button:hover {
    transform: translateY(-3px);

    box-shadow:
        0 15px 35px rgba(30,25,23,.18);
}

/* =========================
CONTACTS MOBILE
========================= */

@media (max-width: 1000px) {

.contacts-layout {
    grid-template-columns: 1fr;

    gap: 60px;
}

.contacts-photo-wrap {
    max-width: 620px;
}

.contacts-info {
    max-width: 700px;
    margin: 0 auto;
}

}

@media (max-width: 700px) {

.contacts-hero {
    min-height: 430px;

    padding: 160px 0 60px;
}

.contacts-hero h1 {
    font-size: clamp(50px, 15vw, 76px);

    letter-spacing: -2px;
}

.contacts-hero p {
    max-width: 90%;

    font-size: 12px;

    line-height: 1.8;
}

.contacts-section {
    padding-bottom: 70px;
}

.contacts-layout {
    gap: 45px;
}

.contacts-photo {
    border-radius: 30px;
}

.contacts-photo-label {
    left: 18px;
    right: 18px;
    bottom: 18px;
}

.contacts-photo-label span {
    font-size: 10px;
    letter-spacing: 2px;
}

.contacts-photo-label small {
    font-size: 7px;
}

.contacts-intro h2 {
    font-size: 48px;
}

.contact-card {
    min-height: 88px;

    padding: 15px 16px;

    border-radius: 22px;
}

.contact-card-icon {
    width: 50px;
    height: 50px;

    border-radius: 16px;
}

.contact-card-content strong {
    font-size: 14px;
}

.contact-card-arrow {
    width: 38px;
    height: 38px;
}

.contact-phone-card {
    padding: 21px 17px 18px;

    border-radius: 24px;
}

.contact-phone {
    font-size: 25px;
}

.phone-icon {
    width: 45px;
    height: 45px;

    border-radius: 15px;
}

.messengers {
    grid-template-columns: 1fr;

    gap: 8px;
}

.messenger {
    min-height: 50px;

    border-radius: 15px;
}

.contacts-final {
    padding-bottom: 70px;
}

.contacts-final-glass {
    padding: 35px 25px;

    flex-direction: column;

    align-items: flex-start;

    border-radius: 28px;
}

.contacts-final-glass h2 {
    font-size: 42px;
}

.glass-cta-button {
    width: 100%;
}

}

@media (max-width: 420px) {

.contacts-hero {
    padding-top: 145px;
}

.contacts-intro h2 {
    font-size: 43px;
}

.contact-phone {
    font-size: 22px;
}

.contacts-photo {
    border-radius: 26px;
}

}
.logo-image {
    width: 38px;
    height: 38px;

    border-radius: 50%;

    object-fit: cover;

    display: block;

    flex-shrink: 0;
}
.mobile-menu {
    display: none;
}

@media (max-width: 700px) {

    .header-glass {
        position: relative;
        z-index: 1000;
    }

    .mobile-menu {
        position: absolute;

        top: calc(100% + 10px);
        left: 0;
        right: 0;

        z-index: 1001;

        padding: 12px;

        display: none;
        flex-direction: column;
        gap: 6px;

        border-radius: 26px;

        background: rgba(255,255,255,.78);
        border: 1px solid rgba(255,255,255,.85);

        backdrop-filter: blur(28px) saturate(170%);
        -webkit-backdrop-filter: blur(28px) saturate(170%);

        box-shadow:
            0 20px 55px rgba(50,40,40,.16),
            inset 0 1px 0 rgba(255,255,255,.9);
    }

    .mobile-menu-open .mobile-menu {
        display: flex;
    }

    .mobile-menu a {
        position: relative;
        z-index: 2;

        display: flex;
        align-items: center;

        width: 100%;
        min-height: 48px;

        padding: 13px 17px;

        border-radius: 15px;

        font-size: 13px;
        font-weight: 700;

        color: #302d2a;

        background: rgba(255,255,255,.35);

        transition: background .25s ease;
    }

    .mobile-menu a:hover {
        background: rgba(255,255,255,.72);
    }
}
@media (max-width: 700px) {
    .mobile-menu a::after {
        content: none !important;
        display: none !important;
    }
}
/* MOBILE WIDTH FIX */

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

@media (max-width: 700px) {

    .collection-page,
    .contacts-page {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    .collection-hero,
    .collection-section,
    .collection-cta,
    .contacts-hero,
    .contacts-section,
    .contacts-final {
        max-width: 100%;
        overflow-x: hidden;
    }

    .collection-grid,
    .contacts-layout {
        max-width: 100%;
    }
}
/* Исправление мобильного CTA коллекции */

@media (max-width: 700px) {
    .collection-cta {
        width: 100%;
        max-width: 100%;
        padding-left: 4%;
        padding-right: 4%;
        box-sizing: border-box;
    }

    .collection-cta-glass {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow: hidden;
    }

    .collection-cta-glass h2,
    .collection-cta-glass p {
        max-width: 100%;
        overflow-wrap: anywhere;
        word-break: normal;
    }

    .collection-cta-glass .glass-cta-button {
        max-width: 100%;
        box-sizing: border-box;
        white-space: normal;
    }
}
/* Исправление мобильных карточек контактов */

@media (max-width: 700px) {

    .contact-card,
    .contact-phone-card,
    .messenger {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        box-sizing: border-box;
    }

    .contact-card-content,
    .contact-phone-card,
    .messenger {
        min-width: 0;
    }

    .contact-card-content strong,
    .contact-phone,
    .messenger strong {
        max-width: 100%;
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .contact-card-arrow {
        flex-shrink: 0;
    }

    .messengers {
        width: 100%;
        max-width: 100%;
    }
}
/* Исправление нижнего CTA на мобильных */

@media (max-width: 700px) {
    .contacts-final {
        width: 100%;
        max-width: 100%;
        padding-left: 4%;
        padding-right: 4%;
        box-sizing: border-box;
    }

    .contacts-final-glass {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow: hidden;
    }

    .contacts-final-glass h2,
    .contacts-final-glass p {
        max-width: 100%;
        overflow-wrap: anywhere;
        word-break: normal;
    }

    .contacts-final-glass .glass-cta-button {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
}
.logo span {
    font-family: 'DM Serif Display', serif;
    font-size: 27px;
    font-weight: 400;
    letter-spacing: -0.8px;
}
.logo span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 600;
    letter-spacing: -0.3px;
}