/* ============================================================
   NAVEEN KOLLI — app.css
   ============================================================ */

/* --- TOKENS --- */
:root {
  --linen:      #FDFAF7;
  --linen-mid:  #F5EDE2;
  --linen-dark: #EAE3D8;
  --green:      #1A3A2A;
  --green-mid:  #2E5040;
  --green-light:#A8C8A0;
  --orange:     #C45B1E;
  --orange-soft:#E8A882;
  --amber:      #E8A020;
  --deep:       #2A2018;
  --muted:      #8A7A68;
  --subtle:     #5A5248;
  --border:     #EAE3D8;
  --border-mid: #D4CAB8;
  --font-head:  'Gilda Display', Georgia, serif;
  --font-body:  'Nunito', system-ui, sans-serif;
  --nav-h:      70px;
  --radius:     8px;
  --radius-lg:  14px;
  --container:  1140px;
  --section-v:  80px;
}

/* --- RESET --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font-body); background: var(--linen); color: var(--deep); line-height: 1.7; font-size: 16px; }
img { max-width: 100%; height: auto; display: block; border-radius: var(--radius); }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* --- CONTAINER --- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 2rem; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--linen);
  border-bottom: 2px solid var(--green);
}
.nav-container {
  max-width: var(--container); margin: 0 auto; padding: 0 2rem;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
}
.nav-logo { font-family: var(--font-head); font-size: 1.2rem; color: var(--green); letter-spacing: 0.03em; flex-shrink: 0; }
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a { font-size: 0.8rem; letter-spacing: 0.06em; color: var(--muted); font-weight: 400; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--orange); font-weight: 500; border-bottom: 1.5px solid var(--orange); padding-bottom: 2px; }
.nav-right { display: flex; align-items: center; gap: 1rem; flex-shrink: 0; }
.nav-cta { display: inline-flex; align-items: center; gap: 6px; padding: 9px 20px; background: var(--green); color: var(--green-light); border-radius: 40px; font-size: 0.78rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; transition: background 0.2s; }
.nav-cta:hover { background: var(--green-mid); color: #fff; }
.nav-hamburger { display: none; background: none; border: none; padding: 6px; color: var(--green); font-size: 1.5rem; line-height: 1; }
.nav-overlay { display: none; position: fixed; inset: 0; background: rgba(26,58,42,0.35); z-index: 99; }
.nav-overlay.open { display: block; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn { display: inline-flex; align-items: center; gap: 7px; padding: 11px 26px; border-radius: 40px; font-family: var(--font-body); font-size: 0.8rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; border: none; cursor: pointer; transition: all 0.2s; white-space: nowrap; }
.btn-primary { background: var(--green); color: var(--green-light); }
.btn-primary:hover { background: var(--green-mid); color: #fff; }
.btn-outline { background: transparent; border: 1.5px solid var(--orange); color: var(--orange); }
.btn-outline:hover { background: var(--orange); color: #fff; }
.btn-outline-dark { background: transparent; border: 1px solid var(--border-mid); color: var(--deep); }
.btn-outline-dark:hover { border-color: var(--green); color: var(--green); }
.btn-ghost-light { background: transparent; border: 1px solid var(--green-light); color: var(--green-light); }
.btn-ghost-light:hover { background: rgba(168,200,160,0.15); }
.btn-cta { background: var(--orange); color: #fff; }
.btn-cta:hover { background: #A04815; }
.btn-full { width: 100%; justify-content: center; border-radius: var(--radius); padding: 14px; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.eyebrow { font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--green); font-weight: 500; margin-bottom: 1rem; }
.kicker { font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--orange); font-weight: 500; margin-bottom: 0.75rem; }
.italic-orange { font-style: italic; color: var(--orange); }
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 400; line-height: 1.15; }
h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); }

/* ============================================================
   HERO
   ============================================================ */
.hero { padding: var(--section-v) 0 60px; background: var(--linen); }
.hero-inner { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 4rem; }
.hero-dots { display: flex; align-items: center; gap: 6px; margin-bottom: 1.25rem; }
.dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
.dot.green { background: var(--green); }
.dot.orange { background: var(--orange); }
.dot.amber { background: var(--amber); }
.hero-name { display: flex; flex-direction: column; margin-bottom: 1.25rem; }
.name-first { color: var(--green); font-family: var(--font-head); font-size: clamp(2.4rem, 5vw, 3.6rem); line-height: 1.05; }
.name-last { font-style: italic; color: var(--orange); font-family: var(--font-head); font-size: clamp(2.4rem, 5vw, 3.6rem); line-height: 1.05; }
.hero-tagline { font-size: 0.88rem; color: var(--subtle); max-width: 600px; margin-bottom: 2rem; line-height: 1.8; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-portrait { display: flex; flex-direction: column; align-items: center; gap: 12px; width: 320px; }
.portrait-circle { width: 320px; height: 360px; border-radius: var(--radius-lg); background: var(--green); border: 5px solid var(--linen); outline: 2px solid var(--orange); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.portrait-circle img { width: 100%; height: 100%; object-fit: cover; object-position: 65% 5%; }
.portrait-circle i { font-size: 72px; color: var(--green-light); opacity: 0.6; }
.portrait-badge { background: var(--orange); color: #fff8f3; font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 5px 16px; border-radius: 20px; font-weight: 500; }

/* ============================================================
   OFFERINGS STRIP
   ============================================================ */
.offerings-strip { display: grid; grid-template-columns: repeat(5, 1fr); background: var(--green); border-top: 2px solid var(--green); border-bottom: 2px solid var(--green); }
.offering { display: flex; flex-direction: column; align-items: center; padding: 1.5rem 1rem; gap: 8px; border-right: 0.5px solid var(--green-mid); transition: background 0.2s; }
.offering:last-child { border-right: none; }
.offering:hover { background: var(--green-mid); }
.offering i { font-size: 1.4rem; color: var(--amber); }
.offering span { font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green-light); font-weight: 500; }

/* ============================================================
   ABOUT TEASER
   ============================================================ */
.about-teaser { background: var(--linen-mid); padding: var(--section-v) 0; }
.about-teaser-inner { display: flex; gap: 1.5rem; align-items: stretch; }
.accent-bar { width: 4px; border-radius: 2px; flex-shrink: 0; min-height: 80px; }
.accent-bar.orange { background: var(--orange); }
.accent-bar.green { background: var(--green); }
.about-teaser-text h2 { margin-bottom: 1rem; }
.about-teaser-text p { color: var(--subtle); margin-bottom: 1.5rem; max-width: 560px; }

/* ============================================================
   STATS
   ============================================================ */
.stats-strip { padding: var(--section-v) 0; background: var(--linen); border-top: 0.5px solid var(--border); }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 0.5px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.stat { padding: 2rem 2.5rem; border-right: 0.5px solid var(--border); text-align: center; }
.stat:last-child { border-right: none; }
.stat-num { font-family: var(--font-head); font-size: 2.4rem; color: var(--orange); margin-bottom: 4px; }
.stat-label { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green); font-weight: 500; margin-bottom: 6px; }
.stat-sub { font-size: 0.82rem; color: var(--muted); }

/* ============================================================
   RARE COMBO
   ============================================================ */
.rare-combo-section { padding: var(--section-v) 0; background: var(--linen-mid); border-top: 0.5px solid var(--border); }
.rare-combo-inner { display: grid; grid-template-columns: 1fr 300px; gap: 4rem; align-items: center; }
.rare-combo-text h2 { margin-bottom: 1rem; }
.rare-combo-text p { font-size: 0.95rem; color: var(--subtle); line-height: 1.85; }
.rare-combo-cards { display: flex; flex-direction: column; align-items: center; }
.combo-card { width: 100%; border-radius: var(--radius-lg); padding: 1.5rem; }
.combo-card.green { background: var(--green); }
.combo-card.orange { background: var(--orange); }
.combo-card i { font-size: 1.5rem; margin-bottom: 8px; display: block; }
.combo-card.green i { color: var(--amber); }
.combo-card.orange i { color: #fff; }
.combo-card h4 { font-family: var(--font-head); font-size: 1rem; margin-bottom: 6px; font-weight: 400; }
.combo-card.green h4 { color: #E8F5EE; }
.combo-card.orange h4 { color: #fff; }
.combo-card p { font-size: 0.82rem; line-height: 1.6; }
.combo-card.green p { color: var(--green-light); }
.combo-card.orange p { color: rgba(255,255,255,.85); }
.combo-plus { font-family: var(--font-head); font-size: 1.8rem; color: var(--border-mid); padding: 6px 0; line-height: 1; }

/* ============================================================
   OFFERING CARDS
   ============================================================ */
.offerings-cards-section { padding: var(--section-v) 0; background: var(--linen); border-top: 0.5px solid var(--border); }
.section-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 2rem; flex-wrap: wrap; gap: 1rem; }
.section-header h2 { margin: 0; }
.see-all { font-size: 0.8rem; color: var(--orange); font-weight: 500; letter-spacing: 0.04em; }
.see-all:hover { text-decoration: underline; }
.offerings-cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.offering-card { background: var(--linen-mid); border: 0.5px solid var(--border); border-radius: var(--radius-lg); padding: 1.75rem; transition: border-color 0.2s, transform 0.2s; }
.offering-card:hover { border-color: var(--orange); transform: translateY(-2px); }
.offering-card > i { font-size: 1.6rem; color: var(--orange); margin-bottom: 1rem; display: block; }
.offering-card h3 { font-size: 1.05rem; color: var(--green); margin-bottom: 0.6rem; }
.offering-card p { font-size: 0.87rem; color: var(--muted); line-height: 1.7; }
.offering-card.highlight-card { border-color: var(--orange); background: var(--linen); }
.offering-card.highlight-card > i { color: var(--green); }

/* ============================================================
   DIGITAL SECTION
   ============================================================ */
.digital-section { padding: var(--section-v) 0; background: var(--green); border-top: 2px solid var(--orange); }
.digital-inner { display: grid; grid-template-columns: 1fr 240px; gap: 4rem; align-items: start; }
.digital-text .kicker { color: var(--amber); }
.digital-text h2 { color: #E8F5EE; margin-bottom: 1rem; }
.digital-text p { font-size: 0.95rem; color: var(--green-light); line-height: 1.85; opacity: 0.9; margin-bottom: 1rem; }
.digital-list { display: flex; flex-direction: column; gap: 10px; margin: 1.25rem 0; list-style: none; }
.digital-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9rem; color: var(--green-light); line-height: 1.55; }
.digital-list li i { color: var(--amber); font-size: 16px; margin-top: 2px; flex-shrink: 0; }
.digital-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--green-mid); border-radius: var(--radius-lg); overflow: hidden; }
.dstat { background: var(--green-mid); padding: 1.5rem 1rem; text-align: center; }
.dstat-num { font-family: var(--font-head); font-size: 1.8rem; color: var(--amber); margin-bottom: 4px; }
.dstat-label { font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--green-light); opacity: 0.8; line-height: 1.4; }

/* ============================================================
   JOURNAL PREVIEW
   ============================================================ */
.journal-preview { padding: var(--section-v) 0; background: var(--linen-mid); border-top: 0.5px solid var(--border); }
.journal-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.journal-card { background: var(--linen); border: 0.5px solid var(--border); border-radius: var(--radius-lg); padding: 1.75rem; transition: border-color 0.2s; }
.journal-card:hover { border-color: var(--orange); }
.journal-tag { display: inline-block; background: var(--green); color: var(--amber); font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; padding: 3px 12px; border-radius: 20px; margin-bottom: 0.75rem; font-weight: 500; }
.journal-card h3 { margin-bottom: 0.65rem; color: var(--green); font-size: 1.05rem; }
.journal-card p { font-size: 0.88rem; color: var(--muted); margin-bottom: 1rem; }
.read-link { font-size: 0.75rem; color: var(--orange); font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; }
.read-link:hover { text-decoration: underline; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band { background: var(--green); padding: 3.5rem 0; border-top: 2px solid var(--orange); }
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta-band h2 { color: #E8F5EE; margin-bottom: 0.5rem; font-size: 1.8rem; }
.cta-band p { color: var(--green-light); font-size: 0.95rem; opacity: 0.85; }
.cta-band-btns { display: flex; gap: 1rem; flex-wrap: wrap; flex-shrink: 0; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--green); border-top: 2px solid var(--orange); padding: 4rem 0 0; }
.footer-inner { max-width: var(--container); margin: 0 auto; padding: 0 2rem 3rem; display: grid; grid-template-columns: 280px 1fr; gap: 4rem; }
.footer-logo { font-family: var(--font-head); font-size: 1.3rem; color: #E8F5EE; margin-bottom: 0.75rem; display: block; }
.footer-tagline { font-size: 0.82rem; color: var(--green-light); opacity: 0.75; margin-bottom: 1.5rem; line-height: 1.7; }
.footer-socials { display: flex; gap: 14px; }
.footer-socials a { width: 36px; height: 36px; border-radius: 50%; border: 0.5px solid var(--green-mid); display: flex; align-items: center; justify-content: center; color: var(--green-light); font-size: 17px; transition: background 0.2s, border-color 0.2s; }
.footer-socials a:hover { background: var(--orange); border-color: var(--orange); color: #fff; }
.footer-links { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.footer-col h4 { font-family: var(--font-body); font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--amber); font-weight: 500; margin-bottom: 1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col a { font-size: 0.85rem; color: var(--green-light); opacity: 0.8; transition: opacity 0.2s; }
.footer-col a:hover { opacity: 1; color: #fff; }
.footer-bottom { max-width: var(--container); margin: 0 auto; padding: 1.25rem 2rem; border-top: 0.5px solid var(--green-mid); display: flex; align-items: center; justify-content: space-between; font-size: 0.75rem; color: var(--green-light); opacity: 0.7; }

/* ============================================================
   PAGE HERO
   ============================================================ */
.page-hero { padding: 64px 0 48px; background: var(--linen); border-bottom: 2px solid var(--green); }
.page-hero h1 { margin: 0.5rem 0; }
.page-hero-sub { font-size: 1rem; color: var(--muted); margin-top: 0.75rem; }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb-nav { background: var(--linen); border-bottom: 0.5px solid var(--border); padding: 10px 0; }
.breadcrumb { display: flex; align-items: center; gap: 8px; list-style: none; font-size: 0.78rem; color: var(--muted); }
.breadcrumb li::after { content: '›'; margin-left: 8px; color: var(--border-mid); }
.breadcrumb li:last-child::after { content: ''; }
.breadcrumb a { color: var(--orange); }
.breadcrumb a:hover { text-decoration: underline; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-body { padding: var(--section-v) 0; }
.about-grid { display: grid; grid-template-columns: 280px 1fr; gap: 4rem; align-items: start; }
.portrait-placeholder-lg { width: 100%; aspect-ratio: 3/4; background: var(--green); border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; }
.portrait-placeholder-lg i { font-size: 80px; color: var(--green-light); opacity: 0.4; }
.about-portrait-img { width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: 62% 5%; border-radius: var(--radius-lg); display: block; }
.about-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 1.25rem; }
.tag { font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; padding: 4px 14px; border-radius: 20px; font-weight: 500; }
.tag.green { background: var(--green); color: var(--green-light); }
.tag.orange { background: var(--orange); color: #fff; }
.tag.amber { background: var(--amber); color: #3A2000; }
.about-family { background: var(--linen-mid); border: 0.5px solid var(--border); border-radius: var(--radius-lg); padding: 1.25rem; }
.family-row { display: flex; align-items: flex-start; gap: 12px; padding: 10px 0; border-bottom: 0.5px solid var(--border); }
.family-row:last-child { border-bottom: none; }
.family-row > i { color: var(--orange); font-size: 18px; margin-top: 2px; flex-shrink: 0; }
.family-name { font-size: 0.9rem; font-weight: 500; color: var(--deep); }
.family-role { font-size: 0.78rem; color: var(--muted); margin-top: 2px; }
.about-content-col h2 { margin-bottom: 1.25rem; }
.about-prose p { color: var(--subtle); margin-bottom: 1rem; font-size: 0.97rem; line-height: 1.85; }
.about-prose strong { color: var(--green); font-weight: 500; }
.about-quote { margin: 2rem 0; padding: 1.5rem 2rem; border-left: 3px solid var(--orange); background: var(--linen-mid); border-radius: 0 var(--radius-lg) var(--radius-lg) 0; }
.about-quote p { font-family: var(--font-head); font-size: 1.05rem; font-style: italic; color: var(--green); line-height: 1.6; margin-bottom: 0.75rem; }
.about-quote cite { font-size: 0.8rem; font-style: normal; color: var(--muted); letter-spacing: 0.04em; }
.cert-list { display: flex; flex-direction: column; gap: 10px; margin-top: 0.75rem; }
.cert-list li { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--subtle); }
.cert-list li i { color: var(--green); font-size: 18px; flex-shrink: 0; }

/* ============================================================
   TRIBUTE SECTION
   ============================================================ */
.tribute-section { background: var(--green); padding: var(--section-v) 0; }
.tribute-inner { display: flex; gap: 2rem; align-items: stretch; }
.tribute-accent { width: 4px; border-radius: 2px; background: var(--amber); flex-shrink: 0; min-height: 100px; }
.tribute-content { flex: 1; }
.tribute-content .kicker { color: var(--amber); }
.tribute-content h2 { color: #E8F5EE; margin-bottom: 1.25rem; }
.tribute-content p { color: var(--green-light); font-size: 0.97rem; line-height: 1.85; margin-bottom: 1rem; opacity: 0.9; }

/* ============================================================
   SKILLS PAGE
   ============================================================ */
.skills-full { padding: var(--section-v) 0; }
.skills-section { margin-bottom: 4rem; }
.skills-section h2 { margin-bottom: 2rem; }
.skills-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.skill-card-full { background: var(--linen-mid); border: 0.5px solid var(--border); border-radius: var(--radius-lg); padding: 1.5rem 1.75rem; }
.skill-card-header { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 10px; }
.skill-card-name { font-weight: 500; font-size: 0.95rem; color: var(--deep); }
.skill-card-years { font-size: 0.78rem; color: var(--muted); }
.skill-track { height: 3px; background: var(--border); border-radius: 2px; overflow: hidden; margin-bottom: 8px; }
.skill-fill { height: 100%; border-radius: 2px; }
.skill-fill.green { background: var(--green); }
.skill-fill.orange { background: var(--orange); }
.skill-card-desc { font-size: 0.84rem; color: var(--muted); line-height: 1.6; }
.timeline-section { padding-top: 2rem; border-top: 0.5px solid var(--border); }
.timeline-section h2 { margin-bottom: 2.5rem; }
.timeline { position: relative; padding-left: 80px; }
.timeline::before { content: ''; position: absolute; left: 52px; top: 0; bottom: 0; width: 2px; background: var(--border-mid); }
.timeline-item { position: relative; display: flex; align-items: flex-start; gap: 1.5rem; margin-bottom: 2.5rem; padding-left: 1.5rem; }
.timeline-year {
  position: absolute;
  left: -80px;
  font-family: var(--font-head);
  font-size: 0.85rem;
  color: var(--orange);
  top: 2px;
  width: 42px;
  white-space: normal;
  line-height: 1.1;
  text-align: right;
}
.timeline-dot { position: absolute; left: -8px; top: 6px; width: 14px; height: 14px; border-radius: 50%; background: var(--green); border: 3px solid var(--linen); outline: 2px solid var(--green); flex-shrink: 0; }
.timeline-content h4 { font-family: var(--font-head); font-size: 1.05rem; color: var(--green); margin-bottom: 6px; font-weight: 400; }
.timeline-content p { font-size: 0.88rem; color: var(--muted); }

/* ============================================================
   JOURNAL PAGES
   ============================================================ */
.journal-full { padding: var(--section-v) 0; }
.journal-filter { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 2.5rem; }
.filter-btn { padding: 6px 18px; border-radius: 40px; font-size: 0.75rem; font-family: var(--font-body); letter-spacing: 0.06em; font-weight: 500; border: 0.5px solid var(--border-mid); background: transparent; color: var(--muted); cursor: pointer; transition: all 0.2s; }
.filter-btn:hover, .filter-btn.active { background: var(--green); color: var(--green-light); border-color: var(--green); }
.journal-grid-full { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.journal-card-full { background: var(--linen); border: 0.5px solid var(--border); border-radius: var(--radius-lg); padding: 1.75rem; transition: border-color 0.2s; }
.journal-card-full:hover { border-color: var(--orange); }
.journal-card-full.hidden { display: none; }
.journal-card-full h3 a { color: var(--green); }
.journal-card-full h3 a:hover { color: var(--orange); }
.journal-card-full p { font-size: 0.88rem; color: var(--muted); margin: 0.65rem 0 1rem; }
.journal-meta { display: flex; align-items: center; justify-content: space-between; }
.journal-date { font-size: 0.78rem; color: var(--muted); }
.post-full { padding: var(--section-v) 0; }
.post-header { margin-bottom: 3rem; }
.post-back { font-size: 0.82rem; color: var(--muted); letter-spacing: 0.04em; display: inline-flex; align-items: center; gap: 6px; }
.post-back:hover { color: var(--orange); }
.post-header h1 { margin: 1rem 0 0.75rem; max-width: 740px; }
.post-meta { display: flex; gap: 1.5rem; font-size: 0.82rem; color: var(--muted); }
.post-body { max-width: 740px; font-size: 1rem; color: var(--subtle); line-height: 1.9; }
.post-body p { margin-bottom: 1.25rem; }
.post-body h2 { margin: 2rem 0 0.75rem; color: var(--green); }
.post-body strong { color: var(--deep); font-weight: 500; }
.post-footer { margin-top: 3rem; padding-top: 2rem; border-top: 0.5px solid var(--border); }
.post-author-card { display: flex; align-items: flex-start; gap: 1.25rem; padding: 1.5rem; background: var(--linen-mid); border: 0.5px solid var(--border); border-radius: var(--radius-lg); }
.post-author-avatar { width: 60px; height: 60px; border-radius: 50%; background: var(--green); display: flex; align-items: center; justify-content: center; flex-shrink: 0; overflow: hidden; }
.post-author-avatar i { font-size: 26px; color: var(--green-light); opacity: 0.6; }
.post-author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.post-author-name { font-weight: 500; font-size: 0.95rem; color: var(--deep); margin-bottom: 4px; }
.post-author-bio { font-size: 0.82rem; color: var(--muted); line-height: 1.6; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section { padding: var(--section-v) 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 380px; gap: 4rem; align-items: start; }
.contact-form-col h2 { margin-bottom: 2rem; }
.form-success { display: flex; align-items: center; gap: 10px; background: #EAF3DE; color: #27500A; padding: 14px 18px; border-radius: var(--radius); margin-bottom: 1.5rem; font-size: 0.9rem; }
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.78rem; font-weight: 500; letter-spacing: 0.04em; color: var(--deep); }
.contact-form input, .contact-form select, .contact-form textarea { font-family: var(--font-body); font-size: 0.9rem; color: var(--deep); background: var(--linen); border: 1px solid var(--border-mid); border-radius: var(--radius); padding: 11px 14px; width: 100%; transition: border-color 0.2s; outline: none; resize: vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--green); }
.contact-form input.error, .contact-form textarea.error { border-color: var(--orange); }
.form-error { font-size: 0.75rem; color: var(--orange); margin-top: 2px; }
.contact-info-card, .contact-social-card, .contact-note-card { background: var(--linen-mid); border: 0.5px solid var(--border); border-radius: var(--radius-lg); padding: 1.75rem; margin-bottom: 1.25rem; }
.contact-info-item { display: flex; align-items: flex-start; gap: 14px; padding: 12px 0; border-bottom: 0.5px solid var(--border); }
.contact-info-item:last-child { border-bottom: none; }
.contact-info-item > i { font-size: 20px; color: var(--orange); margin-top: 2px; flex-shrink: 0; }
.info-label { display: block; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 2px; }
.contact-info-item a { color: var(--green); font-size: 0.9rem; }
.contact-info-item a:hover { color: var(--orange); }
.contact-info-item span { font-size: 0.9rem; color: var(--subtle); }
.social-links { display: flex; flex-direction: column; gap: 2px; margin-top: 0.75rem; }
.social-link { display: flex; align-items: center; gap: 12px; padding: 10px 12px; border-radius: var(--radius); color: var(--deep); font-size: 0.9rem; transition: background 0.2s; }
.social-link:hover { background: var(--border); }
.social-link > i:first-child { font-size: 20px; color: var(--green); }
.social-link span { flex: 1; }
.social-link > i:last-child { font-size: 14px; color: var(--muted); }
.contact-note-card { display: flex; align-items: flex-start; gap: 12px; }
.contact-note-card > i { font-size: 20px; color: var(--orange); flex-shrink: 0; margin-top: 1px; }
.contact-note-card p { font-size: 0.85rem; color: var(--subtle); line-height: 1.65; }

/* ============================================================
   RESPONSIVE — TABLET 1024px
   ============================================================ */
@media (max-width: 1024px) {
  :root { --section-v: 60px; }
  .hero-inner { gap: 2.5rem; }
  .portrait-circle { width: 240px; height: 240px; }
  .about-grid { grid-template-columns: 220px 1fr; gap: 2.5rem; }
  .contact-grid { grid-template-columns: 1fr 320px; gap: 2.5rem; }
  .footer-inner { grid-template-columns: 220px 1fr; gap: 2.5rem; }
  .rare-combo-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .rare-combo-cards { flex-direction: row; align-items: center; gap: 12px; }
  .combo-card { flex: 1; }
  .digital-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .digital-stats { grid-template-columns: repeat(4, 1fr); }
  .offerings-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   RESPONSIVE — IPAD 820px
   ============================================================ */
@media (max-width: 820px) {
  :root { --nav-h: 64px; --section-v: 52px; }

  /* NAV */
  .nav-links { position: fixed; top: var(--nav-h); right: 0; width: 260px; height: calc(100vh - var(--nav-h)); background: var(--linen); border-left: 2px solid var(--green); flex-direction: column; gap: 0; padding: 1rem 0; transform: translateX(110%); transition: transform 0.28s ease; z-index: 100; }
  .nav-links.open { transform: translateX(0); }
  .nav-links li { border-bottom: 0.5px solid var(--border); }
  .nav-links a { display: block; padding: 1rem 1.75rem; font-size: 0.9rem; }
  .nav-links a.active { border-bottom: none; padding-left: 1.5rem; border-left: 3px solid var(--orange); }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  /* HERO — stack vertically, portrait on top */
  .hero { padding: 32px 0 40px; overflow: hidden; }
  .hero-inner { grid-template-columns: 1fr; gap: 0; }
  .hero-portrait { order: -1; display: flex; flex-direction: column; align-items: center; margin-bottom: 24px; }
  .portrait-circle { width: 200px; height: 260px; border-radius: var(--radius-lg); }
  .portrait-badge { margin-top: 10px; }

  /* GENERAL */
  .offerings-strip { grid-template-columns: repeat(3, 1fr); }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .journal-grid, .journal-grid-full { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-portrait-col { display: flex; gap: 1.5rem; align-items: flex-start; }
  .portrait-placeholder-lg { width: 160px; flex-shrink: 0; }
  .skills-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .rare-combo-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .rare-combo-cards { flex-direction: column; }
  .combo-card { width: 100%; }
  .digital-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .digital-stats { grid-template-columns: repeat(2, 1fr); }
  .cta-band-inner { flex-direction: column; text-align: center; }
  .cta-band-btns { justify-content: center; }
  .offerings-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   RESPONSIVE — MOBILE 540px
   ============================================================ */
@media (max-width: 540px) {
  :root { --section-v: 40px; }

  /* PREVENT HORIZONTAL SCROLL */
  html, body { overflow-x: hidden; max-width: 100%; }
  .container { padding: 0 1rem; max-width: 100%; }

  /* TYPOGRAPHY */
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.35rem; }

  /* NAV */
  .nav-container { padding: 0 1rem; }
  .nav-logo { font-size: 1rem; }

  /* HERO */
  .hero { padding: 24px 0 32px; }
  .hero-inner { grid-template-columns: 1fr; gap: 0; overflow: hidden; }
  .hero-portrait { order: -1; display: flex; flex-direction: column; align-items: center; margin-bottom: 20px; }
  .portrait-circle { width: 160px; height: 200px; border-radius: var(--radius-lg); border: 3px solid var(--linen); outline: 2px solid var(--orange); overflow: visible; margin-top: 12px; }
.portrait-circle img { width: 100%; height: 100%; object-fit: cover; object-position: center 5%; border-radius: var(--radius-lg); }  .portrait-circle img { width: 100%; height: 100%; object-fit: cover; object-position: center 5%; }
  .portrait-badge { font-size: 0.6rem; padding: 4px 10px; margin-top: 8px; white-space: nowrap; }
  .hero-dots { margin-bottom: 8px; }
  .eyebrow { font-size: 0.6rem; letter-spacing: 0.1em; margin-bottom: 6px; }
  .hero-tagline { font-size: 0.8rem; line-height: 1.65; margin-bottom: 1.25rem; max-width: 100%; }
  .hero-btns { flex-direction: column; gap: 0.65rem; }
  .btn { width: 100%; justify-content: center; font-size: 0.75rem; padding: 10px 20px; }

  /* STRIP */
  .offerings-strip { grid-template-columns: repeat(3, 1fr); }
  .offering { padding: 12px 6px; }
  .offering i { font-size: 1.1rem; }
  .offering span { font-size: 0.55rem; letter-spacing: 0.06em; }

  /* ABOUT TEASER */
  .about-teaser-inner { flex-direction: column; gap: 0.75rem; }
  .accent-bar { width: 100%; height: 4px; min-height: auto; }
  .about-teaser-text p { max-width: 100%; font-size: 0.88rem; }

  /* STATS */
  .stats-grid { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 0.5px solid var(--border); padding: 1.25rem 1rem; }
  .stat:last-child { border-bottom: none; }
  .stat-num { font-size: 1.8rem; }

  /* RARE COMBO */
  .rare-combo-inner { grid-template-columns: 1fr; }
  .rare-combo-cards { flex-direction: column; }

  /* OFFERING CARDS */
  .offerings-cards-grid { grid-template-columns: 1fr; }
  .offering-card { padding: 1.25rem; }

  /* DIGITAL */
  .digital-inner { grid-template-columns: 1fr; }
  .digital-stats { grid-template-columns: repeat(2, 1fr); }
  .dstat-num { font-size: 1.4rem; }

  /* JOURNAL */
  .journal-grid { grid-template-columns: 1fr; }
  .journal-grid-full { grid-template-columns: 1fr; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 0.5rem; }

  /* CTA */
  .cta-band { padding: 2rem 0; }
  .cta-band-inner { flex-direction: column; text-align: center; }
  .cta-band-btns { justify-content: center; flex-direction: column; width: 100%; }

  /* ABOUT PAGE */
  .about-grid { grid-template-columns: 1fr; }
  .about-portrait-col { flex-direction: column; align-items: center; }
  .about-portrait-img { max-width: 240px; }
  .about-tags { justify-content: center; }

  /* TRIBUTE */
  .tribute-inner { flex-direction: column; gap: 1rem; }
  .tribute-accent { width: 100%; height: 4px; min-height: auto; }

  /* SKILLS */
.skills-grid {
  grid-template-columns: 1fr;
}

.timeline {
  padding-left: 80px;
}

.timeline::before {
  left: 52px;
}

.timeline-year {
  left: -80px;
  width: 42px;
  white-space: normal;
  line-height: 1.1;
  text-align: right;
  font-size: 0.72rem;
}

  /* CONTACT */
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  /* FOOTER */
  .footer-inner { grid-template-columns: 1fr; gap: 1.5rem; padding: 0 1rem 2rem; }
  .footer-links { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; padding: 1rem; font-size: 0.7rem; }

  /* POST */
  .post-meta { flex-direction: column; gap: 4px; }
  .post-author-card { flex-direction: column; }
  .post-body { font-size: 0.92rem; }
}

/* 375px and below */
@media (max-width: 375px) {
  .portrait-circle { width: 140px; height: 175px; }
  .offerings-strip { grid-template-columns: repeat(3, 1fr); }
  .offering span { font-size: 0.5rem; }
  h1 { font-size: 1.7rem; }
}