/* ==========================================================================
   SITE-WIDE STYLESHEET
   ==========================================================================
   Cleaned & consolidated from the original file. All duplicate selectors
   (body, header, nav, footer, cookie banner, newsletter box, etc. were each
   defined 2-3 times across different page templates) have been merged into
   a single authoritative rule per selector, following normal CSS cascade
   order so the computed styles match what the browser was already
   rendering. Organized into numbered, documented sections below so any
   future addition has an obvious home.
   ========================================================================== */

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

/* ============================================================
   1. GLOBAL RESET & BASE
   ============================================================ */

body {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Helvetica, Arial, sans-serif;
    background-color: #FFFFFF;
    color: #1d1d1f;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding: 40px 80px;
    letter-spacing: -0.012em;
    -webkit-font-smoothing: antialiased;
}

@media (max-width: 768px) {
    body {
        padding: 30px 24px;
    }
}

main {
    padding-bottom: 0 !important;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    flex: 1;
}

/* ============================================================
   2. HEADER & NAVIGATION
   ============================================================ */

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 8vh auto;
}

.logo {
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
    flex-shrink: 0;
    transition: opacity 0.2s ease;
}

.logo-link:hover {
    opacity: 0.7;
}

.logo-link img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.logo-text {
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: #000000;
}

.year {
    font-weight: 300;
    color: #86868b;
    margin-left: 4px;
}

.desktop-nav {
    display: flex;
    gap: 32px;
    align-items: center;
}

@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
}

.desktop-nav a {
    font-size: 14px;
    font-weight: 400;
    color: #1d1d1f;
    text-decoration: none;
    position: relative;
    padding-bottom: 2px;
    transition: color 0.2s ease;
}

.desktop-nav a:hover {
    color: #86868b;
}

.desktop-nav a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #1d1d1f;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.desktop-nav a:hover::after {
    width: 100%;
}

.desktop-nav a.active {
    color: #86868b;
}

.desktop-nav a.active::after {
    width: 100%;
    background-color: #86868b;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    position: relative;
    gap: 5px;
    padding: 0;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
}

.hamburger span {
    display: block;
    width: 22px;
    height: 1.5px;
    background-color: #1d1d1f;
    border-radius: 1px;
    transition: 0.3s;
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.mobile-menu.open {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu a {
    font-size: 28px;
    font-weight: 600;
    color: #1d1d1f;
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: color 0.2s ease, transform 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.mobile-menu.open a {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu.open a:nth-child(1) {
    transition-delay: 0.05s;
}

.mobile-menu.open a:nth-child(2) {
    transition-delay: 0.10s;
}

.mobile-menu.open a:nth-child(3) {
    transition-delay: 0.15s;
}

.mobile-menu.open a:nth-child(4) {
    transition-delay: 0.20s;
}

.mobile-menu a:hover {
    color: #86868b;
}

.mobile-menu a.active {
    color: #86868b;
}

body.menu-open {
    overflow: hidden;
}

/* ============================================================
   3. TYPOGRAPHY
   ============================================================ */

h1 {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

@media (max-width: 768px) {
    h1 {
        font-size: 34px;
    }
}

h2 {
    font-size: 28px;
    font-weight: 600;
    margin-top: 56px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    h2 {
        font-size: 24px;
    }
}

p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.subline {
    font-size: 21px;
    line-height: 1.4;
    font-weight: 400;
    color: #86868b;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .subline {
        font-size: 18px;
    }
}

.subtitle {
    font-size: 21px;
    line-height: 1.4;
    color: #86868b;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .subtitle {
        font-size: 18px;
    }
}

.drop-cap::first-letter {
    font-size: 72px;
    font-weight: 700;
    float: left;
    line-height: 0.8;
    padding-right: 12px;
    padding-top: 8px;
    color: #000000;
}

@media (max-width: 768px) {
    .drop-cap::first-letter {
        font-size: 56px;
        padding-top: 6px;
    }
}

/* ============================================================
   4. HERO / LANDING
   ============================================================ */

.hero {
    max-width: 680px;
    margin-bottom: 10vh;
}

.pdf-download {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
    background-color: #f5f5f7;
    color: #1d1d1f;
    border: 1px solid #d2d2d7;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
    margin-bottom: 40px;
}

.pdf-download:hover {
    background-color: #e8e8ed;
    border-color: #86868b;
}

.pdf-download svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* ============================================================
   5. WAITLIST / NEWSLETTER FORM
   ============================================================ */

.waitlist-form {
    display: flex;
    gap: 12px;
    max-width: 460px;
}

@media (max-width: 768px) {
    .waitlist-form {
        flex-direction: column;
    }
}

.waitlist-form input[type="email"] {
    flex: 1;
    padding: 14px 16px;
    font-size: 15px;
    border: 1px solid #d2d2d7;
    border-radius: 8px;
    background-color: #ffffff;
    color: #000000;
    outline: none;
    transition: border-color 0.3s ease;
}

.waitlist-form input[type="email"]:focus {
    border-color: #000000;
}

.waitlist-form button {
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 500;
    background-color: #1d1d1f;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.waitlist-form button:hover {
    background-color: #000000;
}

/* ============================================================
   6. PHOTO GRID
   ============================================================ */

.photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 8vh;
    margin-top: -6vh;
    width: 100%;
}

@media (max-width: 768px) {
    .photo-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

.photo-item {
    display: flex;
    flex-direction: column;
}

.photo-square {
    width: 100%;
    aspect-ratio: 1 / 1;
    background-color: #f5f5f7;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.photo-square img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.photo-title {
    font-size: 16px;
    font-weight: 600;
    color: #1d1d1f;
    margin-top: 12px;
    margin-bottom: 4px;
}

.photo-caption {
    font-size: 15px;
    color: #86868b;
    line-height: 1.4;
}

/* ============================================================
   7. PHILOSOPHY GRID (3-COL)
   ============================================================ */

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    border-top: 1px solid #d2d2d7;
    padding-top: 40px;
    margin-bottom: 6vh;
    margin-top: 4vh;
}

@media (max-width: 768px) {
    .grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

.grid-col h3 {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
    color: #86868b;
}

.grid-col p {
    font-size: 16px;
    line-height: 1.5;
    color: #1d1d1f;
}

/* ============================================================
   8. NEWSLETTER BOX
   ============================================================ */

.newsletter-box {
    background-color: #f5f5f7;
    border-radius: 16px;
    padding: 32px;
    margin-top: 64px;
    margin-bottom: 48px;
    display: flex;
    gap: 24px;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

@media (max-width: 768px) {
    .newsletter-box {
        padding: 24px;
    }
}

.newsletter-box h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    margin-top: 0;
}

.newsletter-box p {
    font-size: 17px;
    line-height: 1.7;
    color: #1d1d1f;
    margin-bottom: 20px;
}

/* ============================================================
   9. VIDEO SECTION
   ============================================================ */

.video-section {
    max-width: 680px;
    width: 100%;
    margin-bottom: 10vh;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

@media (max-width: 768px) {
    .video-section {
        max-width: 100%;
    }
}

.video-header h2 {
    font-size: 28px;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    color: #1d1d1f;
}

@media (max-width: 768px) {
    .video-header h2 {
        font-size: 22px;
    }
}

.video-container {
    width: 100%;
    position: relative;
    aspect-ratio: 16 / 9;
    background-color: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

@media (max-width: 768px) {
    .video-container {
        border-radius: 4px;
    }
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-description {
    width: 100%;
    margin-top: 20px;
}

.video-description p {
    font-size: 17px;
    line-height: 1.5;
    color: #424245;
}

@media (max-width: 768px) {
    .video-description p {
        font-size: 15px;
    }
}

/* ============================================================
   10. SEARCH & FILTER (Archive)
   ============================================================ */

.search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 900px;
    margin: 20px auto;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 24px;
}

.search-wrapper input {
    width: 100%;
    padding: 16px 16px 16px 48px;
    font-size: 16px;
    background-color: #f5f5f7;
    border: 1px solid transparent;
    border-radius: 12px;
    outline: none;
    transition: 0.2s;
}

.search-wrapper input:focus {
    background-color: #fff;
    border-color: #d2d2d7;
    box-shadow: 0 0 0 4px rgba(0,0,0,0.03);
}

.search-wrapper svg {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    color: #86868b;
}

#searchInput {
    width: 100%;
    padding: 12px 45px 12px 15px;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    outline: none;
    -webkit-appearance: none;
}

#searchInput::-webkit-search-cancel-button {
    -webkit-appearance: none;
    display: none;
}

.search-clear {
    display: none;
    cursor: pointer;
    position: absolute;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    color: #999;
    line-height: 1;
    padding: 0;
    margin: 0;
}

.search-clear.visible {
    display: block;
}

.search-status {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
    height: 1.2rem;
}

.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
    clear: both;
    width: 100%;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.filter-pill {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: #f5f5f7;
    border: 1px solid #d2d2d7;
    padding: 8px 18px;
    border-radius: 100px;
    cursor: pointer;
    transition: 0.2s;
}

.filter-pill.active {
    background: #1d1d1f;
    color: #fff;
    border-color: #1d1d1f;
}

/* ============================================================
   11. COMING SOON PAGE
   ============================================================ */

.coming-soon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex: 1;
    padding: 10vh 0;
}

.coming-soon-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 32px;
    color: #d4af37;
}

.coming-soon h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.08349;
    letter-spacing: -0.025em;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .coming-soon h1 {
        font-size: 32px;
    }
}

.coming-soon p {
    font-size: 21px;
    line-height: 1.42859;
    font-weight: 400;
    color: #86868b;
    max-width: 480px;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .coming-soon p {
        font-size: 18px;
    }
}

.coming-soon-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background-color: #f5f5f7;
    border: 1px solid #d2d2d7;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    color: #1d1d1f;
}

.coming-soon-badge::before {
    content: "";
    width: 8px;
    height: 8px;
    background-color: #d4af37;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.back-link {
    margin-top: 48px;
    font-size: 15px;
    color: #86868b;
    text-decoration: none;
    transition: color 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.back-link:hover {
    color: #1d1d1f;
}

.back-link svg {
    width: 16px;
    height: 16px;
}

/* ============================================================
   12. TEAM & VALUES (About page)
   ============================================================ */

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 40px;
    margin-bottom: 48px;
}

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

.team-card {
    background-color: #f5f5f7;
    border-radius: 12px;
    padding: 32px;
}

@media (max-width: 768px) {
    .team-card {
        padding: 24px;
    }
}

.team-card h3 {
    margin-top: 0;
    margin-bottom: 8px;
}

.team-role {
    font-size: 13px;
    font-weight: 500;
    color: #86868b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.team-card p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 0;
}

.team-contact {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #d2d2d7;
}

.team-contact a {
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}

.team-contact a:hover {
    text-decoration: underline;
}

.values-list {
    list-style: none;
    margin: 0;
    padding: 0;
    margin-top: 32px;
    margin-bottom: 48px;
}

.values-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    font-size: 16px;
    line-height: 1.6;
    color: #1d1d1f;
    margin-bottom: 24px;
}

.values-list li svg {
    width: 24px;
    height: 24px;
    color: #1d1d1f;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ============================================================
   13. QUOTE BLOCK
   ============================================================ */

.quote-block {
    border-left: 3px solid #000000;
    padding-left: 24px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.quote-block p {
    font-size: 21px;
    font-weight: 500;
    line-height: 1.4;
    font-style: italic;
    color: #1d1d1f;
    margin-bottom: 12px;
}

@media (max-width: 768px) {
    .quote-block p {
        font-size: 18px;
    }
}

.quote-block cite {
    font-size: 14px;
    font-style: normal;
    color: #86868b;
}

/* ============================================================
   14. CONTACT BOX
   ============================================================ */

.contact-box {
    background-color: #f5f5f7;
    border-radius: 12px;
    padding: 32px;
    margin-top: 48px;
}

@media (max-width: 768px) {
    .contact-box {
        padding: 24px;
    }
}

.contact-box h2 {
    margin-top: 0;
    margin-bottom: 20px;
}

.contact-row {
    display: flex;
    align-items: baseline;
    margin-bottom: 12px;
}

@media (max-width: 768px) {
    .contact-row {
        flex-direction: column;
        gap: 4px;
    }
}

.contact-label {
    font-size: 13px;
    font-weight: 500;
    color: #86868b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    min-width: 80px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .contact-label {
        min-width: auto;
    }
}

.contact-value {
    font-size: 15px;
    color: #1d1d1f;
}

.contact-value a {
    text-decoration: none;
}

.contact-value a:hover {
    text-decoration: underline;
}

/* ============================================================
   15. NEWS LIST ITEMS
   ============================================================ */

.news-item {
    border-top: 1px solid #d2d2d7;
    padding-top: 32px;
    padding-bottom: 32px;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.news-date {
    font-size: 14px;
    font-weight: 500;
    color: #86868b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.news-badge {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 10px;
    border-radius: 4px;
    background-color: #f5f5f7;
    color: #86868b;
}

.news-badge.buch {
    background-color: #1d1d1f;
    color: #ffffff;
}

.news-badge.ausstellung {
    background-color: #f5f5f7;
    color: #1d1d1f;
}

.news-badge.presse {
    background-color: #e8e8ed;
    color: #1d1d1f;
}

.news-badge.interview {
    background-color: #f5f5f7;
    color: #86868b;
}

.news-badge.sonder {
    background-color: #1d1d1f;
    color: #ffffff;
}

.news-title {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.3;
    color: #1d1d1f;
    margin-bottom: 12px;
}

@media (max-width: 768px) {
    .news-title {
        font-size: 19px;
    }
}

.news-excerpt {
    font-size: 17px;
    line-height: 1.7;
    color: #1d1d1f;
    margin-bottom: 16px;
}

.news-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    font-weight: 500;
    color: #000000;
    text-decoration: none;
    transition: all 0.2s ease;
}

.news-link:hover {
    color: #86868b;
}

.news-link svg {
    width: 14px;
    height: 14px;
    transition: transform 0.2s ease;
}

.news-link:hover svg {
    transform: translateX(4px);
}

.news-featured {
    background-color: #f5f5f7;
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 48px;
}

@media (max-width: 768px) {
    .news-featured {
        padding: 24px;
    }
}

.news-featured .news-badge {
    margin-bottom: 16px;
}

.news-featured .news-title {
    font-size: 28px;
    margin-bottom: 16px;
}

@media (max-width: 768px) {
    .news-featured .news-title {
        font-size: 22px;
    }
}

.news-featured .news-excerpt {
    font-size: 18px;
    margin-bottom: 20px;
}

/* ============================================================
   16. CAREER / VISUAL TIMELINE
   ============================================================ */

.career-timeline {
    position: relative;
    padding: 10px 0 20px;
    margin: 2rem 0;
}

.career-timeline::before {
    content: "";
    position: absolute;
    left: 28px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #d4af37 0%, #3b3b3b 100%);
    border-radius: 2px;
}

@media (min-width: 768px) {
    .career-timeline::before {
        left: 50%;
        transform: translateX(-50%);
        width: 3px;
    }
}

.career-timeline-item {
    position: relative;
    padding: 0 0 28px 72px;
}

@media (min-width: 768px) {
    .career-timeline-item {
        padding-left: calc(50% + 40px);
    }
}

.career-timeline-item:last-child {
    padding-bottom: 0;
}

.career-timeline-dot {
    position: absolute;
    left: 16px;
    top: 4px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background-color: #2c2c2c;
    border: 3px solid #d4af37;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

@media (min-width: 768px) {
    .career-timeline-dot {
        left: 50%;
        transform: translateX(-50%);
    }
}

.career-timeline-dot i {
    color: #d4af37;
    font-size: 0.65rem;
}

.career-timeline-year {
    font-family: "Montserrat", sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 3px;
}

.career-timeline-title {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: #2c2c2c;
    margin-bottom: 4px;
}

.career-timeline-text {
    font-family: "Open Sans", sans-serif;
    font-size: 0.92rem;
    color: #444;
    line-height: 1.55;
    margin: 0;
}

@media (min-width: 768px) {
    .career-timeline-item:nth-child(even) {
        padding-left: 0;
        padding-right: calc(50% + 40px);
        text-align: right;
    }
}

@media (min-width: 768px) {
    .career-timeline-item:nth-child(even) .career-timeline-dot {
        left: 50%;
        transform: translateX(-50%);
    }
}

.timeline {
    margin: 56px 0;
}

.timeline-item {
    display: flex;
    gap: 32px;
    margin-bottom: 32px;
}

@media (max-width: 768px) {
    .timeline-item {
        flex-direction: column;
        gap: 8px;
    }
}

.timeline-year {
    font-size: 15px;
    font-weight: 700;
    color: #1d1d1f;
    min-width: 80px;
    text-align: right;
}

@media (max-width: 768px) {
    .timeline-year {
        text-align: left;
    }
}

.timeline-content p {
    margin-bottom: 0;
    font-size: 15px;
    color: #515154;
}

/* ============================================================
   17. SOURCES BOX
   ============================================================ */

.sources-box {
    border: 1px solid #d2d2d7;
    border-radius: 16px;
    padding: 32px;
    margin-top: 64px;
}

.sources-box h2 {
    margin-top: 0;
    font-size: 20px;
    margin-bottom: 8px;
}

.sources-note {
    font-size: 14px;
    color: #86868b;
    margin-bottom: 20px;
}

.sources-list li {
    display: flex;
    gap: 20px;
    padding: 14px 0;
    border-top: 1px solid #e8e8ed;
    font-size: 14px;
    align-items: baseline;
}

@media (max-width: 768px) {
    .sources-list li {
        flex-direction: column;
        gap: 8px;
    }
}

.source-type {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    color: #86868b;
    min-width: 90px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .source-type {
        min-width: auto;
    }
}

/* ============================================================
   18. AUTHOR BOX
   ============================================================ */

.author-box {
    display: flex;
    gap: 24px;
    background-color: #f5f5f7;
    border-radius: 16px;
    padding: 32px;
    margin-top: 32px;
}

@media (max-width: 768px) {
    .author-box {
        flex-direction: column;
        gap: 8px;
    }
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: #1d1d1f;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.author-name {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 2px;
}

.author-role {
    font-size: 13px;
    color: #86868b;
    margin-bottom: 8px;
}

.author-bio {
    font-size: 14px;
    line-height: 1.6;
}

/* ============================================================
   19. ARTICLE / ARCHIVE CARDS
   ============================================================ */

.content {
    padding-bottom: 0 !important;
    width: 100%;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.page-header {
    width: 100%;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    border-bottom: 1px solid #d2d2d7;
    padding-bottom: 32px;
    margin-bottom: 48px;
}

.page-header p {
    color: #86868b;
    margin-bottom: 0;
}

.article-banner {
    width: 100%;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    background: #fff;
    border: 1px solid #e8e8ed;
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 28px;
    text-decoration: none;
    color: inherit;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 768px) {
    .article-banner {
        flex-direction: column;
    }
}

.article-banner:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    border-color: #d2d2d7;
}

.article-banner-text {
    flex: 1;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 768px) {
    .article-banner-text {
        padding: 24px;
    }
}

.article-banner-image {
    flex: 0 0 35%;
    background-size: cover;
    background-position: center;
    min-height: 220px;
    background-color: #f5f5f7;
}

@media (max-width: 768px) {
    .article-banner-image {
        order: -1;
        flex: 0 0 220px;
    }
}

.article-banner-tag {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #86868b;
    margin-bottom: 10px;
    letter-spacing: 0.05em;
}

.article-banner-title {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 10px;
}

.article-banner-excerpt {
    font-size: 15px;
    color: #515154;
    line-height: 1.5;
    margin-bottom: 16px;
}

.read-btn {
    font-size: 14px;
    font-weight: 600;
    color: #0066cc;
    text-decoration: none;
}

.inline-photo {
    margin: 48px 0;
    width: 100%;
}

.inline-photo img {
    width: 100%;
    border-radius: 12px;
    display: block;
}

.inline-photo-caption {
    font-size: 13px;
    color: #86868b;
    margin-top: 14px;
    text-align: center;
}

.btn-primary {
    background: #1d1d1f;
    color: #fff;
    padding: 12px 28px;
    border-radius: 100px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: 0.2s;
}

.btn-primary:hover {
    background: #000;
    transform: scale(1.02);
}

/* ============================================================
   20. SHARE BUTTONS & ARTICLE META
   ============================================================ */

.share-box {
    margin: 2.5rem 0;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e2e2;
}

.share-box-label {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: #2c2c2c;
    margin-bottom: 12px;
}

.share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.btn-gradient-custom {
    background-image: linear-gradient(90deg, #90A9B8, #84828F);
    color: #FFFFFF;
    border-radius: 5px;
    padding: 0.5rem 1rem;
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
}

@media (max-width: 576px) {
    .btn-gradient-custom {
        width: 100%;
        justify-content: center;
    }
}

.btn-gradient-custom:hover {
    background-image: linear-gradient(90deg, #90A9B8, #2c2c2c);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.article-meta {
    font-family: "Montserrat", sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0.5rem 0 1.5rem;
}

/* ============================================================
   21. BOOK PROMO BANNER
   ============================================================ */

.book-banner-wrapper {
    width: 100%;
    margin: 20px auto 0;
    border-top: 1px solid #000;
    padding-top: 20px;
}

.book-banner {
    display: flex;
    flex-direction: row !important;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    gap: 4%;
}

.book-text-container {
    flex: 0 0 65%;
    display: flex;
    flex-direction: column;
}

.book-category-label a {
    font-size: clamp(10px, 2vw, 14px);
    font-weight: 800;
    text-transform: uppercase;
    color: #0066ff;
    text-decoration: underline;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.book-main-headline {
    font-size: clamp(1.1rem, 4.5vw, 2.5rem);
    font-weight: 900;
    line-height: 1.1;
    color: #000;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.book-text-container p {
    font-size: clamp(0.75rem, 2vw, 1.1rem);
    line-height: 1.4;
    margin-bottom: 1rem;
    color: #333;
}

.book-image-container {
    flex: 0 0 31%;
}

.book-image-container img {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
}

.book-cta-button {
    display: inline-block;
    background-color: #ff6600;
    color: #ffffff !important;
    text-decoration: none;
    padding: 2% 5%;
    font-size: clamp(10px, 2vw, 14px);
    font-weight: bold;
    text-transform: uppercase;
    width: fit-content;
    white-space: nowrap;
}

.book-button-disclaimer {
    font-size: clamp(8px, 1.5vw, 11px) !important;
    color: #888;
    margin-top: 10px;
    font-style: italic;
    line-height: 1.2;
}

/* ============================================================
   22. EDITORIAL BANNER
   ============================================================ */

.banner-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.banner-tag {
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #666;
    margin-bottom: 8px;
    display: block;
}

.editorial-banner {
    display: flex;
    flex-direction: column;
    width: 100%;
    border-top: 1px solid #000000;
    padding-top: 25px;
}

@media (min-width: 768px) {
    .editorial-banner {
        flex-direction: row;
        align-items: flex-start;
    }
}

.image-container {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    order: 1;
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .image-container {
        width: 200px;
        order: 2;
        margin-left: 50px;
        margin-bottom: 0;
    }
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.text-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    order: 2;
    text-align: left;
}

@media (min-width: 768px) {
    .text-container {
        order: 1;
    }
}

.category-label {
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: #000;
    margin-bottom: 12px;
}

.main-headline {
    font-size: clamp(2em, 5vw, 2em);
    font-weight: 900;
    line-height: 1.05;
    color: #000;
    letter-spacing: -0.03em;
    margin-bottom: 25px;
}

.cta-button {
    display: inline-block;
    background-color: #000000;
    color: #ffffff;
    text-decoration: none;
    padding: 12px 25px;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: background 0.3s;
}

.cta-button:hover {
    background-color: #333;
}

/* ============================================================
   23. FOOTER
   ============================================================ */

footer {
    margin-top: 80px;
    border-top: 1px solid #d2d2d7;
    margin-bottom: 40px;
    width: 100%;
    padding: 64px 0 48px 0;
}

.footer-content {
    width: 100%;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 48px;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

.footer-col h4 {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #86868b;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    font-size: 14px;
    color: #515154;
    text-decoration: none;
    transition: 0.2s;
}

.footer-col ul li a:hover {
    color: #1d1d1f;
    text-decoration: underline;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #86868b;
    padding-top: 24px;
    border-top: 1px solid #d2d2d7;
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }
}

.footer-bottom a {
    color: #86868b;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-bottom a:hover {
    color: #000000;
}

/* ============================================================
   24. COOKIE CONSENT BANNER
   ============================================================ */

.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(150%);
    width: calc(100% - 48px);
    max-width: 800px;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(210, 210, 215, 0.6);
    border-radius: 20px;
    padding: 24px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    z-index: 9999;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: transform 0.6s cubic-bezier(0.2, 1, 0.2, 1);
}

@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;
        gap: 16px;
        padding: 20px;
        bottom: 16px;
        align-items: flex-start;
    }
}

.cookie-banner.show {
    transform: translateX(-50%) translateY(0);
}

.cookie-text {
    font-size: 13px;
    line-height: 1.5;
    color: #1d1d1f;
}

.cookie-text a {
    color: #000000;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .cookie-buttons {
        width: 100%;
        justify-content: flex-end;
    }
}

.cookie-btn {
    font-size: 13px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.2s;
    border: none;
}

.cookie-btn.reject {
    color: #86868b;
    background: transparent;
}

.cookie-btn.reject:hover {
    color: #000000;
}

.cookie-btn.accept {
    color: #fff;
    background: #1d1d1f;
}

.cookie-btn.accept:hover {
    background-color: #000000;
}

/* ============================================================
   25. JS-HOOK / UTILITY STATES
   ============================================================ */

.banner-hidden {
    display: none !important;
}

#noResults {
    display: none;
    padding: 40px;
    text-align: center;
    font-weight: bold;
}

/* ============================================================
   26. LEGACY ID-BASED MOBILE MENU (verify still in use)
   ============================================================ */

#mobileMenu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100%;
    background: #fff;
    z-index: 1000;
    transition: 0.3s;
    padding: 80px 20px;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
}

#mobileMenu.open {
    right: 0;
}

#mobileMenu a {
    display: block;
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-decoration: none;
    color: #000;
}