@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&family=DM+Sans:wght@300;400;500&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap');

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

:root {
    --green-dark: #1b3a2d;
    --green-mid: #2d7d5a;
    --green-light: #3ea876;
    --gold: #c17f24;
    --gold-light: #e8a84a;
    --bg: #f4efe6;
    --bg-alt: #ede7db;
    --bg-card: #faf7f2;
    --text: #2c2c2c;
    --text-muted: #6b6b6b;
    --text-light: #9a9a9a;
    --border: #d8d0c2;
    --white: #ffffff;
    --radius: 8px;
    --shadow: 0 2px 16px rgba(27,58,45,0.09);
    --shadow-hover: 0 6px 28px rgba(27,58,45,0.16);
}

html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text); font-family: 'Inter', sans-serif; font-size: 16px; line-height: 1.7; min-height: 100vh; }

a { color: var(--green-mid); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--green-dark); }
img { max-width: 100%; height: auto; display: block; }

#page-loader {
    position: fixed; inset: 0; z-index: 9999;
    background: var(--green-dark);
    display: flex; align-items: center; justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}
#page-loader.hidden { opacity: 0; visibility: hidden; }
.loader-inner {
    display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.loader-wheel {
    width: 44px; height: 44px;
    border: 3px solid rgba(255,255,255,0.2);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
.loader-inner span {
    color: rgba(255,255,255,0.7);
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
@keyframes spin { to { transform: rotate(360deg); } }

header {
    background: var(--green-dark);
    position: sticky; top: 0; z-index: 100;
    box-shadow: 0 2px 12px rgba(0,0,0,0.18);
}
.header-inner {
    max-width: 1200px; margin: 0 auto;
    padding: 0 24px;
    display: flex; align-items: center; justify-content: space-between;
    height: 68px;
}
.site-brand {
    display: flex; align-items: center; gap: 11px;
    text-decoration: none;
}
.site-brand img {
    width: 32px; height: 32px;
    filter: invert(1) sepia(1) saturate(3) hue-rotate(30deg);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 18px; font-weight: 700;
    color: var(--white);
    letter-spacing: 0.01em;
}
.brand-tagline {
    font-family: 'DM Sans', sans-serif;
    font-size: 10px; font-weight: 300;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

nav.main-nav { display: flex; align-items: center; gap: 4px; }
nav.main-nav a {
    color: rgba(255,255,255,0.8);
    font-family: 'DM Sans', sans-serif;
    font-size: 13.5px; font-weight: 400;
    padding: 6px 13px;
    border-radius: 4px;
    letter-spacing: 0.02em;
    transition: background 0.2s, color 0.2s;
}
nav.main-nav a:hover, nav.main-nav a.active {
    background: rgba(255,255,255,0.1);
    color: var(--white);
}
.nav-articles-btn {
    color: rgba(255,255,255,0.8) !important;
    font-family: 'DM Sans', sans-serif;
    font-size: 13.5px !important;
    padding: 6px 13px !important;
    border-radius: 4px !important;
    cursor: pointer;
    background: none; border: none;
    display: flex; align-items: center; gap: 5px;
    position: relative;
}
.nav-articles-btn:hover { background: rgba(255,255,255,0.1) !important; color: var(--white) !important; }
.articles-dropdown {
    position: absolute; top: calc(100% + 8px); left: 0;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    min-width: 240px;
    overflow: hidden;
    opacity: 0; visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.2s;
    z-index: 200;
}
.articles-dropdown.open { opacity: 1; visibility: visible; transform: translateY(0); }
.articles-dropdown a {
    display: block; padding: 12px 18px;
    color: var(--text) !important;
    font-size: 13.5px !important;
    border-bottom: 1px solid var(--border);
    font-family: 'DM Sans', sans-serif !important;
    font-weight: 400 !important;
    padding: 12px 18px !important;
    border-radius: 0 !important;
    background: none !important;
}
.articles-dropdown a:last-child { border-bottom: none; }
.articles-dropdown a:hover { background: var(--bg) !important; color: var(--green-dark) !important; }

.burger-btn {
    display: none;
    flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer;
    padding: 8px;
}
.burger-btn span {
    display: block; width: 24px; height: 2px;
    background: rgba(255,255,255,0.85);
    border-radius: 2px;
    transition: all 0.3s;
}
.burger-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger-btn.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
    display: none;
    position: fixed; top: 68px; left: 0; right: 0; bottom: 0;
    background: var(--green-dark);
    z-index: 99;
    padding: 32px 24px;
    flex-direction: column; gap: 4px;
    overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
    color: rgba(255,255,255,0.85);
    font-family: 'DM Sans', sans-serif;
    font-size: 17px; font-weight: 400;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    display: block;
}
.mobile-menu a:hover { color: var(--gold-light); }
.mobile-menu .mobile-section-title {
    color: rgba(255,255,255,0.4);
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 20px 0 8px;
    font-family: 'DM Sans', sans-serif;
    display: block;
}

.hero {
    background: linear-gradient(135deg, var(--green-dark) 0%, #244d38 50%, #1a3d2b 100%);
    padding: 80px 24px 72px;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute; inset: 0;
    background: url('https://upload.wikimedia.org/wikipedia/commons/d/d8/Cycling_paths_in_Singapore_20250807_201449.jpg') center/cover no-repeat;
    opacity: 0.18;
}
.hero-inner {
    max-width: 1200px; margin: 0 auto;
    position: relative; z-index: 1;
}
.hero-label {
    display: inline-block;
    background: var(--gold);
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-size: 11px; font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 3px;
    margin-bottom: 20px;
}
.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    max-width: 720px;
    margin-bottom: 20px;
}
.hero-desc {
    color: rgba(255,255,255,0.72);
    font-family: 'DM Sans', sans-serif;
    font-size: 17px; font-weight: 300;
    max-width: 560px;
    line-height: 1.65;
    margin-bottom: 36px;
}
.hero-meta {
    display: flex; align-items: center; gap: 20px;
    flex-wrap: wrap;
}
.hero-meta span {
    color: rgba(255,255,255,0.5);
    font-size: 13px;
    font-family: 'DM Sans', sans-serif;
}
.hero-meta .dot { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,0.3); }

.section-divider {
    height: 3px;
    background: linear-gradient(90deg, var(--green-mid), var(--gold), transparent);
    margin: 0;
}

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

.section { padding: 64px 0; }
.section-alt { background: var(--bg-alt); }

.section-header { margin-bottom: 40px; }
.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 700;
    color: var(--green-dark);
    line-height: 1.25;
    margin-bottom: 8px;
}
.section-header p {
    color: var(--text-muted);
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
}
.section-header .label {
    display: inline-block;
    color: var(--gold);
    font-family: 'DM Sans', sans-serif;
    font-size: 11px; font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.article-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.25s, box-shadow 0.25s;
    display: flex; flex-direction: column;
}
.article-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.card-image {
    position: relative; overflow: hidden;
    height: 200px;
}
.card-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.article-card:hover .card-image img { transform: scale(1.04); }
.card-tag {
    position: absolute; top: 12px; left: 12px;
    background: var(--green-dark);
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-size: 10px; font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 3px 9px;
    border-radius: 3px;
}
.card-body { padding: 22px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.card-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 19px; font-weight: 600;
    color: var(--green-dark);
    line-height: 1.3;
    margin-bottom: 10px;
}
.card-body p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 18px;
    flex: 1;
    font-family: 'DM Sans', sans-serif;
}
.card-meta {
    display: flex; align-items: center; justify-content: space-between;
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    color: var(--text-light);
    padding-top: 14px;
    border-top: 1px solid var(--border);
}
.read-more {
    color: var(--green-mid);
    font-weight: 500;
    font-size: 13px;
    display: flex; align-items: center; gap: 4px;
    font-family: 'DM Sans', sans-serif;
}
.read-more:hover { color: var(--green-dark); }
.read-more::after { content: '→'; transition: transform 0.2s; }
.article-card:hover .read-more::after { transform: translateX(4px); }

.featured-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 28px;
}
.featured-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex; flex-direction: column;
    transition: box-shadow 0.25s;
}
.featured-card:hover { box-shadow: var(--shadow-hover); }
.featured-image { height: 320px; overflow: hidden; }
.featured-image img { width: 100%; height: 100%; object-fit: cover; }
.featured-body { padding: 30px; flex: 1; display: flex; flex-direction: column; }
.featured-body .tag {
    display: inline-block;
    color: var(--gold);
    font-family: 'DM Sans', sans-serif;
    font-size: 11px; font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.featured-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(20px, 2vw, 26px);
    font-weight: 700;
    color: var(--green-dark);
    line-height: 1.25;
    margin-bottom: 14px;
}
.featured-body p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
    flex: 1;
    font-family: 'DM Sans', sans-serif;
    margin-bottom: 20px;
}
.sidebar-articles { display: flex; flex-direction: column; gap: 20px; }
.sidebar-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    transition: box-shadow 0.25s;
}
.sidebar-card:hover { box-shadow: var(--shadow-hover); }
.sidebar-thumb { width: 110px; flex-shrink: 0; overflow: hidden; }
.sidebar-thumb img { width: 100%; height: 100%; object-fit: cover; }
.sidebar-body { padding: 16px; display: flex; flex-direction: column; justify-content: center; }
.sidebar-body .tag {
    color: var(--gold);
    font-family: 'DM Sans', sans-serif;
    font-size: 10px; font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 6px;
    display: block;
}
.sidebar-body h4 {
    font-family: 'Playfair Display', serif;
    font-size: 15px; font-weight: 600;
    color: var(--green-dark);
    line-height: 1.3;
    margin-bottom: 6px;
}
.sidebar-body p {
    font-size: 12.5px;
    color: var(--text-muted);
    font-family: 'DM Sans', sans-serif;
    line-height: 1.5;
}

.info-strip {
    background: var(--green-dark);
    padding: 40px 0;
}
.info-strip-inner {
    max-width: 1200px; margin: 0 auto; padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.info-item { text-align: center; }
.info-item .number {
    font-family: 'Playfair Display', serif;
    font-size: 36px; font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 6px;
}
.info-item .label {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px; font-weight: 400;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-section { background: var(--bg-alt); }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}
.contact-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px; font-weight: 700;
    color: var(--green-dark);
    margin-bottom: 16px;
    line-height: 1.25;
}
.contact-info p {
    color: var(--text-muted);
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 28px;
}
.contact-details { display: flex; flex-direction: column; gap: 14px; }
.contact-detail {
    display: flex; align-items: flex-start; gap: 12px;
}
.contact-detail .icon {
    width: 36px; height: 36px;
    background: var(--green-dark);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}
.contact-detail .icon svg { width: 16px; height: 16px; fill: var(--white); }
.contact-detail div .clabel {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px; font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light);
    display: block;
    margin-bottom: 2px;
}
.contact-detail div a, .contact-detail div span {
    font-family: 'DM Sans', sans-serif;
    font-size: 14.5px;
    color: var(--text);
}
.contact-form {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 36px;
    box-shadow: var(--shadow);
}
.contact-form h4 {
    font-family: 'Playfair Display', serif;
    font-size: 22px; font-weight: 600;
    color: var(--green-dark);
    margin-bottom: 24px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-size: 12px; font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 6px;
}
.form-group input {
    width: 100%;
    padding: 11px 14px;
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: 5px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14.5px;
    color: var(--text);
    outline: none;
    transition: border-color 0.2s;
}
.form-group input:focus { border-color: var(--green-mid); }
.form-submit {
    width: 100%;
    background: var(--green-dark);
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-size: 14px; font-weight: 500;
    letter-spacing: 0.06em;
    padding: 13px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.2s;
}
.form-submit:hover { background: var(--green-mid); }
.form-success {
    display: none;
    background: #e8f5ee;
    border: 1px solid #8bc9a8;
    border-radius: 5px;
    padding: 14px;
    color: var(--green-dark);
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    margin-top: 12px;
    text-align: center;
}

footer {
    background: #111f18;
    color: rgba(255,255,255,0.7);
    padding: 56px 0 0;
}
.footer-grid {
    max-width: 1200px; margin: 0 auto; padding: 0 24px;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .brand-desc {
    font-family: 'DM Sans', sans-serif;
    font-size: 13.5px;
    line-height: 1.7;
    color: rgba(255,255,255,0.55);
    margin-top: 12px;
    max-width: 260px;
}
.footer-col h5 {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px; font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    margin-bottom: 16px;
}
.footer-col a {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-size: 13.5px;
    color: rgba(255,255,255,0.65);
    padding: 4px 0;
    transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom {
    max-width: 1200px; margin: 0 auto; padding: 20px 24px;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 12px;
}
.footer-bottom p {
    font-family: 'DM Sans', sans-serif;
    font-size: 12.5px;
    color: rgba(255,255,255,0.35);
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a {
    font-family: 'DM Sans', sans-serif;
    font-size: 12.5px;
    color: rgba(255,255,255,0.4);
}
.footer-bottom-links a:hover { color: var(--gold-light); }

.cookie-banner {
    position: fixed; bottom: 0; left: 0; right: 0;
    background: var(--green-dark);
    z-index: 1000;
    padding: 18px 24px;
    display: flex; align-items: center; justify-content: space-between;
    gap: 20px; flex-wrap: wrap;
    box-shadow: 0 -4px 24px rgba(0,0,0,0.18);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 13.5px;
    color: rgba(255,255,255,0.8);
    max-width: 680px;
    line-height: 1.6;
}
.cookie-text a { color: var(--gold-light); text-decoration: underline; }
.cookie-buttons { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px; font-weight: 500;
    padding: 9px 22px;
    border-radius: 4px;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
}
.cookie-btn.accept { background: var(--gold); color: var(--white); }
.cookie-btn.accept:hover { background: var(--gold-light); }
.cookie-btn.reject { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.75); }
.cookie-btn.reject:hover { background: rgba(255,255,255,0.18); }

.article-hero {
    background: var(--green-dark);
    padding: 60px 24px 56px;
    position: relative;
    overflow: hidden;
}
.article-hero::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(27,58,45,0.92) 0%, rgba(27,58,45,0.7) 100%);
    z-index: 1;
}
.article-hero-bg {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}
.article-hero-inner {
    max-width: 860px; margin: 0 auto;
    position: relative; z-index: 2;
}
.breadcrumb {
    display: flex; align-items: center; gap: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 12.5px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 20px;
}
.breadcrumb a { color: rgba(255,255,255,0.5); }
.breadcrumb a:hover { color: rgba(255,255,255,0.8); }
.breadcrumb span { color: rgba(255,255,255,0.3); }
.article-hero .label {
    display: inline-block;
    background: var(--gold);
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-size: 11px; font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 3px;
    margin-bottom: 18px;
}
.article-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.18;
    margin-bottom: 18px;
}
.article-hero .meta {
    display: flex; align-items: center; gap: 18px;
    flex-wrap: wrap;
}
.article-hero .meta span {
    color: rgba(255,255,255,0.5);
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
}
.article-hero .meta .dot { width: 3px; height: 3px; border-radius: 50%; background: rgba(255,255,255,0.3); }

.article-layout {
    max-width: 1200px; margin: 0 auto; padding: 60px 24px;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 56px;
    align-items: start;
}
.article-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 26px; font-weight: 700;
    color: var(--green-dark);
    margin: 40px 0 16px;
    line-height: 1.3;
}
.article-content h2:first-child { margin-top: 0; }
.article-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px; font-weight: 600;
    color: var(--green-dark);
    margin: 28px 0 12px;
}
.article-content p {
    font-family: 'Libre Baskerville', serif;
    font-size: 16px;
    color: var(--text);
    line-height: 1.85;
    margin-bottom: 20px;
}
.article-content ul, .article-content ol {
    margin: 0 0 20px 20px;
    font-family: 'Libre Baskerville', serif;
    font-size: 15.5px;
    color: var(--text);
    line-height: 1.8;
}
.article-content li { margin-bottom: 6px; }
.article-content .note-box {
    background: #e8f5ee;
    border-left: 4px solid var(--green-mid);
    border-radius: 0 6px 6px 0;
    padding: 18px 22px;
    margin: 28px 0;
    font-family: 'DM Sans', sans-serif;
    font-size: 14.5px;
    color: var(--green-dark);
    line-height: 1.65;
}
.article-content .note-box strong {
    display: block;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--green-mid);
    margin-bottom: 6px;
}
.article-content figure { margin: 32px 0; }
.article-content figure img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.article-content figcaption {
    font-family: 'DM Sans', sans-serif;
    font-size: 12.5px;
    color: var(--text-light);
    text-align: center;
    margin-top: 8px;
    font-style: italic;
}
.article-content .route-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
}
.article-content .route-table th {
    background: var(--green-dark);
    color: var(--white);
    padding: 10px 14px;
    text-align: left;
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.article-content .route-table td {
    padding: 10px 14px;
    border-bottom: 1px solid var(--border);
    color: var(--text);
    vertical-align: top;
}
.article-content .route-table tr:nth-child(even) td { background: var(--bg-alt); }

.article-sidebar { position: sticky; top: 88px; }
.sidebar-widget {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
    margin-bottom: 24px;
}
.sidebar-widget h4 {
    font-family: 'Playfair Display', serif;
    font-size: 16px; font-weight: 600;
    color: var(--green-dark);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gold);
}
.sidebar-widget ul { list-style: none; margin: 0; }
.sidebar-widget ul li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    font-family: 'DM Sans', sans-serif;
    font-size: 13.5px;
}
.sidebar-widget ul li:last-child { border-bottom: none; padding-bottom: 0; }
.sidebar-widget ul li a { color: var(--text); }
.sidebar-widget ul li a:hover { color: var(--green-mid); }
.sidebar-widget p {
    font-family: 'DM Sans', sans-serif;
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 12px;
}
.sidebar-widget .ext-link {
    display: block;
    color: var(--green-mid);
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    padding: 4px 0;
    border-bottom: 1px solid var(--border);
}
.sidebar-widget .ext-link:last-child { border-bottom: none; }

.page-content {
    max-width: 860px; margin: 0 auto;
    padding: 60px 24px;
}
.page-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: 8px;
    line-height: 1.2;
}
.page-content .page-meta {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 36px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border);
}
.page-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 22px; font-weight: 700;
    color: var(--green-dark);
    margin: 36px 0 14px;
}
.page-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 17px; font-weight: 600;
    color: var(--green-dark);
    margin: 24px 0 10px;
}
.page-content p, .page-content li {
    font-family: 'Libre Baskerville', serif;
    font-size: 15.5px;
    color: var(--text);
    line-height: 1.85;
    margin-bottom: 16px;
}
.page-content ul, .page-content ol {
    margin: 0 0 16px 22px;
}
.page-content a { color: var(--green-mid); text-decoration: underline; }

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 56px;
    align-items: start;
}
.about-image { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.about-image img { width: 100%; height: 380px; object-fit: cover; }

@media (max-width: 1024px) {
    .articles-grid { grid-template-columns: repeat(2, 1fr); }
    .featured-grid { grid-template-columns: 1fr; }
    .info-strip-inner { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .article-layout { grid-template-columns: 1fr; gap: 40px; }
    .article-sidebar { position: static; }
    .about-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    nav.main-nav { display: none; }
    .burger-btn { display: flex; }
    .articles-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 36px; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .info-strip-inner { grid-template-columns: repeat(2, 1fr); }
    .hero { padding: 56px 24px 52px; }
    .section { padding: 48px 0; }
    .cookie-banner { flex-direction: column; align-items: flex-start; }
    .sidebar-card { flex-direction: column; }
    .sidebar-thumb { width: 100%; height: 160px; }
}
@media (max-width: 480px) {
    .info-strip-inner { grid-template-columns: 1fr 1fr; }
    .hero h1 { font-size: 28px; }
    .featured-image { height: 220px; }
}
