﻿*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    width: 100%;
}

img {
    max-width: 100%;
    height: auto;
}

:root {
    --cream: #F9F4EC;
    --cream-dark: #F0E8D8;
    --cream-mid: #E8DCC8;
    --gold: #B8965A;
    --gold-light: #D4AF7A;
    --gold-dark: #8A6B35;
    --salt: #EAE6E0;
    --salt-blue: #C8D8E8;
    --salt-blue-mid: #A0B8CC;
    --deep: #241708;
    --deep-light: #3A2810;
    --brown-warm: #5C4A32;
    --text-main: #111111;
    --text-muted: #111111;
    --white: #FFFDF8;
}

html {
    scroll-behavior: smooth;
    font-size: 137.5%;
}

@media (max-width: 1024px) {
    html {
        font-size: 125%;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 112.5%;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 100%;
    }
}

body {
    font-family: 'Jost', sans-serif;
    background: var(--cream);
    color: var(--text-main);
    font-weight: 300;
    line-height: 1.7;
    overflow-x: hidden;
}

/* TOP BAR */
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 1.8rem;
    background: var(--gold-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 0 2rem;
    z-index: 101;
}

.top-bar-text {
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    color: var(--cream);
}

.top-bar-text strong {
    color: var(--white);
    font-weight: 500;
}

.top-bar-cta {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--white);
    text-decoration: underline;
    text-decoration-color: transparent;
    text-underline-offset: 4px;
    white-space: nowrap;
    display: inline-block;
    transition: color 0.25s, text-decoration-color 0.25s, transform 0.25s;
}

.top-bar-cta:hover {
    color: var(--cream);
    text-decoration-color: var(--cream);
    transform: translateY(-2px);
}

@media (max-width: 480px) {
    .top-bar {
        flex-wrap: nowrap;
        justify-content: center;
        gap: 0.6rem;
        padding: 0 0.6rem;
    }

    .top-bar-text {
        font-size: 0.58rem;
        letter-spacing: 0.02em;
        white-space: nowrap;
    }

    .top-bar-cta {
        font-size: 0.58rem;
        letter-spacing: 0.04em;
    }
}

/* NAV */
nav {
    position: fixed;
    top: 1.8rem;
    left: 0;
    right: 0;
    background: rgba(249, 244, 236, 0.96);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--cream-mid);
    padding: 0.65rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--gold-dark);
    letter-spacing: 0.08em;
    text-decoration: none;
}

.nav-logo-img {
    height: 2.6rem;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.74rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-links a.active {
    color: var(--gold-dark);
    font-weight: 500;
    border-bottom: 1px solid var(--gold);
}

.nav-cta {
    padding: 0.5rem 1.4rem;
    border: 1px solid var(--gold);
    color: var(--gold-dark) !important;
    transition: all 0.3s !important;
}

.nav-cta:hover {
    background: var(--gold) !important;
    color: var(--white) !important;
}

.nav-toggle {
    display: none;
    background: none;
    border: 1px solid var(--gold);
    color: var(--gold-dark);
    width: 2.4rem;
    height: 2.4rem;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    line-height: 1;
    cursor: pointer;
}

/* HERO */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 6rem 2rem 3.5rem;
    background-image: linear-gradient(160deg, rgba(249, 244, 236, 0.6) 0%, rgba(240, 232, 216, 0.90) 60%, rgba(232, 220, 200, 0.3) 100%), url('assets/images/background-1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.hero-crystals {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(ellipse 60% 40% at 20% 80%, rgba(184, 150, 90, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 80% 20%, rgba(184, 150, 90, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse 80% 40% at 50% 50%, rgba(184, 150, 90, 0.06) 0%, transparent 70%);
}

.hero-salt-dots {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: radial-gradient(circle, rgba(184, 150, 90, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
}

.hero-top-label {
    font-size: 0.88rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-dark);
    font-weight: 500;
    margin-bottom: 1rem;
    position: relative;
}

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--text-main);
    letter-spacing: 0.02em;
    margin-bottom: 0.5rem;
    position: relative;
}

.hero h1 em {
    font-style: italic;
    color: var(--gold-light);
    display: block;
}

.hero-divider {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 1.2rem auto;
    position: relative;
}

.hero-divider::before, .hero-divider::after {
    content: '◆';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.35rem;
    color: var(--gold);
}

.hero-divider::before {
    left: -12px;
}

.hero-divider::after {
    right: -12px;
}

.hero-desc {
    font-size: 1rem;
    color: #111111;
    max-width: 720px;
    line-height: 1.9;
    margin-bottom: 1.8rem;
    font-weight: 300;
    position: relative;
}

.hero-highlight {
    color: var(--gold-light);
    font-weight: 500;
    border-bottom: 1px solid rgba(212, 175, 122, 0.5);
    font-style: italic;
}

.hero-badges {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.8rem;
    position: relative;
}

.hero-badge {
    flex: 0 0 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0.5rem 1.4rem;
    background: var(--brown-warm);
    border: 1px solid rgba(184, 150, 90, 0.4);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

/* KEY INFO STRIP */
.key-info-strip {
    background: var(--cream-dark);
    border-top: 1px solid rgba(184, 150, 90, 0.25);
    border-bottom: 1px solid rgba(184, 150, 90, 0.25);
    padding: 0;
}

.key-info-inner {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.key-info-card {
    padding: 3rem 3.5rem;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    position: relative;
    transition: background 0.3s;
}

.key-info-card:hover {
    background: rgba(58, 46, 30, 0.04);
}

.key-info-card:first-child {
    border-right: 1px solid rgba(184, 150, 90, 0.2);
}

.key-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, var(--gold), transparent);
}

.key-info-icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    border: 1px solid rgba(184, 150, 90, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    background: rgba(184, 150, 90, 0.06);
}

.key-info-label {
    font-size: 0.62rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 0.4rem;
    display: block;
}

.key-info-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 400;
    color: var(--text-main);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.key-info-desc {
    font-size: 0.84rem;
    color: #111111;
    line-height: 1.75;
}

@media (max-width: 700px) {
    .key-info-inner {
        grid-template-columns: 1fr;
    }

    .key-info-card:first-child {
        border-right: none;
        border-bottom: 1px solid rgba(184, 150, 90, 0.2);
    }

    .key-info-card {
        padding: 2rem 1.5rem;
    }
}

.btn-primary {
    display: inline-block;
    appearance: none;
    -webkit-appearance: none;
    padding: 0.95rem 3rem;
    background: var(--gold);
    border: 1px solid var(--gold);
    color: var(--white);
    font-family: 'Jost', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    position: relative;
    box-shadow: 0 6px 24px rgba(138, 107, 53, 0.55), 0 2px 6px rgba(0,0,0,0.18);
}

.btn-primary:hover {
    background: var(--gold-dark);
    color: var(--white);
    box-shadow: 0 10px 32px rgba(138, 107, 53, 0.65), 0 3px 8px rgba(0,0,0,0.22);
    transform: translateY(-2px);
}

.hero-scroll {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.hero-scroll span {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(58, 46, 30, 0.5);
}

.scroll-line {
    width: 1px;
    height: 20px;
    background: linear-gradient(to bottom, rgba(184, 150, 90, 0.6), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% {
        opacity: 0.4;
    }
    50% {
        opacity: 1;
    }
}

/* SECTION */
section {
    padding: 4rem 2rem;
    scroll-margin-top: 5rem;
}

.section-inner {
    max-width: 1320px;
    margin: 0 auto;
}

.section-label {
    font-size: 0.68rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 0.8rem;
    display: block;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    color: var(--brown-warm);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-title em {
    font-style: italic;
    color: var(--gold-dark);
}

.section-subtitle {
    font-size: 1rem;
    font-style: italic;
    color: var(--text-muted);
    margin-top: -0.5rem;
    margin-bottom: 1.5rem;
}

.thin-line {
    width: 50px;
    height: 1px;
    background: var(--gold);
    margin-bottom: 2.5rem;
}

/* HOW IT WORKS */
#how {
    background: var(--cream-dark);
}

#how .section-title {
    color: var(--text-main);
}

#how .section-label {
    color: var(--gold-dark);
}

#how .thin-line {
    background: var(--gold);
}

.how-header {
    text-align: left;
    max-width: 950px;
    margin: 0 0 3rem;
}

.how-thin-line {
    margin: 0;
}

/* Tudományos szöveg + kép sor */
.how-science-row {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 3.5rem;
}

.how-science {
    flex: 1;
    text-align: left;
}

.how-comparison {
    flex-shrink: 0;
}

.how-science p {
    color: #111111;
    font-size: 0.95rem;
    line-height: 1.9;
    margin-bottom: 1rem;
}

.how-science strong {
    color: var(--gold-light);
    font-weight: 400;
}

/* Légút összehasonlítás */

.how-comparison-img {
    max-width: 700px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 16px;
}

.how-comparison-panel {
    flex: 1;
    max-width: 340px;
    padding: 2.5rem 2rem;
    text-align: center;
    border: 1px solid rgba(184, 150, 90, 0.3);
    background: var(--cream);
}

.how-comparison-arrow {
    font-size: 2rem;
    color: var(--gold);
    flex-shrink: 0;
    opacity: 0.6;
}

.how-airway {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.airway-tube {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid rgba(184, 150, 90, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.airway-mucus {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(140, 110, 60, 0.4), rgba(100, 75, 35, 0.25));
    border: 2px solid rgba(140, 110, 60, 0.45);
}

.airway-open {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(184, 150, 90, 0.15), transparent);
    border: 2px dashed rgba(184, 150, 90, 0.3);
}

.how-comparison-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.how-blocked .how-comparison-label {
    color: var(--text-muted);
}

.how-clear .how-comparison-label {
    color: var(--gold-light);
}

.how-comparison-desc {
    font-size: 0.78rem;
    color: #111111;
    line-height: 1.7;
}

/* Dr. figyelmeztetés */
.how-warning {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    margin-bottom: 3.5rem;
    padding: 2rem 2.5rem;
    border: 1px solid rgba(184, 150, 90, 0.25);
    border-left: 3px solid var(--gold);
    background: rgba(184, 150, 90, 0.08);
}

.how-warning-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.how-warning-text {
    font-size: 0.88rem;
    color: #111111;
    line-height: 1.85;
    margin-bottom: 0.6rem;
}

.how-warning-text strong {
    color: var(--gold-light);
    font-weight: 400;
}

.how-warning-author {
    font-size: 0.68rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
}

/* Folyamat lépések */
.how-steps-row {
    display: flex;
    align-items: stretch;
    gap: 0;
    margin-bottom: 4rem;
}

.how-card {
    flex: 1;
    position: relative;
    overflow: hidden;
    padding: 2.5rem 2rem 2rem;
    border: 1px solid rgba(184, 150, 90, 0.25);
    border-radius: 14px;
    background: var(--cream);
    box-shadow: 0 6px 20px rgba(138, 107, 53, 0.06);
    transition: background 0.3s, border-color 0.3s, box-shadow 0.3s, transform 0.3s;
    text-align: center;
}

.how-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-light), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.how-card:hover {
    background: var(--white);
    border-color: rgba(184, 150, 90, 0.5);
    box-shadow: 0 14px 32px rgba(138, 107, 53, 0.14);
    transform: translateY(-4px);
}

.how-card:hover::before {
    transform: scaleX(1);
}

.how-card-icon {
    position: absolute;
    top: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 110px;
    color: rgba(184, 150, 90, 0.12);
    pointer-events: none;
    transition: color 0.3s;
}

.how-card-icon svg {
    width: 100%;
    height: 100%;
}

.how-card:hover .how-card-icon {
    color: rgba(184, 150, 90, 0.22);
}

.how-card-title {
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold-dark);
    font-weight: 600;
    margin-bottom: 0.9rem;
    position: relative;
}

.how-card-title::after {
    content: "";
    display: block;
    width: 28px;
    height: 1px;
    margin: 0.6rem auto 0;
    background: rgba(184, 150, 90, 0.5);
}

.how-card-desc {
    font-size: 0.8rem;
    color: #111111;
    line-height: 1.7;
    position: relative;
}

.how-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(184, 150, 90, 0.45);
    font-size: 1.3rem;
    flex-shrink: 0;
    padding: 0 0.9rem;
}

/* Történet */
/* ANCIENT EXPERIENCE */
#history {
    background: linear-gradient(160deg, var(--cream-dark) 0%, var(--cream-mid) 100%);
    position: relative;
}

.how-history {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 4rem;
    align-items: start;
}

.how-history-header {
    position: sticky;
    top: 8rem;
}

.how-history-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 300;
    font-style: italic;
    color: var(--text-main);
    line-height: 1.3;
    margin-top: 0.5rem;
}

.how-history-body p {
    font-size: 0.88rem;
    color: #111111;
    line-height: 1.9;
    margin-bottom: 1.2rem;
}

.how-history-body strong {
    color: var(--gold-light);
    font-weight: 400;
}

@media (max-width: 900px) {
    .how-science-row {
        flex-direction: column;
    }

    .how-science {
        text-align: center;
    }

    .how-steps-row {
        flex-direction: column;
    }

    .how-arrow {
        transform: rotate(90deg);
    }

    .how-history {
        grid-template-columns: 1fr;
    }

    .how-history-header {
        position: static;
    }
}

/* HEALS */
#heals {
    background: var(--white);
}

.heals-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 0.5rem;
}

.heal-card {
    border: 1px solid var(--cream-mid);
    padding: 2rem 1.5rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    background: var(--cream);
}

.heal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.3s;
    transform-origin: left;
}

.heal-card {
    cursor: pointer;
}

.heal-card:hover {
    border-color: var(--gold-light);
}

.heal-card:hover::before {
    transform: scaleX(1);
}

.heal-icon {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.heal-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--brown-warm);
    margin-bottom: 0.5rem;
}

.heal-desc {
    font-size: 0.83rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.heal-more {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-dark);
    border-bottom: 1px solid rgba(138, 107, 53, 0.3);
    padding-bottom: 1px;
    transition: color 0.2s, border-color 0.2s;
}

.heal-card:hover .heal-more {
    color: var(--gold);
    border-color: var(--gold);
}

/* LIGHTBOX */
.lightbox-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 300;
    background: rgba(20, 12, 6, 0.92);
    backdrop-filter: blur(4px);
    align-items: center;
    justify-content: center;
    padding: 3rem;
}

.lightbox-overlay.open {
    display: flex;
}

.lightbox-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: 1px solid var(--cream-mid);
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    color: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: color 0.2s, border-color 0.2s;
}

.lightbox-close:hover {
    color: var(--gold);
    border-color: var(--gold);
}

.lightbox-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: 1px solid var(--cream-mid);
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: color 0.2s, border-color 0.2s;
}

.lightbox-nav:hover {
    color: var(--gold);
    border-color: var(--gold);
}

.lightbox-nav--prev {
    left: 1.5rem;
}

.lightbox-nav--next {
    right: 1.5rem;
}

@media (max-width: 640px) {
    .lightbox-nav {
        width: 2.4rem;
        height: 2.4rem;
        font-size: 1rem;
    }
    .lightbox-nav--prev {
        left: 0.5rem;
    }
    .lightbox-nav--next {
        right: 0.5rem;
    }
}

/* MODAL */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(30, 20, 10, 0.75);
    backdrop-filter: blur(4px);
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal-overlay.open {
    display: flex;
}

.modal-box {
    display: block;
    max-width: 1300px;
    width: 100%;
    max-height: 88vh;
    border: 1px solid var(--cream-mid);
    overflow: hidden;
}

.modal-content {
    overflow-y: auto;
    max-height: 88vh;
    padding: 2.5rem 2.5rem 2.5rem;
    background: var(--cream);
    position: relative;
    border-left: 3px solid var(--gold);
}

.modal-close {
    position: absolute;
    top: 1.2rem;
    right: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    color: var(--text-muted);
    transition: color 0.2s;
}

.modal-close:hover {
    color: var(--text-main);
}

.modal-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--brown-warm);
    margin-bottom: 0.3rem;
    line-height: 1.2;
}

.modal-subtitle {
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.modal-author {
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 1.8rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid var(--cream-mid);
}

.modal-body p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.85;
    margin-bottom: 1rem;
}

.modal-body strong {
    color: var(--brown-warm);
    font-weight: 500;
}

@media (max-width: 600px) {
    .modal-overlay {
        padding: 0.75rem;
    }

    .modal-content {
        padding: 1.75rem 1.5rem;
    }

    .modal-title {
        font-size: 1.5rem;
    }
}

.doctor-box {
    margin-top: 3rem;
    background: var(--cream-dark);
    border: 1px solid var(--cream-mid);
    padding: 2.5rem 3rem;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: start;
}

.doctor-initial {
    width: 60px;
    height: 60px;
    border: 1px solid var(--gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-style: italic;
    color: var(--gold-dark);
    flex-shrink: 0;
}

.doctor-label {
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.3rem;
}

.doctor-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: var(--brown-warm);
    margin-bottom: 0.8rem;
}

.doctor-text {
    font-size: 0.87rem;
    color: var(--text-muted);
    line-height: 1.85;
}

/* FIRST TIME */
#firsttime {
    background-image: linear-gradient(160deg, rgba(240, 232, 216, 0.90) 0%, rgba(232, 220, 200, 0.85) 100%), url('assets/images/salt-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.faq-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 0.5rem;
    align-items: stretch;
}

.faq-item {
    display: flex;
    flex-direction: column;
    min-height: 340px;
    border: 1px solid var(--gold-light);
    overflow: hidden;
    transition: background 0.2s;
}

.faq-item-wide {
    grid-column: 1 / -1;
    min-height: auto;
}

.faq-q {
    padding: 1.2rem 1rem 0.6rem 1rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-style: italic;
    font-weight: 700;
    color: var(--brown-warm);
}

.faq-a {
    flex: 1;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.85;
    padding: 0 1rem 1.2rem 1rem;
    text-align: justify;
}

@media (max-width: 700px) {
    .faq-list {
        grid-template-columns: 1fr;
    }

    .faq-item {
        min-height: auto;
    }
}

/* REGISTER */
#register {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

#register .thin-line {
    margin-bottom: 1.5rem;
}

.register-layout {
    display: flex;
    justify-content: center;
}

.register-content {
    width: 100%;
}

.register-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.register-fields {
    display: flex;
    align-items: flex-end;
    gap: 1rem;
    flex-wrap: nowrap;
}

.register-field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    flex: 1 1 0;
    min-width: 0;
}

.register-field label {
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.register-field input {
    height: 3.2rem;
    padding: 0 1rem;
    border: 1px solid var(--cream-mid);
    background: var(--white);
    font-family: 'Jost', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--text-main);
}

.register-field input:focus {
    outline: none;
    border-color: var(--gold);
}

.register-submit {
    flex: 0 0 auto;
    width: calc((100% - 1rem) / 2);
    height: 3.2rem;
    padding: 0 2rem;
    font-size: 0.68rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.register-note {
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-top: -0.4rem;
}

@media (max-width: 480px) {
    .register-fields {
        flex-direction: column;
        align-items: stretch;
    }

    .register-submit {
        width: 100%;
        text-align: center;
    }
}

/* PRICES */
#prices {
    background: var(--white);
}

.prices-wrap {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}

.price-group {
    margin-bottom: 2.5rem;
}

.price-group:last-of-type {
    margin-bottom: 0;
}

.price-group-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 300;
    font-style: italic;
    color: var(--brown-warm);
    margin-bottom: 1rem;
}

.price-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.price-card {
    border: 1px solid var(--cream-mid);
    padding: 1.3rem 1.5rem;
    background: var(--cream);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.6rem;
    transition: border-color 0.3s;
}

.price-card:hover {
    border-color: var(--gold-light);
}

.price-card-label {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.price-card-name {
    font-family: 'Spectral', serif;
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--gold-dark);
}

.price-card-amount {
    text-align: right;
    white-space: nowrap;
}

.price-main {
    font-family: 'Spectral', serif;
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--gold-dark);
    line-height: 1;
}

.price-reg {
    font-size: 0.6rem;
    color: var(--text-muted);
    margin-top: 0.2rem;
}

.price-reg del {
    color: rgba(122, 106, 85, 0.5);
}

@media (max-width: 480px) {
    .price-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
        padding: 1.5rem;
    }

    .price-card-amount {
        text-align: left;
    }
}

.refund-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.refund-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    background: var(--brown-warm);
    border: 1px solid rgba(184, 150, 90, 0.3);
    border-radius: 14px;
    padding: 2rem;
    box-shadow: 0 6px 24px rgba(46, 36, 24, 0.22);
    transition: box-shadow 0.3s, border-color 0.3s, transform 0.3s;
}

.refund-card:hover {
    box-shadow: 0 10px 32px rgba(46, 36, 24, 0.3);
    border-color: rgba(212, 175, 122, 0.6);
    transform: translateY(-3px);
}

.refund-card-icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 253, 248, 0.1);
    color: var(--gold-light);
    margin-bottom: 1.2rem;
}

.refund-card-icon svg {
    width: 26px;
    height: 26px;
}

.refund-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 300;
    font-style: italic;
    color: var(--white);
    margin-bottom: 0.8rem;
}

.refund-card-text {
    font-size: 0.85rem;
    color: rgba(255, 253, 248, 0.85);
    line-height: 1.7;
}

.refund-card-logos {
    width: 100%;
    max-width: 240px;
    height: auto;
    display: block;
    margin: 1.5rem auto 0;
}

/* STORY */
#story {
    background: var(--cream);
}

.story-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 5rem;
    align-items: center;
}

.story-grid--reverse {
    grid-template-columns: 1.2fr 0.8fr;
}

.story-grid + .story-grid {
    margin-top: 4rem;
}

.story-portrait {
    aspect-ratio: 4/5;
    background: var(--cream-dark);
    border: 1px solid var(--cream-mid);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.story-portrait-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portrait-frame {
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(184, 150, 90, 0.25);
    pointer-events: none;
}

.story-text p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 0.7rem;
    line-height: 1.5;
    text-align: justify;
}

.story-highlight {
    margin: 2rem 0;
    padding: 1.5rem 2rem;
    border-left: 2px solid var(--gold);
    background: var(--cream-dark);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-style: italic;
    color: var(--brown-warm);
    line-height: 1.6;
}

.story-continues {
    margin: 2.4rem 0 1.4rem;
    padding-top: 1.4rem;
    border-top: 1px solid var(--cream-mid);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-style: italic;
    color: var(--gold);
}

.story-signature {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-style: italic;
    color: var(--brown-warm);
}

/* GALLERY */
#gallery {
    background: var(--cream-dark);
}

.carousel {
    position: relative;
}

.carousel-viewport {
    overflow: hidden;
    margin: 0 3.5rem;
}

.carousel-track {
    display: flex;
    gap: 6px;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.carousel-slide {
    flex: 0 0 calc(33.333% - 4px);
    height: 360px;
    position: relative;
    overflow: hidden;
}

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

.gallery-img[src=""] {
    display: none;
}

.carousel-slide:hover .gallery-img {
    transform: scale(1.04);
}

.gallery-placeholder {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 110%, rgba(184, 150, 90, 0.1) 0%, transparent 65%),
    linear-gradient(160deg, var(--cream-mid) 0%, var(--cream) 100%);
}

.gallery-img:not([src=""]) + .gallery-placeholder {
    display: none;
}

.gallery-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(184, 150, 90, 0.1) 1px, transparent 1px);
    background-size: 28px 28px;
}

.gallery-placeholder::after {
    content: '+';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: rgba(184, 150, 90, 0.25);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: 1px solid var(--gold);
    color: var(--gold-dark);
    width: 2.8rem;
    height: 2.8rem;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: var(--gold);
    color: var(--white);
}

.carousel-btn--prev {
    left: 0;
}

.carousel-btn--next {
    right: 0;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.carousel-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    border: none;
    background: var(--cream-mid);
    cursor: pointer;
    padding: 0;
    transition: background 0.2s, transform 0.2s;
}

.carousel-dot.active {
    background: var(--gold);
    transform: scale(1.4);
}

@media (max-width: 900px) {
    .carousel-slide {
        flex: 0 0 calc(50% - 3px);
        height: 280px;
    }
}

@media (max-width: 600px) {
    .carousel-slide {
        flex: 0 0 100%;
        height: 260px;
    }

    .carousel-viewport {
        margin: 0 2.5rem;
    }
}

/* REVIEWS */
#reviews {
    background: var(--cream-dark);
}

#reviews .section-title {
    color: var(--text-main);
    line-height: 1.15;
}

#reviews .section-label {
    color: var(--gold-dark);
    line-height: 1.3;
    margin-bottom: 0.3rem;
}

#reviews .thin-line {
    background: var(--gold);
}

.reviews-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.rating-score {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.6rem;
    font-weight: 300;
    color: var(--text-main);
    line-height: 1;
}

.rating-stars {
    font-size: 1rem;
    color: var(--gold);
    letter-spacing: 0.1em;
}

.rating-label {
    font-size: 0.68rem;
    color: #111111;
    letter-spacing: 0.08em;
    line-height: 1.3;
    margin-top: 0.2rem;
}

.reviews-carousel .carousel-track {
    gap: 1rem;
}

.review-slide {
    flex: 0 0 calc((100% - 2rem) / 3);
}

@media (max-width: 900px) and (min-width: 769px) {
    .review-slide {
        flex: 0 0 calc((100% - 1rem) / 2);
    }
}

@media (max-width: 768px) {
    .review-slide {
        flex: 0 0 100%;
    }
}

.review-card {
    height: 100%;
    background: var(--cream);
    border: 1px solid var(--cream-mid);
    padding: 1.3rem 1.5rem;
    transition: background 0.3s;
}

.review-card:hover {
    background: var(--white);
}

.review-stars {
    color: var(--gold);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.review-text {
    font-size: 0.88rem;
    color: #111111;
    line-height: 1.4;
    font-style: italic;
    margin-bottom: 0.8rem;
}

.review-author {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    line-height: 1.3;
    color: var(--gold-light);
}

/* CONTACT */
#contact {
    background-image: linear-gradient(160deg, rgba(36, 23, 8, 1) 0%, rgba(92, 74, 50, 0.8) 100%), url('assets/images/mandala-bg-2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 4rem;
    align-items: start;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item-label {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 0.4rem;
    display: block;
}

.contact-item-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: var(--cream);
    font-weight: 300;
    line-height: 1.5;
}

.contact-item-value a {
    color: var(--gold-light);
    text-decoration: none;
    transition: color 0.2s;
}

.contact-item-value a:hover {
    color: var(--cream);
}

.contact-item-value small {
    font-size: 0.8rem;
    color: var(--white);
}

#contact .section-title {
    color: var(--cream);
}

#contact .section-label {
    color: var(--gold-light);
}

#contact .thin-line {
    background: var(--gold);
}

.map-wrap {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(184, 150, 90, 0.3);
}

.map-wrap iframe {
    display: block;
    width: 100%;
    height: 300px;
    border: none;
    filter: sepia(30%) contrast(90%);
}

.map-cta {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.65rem 1.8rem;
    border: 1px solid rgba(184, 150, 90, 0.5);
    color: var(--gold-light);
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s;
}

.map-cta:hover {
    background: rgba(184, 150, 90, 0.15);
}

.parking-info {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.parking-img-wrap {
    margin-top: 0.8rem;
    overflow: hidden;
    border: 1px solid rgba(184, 150, 90, 0.3);
}

.parking-img {
    display: block;
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.hours-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.4rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    font-size: 1.1rem;
    white-space: nowrap;
}

@media (max-width: 420px) {
    .hours-row {
        font-size: 0.92rem;
        white-space: normal;
    }
}

.hours-day {
    color: var(--white);
}

.hours-time {
    color: var(--white);
    font-weight: 300;
}

.hours-time.closed {
    color: var(--white);
}

.footer-line {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(240, 232, 216, 0.15);
    font-size: 0.72rem;
    color: var(--white);
    letter-spacing: 0.08em;
    text-align: center;
}

/* RESPONSIVE */
@media (max-width: 1450px) {
    nav {
        padding: 0.5rem 1.5rem;
        flex-wrap: wrap;
    }

    .nav-logo-img {
        height: 2rem;
    }

    .nav-toggle {
        display: flex;
        width: 2rem;
        height: 2rem;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: var(--cream);
        border-bottom: 1px solid var(--cream-mid);
        padding: 0.3rem 1.5rem 0.6rem;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links li {
        border-bottom: 1px solid rgba(184, 150, 90, 0.15);
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links a {
        display: block;
        padding: 0.55rem 0;
        font-size: 0.7rem;
    }

    .nav-cta {
        margin-top: 0;
        text-align: left;
        border: none;
        color: var(--text-muted) !important;
        padding: 0.55rem 0 !important;
    }

    .nav-cta:hover {
        background: none !important;
        color: var(--gold) !important;
    }

    .nav-links a.nav-cta.active {
        color: var(--gold-dark) !important;
    }
}

@media (max-width: 900px) {
    .how-grid, .story-grid, .story-grid--reverse, .prices-wrap, .contact-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .refund-cards {
        grid-template-columns: 1fr 1fr;
    }

    .story-grid:not(.story-grid--reverse) .story-portrait {
        order: 2;
    }

    .story-grid:not(.story-grid--reverse) .story-text {
        order: 1;
    }

    .heals-grid {
        grid-template-columns: 1fr 1fr;
    }

    .how-visual {
        grid-template-columns: 1fr;
    }

    .doctor-box {
        grid-template-columns: 1fr;
        padding: 2rem 1.5rem;
    }

    .how-history {
        gap: 2rem;
    }
}

@media (max-width: 600px) {
    .heals-grid {
        grid-template-columns: 1fr;
    }

    section {
        padding: 2.5rem 1.25rem;
    }

    .hero {
        padding: 7rem 1.25rem 3rem;
    }

    .how-warning {
        padding: 1.5rem;
        flex-direction: column;
    }

    .price-card, .how-card {
        padding: 1.5rem;
    }

    .price-cards {
        grid-template-columns: 1fr;
    }

    .refund-cards {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .refund-card {
        padding: 1.6rem;
    }
}

/* CIKKEK */
#articles-hero {
    background: var(--cream-dark);
    padding-top: 9rem;
    padding-bottom: 6rem;
}

.articles-intro {
    font-size: 0.95rem;
    color: #111111;
    max-width: 560px;
    line-height: 1.8;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.article-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 1px solid rgba(184, 150, 90, 0.25);
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 6px 20px rgba(138, 107, 53, 0.06);
    transition: box-shadow 0.3s, border-color 0.3s, transform 0.3s;
}

.article-card:hover {
    border-color: rgba(184, 150, 90, 0.5);
    box-shadow: 0 14px 32px rgba(138, 107, 53, 0.14);
    transform: translateY(-4px);
}

.article-card-img {
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.article-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
}

.article-card:hover .article-card-img img {
    transform: scale(1.05);
}

.article-card-body {
    padding: 1.6rem 1.6rem 1.8rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.article-card-meta {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 0.6rem;
}

.article-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--brown-warm);
    line-height: 1.3;
    margin-bottom: 0.7rem;
}

.article-card-excerpt {
    font-size: 0.85rem;
    color: #111111;
    line-height: 1.7;
    margin-bottom: 1.2rem;
    flex: 1;
}

.article-card-link {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    transition: color 0.3s;
}

.article-card:hover .article-card-link {
    color: var(--gold-dark);
}

#articles-footer {
    background: var(--deep);
    padding: 2rem;
}

#articles-footer .footer-line {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
    text-align: center;
    color: var(--cream-mid);
    font-size: 0.75rem;
}

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

@media (max-width: 600px) {
    .articles-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}

/* CIKK OLDAL */
#article-page {
    background: var(--cream-dark);
    padding-top: 9rem;
    padding-bottom: 5rem;
}


.article-back-link {
    display: inline-block;
    margin-bottom: 2rem;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-dark);
    text-decoration: none;
    transition: color 0.3s;
}

.article-back-link:hover {
    color: var(--gold);
}

.article-meta {
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-dark);
    display: block;
    margin-bottom: 0.8rem;
}

.article-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 300;
    color: var(--brown-warm);
    line-height: 1.2;
    margin-bottom: 2rem;
}

.article-cover {
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 2.5rem;
}

.article-cover img {
    width: 100%;
    display: block;
}

.article-body p {
    font-size: 0.95rem;
    color: #111111;
    line-height: 1.9;
    margin-bottom: 1.4rem;
}

.article-body h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--brown-warm);
    margin: 2rem 0 1rem;
}

.article-body strong {
    color: var(--gold-dark);
    font-weight: 500;
}

