@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600&family=Playfair+Display:ital,wght@0,500;0,600;1,500;1,600&display=swap');

:root {
    --rose: #dcada5;
    --rose-deep: #bd837a;
    --ink: #211d1b;
    --paper: #f8f5f2;
    --cream: #eee7e0;
    --muted: #776e69;
    --serif: 'Playfair Display', Georgia, serif;
    --sans: 'DM Sans', Arial, sans-serif;
    --container: min(1200px, calc(100% - 64px))
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: 'DM Sans', Arial, sans-serif;
    font-size: 15px;
    line-height: 1.65
}

.container {
    width: var(--container);
    margin: auto
}

.skip-link {
    position: absolute;
    left: -999px;
    top: 0;
    z-index: 99;
    background: #fff;
    color: #000;
    padding: 10px 16px
}

.skip-link:focus {
    left: 10px
}

a {
    color: inherit;
    text-decoration: none
}

img {
    display: block;
    max-width: 100%
}

.announcement {
    height: 35px;
    background: var(--ink);
    color: #e9ded8;
    display: grid;
    place-items: center;
    font-size: 10px;
    letter-spacing: .12em;
    text-transform: uppercase
}

.announcement p {
    margin: 0
}

.announcement span {
    display: inline-block;
    width: 4px;
    height: 4px;
    margin: 0 13px 2px;
    background: var(--rose);
    border-radius: 50%
}

.site-header {
    height: 90px;
    background: var(--paper);
    position: relative;
    z-index: 10;
    border-bottom: 1px solid rgba(33, 29, 27, .08)
}

.header-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px
}

.brand img {
    width: 54px;
    height: 54px;
    object-fit: contain
}

.brand-name, .footer-brand {
    font-size: 16px;
    letter-spacing: .17em;
    font-weight: 600
}

.brand-name em, .footer-brand em {
    font-style: normal;
    font-weight: 400;
    letter-spacing: .08em
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: 30px;
    font-size: 12px;
    letter-spacing: .07em
}

.primary-nav > a:not(.nav-cta) {
    position: relative
}

.primary-nav > a:not(.nav-cta):after {
    content: '';
    position: absolute;
    height: 1px;
    background: var(--ink);
    left: 0;
    bottom: -5px;
    width: 0;
    transition: width .25s
}

.primary-nav > a:not(.nav-cta):hover:after {
    width: 100%
}

.nav-cta {
    background: var(--ink);
    color: white;
    padding: 12px 16px;
    transition: background .25s
}

.nav-cta:hover {
    background: var(--rose-deep)
}

.nav-cta b {
    margin-left: 5px;
    color: var(--rose)
}

.menu-toggle {
    display: none;
    border: 0;
    background: none;
    width: 38px;
    height: 34px;
    cursor: pointer
}

.menu-toggle i {
    display: block;
    background: var(--ink);
    height: 1px;
    width: 25px;
    margin: 7px auto;
    transition: .25s
}

.section {
    padding: 118px 0
}

.eyebrow {
    margin: 0 0 18px;
    text-transform: uppercase;
    letter-spacing: .18em;
    font-size: 10px;
    font-weight: 600;
    color: var(--rose-deep)
}

.eyebrow.light {
    color: #f3cfca
}

.hero {
    min-height: calc(100vh - 125px);
    height: 780px;
    position: relative;
    overflow: hidden;
    color: white;
    background: #77655e
}

.hero-image {
    position: absolute;
    inset: 0;
    background-image: url('../images/hero.webp');
    background-size: cover;
    background-position: center;
    filter: grayscale(25%);
    transform: scale(1.01)
}

.hero-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(20, 15, 13, .72) 0%, rgba(20, 15, 13, .43) 43%, rgba(20, 15, 13, .12) 75%), linear-gradient(0deg, rgba(20, 15, 13, .32), transparent 45%)
}

.hero-content {
    position: relative;
    padding-top: clamp(130px, 20vh, 210px)
}

h1, h2, h3, p {
    margin-top: 0
}

h1, h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 500;
    letter-spacing: -.04em;
    line-height: 1.08
}

h1 {
    font-size: clamp(54px, 7vw, 100px);
    margin-bottom: 25px
}

h1 i, h2 i {
    font-weight: 500;
    color: var(--rose);
    white-space: nowrap
}

.hero-copy {
    max-width: 440px;
    font-size: 16px;
    line-height: 1.7;
    color: #f4efed
}

.hero-actions {
    margin-top: 36px;
    display: flex;
    align-items: center;
    gap: 27px
}

.button {
    display: inline-flex;
    align-items: center;
    gap: 25px;
    padding: 14px 19px;
    text-transform: uppercase;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .12em;
    transition: .25s
}

.button span {
    font-size: 16px;
    font-weight: 400
}

.button-light {
    color: var(--ink);
    background: #fff
}

.button-light:hover {
    background: var(--rose);
    color: #fff
}

.button-dark {
    background: var(--ink);
    color: white
}

.button-dark:hover {
    background: var(--rose-deep)
}

.text-link {
    display: inline-flex;
    gap: 12px;
    align-items: center;
    text-transform: uppercase;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .13em;
    border-bottom: 1px solid currentColor;
    padding-bottom: 5px;
    transition: color .2s
}

.text-link:hover {
    color: var(--rose-deep)
}

.text-link span {
    font-size: 15px;
    line-height: 1
}

.text-link.light:hover {
    color: var(--rose)
}

.hero-scroll {
    position: absolute;
    right: max(32px, calc((100% - 1200px) / 2));
    bottom: 39px;
    text-transform: uppercase;
    font-size: 9px;
    letter-spacing: .16em;
    writing-mode: vertical-rl;
    display: flex;
    align-items: center;
    gap: 11px
}

.hero-scroll span {
    display: block;
    width: 1px;
    height: 42px;
    background: #fff
}

.intro {
    padding-bottom: 98px
}

.intro-grid {
    display: grid;
    grid-template-columns:1.2fr .8fr;
    gap: 80px;
    align-items: end
}

.intro h2, .section-heading h2, .store h2, .contact h2 {
    font-size: clamp(38px, 4.5vw, 64px);
    margin: 0
}

.lead {
    font-size: 17px;
    line-height: 1.8;
    margin: 0 0 24px;
    color: #524a46
}

.values {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 30px;
    margin-top: 105px;
    padding-top: 26px;
    border-top: 1px solid #d9d1cb
}

.values strong {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 25px;
    font-weight: 500;
    color: var(--rose-deep)
}

.values h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 21px;
    font-weight: 500;
    margin: 9px 0 3px
}

.values p {
    font-size: 13px;
    color: var(--muted);
    max-width: 220px
}

.collection {
    background: var(--cream)
}

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 48px
}

.collection-grid {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 16px
}

.collection-card {
    height: 500px;
    position: relative;
    padding: 28px;
    color: white;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background-size: cover;
    background-position: center;
    isolation: isolate
}

.collection-card:before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(20, 15, 13, .7), rgba(20, 15, 13, .03) 65%);
    z-index: -1;
    transition: .35s
}

.collection-card:hover:before {
    background: linear-gradient(0deg, rgba(20, 15, 13, .8), rgba(20, 15, 13, .22))
}

.collection-card:after {
    content: '';
    position: absolute;
    inset: -10px;
    background: inherit;
    z-index: -2;
    transition: transform .6s
}

.collection-card:hover:after {
    transform: scale(1.06)
}

.card-necklace {
    background-image: url('../images/collection-necklace.webp'), linear-gradient(135deg, #90786c, #3e332f)
}

.card-bracelet {
    background-image: url('../images/collection-bracelet.webp'), linear-gradient(135deg, #bd9b88, #69544c)
}

.card-ring {
    background-image: url('../images/collection-ring.webp'), linear-gradient(135deg, #9f7772, #352d2b)
}

.collection-card p {
    position: absolute;
    top: 25px;
    left: 28px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .13em
}

.collection-card h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 35px;
    font-weight: 500;
    line-height: 1.1;
    margin: 0 0 15px
}

.collection-card span {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .15em
}

.mobile-link {
    display: none
}

.store {
    background: #fdfcfa
}

.store-grid {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: clamp(55px, 9vw, 140px);
    align-items: center
}

.store-photo {
    position: relative
}

.store-photo img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    filter: saturate(.83)
}

.photo-label {
    position: absolute;
    bottom: -20px;
    right: -18px;
    background: var(--rose);
    color: white;
    padding: 18px 23px;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 23px;
    line-height: 1
}

.photo-label small {
    font-family: 'DM Sans', Arial, sans-serif;
    font-size: 9px;
    letter-spacing: .14em;
    text-transform: uppercase
}

.store-copy > p:not(.eyebrow) {
    color: var(--muted);
    margin: 22px 0 26px;
    max-width: 440px
}

.store-details {
    border-top: 1px solid #ddd4cf;
    border-bottom: 1px solid #ddd4cf;
    padding: 17px 0;
    margin: 0 0 27px;
    display: grid;
    grid-template-columns:1fr 1.1fr;
    gap: 20px
}

.store-details div {
    display: flex;
    flex-direction: column
}

.store-details span {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .15em;
    color: var(--rose-deep);
    margin-bottom: 4px
}

.store-details strong, .store-details a {
    font-size: 12px;
    line-height: 1.65;
    font-weight: 500
}

.store-details a:hover {
    text-decoration: underline
}

.assurance {
    background: var(--ink);
    color: #faf7f4;
    padding: 48px 0
}

.assurance-grid {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 35px
}

.assurance-grid > div {
    display: grid;
    grid-template-columns:35px 1fr;
    column-gap: 15px
}

.assurance-icon {
    grid-row: span 2;
    color: var(--rose);
    font-size: 25px
}

.assurance h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 20px;
    font-weight: 500;
    margin: 0
}

.assurance p {
    grid-column: 2;
    margin: 0;
    color: #c7bcb7;
    font-size: 12px
}

.contact {
    background: var(--rose);
    padding: 0
}

.contact-panel {
    padding: 110px 0 115px;
    text-align: center;
    color: #fff
}

.contact h2 {
    font-size: clamp(44px, 5vw, 71px)
}

.contact h2 i {
    color: var(--ink)
}

.contact-panel > p:not(.eyebrow) {
    margin: 20px auto 30px;
    max-width: 470px;
    color: #fffafa
}

.contact-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 28px
}

.contact .button-light {
    border: 1px solid white
}

.contact .button-light:hover {
    background: var(--ink);
    border-color: var(--ink)
}

footer {
    background: #171413;
    color: #eee8e5
}

.footer-top {
    padding: 54px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #403936
}

.footer-brand {
    font-size: 18px
}

.footer-links {
    display: flex;
    gap: 26px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .11em
}

.footer-links a:hover, .footer-shop:hover {
    color: var(--rose)
}

.footer-shop {
    font-size: 11px;
    color: var(--rose);
    text-transform: uppercase;
    letter-spacing: .11em
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding: 19px 0;
    color: #9f9692;
    font-size: 10px
}

.footer-bottom p {
    margin: 0
}

@media (max-width: 760px) {
    :root {
        --container: min(100% - 40px, 560px)
    }

    .announcement {
        font-size: 8px
    }

    .site-header {
        height: 73px
    }

    .brand img {
        width: 42px;
        height: 42px
    }

    .brand-name {
        font-size: 13px
    }

    .menu-toggle {
        display: block
    }

    .primary-nav {
        position: absolute;
        top: 73px;
        left: 0;
        right: 0;
        background: var(--paper);
        padding: 18px 20px 25px;
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        border-bottom: 1px solid #ddd4cf;
        transform: translateY(-120%);
        opacity: 0;
        pointer-events: none;
        transition: .25s
    }

    .primary-nav.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto
    }

    .menu-toggle.active i:first-child {
        transform: translateY(4px) rotate(45deg)
    }

    .menu-toggle.active i:last-child {
        transform: translateY(-4px) rotate(-45deg)
    }

    .hero {
        height: 690px;
        min-height: 0
    }

    .hero-image {
        background-position: 58% center
    }

    .hero-content {
        padding-top: 125px
    }

    .hero-copy {
        font-size: 14px
    }

    .hero-scroll {
        right: 20px;
        bottom: 25px
    }

    .hero-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px
    }

    .section {
        padding: 75px 0
    }

    .intro-grid, .store-grid {
        grid-template-columns:1fr;
        gap: 28px
    }

    .intro h2, .section-heading h2, .store h2 {
        font-size: 43px
    }

    .intro {
        padding-bottom: 70px
    }

    .values {
        margin-top: 60px;
        gap: 20px
    }

    .values p {
        font-size: 11px
    }

    .section-heading {
        margin-bottom: 30px
    }

    .desktop-only {
        display: none
    }

    .collection-grid {
        grid-template-columns:1fr;
        gap: 12px
    }

    .collection-card {
        height: 385px
    }

    .collection-card h3 {
        font-size: 32px
    }

    .mobile-link {
        display: block;
        margin-top: 28px
    }

    .store-grid {
        gap: 60px
    }

    .store-photo img {
        height: 390px
    }

    .photo-label {
        right: 0
    }

    .store-details {
        grid-template-columns:1fr;
        gap: 16px
    }

    .assurance {
        padding: 37px 0
    }

    .assurance-grid {
        grid-template-columns:1fr;
        gap: 26px
    }

    .contact-panel {
        padding: 77px 0
    }

    .contact-actions {
        flex-direction: column;
        gap: 21px
    }

    .footer-top {
        padding: 40px 0;
        align-items: center;
        flex-direction: column;
        gap: 27px
    }

    .footer-links {
        justify-content: center;
        width: 100%;
        flex-wrap: wrap;
        gap: 15px 20px
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        gap: 5px
    }

    .footer-bottom p {
        text-align: center
    }

    .hero-scroll {
        display: none
    }
}

@media (max-width: 390px) {
    .brand-name {
        font-size: 11px
    }

    .values {
        grid-template-columns:1fr
    }

    .values p {
        max-width: none
    }

    .hero h1 {
        font-size: 48px
    }

    .collection-card {
        height: 345px
    }
}
