/*
Theme Name: Blas Ramos
Theme URI: https://blasramos.com
Author: John Blas Ramos
Author URI: https://blasramos.com
Description: Official personal brand website for John Blas Ramos — Catalyst for Change | OPXIS Framework Creator | Breaking Limits Achieves Success. OPTIMA PRAXIS Founder.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: blasramos
Tags: one-page, personal, leadership, business, custom-logo, full-width-template
*/
  :root {
    --navy: #0B1730;
    --navy-mid: #162447;
    --navy-light: #1F3461;
    --red: #E52235;
    --red-glow: rgba(229, 34, 53, 0.15);
    --red-soft: #FF6B7A;
    --cream: #FBF9F7;
    --pearl: #F3F0EC;
    --smoke: #E8E4DF;
    --charcoal: #2A2D35;
    --text: #33363F;
    --text-mid: #5C6070;
    --text-light: #8A8E9C;
    --glass: rgba(255,255,255,0.06);
    --glass-border: rgba(255,255,255,0.08);
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--text);
    overflow-x: hidden;
    cursor: default;
  }

  ::selection {
    background: var(--red);
    color: #fff;
  }

  /* ===== CUSTOM CURSOR ===== */
  .cursor-dot {
    width: 8px; height: 8px;
    background: var(--red);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    transition: transform 0.1s;
    mix-blend-mode: difference;
    display: none;
  }

  .cursor-ring {
    width: 36px; height: 36px;
    border: 1.5px solid var(--red);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    transition: all 0.15s ease-out;
    opacity: 0.5;
    display: none;
  }

  @media (hover: hover) and (pointer: fine) {
    .cursor-dot, .cursor-ring { display: block; }
    body { cursor: none; }
    a, button, .story-card, .topic-card, .nav-links a { cursor: none; }
  }

  /* ===== LOADING SCREEN ===== */
  .loader {
    position: fixed;
    inset: 0;
    background: var(--navy);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s;
  }

  .loader.done {
    opacity: 0;
    visibility: hidden;
  }

  .loader-logo {
    max-height: 80px;
    max-width: 200px;
    width: auto;
    height: auto;
    object-fit: contain;
    animation: loaderPulse 1.2s ease-in-out infinite;
  }

  .loader-bar {
    width: 120px;
    height: 2px;
    background: rgba(255,255,255,0.1);
    margin-top: 2rem;
    border-radius: 2px;
    overflow: hidden;
  }

  .loader-bar-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--red), var(--red-soft));
    animation: loaderFill 1.8s ease forwards;
  }

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

  @keyframes loaderFill {
    0% { width: 0%; }
    100% { width: 100%; }
  }

  /* ===== NAVIGATION ===== */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 1.1rem 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  }

  nav.scrolled {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(24px);
    padding: 0.7rem 4rem;
    box-shadow: 0 1px 30px rgba(11, 23, 48, 0.06);
  }

  .nav-logo {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    text-decoration: none;
    position: relative;
    z-index: 1001;
  }

  .nav-logo img { height: 46px; width: auto; transition: height 0.4s; }
  nav.scrolled .nav-logo img { height: 38px; }

  .nav-logo-text { display: flex; flex-direction: column; line-height: 1.15; }

  .nav-logo-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: 0.02em;
  }

  .nav-logo-tagline {
    font-size: 0.5rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--red);
    opacity: 0.85;
  }

  .nav-links { display: flex; gap: 2.5rem; list-style: none; }

  .nav-links a {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-mid);
    text-decoration: none;
    position: relative;
    padding: 0.25rem 0;
    transition: color 0.3s;
  }

  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--navy), var(--red));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .nav-links a:hover { color: var(--navy); }
  .nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }

  /* Hamburger */
  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    z-index: 1001;
  }

  .hamburger span {
    width: 24px; height: 2px;
    background: var(--navy);
    transition: all 0.3s;
    display: block;
  }

  .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .hamburger.active span:nth-child(2) { opacity: 0; }
  .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  .mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(30px);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
  }

  .mobile-menu.open { opacity: 1; visibility: visible; }

  .mobile-menu a {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 500;
    color: var(--navy);
    text-decoration: none;
    transition: color 0.3s;
  }

  .mobile-menu a:hover { color: var(--red); }

  /* ===== HERO ===== */
  .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 0 4rem;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 50% 50% at 80% 30%, var(--red-glow), transparent),
      radial-gradient(ellipse 70% 60% at 15% 85%, rgba(11, 23, 48, 0.05), transparent),
      var(--cream);
  }

  /* Animated geometric shapes */
  .hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    animation: shapeIn 1.5s ease forwards;
  }

  .hero-shape-1 {
    top: 8%; right: 8%;
    width: 500px; height: 500px;
    border: 1px solid rgba(11, 23, 48, 0.04);
    animation-delay: 0.5s;
  }

  .hero-shape-2 {
    top: 15%; right: 13%;
    width: 360px; height: 360px;
    border: 1px solid rgba(229, 34, 53, 0.05);
    animation-delay: 0.7s;
  }

  .hero-shape-3 {
    top: 23%; right: 19%;
    width: 210px; height: 210px;
    background: linear-gradient(135deg, rgba(11, 23, 48, 0.03), rgba(229, 34, 53, 0.03));
    animation-delay: 0.9s;
    animation: shapeIn 1.5s ease forwards, shapeFloat 10s 2.5s ease-in-out infinite;
  }

  @keyframes shapeIn {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
  }

  @keyframes shapeFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(-10px, -15px) rotate(1deg); }
    66% { transform: translate(8px, -8px) rotate(-1deg); }
  }

  /* Floating dots */
  .hero-dots {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
  }

  .hero-dot {
    position: absolute;
    width: 3px; height: 3px;
    border-radius: 50%;
    background: var(--red);
    opacity: 0;
    animation: dotFloat 6s ease-in-out infinite;
  }

  .hero-dot:nth-child(1) { top: 20%; left: 75%; animation-delay: 0s; }
  .hero-dot:nth-child(2) { top: 35%; left: 85%; animation-delay: 1.5s; }
  .hero-dot:nth-child(3) { top: 60%; left: 70%; animation-delay: 3s; }
  .hero-dot:nth-child(4) { top: 45%; left: 90%; animation-delay: 4.5s; opacity: 0.3; width: 2px; height: 2px; }
  .hero-dot:nth-child(5) { top: 70%; left: 80%; animation-delay: 2s; opacity: 0.2; }

  @keyframes dotFloat {
    0%, 100% { opacity: 0; transform: translateY(0); }
    20% { opacity: 0.4; }
    80% { opacity: 0.4; }
    50% { transform: translateY(-30px); }
  }

  .hero-content {
    position: relative;
    max-width: 700px;
    z-index: 2;
    padding: 8rem 0;
  }

  .hero-tag {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 2.5rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    opacity: 0;
    animation: heroFade 1s 0.8s forwards;
  }

  .hero-tag::before {
    content: '';
    width: 50px; height: 2px;
    background: linear-gradient(90deg, var(--red), transparent);
  }

  .hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3.2rem, 6.5vw, 5.8rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--navy);
    margin-bottom: 2.2rem;
    opacity: 0;
    animation: heroFade 1s 1s forwards;
  }

  .hero-title .line {
    display: block;
    overflow: hidden;
  }

  .hero-title .line-inner {
    display: block;
    transform: translateY(100%);
    animation: lineReveal 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  }

  .hero-title .line:nth-child(1) .line-inner { animation-delay: 1s; }
  .hero-title .line:nth-child(2) .line-inner { animation-delay: 1.15s; }

  @keyframes lineReveal {
    to { transform: translateY(0); }
  }

  .hero-title em {
    font-style: italic;
    position: relative;
  }

  .hero-title em::after {
    content: '';
    position: absolute;
    bottom: 4px; left: 0; right: 0;
    height: 8px;
    background: var(--red-glow);
    z-index: -1;
    transform: scaleX(0);
    transform-origin: left;
    animation: underlineReveal 0.6s 1.8s ease forwards;
  }

  @keyframes underlineReveal {
    to { transform: scaleX(1); }
  }

  .hero-subtitle {
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.85;
    color: var(--text-mid);
    max-width: 520px;
    margin-bottom: 3.5rem;
    opacity: 0;
    animation: heroFade 1s 1.3s forwards;
  }

  .hero-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
    opacity: 0;
    animation: heroFade 1s 1.5s forwards;
  }

  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    padding: 1.1rem 2.8rem;
    background: var(--navy);
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
  }

  .btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--red);
    transform: translateX(-101%);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .btn-primary:hover::before { transform: translateX(0); }
  .btn-primary:hover { box-shadow: 0 12px 35px rgba(229, 34, 53, 0.25); }

  .btn-primary span, .btn-primary svg {
    position: relative;
    z-index: 1;
  }

  .btn-primary svg { transition: transform 0.3s; }
  .btn-primary:hover svg { transform: translateX(5px); }

  .btn-ghost {
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-mid);
    text-decoration: none;
    transition: color 0.3s;
  }

  .btn-ghost:hover { color: var(--red); }

  @keyframes heroFade {
    from { opacity: 0; transform: translateY(25px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* Scroll indicator */
  .scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    opacity: 0;
    animation: heroFade 1s 2s forwards;
  }

  .scroll-indicator span {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-light);
  }

  .scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--red), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
  }

  @keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.3; transform: scaleY(0.6); }
  }

  /* ===== SCRIPTURE BANNER ===== */
  .scripture {
    padding: 7rem 4rem;
    background: var(--navy);
    position: relative;
    overflow: hidden;
  }

  .scripture-bg-text {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Playfair Display', serif;
    font-size: clamp(8rem, 20vw, 18rem);
    font-weight: 800;
    color: rgba(255,255,255,0.015);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
  }

  .scripture-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(229, 34, 53, 0.08), transparent 70%);
    pointer-events: none;
  }

  .scripture-content {
    position: relative;
    text-align: center;
    max-width: 750px;
    margin: 0 auto;
  }

  .scripture-cross {
    font-size: 1.5rem;
    color: var(--red);
    opacity: 0.4;
    margin-bottom: 2rem;
    display: block;
  }

  .scripture-quote {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 3.2vw, 2.5rem);
    font-weight: 400;
    font-style: italic;
    color: rgba(255,255,255,0.92);
    line-height: 1.55;
    margin-bottom: 2rem;
  }

  .scripture-ref {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--red-soft);
    opacity: 0.6;
  }

  .scripture-line {
    width: 40px; height: 1px;
    background: var(--red);
    opacity: 0.3;
    margin: 1.5rem auto 0;
  }

  /* ===== SECTION COMMON ===== */
  section { padding: 8rem 4rem; }

  .section-header { margin-bottom: 5rem; }

  .section-tag {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .section-tag::before {
    content: '';
    width: 30px; height: 2px;
    background: linear-gradient(90deg, var(--navy), var(--red));
  }

  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    font-weight: 600;
    line-height: 1.12;
    color: var(--navy);
  }

  .section-subtitle {
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-mid);
    margin-top: 1.5rem;
    max-width: 500px;
  }

  /* ===== ABOUT ===== */
  .about { background: var(--pearl); position: relative; overflow: hidden; }

  .about-corner {
    position: absolute;
    top: 0; right: 0;
    width: 300px; height: 300px;
    background: linear-gradient(225deg, rgba(229, 34, 53, 0.03), transparent);
    pointer-events: none;
  }

  .about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 6rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
  }

  .about-visual {
    position: relative;
  }

  .about-image-frame {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
  }

  .about-image-frame::after {
    content: '';
    position: absolute;
    inset: 16px;
    border: 1px solid rgba(229, 34, 53, 0.2);
    pointer-events: none;
    z-index: 2;
    transition: inset 0.5s ease;
  }

  .about-image-frame:hover::after { inset: 12px; }

  .about-collage {
    position: relative;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    grid-template-rows: 1fr 1fr;
    gap: 12px;
    height: 520px;
  }

  .collage-main {
    grid-row: 1 / 3;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 20px 50px rgba(11,23,48,0.25);
  }

  .collage-top, .collage-bottom {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(11,23,48,0.2);
  }

  .collage-top { transform: translateY(-8px); }
  .collage-bottom { transform: translateY(8px); }

  .collage-main::after,
  .collage-top::after,
  .collage-bottom::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(229,34,53,0.15);
    border-radius: 4px;
    pointer-events: none;
    z-index: 2;
  }

  .collage-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.6s ease;
  }

  .collage-main:hover .collage-photo,
  .collage-top:hover .collage-photo,
  .collage-bottom:hover .collage-photo { transform: scale(1.04); }

  .about-image-placeholder {
    width: 100%; height: 100%;
    background: linear-gradient(170deg, var(--navy) 0%, var(--navy-mid) 45%, var(--red) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .about-initials {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 300;
    color: rgba(255,255,255,0.08);
    letter-spacing: 0.1em;
  }

  .about-badge {
    position: absolute;
    bottom: auto; top: 50%; right: -20px;
    transform: translateY(-50%);
    width: 140px; height: 140px;
    background: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    box-shadow: 0 15px 50px rgba(229, 34, 53, 0.3);
  }

  .about-badge-inner {
    text-align: center;
    color: #fff;
  }

  .about-badge-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1;
  }

  .about-badge-label {
    font-size: 0.55rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.85;
    margin-top: 0.15rem;
  }

  .about-text p {
    font-size: 1.05rem;
    line-height: 1.95;
    color: var(--text-mid);
    margin-bottom: 1.5rem;
    font-weight: 300;
  }

  .about-text p strong {
    font-weight: 600;
    color: var(--navy);
  }

  .about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(11, 23, 48, 0.08);
  }

  .stat { text-align: center; }

  .stat-value {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 0.5rem;
  }

  .stat-value .accent { color: var(--red); }

  .stat-desc {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-light);
  }

  /* ===== TRACK RECORD ===== */
  .track {
    background: var(--cream);
    padding: 8rem 4rem;
    position: relative;
  }

  .track-inner {
    max-width: 1200px;
    margin: 0 auto;
  }

  .track-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 4rem;
  }

  .track-col-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--red);
    display: inline-block;
  }

  .track-item {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(11, 23, 48, 0.06);
  }

  .track-item:last-child { border-bottom: none; padding-bottom: 0; margin-bottom: 0; }

  .track-year {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--red);
    min-width: 70px;
    padding-top: 0.15rem;
  }

  .track-info h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.2rem;
    line-height: 1.35;
  }

  .track-info .track-org {
    font-size: 0.82rem;
    color: var(--text-mid);
    font-weight: 400;
    margin-bottom: 0.35rem;
  }

  .track-info .track-desc {
    font-size: 0.82rem;
    color: var(--text-light);
    font-weight: 300;
    line-height: 1.6;
  }

  .cred-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .cred-card {
    padding: 1.5rem;
    background: var(--pearl);
    border-left: 3px solid var(--red);
    transition: all 0.3s;
  }

  .cred-card:hover { transform: translateX(4px); }

  .cred-card h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.25rem;
    line-height: 1.35;
  }

  .cred-card .cred-sub {
    font-size: 0.72rem;
    color: var(--text-light);
    font-weight: 400;
  }

  /* Impact numbers strip */
  .impact-strip {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    background: var(--navy);
    margin-top: 5rem;
  }

  .impact-item {
    padding: 2.5rem 1.5rem;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.05);
    transition: background 0.3s;
  }

  .impact-item:last-child { border-right: none; }
  .impact-item:hover { background: rgba(229, 34, 53, 0.06); }

  .impact-num {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 0.5rem;
  }

  .impact-num .red { color: var(--red); }

  .impact-label {
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
  }

  @media (max-width: 1024px) {
    .impact-strip { grid-template-columns: repeat(3, 1fr); }
    .impact-item:nth-child(3) { border-right: none; }
  }

  @media (max-width: 768px) {
    .track-columns { grid-template-columns: 1fr; gap: 3rem; }
    .cred-grid { grid-template-columns: 1fr; }
    .impact-strip { grid-template-columns: repeat(2, 1fr); }
    .impact-item:nth-child(2n) { border-right: none; }
    .track, .stories, .topics, .connect, .about, .scripture { padding-left: 1.5rem; padding-right: 1.5rem; }
  }

  /* ===== STORIES ===== */
  .stories { max-width: 1300px; margin: 0 auto; }

  .stories-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 5rem;
  }

  .stories-header .section-header { margin-bottom: 0; }

  .view-all {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--navy);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s;
    flex-shrink: 0;
  }

  .view-all:hover { color: var(--red); }
  .view-all svg { transition: transform 0.3s; }
  .view-all:hover svg { transform: translateX(4px); }

  .stories-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    grid-template-rows: auto auto;
    gap: 1.75rem;
  }

  .stories-full {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    max-width: 860px;
    margin: 0 auto;
  }

  .story-full {
    border-left: 3px solid var(--red);
    padding-left: 2.5rem;
  }

  .story-full-header {
    margin-bottom: 2rem;
  }

  .story-full-header .story-cat {
    margin-bottom: 0.75rem;
  }

  .story-full-header .story-h {
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    margin-bottom: 1rem;
  }

  .story-full-body .story-p {
    margin-bottom: 1.25rem;
    font-size: 1rem;
    line-height: 1.85;
  }

  .story-full-body .story-p:last-child {
    margin-bottom: 0;
  }

  .nanay-poem {
    margin-top: 2.5rem;
    padding: 2rem 2.5rem;
    background: linear-gradient(135deg, var(--navy) 0%, #1a2a4a 100%);
    border-radius: 6px;
    color: #fff;
  }

  .nanay-poem-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
  }

  .nanay-poem-lines {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-bottom: 1.75rem;
  }

  .nanay-poem-lines p {
    font-size: 0.98rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.88);
    margin: 0;
  }

  .nanay-letter {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--red);
    margin-right: 0.25rem;
  }

  .nanay-poem-close {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-style: italic;
    color: rgba(255,255,255,0.9);
    margin: 0;
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 1.25rem;
  }

  .story-card {
    position: relative;
    background: #fff;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    border: 1px solid transparent;
  }

  .story-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 70px rgba(11, 23, 48, 0.1);
    border-color: rgba(229, 34, 53, 0.12);
  }

  .story-card.featured { grid-row: span 2; }

  .story-thumb {
    width: 100%; overflow: hidden;
    position: relative;
  }

  .story-card.featured .story-thumb { height: 380px; }
  .story-card:not(.featured) .story-thumb { height: 200px; }

  .story-thumb-bg {
    width: 100%; height: 100%;
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
  }

  .story-card:hover .story-thumb-bg { transform: scale(1.08); }

  .story-thumb-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11, 23, 48, 0.5), transparent 60%);
    pointer-events: none;
  }

  .st-1 { background: linear-gradient(135deg, #162447, #3A1525); }
  .st-2 { background: linear-gradient(135deg, #E52235 0%, #8B1525 100%); }
  .st-3 { background: linear-gradient(135deg, #1F3461, #0B1730); }
  .st-4 { background: linear-gradient(135deg, #2A1530, #162447); }
  .st-5 { background: linear-gradient(135deg, #0B1730 0%, #B8152A 100%); }

  .story-body { padding: 2rem 2rem 2.25rem; }
  .story-card.featured .story-body { padding: 2.5rem; }

  .story-cat {
    display: inline-block;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.5rem;
  }

  .story-cat::before {
    content: '';
    position: absolute;
    left: 0; top: 50%;
    transform: translateY(-50%);
    width: 8px; height: 2px;
    background: var(--red);
  }

  .story-h {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--navy);
    margin-bottom: 0.85rem;
    transition: color 0.3s;
  }

  .story-card.featured .story-h { font-size: 1.9rem; }
  .story-card:hover .story-h { color: var(--red); }

  .story-p {
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--text-mid);
    font-weight: 300;
  }

  .story-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    font-size: 0.7rem;
    color: var(--text-light);
    font-weight: 500;
  }

  .story-meta .dot {
    width: 3px; height: 3px;
    border-radius: 50%;
    background: var(--text-light);
  }

  /* ===== TOPICS ===== */
  .topics {
    background: var(--navy);
    padding: 8rem 4rem;
    position: relative;
    overflow: hidden;
  }

  .topics-mesh {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 40% 40% at 80% 20%, rgba(229, 34, 53, 0.06), transparent),
      radial-gradient(ellipse 50% 50% at 10% 80%, rgba(31, 52, 97, 0.3), transparent);
    pointer-events: none;
  }

  .topics .section-tag { color: var(--red-soft); }
  .topics .section-title { color: #fff; }
  .topics .section-subtitle { color: rgba(255,255,255,0.5); }

  .topics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
  }

  .topic-card {
    padding: 2.5rem 2rem 2rem;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    cursor: pointer;
  }

  .topic-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--red), var(--red-soft));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .topic-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(229, 34, 53, 0.2);
    transform: translateY(-6px);
  }

  .topic-card:hover::before { transform: scaleX(1); }

  .topic-icon {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    display: block;
  }

  .topic-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.8rem;
  }

  .topic-desc {
    font-size: 0.85rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.4);
    font-weight: 300;
  }

  .topic-count {
    position: absolute;
    top: 1.5rem; right: 1.5rem;
    font-family: 'Playfair Display', serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--red);
    opacity: 0.4;
  }

  /* ===== OPXIS FRAMEWORK ===== */
  .opxis {
    padding: 8rem 4rem;
    background: var(--cream);
    position: relative;
    overflow: hidden;
  }

  .opxis-inner { max-width: 1200px; margin: 0 auto; }

  .opxis-phases {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    margin-top: 4rem;
    position: relative;
  }

  .opxis-phases::before {
    content: '';
    position: absolute;
    top: 60px; left: 10%; right: 10%;
    height: 2px;
    background: linear-gradient(90deg, var(--navy), var(--red));
    opacity: 0.15;
    z-index: 0;
  }

  .phase {
    text-align: center;
    position: relative;
    padding: 0 0.75rem;
    z-index: 1;
  }

  .phase-number {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--navy);
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    position: relative;
    transition: all 0.4s;
  }

  .phase:hover .phase-number {
    background: var(--red);
    transform: scale(1.15);
    box-shadow: 0 8px 25px rgba(229, 34, 53, 0.3);
  }

  .phase-letter {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--red);
    line-height: 1;
    margin-bottom: 0.25rem;
  }

  .phase-word {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.75rem;
  }

  .phase-desc {
    font-size: 0.8rem;
    color: var(--text-mid);
    font-weight: 300;
    line-height: 1.6;
  }

  /* ===== GREAT VALUES ===== */
  .values-strip {
    background: var(--pearl);
    padding: 5rem 4rem;
  }

  .values-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }

  .values-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 2.5rem;
  }

  .values-grid {
    display: flex;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
  }

  .value-item {
    padding: 1.5rem 2.5rem;
    text-align: center;
    position: relative;
  }

  .value-item::after {
    content: '';
    position: absolute;
    right: 0; top: 25%; bottom: 25%;
    width: 1px;
    background: rgba(11, 23, 48, 0.08);
  }

  .value-item:last-child::after { display: none; }

  .value-letter {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--navy), var(--red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.35rem;
  }

  .value-name {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 0.2rem;
  }

  .value-full {
    font-size: 0.68rem;
    color: var(--text-mid);
    font-weight: 400;
  }

  /* ===== FOUNDING CTA ===== */
  .founding {
    padding: 6rem 4rem;
    background: linear-gradient(135deg, var(--navy) 0%, #1a1a3e 50%, var(--red) 150%);
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .founding::before {
    content: '10';
    position: absolute;
    top: 50%; right: 8%;
    transform: translateY(-50%);
    font-family: 'Playfair Display', serif;
    font-size: clamp(10rem, 25vw, 22rem);
    font-weight: 800;
    color: rgba(255,255,255,0.03);
    pointer-events: none;
  }

  .founding-inner {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
  }

  .founding-badge {
    display: inline-block;
    padding: 0.45rem 1.25rem;
    border: 1px solid rgba(255,255,255,0.2);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--red-soft);
    margin-bottom: 2rem;
  }

  .founding h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 1.5rem;
  }

  .founding p {
    font-size: 1rem;
    font-weight: 300;
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
    margin-bottom: 2.5rem;
  }

  .founding-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    padding: 1.15rem 3rem;
    background: var(--red);
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.4s ease;
  }

  .founding-cta:hover {
    background: #fff;
    color: var(--navy);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
  }

  .founding-cta svg { transition: transform 0.3s; }
  .founding-cta:hover svg { transform: translateX(5px); }

  @media (max-width: 768px) {
    .opxis-phases { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
    .opxis-phases::before { display: none; }
    .values-grid { flex-direction: column; align-items: center; }
    .value-item::after { display: none; }
    .value-item { padding: 1rem 2rem; }
    .founding { padding: 4rem 1.5rem; }
    .opxis, .values-strip { padding-left: 1.5rem; padding-right: 1.5rem; }
  }

  /* ===== CONNECT ===== */
  .connect {
    padding: 8rem 4rem;
    text-align: center;
    background: var(--pearl);
    position: relative;
    overflow: hidden;
  }

  .connect-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: repeating-linear-gradient(
      0deg, transparent, transparent 60px,
      var(--navy) 60px, var(--navy) 61px
    ),
    repeating-linear-gradient(
      90deg, transparent, transparent 60px,
      var(--navy) 60px, var(--navy) 61px
    );
    pointer-events: none;
  }

  .connect-inner {
    max-width: 620px;
    margin: 0 auto;
    position: relative;
  }

  .connect .section-tag { justify-content: center; }
  .connect .section-tag::before { display: none; }
  .connect .section-header { margin-bottom: 2rem; }
  .connect .section-subtitle { max-width: none; margin: 1rem auto 0; }

  .connect-actions {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .connect-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    padding: 1.15rem 3rem;
    background: var(--navy);
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
  }

  .connect-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--red);
    transform: translateX(-101%);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .connect-cta:hover::before { transform: translateX(0); }
  .connect-cta:hover { box-shadow: 0 12px 35px rgba(229, 34, 53, 0.25); }

  .connect-cta span, .connect-cta svg {
    position: relative; z-index: 1;
  }

  .connect-cta svg { transition: transform 0.3s; }
  .connect-cta:hover svg { transform: translateX(5px); }

  .connect-phone {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 300;
  }

  .connect-phone a {
    color: var(--navy);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
  }

  .connect-phone a:hover { color: var(--red); }

  /* ===== FOOTER ===== */
  footer {
    padding: 5rem 4rem 3rem;
    background: var(--navy);
    position: relative;
    overflow: hidden;
  }

  .footer-glow {
    position: absolute;
    bottom: -100px; left: 50%;
    transform: translateX(-50%);
    width: 600px; height: 300px;
    background: radial-gradient(ellipse, rgba(229, 34, 53, 0.04), transparent);
    pointer-events: none;
  }

  .footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto 4rem;
    gap: 4rem;
    position: relative;
  }

  .footer-brand { max-width: 360px; }

  .footer-logo {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    text-decoration: none;
    margin-bottom: 1.5rem;
  }

  .footer-logo img {
    height: 42px;
    width: auto;
    filter: brightness(0) invert(1);
  }

  .footer-logo-text { display: flex; flex-direction: column; line-height: 1.15; }

  .footer-logo-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
  }

  .footer-logo-sub {
    font-size: 0.48rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--red-soft);
    opacity: 0.5;
  }

  .footer-desc {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.35);
    line-height: 1.8;
    font-weight: 300;
  }

  .footer-nav { display: flex; gap: 5rem; }

  .footer-col h4 {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.25);
    margin-bottom: 1.5rem;
  }

  .footer-col a {
    display: block;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    margin-bottom: 0.85rem;
    font-weight: 300;
    transition: all 0.3s;
  }

  .footer-col a:hover { color: #fff; transform: translateX(3px); }

  .footer-divider {
    max-width: 1200px;
    margin: 0 auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
  }

  .footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.25);
    font-weight: 400;
    letter-spacing: 0.03em;
  }

  .footer-bottom-right {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: rgba(255,255,255,0.2);
    font-size: 0.82rem;
  }

  /* ===== REVEAL ===== */
  .reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .reveal.visible { opacity: 1; transform: translateY(0); }

  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .reveal-delay-4 { transition-delay: 0.4s; }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 1024px) {
    .topics-grid { grid-template-columns: repeat(2, 1fr); }
    .stories-grid { grid-template-columns: 1fr 1fr; }
    .story-card.featured { grid-row: span 1; }
    .story-card.featured .story-thumb { height: 260px; }
    .hero-shape-1, .hero-shape-2, .hero-shape-3, .hero-dots { display: none; }
  }

  @media (max-width: 768px) {
    nav { padding: 0.9rem 1.5rem; }
    nav.scrolled { padding: 0.6rem 1.5rem; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .mobile-menu { display: flex; }
    section, .topics, .scripture, .connect, footer { padding-left: 1.5rem; padding-right: 1.5rem; }
    .hero { padding: 0 1.5rem; }
    .hero-content { padding: 7rem 0 5rem; }
    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
    .about-badge { width: 110px; height: 110px; top: 50%; bottom: auto; right: -10px; transform: translateY(-50%); }
    .about-badge-number { font-size: 2rem; }
    .stories-grid { grid-template-columns: 1fr; }
    .story-card.featured .story-h { font-size: 1.5rem; }
    .stories-header { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
    .topics-grid { grid-template-columns: 1fr; }
    .footer-top { flex-direction: column; gap: 3rem; }
    .footer-nav { gap: 3rem; flex-wrap: wrap; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
    .about-stats { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
    .hero-actions { flex-direction: column; align-items: flex-start; gap: 1rem; }
    .scroll-indicator { display: none; }
  }
