:root {
    --sc-bg: #f6f0e4;
    --sc-surface: #fffaf1;
    --sc-surface-strong: #f1e6d1;
    --sc-border: #dccfb7;
    --sc-text: #173f35;
    --sc-text-soft: #52645d;
    --sc-accent: #0f5c45;
    --sc-accent-strong: #093b2d;
    --sc-gold: #b48a2d;
    --sc-mint: #dff4e6;
    --sc-shadow: 0 24px 60px rgba(23, 63, 53, 0.08);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.sc-body {
    margin: 0;
    background:
        radial-gradient(circle at top left, rgba(180, 138, 45, 0.10), transparent 24%),
        linear-gradient(180deg, #fbf7ef 0%, var(--sc-bg) 100%);
    color: var(--sc-text);
    font-family: "Manrope", Arial, sans-serif;
}

.sc-shell {
    min-height: 100vh;
}

.sc-container {
    width: min(1160px, calc(100% - 2rem));
    margin: 0 auto;
}

.sc-topbar {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(16px);
    background: rgba(251, 247, 239, 0.92);
    border-bottom: 1px solid rgba(220, 207, 183, 0.75);
}

.sc-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 86px;
}

.sc-brand {
    color: var(--sc-text);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(2rem, 3vw, 3.4rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    text-decoration: none;
}

.sc-nav-links {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.sc-locale-switch {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding-left: 0.4rem;
}

.sc-locale-switch a {
    border: 1px solid var(--sc-border);
    border-radius: 999px;
    padding: 0.35rem 0.7rem;
    background: rgba(255,255,255,0.7);
    font-size: 0.78rem;
}

.sc-locale-switch a.is-active {
    background: var(--sc-accent);
    color: #fff;
    border-color: var(--sc-accent);
}

.sc-nav-links a {
    color: var(--sc-text);
    text-decoration: none;
    font-size: 0.95rem;
    padding-bottom: 0.25rem;
    border-bottom: 2px solid transparent;
}

.sc-nav-links a.is-active,
.sc-nav-links a:hover {
    border-color: var(--sc-accent);
}

.sc-nav-admin {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    border: 1px solid var(--sc-border);
    border-radius: 999px;
    padding: 0.55rem 1rem;
    background: var(--sc-surface);
}

.sc-main {
    padding: 0 0 5rem;
}

.sc-hero {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2rem;
    padding: 3.5rem;
    border: 1px solid rgba(220, 207, 183, 0.8);
    border-radius: 32px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(239, 231, 212, 0.94)),
        radial-gradient(circle at bottom right, rgba(15, 92, 69, 0.16), transparent 28%);
    box-shadow: var(--sc-shadow);
    overflow: hidden;
    position: relative;
}

.sc-hero::after {
    content: "";
    position: absolute;
    inset: auto -60px -60px auto;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(180, 138, 45, 0.22), transparent 65%);
}

.sc-kicker,
.sc-section-kicker {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.73rem;
    color: var(--sc-gold);
    margin-bottom: 1rem;
    font-weight: 700;
}

.sc-title,
.sc-page-title,
.sc-section-title,
.sc-article-title {
    font-family: "Cormorant Garamond", Georgia, serif;
    letter-spacing: -0.03em;
    line-height: 0.95;
}

.sc-title {
    font-size: clamp(3rem, 6vw, 5.4rem);
    margin: 0 0 1.15rem;
    max-width: 10ch;
}

.sc-page-title {
    font-size: clamp(2.6rem, 5vw, 4.4rem);
    margin: 0 0 1rem;
}

.sc-section-title {
    font-size: clamp(2rem, 4vw, 3.1rem);
    margin: 0 0 1rem;
}

.sc-article-title {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    margin: 0 0 1rem;
}

.sc-copy,
.sc-page-intro,
.sc-card-copy,
.sc-richtext,
.sc-muted {
    color: var(--sc-text-soft);
    line-height: 1.8;
}

.sc-actions,
.sc-inline-actions {
    display: flex;
    gap: 0.9rem;
    flex-wrap: wrap;
    margin-top: 1.6rem;
}

.sc-button,
.sc-button-secondary,
.sc-link-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    text-decoration: none;
    border-radius: 16px;
    padding: 0.95rem 1.35rem;
    font-weight: 700;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.sc-button {
    color: #fff;
    background: linear-gradient(135deg, var(--sc-accent), var(--sc-accent-strong));
    box-shadow: 0 18px 30px rgba(15, 92, 69, 0.18);
}

.sc-button-secondary {
    color: var(--sc-text);
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid var(--sc-border);
}

.sc-link-button {
    color: var(--sc-accent-strong);
    padding-left: 0;
}

.sc-button:hover,
.sc-button-secondary:hover,
.sc-link-button:hover {
    transform: translateY(-2px);
}

.sc-visual {
    position: relative;
    min-height: 320px;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(220, 207, 183, 0.75);
    background:
        radial-gradient(circle at 25% 20%, rgba(255,255,255,0.9), transparent 20%),
        radial-gradient(circle at 80% 24%, rgba(255,255,255,0.65), transparent 13%),
        linear-gradient(180deg, rgba(11, 53, 40, 0.08), rgba(11, 53, 40, 0.2)),
        linear-gradient(135deg, #d8d6cb 0%, #f7eedf 38%, #cfd7d2 100%);
}

.sc-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 100%, rgba(15, 92, 69, 0.2), transparent 32%),
        linear-gradient(180deg, transparent 45%, rgba(246, 240, 228, 0.92) 100%);
}

.sc-visual::after {
    content: "";
    position: absolute;
    inset: auto 7% 0;
    height: 62%;
    background:
        radial-gradient(circle at 10% 100%, rgba(255,255,255,0.95) 0 22%, transparent 23%),
        radial-gradient(circle at 36% 100%, rgba(255,255,255,0.95) 0 20%, transparent 21%),
        radial-gradient(circle at 62% 100%, rgba(255,255,255,0.95) 0 17%, transparent 18%),
        radial-gradient(circle at 87% 100%, rgba(255,255,255,0.95) 0 24%, transparent 25%);
    opacity: 0.92;
}

.sc-visual-label {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    background: rgba(255, 250, 241, 0.88);
    border: 1px solid rgba(220, 207, 183, 0.85);
    border-radius: 999px;
    padding: 0.55rem 0.9rem;
    color: var(--sc-accent-strong);
    font-size: 0.82rem;
    font-weight: 700;
    z-index: 1;
}

.sc-visual-panel {
    position: absolute;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 2;
    max-width: 290px;
    padding: 1.15rem;
    border-radius: 22px;
    background: rgba(255, 250, 241, 0.92);
    border: 1px solid rgba(220, 207, 183, 0.9);
    box-shadow: 0 20px 40px rgba(15, 92, 69, 0.12);
}

.sc-visual-panel h3 {
    margin: 0 0 0.7rem;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 1.8rem;
    color: var(--sc-text);
}

.sc-visual-panel p {
    margin: 0;
    color: var(--sc-text-soft);
    line-height: 1.7;
}

.sc-visual-panel a {
    display: inline-block;
    margin-top: 0.9rem;
    color: var(--sc-accent-strong);
    font-weight: 700;
    text-decoration: none;
}

.sc-visual-image,
.sc-page-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sc-visual-image {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.sc-page-image {
    max-width: 820px;
    height: auto;
    border-radius: 26px;
    margin: 1.5rem auto 0;
    border: 1px solid rgba(220, 207, 183, 0.85);
    box-shadow: var(--sc-shadow);
}

.sc-section {
    margin-top: 2rem;
}

.sc-grid-2,
.sc-grid-3,
.sc-grid-sidebar,
.sc-card-grid {
    display: grid;
    gap: 1.5rem;
}

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

.sc-grid-3,
.sc-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sc-grid-sidebar {
    grid-template-columns: 280px minmax(0, 1fr);
    align-items: start;
}

.sc-card,
.sc-panel,
.sc-tile,
.sc-accordion-item {
    border: 1px solid rgba(220, 207, 183, 0.9);
    border-radius: 24px;
    background: rgba(255, 250, 241, 0.88);
    box-shadow: var(--sc-shadow);
}

.sc-card,
.sc-panel {
    padding: 1.65rem;
}

.sc-card-media {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 18px;
    margin-bottom: 1rem;
    border: 1px solid rgba(220, 207, 183, 0.8);
}

.sc-card-dark {
    background: linear-gradient(180deg, #0f5c45, #0a4031);
    color: #f7f1e3;
}

.sc-card-dark .sc-card-copy,
.sc-card-dark .sc-muted,
.sc-card-dark .sc-link-button {
    color: rgba(247, 241, 227, 0.84);
}

.sc-card-emphasis {
    background:
        linear-gradient(135deg, rgba(255,255,255,0.92), rgba(241, 230, 209, 0.96)),
        radial-gradient(circle at top right, rgba(15, 92, 69, 0.12), transparent 32%);
}

.sc-chip-row,
.sc-meta,
.sc-stat-grid {
    display: flex;
    gap: 0.7rem;
    flex-wrap: wrap;
}

.sc-chip,
.sc-stat,
.sc-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
}

.sc-chip,
.sc-stat {
    background: var(--sc-mint);
    color: var(--sc-accent-strong);
}

.sc-badge {
    background: #f5e6b8;
    color: #664b10;
}

.sc-card-title,
.sc-subtitle {
    margin: 0 0 0.8rem;
    color: var(--sc-text);
}

.sc-subtitle {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 2rem;
}

.sc-card-title-lg {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.sc-divider {
    height: 1px;
    background: linear-gradient(90deg, var(--sc-gold), rgba(180, 138, 45, 0.12));
    margin: 1rem 0 1.5rem;
}

.sc-list,
.sc-timeline,
.sc-faq-group,
.sc-source-list {
    display: grid;
    gap: 1rem;
}

.sc-source-item {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(220, 207, 183, 0.5);
}

.sc-source-heading {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    flex-wrap: wrap;
    margin-bottom: 0.35rem;
}

.sc-source-type {
    display: inline-flex;
    align-items: center;
    padding: 0.28rem 0.62rem;
    border-radius: 999px;
    background: #f5e6b8;
    color: #664b10;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.sc-source-item:first-child {
    padding-top: 0;
}

.sc-source-item:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.sc-list a:not(.sc-button):not(.sc-button-secondary):not(.sc-link-button),
.sc-card a:not(.sc-button):not(.sc-button-secondary):not(.sc-link-button),
.sc-panel a:not(.sc-button):not(.sc-button-secondary):not(.sc-link-button) {
    color: inherit;
}

.sc-accordion-item summary {
    cursor: pointer;
    list-style: none;
    padding: 1.25rem 1.5rem;
    font-weight: 800;
}

.sc-accordion-item summary::-webkit-details-marker {
    display: none;
}

.sc-accordion-body {
    padding: 0 1.5rem 1.35rem;
    color: var(--sc-text-soft);
}

.sc-page-header {
    text-align: center;
    padding: 2rem 0 1rem;
}

.sc-page-intro {
    max-width: 780px;
    margin: 0 auto;
}

.sc-sidebar-menu {
    position: sticky;
    top: 110px;
}

.sc-sidebar-menu a {
    display: block;
    padding: 0.95rem 1rem;
    border-radius: 16px;
    text-decoration: none;
    color: var(--sc-text);
    margin-bottom: 0.55rem;
    border: 1px solid transparent;
}

.sc-sidebar-menu a:hover,
.sc-sidebar-menu a.is-active {
    background: #0f5c45;
    color: #fff;
    border-color: #0f5c45;
}

.sc-content-block {
    margin-bottom: 2rem;
}

.sc-richtext p {
    margin: 0 0 1rem;
}

.sc-richtext h2,
.sc-richtext h3 {
    font-family: "Cormorant Garamond", Georgia, serif;
    color: var(--sc-text);
    margin: 1.4rem 0 0.7rem;
}

.sc-richtext ul,
.sc-richtext ol {
    padding-left: 1.2rem;
    margin: 0 0 1rem;
}

.sc-richtext blockquote {
    margin: 1.2rem 0;
    padding: 0.9rem 1rem;
    border-left: 4px solid var(--sc-gold);
    background: rgba(180, 138, 45, 0.08);
    border-radius: 0 14px 14px 0;
}

.sc-richtext a {
    color: var(--sc-accent);
}

.sc-timeline {
    position: relative;
    padding-left: 1.2rem;
}

.sc-timeline::before {
    content: "";
    position: absolute;
    top: 0.2rem;
    bottom: 0.2rem;
    left: 0.2rem;
    width: 2px;
    background: linear-gradient(180deg, var(--sc-gold), rgba(15, 92, 69, 0.18));
}

.sc-timeline-item {
    position: relative;
    padding-left: 1.2rem;
}

.sc-timeline-item::before {
    content: "";
    position: absolute;
    top: 0.35rem;
    left: -0.1rem;
    width: 0.65rem;
    height: 0.65rem;
    border-radius: 50%;
    background: var(--sc-accent);
    box-shadow: 0 0 0 5px rgba(15, 92, 69, 0.12);
}

.sc-timeline-year {
    color: var(--sc-gold);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.sc-footer {
    border-top: 1px solid rgba(220, 207, 183, 0.8);
    background: rgba(255, 250, 241, 0.92);
    padding: 1.6rem 0 2.4rem;
}

.sc-footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.sc-footer-links {
    display: flex;
    gap: 1.1rem;
    flex-wrap: wrap;
}

.sc-footer-links a {
    text-decoration: none;
    color: var(--sc-text-soft);
}

.sc-mini-grid {
    display: grid;
    gap: 1rem;
}

.sc-mini-grid.two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.sc-search-box {
    padding: 1rem 1.2rem;
    border: 1px solid var(--sc-border);
    border-radius: 18px;
    background: rgba(255,255,255,0.66);
    color: var(--sc-text-soft);
}

.sc-public-form {
    display: grid;
    gap: 0.5rem;
}

.sc-form-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.sc-form-label {
    display: block;
    margin-bottom: 0.45rem;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--sc-text);
}

.sc-form-control {
    width: 100%;
    border: 1px solid var(--sc-border);
    border-radius: 16px;
    padding: 0.9rem 1rem;
    background: rgba(255, 255, 255, 0.8);
    color: var(--sc-text);
    font: inherit;
}

.sc-form-control:focus {
    outline: 2px solid rgba(15, 92, 69, 0.16);
    border-color: var(--sc-accent);
}

.sc-form-errors {
    border: 1px solid rgba(179, 38, 30, 0.2);
    background: rgba(179, 38, 30, 0.06);
    color: #7a271a;
    border-radius: 16px;
    padding: 0.9rem 1rem;
    display: grid;
    gap: 0.35rem;
}

.sc-dashboard {
    display: grid;
    gap: 1.5rem;
}

.sc-dashboard-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.sc-dashboard-card,
.sc-dashboard-list {
    border: 1px solid rgba(220, 207, 183, 0.8);
    border-radius: 22px;
    background: #fffaf1;
    padding: 1.5rem;
}

.sc-dashboard-label {
    color: var(--sc-text-soft);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.72rem;
    font-weight: 800;
}

.sc-dashboard-value {
    font-size: 2.3rem;
    font-weight: 800;
    color: var(--sc-accent-strong);
    margin-top: 0.55rem;
}

.sc-dashboard-shell {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 1.5rem;
}

.sc-record {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(220, 207, 183, 0.5);
}

.sc-record:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.sc-record:first-child {
    padding-top: 0;
}

.sc-feature-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.2rem;
    padding: 1.6rem 1.8rem;
    border: 1px solid rgba(220, 207, 183, 0.9);
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(15, 92, 69, 0.08), rgba(255, 250, 241, 0.92));
    box-shadow: var(--sc-shadow);
}

.pagination {
    margin-top: 2rem;
    justify-content: center;
}

.sc-body {
    background:
        radial-gradient(circle at top left, rgba(213, 177, 99, 0.12), transparent 24%),
        linear-gradient(180deg, #f8f4ea 0%, #f4efe4 100%);
}

.sc-topbar {
    backdrop-filter: blur(12px);
    background: rgba(249, 245, 236, 0.94);
}

.sc-nav {
    min-height: 78px;
    gap: 1.5rem;
}

.sc-brand-mark {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    color: var(--sc-text);
    flex-shrink: 0;
}

.sc-brand-logo {
    width: 36px;
    height: 36px;
    object-fit: contain;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 8px 24px rgba(23, 63, 53, 0.08);
}

.sc-brand-text {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 1.65rem;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.sc-nav-links {
    gap: 1.6rem;
    flex: 1;
    justify-content: center;
}

.sc-nav-links a {
    font-size: 0.92rem;
}

.sc-nav-tools {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.sc-language-select {
    position: relative;
    display: inline-grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0.75rem;
    min-width: 158px;
    padding: 0.34rem 0.85rem 0.34rem 0.38rem;
    border: 1px solid rgba(208, 191, 158, 0.95);
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 243, 232, 0.98));
    box-shadow:
        0 14px 28px rgba(23, 63, 53, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.85);
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.sc-language-select:hover {
    transform: translateY(-1px);
    border-color: rgba(180, 138, 45, 0.7);
    box-shadow:
        0 18px 34px rgba(23, 63, 53, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.sc-language-select select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    min-width: 0;
    border: 0;
    background: transparent;
    color: var(--sc-text);
    font: inherit;
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1;
    outline: none;
    cursor: pointer;
    padding-right: 0.15rem;
}

.sc-language-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(15, 92, 69, 0.12), rgba(15, 92, 69, 0.04));
    border: 1px solid rgba(15, 92, 69, 0.12);
}

.sc-language-globe {
    position: relative;
    width: 15px;
    height: 15px;
    border: 1.8px solid var(--sc-accent);
    border-radius: 50%;
}

.sc-language-globe::before,
.sc-language-globe::after {
    content: "";
    position: absolute;
    inset: 50% auto auto 50%;
    transform: translate(-50%, -50%);
}

.sc-language-globe::before {
    width: 7px;
    height: 15px;
    border-left: 1.5px solid rgba(15, 92, 69, 0.78);
    border-right: 1.5px solid rgba(15, 92, 69, 0.78);
    border-radius: 50%;
}

.sc-language-globe::after {
    width: 15px;
    height: 7px;
    border-top: 1.5px solid rgba(15, 92, 69, 0.78);
    border-bottom: 1.5px solid rgba(15, 92, 69, 0.78);
    border-radius: 50%;
}

.sc-language-caret {
    width: 10px;
    height: 10px;
    border-right: 2px solid rgba(23, 63, 53, 0.75);
    border-bottom: 2px solid rgba(23, 63, 53, 0.75);
    transform: rotate(45deg) translateY(-1px);
    margin-right: 0.15rem;
    pointer-events: none;
}

.sc-home-shell {
    display: grid;
    gap: 1.45rem;
}

.sc-landing-hero {
    position: relative;
    min-height: 610px;
    display: grid;
    align-items: center;
    padding: 4.2rem 2.2rem 6.4rem;
    border: 1px solid rgba(220, 207, 183, 0.75);
    border-radius: 0 0 28px 28px;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(248, 244, 234, 0.96) 0%, rgba(248, 244, 234, 0.88) 30%, rgba(248, 244, 234, 0.56) 58%, rgba(248, 244, 234, 0.26) 100%),
        linear-gradient(120deg, rgba(16, 74, 58, 0.04), rgba(213, 177, 99, 0.08));
    box-shadow: var(--sc-shadow);
}

.sc-landing-hero-full {
    width: 100%;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
    margin-top: 0;
    margin-bottom: 1.45rem;
}

.sc-landing-hero-full > .sc-container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    min-height: inherit;
}

.sc-landing-backdrop,
.sc-landing-hero::before,
.sc-landing-hero::after {
    position: absolute;
    inset: 0;
    content: "";
}

.sc-landing-backdrop {
    background:
        linear-gradient(180deg, rgba(255,255,255,0.05), rgba(248,244,234,0.56) 74%, rgba(248,244,234,0.94) 100%),
        url("../img/hero-mosque-bg.png");
    background-size: cover;
    background-position: center;
    opacity: 0.95;
}

.sc-landing-hero::before {
    inset: 0;
    background:
        linear-gradient(90deg, rgba(248,244,234,0.28), rgba(248,244,234,0.06) 40%, rgba(248,244,234,0.22) 100%);
    opacity: 0.9;
}

.sc-landing-hero::after {
    inset: auto 0 0;
    height: 36%;
    background: linear-gradient(180deg, rgba(248,244,234,0), rgba(248,244,234,0.96));
}

.sc-landing-copy {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.sc-landing-title {
    margin: 0 0 1.1rem;
    max-width: 14ch;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(3.2rem, 6vw, 4.8rem);
    line-height: 0.94;
    letter-spacing: -0.05em;
    color: #123a2f;
}

.sc-salawat {
    display: inline-flex;
    align-items: center;
    margin: 0 0 1rem;
    padding: 0.45rem 0.85rem;
    border: 1px solid rgba(180, 138, 45, 0.28);
    border-radius: 999px;
    background: rgba(255, 250, 241, 0.72);
    color: var(--sc-accent-strong);
    font-size: 0.95rem;
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(23, 63, 53, 0.06);
}

.sc-landing-text {
    max-width: 46rem;
    margin: 0;
    color: #51635c;
    font-size: 1.02rem;
    line-height: 1.9;
}

.sc-home-grid,
.sc-home-feature-row,
.sc-home-reading {
    display: grid;
    gap: 1.4rem;
}

.sc-home-grid {
    grid-template-columns: 0.72fr 1.28fr;
}

.sc-home-feature-row,
.sc-home-reading {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.sc-quickstart-card,
.sc-purpose-card,
.sc-home-cta {
    border: 1px solid rgba(220, 207, 183, 0.9);
    border-radius: 26px;
    background: rgba(255, 250, 241, 0.92);
    box-shadow: var(--sc-shadow);
}

.sc-quickstart-card,
.sc-home-cta {
    padding: 1.8rem;
}

.sc-purpose-card {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 1.3rem;
    padding: 1.8rem;
}

.sc-quick-links,
.sc-home-question-list,
.sc-home-article-stack,
.sc-purpose-points {
    display: grid;
    gap: 0.85rem;
}

.sc-quick-link,
.sc-home-question-item,
.sc-home-article-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.05rem;
    border: 1px solid rgba(220, 207, 183, 0.82);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.84);
    text-decoration: none;
    color: var(--sc-text);
}

.sc-quick-link strong,
.sc-home-article-item strong {
    display: block;
    margin-bottom: 0.22rem;
}

.sc-quick-link span,
.sc-home-article-item span {
    color: var(--sc-text-soft);
    font-size: 0.86rem;
}

.sc-purpose-points {
    list-style: none;
    padding: 0;
    margin: 1.2rem 0 0;
}

.sc-purpose-points li {
    position: relative;
    padding-left: 1rem;
    color: var(--sc-text);
}

.sc-purpose-points li::before {
    content: "+";
    position: absolute;
    left: 0;
    color: var(--sc-gold);
    font-weight: 800;
}

.sc-purpose-media {
    display: flex;
    align-items: center;
    justify-content: center;
}

.sc-purpose-media .sc-card-media {
    height: 250px;
    margin-bottom: 0;
    border-radius: 24px;
}

.sc-purpose-placeholder {
    width: 100%;
    height: 250px;
    border-radius: 24px;
    background:
        radial-gradient(circle at 50% 30%, rgba(255,255,255,0.68), transparent 20%),
        linear-gradient(180deg, rgba(27, 69, 54, 0.06), rgba(27, 69, 54, 0.18)),
        linear-gradient(140deg, #b67f3c, #efe2c7 58%, #4b2b17 100%);
    box-shadow: inset 0 0 0 1px rgba(220, 207, 183, 0.85);
}

.sc-home-spotlight {
    min-height: 285px;
    position: relative;
    overflow: hidden;
}

.sc-home-spotlight::after {
    content: "";
    position: absolute;
    right: 1.4rem;
    bottom: -1rem;
    width: 150px;
    height: 110px;
    opacity: 0.08;
    border: 10px solid #f5e6b8;
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    border-bottom: 0;
}

.sc-home-questions .sc-subtitle,
.sc-home-reading-list .sc-subtitle {
    margin-bottom: 1rem;
}

.sc-home-question-item span:last-child {
    font-size: 1.35rem;
    color: var(--sc-gold);
}

.sc-home-lead-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.sc-home-article-item span:last-child {
    flex-shrink: 0;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--sc-gold);
}

.sc-home-cta {
    text-align: center;
    padding: 3rem 1.8rem;
}

.sc-home-cta .sc-card-copy {
    max-width: 700px;
    margin: 0.4rem auto 1.5rem;
}

.sc-footer-modern {
    margin-top: 2.5rem;
    padding: 0 0 2rem;
    background: transparent;
    border-top: 0;
}

.sc-footer-modern-inner {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.5rem 0 0;
    border-top: 1px solid rgba(220, 207, 183, 0.85);
}

.sc-footer-brand {
    display: grid;
    gap: 0.45rem;
}

.sc-footer-links {
    align-items: center;
}

.sc-footer-links a {
    font-size: 0.92rem;
}

@media (max-width: 1100px) {
    .sc-hero,
    .sc-grid-sidebar,
    .sc-dashboard-shell {
        grid-template-columns: 1fr;
    }

    .sc-home-grid,
    .sc-home-feature-row,
    .sc-home-reading,
    .sc-purpose-card {
        grid-template-columns: 1fr;
    }

    .sc-grid-3,
    .sc-card-grid,
    .sc-dashboard-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .sc-main {
        padding-top: 0;
    }

    .sc-nav {
        align-items: flex-start;
        flex-direction: column;
        padding: 1rem 0;
    }

    .sc-nav-links {
        justify-content: flex-start;
        gap: 0.9rem 1.1rem;
    }

    .sc-nav-tools {
        width: 100%;
    }

    .sc-language-select {
        min-width: 0;
        width: fit-content;
    }

    .sc-hero {
        padding: 1.5rem;
    }

    .sc-landing-hero {
        min-height: 520px;
        padding: 2rem 1.3rem 4rem;
        border-radius: 0 0 24px 24px;
    }

    .sc-landing-hero-full {
        border-radius: 0;
    }

    .sc-landing-hero::before {
        inset: 0;
    }

    .sc-visual-panel {
        position: static;
        margin: 1rem;
        max-width: none;
    }

    .sc-grid-2,
    .sc-grid-3,
    .sc-card-grid,
    .sc-form-grid,
    .sc-mini-grid.two,
    .sc-dashboard-grid {
        grid-template-columns: 1fr;
    }

    .sc-footer-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .sc-footer-modern-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .sc-feature-band {
        align-items: flex-start;
        flex-direction: column;
    }
}
