@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,500;1,600&display=swap');

:root {
    --black: #171515;
    --soft-black: #252121;
    --ivory: #f8f3ea;
    --cream: #fffaf2;
    --nude: #ead8c9;
    --beige: #d9c1ad;
    --rose-gold: #b88672;
    --gold: #c8a878;
    --brown: #604c43;
    --muted: #786e69;
    --white: #ffffff;
    --border: #ded2c7;
    --shadow: 0 20px 55px rgba(30, 22, 18, 0.12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "DM Sans", sans-serif;
    background: var(--ivory);
    color: var(--black);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input,
select,
textarea {
    font-family: inherit;
}

.container {
    width: min(1160px, 92%);
    margin: 0 auto;
}

/* HEADER */

.header {
    background: rgba(248, 243, 234, 0.97);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(12px);
}

.nav {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-icon {
    width: 47px;
    height: 47px;
    border: 1px solid var(--gold);
    display: grid;
    place-items: center;
    font-family: "Playfair Display", serif;
    font-size: 16px;
    font-weight: 700;
}

.brand-text strong {
    display: block;
    font-family: "Playfair Display", serif;
    font-size: 23px;
    line-height: 1.1;
}

.brand-text small {
    display: block;
    font-size: 7px;
    letter-spacing: 2px;
    color: var(--rose-gold);
    margin-top: 4px;
}

.nav nav {
    display: flex;
}

nav {
    display: flex;
    align-items: center;
    gap: 25px;
}

nav a {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .4px;
    transition: .3s;
}

nav a:hover {
    color: var(--rose-gold);
}

.nav-cta {
    background: var(--black);
    color: var(--white) !important;
    padding: 12px 18px;
}

.nav-cta:hover {
    background: var(--rose-gold);
}

/* HERO */

.hero {
    position: relative;
    min-height: 650px;
    background: var(--cream);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-pattern {
    position: absolute;
    width: 500px;
    height: 500px;
    right: -160px;
    top: -160px;
    border: 1px solid var(--nude);
    border-radius: 50%;
    box-shadow:
        0 0 0 45px rgba(217,193,173,.13),
        0 0 0 90px rgba(217,193,173,.10),
        0 0 0 135px rgba(217,193,173,.07);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.overline {
    color: var(--rose-gold);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
}

.hero h1 {
    font-family: "Playfair Display", serif;
    font-size: clamp(52px, 6vw, 78px);
    line-height: .98;
    font-weight: 600;
    margin: 20px 0;
    max-width: 650px;
}

.hero h1 span,
.about-content h2 span,
.section-heading h2 span,
.feature-heading h2 span,
.contact-info h2 span,
.contact-page-info h2 span,
.form-card h2 span,
.page-hero h1 span {
    display: block;
    color: var(--rose-gold);
    font-style: italic;
}

.hero-description {
    max-width: 560px;
    color: var(--muted);
    font-size: 14px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 32px;
}

.btn {
    display: inline-block;
    padding: 14px 23px;
    border: 1px solid transparent;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    font-size: 10px;
    font-weight: 700;
    transition: .3s;
}

.btn-dark {
    background: var(--black);
    color: var(--white);
}

.btn-dark:hover {
    background: var(--rose-gold);
    transform: translateY(-2px);
}

.btn-line {
    border-color: var(--black);
}

.btn-line:hover {
    background: var(--black);
    color: var(--white);
}

/* HERO ART */

.hero-art {
    min-height: 500px;
    position: relative;
    display: grid;
    place-items: center;
}

.art-circle {
    position: absolute;
    border-radius: 50%;
}

.circle-one {
    width: 370px;
    height: 370px;
    background: var(--nude);
    right: 45px;
    top: 60px;
}

.circle-two {
    width: 270px;
    height: 270px;
    border: 1px solid var(--gold);
    right: 95px;
    top: 110px;
}

.cosmetic-card {
    position: relative;
    z-index: 3;
    width: 270px;
    height: 355px;
    background: var(--black);
    color: var(--white);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 35px 20px;
}

.cosmetic-card::before {
    content: "";
    position: absolute;
    inset: 13px;
    border: 1px solid rgba(200,168,120,.7);
}

.cosmetic-top,
.cosmetic-bottom {
    position: relative;
    z-index: 2;
    font-size: 8px;
    letter-spacing: 3px;
}

.cosmetic-top {
    color: var(--gold);
}

.cosmetic-letter {
    position: relative;
    z-index: 2;
    font-family: "Playfair Display", serif;
    font-size: 150px;
    line-height: 1;
    font-style: italic;
}

.cosmetic-bottom {
    color: var(--nude);
}

.floating-word {
    position: absolute;
    font-family: "Playfair Display", serif;
    font-style: italic;
    color: var(--rose-gold);
    z-index: 4;
}

.word-one {
    top: 65px;
    right: 25px;
    font-size: 18px;
    transform: rotate(-12deg);
}

.word-two {
    bottom: 70px;
    left: 25px;
    font-size: 17px;
    transform: rotate(-10deg);
}

/* INTRO */

.intro {
    background: var(--black);
    color: var(--white);
}

.intro-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.intro-grid > div {
    padding: 34px;
    border-right: 1px solid rgba(255,255,255,.15);
}

.intro-grid > div:last-child {
    border-right: 0;
}

.number {
    color: var(--gold);
    font-size: 10px;
    letter-spacing: 2px;
}

.intro h3 {
    font-family: "Playfair Display", serif;
    font-size: 25px;
    font-weight: 500;
    margin: 5px 0;
}

.intro p {
    color: #c8bfba;
    font-size: 11px;
}

/* GENERAL SECTION */

.section {
    padding: 100px 0;
}

/* ABOUT */

.about {
    background: var(--ivory);
}

.about-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 100px;
    align-items: center;
}

.about-visual {
    height: 460px;
    background: var(--nude);
    position: relative;
    overflow: hidden;
}

.about-visual::before {
    content: "";
    width: 330px;
    height: 330px;
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(96,76,67,.25);
    top: 65px;
    left: 80px;
}

.about-box {
    position: absolute;
    width: 190px;
    height: 250px;
    background: var(--black);
    color: var(--white);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: grid;
    place-items: center;
    align-content: center;
    box-shadow: var(--shadow);
}

.about-box strong {
    font-family: "Playfair Display", serif;
    font-size: 100px;
    font-style: italic;
    color: var(--gold);
    line-height: 1;
}

.about-box span {
    font-size: 8px;
    letter-spacing: 2px;
}

.vertical-text {
    position: absolute;
    right: 15px;
    top: 20px;
    writing-mode: vertical-rl;
    letter-spacing: 3px;
    font-size: 9px;
    color: var(--brown);
}

.about-content h2,
.section-heading h2,
.feature-heading h2,
.contact-info h2,
.contact-page-info h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(42px, 5vw, 60px);
    line-height: 1.02;
    font-weight: 600;
    margin: 15px 0 25px;
}

.about-content > p:not(.overline) {
    color: var(--muted);
    font-size: 13px;
    margin-bottom: 18px;
}

.mini-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.mini-features div {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 10px;
    font-weight: 700;
}

.mini-features b {
    color: var(--rose-gold);
}

/* COLLECTIONS */

.collections {
    background: var(--cream);
}

.section-heading {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 55px;
}

.section-heading h2 {
    margin-bottom: 15px;
}

.section-heading > p:last-child {
    color: var(--muted);
    font-size: 13px;
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.collection-card {
    background: var(--white);
    min-height: 270px;
    padding: 32px;
    border: 1px solid var(--border);
    position: relative;
    transition: .3s;
}

.collection-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: var(--gold);
}

.collection-card > span {
    color: var(--gold);
    font-family: "Playfair Display", serif;
    font-size: 22px;
}

.collection-card h3 {
    font-family: "Playfair Display", serif;
    font-size: 28px;
    font-weight: 600;
    margin: 30px 0 10px;
}

.collection-card p {
    color: var(--muted);
    font-size: 11px;
}

.collection-card a {
    display: inline-block;
    margin-top: 22px;
    font-size: 10px;
    font-weight: 700;
    color: var(--rose-gold);
}

/* FEATURES */

.feature-section {
    background: var(--nude);
    padding: 100px 0;
}

.feature-heading {
    max-width: 650px;
    margin-bottom: 45px;
}

.feature-list {
    border-top: 1px solid rgba(96,76,67,.3);
}

.feature-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 25px;
    padding: 30px 0;
    border-bottom: 1px solid rgba(96,76,67,.3);
}

.feature-item > strong {
    color: var(--rose-gold);
    font-family: "Playfair Display", serif;
    font-size: 25px;
}

.feature-item h3 {
    font-family: "Playfair Display", serif;
    font-size: 29px;
    margin-bottom: 4px;
}

.feature-item p {
    color: var(--brown);
    font-size: 12px;
    max-width: 600px;
}

/* EDITORIAL */

.editorial {
    padding: 110px 0;
    background:
        radial-gradient(circle at 80% 50%, rgba(200,168,120,.16), transparent 25%),
        var(--black);
    color: var(--white);
    text-align: center;
}

.editorial-content > p:first-child {
    color: var(--gold);
    font-size: 9px;
    letter-spacing: 4px;
}

.editorial h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(55px, 7vw, 90px);
    line-height: .9;
    margin: 25px 0;
}

.editorial h2 span {
    color: var(--gold);
    font-style: italic;
}

.editorial-text {
    color: #c8bfba;
    font-size: 13px;
    margin-bottom: 30px;
}

.btn-light {
    background: var(--cream);
    color: var(--black);
}

.btn-light:hover {
    background: var(--gold);
}

/* HOME CONTACT */

.home-contact {
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 75px;
    align-items: start;
}

.contact-detail {
    padding: 17px 0;
    border-bottom: 1px solid var(--border);
}

.contact-detail small,
.large-detail small {
    color: var(--rose-gold);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
}

.contact-detail p {
    color: var(--muted);
    font-size: 12px;
    margin-top: 4px;
}

.contact-detail a:hover,
.large-detail a:hover {
    color: var(--rose-gold);
}

/* FORMS */

.form-card {
    background: var(--ivory);
    border: 1px solid var(--border);
    padding: 40px;
    box-shadow: var(--shadow);
}

.form-card h2 {
    font-family: "Playfair Display", serif;
    font-size: 40px;
    line-height: 1.05;
    margin: 12px 0 28px;
}

.form-note {
    color: var(--muted);
    font-size: 11px;
    margin-top: -15px;
    margin-bottom: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 17px;
}

.form-group label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    margin-bottom: 7px;
}

input,
select,
textarea {
    width: 100%;
    background: var(--white);
    border: 1px solid var(--border);
    color: var(--black);
    padding: 13px 14px;
    font-size: 12px;
    border-radius: 0;
    outline: none;
    transition: .25s;
}

textarea {
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--rose-gold);
    box-shadow: 0 0 0 3px rgba(184,134,114,.15);
}

.submit-btn {
    width: 100%;
    border: 0;
    cursor: pointer;
}

/* PAGE HERO */

.page-hero {
    background: var(--nude);
    padding: 100px 0;
}

.page-hero h1 {
    font-family: "Playfair Display", serif;
    font-size: clamp(52px, 6vw, 76px);
    line-height: 1;
    margin: 15px 0;
}

.page-hero > .container > p:last-child {
    color: var(--brown);
    font-size: 13px;
    max-width: 600px;
}

/* CONTACT PAGE */

.contact-page {
    background: var(--white);
}

.contact-page-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 80px;
    align-items: start;
}

.contact-page-info h2 {
    margin-bottom: 40px;
}

.large-detail {
    display: grid;
    grid-template-columns: 45px 1fr;
    gap: 15px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}

.large-detail > span {
    font-family: "Playfair Display", serif;
    color: var(--gold);
    font-size: 21px;
}

.large-detail p {
    color: var(--muted);
    font-size: 12px;
    margin-top: 4px;
}

/* LEGAL */

.legal {
    background: var(--white);
}

.legal-content {
    max-width: 900px;
}

.last-updated {
    color: var(--rose-gold);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 35px;
}

.legal-content h2 {
    font-family: "Playfair Display", serif;
    font-size: 29px;
    margin: 32px 0 8px;
}

.legal-content p {
    color: var(--muted);
    font-size: 13px;
}

.legal-content a {
    color: var(--rose-gold);
    font-weight: 600;
}

/* FOOTER */

.footer {
    background: var(--soft-black);
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr .8fr .9fr 1.1fr;
    gap: 50px;
    padding: 70px 0;
}

.footer-brand {
    color: var(--white);
}

.footer-about > p {
    max-width: 330px;
    color: #bbb2ad;
    font-size: 11px;
    margin-top: 20px;
}

.footer-column h3 {
    color: var(--gold);
    font-size: 10px;
    letter-spacing: 2px;
    margin-bottom: 18px;
}

.footer-column a,
.footer-column p {
    display: block;
    color: #bbb2ad;
    font-size: 10px;
    margin-bottom: 9px;
}

.footer-column a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
}

.footer-bottom .container {
    min-height: 65px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: #9e9692;
    font-size: 10px;
}

/* TABLET */

@media (max-width: 950px) {

    .nav {
        flex-direction: column;
        padding: 18px 0;
    }

    nav {
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px 18px;
    }

    .hero {
        padding: 80px 0;
    }

    .hero-grid,
    .about-grid,
    .contact-grid,
    .contact-page-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .hero-art {
        max-width: 560px;
        width: 100%;
        margin: auto;
    }

    .collection-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* MOBILE */

@media (max-width: 650px) {

    .container {
        width: 92%;
    }

    .header {
        position: relative;
    }

    .nav {
        gap: 15px;
    }

    .brand-text strong {
        font-size: 21px;
    }

    nav {
        gap: 9px 12px;
    }

    nav a {
        font-size: 9px;
    }

    .nav-cta {
        padding: 9px 12px;
    }

    .hero {
        min-height: auto;
        padding: 65px 0;
    }

    .hero h1 {
        font-size: 52px;
    }

    .hero-art {
        min-height: 400px;
    }

    .circle-one {
        width: 290px;
        height: 290px;
        right: 25px;
        top: 55px;
    }

    .circle-two {
        width: 230px;
        height: 230px;
        right: 55px;
        top: 85px;
    }

    .cosmetic-card {
        width: 215px;
        height: 300px;
    }

    .cosmetic-letter {
        font-size: 115px;
    }

    .intro-grid,
    .collection-grid,
    .footer-grid,
    .form-row {
        grid-template-columns: 1fr;
    }

    .intro-grid > div {
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,.15);
    }

    .intro-grid > div:last-child {
        border-bottom: 0;
    }

    .section {
        padding: 70px 0;
    }

    .about-visual {
        height: 380px;
    }

    .about-visual::before {
        width: 260px;
        height: 260px;
        left: 50%;
        transform: translateX(-50%);
    }

    .collection-card {
        min-height: 230px;
    }

    .feature-section {
        padding: 70px 0;
    }

    .feature-item {
        grid-template-columns: 55px 1fr;
        gap: 10px;
    }

    .editorial {
        padding: 80px 0;
    }

    .form-card {
        padding: 25px;
    }

    .form-card h2 {
        font-size: 35px;
    }

    .page-hero {
        padding: 70px 0;
    }

    .page-hero h1 {
        font-size: 52px;
    }

    .footer-bottom .container {
        min-height: 75px;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 4px;
    }
}