:root {
    color-scheme: light;
    --ink: #1c2421;
    --muted: #65716c;
    --line: #e5e0d7;
    --paper: #f8f5ef;
    --white: #ffffff;
    --sand: #efe7da;
    --larimar: #62bcc8;
    --teal: #0d736f;
    --teal-deep: #073f3d;
    --amber: #b77d2c;
    --gold-soft: #e7c783;
    --shadow: 0 22px 70px rgba(24, 36, 32, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background:
        radial-gradient(circle at top left, rgba(98, 188, 200, 0.14), transparent 34rem),
        linear-gradient(180deg, #fffdf9, var(--paper));
    color: var(--ink);
    font: 16px/1.65 "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

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

a {
    color: inherit;
    text-decoration: none;
}

a:hover,
a:focus,
a:focus-visible {
    text-decoration: none;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: grid;
    grid-template-columns: minmax(323px, 1fr) auto auto auto;
    gap: 24px;
    align-items: center;
    padding: 14px clamp(18px, 4vw, 56px);
    background: rgba(255, 253, 249, 0.94);
    border-bottom: 1px solid rgba(229, 224, 215, 0.92);
    backdrop-filter: blur(14px);
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    font-weight: 800;
    text-decoration: none;
}

.brand-logos {
    display: contents;
}

.brand-logos .logo {
    min-width: 0;
}

.site-logo { grid-column: 1; grid-row: 1; }
.site-logo img { display: block; width: min(646px, 67.6vw); height: auto; }
.shop-logo { grid-column: 4; grid-row: 1; }
.shop-logo img { display: block; width: min(532px, 50.4vw); height: auto; }

.logo span {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: var(--teal-deep);
    color: #fff;
    font-size: 14px;
}

.logo strong {
    white-space: nowrap;
}

.site-nav {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    justify-content: flex-end;
    gap: clamp(18px, 2vw, 32px);
    color: var(--muted);
    font-weight: 750;
}

.site-nav a,
.header-action {
    transition: color 0.2s ease;
}

.language-switcher {
    grid-column: 3;
    grid-row: 1;
}

.site-nav a {
    white-space: nowrap;
}

.site-nav a:hover,
.header-action:hover {
    color: var(--teal);
}

.site-nav a,
.header-action,
.button,
.site-footer a {
    text-decoration: none;
}

.header-action {
    color: var(--teal-deep);
    display: none;
    font-weight: 800;
    white-space: nowrap;
}

.hero {
    position: relative;
    min-height: calc(100vh - 72px);
    display: grid;
    align-items: end;
    padding: clamp(76px, 9vw, 130px) clamp(20px, 5vw, 72px) clamp(54px, 7vw, 82px);
    overflow: hidden;
    color: #fff;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(5, 22, 20, 0.9), rgba(5, 22, 20, 0.58) 48%, rgba(5, 22, 20, 0.18)),
        linear-gradient(0deg, rgba(5, 22, 20, 0.3), transparent 42%);
}

.hero-media {
    position: absolute;
    inset: 0;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 48%;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 760px;
}

.eyebrow {
    margin: 0 0 10px;
    color: var(--amber);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.hero .eyebrow {
    color: #f4c26a;
}

h1,
h2,
p {
    margin-top: 0;
}

h1 {
    margin-bottom: 18px;
    font-size: clamp(48px, 8vw, 104px);
    line-height: 0.98;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 500;
}

h2 {
    margin-bottom: 16px;
    font-size: clamp(30px, 5vw, 56px);
    line-height: 1.04;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 500;
}

.lead {
    max-width: 650px;
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(18px, 2vw, 23px);
}

.hero-actions,
.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 8px;
    font-weight: 900;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.button.primary {
    background: var(--teal);
    color: #fff;
    box-shadow: 0 14px 34px rgba(13, 115, 111, 0.24);
}

.button.secondary {
    border: 1px solid currentColor;
    background: rgba(255, 255, 255, 0.1);
    color: currentColor;
}

.button:hover {
    transform: translateY(-1px);
}

.trust-panel {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    background: var(--line);
    border-bottom: 1px solid var(--line);
}

.trust-panel article {
    padding: 28px clamp(18px, 3vw, 42px);
    background: rgba(255, 253, 249, 0.94);
}

.trust-panel span {
    display: block;
    color: var(--amber);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(26px, 3vw, 42px);
    line-height: 1;
}

.trust-panel strong {
    display: block;
    margin-top: 8px;
    color: var(--teal-deep);
    font-size: 13px;
    text-transform: uppercase;
}

.intro-band,
.stats-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    background: var(--line);
}

.intro-band article {
    padding: 30px clamp(20px, 4vw, 48px);
    background: rgba(255, 255, 255, 0.9);
}

.intro-band strong {
    display: block;
    margin: 6px 0;
    font-size: 20px;
}

.intro-band p,
.section-head p,
.story-grid p,
.b2b-section p,
.contact-section p {
    color: var(--muted);
}

.section,
.b2b-section,
.contact-section {
    padding: clamp(72px, 8vw, 126px) clamp(20px, 5vw, 72px);
}

.section-head {
    max-width: 840px;
    margin-bottom: 34px;
}

.collection-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    gap: 18px;
}

.collection {
    position: relative;
    min-height: 310px;
    display: grid;
    align-items: end;
    overflow: hidden;
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
}

.collection,
.b2b-section img,
.story-photos img {
    box-shadow: var(--shadow);
}

.collection.large {
    grid-row: span 2;
    min-height: 638px;
}

.collection::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(3, 22, 20, 0.82), rgba(3, 22, 20, 0.08) 62%);
}

.collection img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 48%;
    transition: transform 0.35s ease;
}

.collection:hover img {
    transform: scale(1.04);
}

.collection div {
    position: relative;
    z-index: 1;
    padding: 24px;
}

.collection small {
    display: block;
    margin-bottom: 8px;
    color: #f4c26a;
    font-weight: 900;
    text-transform: uppercase;
}

.collection strong {
    display: block;
    max-width: 540px;
    font-size: clamp(22px, 3vw, 36px);
    line-height: 1.08;
}

.b2b-section {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
    gap: clamp(28px, 5vw, 72px);
    align-items: center;
    background: linear-gradient(135deg, #eef8f6, #f8f1e6);
}

.feature-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 24px 0 28px;
}

.feature-list span {
    padding: 9px 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    color: var(--teal-deep);
    font-weight: 800;
}

.b2b-section figure {
    margin: 0;
}

.b2b-section img {
    width: 100%;
    aspect-ratio: 4 / 5;
    border-radius: 8px;
    object-fit: cover;
}

.story {
    background: linear-gradient(135deg, #fffdf9, #f2ece2);
}

.story-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.82fr);
    gap: clamp(28px, 5vw, 70px);
    align-items: center;
}

.story-copy {
    max-width: 780px;
    padding: clamp(4px, 2vw, 22px) 0;
}

.story-copy h2 {
    max-width: 680px;
    margin-bottom: 24px;
}

.story-copy p {
    font-size: clamp(16px, 1.3vw, 18px);
}

.story-copy p:last-child {
    margin-bottom: 0;
}

.story-photos {
    margin: 0;
}

.story-photos img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
}

.story-family-photo img {
    aspect-ratio: 5 / 6;
    object-position: center;
}

.story-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.story-proof span {
    padding: 10px 13px;
    border: 1px solid rgba(183, 125, 44, 0.28);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.72);
    color: var(--teal-deep);
    font-weight: 800;
}

.stats-strip article {
    padding: 28px clamp(20px, 4vw, 48px);
    background: #102a27;
    color: #fff;
}

.stats-strip strong {
    display: block;
    margin-bottom: 4px;
    font-size: 24px;
}

.stats-strip span {
    color: rgba(255, 255, 255, 0.72);
}

.contact-section {
    display: flex;
    justify-content: space-between;
    gap: 32px;
    align-items: center;
    background: var(--teal-deep);
    color: #fff;
}

.contact-section .eyebrow {
    color: #f4c26a;
}

.contact-section p {
    color: rgba(255, 255, 255, 0.78);
}

.site-footer {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 24px clamp(20px, 5vw, 72px);
    color: var(--muted);
}

@media (max-width: 900px) {
    .site-header {
        grid-template-columns: 1fr;
        gap: 12px;
        align-items: start;
    }

    .logo strong {
        white-space: normal;
    }

    .site-nav {
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 14px 18px;
    }

    .hero,
    .b2b-hero {
        min-height: 680px;
        padding-top: 56px;
    }

    .hero::after,
    .b2b-hero::after {
        background: linear-gradient(0deg, rgba(5, 20, 18, 0.9), rgba(5, 20, 18, 0.48));
    }

    .intro-band,
    .trust-panel,
    .stats-strip,
    .collection-grid,
    .b2b-section,
    .b2b-card-grid,
    .process-grid,
    .b2b-inquiry-section,
    .story-grid {
        grid-template-columns: 1fr;
    }

    .collection.large,
    .collection {
        min-height: 380px;
    }

    .story-grid {
        gap: 28px;
    }

    .story-photos {
        order: -1;
    }


    .contact-section {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 560px) {
    .site-header {
        padding: 12px 16px;
    }

    .site-nav {
        font-size: 14px;
    }

    .header-action {
        justify-self: start;
    }

    .hero {
        min-height: 620px;
        padding: 44px 18px 46px;
    }

    h1 {
        font-size: 46px;
    }

    h2 {
        font-size: 31px;
    }

    .button,
    .b2b-form button {
        width: 100%;
    }

    .trust-panel article,
    .intro-band article {
        padding: 24px 18px;
    }

    .b2b-form {
        grid-template-columns: 1fr;
    }

    .story-family-photo img {
        aspect-ratio: 4 / 3;
    }

    .site-footer {
        flex-direction: column;
    }
}
.b2b-hero {
    position: relative;
    min-height: 660px;
    display: grid;
    align-items: end;
    padding: clamp(76px, 9vw, 130px) clamp(20px, 5vw, 72px) clamp(54px, 7vw, 82px);
    overflow: hidden;
    color: #fff;
}

.b2b-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(5, 20, 18, 0.88), rgba(5, 20, 18, 0.58) 52%, rgba(5, 20, 18, 0.18));
}

.b2b-hero-media {
    position: absolute;
    inset: 0;
}

.b2b-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 48%;
}

.b2b-hero-content {
    position: relative;
    z-index: 1;
    max-width: 820px;
}

.b2b-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.b2b-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
}

.b2b-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.b2b-card div {
    padding: 20px;
}

.b2b-card h3 {
    margin: 0 0 8px;
    font-size: 22px;
}

.b2b-card p {
    margin: 0;
    color: var(--muted);
}

.b2b-process {
    padding: clamp(64px, 8vw, 112px) clamp(20px, 5vw, 72px);
    background: #eef5f1;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    background: var(--line);
}

.process-grid article {
    display: grid;
    gap: 8px;
    padding: 24px;
    background: var(--white);
}

.process-grid strong {
    font-size: 18px;
}

.process-grid span {
    color: var(--muted);
}

.b2b-inquiry-section {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
    gap: clamp(28px, 5vw, 72px);
    padding: clamp(64px, 8vw, 112px) clamp(20px, 5vw, 72px);
}

.b2b-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
}

.b2b-form label {
    display: grid;
    gap: 7px;
    color: var(--muted);
    font-weight: 800;
}

.b2b-form .full,
.b2b-form button {
    grid-column: 1 / -1;
}

.b2b-form input,
.b2b-form select,
.b2b-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 12px;
    color: var(--ink);
    font: inherit;
}

.b2b-form textarea {
    resize: vertical;
}

.form-success {
    padding: 14px 16px;
    border-radius: 8px;
    background: #e5f5ec;
    color: #11613c;
    font-weight: 800;
}
.info-hero {
    position: relative;
    min-height: 660px;
    display: grid;
    align-items: end;
    padding: clamp(76px, 9vw, 130px) clamp(20px, 5vw, 72px) clamp(54px, 7vw, 82px);
    overflow: hidden;
    color: #fff;
}

.info-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(5, 20, 18, 0.82), rgba(5, 20, 18, 0.5) 52%, rgba(5, 20, 18, 0.18));
}

.info-hero-media {
    position: absolute;
    inset: 0;
}

.info-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 48%;
}

.info-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.info-section {
    padding: clamp(64px, 8vw, 112px) clamp(20px, 5vw, 72px);
}

.info-section.two-column {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
    gap: clamp(28px, 5vw, 72px);
    align-items: center;
}

.info-section p {
    color: var(--muted);
}

.info-image {
    margin: 0;
}

.info-image img {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 8px;
    object-fit: cover;
}

.quality-section,
.soft-band {
    background: #eef5f1;
}

.quality-grid,
.faq-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    background: var(--line);
}

.quality-grid article,
.faq-grid article {
    padding: 22px;
    background: var(--white);
}

.quality-grid strong,
.faq-grid h3 {
    display: block;
    margin: 0 0 8px;
    color: var(--teal-deep);
    font-size: 20px;
}

.quality-grid span,
.faq-grid p {
    color: var(--muted);
}

.fact-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    margin: 0;
    background: var(--line);
}

.fact-list div {
    display: grid;
    grid-template-columns: minmax(130px, 0.35fr) 1fr;
    gap: 18px;
    padding: 18px;
    background: var(--white);
}

.fact-list dt {
    color: var(--teal-deep);
    font-weight: 900;
}

.fact-list dd {
    margin: 0;
    color: var(--muted);
}
/* Larimar info responsive */
@media (max-width: 900px) {
    .info-hero {
        min-height: 680px;
        padding-top: 56px;
    }

    .info-hero::after {
        background: linear-gradient(0deg, rgba(5, 20, 18, 0.9), rgba(5, 20, 18, 0.48));
    }

    .info-section.two-column,
    .quality-grid,
    .faq-grid,
    .fact-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .info-hero {
        min-height: 620px;
        padding: 44px 18px 46px;
    }

    .fact-list div {
        grid-template-columns: 1fr;
    }
}
.amber-photo-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.amber-photo-grid figure {
    margin: 0;
    overflow: hidden;
    border-radius: 8px;
    background: #050706;
    color: #fff;
}

.amber-photo-grid img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.amber-photo-grid figcaption {
    padding: 11px 12px;
    color: rgba(255, 255, 255, 0.78);
    font-weight: 800;
}

@media (max-width: 900px) {
    .amber-photo-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .amber-photo-grid {
        grid-template-columns: 1fr;
    }
}
.contact-page-hero {
    padding: clamp(72px, 9vw, 130px) clamp(20px, 5vw, 72px) clamp(42px, 6vw, 72px);
    background: #102a27;
    color: #fff;
}

.contact-page-hero .lead {
    color: rgba(255, 255, 255, 0.82);
}

.contact-page-section {
    display: grid;
    grid-template-columns: minmax(0, 0.75fr) minmax(340px, 1fr);
    gap: clamp(28px, 5vw, 72px);
    padding: clamp(64px, 8vw, 112px) clamp(20px, 5vw, 72px);
}

.contact-intro p {
    color: var(--muted);
}

.contact-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
}

.contact-form label {
    display: grid;
    gap: 7px;
    color: var(--muted);
    font-weight: 800;
}

.contact-form .full,
.contact-form button {
    grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 12px;
    color: var(--ink);
    font: inherit;
}

.contact-form textarea {
    resize: vertical;
}

.contact-trap {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-error {
    padding: 14px 16px;
    border-radius: 8px;
    background: #fdecec;
    color: #8f1d1d;
    font-weight: 800;
}

.form-error p {
    margin: 0 0 6px;
}

.form-error p:last-child {
    margin-bottom: 0;
}

.upload-note {
    margin: -6px 0 0;
    color: var(--muted);
    font-size: 13px;
}

@media (max-width: 900px) {
    .contact-page-section,
    .contact-form {
        grid-template-columns: 1fr;
    }
}
/* Hero image refinement */
.hero-media img,
.info-hero-media img,
.b2b-hero-media img {
    object-position: center 50%;
}

@media (max-width: 700px) {
    .hero-media img,
    .info-hero-media img,
    .b2b-hero-media img {
        object-position: center center;
    }
}

/* Gemstone Journal */
.journal-main { max-width: 1320px; margin: 0 auto; padding: 42px 24px 80px; }
.journal-index-hero { max-width: 900px; margin: 0 auto 38px; text-align: center; }
.journal-index-hero h1 { margin: 8px 0 16px; }
.journal-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.journal-card { overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: #fffdf9; box-shadow: 0 14px 35px rgba(22, 45, 39, .07); }
.journal-card > a { display: block; aspect-ratio: 16 / 9; overflow: hidden; }
.journal-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .25s ease; }
.journal-card:hover img { transform: scale(1.025); }
.journal-card > div { padding: 22px; }
.journal-card h2, .journal-card h3 { margin: 5px 0 10px; }
.journal-card h2 a, .journal-card h3 a { color: var(--teal-deep); text-decoration: none; }
.journal-card p { margin: 0 0 14px; }
.journal-article { max-width: 1180px; margin: 0 auto; }
.journal-article-hero { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr); overflow: hidden; border: 1px solid var(--line); border-radius: 22px; background: var(--soft); }
.journal-article-hero img { width: 100%; height: 100%; min-height: 390px; object-fit: cover; }
.journal-article-hero > div { align-self: center; min-width: 0; padding: 42px; }
.journal-article-hero h1 {
    max-width: 100%;
    margin: 8px 0 16px;
    font-size: clamp(34px, 4vw, 58px);
    line-height: 1.02;
    overflow-wrap: break-word;
    hyphens: auto;
}
.journal-article-hero .lead {
    max-width: 100%;
    margin-bottom: 0;
    color: var(--muted);
    font-size: clamp(16px, 1.45vw, 20px);
    line-height: 1.55;
}
.journal-page .site-header .brand-logos,
.journal-page .site-header .site-logo,
.journal-page .site-header .site-nav-menu {
    display: block;
    visibility: visible;
    opacity: 1;
}
.journal-page .site-header .site-logo img {
    display: block;
    visibility: visible;
    opacity: 1;
}
.journal-image-note { margin: 8px 4px 0; color: #687a74; font-size: 12px; }
.journal-layout { display: grid; grid-template-columns: 240px minmax(0, 1fr); gap: 48px; margin-top: 42px; }
.journal-toc { position: sticky; top: 20px; align-self: start; display: grid; gap: 8px; padding: 20px; border: 1px solid var(--line); border-radius: 14px; background: #fff; }
.journal-toc a { color: var(--teal); font-size: 14px; line-height: 1.35; text-decoration: none; }
.journal-body { min-width: 0; }
.journal-body > section { scroll-margin-top: 20px; margin: 0 0 36px; }
.journal-body h2 { margin: 0 0 13px; color: var(--teal-deep); }
.journal-body p, .journal-body li { line-height: 1.72; }
.journal-note { padding: 18px 20px; border-left: 4px solid var(--gold); background: #faf4e7; }
.journal-sources { padding-top: 24px; border-top: 1px solid var(--line); }
.journal-sources a { overflow-wrap: anywhere; }
.journal-shop-cta { padding: 28px; border-radius: 16px; background: var(--soft); }
.journal-shop-cta .button { margin: 8px 8px 0 0; }
.journal-home { max-width: 1320px; margin-inline: auto; }
.journal-home-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.journal-home .journal-card > div { padding: 18px; }
.journal-home-action { margin: 26px 0 0; text-align: center; }

@media (max-width: 850px) {
    .journal-grid, .journal-home-grid, .journal-article-hero, .journal-layout { grid-template-columns: 1fr; }
    .journal-article-hero img { min-height: 0; aspect-ratio: 16 / 9; }
    .journal-article-hero > div { padding: 26px; }
    .journal-toc { position: static; }
}

@media (max-width: 560px) {
    .journal-main { padding: 28px 14px 56px; }
    .journal-grid { gap: 16px; }
    .journal-card > div { padding: 18px; }
}
.gemstone-story-section {
    background: #fffaf1;
}

.gemstone-story-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    background: rgba(189, 132, 47, 0.22);
}

.gemstone-story-grid p {
    margin: 0;
    padding: 24px;
    background: var(--white);
    color: var(--muted);
}

@media (max-width: 900px) {
    .gemstone-story-grid {
        grid-template-columns: 1fr;
    }
}
.language-switcher {
    position: relative;
    justify-self: end;
}

.language-switcher summary {
    color: inherit;
    cursor: pointer;
    font-size: 12px;
    list-style: none;
    white-space: nowrap;
}

.language-switcher summary::-webkit-details-marker {
    display: none;
}

.language-switcher summary span {
    color: var(--teal-deep);
    font-weight: 800;
}

.language-switcher-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    z-index: 30;
    display: grid;
    gap: 2px;
    min-width: 130px;
    padding: 6px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--white);
    box-shadow: 0 10px 26px rgba(20, 42, 40, .14);
}

.language-switcher-menu a {
    display: block;
    padding: 7px 9px;
    border-radius: 4px;
    color: var(--muted);
    font-size: 12px;
    text-decoration: none;
    white-space: nowrap;
}

.language-switcher-menu a:hover,
.language-switcher-menu a[aria-current="true"] {
    background: #eef6f3;
    color: var(--teal-deep);
}
.policy-hero {
    padding: clamp(72px, 9vw, 130px) clamp(20px, 5vw, 72px) clamp(42px, 6vw, 72px);
    background: #102a27;
    color: #fff;
}

.policy-hero .lead {
    color: rgba(255, 255, 255, 0.82);
}

.policy-hero span {
    display: inline-flex;
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.68);
    font-weight: 800;
}

.policy-page {
    display: grid;
    grid-template-columns: minmax(220px, 0.28fr) minmax(0, 1fr);
    gap: clamp(28px, 5vw, 72px);
    padding: clamp(48px, 7vw, 90px) clamp(20px, 5vw, 72px);
}

.policy-index {
    position: sticky;
    top: 96px;
    align-self: start;
    display: grid;
    gap: 8px;
}

.policy-index a {
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    color: var(--teal-deep);
    font-weight: 900;
    text-decoration: none;
}

.policy-sections {
    display: grid;
    gap: 18px;
}

.policy-block {
    padding: clamp(22px, 4vw, 38px);
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
}

.policy-block h2 {
    font-size: clamp(26px, 4vw, 42px);
}

.policy-block p:not(.eyebrow) {
    color: var(--muted);
}

.policy-block p:last-child {
    margin-bottom: 0;
}

@media (max-width: 900px) {
    .policy-page {
        grid-template-columns: 1fr;
    }

    .policy-index {
        position: static;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .policy-index {
        grid-template-columns: 1fr;
    }
}

/* Caribbean Gemstones 2026 homepage and story redesign */
body {
    overflow-x: hidden;
}

.home-hero {
    min-height: min(760px, calc(100vh - 72px));
}

.home-hero .hero-content {
    max-width: 930px;
}

.home-hero h1 {
    max-width: 1050px;
    font-size: clamp(42px, 6.2vw, 86px);
    line-height: 1.02;
}

.amber-button {
    background: var(--amber);
    color: #fff;
    box-shadow: 0 14px 34px rgba(183, 125, 44, 0.22);
}

.trust-bar {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1px;
    background: var(--line);
    border-bottom: 1px solid var(--line);
}

.trust-bar article,
.trust-bar a {
    min-height: 128px;
    display: grid;
    align-content: center;
    padding: 24px clamp(16px, 2.4vw, 34px);
    background: rgba(255, 253, 249, 0.96);
    color: inherit;
    text-decoration: none;
    transition: background .16s ease;
}

.trust-bar a:hover,
.trust-bar a:focus-visible {
    background: #fff;
}

.trust-bar span,
.about-proof-grid span {
    display: block;
    color: var(--amber);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(23px, 2.6vw, 38px);
    line-height: 1.04;
}

.trust-bar strong,
.about-proof-grid strong {
    display: block;
    margin-top: 8px;
    color: var(--teal-deep);
    font-size: 12px;
    line-height: 1.35;
    text-transform: uppercase;
}

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

.category-card,
.featured-card,
.why-card {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}

.category-card {
    display: grid;
    overflow: hidden;
    color: var(--ink);
    box-shadow: 0 16px 40px rgba(24, 36, 32, 0.08);
}

.category-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.category-card span,
.category-card p {
    margin-right: 22px;
    margin-left: 22px;
}

.category-card span {
    margin-top: 20px;
    color: var(--teal-deep);
    font-size: 22px;
    font-family: Georgia, "Times New Roman", serif;
}

.category-card p {
    margin-bottom: 22px;
    color: var(--muted);
}

.story-preview,
.origin-section,
.collage-section,
.about-intro,
.about-collage {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.85fr);
    gap: clamp(28px, 5vw, 76px);
    align-items: center;
    padding: clamp(72px, 8vw, 124px) clamp(20px, 5vw, 72px);
}

.story-preview {
    background: #fffaf2;
    grid-template-columns: minmax(0, 0.85fr) minmax(300px, 1fr);
}

.origin-section figure,
.collage-section figure,
.about-intro figure,
.about-collage figure {
    margin: 0;
}

.origin-section img,
.collage-section img,
.about-intro img,
.about-collage img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.about-intro img {
    aspect-ratio: 5 / 4;
    height: auto;
    object-position: center;
}

.story-points {
    display: grid;
    gap: 14px;
}

.story-points article {
    padding: 22px;
    border: 1px solid rgba(15, 82, 78, 0.14);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.72);
}

.story-points strong {
    display: block;
    margin-bottom: 6px;
    color: var(--teal-deep);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 22px;
    line-height: 1.15;
}

.story-points span {
    color: var(--muted);
}

.story-preview p:not(.eyebrow),
.origin-section p,
.collage-section p,
.about-intro p,
.about-text-section p,
.about-collage p,
.why-card p,
.featured-card p,
.site-footer p {
    color: var(--muted);
}

.why-section {
    background: #f8f5ef;
}

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

.why-card {
    padding: clamp(22px, 3vw, 34px);
}

.why-card h3,
.featured-card h3,
.about-columns h3 {
    margin: 0 0 8px;
    color: var(--teal-deep);
    font-size: 21px;
    line-height: 1.2;
}

.line-icon {
    position: relative;
    display: inline-flex;
    width: 42px;
    height: 42px;
    margin-bottom: 18px;
    border: 2px solid var(--teal);
    border-radius: 8px;
}

.line-icon::before,
.line-icon::after {
    content: "";
    position: absolute;
    border-color: currentColor;
}

.line-icon.diamond {
    transform: rotate(45deg);
    border-radius: 4px;
}

.line-icon.diamond::before {
    inset: 9px;
    border-top: 2px solid var(--teal);
    transform: rotate(90deg);
}

.line-icon.stone {
    border-radius: 50%;
}

.line-icon.stone::before {
    inset: 9px;
    border: 2px solid var(--teal);
    border-radius: 50%;
}

.line-icon.hands::before {
    left: 7px;
    right: 7px;
    top: 19px;
    border-top: 2px solid var(--teal);
}

.line-icon.lock::before {
    left: 11px;
    top: 7px;
    width: 16px;
    height: 14px;
    border: 2px solid var(--teal);
    border-bottom: 0;
    border-radius: 12px 12px 0 0;
}

.line-icon.box::before {
    inset: 10px 8px 8px;
    border: 2px solid var(--teal);
}

.line-icon.year {
    align-items: center;
    justify-content: center;
}

.line-icon.year::before {
    content: "15";
    inset: 0;
    display: grid;
    place-items: center;
    color: var(--teal);
    font-weight: 900;
}

.origin-section {
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.7fr);
    background: #102a27;
    color: #fff;
}

.origin-section p {
    color: rgba(255, 255, 255, 0.78);
}

.button.dark {
    color: #fff;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.featured-card {
    overflow: hidden;
    color: var(--ink);
}

.featured-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.featured-card div {
    padding: 20px;
}

.collage-section {
    grid-template-columns: minmax(280px, 0.52fr) minmax(0, 1fr);
    background: #fff;
}

.collage-section img,
.about-collage img {
    aspect-ratio: 16 / 9;
}

.about-hero {
    padding: clamp(86px, 11vw, 150px) clamp(20px, 5vw, 72px) clamp(48px, 7vw, 86px);
    background:
        linear-gradient(90deg, rgba(255, 253, 249, 0.95), rgba(255, 253, 249, 0.74)),
        url("images/story-collage.jpg?v=1") center / cover;
}

.about-hero h1 {
    color: var(--teal-deep);
}

.story-hero {
    padding: clamp(96px, 12vw, 170px) clamp(20px, 5vw, 72px) clamp(56px, 7vw, 92px);
    background:
        linear-gradient(90deg, rgba(5, 22, 20, 0.86), rgba(5, 22, 20, 0.44)),
        url("images/story-collage.jpg?v=1") center / cover;
    color: #fff;
}

.story-hero h1 {
    max-width: 980px;
}

.story-collage-main {
    background: #fffaf2;
}

.dark-lead {
    color: var(--muted);
}

.story-hero .dark-lead {
    color: rgba(255, 255, 255, 0.9);
}

.about-intro {
    background: #fff;
}

.about-intro.about-intro-text {
    grid-template-columns: minmax(0, 920px);
    justify-content: center;
}

.about-text-section {
    padding: clamp(72px, 8vw, 118px) clamp(20px, 5vw, 72px);
    background: #f8f5ef;
}

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

.about-columns article {
    padding: clamp(22px, 3vw, 34px);
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}

.about-collage {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
}

.about-proof-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    background: var(--line);
}

.about-proof-grid article {
    padding: 30px clamp(18px, 3vw, 42px);
    background: #fffaf2;
}

.site-footer {
    display: grid;
    grid-template-columns: minmax(260px, 0.75fr) minmax(260px, 1fr) auto;
    align-items: start;
    padding: 38px clamp(20px, 5vw, 72px);
    border-top: 1px solid var(--line);
    background: #fffdf9;
}

.site-footer strong {
    display: block;
    margin-bottom: 8px;
    color: var(--teal-deep);
    font-size: 20px;
}

.site-footer nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
}

.site-footer span {
    white-space: nowrap;
}

@media (max-width: 1100px) {
    .site-header {
        grid-template-columns: 1fr auto;
    }

    .site-logo { grid-column: 1; grid-row: 1; }
    .site-logo img { width: min(646px, 68vw); }
    .shop-logo { grid-column: 1; grid-row: 2; justify-self: end; }
    .shop-logo img { width: min(532px, 70vw); }

    .site-nav {
        grid-column: 1 / -1;
        grid-row: 3;
        justify-content: flex-start;
    }

    .language-switcher {
        grid-column: 2;
        grid-row: 1;
        justify-self: end;
    }

    .language-switcher-menu {
        left: auto;
        right: 0;
    }

    .header-action {
        justify-self: end;
    }

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

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

@media (max-width: 760px) {
    .site-header {
        grid-template-columns: 1fr;
    }

    .site-nav {
        gap: 10px 14px;
    }

    .language-switcher {
        grid-column: 1;
        grid-row: 4;
        justify-self: end;
    }

    .home-hero h1 {
        font-size: clamp(38px, 11vw, 54px);
    }

    .trust-bar,
    .category-grid,
    .why-grid,
    .featured-grid,
    .about-columns,
    .about-proof-grid,
    .story-preview,
    .origin-section,
    .collage-section,
    .about-intro,
    .about-collage,
    .site-footer {
        grid-template-columns: 1fr;
    }

    .story-preview figure,
    .about-intro figure {
        order: -1;
    }

    .collage-section {
        gap: 24px;
    }
}

/* Stable tablet header: explicit grid areas prevent implicit columns and overlap. */
@media (max-width: 900px) and (min-width: 761px) {
    html,
    body {
        max-width: 100%;
        overflow-x: hidden;
    }

    .site-header {
        grid-template-columns: minmax(0, 1fr) auto;
        grid-template-areas:
            "site language"
            "shop shop"
            "nav nav";
        gap: 10px 18px;
        padding: 14px 22px;
    }

    .site-logo { grid-area: site; min-width: 0; }
    .site-logo img { width: min(330px, 52vw); max-height: 58px; object-fit: contain; object-position: left center; }
    .shop-logo { grid-area: shop; justify-self: end; }
    .shop-logo img { width: min(370px, 58vw); max-height: 78px; object-fit: contain; object-position: right center; }
    .site-nav { grid-area: nav; width: 100%; }
    .language-switcher { grid-area: language; grid-column: auto; grid-row: auto; }
}

@media (max-width: 900px) {
    .site-footer {
        align-items: start;
        grid-template-columns: 1fr;
    }

    .site-footer span {
        max-width: 100%;
        white-space: normal;
    }
}

@media (max-width: 430px) {
    .logo img {
        width: min(440px, 100vw);
    }

    .site-nav {
        font-size: 13px;
    }

    .trust-bar article,
    .trust-bar a {
        min-height: 96px;
    }

    .category-card span,
    .category-card p {
        margin-right: 18px;
        margin-left: 18px;
    }

    .site-footer span {
        white-space: normal;
    }
}

/* Refined company header: one brand, one clear shop action. */
.site-header {
    grid-template-columns: minmax(240px, 390px) minmax(280px, 1fr) auto auto;
    gap: clamp(16px, 2.2vw, 34px);
    min-height: 94px;
    padding: 10px clamp(20px, 4vw, 64px);
}

.site-header .brand-logos {
    display: block;
    grid-area: auto;
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
}

.site-header .site-logo {
    display: block;
    grid-area: auto;
    width: 100%;
}

.site-header .site-logo img {
    width: min(360px, 100%);
    max-height: 72px;
    object-fit: contain;
    object-position: left center;
}

.site-header .site-nav {
    grid-area: auto;
    grid-column: 2;
    grid-row: 1;
    justify-content: center;
}

.site-header .language-switcher {
    grid-area: auto;
    grid-column: 3;
    grid-row: 1;
}

.shop-button,
.button.shop-button,
.header-shop-cta.shop-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: auto;
    min-height: 44px;
    padding: 11px 20px;
    border: 1px solid rgba(210, 175, 95, 0.7);
    border-radius: 13px;
    background: #064f4b;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0, 55, 52, 0.18);
    transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.header-shop-cta {
    grid-column: 4;
    grid-row: 1;
}

.shop-button:hover,
.button.shop-button:hover,
.header-shop-cta.shop-button:hover {
    background: #08645f;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0, 55, 52, 0.24);
}

.shop-button .arrow {
    display: inline-block;
    font-size: 18px;
    line-height: 1;
    transition: transform 0.2s ease;
}

.shop-button:hover .arrow {
    transform: translateX(3px);
}

.shop-button:focus-visible {
    outline: 3px solid rgba(210, 175, 95, 0.55);
    outline-offset: 3px;
}

@media (max-width: 1100px) {
    .site-header {
        grid-template-columns: minmax(220px, 1fr) auto auto;
        min-height: 0;
    }

    .site-header .brand-logos {
        grid-column: 1;
        grid-row: 1;
    }

    .site-header .language-switcher {
        grid-column: 2;
        grid-row: 1;
    }

    .site-header .header-shop-cta {
        grid-column: 3;
        grid-row: 1;
    }

    .site-header .site-nav {
        grid-column: 1 / -1;
        grid-row: 2;
        justify-content: center;
        padding-top: 4px;
    }
}

@media (max-width: 700px) {
    .site-header {
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 10px 12px;
        padding: 9px 14px 11px;
    }

    .site-header .brand-logos {
        grid-column: 1;
        grid-row: 1;
    }

    .site-header .site-logo img {
        width: min(270px, 100%);
        max-height: 54px;
    }

    .site-header .header-shop-cta {
        grid-column: 2;
        grid-row: 1;
        min-height: 40px;
        padding: 9px 13px;
    }

    .site-header .site-nav {
        grid-column: 1 / -1;
        grid-row: 2;
        justify-content: flex-start;
        gap: 16px;
        padding: 2px 0;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .site-header .site-nav::-webkit-scrollbar {
        display: none;
    }

    .site-header .language-switcher {
        grid-column: 1 / -1;
        grid-row: 3;
        justify-self: start;
    }
}

/* B2B content is defined after the older responsive rules, so it needs a final
   mobile override here to avoid four squeezed columns and an oversized form. */
@media (max-width: 760px) {
    .b2b-card-grid,
    .process-grid,
    .b2b-inquiry-section,
    .b2b-form {
        grid-template-columns: minmax(0, 1fr);
    }

    .b2b-process,
    .b2b-inquiry-section {
        width: 100%;
        max-width: 100%;
        padding-left: 16px;
        padding-right: 16px;
    }

    .b2b-form,
    .b2b-form label,
    .b2b-form input,
    .b2b-form select,
    .b2b-form textarea,
    .b2b-form button {
        min-width: 0;
        max-width: 100%;
        width: 100%;
    }

    .process-grid article {
        min-width: 0;
        overflow-wrap: anywhere;
    }
}

/* Dedicated mobile layout: keep the header, media and content inside the viewport. */
@media (max-width: 760px) {
    html,
    body {
        min-width: 0;
        overflow-x: hidden;
    }

    .site-header {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        grid-template-areas:
            "site language"
            "shop shop"
            "nav nav";
        gap: 9px 12px;
        padding: 10px 14px;
    }

    .site-logo {
        grid-area: site;
        min-width: 0;
    }

    .site-logo img {
        width: min(220px, 56vw);
        max-height: 44px;
        object-fit: contain;
        object-position: left center;
    }

    .shop-logo {
        grid-area: shop;
        justify-self: end;
    }

    .shop-logo img {
        width: min(280px, 72vw);
        max-height: 72px;
        object-fit: contain;
        object-position: right center;
    }

    .site-nav {
        grid-area: nav;
        display: flex;
        width: 100%;
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 6px 14px;
        font-size: 13px;
        line-height: 1.25;
    }

    .site-nav a {
        padding: 5px 0;
    }

    .language-switcher {
        grid-area: language;
        grid-column: auto;
        grid-row: auto;
        align-self: center;
        justify-self: end;
    }

    .language-switcher summary {
        font-size: 11px;
    }

    .hero,
    .contact-page-hero,
    .policy-hero {
        min-height: 0;
        padding: 72px 16px 42px;
    }

    .hero-content,
    .home-hero .hero-content {
        max-width: 100%;
    }

    .home-hero h1 {
        font-size: clamp(36px, 10vw, 52px);
        line-height: 1.04;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .hero-actions .button {
        width: 100%;
        min-height: 44px;
        padding: 10px 8px;
        text-align: center;
    }

    .section,
    .contact-page-section,
    .policy-page,
    .about-intro,
    .about-collage,
    .story-preview,
    .origin-section,
    .collage-section,
    .contact-page-section,
    .site-footer {
        width: 100%;
        max-width: 100%;
        padding-left: 16px;
        padding-right: 16px;
    }

    .section-head,
    .about-text-section,
    .policy-block,
    .contact-form,
    .collection-card,
    .category-card,
    .featured-card {
        max-width: 100%;
    }

    .section-head h2,
    .about-intro h2,
    .policy-block h2 {
        font-size: clamp(28px, 8vw, 38px);
        line-height: 1.1;
    }

    .collection-card img,
    .category-card img,
    .featured-card img,
    .about-collage img,
    .story-preview img,
    .collage-section img {
        width: 100%;
        max-width: 100%;
        height: auto;
    }

    .contact-form input,
    .contact-form select,
    .contact-form textarea,
    .contact-form button {
        min-width: 0;
        max-width: 100%;
    }
}

@media (max-width: 430px) {
    .site-header {
        padding-left: 12px;
        padding-right: 12px;
    }

    .site-logo img {
        width: min(185px, 52vw);
    }

    .shop-logo img {
        width: min(240px, 68vw);
    }

    .site-nav {
        gap: 4px 11px;
        font-size: 12px;
    }

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

    .hero,
    .contact-page-hero,
    .policy-hero {
        padding-top: 56px;
    }
}

/* Navigation hierarchy and mobile menu. */
.site-header .site-nav-menu {
    grid-column: 2;
    grid-row: 1;
    min-width: 0;
}

.site-nav-menu > summary {
    display: none;
    list-style: none;
}

.site-nav-menu > summary::-webkit-details-marker,
.nav-dropdown > summary::-webkit-details-marker {
    display: none;
}

.site-nav-menu:not([open]) > .site-nav,
.site-nav-menu[open] > .site-nav {
    display: flex;
}

.site-header .site-nav-menu .site-nav {
    position: relative;
    grid-area: auto;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: clamp(18px, 2vw, 30px);
    overflow: visible;
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown > summary {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--muted);
    font-weight: 750;
    list-style: none;
    cursor: pointer;
    transition: color 0.2s ease;
}

.nav-dropdown > summary:hover,
.nav-dropdown > summary:focus-visible,
.nav-dropdown[open] > summary {
    color: var(--teal-deep);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    z-index: 40;
    display: grid;
    width: max-content;
    min-width: 230px;
    padding: 9px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255, 253, 249, 0.99);
    box-shadow: 0 18px 46px rgba(24, 36, 32, 0.16);
    transform: translateX(-50%);
}

.nav-dropdown-menu::before {
    position: absolute;
    top: -14px;
    right: 0;
    left: 0;
    height: 14px;
    content: "";
}

.nav-dropdown-menu a {
    padding: 9px 12px;
    border-radius: 9px;
    color: var(--ink);
    font-size: 14px;
    white-space: nowrap;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
    background: rgba(98, 188, 200, 0.13);
    color: var(--teal-deep);
}

@media (min-width: 701px) {
    .nav-dropdown:not([open]) > .nav-dropdown-menu {
        display: none;
    }

    .nav-dropdown:hover > .nav-dropdown-menu,
    .nav-dropdown:focus-within > .nav-dropdown-menu,
    .nav-dropdown[open] > .nav-dropdown-menu {
        display: grid;
    }
}

@media (max-width: 1100px) {
    .site-header .site-nav-menu {
        grid-column: 1 / -1;
        grid-row: 2;
    }
}

@media (max-width: 700px) {
    .site-header .site-nav-menu {
        grid-column: 1 / -1;
        grid-row: 2;
    }

    .site-nav-menu > summary {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        min-height: 42px;
        padding: 8px 12px;
        border: 1px solid var(--line);
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.72);
        color: var(--teal-deep);
        font-size: 14px;
        font-weight: 800;
        cursor: pointer;
    }

    .site-nav-menu:not([open]) > .site-nav {
        display: none;
    }

    .site-header .site-nav-menu .site-nav {
        display: grid;
        gap: 0;
        margin-top: 8px;
        padding: 8px;
        border: 1px solid var(--line);
        border-radius: 12px;
        background: #fffdf9;
        box-shadow: 0 12px 32px rgba(24, 36, 32, 0.12);
    }

    .site-header .site-nav-menu .site-nav > a,
    .nav-dropdown > summary {
        width: 100%;
        padding: 10px 9px;
        color: var(--ink);
    }

    .nav-dropdown-menu {
        position: static;
        width: 100%;
        min-width: 0;
        margin: 0;
        padding: 2px 0 6px 14px;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        transform: none;
    }

    .nav-dropdown-menu a {
        padding: 8px 10px;
        border-left: 2px solid var(--sand);
    }

    .site-header .language-switcher {
        grid-row: 3;
    }
}

/* Final header shop action: intentionally last in the cascade so the compact
   jewelry-style control wins over older header and mobile spacing rules. */
.site-header a.header-shop-cta.shop-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    width: auto;
    min-height: 42px;
    padding: 7px 8px 7px 17px;
    border: 1px solid #c7a95d;
    border-radius: 5px;
    background: linear-gradient(135deg, #fffdf7 0%, #dff3ee 100%);
    color: #07534f;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.45px;
    box-shadow: 0 4px 12px rgba(7, 83, 79, 0.14), inset 0 0 0 1px rgba(255, 255, 255, 0.7);
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.site-header a.header-shop-cta.shop-button:hover {
    border-color: #b99743;
    background: linear-gradient(135deg, #ffffff 0%, #c9ebe3 100%);
    color: #064743;
    transform: translateY(-1px);
    box-shadow: 0 6px 15px rgba(7, 83, 79, 0.2);
}

.site-header a.header-shop-cta.shop-button .arrow {
    display: inline-grid;
    place-items: center;
    width: 27px;
    height: 27px;
    margin-left: 0;
    border-left: 1px solid rgba(185, 151, 67, 0.55);
    background: rgba(7, 83, 79, 0.07);
    font-size: 15px;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.site-header a.header-shop-cta.shop-button:hover .arrow {
    background: rgba(7, 83, 79, 0.12);
    transform: translateX(2px);
}

.site-header a.header-shop-cta.shop-button:focus-visible {
    outline: 3px solid rgba(209, 183, 106, 0.55);
    outline-offset: 3px;
}

/* Article-specific, responsive comparison guide for blue amber viewing. */
.journal-lighting-guide {
    margin: 20px 0 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #0b1514;
    box-shadow: 0 12px 30px rgba(11, 32, 29, 0.12);
}

.journal-lighting-guide img {
    display: block;
    width: 100%;
    height: auto;
}

.journal-lighting-guide figcaption {
    padding: 12px 16px;
    background: #f6f1e8;
    color: #596a65;
    font-size: 13px;
    line-height: 1.55;
}

.journal-lighting-key {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    margin-top: 10px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--line);
}

.journal-lighting-key > div {
    display: grid;
    align-content: start;
    gap: 5px;
    padding: 13px;
    background: #fffdf9;
}

.journal-lighting-key strong {
    color: var(--teal-deep);
    font-size: 13px;
}

.journal-lighting-key span {
    color: #596a65;
    font-size: 12px;
    line-height: 1.5;
}

.journal-steps li {
    margin-bottom: 10px;
}

@media (max-width: 760px) {
    .journal-lighting-key {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 430px) {
    .journal-lighting-key {
        grid-template-columns: 1fr;
    }
}
/* Genuine customer testimonial on the homepage. */
.customer-testimonial {
    position: relative;
    overflow: hidden;
    padding: clamp(36px, 6vw, 72px) clamp(22px, 7vw, 92px);
    border-top: 1px solid rgba(183, 125, 44, 0.28);
    border-bottom: 1px solid rgba(183, 125, 44, 0.28);
    background: linear-gradient(135deg, #fffdf9, #f7f1e7);
}

.customer-testimonial::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 5px;
    background: var(--teal-deep);
    content: "";
}

.customer-testimonial-inner {
    max-width: 980px;
    margin: 0 auto;
}

.customer-testimonial h2 {
    margin: 0 0 20px;
}

.customer-testimonial blockquote {
    max-width: 940px;
    margin: 0;
    color: var(--teal-deep);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(18px, 2vw, 23px);
    line-height: 1.65;
    overflow-wrap: anywhere;
}

.testimonial-quote-mark {
    color: var(--gold);
    font-size: 1.55em;
    line-height: 0;
    vertical-align: -0.12em;
}

.customer-testimonial cite {
    display: block;
    margin-top: 20px;
    color: var(--teal);
    font-family: Arial, sans-serif;
    font-size: 15px;
    font-style: normal;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.customer-testimonial-meta {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-family: Arial, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
}

.testimonial-attribution .testimonial-location {
    color: var(--teal-deep);
    font-weight: 700;
}

.customer-testimonial-link {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    margin: 24px 0 0;
}

.customer-testimonial-link a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding-bottom: 4px;
    border-bottom: 1px solid rgba(15, 95, 96, 0.42);
    color: var(--teal-deep);
    font-weight: 800;
    text-decoration: none;
}

.customer-testimonial-link a:hover,
.customer-testimonial-link a:focus-visible {
    border-color: var(--teal);
    color: var(--teal);
}

@media (max-width: 760px) {
    .customer-testimonial {
        padding: 34px 20px 34px 24px;
    }

    .customer-testimonial h2 {
        margin-bottom: 15px;
        font-size: 30px;
    }

    .customer-testimonial blockquote {
        font-size: 17px;
        line-height: 1.58;
    }

    .customer-testimonial cite {
        margin-top: 16px;
        font-size: 14px;
    }
}
/* Testimonials page */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.testimonials-page {
    min-width: 0;
    overflow-x: hidden;
    background: #fbfaf7;
}

.testimonials-main {
    min-height: 68vh;
    padding: clamp(54px, 7vw, 92px) clamp(20px, 5vw, 72px) clamp(62px, 8vw, 104px);
    background:
        radial-gradient(circle at 50% 12%, rgba(98, 188, 200, 0.08), transparent 28%),
        linear-gradient(180deg, #fff 0%, #fbfaf7 100%);
}

.testimonials-hero {
    max-width: 900px;
    margin: 0 auto clamp(30px, 4vw, 46px);
    text-align: center;
}

.testimonials-hero .eyebrow {
    margin-bottom: 10px;
}

.testimonials-hero h1 {
    margin: 0;
    color: var(--ink);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(38px, 4.5vw, 62px);
    font-weight: 500;
    line-height: 1.08;
}

.testimonials-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    margin-top: 22px;
}

.testimonials-divider span {
    width: 112px;
    max-width: 24vw;
    height: 1px;
    background: var(--teal);
}

.testimonials-divider i {
    width: 12px;
    height: 12px;
    border: 2px solid var(--teal);
    transform: rotate(45deg);
}

.testimonials-list {
    width: min(100%, 1270px);
    margin: 0 auto;
}

.testimonials-track {
    display: grid;
    gap: 28px;
    max-width: 100%;
}

.testimonial-card {
    display: grid;
    grid-template-columns: minmax(190px, 250px) minmax(0, 1fr);
    gap: clamp(34px, 5vw, 66px);
    align-items: center;
    min-width: 0;
    padding: clamp(30px, 4vw, 52px);
    border: 1px solid rgba(24, 62, 65, 0.14);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 48px rgba(24, 36, 32, 0.09);
}

.testimonial-image {
    width: min(100%, 236px);
    aspect-ratio: 1;
    margin: 0 auto;
    overflow: hidden;
    border: 5px solid #fff;
    border-radius: 50%;
    background: var(--sand);
    box-shadow: 0 10px 28px rgba(24, 36, 32, 0.15);
}

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

.testimonial-content {
    position: relative;
    min-width: 0;
    padding-left: 34px;
}

.testimonial-icon {
    position: absolute;
    top: -18px;
    left: 0;
    color: var(--teal);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 66px;
    font-weight: 700;
    line-height: 1;
}

.testimonial-content blockquote {
    margin: 0;
    color: #293733;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(17px, 1.55vw, 21px);
    font-style: italic;
    line-height: 1.65;
    overflow-wrap: anywhere;
}

.testimonial-attribution {
    margin-top: 25px;
}

.testimonial-content cite {
    display: block;
    color: var(--teal);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 25px;
    font-style: normal;
    font-weight: 500;
}

.testimonial-attribution span {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: 15px;
}

@media (max-width: 760px) {
    .testimonials-main {
        padding: 42px 14px 64px;
    }

    .testimonials-hero {
        margin-bottom: 28px;
        padding: 0 8px;
    }

    .testimonials-hero h1 {
        font-size: clamp(34px, 10vw, 46px);
    }

    .testimonials-divider {
        margin-top: 18px;
    }

    .testimonial-card {
        grid-template-columns: minmax(0, 1fr);
        gap: 27px;
        padding: 25px 19px 29px;
        border-radius: 13px;
    }

    .testimonial-image {
        width: 158px;
    }

    .testimonial-content {
        padding: 24px 2px 0;
    }

    .testimonial-icon {
        top: -21px;
        left: 0;
        font-size: 58px;
    }

    .testimonial-content blockquote {
        font-size: 17px;
        line-height: 1.58;
    }

    .testimonial-attribution {
        margin-top: 21px;
    }

    .testimonial-content cite {
        font-size: 23px;
    }

    .testimonial-indicators {
        margin-top: 21px;
    }
}
