/* ===================================================================
   BHAGWATI GEMS & JEWELS — Fine Jewellery
   Design system inspired by luxury heritage jewellery houses
   =================================================================== */

:root {
    /* Palette */
    --cream:        #F5F2EC;
    --cream-soft:   #FAF8F3;
    --grey:         #E7E5E0;
    --emerald:      #115E43;   /* logo green — primary brand */
    --dark:         #0F3B2D;   /* deep emerald — dark sections */
    --dark-soft:    #14483A;
    --gold:         #A6884F;
    --gold-deep:    #8C6F3C;
    --gold-light:   #C2A569;
    --gold-text:    #7E6230;   /* darker gold for small text — meets WCAG AA on cream */
    --ink:          #2A2724;
    --muted:        #75706A;
    --line:         #D9D4CB;
    --line-dark:    #2A5B49;

    /* Type */
    --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
    --sans:  "Jost", "Helvetica Neue", Arial, sans-serif;

    /* Layout */
    --maxw: 1280px;
    --gut: 40px;
    --header-h: 78px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--sans);
    font-weight: 300;
    color: var(--ink);
    background: var(--cream-soft);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---------- Accessibility ---------- */
.skip-link {
    position: absolute;
    top: -100px;
    left: 16px;
    z-index: 300;
    padding: 12px 20px;
    background: var(--dark);
    color: var(--cream);
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition: top .2s ease;
}
.skip-link:focus { top: 12px; }

:focus-visible {
    outline: 2px solid var(--gold-deep);
    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ---------- Layout helpers ---------- */
.container {
    width: 100%;
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 var(--gut);
}
.container--narrow { max-width: 860px; }

.section { padding: 96px 0; }
.section--grey { background: var(--grey); }
.section--dark { background: var(--dark); }

.section__head { text-align: center; margin-bottom: 54px; }
.section__cta { text-align: center; margin-top: 54px; }

/* ---------- Typography ---------- */
.eyebrow {
    font-size: 12px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--gold-text);
    font-weight: 400;
    margin-bottom: 16px;
}
.eyebrow--light { color: var(--gold-light); }

.section__title {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.15;
    letter-spacing: 0.01em;
    color: var(--ink);
}
.section__title--light { color: var(--cream-soft); }

/* ---------- Buttons ---------- */
.btn {
    display: inline-block;
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    font-weight: 400;
    padding: 15px 38px;
    border: 1px solid var(--ink);
    color: var(--ink);
    background: transparent;
    transition: all .35s ease;
}
.btn--outline:hover { background: var(--emerald); border-color: var(--emerald); color: var(--cream-soft); }
.btn--sm { padding: 11px 26px; font-size: 10px; letter-spacing: 0.22em; }
.btn--block { display: block; width: 100%; text-align: center; }
.btn--light {
    border-color: rgba(255,255,255,.7);
    color: #fff;
}
.btn--light:hover { background: #fff; color: var(--ink); }

.btn--whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #128C4B;
    border-color: #128C4B;
    color: #fff;
}
.btn--whatsapp:hover { background: #0E723D; border-color: #0E723D; color: #fff; }
.btn--whatsapp svg { flex: 0 0 auto; }

/* ===================================================================
   PLACEHOLDERS  (replace these blocks with real images)
   =================================================================== */
.placeholder {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #E4DFD6;
    background-image:
        linear-gradient(45deg, rgba(166,136,79,.07) 25%, transparent 25%, transparent 75%, rgba(166,136,79,.07) 75%),
        linear-gradient(45deg, rgba(166,136,79,.07) 25%, transparent 25%, transparent 75%, rgba(166,136,79,.07) 75%);
    background-size: 28px 28px;
    background-position: 0 0, 14px 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid var(--line);
}
.placeholder span {
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-text);
    font-weight: 400;
    z-index: 2;
    text-align: center;
    padding: 6px 10px;
}
.placeholder::after {
    content: attr(data-label);
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 9px;
    letter-spacing: 0.14em;
    color: var(--muted);
    white-space: nowrap;
    opacity: .7;
}

/* Aspect-ratio placeholders must size from width, or grid stretch inflates them */
.placeholder--product,
.placeholder--feature,
.placeholder--exp,
.placeholder--celeb,
.placeholder--pdp { height: auto; }

/* ===================================================================
   ANNOUNCEMENT BAR
   =================================================================== */
.announce {
    background: var(--dark);
    color: var(--cream);
    overflow: hidden;
    height: 38px;
}
.announce__track {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 64px;
    height: 100%;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 300;
}
.announce__track span { white-space: nowrap; }
/* messages need ~1300px to fit three-up; drop them before they clip */
@media (max-width: 1360px) {
    .announce__track span:nth-child(3) { display: none; }
}
@media (max-width: 900px) {
    .announce__track span:nth-child(2) { display: none; }
}
@media (max-width: 420px) {
    .announce__track { font-size: 10px; letter-spacing: 0.08em; }
}

/* ===================================================================
   HEADER
   =================================================================== */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--cream-soft);
    border-bottom: 1px solid var(--line);
    transition: box-shadow .3s ease;
}
.header.is-scrolled { box-shadow: 0 6px 24px rgba(0,0,0,.06); }

.header__inner {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 var(--gut);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    grid-template-rows: var(--header-h) auto;
    align-items: center;
    column-gap: 20px;
}

/* Brand */
.brand { display: flex; align-items: center; justify-content: center; gap: 12px; grid-column: 2; }
.brand__logo { height: 60px; width: auto; display: block; }

/* Nav */
.nav { grid-column: 1 / -1; grid-row: 2; padding-bottom: 14px; }
.nav__list {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}
.nav__list a {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink);
    padding: 6px 0;
    position: relative;
    font-weight: 400;
}
.nav__list a::after {
    content: "";
    position: absolute;
    left: 0; bottom: 0;
    width: 0; height: 1px;
    background: var(--gold);
    transition: width .3s ease;
}
.nav__list a:hover { color: var(--emerald); }
.nav__list a:hover::after { width: 100%; }

/* Actions */
.header__actions {
    grid-column: 3;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 24px;
}

.header__cta {
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 400;
    color: var(--cream-soft);
    background: var(--dark);
    border: 1px solid var(--dark);
    padding: 10px 18px;
    white-space: nowrap;
    transition: all .3s ease;
}
.header__cta:hover {
    background: var(--emerald);
    border-color: var(--emerald);
    color: #fff;
}

.nav__item--mobile { display: none; }


/* Hamburger */
.nav-toggle {
    grid-column: 1;
    justify-self: start;
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px 8px;
    margin-left: -8px; /* visually align bars with the container edge */
}
.nav-toggle span {
    display: block;
    height: 1.5px;
    width: 100%;
    background: var(--ink);
    transition: transform .3s ease, opacity .3s ease;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ===================================================================
   HERO
   =================================================================== */
.hero {
    position: relative;
    height: calc(100vh - var(--header-h) - 38px - 44px); /* announce bar + header nav row */
    min-height: 560px;
    max-height: 880px;
    overflow: hidden;
}
.hero__slides { position: absolute; inset: 0; }
.hero__slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.2s ease;
}
.hero__slide.is-active { opacity: 1; }
.placeholder--hero { border: none; }
.placeholder--hero span { font-size: 13px; color: var(--gold-deep); }

.hero__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 8px;
    padding: 0 24px;
    background: linear-gradient(180deg, rgba(0,0,0,.28), rgba(0,0,0,.45));
}
.hero__caption {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: opacity .45s ease;
}
.hero__caption.is-switching { opacity: 0; }
.hero__eyebrow {
    color: rgba(255,255,255,.92);
    font-size: 12px;
    letter-spacing: 0.34em;
    text-transform: uppercase;
}
.hero__title {
    font-family: var(--serif);
    font-weight: 300;
    font-size: clamp(64px, 12vw, 168px);
    line-height: .95;
    color: #fff;
    letter-spacing: 0.02em;
    text-shadow: 0 4px 40px rgba(0,0,0,.35);
}
.hero__sub {
    color: rgba(255,255,255,.92);
    font-size: 13px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    margin-bottom: 22px;
}
.hero__dots {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}
.hero__dots .dot {
    width: 9px; height: 9px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.8);
    transition: background .3s ease;
}
.hero__dots .dot.is-active { background: #fff; }

/* ===================================================================
   BRAND INTRO
   =================================================================== */
.intro { background: var(--cream-soft); }
.intro__inner { max-width: 760px; margin: 0 auto; text-align: center; }
.intro__text {
    color: var(--muted);
    font-size: 16px;
    margin: 26px 0 34px;
}

/* ===================================================================
   SEASON'S FINEST — TABS + PRODUCT GRID
   =================================================================== */
.tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px 40px;
    margin-bottom: 48px;
}
.tab {
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--muted);
    padding-bottom: 8px;
    position: relative;
    transition: color .25s ease;
}
.tab::after {
    content: "";
    position: absolute;
    left: 0; bottom: 0;
    width: 0; height: 1px;
    background: var(--gold);
    transition: width .3s ease;
}
.tab.is-active { color: var(--ink); }
.tab.is-active::after { width: 100%; }

.tab-panel { display: none; }
.tab-panel.is-active { display: block; animation: fade .5s ease; }
@keyframes fade { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}
.product-card { text-align: center; min-width: 0; }
.product-card__img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    margin-bottom: 20px;
    border: 1px solid var(--line);
    background: #FDFCFA;
}
.product-card .placeholder--product {
    aspect-ratio: 1 / 1;
    margin-bottom: 20px;
    background-color: #FDFCFA;
}
.product-card__name {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 21px;
    color: var(--ink);
    margin-bottom: 16px;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===================================================================
   OUR COLLECTION — MOSAIC
   =================================================================== */
.mosaic {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 24px;
    height: 760px;
}
.mosaic__item {
    position: relative;
    overflow: hidden;
    display: block;
}
.mosaic__item--tall { grid-row: 1 / 3; }
.mosaic__item .placeholder,
.mosaic__item img,
.mosaic__item video { transition: transform .6s ease; }
.mosaic__item img,
.mosaic__item video { width: 100%; height: 100%; object-fit: cover; display: block; }
.mosaic__item:hover .placeholder,
.mosaic__item:hover img,
.mosaic__item:hover video { transform: scale(1.04); }
.mosaic__item::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,.35));
    pointer-events: none;
    z-index: 2;
}
.mosaic__label {
    position: absolute;
    left: 0; right: 0; bottom: 30px;
    z-index: 3;
    text-align: center;
    font-family: var(--serif);
    font-size: 30px;
    color: #fff;
    letter-spacing: 0.04em;
    text-shadow: 0 2px 18px rgba(0,0,0,.4);
}

/* ===================================================================
   SIGNATURE CREATION
   =================================================================== */
.signature__inner {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 70px;
    align-items: center;
}
.signature__gallery .placeholder--feature {
    aspect-ratio: 4 / 4.4;
    background-color: #FDFCFA;
}
.signature__feature {
    aspect-ratio: 4 / 4.4;
    overflow: hidden;
    border: 1px solid var(--line);
}
.signature__feature img { width: 100%; height: 100%; object-fit: cover; display: block; }
.signature__thumbs {
    display: flex;
    gap: 14px;
    margin-top: 16px;
}
.placeholder--thumb {
    width: 74px; height: 74px;
    flex: 0 0 auto;
    cursor: pointer;
    background-color: #FDFCFA;
    background-size: 14px 14px;
}
.placeholder--thumb span { font-size: 10px; }
.placeholder--thumb::after { display: none; }
.placeholder--thumb.is-active { border-color: var(--gold); }

.thumb {
    width: 74px; height: 74px;
    flex: 0 0 auto;
    padding: 0;
    border: 1px solid var(--line);
    overflow: hidden;
    background: #FDFCFA;
    transition: border-color .25s ease;
}
.thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.thumb.is-active { border-color: var(--gold); }

.signature__name {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 34px;
    color: var(--ink);
    margin-bottom: 22px;
}
.signature__detail .btn--block { max-width: 320px; }
.signature__sku {
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    margin: 18px 0 22px;
}
.spec { border-top: 1px solid var(--line); max-width: 420px; }
.spec li {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
    font-size: 13px;
    letter-spacing: 0.04em;
}
.spec li span:first-child { color: var(--muted); text-transform: uppercase; font-size: 11px; letter-spacing: 0.14em; }
.spec li span:last-child { color: var(--ink); font-weight: 400; }

/* ===================================================================
   EXPERIENCE
   =================================================================== */
.experience__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}
.experience__content { max-width: 460px; }
.experience__text {
    color: var(--muted);
    font-size: 16px;
    margin: 24px 0 32px;
}
.experience__media .placeholder--exp {
    aspect-ratio: 5 / 4;
    background-color: #DED8CC;
}
.experience__media img {
    width: 100%;
    aspect-ratio: 5 / 4;
    object-fit: cover;
    display: block;
    border: 1px solid var(--line);
}

/* ===================================================================
   EDITORIAL + CAROUSEL
   =================================================================== */
.carousel { position: relative; }
.carousel__viewport { overflow: hidden; }
.carousel__track {
    display: flex;
    gap: 24px;
    transition: transform .6s cubic-bezier(.45,.05,.25,1);
}
.editorial-card { flex: 0 0 calc((100% - 72px) / 4); margin: 0; }
.editorial-card img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    display: block;
    margin-bottom: 16px;
    border: 1px solid var(--line);
    transition: transform .5s ease;
}
.editorial-card:hover img { transform: scale(1.02); }
.editorial-card figcaption {
    text-align: center;
    font-family: var(--serif);
    font-size: 20px;
    color: var(--ink);
}

.carousel__arrow {
    position: absolute;
    top: 38%;
    transform: translateY(-50%);
    width: 46px; height: 46px;
    border: 1px solid var(--line);
    background: var(--cream-soft);
    z-index: 5;
    transition: all .3s ease;
}
.carousel__arrow::before {
    content: "";
    position: absolute;
    top: 50%; left: 50%;
    width: 9px; height: 9px;
    border-top: 1.4px solid var(--ink);
    border-right: 1.4px solid var(--ink);
}
.carousel__arrow--prev { left: -14px; }
.carousel__arrow--prev::before { transform: translate(-30%, -50%) rotate(-135deg); }
.carousel__arrow--next { right: -14px; }
.carousel__arrow--next::before { transform: translate(-70%, -50%) rotate(45deg); }
.carousel__arrow:hover { background: var(--emerald); border-color: var(--emerald); }
.carousel__arrow:hover::before { border-color: #fff; }
.carousel__arrow--light { background: transparent; border-color: var(--line-dark); }
.carousel__arrow--light::before { border-color: var(--cream); }
.carousel__arrow--light:hover { background: var(--gold); border-color: var(--gold); }

/* ===================================================================
   TESTIMONIALS
   =================================================================== */
.testimonials .quote {
    flex: 0 0 100%;
    text-align: center;
    padding: 0 6%;
}
.testimonials .quote p {
    font-family: var(--serif);
    font-size: clamp(22px, 3vw, 30px);
    line-height: 1.5;
    color: var(--cream);
    font-style: italic;
    margin-bottom: 24px;
}
.testimonials .quote cite {
    font-style: normal;
    font-size: 12px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--gold-light);
}
.testimonials .carousel__arrow--prev { left: -8px; }
.testimonials .carousel__arrow--next { right: -8px; }

/* ===================================================================
   FAQ ACCORDION
   =================================================================== */
.accordion__item { border-bottom: 1px solid var(--line); }
.accordion__head {
    width: 100%;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 24px 0;
    font-family: var(--serif);
    font-size: 21px;
    color: var(--ink);
    transition: color .25s ease;
}
.accordion__head:hover { color: var(--gold-deep); }
.accordion__sign {
    position: relative;
    width: 14px; height: 14px;
    flex: 0 0 auto;
}
.accordion__sign::before,
.accordion__sign::after {
    content: "";
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    background: var(--gold-deep);
}
.accordion__sign::before { width: 14px; height: 1.4px; }
.accordion__sign::after { width: 1.4px; height: 14px; transition: transform .3s ease; }
.accordion__item.is-open .accordion__sign::after { transform: translate(-50%, -50%) scaleY(0); }

.accordion__body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
}
.accordion__body p {
    color: var(--muted);
    font-size: 15px;
    padding-bottom: 24px;
}

/* ===================================================================
   FOOTER
   =================================================================== */
.footer { background: var(--dark); color: #BFC9C2; }
.footer__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.6fr;
    gap: 48px;
    padding-top: 80px;
    padding-bottom: 60px;
}
.footer__logo {
    width: 200px;
    background: var(--cream-soft);
    padding: 14px 20px;
    margin-bottom: 20px;
    display: block;
}
.footer__tagline { font-size: 14px; color: #9DB3A8; max-width: 280px; }

.footer__title {
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-light);
    font-weight: 400;
    margin-bottom: 22px;
}
.footer__links li { margin-bottom: 12px; }
.footer__links a {
    font-size: 13px;
    color: #BFC9C2;
    transition: color .25s ease;
}
.footer__links a:hover { color: var(--cream); }

.footer__note { font-size: 13px; color: #9DB3A8; margin-bottom: 18px; }
.footer__contact { font-size: 13px; line-height: 2; color: #BFC9C2; }
.footer__contact a:hover { color: var(--gold-light); }

.footer__social {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 22px;
}
.footer__social a {
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #BFC9C2;
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
    transition: all .25s ease;
}
.footer__social a:hover { color: var(--gold-light); border-color: var(--gold); }

.footer__bottom { border-top: 1px solid var(--line-dark); }
.footer__bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    padding-bottom: 24px;
    font-size: 12px;
    letter-spacing: 0.08em;
    color: #93A89D;
}

/* ===================================================================
   RESPONSIVE
   =================================================================== */
@media (max-width: 1080px) {
    .product-grid { grid-template-columns: repeat(2, 1fr); gap: 36px 28px; }
    .editorial-card { flex-basis: calc((100% - 48px) / 3); }
    .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 860px) {
    .section { padding: 68px 0; }
    :root { --gut: 24px; }

    .header__inner {
        grid-template-columns: auto 1fr auto;
        grid-template-rows: 64px;
    }
    .nav-toggle { display: flex; }
    .brand { grid-column: 2; justify-self: center; }
    .brand__logo { height: 46px; }

    .nav {
        position: fixed;
        top: 0; left: 0;
        width: 82%;
        max-width: 340px;
        height: 100vh;
        background: var(--cream-soft);
        z-index: 200;
        transform: translateX(-100%);
        transition: transform .4s ease;
        padding: 90px 32px 32px;
        box-shadow: 0 0 60px rgba(0,0,0,.18);
        overflow-y: auto;
        grid-row: auto;
    }
    .nav.is-open { transform: translateX(0); }
    .nav__list { flex-direction: column; align-items: flex-start; gap: 0; }
    .nav__list li { width: 100%; border-bottom: 1px solid var(--line); }
    .nav__list a { display: block; padding: 16px 0; font-size: 13px; }
    .nav__item--mobile { display: block; }
    .nav__item--mobile a { color: var(--gold-deep); font-weight: 500; }
    .header__cta { display: none; }

    .nav-overlay {
        position: fixed; inset: 0;
        background: rgba(0,0,0,.4);
        /* below the sticky header's stacking context (100) so the drawer inside it stays tappable */
        z-index: 99;
        opacity: 0; visibility: hidden;
        transition: opacity .3s ease;
    }
    .nav-overlay.is-open { opacity: 1; visibility: visible; }

    .header__actions { gap: 8px; }
    .header__search { padding: 12px 10px; }

    .mosaic {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        height: auto;
    }
    .mosaic__item--tall { grid-row: auto; }
    .mosaic__item { height: 360px; }

    .signature__inner,
    .experience__inner { grid-template-columns: 1fr; gap: 40px; }
    .experience__media { order: -1; }

    .editorial-card { flex-basis: calc((100% - 24px) / 2); }

    .footer__grid { grid-template-columns: 1fr 1fr; }
    .footer__col--brand { grid-column: 1 / -1; }
    .footer__bottom-inner { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 540px) {
    .product-grid { grid-template-columns: 1fr; }
    .tabs { gap: 14px 26px; }
    .editorial-card { flex-basis: 100%; }
    .footer__grid { grid-template-columns: 1fr; }
    .hero__title { font-size: 22vw; }
    .btn { padding: 16px 38px; }
    .btn--sm { padding: 14px 26px; }
}

/* ===================================================================
   PRODUCT DETAIL PAGE (PDP)
   =================================================================== */
.breadcrumb {
    background: var(--cream-soft);
    border-bottom: 1px solid var(--line);
    padding: 16px 0;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
}
.breadcrumb a { color: var(--muted); transition: color .25s ease; }
.breadcrumb a:hover { color: var(--gold-text); }
.breadcrumb__sep { margin: 0 10px; color: var(--line); }
.breadcrumb__current { color: var(--ink); }

.pdp { padding: 56px 0 80px; background: var(--cream-soft); }
.pdp__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

/* Gallery */
.pdp__gallery { position: sticky; top: calc(var(--header-h) + 20px); }
.pdp__main { position: relative; }
.pdp__main .placeholder--pdp {
    aspect-ratio: 4 / 5;
    background-color: #DED8CC;
}
.pdp__main img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    display: block;
    border: 1px solid var(--line);
}
.pdp__zoom {
    position: absolute;
    right: 14px;
    bottom: 14px;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink);
    background: rgba(255,255,255,.9);
    border: 1px solid var(--line);
    padding: 8px 14px;
    transition: all .25s ease;
}
.pdp__zoom:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

.pdp__thumbs {
    display: flex;
    gap: 14px;
    margin-top: 16px;
}
.pdp__thumbs .placeholder--thumb {
    width: 84px;
    height: 100px;
}
.pdp__thumbs .thumb {
    width: 84px;
    height: 100px;
}

/* Details */
.pdp__detail { padding-top: 6px; }
.pdp__title {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(30px, 4vw, 42px);
    line-height: 1.15;
    color: var(--ink);
    margin-bottom: 28px;
}
.pdp__request { max-width: 100%; }
.pdp__divider {
    height: 1px;
    background: var(--line);
    margin: 32px 0 8px;
}

/* PDP accordion variant */
.accordion--pdp .accordion__item {
    border: 1px solid var(--line);
    margin-bottom: 10px;
}
.accordion--pdp .accordion__head {
    font-family: var(--sans);
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink);
    padding: 16px 18px;
    background: var(--cream);
}
.accordion--pdp .accordion__head:hover { color: var(--gold-deep); }
.accordion--pdp .accordion__body p {
    font-size: 14px;
    color: var(--muted);
    padding: 16px 18px 18px;
}
.accordion--pdp .accordion__body .spec--pdp {
    margin: 0 18px 8px;
    max-width: none;
}
.accordion--pdp .accordion__body .pdp__sku {
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding-top: 0;
}
.accordion--pdp .accordion__item.is-open .accordion__head { border-bottom: 1px solid var(--line); }

/* Hallmark + note */
.pdp__hallmark {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 26px 0 16px;
    font-size: 13px;
    letter-spacing: 0.08em;
    color: var(--ink);
}
.pdp__hallmark-badge {
    font-family: var(--serif);
    font-size: 13px;
    letter-spacing: 0.1em;
    color: var(--gold-deep);
    border: 1px solid var(--gold);
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}
.pdp__note {
    font-size: 12.5px;
    line-height: 1.7;
    color: var(--muted);
    font-style: italic;
}

/* Divider strip between PDP and related */
.pdp__strip { height: 56px; background: var(--grey); }

/* ===================================================================
   CUSTOM PAGES
   =================================================================== */
.page__title {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(32px, 5vw, 52px);
    line-height: 1.1;
    margin-bottom: 30px;
    text-align: center;
}
.page__figure {
    margin: 0 0 36px;
}
.page__figure img {
    width: 100%;
    aspect-ratio: 16 / 8;
    object-fit: cover;
    display: block;
    border: 1px solid var(--line);
}
.page__body p {
    color: var(--muted);
    font-size: 16px;
    margin-bottom: 20px;
}
.page__body h2 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 28px;
    color: var(--ink);
    margin: 36px 0 14px;
}
.page__body a { color: var(--emerald); text-decoration: underline; }

/* ===================================================================
   SCROLLING VIDEO BANNERS
   =================================================================== */
.video-banner {
    position: relative;
    height: 72vh;
    min-height: 420px;
    max-height: 760px;
    overflow: hidden;
}
.video-banner__media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.video-banner__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
    padding: 0 24px;
    background: linear-gradient(180deg, rgba(0,0,0,.22), rgba(0,0,0,.42));
}
.video-banner__eyebrow {
    color: rgba(255,255,255,.92);
    font-size: 12px;
    letter-spacing: 0.34em;
    text-transform: uppercase;
}
.video-banner__title {
    font-family: var(--serif);
    font-weight: 300;
    font-size: clamp(44px, 8vw, 104px);
    line-height: .95;
    color: #fff;
    letter-spacing: 0.02em;
    text-shadow: 0 4px 40px rgba(0,0,0,.35);
}
.video-banner__sub {
    color: rgba(255,255,255,.92);
    font-size: 13px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    margin-bottom: 18px;
}
@media (max-width: 640px) {
    .video-banner { height: 60vh; min-height: 340px; }
}

/* ===================================================================
   BADGES + SOLD STATE
   =================================================================== */
.product-card__media { position: relative; display: block; }
.badge {
    position: absolute;
    top: 12px; left: 12px;
    z-index: 2;
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 6px 12px;
    color: #fff;
    background: var(--emerald);
}
.badge--bestseller { background: var(--gold-deep); }
.badge--sold { background: #7A7A7A; }
.btn--sold {
    background: var(--grey);
    border-color: var(--line);
    color: var(--muted);
    cursor: not-allowed;
}
.btn--sold:hover { background: var(--grey); border-color: var(--line); color: var(--muted); }

/* ===================================================================
   ANNOUNCE RATES
   =================================================================== */
.announce__rates { color: var(--gold-light); font-weight: 400; }

/* ===================================================================
   HEADER SEARCH + OVERLAY
   =================================================================== */
.header__search {
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink);
    padding: 6px 0;
    transition: color .25s ease;
}
.header__search:hover { color: var(--emerald); }

.search-overlay {
    position: fixed;
    inset: 0;
    z-index: 300;
    background: rgba(15, 59, 45, .96);
    overflow-y: auto;
    padding: 8vh 24px 60px;
}
.search-overlay__inner { max-width: 720px; margin: 0 auto; }
.search-overlay__bar { display: flex; gap: 12px; align-items: center; margin-bottom: 32px; }
.search-overlay__bar input {
    flex: 1;
    font-family: var(--serif);
    font-size: clamp(20px, 3vw, 28px);
    padding: 14px 4px;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,.4);
    color: #fff;
    outline: none;
}
.search-overlay__bar input::placeholder { color: rgba(255,255,255,.45); font-size: 0.7em; letter-spacing: .04em; }
.search-overlay__bar input:focus { border-bottom-color: var(--gold-light); }
.search-overlay__close {
    font-size: 34px;
    line-height: 1;
    color: rgba(255,255,255,.8);
    padding: 4px 10px;
}
.search-overlay__close:hover { color: #fff; }
.search-overlay__results { display: flex; flex-direction: column; gap: 10px; }
.search-result {
    display: grid;
    grid-template-columns: 64px 1fr;
    grid-template-rows: auto auto;
    column-gap: 16px;
    align-items: center;
    background: rgba(255,255,255,.06);
    padding: 10px 14px;
    transition: background .25s ease;
}
.search-result:hover { background: rgba(255,255,255,.14); }
.search-result img {
    grid-row: 1 / 3;
    width: 64px; height: 64px;
    object-fit: cover;
    border: 1px solid rgba(255,255,255,.2);
}
.search-result__name { font-family: var(--serif); font-size: 19px; color: #fff; }
.search-result__meta { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-light); }
.search-empty { color: rgba(255,255,255,.7); text-align: center; padding: 24px 0; }

/* ===================================================================
   APPOINTMENT FORM
   =================================================================== */
.appointment__form { max-width: 720px; margin: 0 auto; }
.appointment__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 24px;
    margin-bottom: 18px;
}
.appointment__form label {
    display: block;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 7px;
}
.appointment__form input {
    width: 100%;
    font-family: var(--sans);
    font-weight: 300;
    font-size: 15px;
    padding: 13px 14px;
    border: 1px solid var(--line);
    background: var(--cream-soft);
    color: var(--ink);
}
.appointment__form input:focus { outline: 2px solid var(--gold); outline-offset: 1px; }
.appointment__actions { text-align: center; margin-top: 10px; }
.appointment__status { margin-top: 14px; font-size: 14px; color: var(--emerald); min-height: 20px; }
@media (max-width: 640px) { .appointment__row { grid-template-columns: 1fr; } }

/* ===================================================================
   PDP SHARE
   =================================================================== */
.pdp__share {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 14px;
    flex-wrap: wrap;
}
.pdp__share-label {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
}
.pdp__share-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink);
    border: 1px solid var(--line);
    padding: 9px 16px;
    background: transparent;
    transition: all .25s ease;
}
.pdp__share-btn:hover { border-color: var(--emerald); color: var(--emerald); }

/* ===================================================================
   LIGHTBOX
   =================================================================== */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 400;
    background: rgba(10, 10, 10, .93);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.lightbox img {
    max-width: 92vw;
    max-height: 88vh;
    object-fit: contain;
    transition: transform .2s ease;
    cursor: zoom-in;
}
.lightbox__close {
    position: absolute;
    top: 18px; right: 26px;
    font-size: 42px;
    line-height: 1;
    color: rgba(255,255,255,.85);
}
.lightbox__close:hover { color: #fff; }
.lightbox__hint {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255,255,255,.55);
}

/* ===================================================================
   INSTAGRAM
   =================================================================== */
.instagram .section__title a { color: inherit; transition: color .25s ease; }
.instagram .section__title a:hover { color: var(--emerald); }
.insta-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.insta-grid__item { display: block; overflow: hidden; border: 1px solid var(--line); }
.insta-grid__item img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}
.insta-grid__item:hover img { transform: scale(1.05); }
@media (max-width: 860px) { .insta-grid { grid-template-columns: repeat(2, 1fr); } }

/* Related products */
.related .product-card__name { min-height: 0; margin-bottom: 0; }
.related .product-card { display: block; }
.related .product-card .placeholder--product { transition: transform .5s ease; }
.related .product-card:hover .placeholder--product { transform: scale(1.03); }

@media (max-width: 860px) {
    .pdp__inner { grid-template-columns: 1fr; gap: 32px; }
    .pdp__gallery { position: static; }
    .pdp__main .placeholder--pdp { aspect-ratio: 4 / 4.6; }
}
