:root {
    --ink: #0b1116;
    --ink-soft: #1a242e;
    --paper: #eef1f3;
    --paper-deep: #e2e7eb;
    --surface: #f7f8f9;
    --muted: #5f6d7a;
    --line: rgba(11, 17, 22, .10);
    --line-strong: rgba(11, 17, 22, .16);
    --copper: #b86b35;
    --copper-deep: #8f4f22;
    --mist: #9aabba;
    --radius: 4px;
    --radius-lg: 18px;
    --shadow: 0 24px 70px rgba(11, 17, 22, .14);
    --font-sans: "Onest", "Segoe UI", sans-serif;
    --font-serif: "Literata", Georgia, serif;
    --header-h: 84px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background:
        radial-gradient(1200px 500px at 10% -10%, rgba(184, 107, 53, .08), transparent 55%),
        radial-gradient(900px 420px at 100% 0%, rgba(90, 120, 140, .10), transparent 50%),
        linear-gradient(180deg, #f4f6f7 0%, var(--paper) 40%, #eaedef 100%);
    font-family: var(--font-sans);
    -webkit-font-smoothing: antialiased;
}
body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 200;
    opacity: .035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }
img { display: block; max-width: 100%; }
.container { width: min(1160px, calc(100% - 48px)); margin-inline: auto; }
.section { padding: 104px 0; }
[data-lucide] { width: 18px; height: 18px; stroke-width: 1.8; }

[data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s ease, transform .7s ease;
}
[data-reveal].is-visible {
    opacity: 1;
    transform: none;
}

/* Header */
.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 50;
    color: white;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: background .35s ease, border-color .35s ease, color .35s ease, backdrop-filter .35s ease;
}
.site-header.is-scrolled,
.site-header.menu-open-header {
    color: var(--ink);
    background: rgba(247, 248, 249, .92);
    border-bottom-color: var(--line);
    backdrop-filter: blur(16px);
}
.nav-wrap { height: var(--header-h); display: flex; align-items: center; gap: 18px; }
.brand { display: inline-flex; align-items: center; gap: 12px; font-size: 15px; font-weight: 700; letter-spacing: -.3px; line-height: 1.15; }
/* Headers stay on one line: the live weather chip is the only element that gives way. */
.nav-wrap .brand, .content-nav .brand, .weather-nav .brand { flex: none; }
.brand-logo {
    width: 56px; height: 56px; object-fit: contain; border-radius: 10px;
    background: #fff; box-shadow: 0 4px 14px rgba(0,0,0,.12); flex: 0 0 auto;
}
.brand-text { display: grid; gap: 2px; max-width: 190px; }
.brand small {
    display: block; color: rgba(255,255,255,.55); font-size: 8px; font-weight: 700;
    letter-spacing: 1.4px; text-transform: uppercase;
}
.site-header.is-scrolled .brand small,
.site-header.menu-open-header .brand small { color: var(--muted); }
.brand-mark {
    width: 42px; height: 42px; display: grid; place-items: center; color: white;
    border-radius: 12px; background: linear-gradient(145deg, var(--copper), var(--copper-deep)); font-size: 22px;
}
.desktop-nav { display: flex; align-items: center; gap: 18px; margin-right: auto; font-size: 13px; font-weight: 600; }
.desktop-nav > a, .nav-dropdown > button { padding: 30px 0; white-space: nowrap; transition: color .2s; }
.desktop-nav > a:hover, .nav-dropdown > button:hover { color: var(--copper); }
.site-header.is-scrolled .desktop-nav > a:hover,
.site-header.is-scrolled .nav-dropdown > button:hover { color: var(--copper-deep); }
.nav-dropdown { position: relative; }
.nav-dropdown > button { display: flex; align-items: center; gap: 5px; border: 0; background: none; cursor: pointer; color: inherit; }
.nav-dropdown > button [data-lucide] { width: 14px; }
.dropdown-menu {
    position: absolute; top: calc(100% - 4px); left: -18px; width: 250px; padding: 10px;
    opacity: 0; visibility: hidden; transform: translateY(10px); transition: .2s ease;
    border: 1px solid var(--line); border-radius: 14px; background: var(--surface); box-shadow: var(--shadow); color: var(--ink);
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu,
.nav-dropdown.open .dropdown-menu { opacity: 1; visibility: visible; transform: none; }
.dropdown-menu a { display: block; padding: 10px 12px; border-radius: 8px; color: #3c4554; font-size: 13px; }
.dropdown-menu a:hover { background: rgba(184, 107, 53, .08); color: var(--copper-deep); }
.wide-menu { display: grid; grid-template-columns: 1fr 1fr; width: 440px; }
.province-menu {
    width: min(560px, calc(100vw - 32px));
    grid-template-columns: 1fr 1fr 1fr;
}
.dropdown-menu .dropdown-all {
    grid-column: 1 / -1;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 800;
    color: var(--copper-deep);
}
.dropdown-all {
    grid-column: 1 / -1; display: flex !important; align-items: center; gap: 7px; margin-top: 6px;
    padding-top: 12px !important; border-top: 1px solid var(--line);
    color: var(--copper-deep) !important; font-weight: 800;
}
.dropdown-all [data-lucide] { width: 14px; }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.live-chip {
    display: inline-flex; align-items: center; gap: 7px; min-width: 0; max-width: 160px;
    padding: 8px 12px; border-radius: 999px; border: 1px solid rgba(255,255,255,.22);
    background: rgba(255,255,255,.08); font-size: 11px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.site-header.is-scrolled .live-chip,
.site-header.menu-open-header .live-chip {
    border-color: var(--line); background: white; color: var(--ink);
}
.live-chip [data-lucide] { width: 14px; height: 14px; color: var(--copper); flex: none; }
.icon-button, .menu-toggle {
    display: grid; place-items: center; width: 42px; height: 42px;
    border: 1px solid rgba(255,255,255,.24); border-radius: 50%; background: rgba(255,255,255,.06); cursor: pointer; color: inherit;
}
.site-header.is-scrolled .icon-button,
.site-header.is-scrolled .menu-toggle,
.site-header.menu-open-header .icon-button,
.site-header.menu-open-header .menu-toggle {
    border-color: var(--line); background: white;
}
.lang-switch { position: relative; }
.lang-toggle {
    display: inline-flex; align-items: center; gap: 6px; height: 42px; padding: 0 12px;
    border: 1px solid rgba(255,255,255,.24); border-radius: 999px; background: rgba(255,255,255,.06);
    color: inherit; font-family: inherit; font-size: 11px; font-weight: 800; cursor: pointer;
}
.lang-toggle [data-lucide] { width: 15px; height: 15px; flex: none; }
.lang-caret { width: 12px !important; height: 12px !important; opacity: .6; transition: transform .2s ease; }
.lang-switch.is-open .lang-caret { transform: rotate(180deg); }
.lang-switch.is-busy { opacity: .55; pointer-events: none; }
.lang-switch.has-error .lang-toggle { border-color: rgba(190,74,74,.6); }
.lang-menu {
    position: absolute; top: calc(100% + 10px); right: 0; z-index: 60; display: grid; gap: 2px;
    min-width: 168px; padding: 8px; border: 1px solid var(--line); border-radius: 16px;
    background: white; box-shadow: 0 24px 50px rgba(11,15,20,.16);
    opacity: 0; visibility: hidden; transform: translateY(-6px); transition: .18s ease;
}
.lang-switch.is-open .lang-menu { opacity: 1; visibility: visible; transform: none; }
.lang-option {
    display: flex; align-items: center; justify-content: space-between; gap: 14px;
    padding: 10px 12px; border: 0; border-radius: 10px; background: transparent;
    color: var(--ink); font-family: inherit; font-size: 13px; font-weight: 600; text-align: left; cursor: pointer;
}
.lang-option i { font-style: normal; font-size: 10px; font-weight: 800; letter-spacing: .06em; color: var(--muted); }
.lang-option:hover { background: rgba(11,15,20,.05); }
.lang-option.is-active { color: white; background: var(--ink); }
.lang-option.is-active i { color: rgba(255,255,255,.6); }
/* The main header is dense, so it keeps an icon-only trigger. */
.site-header .lang-toggle { width: 42px; padding: 0; justify-content: center; border-radius: 50%; }
.site-header .lang-toggle span, .site-header .lang-caret { display: none; }
.site-header.is-scrolled .lang-toggle,
.site-header.menu-open-header .lang-toggle { border-color: var(--line); background: white; color: var(--ink); }
.content-nav .lang-toggle, .weather-nav .lang-toggle { border-color: var(--line); background: white; color: var(--ink); }
.dark-content-header .lang-toggle { border-color: rgba(255,255,255,.18); background: transparent; color: white; }
#google_translate_element, .goog-te-banner-frame, .goog-te-balloon-frame, #goog-gt-tt, iframe.skiptranslate { display: none !important; }
body { top: 0 !important; }
.goog-text-highlight { background: none !important; box-shadow: none !important; }
.contact-button, .btn-primary, .dark-button {
    display: inline-flex; align-items: center; justify-content: center; gap: 9px;
    border-radius: 999px; background: var(--copper); color: white; font-size: 13px; font-weight: 700;
}
.contact-button { height: 42px; padding: 0 18px; }
.contact-button:hover, .btn-primary:hover { background: var(--copper-deep); }
.menu-toggle { display: none; }
.mobile-menu { display: none; }
.search-panel {
    position: absolute; top: 100%; left: 0; right: 0; max-height: 0; overflow: hidden;
    background: var(--surface); color: var(--ink); box-shadow: 0 16px 40px rgba(0,0,0,.12); transition: max-height .25s;
}
.search-panel.open { max-height: min(78vh, 640px); overflow: visible; }
.search-panel .container { padding-bottom: 18px; }
.search-bar { height: 76px; display: flex; align-items: center; gap: 15px; }
.search-panel input { flex: 1; height: 46px; padding: 0 5px; border: 0; outline: 0; background: transparent; font-size: 18px; }
.search-go {
    padding: 11px 20px; border: 0; border-radius: 999px; background: var(--ink); color: white;
    font-size: 12px; font-weight: 800; letter-spacing: .04em; cursor: pointer; transition: .18s ease;
}
.search-go:hover { background: var(--copper); }
.search-close { border: 0; background: none; cursor: pointer; color: var(--muted); }

.search-suggest {
    max-height: min(56vh, 460px); overflow-y: auto; margin-bottom: 4px;
    border-top: 1px solid var(--line); border-radius: 0 0 14px 14px;
}
.suggest-item { display: flex; align-items: flex-start; gap: 14px; padding: 14px 8px; border-bottom: 1px solid var(--line); }
.suggest-item:last-of-type { border-bottom: 0; }
.suggest-item.is-active, .suggest-item:hover { background: var(--paper); }
.suggest-type {
    flex: none; min-width: 78px; padding: 4px 10px; border-radius: 999px; background: var(--paper-deep);
    color: var(--copper); font-size: 10px; font-weight: 800; letter-spacing: .06em; text-align: center; text-transform: uppercase;
}
.suggest-item.is-active .suggest-type { background: white; }
.suggest-copy { min-width: 0; display: grid; gap: 4px; }
.suggest-copy b { font-size: 15px; font-weight: 650; line-height: 1.4; }
.suggest-copy small { color: var(--muted); font-size: 12.5px; line-height: 1.6; }
.suggest-copy small, .suggest-copy b { overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.suggest-more { display: block; padding: 14px 8px; color: var(--copper); font-size: 13px; font-weight: 700; }
.suggest-more:hover { text-decoration: underline; }
.suggest-empty { margin: 0; padding: 20px 8px; color: var(--muted); font-size: 13.5px; }
mark { padding: 0 1px; border-radius: 3px; background: rgba(184,107,53,.18); color: inherit; font-weight: 700; }

/* Hero — full bleed, brand first */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: grid;
    align-items: end;
    overflow: hidden;
    color: white;
    background: #071018;
}
.hero-media {
    position: absolute; inset: 0;
    background:
        linear-gradient(90deg, rgba(7, 16, 24, .88) 0%, rgba(7, 16, 24, .45) 48%, rgba(7, 16, 24, .25) 100%),
        var(--hero-image) center/cover;
    transform: scale(1.06);
    animation: heroDrift 18s ease-in-out infinite alternate;
}
.hero-veil {
    position: absolute; inset: 0;
    background:
        linear-gradient(180deg, rgba(7,16,24,.55) 0%, transparent 28%, rgba(7,16,24,.72) 78%, #071018 100%),
        radial-gradient(800px 400px at 70% 40%, rgba(184,107,53,.18), transparent 60%);
}
.hero-stage {
    position: relative; z-index: 2;
    padding: calc(var(--header-h) + 36px) 0 72px;
    max-width: 780px;
    margin-left: max(24px, calc((100% - 1160px) / 2));
    margin-right: auto;
    width: min(780px, calc(100% - 48px));
}
.hero-brand {
    margin: 0 0 16px;
    font-size: clamp(26px, 4vw, 46px);
    font-weight: 800;
    letter-spacing: -.04em;
    line-height: 1.05;
    animation: heroRise .9s ease both;
}
.hero h1 {
    margin: 0 0 16px;
    font-family: var(--font-serif);
    font-size: clamp(32px, 4.6vw, 52px);
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: -.03em;
    max-width: 14ch;
    animation: heroRise .9s .12s ease both;
}
.hero-lead {
    margin: 0;
    max-width: 36ch;
    color: rgba(255,255,255,.72);
    font-size: 15px;
    line-height: 1.7;
    animation: heroRise .9s .22s ease both;
}
.hero-actions {
    display: flex; flex-wrap: wrap; gap: 14px; align-items: center;
    margin-top: 28px;
    animation: heroRise .9s .32s ease both;
}
.btn-primary { height: 48px; padding: 0 22px; }
.btn-ghost {
    display: inline-flex; align-items: center; gap: 8px;
    height: 48px; padding: 0 8px 0 4px; color: rgba(255,255,255,.86); font-size: 13px; font-weight: 700;
}
.btn-ghost [data-lucide] { width: 16px; }
.hero-scroll {
    position: absolute; z-index: 2; left: 50%; bottom: 28px;
    width: 22px; height: 36px; border: 1px solid rgba(255,255,255,.35); border-radius: 999px;
    transform: translateX(-50%);
}
.hero-scroll span {
    position: absolute; left: 50%; top: 8px; width: 3px; height: 8px;
    border-radius: 999px; background: white; transform: translateX(-50%);
    animation: scrollPulse 1.6s ease-in-out infinite;
}
@keyframes heroDrift { to { transform: scale(1.12) translate3d(-1.5%, 1%, 0); } }
@keyframes heroRise {
    from { opacity: 0; transform: translateY(22px); }
    to { opacity: 1; transform: none; }
}
@keyframes scrollPulse {
    0%, 100% { opacity: .35; transform: translate(-50%, 0); }
    50% { opacity: 1; transform: translate(-50%, 10px); }
}

/* Spotlight stories */
.spotlight { padding: 88px 0 40px; }
.spotlight-slider {
    position: relative;
    min-height: 460px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--ink);
}
.spotlight-slide {
    position: absolute; inset: 0;
    display: flex; align-items: flex-end;
    padding: 48px;
    visibility: hidden; opacity: 0; transform: scale(1.03);
    transition: opacity .6s ease, transform .7s ease, visibility .6s;
    background-image:
        linear-gradient(90deg, rgba(7,16,24,.94) 0%, rgba(7,16,24,.72) 42%, rgba(7,16,24,.15) 78%),
        var(--spotlight-image);
    background-size: cover; background-position: center;
}
.spotlight-slide.active { visibility: visible; opacity: 1; transform: scale(1); }
.spotlight-copy { width: min(560px, 70%); color: white; }
.spotlight-copy h3 { margin: 14px 0 14px; font-family: var(--font-serif); font-size: clamp(28px, 3.2vw, 42px); line-height: 1.15; letter-spacing: -.02em; }
.spotlight-copy h3 a:hover { color: #f0d2b4; }
.spotlight-copy p { margin: 0; color: rgba(255,255,255,.7); font-size: 15px; line-height: 1.7; }
.hero-meta { display: flex; gap: 18px; margin: 20px 0; color: rgba(255,255,255,.62); font-size: 12px; }
.hero-meta span, .engagement span, .story-meta { display: inline-flex; align-items: center; gap: 6px; }
.hero-meta [data-lucide], .engagement [data-lucide], .story-meta [data-lucide] { width: 15px; height: 15px; }
.text-link {
    display: inline-flex; align-items: center; gap: 8px;
    color: #f0d2b4; font-size: 13px; font-weight: 700;
}
.spotlight-controls { gap: 10px; }
.slider-controls { display: flex; align-items: center; gap: 10px; }
.slider-controls > button {
    display: grid; place-items: center; width: 40px; height: 40px;
    border: 1px solid var(--line-strong); border-radius: 50%; background: white; cursor: pointer;
}
.slider-dots { display: flex; gap: 6px; padding: 0 4px; }
.slider-dots button {
    width: 7px; height: 7px; padding: 0; border: 0; border-radius: 20px;
    background: rgba(11,17,22,.22); cursor: pointer; transition: .25s;
}
.slider-dots button.active { width: 22px; background: var(--copper); }

/* Ticker */
.ticker { border-block: 1px solid var(--line); background: rgba(255,255,255,.45); }
.ticker-inner { height: 64px; display: flex; align-items: center; gap: 24px; }
.ticker strong { flex: none; display: flex; align-items: center; gap: 8px; color: var(--copper); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.ticker strong span {
    width: 7px; height: 7px; border-radius: 50%; background: var(--copper);
    box-shadow: 0 0 0 5px rgba(184,107,53,.14); animation: pulseDot 1.8s ease infinite;
}
.ticker-window { position: relative; flex: 1; height: 24px; overflow: hidden; }
.ticker-window p { position: absolute; margin: 2px 0 0; font-size: 13px; font-weight: 600; animation: tickerSwap 8s infinite; }
.ticker-window p:nth-child(2) { opacity: 0; transform: translateY(30px); animation-delay: 4s; }
.ticker-time { color: var(--mist); font-size: 12px; font-variant-numeric: tabular-nums; }
@keyframes tickerSwap {
    0%,42% { opacity: 1; transform: translateY(0); }
    50%,92% { opacity: 0; transform: translateY(-30px); }
    93%,100% { opacity: 0; transform: translateY(30px); }
}
@keyframes pulseDot {
    0%, 100% { box-shadow: 0 0 0 4px rgba(184,107,53,.12); }
    50% { box-shadow: 0 0 0 8px rgba(184,107,53,.06); }
}

/* Utility widgets — interactive panels */
.utility-section { padding: 36px 0 20px; }
.utility-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.utility-card {
    min-height: 200px; padding: 22px;
    border: 1px solid var(--line); border-radius: var(--radius-lg);
    background: rgba(255,255,255,.72); backdrop-filter: blur(8px);
}
.utility-heading { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.utility-heading > span { display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 700; }
.utility-heading > span [data-lucide] { color: var(--copper); }
.utility-heading small { color: var(--mist); font-size: 9px; }
.utility-link {
    display: inline-flex; align-items: center; gap: 4px; padding: 5px 8px;
    border: 0; border-radius: 999px; color: var(--copper-deep); background: rgba(184,107,53,.10);
    font-size: 9px; font-weight: 800; cursor: pointer;
}
.utility-link [data-lucide] { width: 12px; height: 12px; }
.weather-main { display: flex; align-items: center; justify-content: space-between; }
.weather-main div { display: flex; flex-direction: column; }
.weather-main strong { font-size: 40px; letter-spacing: -2px; font-weight: 700; }
.weather-main span { color: var(--muted); font-size: 11px; }
.weather-main > [data-lucide] { width: 52px; height: 52px; color: var(--copper); stroke-width: 1.4; }
.weather-days { display: grid; grid-template-columns: repeat(3,1fr); margin-top: 18px; padding-top: 14px; border-top: 1px solid var(--line); }
.weather-days span { display: flex; justify-content: space-between; padding-right: 10px; color: var(--mist); font-size: 9px; }
.weather-days b { color: var(--ink); }
.rate-list { display: grid; gap: 4px; }
.rate-row {
    display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 10px;
    padding: 7px 8px; border-radius: 10px;
    font-variant-numeric: tabular-nums; transition: background .2s ease;
}
.rate-row + .rate-row { border-top: 1px dashed var(--line); }
.rate-row:not(.rate-row-lead):hover { background: rgba(11,17,22,.04); }
.rate-code { display: flex; flex-direction: column; font-size: 10px; font-weight: 700; letter-spacing: .06em; }
.rate-code small { color: var(--mist); font-size: 8px; letter-spacing: .02em; }
.rate-value { font-size: 13px; letter-spacing: -.01em; }
.rate-value i { margin-left: 2px; color: var(--mist); font-size: 9px; font-style: normal; }
.rate-row-lead {
    padding: 12px; margin-bottom: 4px; border-radius: 14px;
    background: linear-gradient(135deg, rgba(184,107,53,.15), rgba(184,107,53,.03));
    box-shadow: inset 0 0 0 1px rgba(184,107,53,.18);
}
.rate-row-lead + .rate-row { border-top: 0; }
.rate-row-lead .currency { width: 32px; height: 32px; border-radius: 10px; background: rgba(184,107,53,.18); font-size: 15px; }
.rate-row-lead .rate-code { font-size: 11px; }
.rate-row-lead .rate-value { font-size: 22px; font-weight: 700; letter-spacing: -.6px; }
.rate-row-lead .rate-value i { color: var(--copper-deep); font-size: 12px; }
.rate-note {
    display: flex; align-items: center; gap: 5px; margin: 14px 0 0; padding-top: 11px;
    border-top: 1px solid var(--line); color: var(--mist); font-size: 9px;
}
.rate-note [data-lucide] { width: 11px; height: 11px; }
.rate-note-link {
    display: inline-flex; align-items: center; gap: 4px; margin-left: auto;
    color: var(--copper-deep); font-weight: 800; white-space: nowrap;
}
.rate-note-link:hover { text-decoration: underline; }
.currency {
    display: grid; place-items: center; width: 24px; height: 24px;
    border-radius: 8px; background: rgba(184,107,53,.10); color: var(--copper-deep); font-weight: 800;
}
.up { color: #2f8f63; } .down { color: #c44b4b; }
.horoscope-content { display: flex; gap: 14px; align-items: flex-start; }
.zodiac {
    flex: none; display: grid; place-items: center; width: 56px; height: 56px;
    border-radius: 16px; color: var(--copper-deep); background: rgba(184,107,53,.10); font-size: 28px;
}
.horoscope-content strong { font-size: 14px; }
.horoscope-content p, .calendar-content p { margin: 7px 0 0; color: var(--muted); font-size: 11px; line-height: 1.55; }
.calendar-content { display: flex; align-items: center; gap: 16px; }
.calendar-content > strong {
    padding-right: 16px; border-right: 1px solid var(--line);
    color: var(--copper); font-size: 52px; line-height: 1; letter-spacing: -3px;
}
.calendar-content b { font-size: 14px; }

/* Sections shared */
.section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 28px; margin-bottom: 40px; }
.section-heading h2, .about-copy h2, .greeting-copy h2, .podcast-copy h2 {
    margin: 8px 0 0;
    font-family: var(--font-serif);
    font-size: clamp(30px, 3.2vw, 44px);
    line-height: 1.14;
    letter-spacing: -.02em;
    font-weight: 600;
}
.section-kicker {
    display: inline-flex; align-items: center;
    color: var(--copper); font-size: 11px; font-weight: 800; letter-spacing: 1.6px; text-transform: uppercase;
}
.category-tabs { display: flex; gap: 4px; padding: 4px; border-radius: 999px; background: rgba(11,17,22,.05); overflow-x: auto; }
.category-tabs button {
    flex: none; padding: 9px 14px; border: 0; border-radius: 999px;
    color: var(--muted); background: transparent; font-size: 11px; font-weight: 700; cursor: pointer;
}
.category-tabs button.active { color: white; background: var(--ink); }

/* News */
.date-strip {
    display: flex; gap: 8px; margin: -26px 0 30px; padding: 9px 0 6px;
    overflow-x: auto; scrollbar-width: thin;
}
.date-chip {
    position: relative; flex: none; display: grid; justify-items: center; gap: 2px;
    min-width: 74px; padding: 11px 12px 10px;
    border: 1px solid var(--line); border-radius: 14px; color: inherit; background: rgba(255,255,255,.72);
    cursor: pointer; transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.date-chip:hover { transform: translateY(-2px); border-color: rgba(184,107,53,.34); box-shadow: 0 12px 24px rgba(11,17,22,.07); }
.date-chip-label { color: var(--mist); font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.date-chip strong { font-size: 19px; line-height: 1.1; letter-spacing: -.5px; font-variant-numeric: tabular-nums; }
.date-chip-sub { color: var(--muted); font-size: 9px; font-weight: 600; }
.date-chip-count {
    position: absolute; top: -6px; right: -4px; min-width: 17px; padding: 0 4px;
    border-radius: 999px; color: white; background: var(--copper);
    font-size: 9px; font-style: normal; font-weight: 800; line-height: 17px; text-align: center;
}
.date-chip.is-active { border-color: transparent; color: white; background: var(--ink); }
.date-chip.is-active .date-chip-label, .date-chip.is-active .date-chip-sub { color: rgba(255,255,255,.62); }
.date-chip.is-active .date-chip-count { background: var(--copper); }
.news-empty { margin: 26px 0 0; padding: 30px; border: 1px dashed var(--line-strong); border-radius: var(--radius-lg); color: var(--muted); font-size: 13px; text-align: center; }
.section-empty { margin: 0; padding: 28px; border: 1px dashed var(--line-strong); border-radius: var(--radius-lg); color: var(--muted); font-size: 14px; text-align: center; width: 100%; grid-column: 1 / -1; }
.news-layout { display: grid; grid-template-columns: 1.3fr 1fr; gap: 42px; }
.story-image {
    display: block; height: 340px; padding: 18px;
    border-radius: var(--radius-lg);
    background: linear-gradient(0deg, rgba(7,16,24,.18), transparent), var(--image) center/cover;
}
.story-tag, .video-feature span, .video-side span {
    display: inline-block; padding: 8px 12px; border-radius: 999px;
    background: var(--copper); color: #fff; font-size: 11px; font-weight: 800; letter-spacing: .04em;
    line-height: 1.2;
}
.story-body { padding: 22px 0 8px; }
.story-meta { color: var(--mist); font-size: 11px; display: inline-block; margin-bottom: 2px; }
.story-body h3 { margin: 10px 0 12px; font-family: var(--font-serif); font-size: 28px; line-height: 1.28; letter-spacing: -.02em; font-weight: 600; }
.story-body p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.7; }
.engagement { display: flex; gap: 18px; margin-top: 16px; color: var(--mist); font-size: 11px; }
.news-list { display: grid; }
.news-row {
    display: grid; grid-template-columns: 140px 1fr; gap: 18px; align-items: center;
    padding: 0 0 18px; margin-bottom: 18px; border-bottom: 1px solid var(--line);
}
.news-thumb { height: 96px; border-radius: 12px; background: var(--image) center/cover; }
.news-category { color: var(--copper); font-size: 10px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.news-row h3 { margin: 7px 0 10px; font-size: 15px; line-height: 1.45; font-weight: 650; }
.news-row a:hover, .story-body h3 a:hover { color: var(--copper-deep); }
.news-item.filtered-out { display: none; }
.outline-button {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    width: max-content; margin: 36px auto 0; padding: 13px 20px;
    border: 1px solid var(--line-strong); border-radius: 999px; font-size: 12px; font-weight: 800;
}

/* World news */
.world-news-section { background: linear-gradient(180deg, transparent, rgba(11,17,22,.03) 30%, transparent); }
.world-news-meta {
    display: flex; flex-direction: column; align-items: flex-end; gap: 8px;
    color: var(--mist); font-size: 11px; font-weight: 600;
}
.world-news-meta a { display: inline-flex; align-items: center; gap: 6px; color: var(--ink); font-size: 12px; font-weight: 700; }
.world-news-meta a:hover { color: var(--copper-deep); }
.world-news-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.world-news-card {
    display: grid; grid-template-rows: 160px 1fr;
    overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg);
    background: rgba(255,255,255,.72); transition: transform .2s ease, border-color .2s ease;
}
a.world-news-card:hover { transform: translateY(-3px); border-color: rgba(184,107,53,.35); }
.world-news-thumb {
    background:
        linear-gradient(135deg, rgba(11,17,22,.08), rgba(184,107,53,.12)),
        var(--image, none) center/cover;
    background-color: var(--paper-deep);
}
.world-news-copy { display: grid; gap: 8px; padding: 18px 18px 20px; align-content: start; }
.world-news-source {
    color: var(--copper); font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
}
.world-news-copy h3 {
    margin: 0; font-family: var(--font-serif); font-size: 18px; line-height: 1.35; font-weight: 600;
    display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.world-news-copy p {
    margin: 0; color: var(--muted); font-size: 13px; line-height: 1.6;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.world-news-time { color: var(--mist); font-size: 11px; }
.world-news-card.is-skeleton .world-news-thumb,
.world-news-card.is-skeleton h3,
.world-news-card.is-skeleton p,
.world-news-card.is-skeleton .world-news-source {
    color: transparent; background: linear-gradient(90deg, rgba(11,17,22,.06), rgba(11,17,22,.02), rgba(11,17,22,.06));
    background-size: 200% 100%; animation: worldNewsPulse 1.2s ease infinite;
    border-radius: 4px;
}
.world-news-card.is-skeleton h3 { min-height: 54px; }
.world-news-card.is-skeleton p { min-height: 36px; }
.world-news-card.is-skeleton .world-news-source { width: 72px; min-height: 12px; }
@keyframes worldNewsPulse {
    0% { background-position: 100% 0; }
    100% { background-position: -100% 0; }
}
.world-news-empty {
    margin: 18px 0 0; padding: 28px; border: 1px dashed var(--line-strong);
    border-radius: var(--radius-lg); color: var(--muted); text-align: center; font-size: 14px;
}
.world-news-footnote { margin: 18px 0 0; color: var(--mist); font-size: 11px; }

@media (max-width: 1020px) {
    .world-news-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
    .world-news-meta { align-items: flex-start; }
    .world-news-grid { grid-template-columns: 1fr; }
    .world-news-card { grid-template-rows: 180px 1fr; }
}

/* Video */
.video-section { background: var(--ink); color: white; }
.light-heading .section-kicker { color: #e0b48a; }
.light-heading > a, .section-heading > a { display: flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700; }
.video-grid { display: grid; grid-template-columns: 1.55fr 1fr; gap: 16px; }
.video-feature, .video-side article {
    position: relative; overflow: hidden; border-radius: var(--radius-lg);
    background: linear-gradient(0deg, rgba(5,12,18,.88), rgba(5,12,18,0) 62%), var(--image) center/cover;
}
.video-feature { min-height: 460px; padding: 32px; display: flex; flex-direction: column; justify-content: space-between; }
.play-button, .mini-play { display: grid; place-items: center; border: 0; border-radius: 50%; background: white; color: var(--ink); cursor: pointer; }
.play-button { width: 64px; height: 64px; margin: auto; }
.play-button [data-lucide] { fill: currentColor; }
.video-feature h3 { margin: 12px 0 6px; font-family: var(--font-serif); font-size: 30px; font-weight: 600; }
.video-feature p { margin: 0; color: rgba(255,255,255,.6); font-size: 12px; }
.video-side { display: grid; grid-template-rows: 1fr 1fr; gap: 16px; }
.video-side article { min-height: 220px; padding: 22px; display: flex; flex-direction: column; justify-content: space-between; }
.mini-play { width: 38px; height: 38px; align-self: flex-end; }
.mini-play [data-lucide] { width: 15px; fill: currentColor; }
.video-side h3 { margin: 7px 0 0; font-size: 17px; }

/* About */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 72px; }
.about-visual img { width: 100%; height: 520px; object-fit: cover; border-radius: var(--radius-lg); }
.about-copy > p { margin: 22px 0 28px; color: var(--muted); font-size: 15px; line-height: 1.85; font-family: var(--font-serif); }
.about-stats { display: grid; grid-template-columns: repeat(3,1fr); margin-bottom: 30px; padding: 22px 0; border-block: 1px solid var(--line); }
.about-stats div { display: flex; flex-direction: column; }
.about-stats strong { color: var(--copper); font-size: 28px; letter-spacing: -.03em; }
.about-stats span { margin-top: 5px; color: var(--muted); font-size: 11px; }

/* Greeting */
.greeting-section { padding-top: 24px; }
.greeting-layout {
    display: grid; grid-template-columns: 1.2fr .8fr; gap: 48px; align-items: end;
    padding: 56px; border-radius: var(--radius-lg);
    background:
        linear-gradient(135deg, rgba(184,107,53,.08), transparent 40%),
        linear-gradient(180deg, #f7f8f9, #e9edf0);
    border: 1px solid var(--line);
}
.greeting-copy > p {
    margin: 22px 0 28px; color: var(--muted); font-size: 17px; line-height: 1.85;
    font-family: var(--font-serif); font-style: italic;
}
.greeting-copy > strong, .greeting-copy > span { display: block; }
.greeting-copy > strong { font-size: 14px; }
.greeting-copy > span { margin-top: 4px; color: var(--mist); font-size: 12px; }
.greeting-layout img {
    width: 100%; height: 420px; object-fit: cover; object-position: top;
    border-radius: var(--radius-lg); filter: saturate(.9);
}

/* Services */
.services-section { background: linear-gradient(180deg, transparent, rgba(11,17,22,.03) 20%, rgba(11,17,22,.04)); }
.centered-heading { justify-content: center; text-align: center; }
.centered-heading p { margin: 14px 0 0; color: var(--muted); font-size: 14px; }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.service-card {
    display: block; position: relative; min-height: 240px; padding: 26px;
    border-bottom: 1px solid var(--line); background: transparent; transition: .3s;
}
.service-card:hover { background: rgba(255,255,255,.55); transform: translateY(-3px); }
.service-number { position: absolute; top: 22px; right: 18px; color: var(--mist); font-size: 11px; font-weight: 700; font-variant-numeric: tabular-nums; }
.service-card > [data-lucide] { width: 30px; height: 30px; margin: 8px 0 28px; color: var(--copper); stroke-width: 1.5; }
.service-card h3 { margin: 0 0 10px; font-size: 17px; }
.service-card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.65; }
.service-card > a, .service-card > .service-arrow {
    position: absolute; right: 18px; bottom: 18px;
    display: grid; place-items: center; width: 34px; height: 34px;
    border-radius: 50%; background: rgba(11,17,22,.05); transition: .2s ease;
}
a.service-card:hover > .service-arrow { background: var(--copper); color: white; }
a.service-card:hover h3 { color: var(--copper-deep); }
a.featured-service:hover h3 { color: #e0b48a; }
.featured-service { background: var(--ink); color: white; border: 0; border-radius: var(--radius-lg); }
.featured-service:hover { background: var(--ink-soft); transform: translateY(-3px); }
.featured-service .service-number, .featured-service p { color: rgba(255,255,255,.58); }
.featured-service > [data-lucide] { color: #e0b48a; }
.featured-service > a, .featured-service > .service-arrow { background: white; color: var(--ink); }
a.featured-service:hover > .service-arrow { background: #e0b48a; color: var(--ink); }
.service-cta {
    display: flex; flex-direction: column; justify-content: center;
    background: linear-gradient(160deg, #162028, #0b1116); color: white; border: 0; border-radius: var(--radius-lg);
}
.service-cta > span { color: #e0b48a; font-size: 10px; font-weight: 800; letter-spacing: 1px; line-height: 1.5; }
.service-cta h3 { margin: 16px 0; font-family: var(--font-serif); font-size: 26px; font-weight: 600; }
.service-cta > a {
    position: static; display: inline-flex; justify-content: flex-start; gap: 8px;
    width: auto; height: auto; background: none; color: white; font-size: 12px; font-weight: 700;
}

.heading-description { max-width: 380px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.7; }
.org-chart { padding: 28px; margin-bottom: 34px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: rgba(255,255,255,.5); text-align: center; }
.org-head { display: inline-flex; flex-direction: column; gap: 4px; padding: 12px 28px; border-radius: 999px; background: var(--ink); color: white; }
.org-head strong { font-size: 12px; }
.org-head span { font-size: 9px; opacity: .65; }
.org-line { width: 1px; height: 22px; margin: auto; background: var(--line-strong); }
.org-departments { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.org-departments:before { content:""; position: absolute; top: -1px; left: 12.5%; right: 12.5%; height: 1px; background: var(--line-strong); }
.org-departments span {
    position: relative; padding: 12px; border: 1px solid var(--line); border-radius: 10px;
    background: white; font-size: 11px; font-weight: 700;
}
.org-departments span:before { content:""; position: absolute; width: 1px; height: 12px; top: -12px; left: 50%; background: var(--line-strong); }
.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.team-card { overflow: hidden; }
.team-card img { width: 100%; height: 300px; object-fit: cover; object-position: top; filter: none; transition: .45s; }
.team-card:hover img { transform: scale(1.03); }
.team-card div { position: relative; padding: 18px 4px 4px; }
.team-card h3 { margin: 0 0 5px; font-size: 15px; }
.team-card p { margin: 0; padding-right: 28px; color: var(--muted); font-size: 12px; line-height: 1.5; }
.team-card a { position: absolute; right: 0; top: 18px; color: var(--copper); }

/* Podcast */
.podcast-section { padding-top: 28px; }
.podcast-card {
    display: grid; grid-template-columns: 42% 58%; min-height: 460px; overflow: hidden;
    border-radius: var(--radius-lg); background: var(--ink); color: white;
}
.podcast-art {
    position: relative; display: grid; place-items: center; overflow: hidden;
    background:
        radial-gradient(circle at 70% 28%, rgba(184,107,53,.55), transparent 38%),
        linear-gradient(145deg, #1a242e, #071018 72%);
}
.podcast-art:after {
    content:""; position:absolute; width:320px; height:320px;
    border:1px solid rgba(255,255,255,.12); border-radius:50%;
    box-shadow:0 0 0 44px rgba(255,255,255,.03),0 0 0 88px rgba(255,255,255,.02);
}
.podcast-art > span { position: relative; z-index: 2; font-size: 36px; font-weight: 300; letter-spacing: 8px; text-align: center; }
.podcast-art b { font-weight: 800; color: #e0b48a; }
.podcast-archive-toggle {
    position: absolute; z-index: 3; left: 50%; bottom: 28px;
    display: inline-flex; align-items: center; gap: 10px;
    transform: translateX(-50%);
    height: 44px; padding: 0 18px;
    border: 1px solid rgba(255,255,255,.28); border-radius: 999px;
    background: rgba(255,255,255,.08); color: white;
    font-size: 12px; font-weight: 700; cursor: pointer;
    backdrop-filter: blur(8px); transition: background .2s, border-color .2s, color .2s;
}
.podcast-archive-toggle:hover,
.podcast-archive-toggle[aria-expanded="true"] {
    background: white; color: var(--ink); border-color: white;
}
.podcast-archive-toggle [data-lucide] { width: 16px; height: 16px; }
.podcast-archive {
    margin-top: 18px; padding: 28px;
    border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius-lg);
    background: #0f171e; color: white;
}
.podcast-archive[hidden] { display: none; }
.podcast-archive-heading { margin-bottom: 18px; }
.podcast-archive-heading .section-kicker { color: #e0b48a; }
.podcast-archive-heading h3 {
    margin: 8px 0 0; font-family: var(--font-serif); font-size: 24px; font-weight: 600; letter-spacing: -.02em;
}
.podcast-archive-list { display: grid; gap: 10px; }
.podcast-archive-item {
    display: grid; gap: 6px; width: 100%; padding: 16px 18px;
    border: 1px solid rgba(255,255,255,.08); border-radius: 14px;
    background: rgba(255,255,255,.03); color: inherit; text-align: left; cursor: pointer;
    transition: border-color .2s, background .2s, transform .2s;
}
.podcast-archive-item:hover,
.podcast-archive-item.is-active {
    border-color: rgba(224,180,138,.45); background: rgba(184,107,53,.12); transform: translateY(-1px);
}
.podcast-archive-ep {
    color: #e0b48a; font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
}
.podcast-archive-item strong { font-size: 15px; line-height: 1.4; }
.podcast-archive-meta { color: rgba(255,255,255,.5); font-size: 12px; }
.podcast-archive-empty { margin: 0; color: rgba(255,255,255,.55); font-size: 14px; }
.sound-wave { position: absolute; z-index: 2; bottom: 96px; display: flex; align-items: center; gap: 5px; height: 34px; }
.sound-wave i { width: 3px; height: 13px; border-radius: 5px; background: #e0b48a; animation: sound 1.1s ease-in-out infinite alternate; }
.sound-wave i:nth-child(2n){animation-delay:.2s;height:25px}
.sound-wave i:nth-child(3n){animation-delay:.4s;height:35px}
@keyframes sound { to { height: 5px; opacity:.4; } }
.podcast-copy { padding: 64px; }
.podcast-copy .section-kicker { color: #e0b48a; }
.podcast-copy > p { max-width: 520px; margin: 20px 0 28px; color: rgba(255,255,255,.64); font-size: 14px; line-height: 1.75; }
.episode-player { display: grid; grid-template-columns: 52px 1fr; align-items: center; gap: 16px; }
.audio-toggle {
    display: grid; place-items: center; width: 52px; height: 52px;
    border: 0; border-radius: 50%; background: white; color: var(--ink); cursor: pointer; transition: transform .18s ease, opacity .18s;
}
.audio-toggle:hover { transform: scale(1.04); }
.audio-toggle:disabled { opacity: .45; cursor: not-allowed; transform: none; }
.audio-toggle [data-lucide] { width: 20px; fill: currentColor; }
.audio-main { min-width: 0; display: grid; gap: 10px; }
.audio-track {
    position: relative; height: 6px; border-radius: 999px; background: rgba(255,255,255,.18);
    cursor: pointer; touch-action: none;
}
.audio-track span {
    display: block; width: 0; height: 100%; border-radius: inherit; background: #e0b48a;
    pointer-events: none; transition: width .05s linear;
}
.audio-track:after {
    content:""; position: absolute; top: 50%; left: var(--thumb, 0%); width: 12px; height: 12px;
    border-radius: 50%; background: white; box-shadow: 0 2px 8px rgba(0,0,0,.28);
    transform: translate(-50%, -50%); opacity: 0; transition: opacity .15s;
}
.audio-track:hover:after, .audio-track:focus-visible:after { opacity: 1; }
.audio-tools { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 18px; }
.audio-time { color: rgba(255,255,255,.62); font-size: 11px; font-variant-numeric: tabular-nums; letter-spacing: .02em; }
.audio-volume { display: inline-flex; align-items: center; gap: 8px; min-width: 0; }
.audio-icon-btn, .audio-speed-btn {
    display: grid; place-items: center; width: 32px; height: 32px; padding: 0;
    border: 1px solid rgba(255,255,255,.18); border-radius: 50%;
    background: rgba(255,255,255,.06); color: white; cursor: pointer;
}
.audio-icon-btn [data-lucide] { width: 15px; }
.audio-volume input[type="range"] {
    width: 88px; height: 4px; appearance: none; border-radius: 999px;
    background: rgba(255,255,255,.2); outline: none; cursor: pointer;
}
.audio-volume input[type="range"]::-webkit-slider-thumb {
    appearance: none; width: 12px; height: 12px; border-radius: 50%; background: #e0b48a; cursor: pointer;
}
.audio-volume input[type="range"]::-moz-range-thumb {
    width: 12px; height: 12px; border: 0; border-radius: 50%; background: #e0b48a; cursor: pointer;
}
.audio-speed { position: relative; }
.audio-speed-btn {
    width: auto; min-width: 44px; padding: 0 10px; border-radius: 999px;
    font-size: 11px; font-weight: 800; letter-spacing: .04em;
}
.audio-speed-btn:hover, .audio-icon-btn:hover { border-color: rgba(224,180,138,.55); color: #e0b48a; }
.audio-speed-menu {
    position: absolute; right: 0; bottom: calc(100% + 8px); z-index: 5;
    display: grid; min-width: 84px; padding: 6px;
    border: 1px solid rgba(255,255,255,.12); border-radius: 12px;
    background: #151d25; box-shadow: 0 16px 40px rgba(0,0,0,.35);
}
.audio-speed-menu[hidden] { display: none; }
.audio-speed-menu button {
    padding: 8px 10px; border: 0; border-radius: 8px; background: transparent;
    color: rgba(255,255,255,.78); font-size: 12px; font-weight: 700; text-align: left; cursor: pointer;
}
.audio-speed-menu button:hover, .audio-speed-menu button.is-active { background: rgba(184,107,53,.22); color: #e0b48a; }
.audio-unavailable { margin: 14px 0 0; color: rgba(255,255,255,.5); font-size: 12px; }
.podcast-empty .podcast-copy > p { margin-bottom: 0; }
.podcast-art .sound-wave i { animation-play-state: paused; }
.podcast-art.is-playing .sound-wave i { animation-play-state: running; }
.podcast-links { display: flex; gap: 24px; margin-top: 26px; }
.podcast-links a { display: flex; align-items: center; gap: 7px; color: rgba(255,255,255,.75); font-size: 11px; }
.podcast-links [data-lucide] { width: 15px; color: #e0b48a; }

/* Advice */
.advice-section { padding-top: 28px; }
.advice-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.advice-grid article {
    min-height: 210px; padding: 28px 8px; display: flex; flex-direction: column;
    border-top: 1px solid var(--line-strong); transition: .25s;
}
.advice-grid article:hover { border-top-color: var(--copper); transform: translateY(-2px); }
.advice-grid span { color: var(--copper); font-size: 10px; font-weight: 800; letter-spacing: .7px; }
.advice-grid h3 { margin: 16px 0; font-family: var(--font-serif); font-size: 22px; line-height: 1.4; font-weight: 600; }
.advice-grid a { margin-top: auto; color: var(--muted); font-size: 12px; font-weight: 700; }

/* Contact + footer */
.contact-section {
    padding: 96px 0; color: white;
    background:
        radial-gradient(700px 280px at 80% 20%, rgba(184,107,53,.35), transparent 55%),
        linear-gradient(135deg, #162028, #0b1116 60%);
}
.contact-inner { display: grid; grid-template-columns: 1fr minmax(0, 520px); align-items: start; gap: 56px; }
.contact-inner span { color: rgba(255,255,255,.55); font-size: 11px; font-weight: 800; letter-spacing: 1.4px; }
.contact-inner h2 {
    margin: 12px 0 0; font-family: var(--font-serif);
    font-size: clamp(38px,4.4vw,58px); line-height: 1.08; letter-spacing: -.03em; font-weight: 600;
}
.contact-intro > p { margin: 20px 0 0; max-width: 420px; color: rgba(255,255,255,.6); font-size: 14px; line-height: 1.8; }
.contact-points { display: grid; gap: 14px; margin: 30px 0 0; padding: 26px 0 0; border-top: 1px solid rgba(255,255,255,.14); list-style: none; }
.contact-points li { display: flex; align-items: center; gap: 11px; color: rgba(255,255,255,.8); font-size: 13px; }
.contact-points [data-lucide] { width: 16px; color: #e0b48a; flex: none; }
.contact-points a:hover { color: #e0b48a; }

.contact-form {
    display: grid; gap: 14px; padding: 30px; border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.05);
    backdrop-filter: blur(6px);
}
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form label { display: grid; gap: 7px; }
.contact-form label > span { color: rgba(255,255,255,.62); font-size: 11px; font-weight: 700; letter-spacing: .04em; }
.contact-form label b { color: #e0b48a; }
.contact-form input, .contact-form select, .contact-form textarea {
    width: 100%; padding: 12px 14px; border-radius: 11px; color: white; font: inherit; font-size: 14px;
    border: 1px solid rgba(255,255,255,.16); background: rgba(8,14,19,.5); transition: .18s ease;
}
.contact-form textarea { resize: vertical; min-height: 96px; line-height: 1.6; }
.contact-form select option { color: var(--ink); }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(255,255,255,.35); }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
    outline: none; border-color: rgba(224,180,138,.7); background: rgba(8,14,19,.75);
}
.form-trap { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.form-submit { display: flex; align-items: center; gap: 16px; margin-top: 4px; }
.form-submit button {
    display: inline-flex; align-items: center; gap: 9px; padding: 14px 24px; border: 0; border-radius: 999px;
    background: var(--copper); color: white; font-size: 12px; font-weight: 800; cursor: pointer; transition: .18s ease;
}
.form-submit button:hover { background: #e0b48a; color: var(--ink); }
.form-submit button:disabled { opacity: .6; cursor: progress; }
.form-submit button [data-lucide] { width: 15px; }
.form-submit small { color: rgba(255,255,255,.45); font-size: 11px; }
.form-note, .form-status { margin: 0; padding: 12px 15px; border-radius: 11px; font-size: 12.5px; line-height: 1.6; }
.form-note.is-ok, .form-status.is-ok { background: rgba(60,160,110,.16); color: #9fe0c0; }
.form-note.is-error, .form-status.is-error { background: rgba(200,80,70,.16); color: #f0b3ac; }
.form-status:empty { display: none; }

footer { padding: 72px 0 28px; background: #071018; color: white; }
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(3,1fr); gap: 48px; }
.footer-brand .brand-logo { width: 64px; height: 64px; background: #fff; }
.footer-brand .brand-text { color: white; max-width: 220px; }
.footer-brand small { color: rgba(255,255,255,.5); }
.footer-grid > div > p { color: rgba(255,255,255,.5); font-size: 12px; line-height: 1.8; }
.footer-grid > div:first-child > p { margin-top: 20px; }
.footer-grid h3 { margin: 0 0 16px; font-size: 12px; letter-spacing: .04em; text-transform: uppercase; }
.footer-grid > div:not(:first-child) a { display: block; margin: 11px 0; color: rgba(255,255,255,.52); font-size: 12px; }
.footer-grid a:hover { color: #e0b48a !important; }
.footer-bottom {
    display: flex; justify-content: space-between; margin-top: 44px; padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.35); font-size: 11px;
}
.footer-bottom div { display: flex; gap: 20px; }

/* Modal + back to top */
.dashboard-modal {
    position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 24px;
    opacity: 0; visibility: hidden; transition: opacity .25s, visibility .25s;
}
.dashboard-modal.open { opacity: 1; visibility: visible; }
.modal-backdrop {
    position: absolute; inset: 0; width: 100%; height: 100%; border: 0;
    background: rgba(5,12,18,.72); backdrop-filter: blur(6px); cursor: pointer;
}
.dashboard-dialog {
    position: relative; width: min(850px, 100%); max-height: min(760px, calc(100vh - 50px));
    overflow: auto; border-radius: 20px; background: white; box-shadow: 0 30px 90px rgba(0,0,0,.3);
    transform: translateY(14px) scale(.98); transition: transform .25s;
}
.dashboard-modal.open .dashboard-dialog { transform: none; }
.dialog-header {
    position: sticky; top: 0; z-index: 3; display: flex; align-items: flex-start; justify-content: space-between;
    padding: 28px 30px 20px; border-bottom: 1px solid var(--line); background: rgba(255,255,255,.95); backdrop-filter: blur(10px);
}
.dialog-header h2 { margin: 5px 0 0; font-family: var(--font-serif); font-size: 28px; letter-spacing: -.02em; font-weight: 600; }
.modal-close {
    display: grid; place-items: center; width: 40px; height: 40px;
    border: 1px solid var(--line); border-radius: 50%; background: white; cursor: pointer;
}
.dashboard-modal-content { padding: 26px 30px 30px; }
.weekly-current {
    display: grid; grid-template-columns: 1fr auto; align-items: center; padding: 24px; margin-bottom: 18px;
    border-radius: 16px; color: white; background: linear-gradient(135deg, #162028, var(--copper-deep));
}
.weekly-current > div { display: flex; flex-direction: column; }
.weekly-current strong { font-size: 44px; letter-spacing: -2px; }
.weekly-current span { color: rgba(255,255,255,.72); font-size: 12px; }
.weekly-current > [data-lucide] { width: 64px; height: 64px; color: #f0d2b4; stroke-width: 1.5; }
.weather-details { display: flex; gap: 18px; margin-top: 16px; }
.weather-details span { display: flex; align-items: center; gap: 5px; color: rgba(255,255,255,.8); font-size: 10px; }
.weather-details [data-lucide] { width: 14px; height: 14px; }
.weekly-grid { display: grid; grid-template-columns: repeat(7,1fr); gap: 8px; }
.forecast-day { padding: 16px 8px; border: 1px solid var(--line); border-radius: 12px; text-align: center; }
.forecast-day > span { display: block; color: var(--muted); font-size: 9px; }
.forecast-day > b { display: block; margin-top: 4px; font-size: 11px; }
.forecast-day > [data-lucide] { width: 28px; height: 28px; margin: 14px auto; color: var(--copper); }
.forecast-temperatures { display: flex; justify-content: center; gap: 5px; font-size: 11px; }
.forecast-temperatures strong:last-child { color: var(--mist); font-weight: 500; }
.forecast-rain { display: block; margin-top: 8px !important; color: var(--copper) !important; }
.all-rates { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.modal-link {
    display: inline-flex; align-items: center; gap: 7px; margin-top: 18px; padding: 12px 18px;
    border-radius: 999px; background: var(--ink); color: white; font-size: 12px; font-weight: 800;
}
.modal-link:hover { background: var(--copper-deep); }
.modal-link [data-lucide] { width: 15px; }
.rate-detail {
    display: grid; grid-template-columns: 34px 1fr; align-items: center; gap: 12px;
    padding: 16px; border: 1px solid var(--line); border-radius: 14px;
    background: linear-gradient(180deg, rgba(255,255,255,.85), rgba(247,248,249,.6));
    font-variant-numeric: tabular-nums;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.rate-detail:hover {
    transform: translateY(-2px); border-color: rgba(184,107,53,.32);
    box-shadow: 0 14px 28px rgba(11,17,22,.08);
}
.rate-detail .currency { width: 34px; height: 34px; border-radius: 11px; font-size: 15px; }
.rate-detail div { display: flex; flex-direction: column; }
.rate-detail b { font-size: 12px; letter-spacing: .06em; }
.rate-detail span:not(.currency) { color: var(--mist); font-size: 9px; }
.rate-detail strong {
    grid-column: 1 / -1; margin-top: 12px; padding-top: 11px;
    border-top: 1px dashed var(--line); font-size: 21px; letter-spacing: -.7px;
}
.rate-detail strong i { margin-left: 3px; color: var(--copper-deep); font-size: 11px; font-style: normal; }
.dialog-footer {
    display: flex; justify-content: space-between; padding: 14px 30px;
    border-top: 1px solid var(--line); color: var(--mist); background: #fafbfc; font-size: 10px;
}
.back-to-top {
    position: fixed; z-index: 30; right: 24px; bottom: 24px;
    display: grid; place-items: center; width: 44px; height: 44px;
    opacity: 0; visibility: hidden; transform: translateY(8px);
    border: 0; border-radius: 50%; color: white; background: var(--ink);
    box-shadow: 0 10px 28px rgba(11,17,22,.28); cursor: pointer; transition: .25s;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: none; }

/* Article / video detail */
.content-header {
    position: sticky; top: 0; z-index: 50; border-bottom: 1px solid var(--line);
    background: rgba(247,248,249,.94); backdrop-filter: blur(14px);
}
.content-nav { height: 78px; display: flex; align-items: center; gap: 40px; }
.content-nav nav { display: flex; gap: 26px; margin-left: auto; font-size: 12px; font-weight: 700; }
.content-nav nav a:hover { color: var(--copper); }
.back-home {
    display: inline-flex; align-items: center; gap: 7px; padding: 11px 15px;
    border: 1px solid var(--line); border-radius: 999px; font-size: 11px; font-weight: 800; background: white;
}
.nav-search {
    display: grid; place-items: center; width: 42px; height: 42px; flex: none;
    border: 1px solid var(--line); border-radius: 50%; background: white; transition: .18s ease;
}
.nav-search:hover { border-color: var(--ink); color: var(--copper); }
.nav-search [data-lucide] { width: 17px; }
.dark-content-header .nav-search { border-color: rgba(255,255,255,.18); background: transparent; color: white; }
.back-home [data-lucide] { width: 14px; }
.article-hero { max-width: 900px; padding-top: 72px; text-align: center; }
.article-category {
    display: inline-flex; padding: 8px 12px; border-radius: 999px;
    color: var(--copper-deep); background: rgba(184,107,53,.10); font-size: 10px; font-weight: 800; text-transform: uppercase;
}
.article-hero h1 {
    margin: 20px auto; font-family: var(--font-serif);
    font-size: clamp(36px,5vw,64px); line-height: 1.1; letter-spacing: -.03em; font-weight: 600;
}
.article-hero > p { max-width: 720px; margin: 0 auto; color: var(--muted); font-size: 16px; line-height: 1.75; }
.article-meta { display: flex; justify-content: center; flex-wrap: wrap; gap: 20px; margin-top: 24px; color: var(--mist); font-size: 11px; }
.article-meta span { display: flex; align-items: center; gap: 6px; }
.article-meta [data-lucide] { width: 14px; }
.article-cover { height: min(600px,58vw); margin-top: 44px; object-fit: cover; border-radius: var(--radius-lg); }
.article-layout {
    display: grid; grid-template-columns: minmax(0,720px) 170px; justify-content: center;
    gap: 64px; padding-top: 56px; padding-bottom: 90px;
}
.article-body { font-family: var(--font-serif); font-size: 17px; line-height: 1.9; }
.article-body p { margin: 0 0 24px; }
.article-body h2 { margin: 42px 0 16px; font-size: 30px; letter-spacing: -.02em; }
.article-body h3 { margin: 32px 0 14px; font-size: 22px; }
.article-body blockquote {
    margin: 34px 0; padding: 22px 26px; border-left: 3px solid var(--copper);
    background: rgba(184,107,53,.06); font-size: 20px; font-weight: 600; font-style: italic;
}
.article-body a { color: var(--copper-deep); text-decoration: underline; }
.article-share { position: sticky; top: 110px; align-self: start; display: grid; gap: 9px; }
.article-share > span { margin-bottom: 5px; color: var(--mist); font-size: 10px; font-weight: 800; text-transform: uppercase; }
.article-share a, .article-share button {
    padding: 10px 12px; border: 1px solid var(--line); border-radius: 8px; background: white;
    font-size: 10px; text-align: left; cursor: pointer;
}

/* Article engagement — mood reactions and guest comments */
.article-engagement { display: grid; gap: 20px; width: min(954px, calc(100% - 48px)); padding-bottom: 90px; }
.article-engagement > * { width: 100%; max-width: 720px; }
.reaction-card, .comments-card {
    padding: 26px 28px; border: 1px solid var(--line); border-radius: var(--radius-lg);
    background: rgba(255,255,255,.74); backdrop-filter: blur(8px); scroll-margin-top: 100px;
}
.reaction-card h2, .comments-head h2 {
    margin: 0; font-family: var(--font-serif); font-size: 22px; letter-spacing: -.01em; font-weight: 600;
}
.reaction-hint { margin: 8px 0 20px; color: var(--muted); font-size: 12px; }
.reaction-options { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; }
.reaction {
    display: grid; justify-items: center; gap: 7px; padding: 14px 8px 12px;
    border: 1px solid var(--line); border-radius: 14px; background: white; cursor: pointer;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.reaction:hover { transform: translateY(-3px); border-color: rgba(184,107,53,.34); box-shadow: 0 14px 26px rgba(11,17,22,.08); }
.reaction.is-active { border-color: var(--copper); background: rgba(184,107,53,.10); }
.reaction-emoji { font-size: 26px; line-height: 1; filter: grayscale(.4); transition: filter .2s ease, transform .2s ease; }
.reaction:hover .reaction-emoji, .reaction.is-active .reaction-emoji { filter: none; transform: scale(1.12); }
.reaction-label { color: var(--muted); font-size: 10px; font-weight: 700; }
.reaction.is-active .reaction-label { color: var(--copper-deep); }
.reaction-track { width: 100%; height: 4px; overflow: hidden; border-radius: 999px; background: rgba(11,17,22,.08); }
.reaction-track i { display: block; height: 100%; border-radius: 999px; background: var(--copper); transition: width .4s ease; }
.reaction-count { font-size: 11px; font-weight: 800; font-variant-numeric: tabular-nums; }
.reaction-total { margin: 16px 0 0; color: var(--mist); font-size: 11px; }
.comments-head { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; margin-bottom: 18px; }
.comments-head h2 span { color: var(--copper); }
.comment-sorts { display: flex; gap: 4px; padding: 4px; border-radius: 999px; background: rgba(11,17,22,.05); }
.comment-sorts a { padding: 7px 13px; border-radius: 999px; color: var(--muted); font-size: 11px; font-weight: 700; }
.comment-sorts a:hover { color: var(--ink); }
.comment-sorts a.is-active { color: white; background: var(--ink); }
.comment-form {
    display: grid; gap: 10px; padding: 18px;
    border: 1px solid var(--line); border-radius: 14px; background: rgba(247,248,249,.85);
}
.comment-trap { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.comment-name, .comment-form textarea {
    padding: 12px 14px; border: 1px solid var(--line); border-radius: 10px;
    color: inherit; background: white; font-family: inherit; font-size: 13px; resize: vertical;
}
.comment-name:focus-visible, .comment-form textarea:focus-visible {
    border-color: var(--copper); outline: 2px solid rgba(184,107,53,.35); outline-offset: 1px;
}
.comment-form-foot { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; }
.comment-form-foot small { color: var(--mist); font-size: 10px; }
.comment-form .dark-button { padding: 12px 18px; font-size: 11px; }
.comment-message { margin: 0; font-size: 11px; font-weight: 700; }
.comment-message.ok { color: #2f8f63; }
.comment-message.error { color: #c44b4b; }
.comment-list { display: grid; margin: 8px 0 0; padding: 0; list-style: none; }
.comment { display: grid; grid-template-columns: 38px 1fr; gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.comment:last-child { border-bottom: 0; padding-bottom: 4px; }
.comment-avatar {
    display: grid; place-items: center; width: 38px; height: 38px; border-radius: 12px;
    color: var(--copper-deep); background: rgba(184,107,53,.12); font-size: 15px; font-weight: 800;
}
.comment-meta { display: flex; align-items: center; gap: 10px; }
.comment-meta b { font-size: 13px; }
.comment-meta span { color: var(--mist); font-size: 10px; }
.comment-main p { margin: 7px 0 0; font-size: 14px; line-height: 1.7; overflow-wrap: anywhere; }
.comment-actions { display: flex; gap: 8px; margin-top: 12px; }
.comment-vote {
    display: inline-flex; align-items: center; gap: 6px; padding: 6px 11px;
    border: 1px solid var(--line); border-radius: 999px; color: var(--muted); background: white;
    font-size: 11px; font-weight: 700; font-variant-numeric: tabular-nums; cursor: pointer; transition: .2s;
}
.comment-vote [data-lucide] { width: 13px; height: 13px; }
.comment-vote:hover { border-color: var(--line-strong); color: var(--ink); }
.comment-vote.is-active { border-color: transparent; color: white; }
.comment-vote[data-vote="1"].is-active { background: #2f8f63; }
.comment-vote[data-vote="-1"].is-active { background: #c44b4b; }
.comment-empty { padding: 26px 4px; color: var(--mist); font-size: 12px; text-align: center; }

.related-section { padding: 70px 0 90px; background: rgba(11,17,22,.03); }
.related-section h2 { margin: 8px 0 28px; font-family: var(--font-serif); font-size: 32px; font-weight: 600; }
.related-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.related-grid a { padding: 8px; }
.related-grid img { width: 100%; height: 170px; object-fit: cover; border-radius: 12px; }
.related-grid h3 { margin: 14px 0 10px; font-size: 16px; line-height: 1.45; }
.related-grid span { color: var(--mist); font-size: 11px; }
.content-footer { padding: 26px 0; color: rgba(255,255,255,.5); background: #071018; font-size: 11px; }
.content-footer .container { display: flex; justify-content: space-between; }
.empty-state { min-height: 65vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.empty-state > span { color: var(--copper); font-size: 70px; font-weight: 800; }
.empty-state h1 { margin: 5px 0 10px; font-family: var(--font-serif); font-size: 36px; font-weight: 600; }
.empty-state p { color: var(--muted); }
.empty-state .dark-button { margin-top: 16px; padding: 14px 18px; }
.dark-content-header { border-color: rgba(255,255,255,.1); color: white; background: rgba(7,16,24,.96); }
.dark-content-header .back-home { border-color: rgba(255,255,255,.18); background: transparent; color: white; }
.video-detail-main { min-height: 80vh; padding: 64px 0 90px; color: white; background: #071018; }
.video-detail { max-width: 1050px; }
.video-player {
    position: relative; aspect-ratio: 16/9; overflow: hidden; border-radius: var(--radius-lg);
    background: #020712; box-shadow: 0 20px 70px rgba(0,0,0,.35);
}
.video-player iframe, .video-player video { width: 100%; height: 100%; border: 0; object-fit: contain; }
.video-unavailable { height: 100%; display: grid; place-items: center; align-content: center; gap: 12px; color: rgba(255,255,255,.6); }
.video-unavailable [data-lucide] { width: 50px; height: 50px; }
.video-detail-copy { max-width: 800px; padding-top: 34px; }
.video-detail-copy h1 { margin: 14px 0 0; font-family: var(--font-serif); font-size: clamp(30px,4vw,48px); letter-spacing: -.02em; font-weight: 600; }
.video-detail-copy .article-meta { justify-content: flex-start; }
.video-detail-copy > p { color: rgba(255,255,255,.68); font-size: 15px; line-height: 1.8; }

@media (max-width: 1020px) {
    .desktop-nav { display: none; }
    .nav-wrap { gap: 16px; }
    .nav-actions { margin-left: auto; }
    .live-chip { display: none; }
    .menu-toggle { display: grid; }
    .mobile-menu {
        position: fixed; inset: var(--header-h) 0 0; z-index: 45; padding: 28px 24px;
        flex-direction: column; gap: 0; background: var(--surface); color: var(--ink);
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu a { padding: 16px 0; border-bottom: 1px solid var(--line); font-size: 18px; font-weight: 700; }
    .utility-grid { grid-template-columns: 1fr 1fr; }
    .services-grid { grid-template-columns: repeat(2,1fr); }
    .about-grid { gap: 40px; }
    .team-card img { height: 250px; }
}

@media (max-width: 760px) {
    .container { width: min(100% - 28px, 600px); }
    .section { padding: 72px 0; }
    .contact-button { display: none; }
    .nav-wrap { height: 72px; }
    .brand { font-size: 13px; gap: 9px; }
    .brand-logo { width: 42px; height: 42px; }
    .brand-text { max-width: 140px; }
    .hero-stage { padding: calc(72px + 36px) 0 72px; margin-left: 14px; width: calc(100% - 28px); }
    .hero-brand { font-size: 28px; }
    .hero h1 { font-size: 34px; max-width: none; }
    .hero-lead { font-size: 14px; }
    .spotlight-slider { min-height: 520px; }
    .spotlight-slide { padding: 28px 22px 40px; background-image: linear-gradient(0deg,rgba(7,16,24,.96),rgba(7,16,24,.25) 70%),var(--spotlight-image); }
    .spotlight-copy { width: 100%; }
    .spotlight-copy h3 { font-size: 28px; }
    .section-heading { align-items: flex-start; flex-direction: column; margin-bottom: 28px; }
    .utility-grid, .news-layout, .video-grid, .about-grid, .podcast-card, .greeting-layout { grid-template-columns: 1fr; }
    .ticker-time { display: none; }
    .category-tabs { width: 100%; }
    .story-image { height: 250px; }
    .story-body h3 { font-size: 24px; }
    .news-row { grid-template-columns: 110px 1fr; }
    .news-thumb { height: 82px; }
    .video-feature { min-height: 360px; }
    .video-side { grid-template-columns: 1fr 1fr; grid-template-rows: none; }
    .video-side article { min-height: 200px; }
    .about-visual img { height: 380px; }
    .greeting-layout { padding: 32px 24px; }
    .greeting-layout img { height: 320px; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .org-departments { grid-template-columns: 1fr 1fr; }
    .org-departments:before, .org-departments span:before { display: none; }
    .team-grid { grid-template-columns: 1fr 1fr; }
    .podcast-art { min-height: 300px; }
    .podcast-copy { padding: 36px 24px; }
    .podcast-archive { padding: 22px; }
    .podcast-archive-toggle { bottom: 20px; }
    .advice-grid { grid-template-columns: 1fr; }
    .contact-inner { grid-template-columns: 1fr; gap: 34px; }
    .contact-form { padding: 24px 20px; }
    .contact-form .form-row { grid-template-columns: 1fr; }
    .form-submit { align-items: flex-start; flex-direction: column; gap: 10px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .weekly-grid { grid-template-columns: repeat(4,1fr); }
    .all-rates { grid-template-columns: 1fr 1fr; }
    .content-nav { height: 68px; }
    .content-nav nav { display: none; }
    .content-nav .back-home { margin-left: auto; font-size: 0; padding: 10px; }
    .article-hero { padding-top: 48px; }
    .article-hero h1 { font-size: 36px; }
    .article-cover { height: 55vw; margin-top: 32px; }
    .article-layout { grid-template-columns: 1fr; gap: 28px; padding-top: 36px; }
    .article-share { position: static; grid-template-columns: 1fr 1fr; }
    .article-share > span { grid-column: 1/-1; }
    .related-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .icon-button { display: none; }
    .lang-toggle { padding: 0 10px; }
    .lang-toggle span, .lang-caret { display: none; }
    .hero h1 { font-size: 30px; }
    .utility-grid, .services-grid { grid-template-columns: 1fr; }
    .video-side { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    .team-card img { height: 340px; }
    .episode-player { grid-template-columns: 48px 1fr; gap: 12px; }
    .audio-volume input[type="range"] { width: 64px; }
    .podcast-links { flex-direction: column; gap: 12px; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 14px; }
    .dashboard-modal { padding: 10px; }
    .dashboard-dialog { max-height: calc(100vh - 20px); border-radius: 16px; }
    .dialog-header, .dashboard-modal-content { padding: 20px 16px; }
    .weekly-grid { grid-template-columns: repeat(2,1fr); }
    .all-rates { grid-template-columns: 1fr; }
    .reaction-card, .comments-card { padding: 20px 16px; }
    .reaction-options { gap: 6px; }
    .reaction { padding: 11px 3px 10px; border-radius: 12px; }
    .reaction-emoji { font-size: 22px; }
    .reaction-label { font-size: 9px; }
    .comment-form-foot { flex-direction: column; align-items: stretch; }
}

/* Search results page */
.search-hero { padding: 56px 0 30px; }
.search-hero h1 { margin: 12px 0 26px; font-family: var(--font-serif); font-size: clamp(32px,4vw,46px); font-weight: 600; letter-spacing: -.02em; }
.search-form {
    display: flex; align-items: center; gap: 12px; max-width: 760px; padding: 8px 8px 8px 20px;
    border: 1px solid var(--line-strong); border-radius: 999px; background: white; box-shadow: var(--shadow);
}
.search-form [data-lucide] { width: 19px; color: var(--muted); flex: none; }
.search-form input { flex: 1; min-width: 0; height: 46px; border: 0; outline: 0; background: transparent; font: inherit; font-size: 16px; }
.search-form button {
    flex: none; padding: 13px 26px; border: 0; border-radius: 999px; background: var(--ink); color: white;
    font-size: 12px; font-weight: 800; letter-spacing: .05em; cursor: pointer; transition: .18s ease;
}
.search-form button:hover { background: var(--copper); }
.search-hint { margin: 16px 0 0; color: var(--muted); font-size: 13.5px; }

.search-results { padding: 10px 0 90px; }
.search-filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 26px; }
.search-chip {
    display: inline-flex; align-items: center; gap: 7px; padding: 9px 16px; border: 1px solid var(--line-strong);
    border-radius: 999px; background: white; font-size: 12.5px; font-weight: 650; transition: .18s ease;
}
.search-chip b { color: var(--muted); font-weight: 700; }
.search-chip:hover { border-color: var(--ink); }
.search-chip.is-active { border-color: var(--ink); background: var(--ink); color: white; }
.search-chip.is-active b { color: rgba(255,255,255,.6); }

.search-list { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.search-result {
    display: grid; grid-template-columns: 116px 1fr auto; align-items: center; gap: 20px; padding: 18px;
    border: 1px solid var(--line); border-radius: var(--radius-lg); background: white; transition: .2s ease;
}
.search-result:hover { transform: translateY(-2px); border-color: var(--line-strong); box-shadow: 0 18px 40px rgba(11,17,22,.08); }
.result-thumb { height: 82px; border-radius: 12px; background: var(--image) center/cover no-repeat var(--paper-deep); }
.result-thumb.is-empty { display: grid; place-items: center; background: var(--paper); color: var(--mist); }
.result-thumb.is-empty [data-lucide] { width: 24px; }
.result-copy { min-width: 0; display: grid; gap: 7px; }
.result-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; color: var(--muted); font-size: 11px; }
.result-type { padding: 3px 10px; border-radius: 999px; background: var(--paper); color: var(--copper); font-size: 10px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.result-type.type-video { color: #2f6f8f; }
.result-type.type-service { color: #3f7d5a; }
.result-type.type-page { color: #6a5aa5; }
.result-title { font-family: var(--font-serif); font-size: 19px; font-weight: 600; line-height: 1.35; }
.result-text { color: var(--muted); font-size: 13.5px; line-height: 1.7; }
.result-arrow { width: 20px; color: var(--mist); }
.search-result:hover .result-arrow { color: var(--copper); }

.search-pager { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 34px; }
.search-pager a { display: inline-flex; align-items: center; gap: 8px; padding: 12px 20px; border: 1px solid var(--line-strong); border-radius: 999px; font-size: 13px; font-weight: 650; }
.search-pager a:hover { border-color: var(--ink); }
.search-pager [data-lucide] { width: 16px; }
.search-pager small { color: var(--muted); }

.search-empty { padding: 60px 20px; text-align: center; }
.search-empty [data-lucide] { width: 40px; color: var(--mist); }
.search-empty h2 { margin: 16px 0 8px; font-family: var(--font-serif); font-size: 26px; font-weight: 600; }
.search-empty p { margin: 0; color: var(--muted); font-size: 14px; }

.search-popular { margin-top: 54px; padding-top: 34px; border-top: 1px solid var(--line); }
.search-popular h2 { margin: 0 0 20px; font-size: 15px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.popular-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 16px; }
.popular-card { display: grid; gap: 10px; padding: 16px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: white; transition: .2s ease; }
.popular-card:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(11,17,22,.08); }
.popular-thumb { height: 108px; border-radius: 12px; background: var(--image) center/cover no-repeat var(--paper-deep); }
.popular-card b { font-family: var(--font-serif); font-size: 16px; font-weight: 600; line-height: 1.4; }
.popular-card small { color: var(--muted); font-size: 12.5px; line-height: 1.6; }

@media (max-width: 980px) {
    .popular-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
    .search-hero { padding: 34px 0 20px; }
    .search-form { padding: 8px 8px 8px 16px; }
    .search-form button { padding: 13px 18px; }
    .search-result { grid-template-columns: 84px 1fr; gap: 14px; padding: 14px; }
    .result-thumb { height: 68px; }
    .result-arrow { display: none; }
    .result-title { font-size: 17px; }
    .popular-grid { grid-template-columns: 1fr; }
    .search-bar { gap: 10px; }
    .search-go { display: none; }
}

@media (prefers-reduced-motion: reduce) {
    *, *:before, *:after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
    .hero-media { animation: none; transform: none; }
    [data-reveal] { opacity: 1; transform: none; }
}

/* Advertisement slots */
.ad-rail {
    display: flex;
    justify-content: center;
    padding: 36px 0;
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
}
.ad-rail-pair {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 320px));
    justify-content: center;
    gap: 20px;
    align-items: stretch;
}
.ad-rail-pair .ad-slot {
    max-width: none;
    width: 100%;
}
.ad-rail-pair .ad-slot-rectangle,
.ad-rail-pair .ad-slot-square {
    max-width: none;
    margin-top: 0;
}
.ad-slot {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    width: 100%;
    color: var(--mist);
}
.ad-slot:not(.is-filled) {
    align-items: center;
    justify-content: center;
    min-height: 120px;
    border: 1px dashed var(--line-strong);
    border-radius: var(--radius);
    background:
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 8px,
            rgba(11, 17, 22, .025) 8px,
            rgba(11, 17, 22, .025) 16px
        ),
        rgba(255, 255, 255, .55);
}
.ad-slot-label {
    display: inline-flex;
    align-self: center;
    align-items: center;
    gap: 8px;
    padding: 5px 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .85);
    color: var(--ink);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}
.ad-slot-label::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--copper);
    box-shadow: 0 0 0 3px rgba(184, 107, 53, .18);
}
.ad-slot-space {
    display: block;
    width: 100%;
}
.ad-slot.is-filled {
    border: 0;
    background: transparent;
}
.ad-viewport {
    width: 100%;
    overflow: hidden;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line-strong);
    box-shadow: 0 18px 40px rgba(11, 17, 22, .1);
    background: #0b1116;
}
.ad-track {
    display: flex;
    width: 100%;
    transition: transform .65s cubic-bezier(.22, 1, .36, 1);
    will-change: transform;
}
.ad-slide {
    flex: 0 0 100%;
    min-width: 100%;
    max-width: 100%;
}
.ad-creative {
    position: relative;
    display: grid;
    align-items: center;
    gap: 12px;
    width: 100%;
    min-height: inherit;
    padding: 28px 36px;
    border-radius: 0;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(ellipse 70% 120% at 100% 0%, rgba(255,255,255,.2), transparent 55%),
        linear-gradient(135deg, var(--ad-accent, #0b1116), #0a0f14 68%, #111);
    text-decoration: none;
    transition: filter .2s ease, transform .2s ease;
}
a.ad-creative:hover {
    filter: brightness(1.05);
}
.ad-creative-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.ad-creative.has-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,.78) 0%, rgba(0,0,0,.45) 55%, rgba(0,0,0,.22) 100%);
    z-index: 1;
}
.ad-creative-copy {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 10px;
    max-width: min(58ch, 92%);
}
.ad-creative-copy strong {
    font-family: var(--font-serif, Literata, Georgia, serif);
    font-size: clamp(1.45rem, 2.8vw, 2.15rem);
    font-weight: 700;
    letter-spacing: -.02em;
    line-height: 1.15;
    text-shadow: 0 2px 18px rgba(0, 0, 0, .35);
}
.ad-creative-copy span {
    font-size: 15px;
    font-weight: 550;
    opacity: .95;
    line-height: 1.45;
    color: rgba(255, 255, 255, .92);
}
.ad-creative-copy em {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-top: 6px;
    padding: 11px 18px;
    border-radius: 999px;
    background: #fff;
    border: 0;
    color: #0b1116;
    font-style: normal;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .2);
}
a.ad-creative:hover .ad-creative-copy em {
    background: #f4f6f7;
}
.ad-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 4px;
}
.ad-dot {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(11, 17, 22, .25);
    cursor: pointer;
    transition: transform .2s ease, background .2s ease, width .2s ease;
}
.ad-dot:hover { background: rgba(11, 17, 22, .4); }
.ad-dot.is-active {
    width: 24px;
    border-radius: 999px;
    background: var(--copper-deep, #8a4a22);
}
.ad-slot-leaderboard {
    max-width: 1120px;
    min-height: 140px;
}
.ad-slot-leaderboard .ad-creative { min-height: 140px; }
.ad-slot-banner {
    max-width: 980px;
    min-height: 130px;
}
.ad-slot-banner .ad-creative { min-height: 130px; }
.ad-slot-billboard {
    max-width: 1120px;
    min-height: 280px;
}
.ad-slot-billboard .ad-creative {
    padding: 40px 44px;
    min-height: 280px;
}
.ad-slot-billboard .ad-creative-copy strong {
    font-size: clamp(1.85rem, 3.6vw, 2.75rem);
}
.ad-slot-billboard .ad-creative-copy span { font-size: 16px; }
.ad-slot-rectangle {
    width: 100%;
    max-width: 320px;
    min-height: 280px;
    margin-top: 8px;
}
.ad-slot-rectangle .ad-creative,
.ad-slot-square .ad-creative {
    min-height: 280px;
    align-content: end;
    padding: 24px;
}
.ad-slot-square {
    width: 100%;
    max-width: 280px;
    min-height: 280px;
}
.ad-slot-rectangle .ad-creative.has-image::after,
.ad-slot-square .ad-creative.has-image::after,
.ad-slot-billboard .ad-creative.has-image::after {
    background: linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.82));
}
.article-share .ad-slot { margin-top: 18px; }

@media (max-width: 760px) {
    .ad-rail { padding: 22px 0; }
    .ad-rail-pair {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin-inline: auto;
    }
    .ad-creative { padding: 22px 20px; }
    .ad-creative-copy strong { font-size: clamp(1.25rem, 6vw, 1.7rem); }
    .ad-creative-copy span { font-size: 14px; }
    .ad-slot-leaderboard,
    .ad-slot-banner,
    .ad-slot-billboard { max-width: 100%; }
    .ad-slot-leaderboard,
    .ad-slot-banner { min-height: 120px; }
    .ad-slot-leaderboard .ad-creative,
    .ad-slot-banner .ad-creative { min-height: 120px; }
    .ad-slot-billboard { min-height: 200px; }
    .ad-slot-billboard .ad-creative { min-height: 200px; padding: 24px 20px; }
    .article-share .ad-slot-rectangle { max-width: 100%; min-height: 180px; }
    .article-share .ad-slot-rectangle .ad-creative { min-height: 180px; }
}

@media (prefers-reduced-motion: reduce) {
    .ad-track { transition: none; }
}
