:root {
    --navy: #071827;
    --navy-2: #0c2236;
    --navy-3: #10283c;
    --gold: #c8a45d;
    --gold-dark: #b89146;
    --gold-soft: #f3e7c8;
    --white: #ffffff;
    --muted: #6d7782;
    --light: #f6f7f9;
    --light-2: #eef1f4;
    --border: #e6e8eb;
    --shadow: 0 18px 45px rgba(7, 24, 39, 0.12);
    --shadow-soft: 0 10px 28px rgba(7, 24, 39, 0.06);
    --radius: 22px;
    --max: 1180px;
}

/* ==============================
   RESET & BASE
   ============================== */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", Arial, sans-serif;
    color: var(--navy);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

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

button,
input,
textarea {
    font-family: inherit;
}

.container {
    width: min(var(--max), calc(100% - 40px));
    margin: 0 auto;
}

.section {
    padding: 96px 0;
}

.section-light {
    background: linear-gradient(180deg, #f8f9fb 0%, #f2f4f7 100%);
}

.eyebrow {
    color: var(--gold);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 12px;
    margin-bottom: 14px;
}

h1,
h2,
h3,
h4 {
    font-family: "Playfair Display", Georgia, serif;
    line-height: 1.16;
    color: var(--navy);
}

h1 {
    font-size: clamp(42px, 5.2vw, 68px);
    letter-spacing: -0.045em;
}

h2 {
    font-size: clamp(32px, 4vw, 48px);
    letter-spacing: -0.035em;
}

h3 {
    font-size: 25px;
}

p {
    color: #4c5864;
}

/* ==============================
   BUTTON
   ============================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 23px;
    border-radius: 999px;
    font-weight: 900;
    font-size: 14px;
    transition: 0.25s ease;
    border: 1px solid transparent;
    cursor: pointer;
    line-height: 1.2;
}

.btn-primary {
    background: var(--gold);
    color: var(--navy);
}

.btn-primary:hover {
    background: #d8b76c;
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(200, 164, 93, 0.35);
}

.btn-outline {
    border-color: rgba(255, 255, 255, 0.32);
    color: var(--white);
    background: rgba(255, 255, 255, 0.04);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.5);
}

/* ==============================
   HEADER
   ============================== */

.site-header {
    position: sticky;
    top: 0;
    z-index: 99;
    background: rgba(7, 24, 39, 0.96);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
}

/* ==============================
   HEADER LOGO IMAGE + TEXT
   ============================== */

.brand-logo-wrap {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.brand-logo-box {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.9);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: 0.25s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.16);
}

.brand-logo-wrap:hover .brand-logo-box {
    background: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.brand-logo-img {
    display: block;
    width: 90px;
    height: 90px;
    object-fit: contain;
}

.brand-logo-text {
    display: inline-flex;
    align-items: center;
    color: var(--white);
    font-weight: 900;
    letter-spacing: 0.16em;
    font-size: 23px;
    line-height: 1;
    text-transform: uppercase;
}

.brand-logo-text span {
    color: var(--gold);
}

/* ==============================
   NAVIGATION
   ============================== */

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.78);
    font-weight: 800;
    font-size: 14px;
    transition: 0.22s ease;
}

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

.nav-cta {
    margin-left: 4px;
    padding: 13px 22px;
    color: var(--navy) !important;
}

.menu-toggle {
    display: none;
    background: transparent;
    color: var(--white);
    border: 0;
    font-size: 30px;
    cursor: pointer;
}

/* ==============================
   HERO HOME
   ============================== */

.hero {
    min-height: auto;
    display: flex;
    align-items: center;
    padding: 92px 0 86px;
    background:
        linear-gradient(110deg, rgba(7, 24, 39, 0.97), rgba(7, 24, 39, 0.79)),
        radial-gradient(circle at 78% 18%, rgba(200, 164, 93, 0.22), transparent 30%),
        radial-gradient(circle at 15% 85%, rgba(255, 255, 255, 0.08), transparent 28%),
        url("https://images.unsplash.com/photo-1589829545856-d10d557cf95f?auto=format&fit=crop&w=1800&q=80");
    background-size: cover;
    background-position: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 90px;
    background: linear-gradient(180deg, rgba(7, 24, 39, 0), rgba(7, 24, 39, 0.14));
    pointer-events: none;
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 74px;
    align-items: center;
}

.hero h1,
.hero p {
    color: var(--white);
}

.hero h1 {
    max-width: 780px;
    line-height: 1.08;
}

.hero p {
    font-size: 17px;
    max-width: 690px;
    color: rgba(255, 255, 255, 0.84);
    margin-top: 24px;
    line-height: 1.86;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 38px;
}

.hero-actions .btn {
    min-height: 54px;
}

.hero-highlights {
    margin-top: 34px;
    margin-bottom: 2px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-highlights span {
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.11);
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 13px;
    font-weight: 900;
    backdrop-filter: blur(8px);
}

.hero-card {
    max-width: 450px;
    margin-left: auto;
    background: rgba(255, 255, 255, 0.105);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 30px;
    padding: 38px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(18px);
}

.hero-card h3 {
    color: var(--white);
    margin-bottom: 18px;
    font-size: 27px;
}

.hero-card ul {
    list-style: none;
}

.hero-card li {
    color: rgba(255, 255, 255, 0.84);
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
    font-size: 15px;
}

.hero-card li:last-child {
    border-bottom: 0;
}

/* ==============================
   PAGE HERO
   ============================== */

.page-hero {
    background:
        linear-gradient(110deg, rgba(7, 24, 39, 0.97), rgba(7, 24, 39, 0.84)),
        radial-gradient(circle at 82% 8%, rgba(200, 164, 93, 0.24), transparent 30%);
    padding: 104px 0;
    color: var(--white);
}

.page-hero h1,
.page-hero p {
    color: var(--white);
}

.page-hero p {
    max-width: 780px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 20px;
    font-size: 18px;
    line-height: 1.8;
}

/* ==============================
   SECTION HEADING
   ============================== */

.section-heading {
    max-width: 820px;
    margin-bottom: 56px;
}

.section-heading h2 {
    margin-top: 8px;
}

.section-heading p {
    margin-top: 18px;
    font-size: 17px;
    line-height: 1.85;
    max-width: 780px;
}

/* ==============================
   GRID & CARD
   ============================== */

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

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

.card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 26px;
    padding: 34px 30px;
    box-shadow: var(--shadow-soft);
    transition: 0.25s ease;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: rgba(200, 164, 93, 0.55);
}

.card-icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--gold-soft), #f8efdc);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 24px;
}

.card h3 {
    margin-bottom: 14px;
    font-size: 24px;
}

.card p {
    line-height: 1.8;
}

/* ==============================
   HOME WHY CHOOSE US
   ============================== */

.hero + .section-light {
    padding-top: 98px;
    padding-bottom: 100px;
}

/* ==============================
   ABOUT
   ============================== */

.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 52px;
    align-items: center;
}

.about-panel {
    background:
        linear-gradient(135deg, rgba(7, 24, 39, 1), rgba(12, 34, 54, 0.96)),
        radial-gradient(circle at 85% 85%, rgba(200, 164, 93, 0.25), transparent 30%);
    color: var(--white);
    padding: 44px;
    border-radius: 32px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-panel::after {
    content: "";
    position: absolute;
    width: 230px;
    height: 230px;
    right: -85px;
    bottom: -85px;
    background: rgba(200, 164, 93, 0.2);
    border-radius: 50%;
}

.about-panel h3,
.about-panel p {
    color: var(--white);
    position: relative;
    z-index: 2;
}

.values {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.values span {
    background: var(--light);
    border: 1px solid var(--border);
    padding: 10px 16px;
    border-radius: 999px;
    font-weight: 900;
}

/* ==============================
   SERVICES
   ============================== */

.service-card {
    min-height: 310px;
}

.service-number {
    color: var(--gold);
    font-weight: 900;
    margin-bottom: 12px;
    letter-spacing: 0.08em;
}

/* ==============================
   ARTICLES
   ============================== */

.article-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.article-meta {
    color: var(--gold);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.read-more {
    margin-top: auto;
    color: var(--navy);
    font-weight: 900;
    transition: 0.22s ease;
}

.read-more:hover {
    color: var(--gold);
}

/* ==============================
   CONTACT
   ============================== */

.contact-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 36px;
}

.contact-box {
    background:
        linear-gradient(135deg, rgba(7, 24, 39, 1), rgba(12, 34, 54, 0.96)),
        radial-gradient(circle at 90% 90%, rgba(200, 164, 93, 0.24), transparent 32%);
    color: var(--white);
    border-radius: 30px;
    padding: 38px;
    box-shadow: var(--shadow);
}

.contact-box h3,
.contact-box p,
.contact-box a {
    color: var(--white);
}

.contact-item {
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.contact-item:last-child {
    border-bottom: 0;
}

.form {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 30px;
    padding: 38px;
    box-shadow: var(--shadow);
}

.form label {
    display: block;
    font-weight: 900;
    margin-bottom: 8px;
    color: var(--navy);
}

.form input,
.form textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 15px;
    padding: 14px 16px;
    font: inherit;
    margin-bottom: 18px;
    outline: none;
    background: #fff;
}

.form input:focus,
.form textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(200, 164, 93, 0.13);
}

.form textarea {
    min-height: 150px;
    resize: vertical;
}

/* ==============================
   CTA
   ============================== */

.cta {
    background:
        linear-gradient(110deg, rgba(7, 24, 39, 0.98), rgba(12, 34, 54, 0.95)),
        radial-gradient(circle at 90% 20%, rgba(200, 164, 93, 0.32), transparent 34%);
    color: var(--white);
    border-radius: 36px;
    padding: 58px 54px;
    min-height: 210px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
    box-shadow: 0 22px 50px rgba(7, 24, 39, 0.16);
    overflow: hidden;
    position: relative;
}

.cta::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    right: -120px;
    bottom: -140px;
    border-radius: 50%;
    background: rgba(200, 164, 93, 0.16);
}

.cta > * {
    position: relative;
    z-index: 2;
}

.cta h2,
.cta p {
    color: var(--white);
}

.cta h2 {
    max-width: 680px;
    font-size: clamp(34px, 4vw, 48px);
}

.cta p {
    margin-top: 14px;
    max-width: 780px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.78);
}

.cta .btn {
    min-width: 178px;
    min-height: 62px;
}

/* ==============================
   FOOTER
   ============================== */

.footer {
    background: #061725;
    color: var(--white);
    padding: 72px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.7fr 0.8fr;
    gap: 42px;
    margin-bottom: 36px;
    padding-bottom: 24px;
}

.footer h3,
.footer p,
.footer a {
    color: var(--white);
}

.footer h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.footer p,
.footer a {
    color: rgba(255, 255, 255, 0.72);
}

.footer-links {
    display: grid;
    gap: 11px;
}

.footer-links a {
    transition: 0.22s ease;
}

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

.footer-logo-wrap {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 18px;
}

.footer-logo-box {
    width: 100px;
    height: 100px;
    border-radius: 13px;
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.9);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.14);
}

.footer-logo-img {
    display: block;
    width: 120px;
    height: 120px;
    object-fit: contain;
}

.footer-logo-text {
    display: inline-flex;
    align-items: center;
    color: var(--white);
    font-weight: 900;
    letter-spacing: 0.16em;
    font-size: 23px;
    line-height: 1;
    text-transform: uppercase;
}

.footer-logo-text span {
    color: var(--gold);
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 22px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 14px;
}

/* ==============================
   RESPONSIVE TABLET
   ============================== */

@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 0.82fr;
        gap: 48px;
    }

    .hero h1 {
        font-size: clamp(42px, 6vw, 62px);
    }

    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 940px) {
    .menu-toggle {
        display: block;
    }

    .navbar {
        min-height: 74px;
    }

    .nav-links {
        position: absolute;
        top: 74px;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        background: rgba(7, 24, 39, 0.98);
        padding: 26px 24px 30px;
        align-items: flex-start;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: 0 20px 40px rgba(7, 24, 39, 0.22);
    }

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

    .nav-cta {
        margin-left: 0;
    }

    .brand-logo-box {
        width: 38px;
        height: 38px;
        border-radius: 11px;
    }

    .brand-logo-img {
        width: 30px;
        height: 30px;
    }

    .brand-logo-text {
        font-size: 21px;
        letter-spacing: 0.14em;
    }

    .hero {
        padding: 76px 0 76px;
    }

    .hero-grid,
    .about-split,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-card {
        max-width: 100%;
        margin-left: 0;
    }

    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta {
        flex-direction: column;
        align-items: flex-start;
        padding: 46px 38px;
    }

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

    .footer-logo-box {
        width: 42px;
        height: 42px;
    }

    .footer-logo-img {
        width: 34px;
        height: 34px;
    }

    .footer-logo-text {
        font-size: 21px;
        letter-spacing: 0.14em;
    }
}

/* ==============================
   RESPONSIVE MOBILE
   ============================== */

@media (max-width: 620px) {
    .container {
        width: min(100% - 28px, var(--max));
    }

    .navbar {
        min-height: 70px;
    }

    .nav-links {
        top: 70px;
    }

    .section {
        padding: 68px 0;
    }

    .brand-logo-wrap {
        gap: 9px;
    }

    .brand-logo-box {
        width: 34px;
        height: 34px;
        border-radius: 10px;
    }

    .brand-logo-img {
        width: 27px;
        height: 27px;
    }

    .brand-logo-text {
        font-size: 19px;
        letter-spacing: 0.11em;
    }

    .hero {
        padding: 58px 0 62px;
    }

    .hero h1 {
        font-size: 40px;
        line-height: 1.12;
        letter-spacing: -0.035em;
    }

    .hero p {
        font-size: 16px;
        line-height: 1.75;
        margin-top: 20px;
    }

    .hero-actions {
        margin-top: 30px;
        flex-direction: column;
    }

    .hero-highlights {
        gap: 10px;
        margin-top: 28px;
    }

    .hero-highlights span {
        font-size: 12px;
        padding: 9px 13px;
    }

    .hero-card,
    .form,
    .contact-box,
    .about-panel,
    .cta {
        padding: 28px;
        border-radius: 24px;
    }

    .hero-card h3 {
        font-size: 24px;
    }

    .hero + .section-light {
        padding-top: 66px;
        padding-bottom: 68px;
    }

    .section-heading {
        margin-bottom: 36px;
    }

    .grid-4,
    .grid-3 {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .card {
        padding: 28px;
        border-radius: 22px;
    }

    .card h3 {
        font-size: 23px;
    }

    .cta {
        min-height: auto;
    }

    .cta .btn,
    .btn {
        width: 100%;
    }

    .footer {
        padding-top: 56px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-logo-wrap {
        gap: 10px;
    }

    .footer-logo-box {
        width: 38px;
        height: 38px;
        border-radius: 11px;
    }

    .footer-logo-img {
        width: 30px;
        height: 30px;
    }

    .footer-logo-text {
        font-size: 20px;
        letter-spacing: 0.12em;
    }
}

/* ==============================
   PUBLIC ARTICLES
   ============================== */

.public-article-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.public-article-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 26px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: 0.25s ease;
    display: flex;
    flex-direction: column;
}

.public-article-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: rgba(200, 164, 93, 0.55);
}

.public-article-image {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--light);
}

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

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

.public-article-body {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.public-article-body h3 {
    margin: 10px 0 14px;
    font-size: 25px;
}

.public-article-body p {
    line-height: 1.8;
    margin-bottom: 18px;
}

.empty-public-articles {
    grid-column: 1 / -1;
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 38px;
}

.article-detail-hero {
    background:
        linear-gradient(110deg, rgba(7, 24, 39, 0.97), rgba(7, 24, 39, 0.84)),
        radial-gradient(circle at 82% 8%, rgba(200, 164, 93, 0.24), transparent 30%);
    padding: 104px 0 86px;
    color: #fff;
}

.article-detail-hero h1 {
    color: #fff;
    max-width: 920px;
    margin-top: 12px;
}

.article-detail-hero p {
    color: rgba(255, 255, 255, 0.82);
    max-width: 780px;
    margin-top: 18px;
    font-size: 18px;
}

.article-detail-meta {
    color: var(--gold);
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 13px;
}

.article-share {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.share-btn {
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border-radius: 999px;
    padding: 10px 15px;
    cursor: pointer;
    font-weight: 900;
    font-size: 14px;
}

.share-btn:hover {
    background: var(--gold);
    color: var(--navy);
}

.article-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 34px;
    align-items: start;
}

.article-content-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 34px;
    box-shadow: var(--shadow-soft);
}

.article-featured-image {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
    border-radius: 24px;
    margin-bottom: 30px;
}

.article-content {
    color: var(--navy);
    font-size: 18px;
    line-height: 1.9;
}

.article-content p,
.article-content ul,
.article-content ol,
.article-content blockquote,
.article-content table {
    margin-bottom: 20px;
}

.article-content h2,
.article-content h3,
.article-content h4 {
    margin: 34px 0 16px;
}

.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 18px;
    margin: 18px 0;
}

.article-content a {
    color: var(--gold-dark);
    font-weight: 800;
}

.article-sidebar {
    display: grid;
    gap: 20px;
    position: sticky;
    top: 100px;
}

.sidebar-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 26px;
    box-shadow: var(--shadow-soft);
}

.sidebar-card h3 {
    margin-bottom: 14px;
}

.sidebar-card p {
    margin-bottom: 14px;
}

@media (max-width: 940px) {
    .public-article-grid,
    .article-detail-layout {
        grid-template-columns: 1fr;
    }

    .article-sidebar {
        position: static;
    }
}

@media (max-width: 620px) {
    .public-article-body,
    .article-content-card,
    .sidebar-card {
        padding: 24px;
    }

    .article-detail-hero {
        padding: 76px 0 66px;
    }

    .article-content {
        font-size: 16px;
        line-height: 1.85;
    }

    .share-btn {
        width: 100%;
        text-align: center;
    }
}

/* ==============================
   RELATED ARTICLES
   ============================== */

.related-articles-section {
    margin-top: 76px;
    padding-top: 64px;
    border-top: 1px solid var(--border);
}

.related-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 34px;
}

.related-heading h2 {
    max-width: 720px;
    font-size: clamp(30px, 3.4vw, 44px);
}

.related-view-all {
    color: var(--gold-dark);
    font-weight: 900;
    white-space: nowrap;
    transition: 0.22s ease;
}

.related-view-all:hover {
    color: var(--navy);
}

.related-articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.related-article-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 26px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    transition: 0.25s ease;
}

.related-article-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: rgba(200, 164, 93, 0.55);
}

.related-article-image {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--light);
}

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

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

.related-article-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(135deg, rgba(7, 24, 39, 0.96), rgba(12, 34, 54, 0.92)),
        radial-gradient(circle at 80% 20%, rgba(200, 164, 93, 0.28), transparent 32%);
}

.related-article-placeholder span {
    color: #ffffff;
    font-weight: 900;
    letter-spacing: 0.16em;
    font-size: 22px;
}

.related-article-body {
    padding: 26px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.related-article-meta {
    color: var(--gold);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}

.related-article-body h3 {
    font-size: 23px;
    margin-bottom: 14px;
}

.related-article-body p {
    line-height: 1.8;
    margin-bottom: 18px;
}

/* Tablet */
@media (max-width: 940px) {
    .related-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .related-articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 620px) {
    .related-articles-section {
        margin-top: 54px;
        padding-top: 44px;
    }

    .related-articles-grid {
        grid-template-columns: 1fr;
    }

    .related-article-body {
        padding: 24px;
    }

    .related-view-all {
        white-space: normal;
    }
}

/* ==============================
   RELATED ARTICLES - PREMIUM CARD
   ============================== */

.related-articles-section {
    margin-top: 86px;
    padding: 72px 0 0;
    border-top: 1px solid rgba(7, 24, 39, 0.1);
}

.related-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 38px;
}

.related-heading h2 {
    max-width: 760px;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.12;
    letter-spacing: -0.04em;
    color: var(--navy);
}

.related-heading p {
    max-width: 740px;
    margin-top: 14px;
    font-size: 17px;
    line-height: 1.8;
    color: #4c5864;
}

.related-view-all {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 178px;
    padding: 13px 20px;
    border-radius: 999px;
    background: var(--navy);
    color: #ffffff;
    font-weight: 900;
    font-size: 14px;
    white-space: nowrap;
    transition: 0.25s ease;
}

.related-view-all:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(200, 164, 93, 0.28);
}

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

.related-article-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 12px 34px rgba(7, 24, 39, 0.08);
    display: flex;
    flex-direction: column;
    min-height: 100%;
    transition: 0.28s ease;
}

.related-article-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 22px 48px rgba(7, 24, 39, 0.14);
    border-color: rgba(200, 164, 93, 0.55);
}

.related-article-image {
    display: flex;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--light);
}

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

.related-article-card:hover .related-article-image img {
    transform: scale(1.06);
}

.related-article-placeholder {
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(135deg, rgba(7, 24, 39, 0.98), rgba(12, 34, 54, 0.94)),
        radial-gradient(circle at 80% 20%, rgba(200, 164, 93, 0.32), transparent 36%);
}

.related-article-placeholder > span {
    display: inline-flex;
    align-items: center;
    color: #ffffff;
    font-weight: 900;
    letter-spacing: 0.16em;
    font-size: 24px;
}

.related-article-placeholder > span span {
    color: var(--gold);
}

.related-article-body {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.related-article-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px;
    color: var(--gold-dark);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 14px;
}

.related-article-body h3 {
    font-size: 24px;
    line-height: 1.22;
    letter-spacing: -0.025em;
    margin-bottom: 14px;
    color: var(--navy);
}

.related-article-body h3 a {
    color: inherit;
    transition: 0.22s ease;
}

.related-article-body h3 a:hover {
    color: var(--gold-dark);
}

.related-article-body p {
    color: #4c5864;
    line-height: 1.78;
    margin-bottom: 22px;
    flex: 1;
}

.related-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    padding: 11px 16px;
    border-radius: 999px;
    background: var(--gold-soft);
    color: var(--navy);
    font-weight: 900;
    font-size: 14px;
    transition: 0.25s ease;
}

.related-read-more span {
    transition: 0.25s ease;
}

.related-read-more:hover {
    background: var(--gold);
    color: var(--navy);
}

.related-read-more:hover span {
    transform: translateX(3px);
}

/* Tablet */
@media (max-width: 940px) {
    .related-heading {
        flex-direction: column;
        align-items: flex-start;
    }

    .related-articles-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Mobile */
@media (max-width: 620px) {
    .related-articles-section {
        margin-top: 58px;
        padding-top: 46px;
    }

    .related-heading {
        margin-bottom: 28px;
    }

    .related-heading h2 {
        font-size: 34px;
    }

    .related-view-all {
        width: 100%;
    }

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

    .related-article-body {
        padding: 24px;
    }

    .related-article-body h3 {
        font-size: 23px;
    }

    .related-read-more {
        width: 100%;
        justify-content: center;
    }
}