/* ==========================================================
   FOUNDATION
   System font stack for body — no Google Font needed.
   Newsreader serif for display only.
   Accent: #B44D2D (burnt sienna) — used exactly 4 times.
   ========================================================== */

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

::selection {
    background: #B44D2D;
    color: white;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 72px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background: #fff;
    color: #1a1a1a;
    line-height: 1.65;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.serif {
    font-family: 'Newsreader', Georgia, serif;
}

/* ==========================================================
   NAV — barely there
   ========================================================== */

nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.nav-bar {
    max-width: 1120px;
    margin: 0 auto;
    padding: 18px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-name {
    font-family: 'Newsreader', Georgia, serif;
    font-size: 17px;
    font-weight: 500;
    color: #1a1a1a;
    text-decoration: none;
}

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

.nav-links {
    display: flex;
    gap: 24px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #999;
    font-size: 13px;
    font-weight: 450;
    letter-spacing: 0.01em;
    transition: color 0.2s;
}

.nav-links a:hover { color: #1a1a1a; }

.nav-contact {
    font-size: 13px;
    font-weight: 500;
    color: #1a1a1a;
    text-decoration: none;
    padding: 7px 18px;
    border: 1px solid #ddd;
    transition: all 0.2s;
}

.nav-contact:hover {
    background: #1a1a1a;
    color: #fff;
    border-color: #1a1a1a;
}

.menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 13px;
    font-weight: 500;
    color: #1a1a1a;
    cursor: pointer;
    letter-spacing: 0.03em;
}

/* ==========================================================
   HERO - clean split
   ========================================================== */

.hero {
    max-width: 1120px;
    margin: 0 auto;
    padding: 140px 40px 0;
}

.hero-split {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 64px;
    align-items: center;
}

.hero-name {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.hero-line {
    font-size: 18px;
    color: #555;
    line-height: 1.75;
    max-width: 520px;
    margin-bottom: 24px;
}

.hero-meta {
    font-size: 13px;
    color: #999;
    letter-spacing: 0.01em;
}

.hero-photo {
    width: 100%;
    height: 380px;
    overflow: hidden;
}

.hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    filter: grayscale(20%) contrast(1.05);
    transition: filter 0.6s;
}

.hero-photo:hover img {
    filter: grayscale(0%) contrast(1.02);
}

/* ==========================================================
   CAREER ARC - horizontal timeline
   ========================================================== */

.arc {
    max-width: 1120px;
    margin: 0 auto;
    padding: 72px 40px 96px;
}

.arc-inner {
    position: relative;
    padding-top: 32px;
}

.arc-line {
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    height: 1px;
    background: #ddd;
}

.arc-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    position: relative;
}

.arc-step {
    padding-top: 40px;
    position: relative;
}

.arc-dot {
    position: absolute;
    top: 24px;
    left: 0;
    width: 8px;
    height: 8px;
    background: #ccc;
    border-radius: 50%;
}

.arc-dot-now {
    background: #B44D2D;
    width: 10px;
    height: 10px;
    top: 23px;
    left: -1px;
}

.arc-year {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #bbb;
    margin-bottom: 4px;
}

.arc-step-now .arc-year {
    color: #B44D2D;
}

.arc-role {
    font-family: 'Newsreader', Georgia, serif;
    font-size: 18px;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.arc-detail {
    font-size: 13px;
    color: #888;
    line-height: 1.55;
}

/* ==========================================================
   AI — Black section
   ========================================================== */

.ai-block {
    background: #111;
    color: #e0e0e0;
    padding: 96px 0;
}

.ai-inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 40px;
}

.ai-lead {
    font-family: 'Newsreader', Georgia, serif;
    font-size: 32px;
    font-weight: 400;
    line-height: 1.45;
    color: #fff;
    max-width: 640px;
    margin-bottom: 64px;
}

.ai-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px 72px;
}

.ai-item {
    padding-top: 24px;
    border-top: 1px solid #2a2a2a;
}

.ai-item-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 10px;
}

.ai-item h3 {
    font-family: 'Newsreader', Georgia, serif;
    font-size: 20px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 10px;
}

.ai-item p {
    font-size: 14px;
    color: #888;
    line-height: 1.7;
}

.ai-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 64px;
    padding-top: 32px;
    border-top: 1px solid #2a2a2a;
}

.ai-stack span {
    font-size: 12px;
    font-weight: 500;
    color: #666;
    padding: 6px 16px;
    border: 1px solid #2a2a2a;
    letter-spacing: 0.02em;
    transition: color 0.2s, border-color 0.2s;
}

.ai-stack span:hover {
    color: #aaa;
    border-color: #444;
}

/* ==========================================================
   ENGAGEMENTS — each one DIFFERENT layout
   ========================================================== */

.engagements {
    max-width: 1120px;
    margin: 0 auto;
    padding: 96px 40px;
}

.engagements-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 64px;
}

.engagements-heading {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #999;
}

.engagements-all {
    font-size: 13px;
    color: #999;
    text-decoration: none;
    transition: color 0.2s;
}

.engagements-all:hover {
    color: #1a1a1a;
}

.eng-1 {
    margin-bottom: 96px;
}

/* ---------- Engagement visuals (CSS-generated) ---------- */

.eng-1-visual {
    width: 100%;
    height: 400px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.eng-2-visual {
    height: 380px;
    margin-top: 32px;
    position: relative;
    overflow: hidden;
}

.eng-3-visual {
    height: 260px;
    position: relative;
    overflow: hidden;
}

.ev-label {
    position: absolute;
    bottom: 16px;
    left: 20px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
}

/* --- Visual 1: Risk grid (heat-map style) --- */
.eng-visual-risk {
    background: #111;
}

.eng-visual-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-template-rows: repeat(4, 1fr);
    gap: 3px;
    padding: 24px;
    height: 100%;
}

.ev-cell {
    background: #1a1a1a;
    transition: background 0.6s;
}

.ev-cell:nth-child(4),
.ev-cell:nth-child(7),
.ev-cell:nth-child(12),
.ev-cell:nth-child(19),
.ev-cell:nth-child(25) {
    background: #B44D2D;
    opacity: 0.7;
}

.ev-cell:nth-child(3),
.ev-cell:nth-child(10),
.ev-cell:nth-child(14),
.ev-cell:nth-child(21),
.ev-cell:nth-child(28) {
    background: #B44D2D;
    opacity: 0.35;
}

.ev-cell:nth-child(5),
.ev-cell:nth-child(11),
.ev-cell:nth-child(16),
.ev-cell:nth-child(22),
.ev-cell:nth-child(30) {
    background: #B44D2D;
    opacity: 0.15;
}

.ev-cell:nth-child(2),
.ev-cell:nth-child(8),
.ev-cell:nth-child(15),
.ev-cell:nth-child(20),
.ev-cell:nth-child(26) {
    background: #2a2a2a;
}

/* --- Visual 2: Credit risk bars --- */
.eng-visual-credit {
    background: #f5f3ef;
}

.ev-bars {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    padding: 32px 24px 48px;
    height: 100%;
}

.ev-bar {
    flex: 1;
    background: #ddd;
    transition: background 0.4s;
    min-height: 20px;
}

.ev-bar:nth-child(4),
.ev-bar:nth-child(8) {
    background: #B44D2D;
    opacity: 0.6;
}

.ev-bar:nth-child(2),
.ev-bar:nth-child(6) {
    background: #bbb;
}

.ev-bar:nth-child(1),
.ev-bar:nth-child(5),
.ev-bar:nth-child(9) {
    background: #e0ddd7;
}

.eng-visual-credit .ev-label {
    color: rgba(0,0,0,0.2);
}

/* --- Visual 3: Network graph (SVG) --- */
.eng-visual-network {
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ev-network-svg {
    width: 100%;
    height: 100%;
    padding: 8px;
}

.ev-node {
    fill: #555;
}

.ev-node-primary {
    fill: #B44D2D;
}

.ev-node-accent {
    fill: #B44D2D;
    opacity: 0.7;
}

.ev-edge {
    stroke: #333;
    stroke-width: 1;
}

.ev-edge-strong {
    stroke: #444;
    stroke-width: 1.2;
}

.ev-edge-faint {
    stroke: #222;
    stroke-width: 0.7;
    stroke-dasharray: 3 3;
}

.ev-edge-accent {
    stroke: #B44D2D;
    stroke-width: 1.5;
    stroke-opacity: 0.5;
}

.ev-node-label {
    fill: #555;
    font-size: 9px;
    font-weight: 500;
    text-anchor: middle;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    letter-spacing: 0.06em;
}

.ev-label-primary {
    fill: #B44D2D;
    font-weight: 600;
    font-size: 9.5px;
}

.ev-label-accent {
    fill: #B44D2D;
    font-weight: 600;
    text-anchor: start;
    font-size: 9.5px;
}

.ev-flow-label {
    fill: #333;
    font-size: 8px;
    font-weight: 500;
    text-anchor: middle;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    letter-spacing: 0.04em;
}

.eng-1-body {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 48px;
}

.eng-meta {
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #B44D2D; /* accent use 2 of 4 */
    font-weight: 600;
    margin-bottom: 12px;
}

.eng-title {
    font-family: 'Newsreader', Georgia, serif;
    font-size: 28px;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 16px;
}

.eng-text {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
}

.eng-stats {
    padding-top: 4px;
}

.eng-stat {
    margin-bottom: 24px;
}

.eng-stat-val {
    font-family: 'Newsreader', Georgia, serif;
    font-size: 36px;
    font-weight: 500;
    color: #1a1a1a;
    line-height: 1.1;
}

.eng-stat-label {
    font-size: 12px;
    color: #999;
    margin-top: 2px;
}

.eng-2 {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 72px;
    align-items: center;
    margin-bottom: 96px;
}

/* eng-2-img removed — replaced by eng-2-visual */

.eng-inline-stats {
    display: flex;
    gap: 32px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #e8e8e8;
}

.eng-inline-stat strong {
    font-family: 'Newsreader', Georgia, serif;
    font-size: 24px;
    font-weight: 500;
    display: block;
}

.eng-inline-stat span {
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.eng-3 {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 56px;
    align-items: start;
    padding-top: 48px;
    border-top: 1px solid #e8e8e8;
}

/* eng-3-img removed — replaced by eng-3-visual */

.eng-pull-stat {
    font-family: 'Newsreader', Georgia, serif;
    font-size: 48px;
    font-weight: 400;
    color: #1a1a1a;
    margin: 20px 0 4px;
    line-height: 1;
}

.eng-pull-context {
    font-size: 13px;
    color: #999;
    margin-bottom: 20px;
}

/* ==========================================================
   INDIA THESIS
   ========================================================== */

.india-thesis {
    background: #faf9f7;
    padding: 96px 0;
}

.india-thesis-inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 40px;
}

.india-thesis-heading {
    font-family: 'Newsreader', Georgia, serif;
    font-size: 28px;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 48px;
}

.india-thesis-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px 72px;
}

.india-thesis-item {
    padding-top: 24px;
    border-top: 1px solid #e0ddd7;
}

.india-thesis-item h3 {
    font-family: 'Newsreader', Georgia, serif;
    font-size: 20px;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.india-thesis-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.75;
}

/* ==========================================================
   LATEST WRITING - cards with excerpts
   ========================================================== */

.writing {
    background: #fff;
    padding: 96px 0;
}

.writing-inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 40px;
}

.writing-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 48px;
}

.writing-heading {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #999;
}

.writing-all {
    font-size: 13px;
    color: #999;
    text-decoration: none;
    transition: color 0.2s;
}

.writing-all:hover {
    color: #1a1a1a;
}

.writing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
}

.writing-card {
    text-decoration: none;
    padding: 32px 0 0;
    border-top: 2px solid #e0ddd7;
    transition: border-color 0.2s;
}

.writing-card:hover {
    border-top-color: #B44D2D;
}

.writing-card-meta {
    display: flex;
    gap: 12px;
    align-items: baseline;
    margin-bottom: 12px;
}

.writing-card-category {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #B44D2D;
}

.writing-card-date {
    font-size: 11px;
    color: #bbb;
}

.writing-card-title {
    font-family: 'Newsreader', Georgia, serif;
    font-size: 20px;
    font-weight: 400;
    color: #1a1a1a;
    line-height: 1.35;
    margin-bottom: 12px;
    transition: color 0.2s;
}

.writing-card:hover .writing-card-title {
    color: #555;
}

.writing-card-excerpt {
    font-size: 14px;
    color: #888;
    line-height: 1.65;
}

/* ==========================================================
   NEWSLETTER
   ========================================================== */

.newsletter {
    max-width: 1120px;
    margin: 0 auto;
    padding: 64px 40px;
    border-top: 1px solid #e8e8e8;
}

.newsletter-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 48px;
}

.newsletter-heading {
    font-family: 'Newsreader', Georgia, serif;
    font-size: 22px;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 6px;
}

.newsletter-desc {
    font-size: 14px;
    color: #888;
    line-height: 1.6;
    max-width: 360px;
}

.newsletter-form {
    flex-shrink: 0;
}

.newsletter-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.newsletter-input {
    width: 240px;
    padding: 10px 14px;
    border: 1px solid #ddd;
    font-family: inherit;
    font-size: 14px;
    color: #1a1a1a;
    outline: none;
    transition: border-color 0.2s;
}

.newsletter-input:focus {
    border-color: #1a1a1a;
}

.newsletter-btn {
    background: #1a1a1a;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 550;
    cursor: pointer;
    transition: opacity 0.2s;
    white-space: nowrap;
}

.newsletter-btn:hover {
    opacity: 0.85;
}

.newsletter-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.newsletter-status {
    font-size: 13px;
    margin-top: 8px;
    min-height: 18px;
}

.newsletter-success {
    color: #2d6b44;
}

.newsletter-error {
    color: #B44D2D;
}

/* Newsletter in post context */
.post .newsletter {
    padding: 48px 0;
    margin-top: 48px;
}

/* ==========================================================
   CONTACT
   ========================================================== */

.contact {
    max-width: 640px;
    margin: 0 auto;
    padding: 96px 40px;
    text-align: center;
}

.contact-statement {
    font-family: 'Newsreader', Georgia, serif;
    font-size: 28px;
    font-weight: 400;
    line-height: 1.45;
    margin-bottom: 36px;
    color: #333;
}

.contact-links {
    margin-bottom: 48px;
}

.contact-link {
    display: inline-block;
    font-size: 16px;
    color: #1a1a1a;
    text-decoration: none;
    padding-bottom: 1px;
    border-bottom: 1px solid #ccc;
    transition: border-color 0.2s;
}

.contact-link:hover {
    border-color: #B44D2D; /* accent use 3 of 4 */
}

.contact-sep {
    display: inline-block;
    margin: 0 20px;
    color: #ddd;
    font-size: 14px;
}

.contact-location {
    display: block;
    margin-top: 16px;
    font-size: 13px;
    color: #999;
}

.contact-resume {
    display: inline-block;
    margin-top: 20px;
    font-size: 13px;
    color: #999;
    text-decoration: none;
    padding: 8px 20px;
    border: 1px solid #ddd;
    transition: all 0.2s;
}

.contact-resume:hover {
    color: #1a1a1a;
    border-color: #1a1a1a;
}

/* ==========================================================
   CONTACT PAGE
   ========================================================== */

.contact-page {
    max-width: 640px;
    margin: 0 auto;
    padding: 140px 40px 96px;
}

.contact-page-hero {
    text-align: center;
    margin-bottom: 64px;
}

.contact-page-title {
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 20px;
}

.contact-page-title em {
    font-style: italic;
    color: #B44D2D;
}

.contact-page-text {
    font-size: 17px;
    color: #777;
    line-height: 1.7;
    max-width: 480px;
    margin: 0 auto;
}

.contact-page-form-wrap {
    background: #faf9f7;
    padding: 40px;
    margin-bottom: 48px;
}

.contact-page-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-form-group label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #999;
}

.contact-page-form input,
.contact-page-form textarea {
    width: 100%;
    background: #fff;
    border: 1px solid #e0ddd7;
    padding: 14px 16px;
    font-family: inherit;
    font-size: 15px;
    color: #1a1a1a;
    outline: none;
    transition: border-color 0.2s;
}

.contact-page-form input:focus,
.contact-page-form textarea:focus {
    border-color: #1a1a1a;
}

.contact-page-form textarea {
    min-height: 140px;
    resize: vertical;
}

.contact-page-or {
    text-align: center;
    margin-bottom: 32px;
    position: relative;
}

.contact-page-or span {
    font-size: 12px;
    color: #bbb;
    background: #fff;
    padding: 0 16px;
    position: relative;
    z-index: 1;
}

.contact-page-or::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e8e8e8;
}

.contact-page-channels {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 1px;
    background: #e8e8e8;
    border: 1px solid #e8e8e8;
}

.contact-channel {
    background: #fff;
    padding: 20px;
    text-decoration: none;
    text-align: center;
    transition: background 0.2s;
}

.contact-channel:hover {
    background: #faf9f7;
}

.contact-channel-label {
    display: block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #bbb;
    margin-bottom: 6px;
}

.contact-channel-value {
    display: block;
    font-family: 'Newsreader', Georgia, serif;
    font-size: 15px;
    color: #1a1a1a;
    transition: color 0.2s;
}

a.contact-channel:hover .contact-channel-value {
    color: #B44D2D;
}

.contact-submit {
    background: #B44D2D; /* accent use 4 of 4 */
    color: white;
    border: none;
    padding: 12px 28px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 550;
    letter-spacing: 0.02em;
    cursor: pointer;
    align-self: flex-start;
    transition: opacity 0.2s;
}

.contact-submit:hover {
    opacity: 0.85;
}

.contact-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.contact-form-status {
    font-size: 14px;
    margin-top: 12px;
    min-height: 20px;
}

.contact-form-success {
    color: #2d6b44;
}

.contact-form-error {
    color: #B44D2D;
}

/* ==========================================================
   FOOTER
   ========================================================== */

footer {
    border-top: 1px solid #e8e8e8;
    max-width: 1120px;
    margin: 0 auto;
    padding: 24px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #bbb;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #bbb;
    text-decoration: none;
    font-size: 12px;
    transition: color 0.2s;
}

.footer-links a:hover { color: #555; }

/* ==========================================================
   BLOG INDEX
   ========================================================== */

.blog-page {
    max-width: 1120px;
    margin: 0 auto;
    padding: 140px 40px 96px;
}

.blog-header {
    margin-bottom: 48px;
}

.blog-title {
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 12px;
}

.blog-intro {
    font-size: 16px;
    color: #777;
    line-height: 1.7;
    max-width: 520px;
}

.blog-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 48px;
    padding-bottom: 32px;
    border-bottom: 1px solid #e8e8e8;
}

.blog-filter {
    background: none;
    border: 1px solid #e0ddd7;
    padding: 6px 16px;
    font-family: inherit;
    font-size: 12px;
    font-weight: 500;
    color: #999;
    cursor: pointer;
    transition: all 0.2s;
}

.blog-filter:hover {
    color: #1a1a1a;
    border-color: #ccc;
}

.blog-filter.active {
    background: #1a1a1a;
    color: #fff;
    border-color: #1a1a1a;
}

/* Featured post */
.blog-featured {
    display: block;
    text-decoration: none;
    padding: 40px;
    background: #faf9f7;
    margin-bottom: 48px;
    border-left: 3px solid #B44D2D;
    transition: background 0.2s;
}

.blog-featured:hover {
    background: #f5f3ef;
}

.blog-featured-meta {
    display: flex;
    gap: 16px;
    align-items: baseline;
    margin-bottom: 16px;
}

.blog-featured-category {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #B44D2D;
}

.blog-featured-date {
    font-size: 12px;
    color: #bbb;
}

.blog-featured-tag {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
    background: #1a1a1a;
    padding: 2px 8px;
}

.blog-featured-title {
    font-family: 'Newsreader', Georgia, serif;
    font-size: 28px;
    font-weight: 400;
    color: #1a1a1a;
    line-height: 1.3;
    margin-bottom: 10px;
}

.blog-featured-subtitle {
    font-size: 15px;
    color: #777;
    line-height: 1.65;
    max-width: 640px;
}

/* Post grid */
.blog-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
}

.blog-card {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    padding: 28px 0;
    border-top: 1px solid #e8e8e8;
}

.blog-card-meta {
    display: flex;
    gap: 12px;
    align-items: baseline;
    margin-bottom: 10px;
}

.blog-card-category {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #B44D2D;
}

.blog-card-date {
    font-size: 11px;
    color: #bbb;
}

.blog-card-title {
    font-family: 'Newsreader', Georgia, serif;
    font-size: 19px;
    font-weight: 400;
    color: #1a1a1a;
    line-height: 1.35;
    margin-bottom: 10px;
    transition: color 0.2s;
}

.blog-card:hover .blog-card-title {
    color: #555;
}

.blog-card-excerpt {
    font-size: 13px;
    color: #999;
    line-height: 1.65;
    flex: 1;
}

.blog-card-read {
    font-size: 12px;
    color: #bbb;
    margin-top: 16px;
    transition: color 0.2s;
}

.blog-card:hover .blog-card-read {
    color: #B44D2D;
}

.blog-empty {
    padding: 48px 0;
    color: #999;
    font-size: 15px;
}

/* ==========================================================
   POST
   ========================================================== */

.post {
    max-width: 720px;
    margin: 0 auto;
    padding: 140px 40px 96px;
}

.post-header {
    margin-bottom: 48px;
}

.post-back-top {
    display: inline-block;
    font-size: 13px;
    color: #bbb;
    text-decoration: none;
    margin-bottom: 32px;
    transition: color 0.2s;
}

.post-back-top:hover {
    color: #1a1a1a;
}

.post-meta {
    display: flex;
    gap: 16px;
    align-items: baseline;
    margin-bottom: 20px;
}

.post-category {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: #B44D2D;
}

.post-meta time {
    font-size: 13px;
    color: #999;
}

.post-reading-time {
    font-size: 12px;
    color: #bbb;
}

.post-title {
    font-size: 38px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin-bottom: 12px;
}

.post-subtitle {
    font-size: 18px;
    color: #777;
    line-height: 1.6;
}

.post-body {
    font-size: 17px;
    line-height: 1.8;
    color: #333;
}

.post-body h2 {
    font-family: 'Newsreader', Georgia, serif;
    font-size: 26px;
    font-weight: 400;
    margin: 48px 0 16px;
    color: #1a1a1a;
}

.post-body h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 36px 0 12px;
    color: #1a1a1a;
}

.post-body p {
    margin-bottom: 24px;
}

.post-body blockquote {
    border-left: 3px solid #e8e8e8;
    padding-left: 24px;
    margin: 32px 0;
    color: #666;
    font-style: italic;
}

.post-body code {
    font-size: 0.88em;
    background: #f5f5f3;
    padding: 2px 6px;
    border-radius: 3px;
}

.post-body pre {
    background: #181818;
    color: #d8d8d8;
    padding: 20px 24px;
    overflow-x: auto;
    margin: 24px 0;
    font-size: 13.5px;
    line-height: 1.65;
    border-radius: 4px;
}

.post-body pre code {
    background: none;
    padding: 0;
    color: inherit;
    font-size: inherit;
}

.post-body .highlight {
    background: #181818;
    border-radius: 4px;
    margin: 24px 0;
    overflow-x: auto;
}

.post-body .highlight pre {
    margin: 0;
    background: transparent;
}

.post-body ul, .post-body ol {
    margin: 16px 0 24px 24px;
}

.post-body li {
    margin-bottom: 8px;
}

.post-body img {
    max-width: 100%;
    height: auto;
    margin: 32px 0;
}

/* Post tags */
.post-tags {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid #e8e8e8;
}

.post-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    padding: 4px 14px;
    background: #f5f5f3;
    color: #777;
    text-decoration: none;
    transition: all 0.2s;
}

.post-tag:hover {
    background: #1a1a1a;
    color: #fff;
}

/* Prev / Next navigation */
.post-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid #e8e8e8;
}

.post-nav-item {
    text-decoration: none;
    padding: 16px 0;
}

a.post-nav-item:hover .post-nav-title {
    color: #1a1a1a;
}

.post-nav-next {
    text-align: right;
}

.post-nav-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #bbb;
    margin-bottom: 6px;
}

.post-nav-title {
    display: block;
    font-family: 'Newsreader', Georgia, serif;
    font-size: 16px;
    color: #666;
    line-height: 1.35;
    transition: color 0.2s;
}

/* Related posts */
.post-related {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid #e8e8e8;
}

.post-related-heading {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 20px;
}

.post-related-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.post-related-card {
    text-decoration: none;
    padding: 20px;
    background: #faf9f7;
    transition: background 0.2s;
}

.post-related-card:hover {
    background: #f5f3ef;
}

.post-related-date {
    display: block;
    font-size: 11px;
    color: #bbb;
    margin-bottom: 6px;
}

.post-related-title {
    display: block;
    font-family: 'Newsreader', Georgia, serif;
    font-size: 16px;
    color: #1a1a1a;
    line-height: 1.35;
}

/* ==========================================================
   RESPONSIVE
   ========================================================== */

@media (max-width: 900px) {
    /* Hero */
    .hero { padding: 120px 28px 0; }
    .hero-split { grid-template-columns: 1fr; gap: 40px; }
    .hero-name { font-size: 36px; margin-bottom: 24px; }
    .hero-line { font-size: 16px; }
    .hero-photo { height: 320px; }

    /* Timeline */
    .arc { padding: 48px 28px 64px; }
    .arc-line { display: none; }
    .arc-steps { grid-template-columns: 1fr; gap: 0; }
    .arc-step {
        padding: 16px 0 16px 24px;
        border-left: 1px solid #ddd;
        position: relative;
    }
    .arc-dot {
        position: absolute;
        top: 20px;
        left: -4px;
    }
    .arc-dot-now { left: -5px; }
    .arc-step-now { border-left-color: #B44D2D; }

    /* AI section */
    .ai-inner { padding: 0 28px; }
    .ai-lead { font-size: 22px; }
    .ai-cols { grid-template-columns: 1fr; gap: 32px; }

    /* Engagements */
    .engagements { padding: 72px 28px; }
    .eng-1-body { grid-template-columns: 1fr; gap: 24px; }
    .eng-1-visual { height: 220px; }
    .eng-2 { grid-template-columns: 1fr; gap: 32px; }
    .eng-2-visual { height: 220px; margin-top: 0; }
    .eng-3 { grid-template-columns: 1fr; gap: 24px; }
    .eng-3-visual { height: 200px; }
    .eng-inline-stats { flex-wrap: wrap; gap: 20px; }

    /* India thesis */
    .india-thesis-inner { padding: 0 28px; }
    .india-thesis-heading { font-size: 22px; margin-bottom: 32px; }
    .india-thesis-grid { grid-template-columns: 1fr; gap: 32px; }

    /* Newsletter */
    .newsletter { padding: 48px 28px; }
    .newsletter-inner { flex-direction: column; align-items: flex-start; gap: 24px; }
    .newsletter-row { flex-wrap: wrap; }
    .newsletter-input { width: 100%; }

    /* Writing */
    .writing-inner { padding: 0 28px; }
    .writing-grid { grid-template-columns: 1fr; gap: 24px; }
    .writing-header { margin-bottom: 32px; }

    /* Contact */
    .contact-page { padding: 120px 28px 72px; }
    .contact-page-title { font-size: 36px; }
    .contact-page-form-wrap { padding: 28px; }
    .contact-form-row { grid-template-columns: 1fr; }
    .contact-page-channels { grid-template-columns: 1fr 1fr; }
    .contact { padding: 72px 28px; }
    .contact-statement { font-size: 22px; }
    .contact-link { font-size: 15px; }
    .contact-sep { display: none; }
    .contact-links a { display: block; margin-bottom: 12px; }

    /* Footer & Nav */
    footer { padding: 20px 28px; flex-direction: column; gap: 8px; }
    .nav-bar { padding: 14px 28px; }
    .nav-links { display: none; }
    .nav-contact { display: none; }
    .menu-btn { display: block; }

    /* Blog index */
    .blog-page { padding: 120px 28px 72px; }
    .blog-title { font-size: 32px; }
    .blog-filters { gap: 6px; }
    .blog-filter { padding: 6px 14px; font-size: 13px; }
    .blog-featured { padding: 28px; }
    .blog-featured-title { font-size: 22px; }
    .blog-grid { grid-template-columns: 1fr; gap: 20px; }
    .blog-card { padding: 24px; }

    /* Post detail */
    .post { padding: 120px 28px 72px; }
    .post-title { font-size: 28px; }
    .post-meta { gap: 12px; flex-wrap: wrap; }
    .post-nav { grid-template-columns: 1fr; gap: 16px; }
    .post-nav-next { text-align: left; }
    .post-related-grid { grid-template-columns: 1fr; }

    /* Work */
    .work-page { padding: 120px 28px 72px; }
    .work-title { font-size: 36px; }
    .work-grid { grid-template-columns: 1fr; gap: 24px; }
    .work-card-metrics { flex-wrap: wrap; gap: 16px; }

    /* Advisory */
    .advisory-page { padding: 120px 28px 72px; }
    .advisory-title { font-size: 32px; }
    .advisory-intro { font-size: 16px; }
    .advisory-context-lead { font-size: 18px; }
    .advisory-diff-grid { grid-template-columns: 1fr; gap: 28px; }
    .advisory-diff-item h3 { font-size: 18px; }
    .advisory-fit-grid { grid-template-columns: 1fr; gap: 32px; }
    .advisory-fit-label { font-size: 16px; }
    .advisory-grid { grid-template-columns: 1fr; gap: 28px; }
    .advisory-area h3 { font-size: 18px; }
    .advisory-engagements { padding: 28px; }
    .advisory-eng-grid { grid-template-columns: 1fr; gap: 24px; }
    .advisory-cta-links { flex-direction: column; align-items: center; }
    .advisory-cta-text { font-size: 20px; }
}

/* ==========================================================
   PHONE BREAKPOINT
   ========================================================== */

@media (max-width: 480px) {
    .hero { padding: 100px 20px 0; }
    .hero-name { font-size: 28px; line-height: 1.25; }
    .hero-line { font-size: 15px; line-height: 1.7; }
    .hero-meta { font-size: 11px; }
    .hero-photo { height: 280px; }

    .arc { padding: 36px 20px 48px; }

    .ai-block { padding: 64px 0; }
    .ai-inner { padding: 0 20px; }
    .ai-lead { font-size: 20px; margin-bottom: 40px; }
    .ai-item h3 { font-size: 17px; }
    .ai-stack { gap: 6px; }
    .ai-stack span { font-size: 11px; padding: 4px 12px; }

    .engagements { padding: 48px 20px; }
    .eng-title { font-size: 22px; }
    .eng-stat-val { font-size: 28px; }
    .eng-pull-stat { font-size: 36px; }
    .eng-1-visual { height: 180px; }
    .eng-2-visual { height: 180px; }
    .eng-3-visual { height: 180px; }

    .india-thesis { padding: 64px 0; }
    .india-thesis-inner { padding: 0 20px; }
    .india-thesis-heading { font-size: 20px; }
    .india-thesis-item h3 { font-size: 17px; }

    .newsletter { padding: 36px 20px; }
    .newsletter-heading { font-size: 19px; }

    .writing { padding: 64px 0; }
    .writing-inner { padding: 0 20px; }

    .contact { padding: 48px 20px; }
    .contact-statement { font-size: 20px; }
    .contact-resume { font-size: 12px; }

    .nav-bar { padding: 12px 20px; }

    footer { padding: 16px 20px; }

    /* Blog */
    .blog-page { padding: 100px 20px 48px; }
    .blog-title { font-size: 28px; }
    .blog-featured { padding: 20px; }
    .blog-featured-title { font-size: 20px; }

    /* Post */
    .post { padding: 100px 20px 48px; }
    .post-title { font-size: 24px; }
    .post-body { font-size: 15px; }
    .post-body h2 { font-size: 22px; }

    /* Contact page */
    .contact-page { padding: 100px 20px 48px; }
    .contact-page-title { font-size: 28px; }
    .contact-page-form-wrap { padding: 20px; }
    .contact-page-channels { grid-template-columns: 1fr; }
    .contact-page-form input,
    .contact-page-form textarea { font-size: 16px; }

    /* Advisory */
    .work-page { padding: 100px 20px 48px; }
    .work-title { font-size: 28px; }
    .work-card { padding: 24px; }
    .work-card-title { font-size: 19px; }
    .work-metric strong { font-size: 17px; }

    .advisory-page { padding: 100px 20px 48px; }
    .advisory-title { font-size: 26px; }
    .advisory-intro { font-size: 15px; }
    .advisory-context { padding: 32px 0; margin-bottom: 48px; }
    .advisory-context-lead { font-size: 16px; }
    .advisory-diff-item h3 { font-size: 17px; }
    .advisory-area h3 { font-size: 17px; }
    .advisory-engagements { padding: 20px; }
    .advisory-eng h3 { font-size: 16px; }
    .advisory-cta { padding: 40px 0; }
    .advisory-cta-text { font-size: 18px; }
    .advisory-cta-primary,
    .advisory-cta-secondary { width: 100%; text-align: center; }
    .advisory-fit-yes li,
    .advisory-fit-no li { font-size: 13px; }
    .advisory-diff-heading,
    .advisory-fit-heading,
    .advisory-areas-heading { font-size: 10px; }
}

/* ==========================================================
   WORK PAGE
   ========================================================== */

.work-page {
    max-width: 1120px;
    margin: 0 auto;
    padding: 140px 40px 96px;
}

.work-hero {
    margin-bottom: 64px;
}

.work-title {
    font-size: 48px;
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 20px;
}

.work-title em {
    font-style: italic;
    color: #B44D2D;
}

.work-intro {
    font-size: 17px;
    color: #777;
    line-height: 1.7;
    max-width: 520px;
}

.work-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.work-card {
    padding: 32px;
    border-top: 2px solid #e0ddd7;
    transition: border-color 0.2s;
}

.work-card:hover {
    border-top-color: #B44D2D;
}

.work-card-tag {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #B44D2D;
    margin-bottom: 12px;
}

.work-card-title {
    font-family: 'Newsreader', Georgia, serif;
    font-size: 22px;
    font-weight: 400;
    color: #1a1a1a;
    line-height: 1.3;
    margin-bottom: 12px;
}

.work-card-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.75;
    margin-bottom: 20px;
}

.work-card-metrics {
    display: flex;
    gap: 24px;
    padding-top: 16px;
    border-top: 1px solid #f0eeea;
}

.work-metric strong {
    font-family: 'Newsreader', Georgia, serif;
    font-size: 20px;
    font-weight: 500;
    display: block;
    color: #1a1a1a;
}

.work-metric span {
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* ==========================================================
   ADVISORY PAGE
   ========================================================== */

.advisory-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 140px 40px 96px;
}

.advisory-hero {
    margin-bottom: 72px;
}

.advisory-title {
    font-size: 48px;
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 24px;
}

.advisory-title em {
    font-style: italic;
    color: #B44D2D;
}

.advisory-intro {
    font-size: 18px;
    color: #555;
    line-height: 1.75;
    max-width: 600px;
}

.advisory-context {
    padding: 48px 0;
    margin-bottom: 72px;
    border-top: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
}

.advisory-context-lead {
    font-size: 22px;
    font-weight: 400;
    line-height: 1.55;
    color: #333;
}

.advisory-diff {
    margin-bottom: 72px;
}

.advisory-diff-heading {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 40px;
}

.advisory-diff-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 56px;
}

.advisory-diff-item {
    padding-top: 24px;
    border-top: 2px solid #1a1a1a;
}

.advisory-diff-item h3 {
    font-family: 'Newsreader', Georgia, serif;
    font-size: 20px;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 10px;
    line-height: 1.3;
}

.advisory-diff-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.75;
}

.advisory-fit {
    margin-bottom: 72px;
    padding-top: 48px;
    border-top: 1px solid #e8e8e8;
}

.advisory-fit-heading {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 32px;
}

.advisory-fit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.advisory-fit-label {
    font-family: 'Newsreader', Georgia, serif;
    font-size: 18px;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.advisory-fit-yes ul,
.advisory-fit-no ul {
    list-style: none;
    padding: 0;
}

.advisory-fit-yes li,
.advisory-fit-no li {
    font-size: 14px;
    line-height: 1.7;
    padding: 8px 0;
    border-bottom: 1px solid #f0eeea;
}

.advisory-fit-yes li {
    color: #555;
    padding-left: 20px;
    position: relative;
}

.advisory-fit-yes li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 15px;
    width: 8px;
    height: 8px;
    background: #2d6b44;
    border-radius: 50%;
}

.advisory-fit-no li {
    color: #999;
    padding-left: 20px;
    position: relative;
}

.advisory-fit-no li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 15px;
    width: 8px;
    height: 2px;
    background: #ccc;
    margin-top: 3px;
}

.advisory-areas {
    margin-bottom: 72px;
}

.advisory-areas-heading {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 40px;
}

.advisory-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 56px;
}

.advisory-area {
    padding-top: 24px;
    border-top: 1px solid #e8e8e8;
}

.advisory-area-num {
    font-size: 11px;
    font-weight: 600;
    color: #ccc;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.advisory-area h3 {
    font-family: 'Newsreader', Georgia, serif;
    font-size: 20px;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 10px;
    line-height: 1.3;
}

.advisory-area p {
    font-size: 14px;
    color: #666;
    line-height: 1.75;
}

.advisory-engagements {
    background: #faf9f7;
    padding: 48px;
    margin-bottom: 72px;
}

.advisory-eng-heading {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 32px;
}

.advisory-eng-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
}

.advisory-eng h3 {
    font-family: 'Newsreader', Georgia, serif;
    font-size: 18px;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.advisory-eng p {
    font-size: 13px;
    color: #777;
    line-height: 1.7;
}

.advisory-background {
    padding-top: 48px;
    border-top: 1px solid #e8e8e8;
    margin-bottom: 72px;
}

.advisory-bg-heading {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 24px;
}

.advisory-bg-body p {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 16px;
}

.advisory-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 24px;
}

.advisory-credentials span {
    font-size: 12px;
    font-weight: 500;
    color: #777;
    padding: 6px 16px;
    border: 1px solid #e0ddd7;
}

.advisory-cta {
    text-align: center;
    padding: 64px 0;
    border-top: 1px solid #e8e8e8;
}

.advisory-cta-text {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.5;
    color: #333;
    max-width: 560px;
    margin: 0 auto 36px;
}

.advisory-cta-links {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.advisory-cta-primary {
    display: inline-block;
    font-size: 13px;
    font-weight: 550;
    color: #fff;
    background: #B44D2D;
    padding: 12px 28px;
    text-decoration: none;
    transition: opacity 0.2s;
}

.advisory-cta-primary:hover {
    opacity: 0.85;
}

.advisory-cta-secondary {
    display: inline-block;
    font-size: 13px;
    font-weight: 500;
    color: #1a1a1a;
    padding: 12px 28px;
    border: 1px solid #ddd;
    text-decoration: none;
    transition: all 0.2s;
}

.advisory-cta-secondary:hover {
    background: #1a1a1a;
    color: #fff;
    border-color: #1a1a1a;
}

/* Mobile nav expand */
.nav-links.open {
    display: flex;
    position: absolute;
    top: 52px;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: center;
    padding: 28px 0;
    gap: 16px;
    border-bottom: 1px solid #e8e8e8;
}

/* Hero photo load animation */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.hero-photo img {
    animation: fadeIn 1s ease;
}
