: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-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;
    }
}

/* 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;
    }
}
