:root {
    --ink: #1f1a16;
    --ink-soft: #6f655b;
    --paper: #fff9f1;
    --cream: #f3ebe1;
    --sand: #e5d6c4;
    --gold: #b4844c;
    --gold-deep: #93693c;
    --white: #ffffff;

    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --container-xl: 1360px;
    --transition-base: all 0.35s ease;
    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    overflow-x: clip;
}

body {
    background: radial-gradient(circle at 15% 0%, #f5ede3 0%, #fdf8f2 45%, #fff 100%);
    color: var(--ink);
    font-family: var(--font-sans);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
    object-fit: cover;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

ul {
    list-style: none;
}

.container-large {
    max-width: var(--container-xl);
    margin: 0 auto;
    padding: 0 2.5rem;
}

.serif {
    font-family: var(--font-serif);
    font-weight: 500;
    letter-spacing: 0.02em;
}

.grid-section {
    padding: 2.5rem 2.5rem 6rem;
}

.btn {
    display: inline-block;
    padding: 0.95rem 1.35rem;
    border: 1px solid currentColor;
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    transition: var(--transition-base);
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-white {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.72);
    background: rgba(15, 13, 11, 0.26);
    backdrop-filter: blur(4px);
}

.btn-white:hover {
    color: var(--ink);
    background: var(--white);
    border-color: var(--white);
}

.btn-primary {
    color: var(--white);
    border-color: var(--ink);
    background: linear-gradient(100deg, var(--ink) 0%, #3f372f 100%);
}

.btn-primary:hover {
    border-color: var(--gold);
    background: linear-gradient(100deg, var(--gold-deep) 0%, var(--gold) 100%);
}

.add-to-cart {
    width: 100%;
    margin-top: 0.4rem;
    padding: 1rem 0;
}

.underline-link {
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    border-bottom: 1px solid currentColor;
    padding-bottom: 0.35rem;
}

.underline-link:hover {
    color: var(--gold);
}

.underline-link.white {
    color: var(--white);
}

.announcement-bar {
    position: relative;
    z-index: 1010;
    background: linear-gradient(100deg, #efe2d2 0%, #e7d3bc 50%, #dfc7a9 100%);
    text-align: center;
    padding: 0.64rem;
    font-size: 0.66rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #3b3128;
}

.offer-strip {
    margin-top: 76px;
    background: linear-gradient(105deg, #f6e8d7 0%, #efdac2 46%, #e3c5a2 100%);
    color: #3a2f24;
    text-align: center;
    font-size: 0.67rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 0.58rem 1rem;
    border-top: 1px solid rgba(147, 105, 60, 0.2);
    border-bottom: 1px solid rgba(147, 105, 60, 0.2);
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-base);
}

body.has-announcement header {
    top: 36px;
}

header.scrolled,
header.solid,
body.menu-open header {
    top: 0;
    background: rgba(255, 253, 249, 0.93);
    border-bottom: 1px solid rgba(147, 105, 60, 0.2);
    backdrop-filter: blur(14px);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.2rem;
    height: 76px;
    padding: 0 2.5rem;
    max-width: var(--container-xl);
    margin: 0 auto;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    font-size: 0.92rem;
    letter-spacing: 0.2em;
    font-weight: 700;
}

.desktop-nav ul {
    display: flex;
    align-items: center;
    gap: 2rem;
    height: 76px;
}

.nav-link {
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 600;
}

.nav-link:hover {
    color: var(--gold-deep);
}

.has-mega-menu {
    position: relative;
}

.mega-menu {
    position: absolute;
    top: 76px;
    left: -5.2rem;
    width: min(760px, 78vw);
    padding: 2rem;
    border: 1px solid rgba(147, 105, 60, 0.2);
    background: rgba(255, 251, 246, 0.97);
    backdrop-filter: blur(8px);
    box-shadow: 0 25px 50px rgba(42, 32, 22, 0.15);
    display: grid;
    grid-template-columns: 1fr 1fr 220px;
    gap: 2rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: var(--transition-base);
}

.has-mega-menu:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-column h4 {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--ink-soft);
    margin-bottom: 1rem;
}

.mega-column a {
    display: block;
    margin-bottom: 0.8rem;
    font-size: 0.92rem;
}

.mega-column a:hover {
    color: var(--gold-deep);
}

.mega-image {
    position: relative;
}

.mega-image img {
    width: 100%;
    aspect-ratio: 4 / 5;
}

.mega-image-text {
    position: absolute;
    left: 0.8rem;
    bottom: 0.8rem;
    font-size: 0.65rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 0.45rem 0.7rem;
    color: var(--ink);
    background: rgba(255, 249, 240, 0.95);
}

.header-icons {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.icon-btn {
    width: 38px;
    height: 38px;
    border: 1px solid transparent;
    background: none;
    color: inherit;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 50%;
}

.icon-btn:hover {
    border-color: rgba(147, 105, 60, 0.35);
    background: rgba(255, 255, 255, 0.55);
}

.mobile-menu-btn {
    display: none;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(147, 105, 60, 0.35);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 14px;
    height: 1.3px;
    background: var(--ink);
    transition: var(--transition-base);
}

body.menu-open .mobile-menu-btn span:first-child {
    transform: translateY(2.8px) rotate(45deg);
}

body.menu-open .mobile-menu-btn span:last-child {
    transform: translateY(-2.8px) rotate(-45deg);
}

.hero.full-height {
    height: min(900px, 100vh);
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 0 2.5rem 4rem;
}

.seen-in {
    padding: 2.1rem 0 2.35rem;
    background: #f1f1f1;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.seen-in-title {
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.68rem;
    font-weight: 700;
    color: #30343b;
    margin-bottom: 1.65rem;
}

.logo-marquee {
    display: flex;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.logo-track {
    display: flex;
    align-items: center;
    gap: 3.6rem;
    flex-shrink: 0;
    padding-right: 3.6rem;
    min-width: 100%;
    animation: logoTicker 42s linear infinite;
}

.logo-wordmark {
    color: #575a5f;
    font-size: clamp(1.8rem, 2.5vw, 3rem);
    line-height: 1;
    text-align: center;
    opacity: 0.95;
    white-space: nowrap;
}

.logo-wordmark.tall {
    font-family: 'Arial Narrow', var(--font-sans);
    font-weight: 700;
    letter-spacing: -0.04em;
}

.logo-wordmark.serif {
    font-family: var(--font-serif);
    font-weight: 600;
    letter-spacing: -0.02em;
}

.logo-wordmark.bold {
    font-family: var(--font-sans);
    font-weight: 700;
    letter-spacing: -0.03em;
}

.logo-wordmark.narrow {
    font-family: 'Times New Roman', var(--font-serif);
    font-size: clamp(1.95rem, 2.2vw, 2.65rem);
    letter-spacing: -0.04em;
}

.logo-wordmark.badge {
    font-family: 'Times New Roman', var(--font-serif);
    background: #5e6268;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 88px;
    height: 88px;
    margin: 0 auto;
    border-radius: 2px;
    font-size: 2.25rem;
    font-style: italic;
}

@keyframes logoTicker {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-100% - 3.6rem));
    }
}

.hero-slider {
    position: absolute;
    inset: 0;
    z-index: -2;
    overflow: hidden;
}

.hero-slider::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(95deg, rgba(11, 10, 8, 0.76) 2%, rgba(13, 12, 9, 0.38) 35%, rgba(13, 12, 9, 0.2) 60%, rgba(13, 12, 9, 0.55) 100%);
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.9s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-img {
    width: 100%;
    height: 100%;
}

.hero-img-low {
    object-position: center 62%;
}

.hero-img-high {
    object-position: center 35%;
}

.hero-content.left-aligned {
    position: relative;
    z-index: 3;
    max-width: 460px;
}

.eyebrow {
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.68rem;
    margin-bottom: 1.1rem;
}

.hero-actions.vertical {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
    width: min(460px, 90vw);
}

.hero-actions.vertical .btn {
    width: 100%;
    text-align: center;
}

.slide-in {
    opacity: 0;
    transform: translateY(24px);
    transition: var(--transition-smooth);
}

.slide-in.reveal {
    opacity: 1;
    transform: translateY(0);
}

.hero-pagination {
    position: absolute;
    left: 50%;
    bottom: 2.1rem;
    transform: translateX(-50%);
    display: flex;
    gap: 0.7rem;
    z-index: 4;
}

.hero-pagination .dot {
    width: 26px;
    height: 2px;
    border: 0;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
}

.hero-pagination .dot.active {
    background: var(--white);
}

.gallery-section {
    padding-top: 3rem;
    padding-bottom: 2.2rem;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.asymmetrical-grid {
    display: grid;
    grid-template-columns: 1.45fr 1fr;
    gap: 1.4rem;
    height: clamp(340px, 46vh, 520px);
    position: relative;
    isolation: isolate;
}

.gallery-column {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 1.4rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 1px;
    background: var(--cream);
    isolation: isolate;
}

.gallery-item img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(0deg, rgba(19, 15, 10, 0.62) 4%, rgba(19, 15, 10, 0.08) 45%, rgba(19, 15, 10, 0) 65%);
    pointer-events: none;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.overlay-text {
    position: absolute;
    left: 1.4rem;
    bottom: 0.95rem;
    z-index: 2;
    color: var(--white);
    font-family: var(--font-serif);
    font-size: clamp(1.55rem, 2.3vw, 2.4rem);
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
    pointer-events: none;
}

.gallery-item.large .overlay-text {
    font-size: clamp(2rem, 3vw, 3rem);
}

.best-sellers {
    padding: 1.4rem 2.5rem 6rem;
    background: var(--paper);
    position: relative;
    z-index: 2;
}

.section-header.split {
    max-width: var(--container-xl);
    margin: 0 auto 1.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.section-header h2 {
    font-size: clamp(2rem, 3vw, 2.85rem);
}

.lookbook-feature {
    position: relative;
    max-width: var(--container-xl);
    margin: 0 auto;
    display: block;
    overflow: hidden;
    margin-bottom: 1.25rem;
}

.lookbook-feature img {
    width: 100%;
    height: clamp(360px, 58vh, 640px);
    object-fit: cover;
}

.lookbook-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    color: var(--white);
    background: linear-gradient(0deg, rgba(16, 12, 8, 0.55) 8%, rgba(16, 12, 8, 0.08) 55%);
}

.lookbook-overlay h3 {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    line-height: 0.95;
    margin-bottom: 0.65rem;
}

.lookbook-link {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255, 255, 255, 0.8);
    width: fit-content;
    padding-bottom: 0.2rem;
}

.lookbook-products {
    max-width: var(--container-xl);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.lookbook-product {
    display: block;
}

.lookbook-product .product-image.large {
    margin-bottom: 0.6rem;
}

.product-image.large {
    position: relative;
    aspect-ratio: 4 / 5;
    margin-bottom: 0.85rem;
    background: var(--cream);
    overflow: hidden;
}

.product-badge {
    position: absolute;
    left: 0.6rem;
    top: 0.6rem;
    z-index: 3;
    padding: 0.24rem 0.5rem;
    font-size: 0.58rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fff;
    background: #4a4036;
}

.product-badge.is-new {
    background: #2f6a55;
}

.product-badge.is-fast {
    background: #8c4b1b;
}

.product-badge.is-bestseller {
    background: #61452c;
}

.product-badge.is-low {
    background: #8f3333;
}

.product-image.large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.lookbook-product:hover .product-image.large img,
.lookbook-feature:hover img {
    transform: scale(1.03);
}

.hover-add {
    position: absolute;
    left: 50%;
    bottom: 1rem;
    transform: translateX(-50%) translateY(10px);
    background: rgba(255, 248, 240, 0.96);
    padding: 0.55rem 0.85rem;
    font-size: 0.64rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    opacity: 0;
    transition: var(--transition-base);
    white-space: nowrap;
}

.product-card.minimal:hover .hover-add {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.product-name {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.product-price {
    font-size: 0.87rem;
    color: var(--ink-soft);
}

.product-subtle {
    font-size: 0.76rem;
    color: #857666;
    margin-top: 0.1rem;
}

.quick-link {
    display: inline-block;
    margin-top: 0.45rem;
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    border-bottom: 1px solid rgba(147, 105, 60, 0.4);
    padding-bottom: 0.16rem;
}

.quick-link:hover {
    color: var(--gold-deep);
    border-color: var(--gold-deep);
}

.editorial-banner {
    position: relative;
    height: min(74vh, 720px);
    overflow: hidden;
    margin-top: 0.5rem;
}

.parallax-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 120%;
    transform: translateY(0);
    will-change: transform;
}

.editorial-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(25deg, rgba(25, 20, 14, 0.58), rgba(25, 20, 14, 0.2));
}

.banner-text {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.banner-text h2 {
    font-size: clamp(2.6rem, 6vw, 5.2rem);
    margin-bottom: 0.8rem;
}

.curated-edits {
    padding-top: 0.4rem;
    padding-bottom: 4.2rem;
}

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

.edit-card {
    display: block;
    background: #f7ecde;
    border: 1px solid rgba(147, 105, 60, 0.2);
}

.edit-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
}

.edit-content {
    padding: 0.95rem 0.95rem 1rem;
}

.edit-content h3 {
    font-size: 1.1rem;
    font-family: var(--font-serif);
    margin-bottom: 0.35rem;
}

.edit-content p {
    color: var(--ink-soft);
    font-size: 0.85rem;
}

.permanent-jewelry {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 1.5rem;
    align-items: stretch;
    padding-bottom: 4.5rem;
}

.permanent-media {
    background: var(--cream);
}

.permanent-media img {
    width: 100%;
    height: 100%;
    min-height: 480px;
}

.permanent-copy {
    background: linear-gradient(135deg, #f8ecdf 0%, #f2ddc4 100%);
    border: 1px solid rgba(147, 105, 60, 0.22);
    padding: 2.3rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
}

.eyebrow.dark {
    color: #654f38;
}

.permanent-copy h2 {
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 0.95;
}

.permanent-copy p {
    color: #5f5141;
    max-width: 48ch;
}

.permanent-actions {
    margin-top: 0.45rem;
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.service-strip {
    margin-top: 1.15rem;
    margin-bottom: 3.2rem;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border: 1px solid rgba(147, 105, 60, 0.2);
    background: #f9f1e5;
}

.service-strip article {
    padding: 1.15rem 1rem;
    border-right: 1px solid rgba(147, 105, 60, 0.2);
}

.service-strip article:last-child {
    border-right: 0;
}

.service-strip h3 {
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 0.3rem;
}

.service-strip p {
    color: var(--ink-soft);
    font-size: 0.82rem;
}

.social-proof {
    margin-bottom: 4.3rem;
}

.social-header {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.social-header h2 {
    font-size: clamp(2rem, 3vw, 2.7rem);
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.75rem;
}

.social-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.social-card:hover img {
    transform: scale(1.04);
}

footer {
    border-top: 1px solid rgba(147, 105, 60, 0.25);
    background: linear-gradient(180deg, #fdf7ef 0%, #f6ece1 100%);
    padding: 4.3rem 0 3.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2rem;
}

.footer-heading {
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-col ul li {
    margin-bottom: 0.65rem;
}

.footer-col ul li a {
    color: var(--ink-soft);
}

.footer-col ul li a:hover {
    color: var(--ink);
}

.footer-text {
    color: var(--ink-soft);
    font-size: 0.9rem;
}

.simple-form {
    margin-top: 0.8rem;
    display: flex;
    border-bottom: 1px solid rgba(147, 105, 60, 0.42);
    padding-bottom: 0.5rem;
}

.simple-form input {
    flex: 1;
    border: 0;
    outline: 0;
    background: transparent;
    font-size: 0.9rem;
    color: var(--ink);
}

.simple-form input::placeholder {
    color: #8f8376;
}

.simple-form button {
    border: 0;
    background: transparent;
    color: var(--gold-deep);
    font-size: 1.2rem;
    cursor: pointer;
}

.collection-page,
.product-page {
    padding-top: 76px;
}

.collection-header {
    text-align: center;
    padding: 4.4rem 1.2rem 3.1rem;
    background: linear-gradient(180deg, #f6ebdd 0%, #fbf5ee 100%);
    border-bottom: 1px solid rgba(147, 105, 60, 0.2);
}

.collection-header h1 {
    font-size: clamp(2.2rem, 5.5vw, 4rem);
    margin-bottom: 0.3rem;
}

.collection-header p {
    color: var(--ink-soft);
}

.collection-container {
    display: flex;
    gap: 2.2rem;
    padding-top: 2rem;
    padding-bottom: 4.5rem;
}

aside.filters-sidebar {
    width: 230px;
    flex-shrink: 0;
}

.filter-group {
    border-bottom: 1px solid rgba(147, 105, 60, 0.2);
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.filter-toggle {
    width: 100%;
    border: 0;
    background: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.67rem;
    font-weight: 700;
    cursor: pointer;
}

.filter-options {
    margin-top: 0.8rem;
}

.filter-options label {
    display: block;
    margin-bottom: 0.48rem;
    color: var(--ink-soft);
    font-size: 0.88rem;
}

.filter-options input {
    margin-right: 0.5rem;
    accent-color: var(--gold-deep);
}

.collection-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem 1.25rem;
}

.collection-grid .product-card.minimal {
    flex: unset;
}

.collection-img {
    margin-bottom: 0.7rem;
}

.product-container {
    padding-top: 2rem;
    padding-bottom: 4rem;
}

.product-layout {
    display: flex;
    gap: 3rem;
}

.product-gallery {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.grid-item.full {
    background: var(--cream);
}

.grid-item.full img {
    width: 100%;
    aspect-ratio: 4 / 5;
}

.product-details-container {
    flex: 1;
}

.product-details-sticky {
    position: sticky;
    top: 102px;
    max-width: 470px;
}

.product-details-sticky h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 0.45rem;
    line-height: 1;
}

.product-price.large {
    font-size: 1.35rem;
    margin-bottom: 1.2rem;
    color: var(--gold-deep);
}

.product-description-short {
    color: var(--ink-soft);
    margin-bottom: 1.4rem;
}

.product-variants {
    margin-bottom: 1rem;
}

.product-variants label {
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.67rem;
    font-weight: 700;
    margin-bottom: 0.52rem;
}

.variant-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.pill {
    border: 1px solid rgba(147, 105, 60, 0.3);
    background: var(--white);
    padding: 0.53rem 0.85rem;
    font-size: 0.8rem;
    cursor: pointer;
}

.pill.active {
    border-color: var(--ink);
    box-shadow: inset 0 0 0 1px var(--ink);
}

.pill:hover {
    border-color: var(--gold-deep);
}

.payment-info {
    border-top: 1px solid rgba(147, 105, 60, 0.25);
    margin-top: 1.3rem;
    padding-top: 1rem;
}

.klarna-badge {
    display: inline-block;
    background: #ffb3c7;
    padding: 0.32rem 0.66rem;
    border-radius: 2px;
    margin-bottom: 0.7rem;
    font-size: 0.74rem;
}

.payment-info ul {
    padding-left: 1rem;
}

.payment-info li {
    list-style: disc;
    margin-bottom: 0.4rem;
    color: var(--ink-soft);
    font-size: 0.88rem;
}

@media (max-width: 1120px) {
    .mobile-menu-btn {
        display: inline-flex;
    }

    .desktop-nav {
        position: fixed;
        top: 76px;
        left: 0;
        width: 100%;
        transform: translateY(-120%);
        opacity: 0;
        pointer-events: none;
        transition: var(--transition-base);
        background: rgba(255, 250, 243, 0.98);
        border-bottom: 1px solid rgba(147, 105, 60, 0.2);
    }

    body.menu-open .desktop-nav {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .desktop-nav ul {
        height: auto;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 0.7rem 2rem 1.2rem;
    }

    .desktop-nav li {
        width: 100%;
        border-bottom: 1px solid rgba(147, 105, 60, 0.15);
    }

    .desktop-nav li:last-child {
        border-bottom: 0;
    }

    .nav-link {
        display: block;
        padding: 0.9rem 0;
    }

    .mega-menu {
        display: none;
    }

    .asymmetrical-grid {
        grid-template-columns: 1fr;
        aspect-ratio: auto;
        height: auto;
    }

    .gallery-item.large {
        aspect-ratio: 4 / 5;
    }

    .gallery-column {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: unset;
    }

    .collection-container,
    .product-layout {
        flex-direction: column;
    }

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

    .logo-track {
        gap: 2.2rem;
        padding-right: 2.2rem;
    }

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

    .permanent-jewelry {
        grid-template-columns: 1fr;
    }

    .permanent-media img {
        min-height: 420px;
    }

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

    .service-strip article:nth-child(2) {
        border-right: 0;
    }

    .service-strip article:nth-child(-n + 2) {
        border-bottom: 1px solid rgba(147, 105, 60, 0.2);
    }

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

    aside.filters-sidebar {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.8rem;
    }

    .filter-group {
        padding: 0.8rem;
        margin: 0;
        border: 1px solid rgba(147, 105, 60, 0.2);
        background: var(--paper);
    }

    .product-details-sticky {
        position: static;
        max-width: none;
    }
}

@media (max-width: 760px) {

    .container-large,
    .header-container,
    .grid-section,
    .best-sellers {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .announcement-bar {
        font-size: 0.58rem;
        letter-spacing: 0.13em;
    }

    .offer-strip {
        margin-top: 66px;
        font-size: 0.58rem;
        letter-spacing: 0.12em;
    }

    body.has-announcement header {
        top: 30px;
    }

    .header-container,
    .desktop-nav {
        height: 66px;
    }

    .desktop-nav {
        top: 66px;
    }

    .hide-mobile {
        display: none;
    }

    .header-icons {
        gap: 0.3rem;
    }

    .logo {
        font-size: 0.8rem;
        letter-spacing: 0.14em;
    }

    .hero.full-height {
        height: 88svh;
        padding: 0 1rem 3rem;
    }

    .seen-in {
        padding-top: 1.65rem;
        padding-bottom: 1.8rem;
    }

    .logo-track {
        gap: 1.6rem;
        padding-right: 1.6rem;
    }

    .logo-wordmark {
        font-size: clamp(1.45rem, 6vw, 2.4rem);
    }

    .logo-wordmark.narrow {
        font-size: clamp(1.5rem, 5.6vw, 2.25rem);
    }

    .logo-wordmark.badge {
        width: 64px;
        height: 64px;
        font-size: 1.6rem;
    }

    .hero-actions.vertical {
        grid-template-columns: 1fr;
    }

    .hero-pagination {
        bottom: 1.3rem;
    }

    .gallery-column {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .social-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .collection-grid {
        grid-template-columns: 1fr;
        gap: 1.4rem;
    }

    .lookbook-feature img {
        height: clamp(300px, 48vh, 420px);
    }

    .lookbook-overlay {
        padding: 1.25rem 1rem;
    }

    .lookbook-products {
        grid-template-columns: 1fr;
    }

    aside.filters-sidebar {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.6rem 0.9rem;
    }

    .edit-grid,
    .social-grid,
    .service-strip {
        grid-template-columns: 1fr;
    }

    .service-strip article {
        border-right: 0;
        border-bottom: 1px solid rgba(147, 105, 60, 0.2);
    }

    .service-strip article:last-child {
        border-bottom: 0;
    }

    .permanent-copy {
        padding: 1.5rem 1rem;
    }

    .permanent-media img {
        min-height: 320px;
    }

    .banner-text h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 520px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}
