:root {
    --sd-navy: #071b3a;
    --sd-navy-2: #0d2a55;
    --sd-blue: #163f79;
    --sd-gold: #b58a35;
    --sd-gold-dark: #8c6824;
    --sd-gold-soft: #ead7a9;
    --sd-ivory: #fbf8f2;
    --sd-ivory-2: #f4eee2;
    --sd-white: #ffffff;
    --sd-ink: #172235;
    --sd-muted: #6f7680;
    --sd-line: rgba(7, 27, 58, .14);
    --sd-shadow: 0 24px 70px rgba(7, 27, 58, .11);
    --sd-serif: 'Cormorant Garamond', Georgia, serif;
    --sd-sans: 'Manrope', Arial, sans-serif;
}

html { scroll-behavior: auto; }
body {
    margin: 0;
    background: var(--sd-ivory);
    color: var(--sd-ink);
    font-family: var(--sd-sans);
    -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; }
img { max-width: 100%; }
::selection { background: var(--sd-navy); color: #fff; }

.sd-announcement {
    background: var(--sd-navy);
    color: rgba(255,255,255,.92);
    min-height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 7px 18px;
    text-align: center;
    font-size: 11px;
    letter-spacing: .16em;
    text-transform: uppercase;
}
.sd-announcement span { opacity: .65; margin: 0 11px; }

.site-header {
    position: relative;
    z-index: 1000;
    background: rgba(251,248,242,.98);
    border-bottom: 1px solid var(--sd-line);
}
.sd-brandbar {
    min-height: 105px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 30px;
    border-bottom: 1px solid var(--sd-line);
}
.sd-brandbar-side { display: flex; align-items: center; gap: 10px; }
.sd-brandbar-side:last-child { justify-content: flex-end; }
.sd-icon-link {
    width: 43px;
    height: 43px;
    border: 1px solid var(--sd-line);
    display: inline-grid;
    place-items: center;
    text-decoration: none;
    background: transparent;
    transition: .3s ease;
}
.sd-icon-link:hover { background: var(--sd-navy); color: #fff; border-color: var(--sd-navy); }
.sd-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}
.sd-brand img { width: 168px; height: 76px; object-fit: contain; mix-blend-mode: multiply; }
.sd-brand-fallback {
    font-family: var(--sd-serif);
    color: var(--sd-navy);
    font-size: 36px;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.sd-text-link {
    text-decoration: none;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: .13em;
    padding: 13px 17px;
    border: 1px solid var(--sd-navy);
    transition: .3s ease;
}
.sd-text-link:hover { background: var(--sd-navy); color: #fff; }

.sd-mainnav { background: var(--sd-ivory); }
.sd-mainnav .navbar { padding: 0; }
.sd-mainnav .navbar-nav { width: 100%; justify-content: center; gap: 2px; }
.sd-mainnav .nav-link {
    position: relative;
    padding: 17px 21px !important;
    color: var(--sd-navy) !important;
    font-size: 15px;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-weight: 600;
}
.sd-mainnav .nav-link::after {
    content: '';
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 10px;
    height: 1px;
    transform: scaleX(0);
    background: var(--sd-gold);
    transition: transform .25s ease;
}
.sd-mainnav .nav-link:hover::after,
.sd-mainnav .nav-link.active::after { transform: scaleX(1); }
.sd-mega { position: static; }
.sd-mega-menu {
    border: 0;
    border-top: 1px solid var(--sd-line);
    border-radius: 0;
    margin: 0;
    width: 100%;
    left: 0;
    right: 0;
    padding: 30px 0 34px;
    background: rgba(251,248,242,.99);
    box-shadow: 0 24px 55px rgba(7,27,58,.12);
}
.sd-mega-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 45px; }
.sd-mega-title {
    font-family: var(--sd-serif);
    color: var(--sd-navy);
    font-size: 25px;
    margin-bottom: 16px;
}
.sd-mega-links { display: grid; grid-template-columns: 1fr; gap: 0; }
.sd-mega-links a { text-decoration: none; padding: 8px 0; border-bottom: 1px solid rgba(7,27,58,.08); color: #38465a; }
.sd-mega-links a:hover { color: var(--sd-gold-dark); padding-left: 5px; }
.sd-mega-feature { display: grid; grid-template-columns: 130px 1fr; background: var(--sd-navy); color: #fff; min-height: 170px; }
.sd-mega-feature img { width: 100%; height: 100%; object-fit: cover; }
.sd-mega-feature div { padding: 23px; align-self: center; }
.sd-mega-feature small { display: block; color: var(--sd-gold-soft); letter-spacing: .14em; text-transform: uppercase; margin-bottom: 6px; }
.sd-mega-feature strong { font-family: var(--sd-serif); font-size: 25px; font-weight: 500; line-height: 1.1; }

.sd-mobilebar { display: none; min-height: 72px; align-items: center; justify-content: space-between; }
.sd-mobilebar .sd-brand img { width: 108px; height: 58px; }
.sd-mobile-toggle { border: 0; background: transparent; color: var(--sd-navy); font-size: 23px; }

.sd-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--sd-gold-dark);
    text-transform: uppercase;
    letter-spacing: .2em;
    font-size: 11px;
    font-weight: 700;
}
.sd-kicker::before { content: ''; width: 34px; height: 1px; background: var(--sd-gold); }
.sd-display {
    color: var(--sd-navy);
    font-family: var(--sd-serif);
    font-weight: 500;
    line-height: .98;
    letter-spacing: -.025em;
}
.sd-section-head { max-width: 760px; margin: 0 auto 42px; text-align: center; }
.sd-section-head .sd-display { font-size: clamp(42px, 4vw, 72px); margin: 12px 0 14px; }
.sd-section-head p { color: var(--sd-muted); max-width: 620px; margin: auto; line-height: 1.75; }
.sd-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 12px 23px;
    border: 1px solid var(--sd-navy);
    background: var(--sd-navy);
    color: #fff;
    text-decoration: none;
    border-radius: 0;
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase;
    transition: .3s ease;
}
.sd-btn:hover { background: transparent; color: var(--sd-navy); }
.sd-btn-light { background: transparent; color: var(--sd-navy); }
.sd-btn-light:hover { background: var(--sd-navy); color: #fff; }
.sd-btn-gold { background: var(--sd-gold); border-color: var(--sd-gold); color: #fff; }
.sd-btn-gold:hover { background: var(--sd-gold-dark); border-color: var(--sd-gold-dark); color: #fff; }

.sd-hero { background: var(--sd-navy); position: relative; }
.sd-hero .carousel-item { min-height: min(76vh, 760px); }
.sd-hero-image { width: 100%; height: min(76vh, 760px); object-fit: cover; display: block; }
.sd-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(4,15,33,.72) 0%, rgba(4,15,33,.2) 48%, rgba(4,15,33,.06) 100%);
}
.sd-hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    color: #fff;
}
.sd-hero-copy { max-width: 600px; padding: 30px 0 58px; }
.sd-hero-copy .sd-kicker { color: var(--sd-gold-soft); }
.sd-hero-copy h1, .sd-hero-copy h2 {
    font-family: var(--sd-serif);
    font-size: clamp(50px, 7vw, 90px);
    font-weight: 500;
    line-height: .92;
    margin: 18px 0 20px;
    max-width: 680px;
}
.sd-hero-copy p { max-width: 520px; line-height: 1.8; color: rgba(255,255,255,.84); }
.sd-hero .carousel-indicators { margin-bottom: 25px; }
.sd-hero .carousel-indicators [data-bs-target] { width: 42px; height: 1px; opacity: .5; }
.sd-hero .carousel-indicators .active { opacity: 1; background-color: var(--sd-gold-soft); }
.sd-hero-fallback { min-height: 640px; display: grid; grid-template-columns: 1.05fr .95fr; }
.sd-hero-fallback-copy { padding: 100px max(7vw,40px); display: flex; flex-direction: column; justify-content: center; color: #fff; }
.sd-hero-fallback-copy h1 { font-family: var(--sd-serif); font-size: clamp(56px,7vw,96px); line-height: .9; font-weight: 500; margin: 18px 0 25px; }
.sd-hero-fallback-copy p { color: rgba(255,255,255,.75); line-height: 1.8; max-width: 520px; }
.sd-hero-fallback-image { background: url('../img/dimond.jpg') center/cover no-repeat; min-height: 640px; }

.sd-assurance { background: #fff; border-bottom: 1px solid var(--sd-line); }
.sd-assurance-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.sd-assurance-item { padding: 20px 24px; display: flex; align-items: center; gap: 13px; border-right: 1px solid var(--sd-line); }
.sd-assurance-item:last-child { border-right: 0; }
.sd-assurance-item i { color: var(--sd-gold-dark); font-size: 21px; }
.sd-assurance-item strong { display: block; color: var(--sd-navy); font-family: var(--sd-serif); font-size: 19px; font-weight: 600; }
.sd-assurance-item small { color: var(--sd-muted); font-size: 11px; }

.sd-section { padding: 90px 0; }
.sd-category-stage { background: var(--sd-ivory); overflow: hidden; }
.sd-category-rail {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(190px, 1fr);
    gap: 18px;
    overflow-x: auto;
    padding: 5px 3px 22px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
}
.sd-category-card { scroll-snap-align: start; text-decoration: none; text-align: center; display: block; }
.sd-category-media { position: relative; aspect-ratio: 4/5; overflow: hidden; background: #ede8df; }
.sd-category-media::after { content: ''; position: absolute; inset: 0; border: 1px solid rgba(255,255,255,.45); margin: 9px; pointer-events: none; }
.sd-category-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s cubic-bezier(.2,.7,.2,1); }
.sd-category-card:hover img { transform: scale(1.055); }
.sd-category-card h3 { margin: 16px 0 4px; color: var(--sd-navy); font-family: var(--sd-serif); font-size: 25px; font-weight: 500; }
.sd-category-card span { color: var(--sd-muted); text-transform: uppercase; letter-spacing: .14em; font-size: 10px; }

.sd-editorial { background: #fff; }
.sd-editorial-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; min-height: 720px; }
.sd-editorial-media { min-height: 720px; overflow: hidden; }
.sd-editorial-media img { width: 100%; height: 100%; object-fit: cover; }
.sd-editorial-copy { padding: clamp(55px,8vw,115px); display: flex; flex-direction: column; justify-content: center; background: var(--sd-navy); color: #fff; }
.sd-editorial-copy .sd-kicker { color: var(--sd-gold-soft); }
.sd-editorial-copy .sd-display { color: #fff; font-size: clamp(50px,4vw,82px); margin: 20px 0; }
.sd-editorial-copy p { color: rgba(255,255,255,.72); line-height: 1.9; max-width: 520px; }
.sd-editorial-copy .sd-btn { align-self: flex-start; border-color: #fff; background: #fff; color: var(--sd-navy); margin-top: 20px; }
.sd-editorial-copy .sd-btn:hover { background: transparent; color: #fff; }

.sd-product-section { background: var(--sd-ivory); }
.sd-product-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 20px; }
.product-card, .sd-product-card {
    height: 100%;
    background: transparent;
    box-shadow: none;
    border: 0;
    border-radius: 12px;
    overflow: hidden;
    transition: .35s ease;
}
.sd-product-media, .product-card > a:first-child {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 4 / 4.3;
    background: #eee9e0;
}
.sd-product-media img, .product-card > a:first-child img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform .65s cubic-bezier(.2,.7,.2,1);
}
.sd-product-card:hover .sd-product-media img, .product-card:hover > a:first-child img { transform: scale(1.05); }
.sd-product-badge { position: absolute; left: 12px; top: 12px; background: rgba(251,248,242,.94); color: var(--sd-navy); padding: 7px 10px; font-size: 9px; letter-spacing: .14em; text-transform: uppercase; }
.sd-product-body, .product-card-body { padding: 16px 3px 4px !important; background: transparent !important; text-align: left !important; }
.sd-product-body small { color: var(--sd-gold-dark); text-transform: uppercase; font-size: 9px; letter-spacing: .16em; }
.sd-product-body h3, .product-card-body h5 { font-family: var(--sd-serif); font-size: 25px !important; line-height: 1.1; font-weight: 600; margin: 7px 0 !important; color: var(--sd-navy) !important; }
.sd-product-body h3 a, .product-card-body h5 a { text-decoration: none; color: inherit !important; }
.sd-product-body p, .product-card-body .price { color: var(--sd-muted) !important; margin: 0 0 10px !important; font-size: 13px !important; }
.product-card-body .btn { display: none; }

.sd-story-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.sd-story-card { position: relative; min-height: 600px; overflow: hidden; color: #fff; }
.sd-story-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.sd-story-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 35%, rgba(4,15,33,.78) 100%); }
.sd-story-card:hover img { transform: scale(1.035); }
.sd-story-card-content { position: absolute; z-index: 2; left: 38px; right: 38px; bottom: 38px; }
.sd-story-card h3 { font-family: var(--sd-serif); font-size: clamp(42px,5vw,68px); font-weight: 500; line-height: .95; margin: 9px 0 14px; }
.sd-story-card p { max-width: 520px; color: rgba(255,255,255,.8); }
.sd-story-card a { color: #fff; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.65); padding-bottom: 5px; text-transform: uppercase; font-size: 10px; letter-spacing: .14em; }

.sd-karat { background: var(--sd-navy); color: #fff; }
.sd-karat .sd-section-head .sd-display { color: #fff; }
.sd-karat .sd-section-head p { color: rgba(255,255,255,.67); }
.sd-karat-grid { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid rgba(255,255,255,.18); border-bottom: 1px solid rgba(255,255,255,.18); }
.sd-karat-card { min-height: 360px; padding: 45px 25px; display: flex; flex-direction: column; justify-content: space-between; border-right: 1px solid rgba(255,255,255,.18); transition: .35s ease; }
.sd-karat-card:last-child { border-right: 0; }
.sd-karat-card:hover { background: rgba(255,255,255,.06); }
.sd-karat-number { font-family: var(--sd-serif); font-size: 62px; line-height: .9; color: var(--sd-gold-soft); }
.sd-karat-card h3 { font-family: var(--sd-serif); font-size: 31px; font-weight: 500; }
.sd-karat-card p { color: rgba(255,255,255,.62); font-size: 13px; line-height: 1.7; }

.sd-occasion-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 12px; }
.sd-occasion-card { position: relative; min-height: 480px; overflow: hidden; text-decoration: none; color: #fff; }
.sd-occasion-card img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; transition: transform .7s ease; }
.sd-occasion-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,27,58,.05), rgba(7,27,58,.74)); }
.sd-occasion-card:hover img { transform: scale(1.06); }
.sd-occasion-card span { position: absolute; z-index: 2; left: 19px; right: 19px; bottom: 20px; font-family: var(--sd-serif); font-size: 29px; }

.sd-brand-story { background: var(--sd-ivory-2); }
.sd-brand-story-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: center; }
.sd-brand-story-image { position: relative; padding: 0 0 45px 45px; }
.sd-brand-story-image::before { content: ''; position: absolute; left: 0; bottom: 0; width: 75%; height: 75%; border: 1px solid var(--sd-gold); }
.sd-brand-story-image img { position: relative; width: 100%; max-height: 700px; object-fit: cover; }
.sd-brand-story-copy .sd-display { font-size: clamp(48px,6vw,80px); margin: 18px 0; }
.sd-brand-story-copy p { color: var(--sd-muted); line-height: 1.9; }
.sd-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 15px; margin: 34px 0; padding-top: 25px; border-top: 1px solid var(--sd-line); }
.sd-stat strong { display: block; font-family: var(--sd-serif); color: var(--sd-navy); font-size: 36px; }
.sd-stat span { color: var(--sd-muted); font-size: 11px; text-transform: uppercase; letter-spacing: .1em; }

.sd-promises { background: #fff; }
.sd-promises-grid { display: grid; grid-template-columns: repeat(3,1fr); border: 1px solid var(--sd-line); }
.sd-promise { min-height: 250px; padding: 38px; border-right: 1px solid var(--sd-line); border-bottom: 1px solid var(--sd-line); }
.sd-promise:nth-child(3n) { border-right: 0; }
.sd-promise:nth-child(n+4) { border-bottom: 0; }
.sd-promise i { color: var(--sd-gold-dark); font-size: 27px; margin-bottom: 25px; }
.sd-promise h3 { font-family: var(--sd-serif); color: var(--sd-navy); font-size: 25px; font-weight: 600; }
.sd-promise p { color: var(--sd-muted); line-height: 1.75; font-size: 13px; }

.sd-page-hero { padding: 85px 0 70px; background: var(--sd-navy); color: #fff; text-align: center; position: relative; overflow: hidden; }
.sd-page-hero::before { content: ''; position: absolute; width: 420px; height: 420px; border: 1px solid rgba(234,215,169,.22); border-radius: 50%; left: -160px; top: -250px; }
.sd-page-hero .sd-kicker { color: var(--sd-gold-soft); }
.sd-page-hero .sd-kicker::before { background: var(--sd-gold-soft); }
.sd-page-hero h1 { font-family: var(--sd-serif); font-weight: 500; font-size: clamp(52px,7vw,92px); line-height: .95; margin: 12px 0 10px; }
.sd-page-hero p { color: rgba(255,255,255,.68); margin: 0; }
.sd-page-content { padding: 78px 0 95px; }
.sd-category-description { max-width: 850px; margin: 0 auto 45px; text-align: center; color: var(--sd-muted); line-height: 1.9; }
.sd-empty { padding: 70px 25px; text-align: center; border: 1px solid var(--sd-line); background: #fff; }
.sd-empty h3 { font-family: var(--sd-serif); color: var(--sd-navy); font-size: 34px; }

.products-page-section, .home-cormorant-section { font-family: var(--sd-sans) !important; }
.products-page-section { padding: 75px 0 95px !important; background: var(--sd-ivory) !important; }
.products-page-section .row.g-4 { row-gap: 35px !important; }
.breadcrumb { margin-bottom: 38px !important; }
.breadcrumb a { color: var(--sd-gold-dark); text-decoration: none; }
.pagination { gap: 5px; }
.pagination .page-link { border-radius: 0 !important; border-color: var(--sd-line) !important; color: var(--sd-navy) !important; background: #fff !important; }
.pagination .active .page-link { background: var(--sd-navy) !important; color: #fff !important; border-color: var(--sd-navy) !important; }

.sd-detail { padding: 75px 0 100px; background: var(--sd-ivory); }
.sd-detail-grid { display: grid; grid-template-columns: 1.06fr .94fr; gap: clamp(35px,6vw,85px); align-items: start; }
.sd-detail-main { background: #eee9e0; aspect-ratio: 1/1; overflow: hidden; }
.sd-detail-main img { width: 100%; height: 100%; object-fit: contain; }
.sd-thumbs { display: grid; grid-template-columns: repeat(5,1fr); gap: 8px; margin-top: 10px; }
.sd-thumbs button { padding: 0; border: 1px solid var(--sd-line); background: #fff; aspect-ratio: 1/1; overflow: hidden; }
.sd-thumbs img { width: 100%; height: 100%; object-fit: cover; }
.sd-detail-copy { position: sticky; top: 25px; padding-top: 12px; }
.sd-detail-copy .sd-kicker { margin-bottom: 16px; }
.sd-detail-copy h1 { font-family: var(--sd-serif); color: var(--sd-navy); font-size: clamp(47px,5vw,76px); line-height: .95; font-weight: 500; }
.sd-detail-price { color: var(--sd-gold-dark); font-family: var(--sd-serif); font-size: 27px; margin: 22px 0; }
.sd-detail-description { color: var(--sd-muted); line-height: 1.9; }
.sd-detail-actions { display: flex; flex-wrap: wrap; gap: 10px; margin: 30px 0; }
.sd-detail-note { border-top: 1px solid var(--sd-line); border-bottom: 1px solid var(--sd-line); padding: 17px 0; color: var(--sd-muted); font-size: 12px; }
.sd-description-panel, .sd-enquiry-panel { margin-top: 55px; padding: clamp(30px,5vw,55px); background: #fff; border: 1px solid var(--sd-line); }
.sd-description-panel h2, .sd-enquiry-panel h2 { font-family: var(--sd-serif); color: var(--sd-navy); font-size: 40px; }

.sd-about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: center; }
.sd-about-grid img { width: 100%; height: 650px; object-fit: cover; }
.sd-about-copy .sd-display { font-size: clamp(48px,6vw,82px); margin: 16px 0; }
.sd-about-copy p { line-height: 1.9; color: var(--sd-muted); }
.sd-values { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 60px; }
.sd-value { background: #fff; padding: 35px; border: 1px solid var(--sd-line); }
.sd-value i { color: var(--sd-gold-dark); font-size: 25px; }
.sd-value h3 { font-family: var(--sd-serif); color: var(--sd-navy); font-size: 28px; margin-top: 20px; }
.sd-value p { color: var(--sd-muted); line-height: 1.7; font-size: 13px; }

.sd-gallery-grid { columns: 3 280px; column-gap: 18px; }
.sd-gallery-item { break-inside: avoid; margin-bottom: 18px; position: relative; overflow: hidden; cursor: pointer; background: #eee9e0; }
.sd-gallery-item img { width: 100%; display: block; transition: transform .6s ease; }
.sd-gallery-item:hover img { transform: scale(1.035); }
.sd-gallery-caption { position: absolute; left: 0; right: 0; bottom: 0; padding: 35px 18px 18px; background: linear-gradient(transparent,rgba(7,27,58,.78)); color: #fff; font-family: var(--sd-serif); font-size: 24px; }

.sd-contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 24px; }
.sd-contact-card, .sd-form-card { background: #fff; border: 1px solid var(--sd-line); padding: clamp(30px,5vw,55px); }
.sd-contact-card { background: var(--sd-navy); color: #fff; }
.sd-contact-card h2, .sd-form-card h2 { font-family: var(--sd-serif); font-size: 45px; font-weight: 500; }
.sd-contact-card p { color: rgba(255,255,255,.68); }
.sd-contact-item { display: grid; grid-template-columns: 42px 1fr; gap: 12px; padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,.13); }
.sd-contact-item i { color: var(--sd-gold-soft); margin-top: 4px; }
.sd-contact-item strong { display: block; font-family: var(--sd-serif); font-size: 20px; }
.sd-contact-item a { color: rgba(255,255,255,.76); text-decoration: none; }
.form-control, .form-select {
    border-radius: 0 !important;
    min-height: 50px;
    border: 1px solid var(--sd-line) !important;
    background: var(--sd-ivory) !important;
    box-shadow: none !important;
}
textarea.form-control { min-height: 135px; }
.form-control:focus, .form-select:focus { border-color: var(--sd-gold) !important; }
label { color: var(--sd-navy); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 7px; }

.sd-footer-cta { background: var(--sd-ivory-2); padding: 70px 0; border-top: 1px solid var(--sd-line); }
.sd-footer-cta-inner { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 30px; }
.sd-footer-cta h2 { font-family: var(--sd-serif); color: var(--sd-navy); font-size: clamp(42px,5vw,68px); font-weight: 500; margin: 0; }
.sd-footer-cta p { color: var(--sd-muted); margin: 8px 0 0; }
.footer-section, .sd-footer { background: rgba(251, 248, 242, .98) !important; color: var(--sd-navy) !important; padding: 70px 0 0 !important; }
.sd-footer-grid { display: grid; grid-template-columns: 1.4fr .72fr .82fr .9fr 1.05fr; gap: 32px; }
.sd-footer-logo img { width: 145px; height: 86px; object-fit: contain; filter: none; opacity: 1; }
.sd-footer h3 { color: var(--sd-navy); font-family: var(--sd-serif); font-size: 25px; font-weight: 500; margin-bottom: 19px; }
.sd-footer p { line-height: 1.8; font-size: 13px; }
.sd-footer-links { list-style: none; padding: 0; margin: 0; }
.sd-footer-links li { margin: 10px 0; }
.sd-footer-links a { color: var(--sd-navy); text-decoration: none; font-size: 13px; }
.sd-footer-links a:hover { color: var(--sd-gold-soft); }
.sd-footer-social { display: flex; gap: 8px; margin-top: 22px; }
.sd-footer-social a { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.18); color: var(--sd-navy); text-decoration: none; }
.sd-footer-social a:hover { background: var(--sd-gold); border-color: var(--sd-gold); }
.sd-footer-bottom { margin-top: 55px; padding: 20px 0; border-top: 1px solid rgba(255,255,255,.13); display: flex; justify-content: space-between; gap: 20px; font-size: 11px; }
.sd-footer-bottom a { color: var(--sd-navy); text-decoration: none; }

.floating-actions { position: fixed; right: 18px; bottom: 18px; z-index: 999; display: flex; flex-direction: column; gap: 8px; }
.floating-action-btn { width: 48px !important; height: 48px !important; display: grid !important; place-items: center; border-radius: 50% !important; text-decoration: none; box-shadow: 0 12px 28px rgba(0,0,0,.18); }
.floating-call { background: #0d6efd !important; color: #fff !important; border: 1px solid #0d6efd !important; }
.floating-whatsapp { background: #25d366 !important; color: #fff !important; border: 1px solid #25d366 !important; }


@media (min-width: 992px) {
    .sd-mega { position: relative; }
    .sd-mega:hover > .dropdown-menu { display: block; }
    .sd-mega-menu {
        width: 360px;
        min-width: 360px;
        left: 0;
        right: auto;
        padding: 24px;
    }
    .sd-mega-menu .sd-mega-grid {
        display: block;
        width: 100%;
        max-width: none;
        margin: 0;
        padding: 0;
    }
}
@media (max-width: 1199px) {
    .sd-mainnav .nav-link { padding-left: 13px !important; padding-right: 13px !important; font-size: 15px; }
    .sd-product-grid { grid-template-columns: repeat(3,1fr); }
    .sd-occasion-grid { grid-template-columns: repeat(3,1fr); }
    .sd-occasion-card:nth-child(n+4) { min-height: 390px; }
}
@media (max-width: 991px) {
    .sd-announcement { font-size: 9px; letter-spacing: .1em; }
    .sd-brandbar, .sd-mainnav > .container { display: none; }
    .sd-mobilebar { display: flex; }
    .sd-mainnav .navbar-collapse { background: var(--sd-ivory); padding: 10px 0 25px; border-top: 1px solid var(--sd-line); }
    .sd-mainnav .navbar-nav { gap: 0; }
    .sd-mainnav .nav-link { padding: 13px 0 !important; border-bottom: 1px solid var(--sd-line); }
    .sd-mainnav .nav-link::after { display: none; }
    .sd-mega-menu { position: static !important; box-shadow: none; padding: 15px 0; background: #fff; }
    .sd-mega-grid { grid-template-columns: 1fr; gap: 20px; }
    .sd-mega-feature { display: none; }
    .sd-hero .carousel-item, .sd-hero-image { height: 68vh; min-height: 560px; }
    .sd-hero-overlay { background: linear-gradient(90deg, rgba(4,15,33,.75), rgba(4,15,33,.3)); }
    .sd-hero-fallback { grid-template-columns: 1fr; }
    .sd-hero-fallback-image { min-height: 420px; order: -1; }
    .sd-hero-fallback-copy { min-height: 450px; }
    .sd-assurance-grid { grid-template-columns: repeat(2,1fr); }
    .sd-assurance-item:nth-child(2) { border-right: 0; }
    .sd-assurance-item:nth-child(-n+2) { border-bottom: 1px solid var(--sd-line); }
    .sd-editorial-grid, .sd-brand-story-grid, .sd-about-grid, .sd-contact-grid, .sd-detail-grid { grid-template-columns: 1fr; }
    .sd-editorial-media { min-height: 560px; }
    .sd-product-grid { grid-template-columns: repeat(2,1fr); }
    .sd-karat-grid { grid-template-columns: repeat(2,1fr); }
    .sd-karat-card:nth-child(2) { border-right: 0; }
    .sd-karat-card:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.18); }
    .sd-story-grid { grid-template-columns: 1fr; }
    .sd-brand-story-image { max-width: 660px; }
    .sd-promises-grid { grid-template-columns: repeat(2,1fr); }
    .sd-promise:nth-child(3n) { border-right: 1px solid var(--sd-line); }
    .sd-promise:nth-child(2n) { border-right: 0; }
    .sd-promise:nth-child(n+4) { border-bottom: 1px solid var(--sd-line); }
    .sd-promise:nth-last-child(-n+2) { border-bottom: 0; }
    .sd-footer-grid { grid-template-columns: repeat(2,1fr); }
    .sd-detail-copy { position: static; }
}
@media (max-width: 767px) {
    .sd-section { padding: 65px 0; }
    .sd-section-head { margin-bottom: 30px; }
    .sd-hero .carousel-item, .sd-hero-image { height: 72vh; min-height: 520px; }
    .sd-hero-image { object-position: center; }
    .sd-hero-copy { padding: 30px 10px 70px; }
    .sd-hero-copy h1, .sd-hero-copy h2 { font-size: 53px; }
    .sd-assurance-item { padding: 16px 12px; align-items: flex-start; }
    .sd-assurance-item strong { font-size: 16px; }
    .sd-assurance-item small { display: none; }
    .sd-category-rail { grid-auto-columns: 64%; }
    .sd-editorial-grid { min-height: auto; }
    .sd-editorial-media { min-height: 440px; }
    .sd-editorial-copy { padding: 55px 28px; }
    .sd-product-grid { gap: 13px; }
    .sd-product-body h3, .product-card-body h5 { font-size: 21px !important; }
    .sd-story-card { min-height: 500px; }
    .sd-story-card-content { left: 24px; right: 24px; bottom: 25px; }
    .sd-karat-card { min-height: 285px; padding: 30px 18px; }
    .sd-karat-number { font-size: 62px; }
    .sd-occasion-grid { grid-template-columns: repeat(2,1fr); gap: 8px; }
    .sd-occasion-card { min-height: 330px !important; }
    .sd-occasion-card:last-child { grid-column: 1 / -1; min-height: 390px !important; }
    .sd-brand-story-grid { gap: 45px; }
    .sd-brand-story-image { padding: 0 0 25px 25px; }
    .sd-stats { grid-template-columns: 1fr 1fr; }
    .sd-promises-grid { grid-template-columns: 1fr; }
    .sd-promise, .sd-promise:nth-child(3n), .sd-promise:nth-child(2n), .sd-promise:nth-child(n+4) { border-right: 0; border-bottom: 1px solid var(--sd-line); }
    .sd-promise:last-child { border-bottom: 0; }
    .sd-about-grid img { height: 480px; }
    .sd-values { grid-template-columns: 1fr; }
    .sd-footer-cta-inner { grid-template-columns: 1fr; }
    .sd-footer-grid { grid-template-columns: 1fr; }
    .sd-footer-bottom { flex-direction: column; }
    .sd-page-content, .sd-detail { padding: 55px 0 75px; }
    .sd-thumbs { grid-template-columns: repeat(4,1fr); }
    .sd-contact-card, .sd-form-card { padding: 30px 22px; }
}

/* Mobile-only responsive fixes: home banner + Find your expression */
@media (max-width: 767px) {
    /* Keep the complete banner visible instead of forcing a tall cropped frame. */
    .sd-hero .carousel-item,
    .sd-hero-image {
        height: auto;
        min-height: 0;
    }

    .sd-hero-image {
        width: 100%;
        object-fit: contain;
        object-position: center;
    }

    /* When admin banner text exists, keep it readable below the full banner image. */
    .sd-hero .carousel-item {
        background: var(--sd-navy);
    }

    .sd-hero .sd-hero-overlay {
        display: none;
    }

    .sd-hero .sd-hero-content {
        position: relative;
        inset: auto;
        padding: 28px 0 44px;
    }

    .sd-hero-copy {
        max-width: 100%;
        padding: 0 4px;
    }

    .sd-hero-copy h1,
    .sd-hero-copy h2 {
        font-size: clamp(36px, 11vw, 50px);
        line-height: .98;
        margin: 14px 0 16px;
    }

    .sd-hero-copy p {
        line-height: 1.65;
        margin-bottom: 0;
    }

    .sd-hero .carousel-indicators {
        margin-bottom: 10px;
    }

    /* Find your expression: compact two-column mobile layout. */
    .sd-category-stage {
        overflow: visible;
    }

    .sd-category-stage .container-fluid {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .sd-category-stage .sd-section-head {
        max-width: 100%;
        padding: 0 4px;
        margin-bottom: 26px;
    }

    .sd-category-stage .sd-kicker {
        justify-content: center;
        gap: 8px;
        font-size: 9px;
        letter-spacing: .14em;
    }

    .sd-category-stage .sd-kicker::before {
        width: 24px;
    }

    .sd-category-stage .sd-section-head .sd-display {
        font-size: clamp(36px, 10.5vw, 48px);
        line-height: 1;
        margin: 10px 0 12px;
    }

    .sd-category-stage .sd-section-head p {
        font-size: 13px;
        line-height: 1.65;
    }

    .sd-category-stage .sd-category-rail {
        display: grid;
        grid-auto-flow: row;
        grid-auto-columns: auto;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px 10px;
        overflow: visible;
        padding: 0;
        scroll-snap-type: none;
    }

    .sd-category-stage .sd-category-card {
        min-width: 0;
        scroll-snap-align: none;
    }

    .sd-category-stage .sd-category-media {
        aspect-ratio: 4 / 5;
    }

    .sd-category-stage .sd-category-card h3 {
        font-size: clamp(19px, 5.5vw, 24px);
        line-height: 1.05;
        margin: 12px 0 4px;
        overflow-wrap: anywhere;
    }

    .sd-category-stage .sd-category-card span {
        font-size: 8px;
        letter-spacing: .1em;
    }
}

@media (max-width: 390px) {
    .sd-category-stage .sd-category-rail {
        gap: 20px 8px;
    }

    .sd-category-stage .sd-category-card h3 {
        font-size: 18px;
    }
}


/* Banner left/right navigation controls */
.sd-hero .carousel-control-prev,
.sd-hero .carousel-control-next {
    width: 48px;
    height: 48px;
    top: 50%;
    transform: translateY(-50%);
    opacity: .9;
    background: rgba(4, 15, 33, .55);
    border: 1px solid rgba(255, 255, 255, .45);
    border-radius: 50%;
    z-index: 5;
}

.sd-hero .carousel-control-prev { left: 22px; }
.sd-hero .carousel-control-next { right: 22px; }

.sd-hero .carousel-control-prev:hover,
.sd-hero .carousel-control-next:hover {
    opacity: 1;
}

.sd-hero .carousel-control-prev-icon,
.sd-hero .carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

@media (max-width: 767.98px) {
    .sd-hero .carousel-control-prev,
    .sd-hero .carousel-control-next {
        width: 38px;
        height: 38px;
    }

    .sd-hero .carousel-control-prev { left: 10px; }
    .sd-hero .carousel-control-next { right: 10px; }
}
