/* ===========================
   HOME CSS - BIJOUX LÉGERS
   Joaillerie fine & bijoux légers
   Version 2026
   =========================== */

/* HERO SPLIT SCREEN */
.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 88vh;
    background-color: #fafbfc;
}

.hero-split__image {
    position: relative;
    overflow: hidden;
    background-color: #e8ecf0;
}

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

.hero-split__badge {
    position: absolute;
    bottom: 28px;
    left: 28px;
    background-color: #fff;
    border: 1px solid #e0f4f5;
    border-radius: 40px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #00838f;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.hero-split__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 64px 64px 64px 56px;
    background-color: #fff;
}

.hero-split__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #00838f;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.hero-split__eyebrow::before {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background-color: #00838f;
}

.hero-split__title {
    font-size: clamp(32px, 3.5vw, 52px);
    font-weight: 800;
    line-height: 1.15;
    color: #1a2535;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-split__title em {
    font-style: normal;
    color: #00838f;
}

.hero-split__desc {
    font-size: 17px;
    line-height: 1.75;
    color: #5a6a7a;
    margin-bottom: 32px;
    max-width: 460px;
}

.hero-split__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 36px;
}

.tag {
    display: inline-block;
    padding: 6px 14px;
    background-color: #f0fafa;
    color: #00838f;
    border: 1px solid #c5e8eb;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}

.hero-split__cta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background-color: #00838f;
    color: #fff;
    text-decoration: none;
    border-radius: 40px;
    font-size: 15px;
    font-weight: 600;
    transition: background-color 0.2s, transform 0.15s;
}

.btn-primary:hover {
    background-color: #006f7a;
    transform: translateY(-1px);
}

.btn-primary:focus-visible {
    outline: 2px solid #00838f;
    outline-offset: 4px;
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    padding: 14px 28px;
    border: 2px solid #c5cae9;
    color: #1a2535;
    text-decoration: none;
    border-radius: 40px;
    font-size: 15px;
    font-weight: 600;
    transition: border-color 0.2s, color 0.2s;
}

.btn-ghost:hover {
    border-color: #00838f;
    color: #00838f;
}

.btn-ghost:focus-visible {
    outline: 2px solid #00838f;
    outline-offset: 4px;
}

/* CONTAINER */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* SECTION HEADER */
.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    color: #00838f;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 800;
    color: #1a2535;
    margin-bottom: 16px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 16px;
    color: #6b7a8d;
    line-height: 1.7;
    max-width: 580px;
    margin: 0 auto;
}

/* CERCLES DE PROGRESSION */
.themes-section {
    padding: 80px 0;
    background-color: #f7f9fc;
}

.progress-circles {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.progress-circle-item {
    text-align: center;
    padding: 32px 24px;
    background-color: #fff;
    border-radius: 16px;
    border: 1px solid #e8ecf0;
    transition: box-shadow 0.2s, transform 0.2s;
}

.progress-circle-item:hover {
    box-shadow: 0 8px 32px rgba(0,131,143,0.1);
    transform: translateY(-3px);
}

.circle-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.circle-percent {
    position: absolute;
    font-size: 18px;
    font-weight: 800;
    color: #1a2535;
}

.circle-icon {
    margin-bottom: 14px;
}

.circle-label {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #1a2535;
    margin-bottom: 8px;
}

.circle-desc {
    font-size: 13px;
    color: #7a8a9a;
    line-height: 1.5;
    margin: 0;
}

/* OUTIL COMPARAISON */
.comparison-section {
    padding: 80px 0;
    background-color: #fff;
}

.comparison-tool {
    border: 1px solid #e8ecf0;
    border-radius: 20px;
    overflow: hidden;
}

.comparison-nav {
    display: flex;
    background-color: #f7f9fc;
    border-bottom: 1px solid #e8ecf0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.comparison-nav::-webkit-scrollbar {
    display: none;
}

.comp-tab {
    flex: 1;
    min-width: 120px;
    padding: 16px 20px;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: #7a8a9a;
    transition: color 0.2s, border-color 0.2s, background-color 0.2s;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    white-space: nowrap;
}

.comp-tab:hover {
    color: #00838f;
    background-color: #f0fafa;
}

.comp-tab.active {
    color: #00838f;
    border-bottom-color: #00838f;
    background-color: #fff;
}

.comp-tab:focus-visible {
    outline: 2px solid #00838f;
    outline-offset: -2px;
}

.comp-panel {
    display: none;
    grid-template-columns: 1fr 1.4fr;
    gap: 0;
    min-height: 360px;
}

.comp-panel.active {
    display: grid;
}

.comp-panel__visual {
    overflow: hidden;
    background-color: #f7f9fc;
}

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

.comp-panel__info {
    padding: 40px;
}

.comp-panel__title {
    font-size: 22px;
    font-weight: 700;
    color: #1a2535;
    margin-bottom: 12px;
}

.comp-panel__intro {
    font-size: 15px;
    color: #5a6a7a;
    line-height: 1.7;
    margin-bottom: 28px;
}

.comp-metrics {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.comp-metric {
    display: grid;
    grid-template-columns: 140px 1fr 100px;
    align-items: center;
    gap: 12px;
}

.comp-metric__label {
    font-size: 13px;
    font-weight: 600;
    color: #5a6a7a;
}

.comp-metric__bar {
    height: 6px;
    background-color: #e8ecf0;
    border-radius: 4px;
    overflow: hidden;
}

.comp-metric__fill {
    height: 100%;
    border-radius: 4px;
    transition: width 0.4s ease;
}

.comp-metric__val {
    font-size: 12px;
    font-weight: 600;
    color: #00838f;
    text-align: right;
}

.comp-panel__note {
    font-size: 13px;
    color: #7a8a9a;
    font-style: italic;
    line-height: 1.6;
    padding: 12px 16px;
    background-color: #f0fafa;
    border-left: 3px solid #00838f;
    border-radius: 0 8px 8px 0;
    margin: 0;
}

/* ARTICLES */
.articles-section {
    padding: 80px 0;
    background-color: #f7f9fc;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
    gap: 24px;
}

.article-card {
    background-color: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e8ecf0;
    transition: box-shadow 0.2s, transform 0.2s;
}

.article-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    transform: translateY(-3px);
}

.article-card--featured {
    grid-column: span 7;
    display: grid;
    grid-template-columns: 1fr;
}

.article-card--featured .article-card__img-wrap {
    height: 300px;
}

.article-card:not(.article-card--featured) {
    grid-column: span 5;
}

/* Quand on a plus de 2 articles, répartir les autres */
.articles-grid .article-card:nth-child(3) {
    grid-column: span 4;
}
.articles-grid .article-card:nth-child(4) {
    grid-column: span 4;
}
.articles-grid .article-card:nth-child(5) {
    grid-column: span 4;
}

.article-card__img-wrap {
    position: relative;
    height: 220px;
    overflow: hidden;
    background-color: #e8ecf0;
}

.article-card__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.article-card:hover .article-card__img-wrap img {
    transform: scale(1.03);
}

.article-card__cat {
    position: absolute;
    top: 14px;
    left: 14px;
    background-color: #00838f;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 4px 10px;
    border-radius: 20px;
}

.article-card__body {
    padding: 24px;
}

.article-card__meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.article-card__meta time {
    font-size: 13px;
    color: #9aa8b8;
}

.article-card__read {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: #9aa8b8;
}

.article-card__title {
    font-size: 17px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 10px;
    color: #1a2535;
}

.article-card--featured .article-card__title {
    font-size: 22px;
}

.article-card__title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.article-card__title a:hover {
    color: #00838f;
}

.article-card__title a:focus-visible {
    outline: 2px solid #00838f;
    outline-offset: 2px;
    border-radius: 2px;
}

.article-card__excerpt {
    font-size: 14px;
    color: #6b7a8d;
    line-height: 1.65;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ACCORDÉON */
.accordion-section {
    padding: 80px 0;
    background-color: #fff;
}

.accordion-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 56px;
    align-items: start;
}

.accordion-intro__title {
    font-size: clamp(24px, 2.5vw, 36px);
    font-weight: 800;
    color: #1a2535;
    margin-bottom: 16px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.accordion-intro__text {
    font-size: 15px;
    color: #5a6a7a;
    line-height: 1.75;
    margin-bottom: 28px;
}

.accordion-intro img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
}

.accordion-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.accordion-item {
    border: 1px solid #e8ecf0;
    border-radius: 12px;
    overflow: hidden;
    background-color: #fff;
}

.accordion-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: #1a2535;
    text-align: left;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    transition: background-color 0.2s;
}

.accordion-trigger:hover {
    background-color: #f7f9fc;
}

.accordion-trigger:focus-visible {
    outline: 2px solid #00838f;
    outline-offset: -2px;
}

.accordion-trigger[aria-expanded="true"] {
    color: #00838f;
    background-color: #f0fafa;
}

.accordion-icon {
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.accordion-trigger[aria-expanded="true"] .accordion-icon {
    transform: rotate(180deg);
}

.accordion-body {
    padding: 0 20px 18px;
    background-color: #f0fafa;
}

.accordion-body--closed {
    display: none;
}

.accordion-body p {
    font-size: 14px;
    color: #5a6a7a;
    line-height: 1.75;
    margin: 0;
}

/* GALERIE */
.gallery-section {
    padding: 80px 0;
    background-color: #f7f9fc;
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    padding: 0;
    background: none;
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item__overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 131, 143, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.gallery-item:hover .gallery-item__overlay,
.gallery-item:focus-visible .gallery-item__overlay {
    opacity: 1;
}

.gallery-item:focus-visible {
    outline: 3px solid #00838f;
    outline-offset: 3px;
}

/* MODAL */
.modal-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(10, 15, 25, 0.92);
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay[hidden] {
    display: none;
}

.modal-content {
    max-width: 700px;
    width: 100%;
    text-align: center;
}

.modal-content img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    max-height: 70vh;
    object-fit: contain;
}

.modal-caption {
    color: #c5cae9;
    font-size: 14px;
    margin-top: 14px;
    line-height: 1.6;
}

.modal-close {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
    z-index: 9001;
}

.modal-close:hover {
    background-color: rgba(255,255,255,0.2);
}

.modal-close:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 3px;
}

.modal-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
    z-index: 9001;
}

.modal-prev {
    left: 20px;
}

.modal-next {
    right: 20px;
}

.modal-nav:hover {
    background-color: rgba(255,255,255,0.2);
}

.modal-nav:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 3px;
}

/* TABLEAU PIERRES */
.table-section {
    padding: 80px 0;
    background-color: #fff;
}

.stones-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.stones-table thead th {
    background-color: #1a2535;
    color: #fff;
    padding: 14px 16px;
    text-align: left;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.stones-table thead th:first-child {
    border-radius: 8px 0 0 0;
}

.stones-table thead th:last-child {
    border-radius: 0 8px 0 0;
}

.stones-table tbody tr {
    border-bottom: 1px solid #e8ecf0;
    transition: background-color 0.15s;
}

.stones-table tbody tr:hover {
    background-color: #f0fafa;
}

.stones-table tbody td {
    padding: 14px 16px;
    color: #3a4a5a;
    vertical-align: middle;
}

.stone-name {
    font-weight: 700;
    font-size: 14px;
}

.stone-quartz { color: #d87093; }
.stone-topaze { color: #4682b4; }
.stone-amethyste { color: #8a2be2; }
.stone-labradorite { color: #4a90a4; }
.stone-grenat { color: #9b1a1a; }
.stone-tourmaline { color: #2d7a2d; }

.cost-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.cost-low {
    background-color: #e8f5e9;
    color: #2e7d32;
}

.cost-mid {
    background-color: #fff8e1;
    color: #f57f17;
}

.cost-high {
    background-color: #fce4ec;
    color: #c62828;
}

.table-note {
    font-size: 13px;
    color: #7a8a9a;
    font-style: italic;
    margin-top: 20px;
    text-align: center;
    padding: 14px 20px;
    background-color: #f7f9fc;
    border-radius: 8px;
}

/* NEWSLETTER */
.newsletter-section {
    padding: 80px 0;
    background-color: #f7f9fc;
}

.newsletter-block {
    background-color: #00838f;
    border-radius: 24px;
    padding: 56px 64px;
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 48px;
    align-items: center;
}

.newsletter-block__deco {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.newsletter-eyebrow {
    display: block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #fff9c4;
    margin-bottom: 10px;
}

.newsletter-title {
    font-size: clamp(22px, 2.5vw, 32px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
    line-height: 1.25;
}

.newsletter-desc {
    font-size: 15px;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    margin-bottom: 28px;
}

.newsletter-form__row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.newsletter-form input[type="email"] {
    flex: 1;
    min-width: 200px;
    padding: 14px 18px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 40px;
    background-color: rgba(255,255,255,0.15);
    color: #fff;
    font-size: 15px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    outline: none;
}

.newsletter-form input[type="email"]::placeholder {
    color: rgba(255,255,255,0.6);
}

.newsletter-form input[type="email"]:focus {
    border-color: #fff;
    background-color: rgba(255,255,255,0.25);
}

.newsletter-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    background-color: #fff;
    color: #00838f;
    border: none;
    border-radius: 40px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    transition: background-color 0.2s;
    white-space: nowrap;
}

.newsletter-btn:hover {
    background-color: #fff9c4;
}

.newsletter-btn:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 3px;
}

.newsletter-legal {
    font-size: 12px;
    color: rgba(255,255,255,0.65);
    margin-top: 12px;
    margin-bottom: 0;
}

/* DISCLAIMER */
.disclaimer-bar {
    background-color: #fff9c4;
    padding: 16px 24px;
}

.disclaimer-bar .container {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.disclaimer-bar p {
    font-size: 13px;
    color: #5a5020;
    line-height: 1.6;
    margin: 0;
}

.disclaimer-bar svg {
    flex-shrink: 0;
    margin-top: 1px;
    color: #8a7020;
}

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

/* ===== RESPONSIVE (auto-repair) ===== */
@media (max-width: 1024px) {

    .hero-split {
        grid-template-columns: 1fr 1fr;
        min-height: 70vh;
    }

    .hero-split__content {
        padding: 48px 40px 48px 40px;
    }

    .hero-split__desc {
        font-size: 16px;
    }

    .progress-circles {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .comp-panel {
        grid-template-columns: 1fr 1.2fr;
    }

    .comp-panel.active {
        display: grid;
    }

    .comp-metric {
        grid-template-columns: 110px 1fr 80px;
    }

    .articles-grid {
        grid-template-columns: repeat(12, 1fr);
        gap: 20px;
    }

    .article-card--featured {
        grid-column: span 12;
    }

    .article-card--featured .article-card__img-wrap {
        height: 260px;
    }

    .article-card:not(.article-card--featured) {
        grid-column: span 6;
    }

    .articles-grid .article-card:nth-child(3) {
        grid-column: span 4;
    }

    .articles-grid .article-card:nth-child(4) {
        grid-column: span 4;
    }

    .articles-grid .article-card:nth-child(5) {
        grid-column: span 4;
    }

    .accordion-layout {
        grid-template-columns: 1fr 1.2fr;
        gap: 36px;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .newsletter-block {
        grid-template-columns: 1fr 1.4fr;
        gap: 32px;
        padding: 48px 48px;
    }

    .comp-panel__info {
        padding: 28px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .themes-section,
    .comparison-section,
    .articles-section,
    .accordion-section,
    .gallery-section,
    .table-section,
    .newsletter-section {
        padding: 64px 0;
    }
}

@media (max-width: 768px) {

    .hero-split {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-split__image {
        height: 300px;
    }

    .hero-split__badge {
        bottom: 16px;
        left: 16px;
        font-size: 12px;
        padding: 6px 12px;
    }

    .hero-split__content {
        padding: 40px 24px;
    }

    .hero-split__desc {
        font-size: 15px;
        margin-bottom: 24px;
        max-width: 100%;
    }

    .hero-split__tags {
        margin-bottom: 28px;
    }

    .hero-split__cta {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .btn-primary,
    .btn-ghost {
        width: 100%;
        justify-content: center;
    }

    .container {
        padding: 0 16px;
    }

    .section-header {
        margin-bottom: 32px;
    }

    .section-subtitle {
        font-size: 15px;
    }

    .themes-section,
    .comparison-section,
    .articles-section,
    .accordion-section,
    .gallery-section,
    .table-section,
    .newsletter-section {
        padding: 48px 0;
    }

    .progress-circles {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .progress-circle-item {
        padding: 24px 16px;
    }

    .comparison-tool {
        border-radius: 12px;
    }

    .comp-tab {
        min-width: 100px;
        padding: 12px 14px;
        font-size: 13px;
    }

    .comp-panel {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .comp-panel.active {
        display: grid;
    }

    .comp-panel__visual {
        height: 220px;
    }

    .comp-panel__info {
        padding: 24px;
    }

    .comp-panel__title {
        font-size: 19px;
    }

    .comp-metric {
        grid-template-columns: 100px 1fr 70px;
        gap: 8px;
    }

    .articles-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .article-card--featured {
        grid-column: span 1;
    }

    .article-card--featured .article-card__img-wrap {
        height: 220px;
    }

    .article-card:not(.article-card--featured) {
        grid-column: span 1;
    }

    .articles-grid .article-card:nth-child(3) {
        grid-column: span 1;
    }

    .articles-grid .article-card:nth-child(4) {
        grid-column: span 1;
    }

    .articles-grid .article-card:nth-child(5) {
        grid-column: span 1;
    }

    .article-card--featured .article-card__title {
        font-size: 18px;
    }

    .accordion-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .accordion-intro img {
        max-height: 240px;
        object-fit: cover;
    }

    .accordion-trigger {
        font-size: 14px;
        padding: 16px 16px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .gallery-item__overlay {
        opacity: 1;
        background-color: rgba(0, 131, 143, 0.35);
    }

    .modal-overlay {
        padding: 12px;
    }

    .modal-close {
        top: 12px;
        right: 12px;
        width: 40px;
        height: 40px;
    }

    .modal-prev {
        left: 8px;
    }

    .modal-next {
        right: 8px;
    }

    .modal-nav {
        width: 40px;
        height: 40px;
    }

    .modal-content img {
        max-height: 60vh;
    }

    .table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .stones-table {
        min-width: 600px;
    }

    .newsletter-block {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 40px 28px;
        border-radius: 16px;
    }

    .newsletter-block__deco {
        display: none;
    }

    .newsletter-title {
        font-size: 22px;
    }

    .newsletter-desc {
        font-size: 14px;
    }

    .newsletter-form__row {
        flex-direction: column;
        gap: 10px;
    }

    .newsletter-form input[type="email"] {
        min-width: 0;
        width: 100%;
    }

    .newsletter-btn {
        width: 100%;
        justify-content: center;
    }

    .disclaimer-bar .container {
        flex-direction: row;
        gap: 10px;
    }

    .disclaimer-bar p {
        font-size: 12px;
    }
}

@media (max-width: 480px) {

    .hero-split__image {
        height: 220px;
    }

    .hero-split__badge {
        font-size: 11px;
        padding: 5px 10px;
        gap: 6px;
        bottom: 12px;
        left: 12px;
    }

    .hero-split__content {
        padding: 28px 16px;
    }

    .hero-split__eyebrow {
        font-size: 11px;
        margin-bottom: 14px;
    }

    .hero-split__desc {
        font-size: 14px;
        line-height: 1.65;
        margin-bottom: 20px;
    }

    .hero-split__tags {
        gap: 6px;
        margin-bottom: 20px;
    }

    .tag {
        font-size: 12px;
        padding: 5px 11px;
    }

    .hero-split__cta {
        gap: 10px;
    }

    .btn-primary,
    .btn-ghost {
        font-size: 14px;
        padding: 12px 20px;
    }

    .container {
        padding: 0 12px;
    }

    .section-header {
        margin-bottom: 24px;
    }

    .section-subtitle {
        font-size: 14px;
    }

    .themes-section,
    .comparison-section,
    .articles-section,
    .accordion-section,
    .gallery-section,
    .table-section,
    .newsletter-section {
        padding: 36px 0;
    }

    .progress-circles {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .progress-circle-item {
        padding: 20px 16px;
    }

    .circle-label {
        font-size: 14px;
    }

    .circle-desc {
        font-size: 12px;
    }

    .comp-tab {
        min-width: 88px;
        padding: 10px 10px;
        font-size: 12px;
    }

    .comp-panel__visual {
        height: 180px;
    }

    .comp-panel__info {
        padding: 16px;
    }

    .comp-panel__title {
        font-size: 17px;
    }

    .comp-panel__intro {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .comp-metric {
        grid-template-columns: 80px 1fr 60px;
        gap: 6px;
    }

    .comp-metric__label {
        font-size: 12px;
    }

    .comp-metric__val {
        font-size: 11px;
    }

    .comp-panel__note {
        font-size: 12px;
        padding: 10px 12px;
    }

    .article-card__body {
        padding: 16px;
    }

    .article-card__title {
        font-size: 15px;
    }

    .article-card--featured .article-card__title {
        font-size: 16px;
    }

    .article-card__excerpt {
        font-size: 13px;
    }

    .article-card--featured .article-card__img-wrap {
        height: 180px;
    }

    .accordion-trigger {
        font-size: 13px;
        padding: 14px 12px;
        gap: 10px;
    }

    .accordion-body p {
        font-size: 13px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .modal-close {
        top: 8px;
        right: 8px;
        width: 36px;
        height: 36px;
    }

    .modal-prev {
        left: 4px;
    }

    .modal-next {
        right: 4px;
    }

    .modal-nav {
        width: 36px;
        height: 36px;
    }

    .modal-content img {
        max-height: 55vh;
        border-radius: 8px;
    }

    .modal-caption {
        font-size: 12px;
        margin-top: 10px;
    }

    .stones-table {
        font-size: 13px;
    }

    .stones-table thead th {
        padding: 10px 12px;
        font-size: 11px;
    }

    .stones-table tbody td {
        padding: 10px 12px;
    }

    .cost-badge {
        font-size: 11px;
        padding: 2px 8px;
    }

    .table-note {
        font-size: 12px;
        padding: 10px 14px;
    }

    .newsletter-block {
        padding: 28px 16px;
        border-radius: 12px;
    }

    .newsletter-title {
        font-size: 19px;
    }

    .newsletter-desc {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .newsletter-form input[type="email"] {
        padding: 12px 14px;
        font-size: 14px;
    }

    .newsletter-btn {
        font-size: 14px;
        padding: 12px 20px;
    }

    .newsletter-legal {
        font-size: 11px;
    }

    .disclaimer-bar {
        padding: 12px 16px;
    }

    .disclaimer-bar p {
        font-size: 11px;
    }
}