:root {
    --teal: #7be8c9;
    --teal-dk: #3ecaa8;
    --teal-dkr: #1a9e82;
    --teal-pale: #e8faf6;
    --teal-mid: #b4f0e0;
    --white: #fff;
    --charcoal: #1a1a1a;
    --mid: #4a4a4a;
    --light: #888;
    --off: #f7fcfa;
    --border: #e4e4e4;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--white);
    color: var(--charcoal);
    font-family: 'Jost', sans-serif;
    overflow-x: hidden;
}

/* ── TOPBAR ── */
#topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 500;
    height: 40px;
    background: var(--teal-dkr);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3rem;
}


#topbar a,
#topbar span {
    color: #fff;
    font-size: .62rem;
    letter-spacing: .11em;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 400;
}

#topbar a:hover {
    color: var(--teal-pale);
}

.tbl,
.tbr {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.tbsep {
    width: 1px;
    height: 12px;
    background: rgba(255, 255, 255, .3);
}

/* ── NAVBAR ── */
#navbar {
    position: fixed;
    top: 40px;
    left: 0;
    right: 0;
    z-index: 400;
    height: 72px;
    background: rgba(255, 255, 255, .97);
    backdrop-filter: blur(20px);
    border-bottom: 2.5px solid var(--teal);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3rem;
    box-shadow: 0 2px 24px rgba(123, 232, 201, .18);
    transition: box-shadow .4s;
}


#navbar.scrolled {
    box-shadow: 0 4px 40px rgba(0, 0, 0, .09);
}

.nav-logo {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.nav-logo img {
    height: 50px;
    width: auto;
    display: block;
}

nav {
    display: flex;
    align-items: center;
    height: 30px;
}

.mobile-topbar-items {
    display: none;
}



.ni {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.ni>a {
    font-size: .65rem;
    letter-spacing: .11em;
    text-transform: uppercase;
    color: var(--mid);
    text-decoration: none;
    font-weight: 500;
    padding: 0 .82rem;
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    transition: color .25s;
    white-space: nowrap;
}

.ni>a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: .82rem;
    right: .82rem;
    height: 2px;
    background: var(--teal);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s;
}

.ni:hover>a {
    color: var(--charcoal);
}

.ni:hover>a::after {
    transform: scaleX(1);
}

.dd {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 225px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, .11);
    border-top: 2px solid var(--teal);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .25s, transform .25s, visibility .25s;
    z-index: 100;
}

.ni:hover .dd {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dd a {
    display: block;
    padding: .6rem 1.2rem;
    font-size: .64rem;
    letter-spacing: .09em;
    text-transform: uppercase;
    color: var(--mid);
    text-decoration: none;
    font-weight: 400;
    border-bottom: 1px solid rgba(123, 232, 201, .15);
    transition: background .2s, color .2s, padding-left .2s;
}

.dd a:last-child {
    border-bottom: none;
}

.dd a:hover {
    background: var(--teal-pale);
    color: var(--charcoal);
    padding-left: 1.5rem;
}

.hs>a {
    padding-right: 1.5rem !important;
    position: relative;
}

.hs>a::before {
    content: '›';
    position: absolute;
    right: .65rem;
    font-size: .9rem;
    line-height: 1;
}

.sdd {
    position: absolute;
    top: 0;
    left: 100%;
    background: #fff;
    min-width: 195px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, .11);
    border-top: 2px solid var(--teal);
    opacity: 0;
    visibility: hidden;
    transform: translateX(6px);
    transition: opacity .22s, transform .22s, visibility .22s;
}

.hs:hover .sdd {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.nav-cta {
    margin-left: .6rem;
    padding: .48rem 1.3rem;
    background: var(--teal);
    color: var(--charcoal) !important;
    font-size: .65rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    display: flex;
    align-items: center;
    transition: background .25s, transform .2s;
}

.nav-cta:hover {
    background: var(--teal-dk);
    transform: translateY(-1px);
}

/* ── SEARCH ── */
#search-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

#search-btn {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .62rem;
    letter-spacing: .11em;
    text-transform: uppercase;
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    opacity: .85;
    transition: opacity .2s;
    padding: 0;
}

#search-btn:hover {
    opacity: 1;
}

#search-btn svg {
    width: 13px;
    height: 13px;
}

#search-panel {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: 280px;
    background: #fff;
    border-top: 2px solid var(--teal);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .18);
    padding: .7rem;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity .25s, transform .25s, visibility .25s;
}

#search-panel.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#search-panel form {
    display: flex;
    gap: .4rem;
}

#search-input {
    flex: 1;
    border: 1px solid var(--border);
    padding: .5rem .7rem;
    font-family: 'Jost', sans-serif;
    font-size: .75rem;
    color: var(--charcoal);
    outline: none;
    transition: border-color .2s;
}

#search-input:focus {
    border-color: var(--teal);
}

#search-submit {
    padding: .5rem .9rem;
    background: var(--teal);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
}

#search-submit svg {
    width: 14px;
    height: 14px;
}

#hero {
    position: relative;
    width: 100%;
    height: calc(100vh - 112px);
    min-height: 580px;
    margin-top: 112px;
    overflow: hidden;
    background: #111;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    z-index: 1;
    will-change: opacity;
}

.slide.active {
    z-index: 2;
    opacity: 1;
}

.sbg-link {
    position: absolute;
    inset: 0;
    z-index: 5;
    display: block;
}

.sbg {
    position: absolute;
    inset: 0;
    transform: scale(1.07);
}

.sbg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slide.active .sbg {
    transform: scale(1);
    transition: transform 8s cubic-bezier(.25, .46, .45, .94);
}

.sov {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(0, 0, 0, .76) 0%, rgba(0, 0, 0, .44) 42%, rgba(0, 0, 0, .1) 70%, transparent 100%);
}

.sov-q {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .3);
}

/* Grain overlay on hero */
.hero-grain {
    position: absolute;
    inset: 0;
    z-index: 3;
    opacity: .035;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-size: 128px;
}

.sc {
    position: absolute;
    inset: 0;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 5.5rem;
    max-width: 820px;
}

.sc-q {
    position: absolute;
    inset: 0;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 10rem;
}

.sey {
    display: inline-flex;
    align-items: center;
    gap: .65rem;
    margin-bottom: 1.4rem;
}

.sel {
    width: 36px;
    height: 2px;
    background: var(--teal);
}

.set {
    font-size: .62rem;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--teal);
    font-weight: 600;
}

.stt {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 5.8vw, 5.6rem);
    font-weight: 300;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 1.3rem;
}

.stt em {
    font-style: italic;
    color: var(--teal);
}

.tl {
    display: block;
    overflow: hidden;
}

.ti {
    display: block;
}

.sds {
    font-size: .92rem;
    font-weight: 300;
    line-height: 1.85;
    color: rgba(255, 255, 255, .82);
    max-width: 430px;
    margin-bottom: 2rem;
}

.sbt {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

/* quote */
.qmk {
    font-family: 'Cormorant Garamond', serif;
    font-size: 8rem;
    line-height: .5;
    color: var(--teal);
}

.qtx {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.3rem, 2.2vw, 1.95rem);
    font-weight: 300;
    font-style: italic;
    line-height: 1.62;
    color: #fff;
    margin: 1.2rem 0 1.8rem;
}

.qat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .45rem;
}

.qrl {
    width: 40px;
    height: 1.5px;
    background: var(--teal);
}

.qnm {
    font-size: .7rem;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--teal);
    font-weight: 600;
}

.qsr {
    font-size: .6rem;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .55);
}

.qct {
    margin-top: 1.8rem;
}

/* Buttons */
.bf {
    display: inline-flex;
    align-items: center;
    gap: .7rem;
    padding: .82rem 2.1rem;
    background: var(--teal);
    color: var(--charcoal);
    font-family: 'Jost', sans-serif;
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform .25s;
}

.bf::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--teal-dk);
    transform: translateX(-101%);
    transition: transform .36s cubic-bezier(.76, 0, .24, 1);
}

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

.bf:hover::before {
    transform: translateX(0);
}

.bf span,
.bf svg {
    position: relative;
    z-index: 1;
}

.bf svg {
    transition: transform .25s;
}

.bf:hover svg {
    transform: translateX(4px);
}

.bg {
    display: inline-flex;
    align-items: center;
    gap: .7rem;
    padding: .8rem 2.1rem;
    border: 1.5px solid rgba(255, 255, 255, .48);
    color: #fff;
    font-family: 'Jost', sans-serif;
    font-size: .7rem;
    font-weight: 500;
    letter-spacing: .16em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: background .25s, border-color .25s, transform .25s;
}

.bg:hover {
    background: rgba(255, 255, 255, .1);
    border-color: #fff;
    transform: translateY(-2px);
}

/* Slider controls */
.sdots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    gap: .6rem;
    align-items: center;
}

.dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .28);
    border: none;
    cursor: pointer;
    transition: background .3s, width .35s, border-radius .35s;
    padding: 0;
}

.dot.active {
    background: var(--teal);
    width: 28px;
    border-radius: 4px;
}

.sarr {
    position: absolute;
    bottom: 1.6rem;
    right: 3.5rem;
    z-index: 20;
    display: flex;
    gap: .6rem;
}

.arr {
    width: 44px;
    height: 44px;
    border: 1.5px solid rgba(255, 255, 255, .28);
    background: rgba(0, 0, 0, .18);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff;
    transition: background .25s, border-color .25s, transform .2s;
}

.arr:hover {
    background: var(--teal);
    border-color: var(--teal);
    color: var(--charcoal);
    transform: scale(1.06);
}

.arr svg {
    width: 17px;
    height: 17px;
}

.spb {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 20;
    height: 3px;
    background: rgba(255, 255, 255, .08);
}

.pb {
    height: 100%;
    background: var(--teal);
    width: 0;
}

/* MARQUEE */
.mq {
    background: var(--charcoal);
    overflow: hidden;
    padding: .6rem 0;
    position: relative;
    z-index: 5;
}

.mqt {
    display: flex;
    width: max-content;
    animation: mq 34s linear infinite;
}

.mqi {
    display: flex;
    align-items: center;
    gap: 1.4rem;
    padding: 0 2.2rem;
    font-size: .6rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .7);
}

.mqd {
    width: 4px;
    height: 4px;
    background: var(--teal);
    transform: rotate(45deg);
}

@keyframes mq {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

/* ══════════════════════════════════
   SECTION 2 — COLLECTIONS
   Category cards built from Stuller product images
   with CSS lifestyle treatment: dark overlay + typography
══════════════════════════════════ */
#collections {
    padding: 7rem 3rem 2rem;
    background: var(--white);
    overflow: hidden;
}

.sec-head {
    text-align: center;
    margin-bottom: 3.5rem;
    overflow: hidden;
}

.sh-tag {
    display: inline-flex;
    align-items: center;
    gap: .65rem;
    margin-bottom: .9rem;
}

.sh-tl {
    width: 28px;
    height: 2px;
    background: var(--teal);
}

.sh-tt {
    font-size: .62rem;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--teal-dkr);
    font-weight: 600;
}

.sh-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.1rem, 3.8vw, 3.3rem);
    font-weight: 300;
    color: var(--charcoal);
    line-height: 1.14;
    overflow: hidden;
}

.sh-title em {
    font-style: italic;
    color: var(--teal-dkr);
}

.sh-sub {
    font-size: .88rem;
    font-weight: 300;
    color: var(--light);
    margin-top: .7rem;
    line-height: 1.7;
}

/* LIFESTYLE COLLECTION GRID */
.cg {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.15fr 1fr 1fr;
    grid-template-rows: 310px 310px 220px;
    gap: .8rem;
}

/* Shop All card — styled CTA in grid */
.cc-shopall {
    background: var(--charcoal);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: background .3s;
}

.cc-shopall::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(123, 232, 201, .12) 0%, transparent 65%);
}

.cc-shopall:hover {
    background: #1e1e1e;
}

.cc-shopall-label {
    font-size: .6rem;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--teal);
    font-weight: 600;
    margin-top: 20px;
}

.cc-shopall-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.9rem;
    font-weight: 300;
    color: #fff;
    text-align: center;
    line-height: 1.15;
}

.cc-shopall-title em {
    font-style: italic;
    color: var(--teal);
}

.cc-shopall-arrow {
    width: 44px;
    height: 44px;
    border: 1.5px solid rgba(123, 232, 201, .35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    transition: background .3s, border-color .3s, transform .3s;
    margin-bottom: 20px;
}

.cc-shopall:hover .cc-shopall-arrow {
    background: var(--teal);
    border-color: var(--teal);
    color: var(--charcoal);
    transform: translateX(4px);
}

.cc-shopall-arrow svg {
    width: 16px;
    height: 10px;
}

/* Each card is a styled lifestyle image built in CSS */
.cc {
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: block;
    cursor: pointer;
}

/* The Stuller product image as background — treated with color overlay for lifestyle feel */
.cc-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform .9s cubic-bezier(.25, .46, .45, .94), filter .9s;
    transform: scale(1.04);
}

.cc:hover .cc-bg {
    transform: scale(1);
    filter: brightness(1.08);
}

/* Lifestyle color treatment — each card gets its own mood */
.cc-mood {
    position: absolute;
    inset: 0;
    transition: opacity .5s;
}

/* Card 1 — Engagement — deep romantic rose + teal */
.cc-mood-1 {
    background: linear-gradient(135deg, rgba(26, 20, 30, .30) 0%, rgba(26, 80, 65, .20) 10%, rgba(123, 232, 201, .12) 100%);
}

/* Card 2 — Wedding Bands — champagne gold + deep */
.cc-mood-2 {
    background: linear-gradient(160deg, rgba(20, 15, 10, .30) 0%, rgba(60, 45, 20, .20) 55%, rgba(180, 140, 60, .15) 100%);
}

/* Card 3 — Diamond Earrings — cool silver + dark */
.cc-mood-3 {
    background: linear-gradient(120deg, rgba(15, 20, 30, .30) 0%, rgba(30, 50, 70, .20) 55%, rgba(200, 220, 240, .12) 100%);
}

/* Card 4 — Necklaces — emerald depth */
.cc-mood-4 {
    background: linear-gradient(145deg, rgba(10, 25, 20, .30) 0%, rgba(26, 158, 130, .20) 60%, rgba(123, 232, 201, .1) 100%);
}

/* Card 5 — Stackable — blush + charcoal */
.cc-mood-5 {
    background: linear-gradient(130deg, rgba(25, 15, 20, .30) 0%, rgba(80, 40, 60, .20) 55%, rgba(220, 180, 200, .1) 100%);
}

.cc:hover .cc-mood {
    opacity: .1;
}

/* Bottom scrim for text legibility */
.cc-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .75) 0%, rgba(0, 0, 0, .2) 40%, transparent 70%);
}

/* Tiny category label at top */
.cc-label-top {
    position: absolute;
    top: 1.4rem;
    left: 1.6rem;
    z-index: 4;
    font-size: .56rem;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--teal);
    font-weight: 600;
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity .3s, transform .3s;
    display: flex;
    align-items: center;
    gap: .5rem;
}

.cc-label-top::before {
    content: '';
    width: 18px;
    height: 1.5px;
    background: var(--teal);
}

.cc:hover .cc-label-top {
    opacity: 1;
    transform: translateY(0);
}

/* Main name */
.cc-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 4;
    padding: 1.6rem 1.8rem 1.4rem;
}

.cc-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 300;
    color: #fff;
    line-height: 1.1;
    display: block;
    transform: translateY(6px);
    transition: transform .35s;
}

.cc:hover .cc-name {
    transform: translateY(0);
}

.cc-cta {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    font-size: .6rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--teal);
    font-weight: 600;
    margin-top: .4rem;
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity .3s .05s, transform .3s .05s;
}

.cc:hover .cc-cta {
    opacity: 1;
    transform: translateX(0);
}

.cc-cta svg {
    width: 11px;
    height: 7px;
}

/* Featured: spans 2 rows */
.cc-f {
    grid-row: span 2;
}

.cc-f .cc-name {
    font-size: 2rem;
}

/* Wide bottom card spans 2 cols */
.cc-wide {
    grid-column: span 2;
}

.cc-wide .cc-name {
    font-size: 1.7rem;
}

/* Shop all */
.sa-row {
    max-width: 100%;
    background: var(--charcoal);
    padding: 1.4rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sa-row-inner {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sa-row a {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    font-size: .67rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--teal);
    font-weight: 600;
    text-decoration: none;
    transition: gap .25s, color .25s;
}

.sa-row a:hover {
    color: #fff;
    gap: .8rem;
}

.sa-row svg {
    width: 14px;
    height: 9px;
    transition: transform .25s;
}

.sa-row a:hover svg {
    transform: translateX(3px);
}

.sa-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    font-style: italic;
    color: rgba(255, 255, 255, .45);
    font-weight: 300;
}

/* ══════════════════════════════════
   SECTION 3 — SERVICES
   2026: big visual card + animated 2x2 grid
══════════════════════════════════ */
#services {
    padding: 5rem 3rem 7rem;
    background: var(--charcoal);
    overflow: hidden;
    position: relative;
}

/* teal radial glow top right */
#services::before {
    content: '';
    position: absolute;
    top: -180px;
    right: -180px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(123, 232, 201, .07) 0%, transparent 65%);
    pointer-events: none;
}

.svc-head .sh-title {
    color: #fff;
}

.svc-head .sh-sub {
    color: rgba(255, 255, 255, .65);
}

.svc-head .sh-tt {
    color: var(--teal);
}

.svc-layout {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.12fr 1fr;
    gap: 1.2rem;
    align-items: start;
}

/* Big hero card */
.svc-hero {
    position: relative;
    min-height: 500px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.5rem;
    cursor: pointer;
    text-decoration: none;
}

.svc-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform .8s cubic-bezier(.25, .46, .45, .94);
}

.svc-hero:hover .svc-hero-bg {
    transform: scale(1.05);
}

.svc-hero-ov {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .85) 0%, rgba(0, 0, 0, .32) 50%, transparent 100%);
}

.svc-hero-body {
    position: relative;
    z-index: 2;
}

.svc-bar {
    width: 0;
    height: 3px;
    background: var(--teal);
    margin-bottom: 1.1rem;
}

.svc-hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.3rem;
    font-weight: 300;
    color: #fff;
    line-height: 1.12;
    margin-bottom: .8rem;
}

.svc-hero-title em {
    font-style: italic;
    color: var(--teal);
}

.svc-hero-desc {
    font-size: .84rem;
    font-weight: 300;
    color: rgba(255, 255, 255, .65);
    line-height: 1.82;
    margin-bottom: 1.5rem;
    max-width: 370px;
}

.svc-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    font-size: .65rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--teal);
    font-weight: 600;
    transition: gap .28s;
}

.svc-hero:hover .svc-hero-cta {
    gap: .95rem;
}

.svc-hero-cta svg {
    width: 14px;
    height: 9px;
}

/* 2x2 small cards */
.svc-grid4 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1.2rem;
}

.svc-sm {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    padding: 2rem 1.8rem;
    text-decoration: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: .9rem;
    transition: border-color .3s, background .3s, transform .3s;
    position: relative;
    overflow: hidden;
}

/* animated teal corner on hover */
.svc-sm::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--teal);
    transition: width .4s cubic-bezier(.76, 0, .24, 1);
}

.svc-sm:hover::after {
    width: 100%;
}

.svc-sm:hover {
    border-color: rgba(123, 232, 201, .3);
    background: rgba(255, 255, 255, .07);
    transform: translateY(-4px);
}

.svc-ico {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(123, 232, 201, .1);
    border: 1.5px solid rgba(123, 232, 201, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .3s;
    flex-shrink: 0;
}

.svc-sm:hover .svc-ico {
    background: rgba(123, 232, 201, .2);
}

.svc-ico svg {
    width: 20px;
    height: 20px;
}

.svc-nm {
    font-size: .88rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: .03em;
}

.svc-ds {
    font-size: .78rem;
    color: rgba(255, 255, 255, .72);
    line-height: 1.72;
    font-weight: 300;
}

.svc-lk {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .6rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--teal);
    font-weight: 600;
    margin-top: auto;
    transition: gap .2s;
}

.svc-sm:hover .svc-lk {
    gap: .65rem;
}

.svc-lk svg {
    width: 11px;
    height: 7px;
}

/* ══════════════════════════════════
   SECTION 4 — ABOUT TOM
   Split layout, clip-path reveal, animated badge
══════════════════════════════════ */
#about {
    padding: 7rem 3rem;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

#about::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, transparent, var(--teal) 20%, var(--teal) 80%, transparent);
}

.about-wrap {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7rem;
    align-items: center;
}

.ab-t {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.6vw, 3.2rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
}

.ab-t em {
    font-style: italic;
    color: var(--teal-dkr);
}

.ab-p {
    font-size: .9rem;
    font-weight: 300;
    line-height: 1.9;
    color: var(--mid);
    margin-bottom: 1.1rem;
}

.ab-p strong {
    font-weight: 600;
    color: var(--charcoal);
}

.ab-q {
    border-left: 3px solid var(--teal);
    padding: .9rem 1.4rem;
    margin: 1.8rem 0;
    background: var(--teal-pale);
}

.ab-q p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.12rem;
    font-style: italic;
    font-weight: 300;
    color: var(--charcoal);
    line-height: 1.6;
}

.ab-awards {
    display: flex;
    gap: .9rem;
    flex-wrap: wrap;
    margin: 1.8rem 0;
}

.awb {
    display: flex;
    align-items: center;
    gap: .55rem;
    padding: .5rem .9rem;
    border: 1px solid var(--teal-mid);
    background: var(--teal-pale);
}

.awb svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
}

.awb span {
    font-size: .61rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--teal-dkr);
    font-weight: 600;
}

.ab-quotes-sub {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-style: italic;
    color: var(--mid);
    line-height: 1.75;
    margin: 1rem 0;
}

.ab-ctas {
    display: flex;
    gap: 1rem;
    margin-top: 2.2rem;
    flex-wrap: wrap;
}

.btn-s {
    display: inline-flex;
    align-items: center;
    gap: .7rem;
    padding: .82rem 2.1rem;
    background: var(--teal);
    color: var(--charcoal);
    font-family: 'Jost', sans-serif;
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform .25s;
}

.btn-s::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--teal-dk);
    transform: translateX(-101%);
    transition: transform .36s cubic-bezier(.76, 0, .24, 1);
}

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

.btn-s:hover::before {
    transform: translateX(0);
}

.btn-s span,
.btn-s svg {
    position: relative;
    z-index: 1;
}

.btn-s:hover svg {
    transform: translateX(4px);
}

.btn-o {
    display: inline-flex;
    align-items: center;
    gap: .7rem;
    padding: .8rem 2.1rem;
    border: 1.5px solid var(--charcoal);
    color: var(--charcoal);
    font-family: 'Jost', sans-serif;
    font-size: .7rem;
    font-weight: 500;
    letter-spacing: .16em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: background .25s, transform .25s;
}

.btn-o:hover {
    background: var(--charcoal);
    color: #fff;
    transform: translateY(-2px);
}

/* Photo stack */
.ab-photos {
    position: relative;
    height: 560px;
}

/* clip-path reveal wrapper */
.ab-main {
    position: absolute;
    right: 0;
    top: 0;
    width: 375px;
    height: 475px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .13);
    clip-path: inset(100% 0 0 0);
}

.ab-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.ab-sec {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 232px;
    height: 292px;
    overflow: hidden;
    box-shadow: 0 12px 36px rgba(0, 0, 0, .13);
    border: 5px solid var(--white);
    clip-path: inset(0 0 100% 0);
}

.ab-sec img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ab-bdg {
    position: absolute;
    left: 150px;
    top: 15px;
    background: var(--teal);
    padding: 1.1rem 1.5rem;
    box-shadow: 0 6px 24px rgba(123, 232, 201, .35);
    z-index: 10;
    opacity: 0;
    transform: scale(.8);
}

.ab-bdg-n {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 300;
    line-height: 1;
    color: var(--charcoal);
}

.ab-bdg-l {
    font-size: .57rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(26, 26, 26, .68);
    font-weight: 600;
    margin-top: .2rem;
}

.ab-dots {
    position: absolute;
    bottom: 42px;
    right: -8px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 7px;
    opacity: .22;
    pointer-events: none;
}

.ab-dots span {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--teal);
    display: block;
}

/* ══════════════════════════════════
   SECTION 5 — TESTIMONIALS
══════════════════════════════════ */
#testimonials {
    padding: 6rem 3rem;
    background: var(--off);
    overflow: hidden;
}

.tgrid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem;
}

.tc {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 2.4rem;
    position: relative;
    overflow: hidden;
    transition: transform .3s, box-shadow .3s, border-color .3s;
    clip-path: inset(0 0 100% 0);
}

.tc:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(123, 232, 201, .18);
    border-color: var(--teal-mid);
}

/* animated teal bar at top */
.tc::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--teal);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .45s cubic-bezier(.76, 0, .24, 1);
}

.tc:hover::before {
    transform: scaleX(1);
}

.tc-qm {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    line-height: .75;
    color: var(--teal);
    opacity: .5;
    margin-bottom: .4rem;
}

.tc-txt {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.04rem;
    font-style: italic;
    font-weight: 300;
    line-height: 1.78;
    color: var(--mid);
    margin-bottom: 1.5rem;
}

.tc-stars {
    display: flex;
    gap: .2rem;
    margin-bottom: 1rem;
}

.star {
    width: 12px;
    height: 12px;
    fill: var(--teal-dkr);
}

.tc-auth {
    display: flex;
    align-items: center;
    gap: .8rem;
    padding-top: 1.2rem;
    border-top: 1px solid var(--border);
}

.tc-av {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .7rem;
    font-weight: 700;
    color: var(--charcoal);
    flex-shrink: 0;
}

.tc-name {
    font-size: .72rem;
    font-weight: 600;
    color: var(--charcoal);
    letter-spacing: .04em;
}

.tc-dt {
    font-size: .61rem;
    color: var(--light);
    margin-top: .12rem;
}

.tcta {
    text-align: center;
    margin-top: 3rem;
}

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
footer {
    background: #111;
    color: rgba(255, 255, 255, .7);
    padding: 4.5rem 3rem 2rem;
}

.ft {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.7fr 1fr 1fr 1fr;
    gap: 3.5rem;
    margin-bottom: 3rem;
}

.fl img {
    height: 50px;
    width: auto;
    margin-bottom: 1.2rem;
    opacity: .9;
}

.fl-tag {
    font-family: 'Cormorant Garamond', serif;
    font-size: .97rem;
    font-style: italic;
    color: rgba(255, 255, 255, .6);
    line-height: 1.65;
    margin-bottom: 1.3rem;
}

.fc-row {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-size: .75rem;
    margin-bottom: .5rem;
    color: rgba(255, 255, 255, .65);
}

.fc-row a {
    color: var(--teal);
    text-decoration: none;
    font-size: .75rem;
}

.fc-row a:hover {
    color: #fff;
}

.fc-row svg {
    flex-shrink: 0;
    width: 13px;
    height: 13px;
}

.fhours {
    margin-top: 1rem;
    font-size: .73rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, .55);
}

.fhours strong {
    color: rgba(255, 255, 255, .8);
    display: block;
    margin-bottom: .3rem;
    font-size: .64rem;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.fsoc {
    display: flex;
    gap: .75rem;
    margin-top: 1.4rem;
}

.fsoc a {
    width: 33px;
    height: 33px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .5);
    text-decoration: none;
    transition: border-color .25s, color .25s;
}

.fsoc a:hover {
    border-color: var(--teal);
    color: var(--teal);
}

.fsoc svg {
    width: 13px;
    height: 13px;
}

.fcol h4 {
    font-size: .63rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .8);
    font-weight: 600;
    margin-bottom: 1.2rem;
    padding-bottom: .5rem;
    border-bottom: 1px solid rgba(123, 232, 201, .15);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.fcol a {
    display: block;
    font-size: .74rem;
    color: rgba(255, 255, 255, .6);
    text-decoration: none;
    margin-bottom: .5rem;
    transition: color .2s, padding-left .2s;
}

.fcol a:hover {
    color: var(--teal);
    padding-left: .3rem;
}

.fb {
    max-width: 1280px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, .08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .63rem;
    color: rgba(255, 255, 255, .4);
    letter-spacing: .05em;
}

.fb a {
    color: rgba(255, 255, 255, .4);
    text-decoration: none;
}

.fb a:hover {
    color: var(--teal);
}

/* ══════════════════════════════════
   RESPONSIVE LAYOUT adjustments
══════════════════════════════════ */

/* Disable custom cursor on touch devices */
@media (hover: none) and (pointer: coarse) {

    body,
    a,
    button,
    .cc,
    .svc-sm,
    .svc-hero {
        cursor: auto !important;
    }

    #cur {
        display: none !important;
    }
}

@media (max-width: 1300px) {
    .ab-bdg {
        left: 90px;
    }
}

/* 1200px - Laptops */
@media screen and (max-width: 1200px) {
    .sc {
        padding: 0 4rem;
    }

    .stt {
        font-size: clamp(2.8rem, 4.5vw, 4.5rem);
    }

    #collections,
    #services,
    #about,
    #testimonials,
    footer {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .cg {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(4, 300px);
    }

    .cc-f {
        grid-column: span 1;
        grid-row: span 1;
    }

    .cc-wide {
        grid-column: span 1;
    }

    .ab-main {
        width: 300px;
        height: 380px;
    }

    .ab-sec {
        width: 180px;
        height: 230px;
    }

    .ab-bdg {
        left: 100px;
        transform: scale(0.7);
    }

    .svc-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .svc-hero {
        min-height: 400px;
    }

    .tgrid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .ft {
        grid-template-columns: 1.5fr 1fr 1fr;
    }
}

/* ══════════════════════════════════
   SECTION 2.5: LOOSE DIAMONDS - ENHANCED
   Two-column split layout inspired by About section
   Left: Compelling copy + features + CTAs
   Right: Animated featured diamond showcase
══════════════════════════════════ */

#loose-diamonds {
    padding: 60px 50px;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

/* Subtle gradient accent top-right */
#loose-diamonds::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -150px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(123, 232, 201, .05) 0%, transparent 65%);
    pointer-events: none;
}

/* Decorative line on left */
#loose-diamonds::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, transparent, var(--teal) 20%, var(--teal) 80%, transparent);
}

.ld-wrap {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* ── LEFT COLUMN: CONTENT ── */
.ld-left {
    padding-right: 1rem;
}

.ld-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.6vw, 3.2rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.ld-title em {
    font-style: italic;
    color: var(--teal-dkr);
}

.ld-intro {
    font-size: .95rem;
    font-weight: 300;
    line-height: 1.9;
    color: var(--mid);
    margin-bottom: 2.5rem;
}

/* Feature List */
.ld-features {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
    margin-bottom: 2.5rem;
}

.ld-feat {
    display: flex;
    gap: 1.1rem;
    opacity: 0;
    transform: translateX(-20px);
    animation: slideInLeft 0.6s ease-out forwards;
}

.ld-feat:nth-child(1) {
    animation-delay: 0.1s;
}

.ld-feat:nth-child(2) {
    animation-delay: 0.2s;
}

.ld-feat:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.ld-feat-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    background: rgba(123, 232, 201, .1);
    border: 1.5px solid rgba(123, 232, 201, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .3s, border-color .3s;
}

.ld-feat:hover .ld-feat-icon {
    background: rgba(123, 232, 201, .2);
    border-color: var(--teal-dkr);
}

.ld-feat-icon svg {
    width: 20px;
    height: 20px;
}

.ld-feat-text h4 {
    font-size: .9rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: .4rem;
    letter-spacing: .03em;
}

.ld-feat-text p {
    font-size: .78rem;
    color: var(--light);
    line-height: 1.7;
    font-weight: 300;
}

/* CTAs */
.ld-ctas {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.ld-ctas .btn-s,
.ld-ctas .btn-o {
    flex: 1;
    min-width: 200px;
}

/* Trust Section */
.ld-trust {
    padding: 1.4rem 1.6rem;
    background: var(--teal-pale);
    border-left: 3px solid var(--teal-dkr);
}

.ld-trust p {
    font-size: .85rem;
    line-height: 1.75;
    color: var(--charcoal);
    margin-bottom: 0.6rem;
}

.ld-trust p:last-child {
    margin-bottom: 0;
}

.ld-trust strong {
    font-weight: 600;
}

/* ── RIGHT COLUMN: DIAMOND SHOWCASE ── */
.ld-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 560px;
}

.ld-featured {
    position: relative;
    width: 100%;
    max-width: 600px;
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: 0 20px 60px rgba(123, 232, 201, .12);
    overflow: hidden;
    transition: transform .4s cubic-bezier(.25, .46, .45, .94), box-shadow .4s;
    cursor: pointer;
}

.ld-featured:hover {
    transform: translateY(-8px);
    box-shadow: 0 32px 80px rgba(123, 232, 201, .18);
}

/* Diamond image background with sparkle effect */
.ld-card-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(123, 232, 201, .08) 0%, rgba(123, 232, 201, .04) 100%);
    overflow: hidden;
    z-index: 1;
}

.ld-sparkle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--teal);
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    animation: sparkle 2s ease-in-out infinite;
    animation-delay: var(--delay);
}

.ld-sparkle:nth-child(1) {
    top: 15%;
    left: 20%;
}

.ld-sparkle:nth-child(2) {
    top: 40%;
    right: 15%;
}

.ld-sparkle:nth-child(3) {
    bottom: 20%;
    left: 15%;
}

@keyframes sparkle {

    0%,
    100% {
        opacity: 0;
        transform: scale(0);
    }

    50% {
        opacity: 1;
        transform: scale(1);
    }
}

.ld-card-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: var(--white);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ld-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform .6s cubic-bezier(.25, .46, .45, .94);
}

.ld-featured:hover .ld-card-image img {
    transform: scale(1.08);
}

.ld-card-body {
    padding: 2rem 1.6rem;
    background: var(--white);
    position: relative;
    z-index: 2;
}

/* Diamond Specs Grid */
.ld-spec-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: .8rem;
    margin-bottom: 1.4rem;
}

.ld-spec {
    text-align: center;
    padding: .7rem .5rem;
    border: 1px solid var(--teal-mid);
    background: var(--teal-pale);
}

.ld-spec-label {
    display: block;
    font-size: .56rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--teal-dkr);
    font-weight: 600;
    margin-bottom: .3rem;
}

.ld-spec-value {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--charcoal);
}

/* Certification Badge */
.ld-cert-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .6rem 1rem;
    background: linear-gradient(135deg, rgba(123, 232, 201, .1) 0%, rgba(62, 202, 168, .05) 100%);
    border: 1px solid var(--teal-mid);
    margin-bottom: 1rem;
    border-radius: 4px;
    width: 100%;
    justify-content: center;
}

.ld-cert-badge svg {
    width: 16px;
    height: 16px;
    color: var(--teal-dkr);
    flex-shrink: 0;
}

.ld-cert-badge span {
    font-size: .7rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--teal-dkr);
    font-weight: 600;
}

.ld-description {
    font-size: .82rem;
    color: var(--mid);
    line-height: 1.72;
    margin-bottom: 1.2rem;
}

.ld-view-cert {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .65rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--teal-dkr);
    font-weight: 600;
    text-decoration: none;
    transition: gap .2s, color .2s;
}

.ld-view-cert:hover {
    color: var(--teal);
    gap: .75rem;
}

.ld-view-cert::after {
    content: '→';
    font-size: 1rem;
}

/* ══════════════════════════════════
   RESPONSIVE ADJUSTMENTS
══════════════════════════════════ */

@media (max-width: 1200px) {
    #loose-diamonds {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .ld-wrap {
        gap: 3.5rem;
    }

    .ld-title {
        font-size: clamp(1.8rem, 3.2vw, 2.8rem);
    }
}

@media (max-width: 992px) {
    .ld-wrap {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .ld-left {
        text-align: center;
        padding-right: 0;
    }

    .ld-features {
        align-items: center;
    }

    .ld-feat {
        max-width: 340px;
    }

    .ld-ctas {
        justify-content: center;
    }

    .ld-trust {
        margin: 0 auto;
        max-width: 400px;
        text-align: left;
    }

    .ld-right {
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    #loose-diamonds {
        padding: 4rem 1.25rem;
    }

    .ld-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .ld-intro {
        font-size: .9rem;
        margin-bottom: 2rem;
    }

    .ld-features {
        gap: 1.2rem;
        margin-bottom: 2rem;
    }

    .ld-feat {
        max-width: 100%;
    }

    .ld-ctas {
        flex-direction: column;
        gap: 0.8rem;
    }

    .ld-ctas .btn-s,
    .ld-ctas .btn-o {
        width: 100%;
        min-width: unset;
        justify-content: center;
    }

    .ld-trust {
        padding: 1.2rem;
        font-size: .78rem;
    }

    .ld-featured {
        max-width: 100%;
    }

    .ld-card-image {
        height: 220px;
    }

    .ld-spec-grid {
        gap: .6rem;
    }

    .ld-spec-label {
        font-size: .5rem;
    }

    .ld-spec-value {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    #loose-diamonds {
        padding: 3rem 1.25rem;
    }

    .ld-title {
        font-size: 1.8rem;
    }

    .ld-intro {
        font-size: .85rem;
    }

    .ld-features {
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .ld-feat-icon {
        width: 40px;
        height: 40px;
    }

    .ld-feat-text h4 {
        font-size: .8rem;
    }

    .ld-spec-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: .5rem;
    }

    .ld-cert-badge {
        padding: .5rem .7rem;
    }
}


/* 992px - Tablets */
@media screen and (max-width: 992px) {
    #topbar {
        position: relative;
        display: flex;
        flex-wrap: wrap;
        white-space: normal;
        padding: 0.8rem 1.5rem;
        height: auto;
        justify-content: center;
        gap: 0.8rem;
    }

    .tbl,
    .tbr {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.8rem;
    }

    #navbar {
        position: sticky;
        top: 0;
        padding: 0 1.5rem;
        height: 60px;
    }

    #hero {
        height: calc(100vh - 60px);
        margin-top: 0;
        min-height: 500px;
    }

    .nav-logo img {
        height: 40px;
    }

    nav {
        gap: 0.5rem;
    }

    .ni>a {
        font-size: 0.55rem;
        padding: 0 0.5rem;
    }

    .nav-cta {
        padding: 0.4rem 1rem;
    }

    .sc {
        padding: 0 3rem;
    }

    .sc-q {
        padding: 0 4rem;
    }

    .about-wrap {
        grid-template-columns: 1fr;
        gap: 3.5rem;
        text-align: center;
    }

    .ab-t {
        font-size: 2.8rem;
    }

    .ab-q {
        text-align: left;
    }

    .ab-awards,
    .ab-ctas {
        justify-content: center;
    }

    .ab-photos {
        height: 480px;
        max-width: 500px;
        margin: 0 auto;
        display: flex;
        justify-content: center;
        left: 0;
    }

    .ab-main {
        position: relative;
        margin: 0 auto;
        right: auto;
    }

    .ab-sec,
    .ab-bdg {
        display: none;
    }

    /* simplify on tablet */

    .ft {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }
}

/* Mobile Toggle Styles */
.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 1000;
}

.mobile-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--charcoal);
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
}

.mobile-toggle span:nth-child(1) {
    top: 0;
}

.mobile-toggle span:nth-child(2) {
    top: 11px;
}

.mobile-toggle span:nth-child(3) {
    bottom: 0;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 11px;
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
    bottom: 11px;
}

body.no-scroll {
    overflow: hidden;
}

/* 768px - Phones */
@media screen and (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }

    #navbar {
        padding: 0 1.25rem;
    }

    nav {
        position: fixed;
        top: 50px;
        left: 0;
        right: 0;
        bottom: 0;
        background: #ffffff !important;
        display: block;
        padding: 1.5rem;
        transform: translateX(100%);
        transition: transform 0.5s cubic-bezier(0.76, 0, 0.24, 1);
        z-index: 999;
        overflow-y: auto;
        height: auto;
    }

    nav.active {
        transform: translateX(0);
    }

    .ni {
        width: 100%;
        height: auto;
        display: block;
        margin-bottom: 0.5rem;
    }

    .ni>a {
        font-size: 0.85rem;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        height: auto;
        color: var(--charcoal);
        font-weight: 500;
        letter-spacing: 0.05em;
    }

    .ni>a::after {
        display: none;
    }

    .dd,
    .sdd {
        position: static;
        box-shadow: none;
        border: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        padding-left: 1.2rem;
        margin-top: 0;
        background: var(--off);
    }

    /* Accordion styles */
    .ni.open>.dd,
    .hs.open>.sdd {
        display: block;
    }

    .hs {
        margin-bottom: 0.5rem;
    }

    .has-sub>a {
        position: relative;
        height: auto;
    }

    .has-sub>a::after {
        content: '+';
        position: absolute;
        right: 0;
        left: auto;
        bottom: auto;
        top: 40%;
        transform: translateY(-50%);
        background: transparent;
        width: auto;
        height: auto;
        font-size: 1.6rem;
        font-weight: 300;
        color: var(--charcoal);
        line-height: 1;
        display: block !important;
    }

    .has-sub.open>a::after {
        content: '−';
    }

    .nav-cta {
        margin: 1rem 0;
        width: 100%;
        justify-content: center;
        padding: 1rem;
        font-size: 0.9rem;
    }

    /* Mobile Topbar Content */
    /* Mobile Topbar Content — ensure it stays pinned at the very top */
    #topbar {
        display: flex !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        height: 35px !important;
        padding: 0 1.25rem !important;
        opacity: 1 !important;
        transform: translateY(0) !important;
        z-index: 2000 !important;
        background: var(--teal-dkr) !important;
        justify-content: center !important;
        align-items: center !important;
    }

    #topbar .tbr,
    #topbar .tbsep,
    #topbar .tbl>span {
        display: none !important;
    }

    #topbar .tbl {
        display: flex !important;
        gap: 18.5rem !important;
        width: auto !important;
        align-items: center !important;
        justify-content: center !important;
    }

    #topbar .tbl a span {
        display: none !important;
    }

    #topbar .tbl i {
        font-size: 1.15rem !important;
        color: #fff !important;
    }

    /* Keep the header (navbar) always below the topbar */
    #navbar {
        position: fixed !important;
        top: 35px !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 1000 !important;
        height: 50px !important;
        transform: none !important;
        backdrop-filter: none !important;
    }

    /* Menu should open below the fixed header */
    nav {
        top: 85px !important;
        height: calc(100vh - 85px) !important;
        position: fixed !important;
    }

    #hero {
        height: calc(100vh - 170px) !important;
    }

    .mobile-topbar-items {
        padding-bottom: 1.5rem;
        display: block;
    }

    .mti-call,
    .mti-mail,
    .mti-hours {
        display: block;
        font-size: 0.85rem;
        color: var(--charcoal);
        margin-bottom: 0.5rem;
        text-decoration: none;
        letter-spacing: 0.02em;
        font-weight: 500;
    }

    .mti-hours {
        opacity: 0.6;
        font-size: 0.75rem;
    }

    .mti-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.4rem;
        margin-top: 1.2rem;
    }

    .mti-grid a {
        background: var(--off);
        color: var(--charcoal);
        text-decoration: none;
        font-size: 0.7rem;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        padding: 0.8rem;
        text-align: center;
        border: 1px solid var(--border);
        font-weight: 500;
    }

    .mti-sep {
        margin: 2rem 0 1rem;
        border: 0;
        border-top: 1px solid var(--border);
        opacity: 0.3;
    }


    .sc {
        padding: 0 1.5rem;
        justify-content: flex-end;
        padding-bottom: 5rem;
    }

    .stt {
        font-size: 2.2rem;
        margin-bottom: 0.8rem;
    }

    .sds {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }

    .sbt {
        flex-direction: column;
        width: 100%;
        align-items: stretch;
        gap: 0.6rem;
    }

    .bf,
    .bg {
        justify-content: center;
        text-align: center;
    }

    .sarr {
        display: none;
    }

    .sdots {
        bottom: 1.5rem;
    }

    .qtx {
        font-size: 1.2rem;
        padding: 0 1rem;
    }

    .sc-q {
        padding: 0 1rem;
    }

    .qmk {
        font-size: 5rem;
        margin-bottom: 0;
    }

    #collections,
    #services,
    #about,
    #testimonials,
    footer {
        padding-top: 4rem;
        padding-bottom: 4rem;
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    .cg {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .cc {
        min-height: 320px;
    }

    .cc-f {
        grid-row: span 1;
    }

    .cc-wide {
        grid-column: span 1;
    }




    .sa-row {
        padding: 1.5rem;
    }

    .sa-row-inner {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .svc-grid4 {
        grid-template-columns: 1fr;
    }

    .ab-t {
        font-size: 2.3rem;
        margin-bottom: 1rem;
    }

    .ab-ctas {
        flex-direction: column;
        gap: 0.8rem;
        width: 100%;
    }

    .btn-s,
    .btn-o {
        justify-content: center;
        width: 100%;
    }

    .sec-head {
        margin-bottom: 2.5rem;
    }

    .sh-title {
        font-size: clamp(2rem, 8vw, 2.5rem);
    }

    .tgrid {
        grid-template-columns: 1fr;
    }

    .tc {
        padding: 1.8rem;
    }

    .ft {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        margin-bottom: 2rem;
    }

    .fb {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        justify-content: center;
    }

    /* Footer Accordion (Mobile) */
    .fcol {
        margin-bottom: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .fcol h4 {
        margin-bottom: 0;
        padding: 1.2rem 0;
        cursor: pointer;
        border-bottom: none;
        user-select: none;
    }

    .fcol h4::after {
        content: '+';
        font-family: 'Jost', sans-serif;
        font-size: 1.2rem;
        font-weight: 300;
        color: var(--teal);
        transition: transform 0.3s ease;
    }

    .fcol.open h4::after {
        content: '\2212';
        transform: none;
    }

    .fcol a {
        max-height: 0;
        overflow: hidden;
        margin-bottom: 0;
        opacity: 0;
        transition: max-height 0.4s ease, opacity 0.3s ease, margin-bottom 0.3s ease;
        padding-left: 0.5rem;
    }

    .fcol.open a {
        max-height: 50px;
        /* enough for one line */
        margin-bottom: 0.8rem;
        opacity: 1;
    }

    .fcol.open a:last-child {
        margin-bottom: 1.5rem;
    }
}

/* 480px - Small Mobile */
@media screen and (max-width: 480px) {
    .stt {
        font-size: 2rem;
    }

    .cc-name {
        font-size: 1.4rem;
    }

    .sh-title {
        font-size: 2.1rem;
    }

    .svc-hero-title {
        font-size: 1.8rem;
    }
}

/* ══════════════════════════════════
   NEWSLETTER
══════════════════════════════════ */
#newsletter {
    padding: 5rem 3rem;
    position: relative;
    overflow: hidden;
}

#newsletter::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('https://dummyimage.com/2000x400/fff/fff');
    background-size: cover;
    background-position: center;
    pointer-events: none;
    /*opacity: 0.2;*/
}

/* teal radial glow top right */
#newsletter::after {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(123, 232, 201, .08) 0%, transparent 65%);
    pointer-events: none;
}

.nl-wrap {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.nl-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 4.5vw, 4rem);
    font-weight: 300;
    color: var(--charcoal);
    line-height: 1.12;
    margin-bottom: 1.4rem;
}

.nl-title em {
    font-style: italic;
    color: var(--teal-dkr);
}

.nl-p {
    font-size: 0.95rem;
    color: var(--charcoal);
    line-height: 1.85;
    max-width: 480px;
    font-weight: 300;
}

.nl-form-wrap {
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .08);
    padding: 3.5rem;
    backdrop-filter: blur(12px);
    position: relative;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .3);
}

.nl-input-group {
    display: flex;
    gap: 0;
    width: 100%;
}

.nl-input {
    flex: 1;
    background: rgba(255, 255, 255, .03);
    border: 1px solid var(--mid);
    padding: 0 1rem;
    height: 60px;
    color: #fff;
    font-family: 'Jost', sans-serif;
    font-size: 0.9rem;
    outline: none;
    transition: background .3s, border-color .3s;
    margin-right: 30px;
}

.nl-input:focus {
    background: rgba(255, 255, 255, .06);
    border-color: var(--teal);
}

.nl-form .bf {
    height: 60px;
    padding: 0 2.8rem;
    white-space: nowrap;
}

.nl-privacy {
    font-size: .62rem;
    letter-spacing: .05em;
    color: var(--charcoal);
    margin-top: 1.4rem;
    font-weight: 400;
}

.nl-privacy a {
    color: var(--teal-dkr);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: opacity 0.2s;
}

.nl-privacy a:hover {
    opacity: 0.8;
}

.nl-bg-icon {
    position: absolute;
    bottom: -60px;
    left: -40px;
    width: 320px;
    height: 320px;
    z-index: 1;
    pointer-events: none;
    transform: rotate(-15deg);
    opacity: .05;
}

@media screen and (max-width: 1200px) {
    #newsletter {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

@media screen and (max-width: 992px) {
    .nl-wrap {
        grid-template-columns: 1fr;
        gap: 3.5rem;
        text-align: center;
    }

    .nl-p {
        margin: 0 auto;
    }

    .nl-form-wrap {
        padding: 2.5rem;
    }
}

@media screen and (max-width: 768px) {
    #newsletter {
        padding-top: 5rem;
        padding-bottom: 5rem;
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    .nl-form-wrap {
        padding: 2rem 1.5rem;
    }

    .nl-input-group {
        flex-direction: column;
        gap: .8rem;
    }

    .nl-input {
        border: 1px solid rgba(255, 255, 255, .15);
        width: 100%;
        height: 56px;
    }

    .nl-form .bf {
        width: 100%;
        height: 56px;
        justify-content: center;
    }
}