/*
Theme Name: AH Media
Description: Bootstrap 5 theme -- charcoal/gold consulting-report aesthetic, Sora + IBM Plex Sans typography
Version: 1.0.0
Text Domain: ahmedia
*/

/* ═══════════════════════════════════════════════════════════════════════
   1. BASE
   ═══════════════════════════════════════════════════════════════════════ */

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

body {
    margin: 0;
    padding: 0;
    font-family: 'IBM Plex Sans', -apple-system, 'Segoe UI', sans-serif;
    background: #FAFAF9;
    color: #2B2D31;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-top: 60px;
}

img { max-width: 100%; height: auto; }
a { transition: color 0.2s ease; }

@media (max-width: 480px) {
    body { padding-top: 56px; }
}

/* ═══════════════════════════════════════════════════════════════════════
   2. NAVIGATION
   ═══════════════════════════════════════════════════════════════════════ */

.ah-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #2B2D31;
    border-bottom: 1px solid rgba(196, 154, 42, 0.15);
    transition: box-shadow 0.3s ease;
}

.ah-nav.scrolled {
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.15);
}

.ah-nav__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 32px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ah-nav__brand {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ah-nav__icon {
    width: 24px;
    height: 24px;
}

.ah-nav__brand-name {
    font-family: 'Sora', system-ui, sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #F7F6F3;
    letter-spacing: -0.02em;
}

.ah-nav__links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.ah-nav__link {
    font-family: 'IBM Plex Sans', -apple-system, sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #8B8E94;
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: color 0.2s ease;
    position: relative;
}

.ah-nav__link:hover { color: #F7F6F3; }

.ah-nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: #C49A2A;
    transition: width 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.ah-nav__link:hover::after { width: 100%; }

/* ═══════════════════════════════════════════════════════════════════════
   3. HAMBURGER
   ═══════════════════════════════════════════════════════════════════════ */

.ah-nav__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px 4px;
}

.ah-nav__hamburger span {
    width: 20px;
    height: 1.5px;
    background: #F7F6F3;
}

/* ═══════════════════════════════════════════════════════════════════════
   4. MOBILE MENU
   ═══════════════════════════════════════════════════════════════════════ */

.ah-mob-overlay {
    position: fixed;
    inset: 0;
    background: rgba(30, 31, 34, 0.6);
    z-index: 1001;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.ah-mob-overlay.open { opacity: 1; pointer-events: auto; }

.ah-mob-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 300px;
    max-width: 85vw;
    background: #2B2D31;
    z-index: 1002;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    overflow-y: auto;
}

.ah-mob-menu.open { transform: translateX(0); }

.ah-mob-menu__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(212, 213, 217, 0.08);
}

.ah-mob-menu__brand {
    font-family: 'Sora', system-ui, sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #F7F6F3;
}

.ah-mob-menu__close {
    background: none;
    border: none;
    color: #8B8E94;
    font-size: 28px;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.ah-mob-menu__close:hover { color: #F7F6F3; }

.ah-mob-menu__nav {
    padding: 16px 0;
    display: flex;
    flex-direction: column;
}

.ah-mob-menu__link {
    font-family: 'IBM Plex Sans', -apple-system, sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #8B8E94;
    text-decoration: none;
    padding: 12px 24px;
    transition: color 0.2s ease, background 0.2s ease;
}

.ah-mob-menu__link:hover { color: #F7F6F3; background: rgba(196, 154, 42, 0.05); }

@media (max-width: 900px) {
    .ah-nav__links { display: none; }
    .ah-nav__hamburger { display: flex; }
}

@media (max-width: 480px) {
    .ah-nav__inner { padding: 0 20px; height: 56px; }
    .ah-nav__brand-name { font-size: 15px; }
}

/* ═══════════════════════════════════════════════════════════════════════
   5. HERO: ANALYST'S DESK
   ═══════════════════════════════════════════════════════════════════════ */

.ah-hero {
    background: #FAFAF9;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.ah-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(43,45,49,0.018) 1px, transparent 1px);
    background-size: 100% 48px;
    pointer-events: none;
}

.ah-hero__inner {
    max-width: 780px;
    margin: 0 auto;
    padding: 96px 32px 88px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

.ah-hero__rule {
    width: 64px;
    height: 2px;
    background: #C49A2A;
    margin-bottom: 40px;
    border-radius: 1px;
}

.ah-hero__pub-mark {
    font-family: 'Sora', system-ui, sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #8B8E94;
    margin: 0 0 48px;
}

.ah-hero__headline {
    font-family: 'Sora', system-ui, sans-serif;
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.025em;
    color: #2B2D31;
    text-align: center;
    margin: 0 0 28px;
}

.ah-hero__sub {
    font-family: 'IBM Plex Sans', -apple-system, sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.7;
    color: #5A5D63;
    text-align: center;
    max-width: 640px;
    margin: 0 0 56px;
}

.ah-hero__briefing {
    width: 100%;
    background: #F7F6F3;
    border: 1px solid #D4D5D9;
    border-left: 3px solid #C49A2A;
    padding: 32px 36px;
    text-align: left;
    margin-bottom: 48px;
    text-decoration: none;
    color: inherit;
    display: block;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.ah-hero__briefing:hover {
    border-color: #C49A2A;
    box-shadow: 0 2px 16px rgba(196, 154, 42, 0.06);
    color: inherit;
}

.ah-hero__briefing-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.ah-hero__briefing-label {
    font-family: 'Sora', system-ui, sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #C49A2A;
    background: #FAF6EC;
    padding: 4px 10px;
    border-radius: 2px;
}

.ah-hero__briefing-meta {
    font-family: 'IBM Plex Sans', -apple-system, sans-serif;
    font-size: 13px;
    color: #8B8E94;
}

.ah-hero__briefing-title {
    font-family: 'Sora', system-ui, sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.35;
    color: #2B2D31;
    margin: 0 0 12px;
    letter-spacing: -0.01em;
}

.ah-hero__briefing-excerpt {
    font-family: 'IBM Plex Sans', -apple-system, sans-serif;
    font-size: 15px;
    line-height: 1.65;
    color: #5A5D63;
    margin: 0;
}

.ah-hero__actions {
    display: flex;
    gap: 16px;
    align-items: center;
}

.ah-hero__btn {
    font-family: 'Sora', system-ui, sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-decoration: none;
    padding: 13px 28px;
    border-radius: 3px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.ah-hero__btn--primary {
    background: #C49A2A;
    color: #1E1F22;
    border: 1px solid #C49A2A;
}

.ah-hero__btn--primary:hover {
    background: #A6821E;
    border-color: #A6821E;
    color: #1E1F22;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(196, 154, 42, 0.2);
}

.ah-hero__btn--primary:hover .ah-hero__btn-arrow { transform: translateX(3px); }
.ah-hero__btn-arrow { transition: transform 0.25s ease; }

.ah-hero__btn--secondary {
    background: transparent;
    color: #2B2D31;
    border: 1px solid #D4D5D9;
}

.ah-hero__btn--secondary:hover {
    border-color: #2B2D31;
    color: #2B2D31;
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .ah-hero__inner { padding: 72px 24px 64px; }
    .ah-hero__pub-mark { margin-bottom: 36px; }
    .ah-hero__sub { font-size: 16px; margin-bottom: 40px; }
    .ah-hero__briefing { padding: 24px; margin-bottom: 40px; }
    .ah-hero__briefing-title { font-size: 18px; }
    .ah-hero__briefing-excerpt { font-size: 14px; }
    .ah-hero__actions { flex-direction: column; width: 100%; }
    .ah-hero__btn { width: 100%; justify-content: center; padding: 14px 24px; }
}

@media (max-width: 480px) {
    .ah-hero__inner { padding: 56px 20px 48px; }
    .ah-hero__rule { width: 48px; margin-bottom: 32px; }
    .ah-hero__pub-mark { font-size: 10px; margin-bottom: 28px; }
    .ah-hero__briefing-header { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* ═══════════════════════════════════════════════════════════════════════
   6. COVERAGE INDEX
   ═══════════════════════════════════════════════════════════════════════ */

.ah-coverage {
    background: #F7F6F3;
    position: relative;
}

.ah-coverage::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: #E8E9EC;
}

.ah-coverage__inner {
    max-width: 860px;
    margin: 0 auto;
    padding: 88px 32px 96px;
}

.ah-coverage__header {
    text-align: center;
    margin-bottom: 56px;
}

.ah-coverage__rule,
.ah-analysis__rule,
.ah-decisions__rule,
.ah-about__rule,
.ah-newsletter__rule {
    width: 40px;
    height: 2px;
    background: #C49A2A;
    margin: 0 auto 28px;
    border-radius: 1px;
}

.ah-about__rule { margin-left: 0; }

.ah-coverage__heading,
.ah-analysis__heading,
.ah-decisions__heading,
.ah-about__heading,
.ah-newsletter__heading {
    font-family: 'Sora', system-ui, sans-serif;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #2B2D31;
    margin: 0;
}

.ah-coverage__heading,
.ah-analysis__heading { font-size: 28px; margin-bottom: 14px; }

.ah-coverage__intro {
    font-family: 'IBM Plex Sans', -apple-system, sans-serif;
    font-size: 15px;
    color: #5A5D63;
    margin: 0;
}

.ah-coverage__index { border-top: 1px solid #D4D5D9; }

.ah-coverage__entry {
    display: grid;
    grid-template-columns: 48px 1fr 24px;
    align-items: start;
    gap: 24px;
    padding: 24px 8px;
    border-bottom: 1px solid #E8E9EC;
    text-decoration: none;
    color: inherit;
    transition: background 0.2s ease;
}

.ah-coverage__entry:hover { background: rgba(250, 246, 236, 0.5); }
.ah-coverage__entry:last-child { border-bottom: 1px solid #D4D5D9; }

.ah-coverage__num {
    font-family: 'Sora', system-ui, sans-serif;
    font-size: 22px;
    font-weight: 300;
    color: #8B8E94;
    line-height: 1.4;
    transition: color 0.25s ease, transform 0.25s ease;
    padding-top: 1px;
}

.ah-coverage__entry:hover .ah-coverage__num { color: #C49A2A; transform: translateX(-2px); }

.ah-coverage__body {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
}

.ah-coverage__name {
    font-family: 'Sora', system-ui, sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: #2B2D31;
    letter-spacing: -0.01em;
    line-height: 1.4;
    transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.ah-coverage__entry:hover .ah-coverage__name { transform: translateX(4px); }

.ah-coverage__desc {
    font-family: 'IBM Plex Sans', -apple-system, sans-serif;
    font-size: 14px;
    color: #5A5D63;
    line-height: 1.55;
    transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1) 0.02s;
}

.ah-coverage__entry:hover .ah-coverage__desc { transform: translateX(4px); }

.ah-coverage__arrow {
    color: #D4D5D9;
    margin-top: 4px;
    transition: color 0.25s ease, transform 0.25s ease;
}

.ah-coverage__entry:hover .ah-coverage__arrow { color: #C49A2A; transform: translateX(3px); }

@media (max-width: 768px) {
    .ah-coverage__inner { padding: 64px 24px 72px; }
    .ah-coverage__heading { font-size: 24px; }
    .ah-coverage__entry { grid-template-columns: 36px 1fr 20px; gap: 16px; padding: 20px 4px; }
    .ah-coverage__num { font-size: 18px; }
    .ah-coverage__name { font-size: 16px; }
    .ah-coverage__desc { font-size: 13px; }
}

@media (max-width: 480px) {
    .ah-coverage__inner { padding: 48px 20px 56px; }
    .ah-coverage__entry { grid-template-columns: 32px 1fr; gap: 12px; padding: 18px 0; }
    .ah-coverage__arrow { display: none; }
}

/* ═══════════════════════════════════════════════════════════════════════
   7. RECENT ANALYSIS
   ═══════════════════════════════════════════════════════════════════════ */

.ah-analysis { background: #FAFAF9; }

.ah-analysis__inner {
    max-width: 860px;
    margin: 0 auto;
    padding: 88px 32px 96px;
}

.ah-analysis__header { text-align: center; margin-bottom: 48px; }

.ah-analysis__tag,
.ah-analysis__item-tag {
    font-family: 'Sora', system-ui, sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #C49A2A;
    background: #FAF6EC;
    padding: 4px 10px;
    border-radius: 2px;
    white-space: nowrap;
    transition: background 0.2s ease, color 0.2s ease;
}

.ah-analysis__lead {
    display: block;
    background: #F7F6F3;
    border: 1px solid #D4D5D9;
    border-left: 3px solid transparent;
    padding: 36px 40px;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.ah-analysis__lead:hover {
    border-left-color: #C49A2A;
    box-shadow: 0 2px 20px rgba(43, 45, 49, 0.04);
    color: inherit;
}

.ah-analysis__lead-meta { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }

.ah-analysis__date {
    font-family: 'IBM Plex Sans', -apple-system, sans-serif;
    font-size: 13px;
    color: #8B8E94;
}

.ah-analysis__lead-title {
    font-family: 'Sora', system-ui, sans-serif;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: -0.015em;
    color: #2B2D31;
    margin: 0 0 16px;
}

.ah-analysis__lead-excerpt {
    font-family: 'IBM Plex Sans', -apple-system, sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: #5A5D63;
    margin: 0 0 24px;
    max-width: 680px;
}

.ah-analysis__read-more {
    font-family: 'Sora', system-ui, sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: #C49A2A;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.25s ease;
}

.ah-analysis__lead:hover .ah-analysis__read-more { gap: 10px; }

.ah-analysis__index { border-top: none; }

.ah-analysis__item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    padding: 22px 12px;
    border-bottom: 1px solid #E8E9EC;
    text-decoration: none;
    color: inherit;
    transition: background 0.2s ease;
}

.ah-analysis__item:first-child { border-top: 1px solid #E8E9EC; margin-top: 8px; }
.ah-analysis__item:hover { background: rgba(250, 246, 236, 0.35); }
.ah-analysis__item:hover .ah-analysis__item-tag { background: #C49A2A; color: #FAFAF9; }

.ah-analysis__item-left { display: flex; flex-direction: column; gap: 10px; min-width: 0; }

.ah-analysis__item-title {
    font-family: 'Sora', system-ui, sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    color: #2B2D31;
    margin: 0;
}

.ah-analysis__item-date {
    font-family: 'IBM Plex Sans', -apple-system, sans-serif;
    font-size: 13px;
    color: #8B8E94;
    white-space: nowrap;
    padding-top: 14px;
}

@media (max-width: 768px) {
    .ah-analysis__inner { padding: 64px 24px 72px; }
    .ah-analysis__heading { font-size: 24px; }
    .ah-analysis__lead { padding: 28px 24px; }
    .ah-analysis__lead-title { font-size: 19px; }
    .ah-analysis__lead-excerpt { font-size: 14px; }
    .ah-analysis__item { flex-direction: column; gap: 8px; padding: 18px 8px; }
    .ah-analysis__item-date { padding-top: 0; }
    .ah-analysis__item-title { font-size: 15px; }
}

@media (max-width: 480px) {
    .ah-analysis__inner { padding: 48px 20px 56px; }
    .ah-analysis__lead { padding: 24px 20px; }
    .ah-analysis__lead-meta { flex-direction: column; align-items: flex-start; gap: 8px; }
    .ah-analysis__lead-title { font-size: 18px; }
}

/* ═══════════════════════════════════════════════════════════════════════
   8. DECISION FRAMEWORK
   ═══════════════════════════════════════════════════════════════════════ */

.ah-decisions { background: #1E1F22; position: relative; overflow: hidden; }

.ah-decisions__inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 96px 32px 88px;
    position: relative;
    z-index: 1;
}

.ah-decisions__header { text-align: center; margin-bottom: 56px; }
.ah-decisions__heading { font-size: 28px; color: #F7F6F3; margin-bottom: 16px; }

.ah-decisions__intro {
    font-family: 'IBM Plex Sans', -apple-system, sans-serif;
    font-size: 15px;
    line-height: 1.65;
    color: #8B8E94;
    margin: 0;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}

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

.ah-decisions__card {
    background: #2B2D31;
    border: 1px solid rgba(212, 213, 217, 0.08);
    border-top: 2px solid #C49A2A;
    padding: 32px 28px 28px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease;
}

.ah-decisions__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.ah-decisions__card-top { margin-bottom: 20px; }

.ah-decisions__label {
    font-family: 'Sora', system-ui, sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #C49A2A;
    display: block;
    margin-bottom: 14px;
}

.ah-decisions__question {
    font-family: 'Sora', system-ui, sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.35;
    color: #F7F6F3;
    margin: 0;
}

.ah-decisions__card-body { flex: 1; margin-bottom: 24px; }

.ah-decisions__tradeoff {
    font-family: 'IBM Plex Sans', -apple-system, sans-serif;
    font-size: 14px;
    line-height: 1.65;
    color: #8B8E94;
    margin: 0;
}

.ah-decisions__card-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid rgba(212, 213, 217, 0.06);
}

.ah-decisions__cat {
    font-family: 'Sora', system-ui, sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #C49A2A;
    background: rgba(196, 154, 42, 0.08);
    padding: 4px 10px;
    border-radius: 2px;
}

.ah-decisions__closing {
    font-family: 'IBM Plex Sans', -apple-system, sans-serif;
    font-size: 14px;
    font-style: italic;
    color: #5A5D63;
    text-align: center;
    margin: 0;
}

@media (max-width: 900px) {
    .ah-decisions__grid { grid-template-columns: 1fr; max-width: 560px; margin-left: auto; margin-right: auto; }
}

@media (max-width: 768px) {
    .ah-decisions__inner { padding: 72px 24px 64px; }
    .ah-decisions__heading { font-size: 24px; }
    .ah-decisions__card { padding: 28px 24px 24px; }
    .ah-decisions__question { font-size: 17px; }
}

/* ═══════════════════════════════════════════════════════════════════════
   9. ABOUT SNIPPET
   ═══════════════════════════════════════════════════════════════════════ */

.ah-about { background: #F7F6F3; position: relative; }

.ah-about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: #E8E9EC;
}

.ah-about__inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 88px 32px 96px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.ah-about__story { padding-right: 16px; }
.ah-about__heading { font-size: 24px; margin-bottom: 24px; }

.ah-about__text {
    font-family: 'IBM Plex Sans', -apple-system, sans-serif;
    font-size: 15px;
    line-height: 1.75;
    color: #5A5D63;
    margin: 0 0 32px;
}

.ah-about__attribution { display: flex; flex-direction: column; gap: 4px; margin-bottom: 28px; }

.ah-about__author {
    font-family: 'Sora', system-ui, sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #2B2D31;
}

.ah-about__role {
    font-family: 'IBM Plex Sans', -apple-system, sans-serif;
    font-size: 13px;
    color: #8B8E94;
}

.ah-about__link {
    font-family: 'Sora', system-ui, sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: #C49A2A;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.25s ease, color 0.2s ease;
}

.ah-about__link:hover { color: #A6821E; gap: 10px; }

.ah-about__principles { padding-top: 42px; }

.ah-about__principles-heading {
    font-family: 'Sora', system-ui, sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #8B8E94;
    margin: 0 0 28px;
}

.ah-about__values {
    border-left: 2px solid #C49A2A;
    padding-left: 24px;
}

.ah-about__value { padding: 16px 0; border-bottom: 1px solid #E8E9EC; }
.ah-about__value:first-child { padding-top: 0; }
.ah-about__value:last-child { border-bottom: none; padding-bottom: 0; }

.ah-about__value-name {
    font-family: 'Sora', system-ui, sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #2B2D31;
    margin: 0 0 6px;
}

.ah-about__value-desc {
    font-family: 'IBM Plex Sans', -apple-system, sans-serif;
    font-size: 13px;
    line-height: 1.6;
    color: #5A5D63;
    margin: 0;
}

@media (max-width: 768px) {
    .ah-about__inner { grid-template-columns: 1fr; gap: 48px; padding: 64px 24px 72px; }
    .ah-about__story { padding-right: 0; }
    .ah-about__principles { padding-top: 0; }
}

/* ═══════════════════════════════════════════════════════════════════════
   10. NEWSLETTER
   ═══════════════════════════════════════════════════════════════════════ */

.ah-newsletter { background: #FAFAF9; position: relative; }

.ah-newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: #E8E9EC;
}

.ah-newsletter__inner {
    max-width: 560px;
    margin: 0 auto;
    padding: 80px 32px 88px;
    text-align: center;
}

.ah-newsletter__heading { font-size: 24px; margin-bottom: 16px; }

.ah-newsletter__desc {
    font-family: 'IBM Plex Sans', -apple-system, sans-serif;
    font-size: 15px;
    line-height: 1.65;
    color: #5A5D63;
    margin: 0 0 32px;
}

.ah-newsletter__form { display: flex; gap: 0; max-width: 440px; margin: 0 auto; }

.ah-newsletter__input {
    flex: 1;
    font-family: 'IBM Plex Sans', -apple-system, sans-serif;
    font-size: 14px;
    color: #2B2D31;
    padding: 13px 18px;
    background: #F7F6F3;
    border: 1px solid #D4D5D9;
    border-right: none;
    border-radius: 3px 0 0 3px;
    outline: none;
    transition: border-color 0.2s ease;
}

.ah-newsletter__input::placeholder { color: #8B8E94; }
.ah-newsletter__input:focus { border-color: #C49A2A; }

.ah-newsletter__btn {
    font-family: 'Sora', system-ui, sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #1E1F22;
    background: #C49A2A;
    border: 1px solid #C49A2A;
    padding: 13px 24px;
    border-radius: 0 3px 3px 0;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s ease;
}

.ah-newsletter__btn:hover { background: #A6821E; border-color: #A6821E; }

@media (max-width: 768px) {
    .ah-newsletter__inner { padding: 64px 24px 72px; }
    .ah-newsletter__form { flex-direction: column; gap: 10px; }
    .ah-newsletter__input { border-right: 1px solid #D4D5D9; border-radius: 3px; }
    .ah-newsletter__input:focus { border-right-color: #C49A2A; }
    .ah-newsletter__btn { border-radius: 3px; padding: 14px 24px; }
}

/* ═══════════════════════════════════════════════════════════════════════
   11. FOOTER
   ═══════════════════════════════════════════════════════════════════════ */

.ah-footer { background: #1E1F22; border-top: 1px solid #C49A2A; }

.ah-footer__inner { max-width: 900px; margin: 0 auto; padding: 32px 32px 36px; }

.ah-footer__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(212, 213, 217, 0.08);
}

.ah-footer__brand { display: flex; align-items: center; gap: 12px; }

.ah-footer__name {
    font-family: 'Sora', system-ui, sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #F7F6F3;
}

.ah-footer__divider { width: 1px; height: 14px; background: rgba(139, 142, 148, 0.3); }

.ah-footer__tagline {
    font-family: 'IBM Plex Sans', -apple-system, sans-serif;
    font-size: 13px;
    color: #5A5D63;
}

.ah-footer__email {
    font-family: 'IBM Plex Sans', -apple-system, sans-serif;
    font-size: 13px;
    color: #5A5D63;
    text-decoration: none;
    transition: color 0.2s ease;
}

.ah-footer__email:hover { color: #C49A2A; }

.ah-footer__bottom { display: flex; align-items: center; justify-content: space-between; }

.ah-footer__copy {
    font-family: 'IBM Plex Sans', -apple-system, sans-serif;
    font-size: 12px;
    color: #5A5D63;
}

.ah-footer__nav { display: flex; align-items: center; gap: 6px; }

.ah-footer__sep { color: rgba(139, 142, 148, 0.3); font-size: 10px; }

.ah-footer__nav-link {
    font-family: 'IBM Plex Sans', -apple-system, sans-serif;
    font-size: 12px;
    color: #5A5D63;
    text-decoration: none;
    transition: color 0.2s ease;
}

.ah-footer__nav-link:hover { color: #C49A2A; }

@media (max-width: 768px) {
    .ah-footer__inner { padding: 28px 24px 32px; }
    .ah-footer__top { flex-direction: column; align-items: flex-start; gap: 12px; }
    .ah-footer__bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
    .ah-footer__nav { flex-wrap: wrap; }
}

@media (max-width: 480px) {
    .ah-footer__brand { flex-direction: column; align-items: flex-start; gap: 4px; }
    .ah-footer__divider { display: none; }
}

/* ═══════════════════════════════════════════════════════════════════════
   12. PAGE HERO BANNER
   ═══════════════════════════════════════════════════════════════════════ */

.ah-page-hero {
    background: #F7F6F3;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 120px 32px 48px;
    text-align: center;
}

.ah-page-hero__rule {
    width: 40px;
    height: 2px;
    background: #C49A2A;
    margin-bottom: 24px;
    border-radius: 1px;
}

.ah-page-hero__title {
    font-family: 'Sora', system-ui, sans-serif;
    font-size: 32px;
    font-weight: 600;
    color: #2B2D31;
    margin: 0 0 12px;
    letter-spacing: -0.02em;
}

.ah-page-hero__desc {
    font-family: 'IBM Plex Sans', -apple-system, sans-serif;
    font-size: 15px;
    color: #5A5D63;
    margin: 0;
    max-width: 600px;
}

@media (max-width: 768px) {
    .ah-page-hero { padding: 100px 24px 40px; }
    .ah-page-hero__title { font-size: 26px; }
}

/* ═══════════════════════════════════════════════════════════════════════
   13. ARTICLE SINGLE
   ═══════════════════════════════════════════════════════════════════════ */

.ah-article-hero {
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 21/9;
    max-height: 480px;
}

.ah-article-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(1.5px) brightness(0.85);
}

.ah-article-hero__overlay {
    position: absolute;
    inset: 0;
    background: #000;
    opacity: 0.18;
}

.ah-article-meta {
    max-width: 720px;
    margin: 0 auto;
    padding: 48px 32px 0;
    text-align: center;
}

.ah-article-meta__cat {
    font-family: 'Sora', system-ui, sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #C49A2A;
    background: #FAF6EC;
    padding: 4px 10px;
    border-radius: 2px;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 20px;
}

.ah-article-meta__cat:hover { color: #A6821E; }

.ah-article-meta__title {
    font-family: 'Sora', system-ui, sans-serif;
    font-size: clamp(26px, 4vw, 36px);
    font-weight: 700;
    line-height: 1.2;
    color: #2B2D31;
    margin: 0 0 16px;
    letter-spacing: -0.02em;
}

.ah-article-meta__info {
    font-family: 'IBM Plex Sans', -apple-system, sans-serif;
    font-size: 13px;
    color: #8B8E94;
    margin: 0 0 48px;
}

/* ═══════════════════════════════════════════════════════════════════════
   14. PROSE
   ═══════════════════════════════════════════════════════════════════════ */

.ah-prose {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 32px 64px;
}

.ah-prose h2 {
    font-family: 'Sora', system-ui, sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #2B2D31;
    margin: 48px 0 16px;
    letter-spacing: -0.02em;
}

.ah-prose h3 {
    font-family: 'Sora', system-ui, sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #2B2D31;
    margin: 36px 0 12px;
}

.ah-prose p {
    font-size: 16px;
    line-height: 1.75;
    color: #3D3F44;
    margin: 0 0 20px;
}

.ah-prose a { color: #C49A2A; text-decoration: underline; }
.ah-prose a:hover { color: #A6821E; }

.ah-prose img { border-radius: 4px; margin: 24px 0; }

.ah-prose blockquote {
    border-left: 3px solid #C49A2A;
    padding: 16px 24px;
    margin: 24px 0;
    background: #FAF6EC;
    color: #3D3F44;
    font-style: italic;
}

.ah-prose ul, .ah-prose ol { margin: 0 0 20px; padding-left: 24px; }
.ah-prose li { font-size: 16px; line-height: 1.75; color: #3D3F44; margin-bottom: 8px; }

.ah-prose hr {
    border: none;
    border-top: 1px solid #E8E9EC;
    margin: 48px 0;
}

/* ═══════════════════════════════════════════════════════════════════════
   15. POST CARDS
   ═══════════════════════════════════════════════════════════════════════ */

.ah-post-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.ah-post-card {
    display: block;
    background: #F7F6F3;
    border: 1px solid #D4D5D9;
    border-left: 3px solid transparent;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.ah-post-card:hover {
    border-left-color: #C49A2A;
    box-shadow: 0 2px 20px rgba(43, 45, 49, 0.04);
    color: inherit;
}

.ah-post-card__image {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.ah-post-card__body { padding: 24px 28px; }

.ah-post-card__tag {
    font-family: 'Sora', system-ui, sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #C49A2A;
    background: #FAF6EC;
    padding: 4px 10px;
    border-radius: 2px;
    display: inline-block;
    margin-bottom: 12px;
}

.ah-post-date {
    font-family: 'IBM Plex Sans', -apple-system, sans-serif;
    font-size: 11px;
    color: #8B8E94;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.ah-post-card__title {
    font-family: 'Sora', system-ui, sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.35;
    color: #2B2D31;
    margin: 0 0 12px;
}

.ah-post-card__excerpt {
    font-family: 'IBM Plex Sans', -apple-system, sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #5A5D63;
    margin: 0;
}

/* ═══════════════════════════════════════════════════════════════════════
   16. UTILITY
   ═══════════════════════════════════════════════════════════════════════ */

.screen-reader-text { display: none; }

.ah-pagination {
    max-width: 720px;
    margin: 0 auto;
    padding: 32px;
    text-align: center;
}

.ah-pagination .nav-links { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; }

.ah-pagination .nav-links a,
.ah-pagination .nav-links span {
    font-family: 'IBM Plex Sans', -apple-system, sans-serif;
    font-size: 14px;
    padding: 8px 14px;
    border: 1px solid #D4D5D9;
    border-radius: 3px;
    text-decoration: none;
    color: #2B2D31;
    transition: all 0.2s ease;
}

.ah-pagination .nav-links a:hover { border-color: #C49A2A; color: #C49A2A; }
.ah-pagination .nav-links .current { background: #C49A2A; border-color: #C49A2A; color: #1E1F22; }
