
  :root{
    --gold:#c9a227;
    --gold-soft:#e0be5a;
    --red:#a63d3d;
    --red-soft:#c25858;
    --blue:#3a6ea5;
    --blue-soft:#5f8fc4;

    --bg:#0a0e17;
    --surface:#111726;
    --surface-2:#161e30;
    --border:#252f45;
    --text:#e9e6da;
    --text-dim:#9aa3b8;
    --text-faint:#5c6478;
    --shadow: 0 20px 60px -20px rgba(0,0,0,0.6);
  }
  html[data-theme="light"]{
    --bg:#f4efe2;
    --surface:#ffffff;
    --surface-2:#faf6ea;
    --border:#e1d8bf;
    --text:#201b10;
    --text-dim:#5a5241;
    --text-faint:#a39a83;
    --shadow: 0 20px 50px -25px rgba(80,60,20,0.25);
  }
  *{box-sizing:border-box; margin:0; padding:0;}
  html{scroll-behavior:smooth;}
  body{
    background:var(--bg);
    color:var(--text);
    font-family:'Inter', sans-serif;
    transition:background .35s ease, color .35s ease;
    overflow-x:hidden;
  }
  ::selection{ background:var(--gold); color:#0a0e17; }
  a{color:inherit; text-decoration:none;}
  .mono{ font-family:'JetBrains Mono', monospace; }
  .display{ font-family:'Sora', sans-serif; }

  /* subtle background grid */
  .grid-bg{
    position:fixed; inset:0; z-index:-1; pointer-events:none;
    background-image:
      linear-gradient(var(--border) 1px, transparent 1px),
      linear-gradient(90deg, var(--border) 1px, transparent 1px);
    background-size: 64px 64px;
    opacity:.25;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 30%, transparent 75%);
  }

  /* ===== Floating Glass Navbar ===== */
  .topbar{
    position:fixed;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 50;
    width: calc(100% - 32px);
    max-width: 920px;
    background: rgba(17, 23, 38, 0.65);
    backdrop-filter: blur(20px) saturate(1.4);
    -webkit-backdrop-filter: blur(20px) saturate(1.4);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.04);
    transition: background .35s ease, border-color .35s ease, box-shadow .35s ease;
  }
  html[data-theme="light"] .topbar{
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 12px 40px rgba(80,60,20,0.18), inset 0 1px 0 rgba(255,255,255,0.6);
  }

  .topbar-inner{
    display:flex; align-items:center; justify-content:space-between;
    padding: 8px 14px;
    gap: 12px;
    position: relative;
  }
  .tl-dots{ display:flex; gap:7px; padding: 6px 0; flex-shrink: 0; }
  .tl-dots span{ width:11px; height:11px; border-radius:50%; }
  .tl-dots span:nth-child(1){ background:var(--red-soft); }
  .tl-dots span:nth-child(2){ background:var(--gold-soft); }
  .tl-dots span:nth-child(3){ background:var(--blue-soft); }

  /* Navbar Brand Logo */
  .brand-logo-wrap{
    position: relative;
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    border-radius: 9px;
    overflow: hidden;
    transition: border-color .35s ease;
  }
  .brand-logo-wrap img{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity .35s ease;
  }
  html[data-theme="dark"] .brand-logo-wrap .logo-light{ opacity: 0; }
  html[data-theme="light"] .brand-logo-wrap .logo-dark{ opacity: 0; }

  /* Hamburger */
  .hamburger{
    display:none;
    flex-direction:column;
    justify-content:center;
    gap: 4.5px;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--surface-2);
    border: 1px solid var(--border);
    cursor:pointer;
    padding: 0;
    flex-shrink: 0;
  }
  .hamburger span{
    display:block;
    width: 18px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    margin: 0 auto;
    transition: transform .25s ease, opacity .25s ease;
  }
  .hamburger.open span:nth-child(1){ transform: translateY(6.5px) rotate(45deg); }
  .hamburger.open span:nth-child(2){ opacity:0; }
  .hamburger.open span:nth-child(3){ transform: translateY(-6.5px) rotate(-45deg); }

  .tabs{ display:flex; align-items:center; }
  .tab{
    display:flex; align-items:center; gap:8px;
    padding:10px 16px; font-size:13px; color:var(--text-dim);
    border-right:1px solid var(--border);
    cursor:pointer; transition:color .2s ease, background .2s ease;
    white-space:nowrap;
    border-radius: 0;
  }
  .tab:last-child{ border-right:none; }
  .tab:hover{ color:var(--text); background:var(--surface-2); border-radius: 10px; }
  .tab.active{ color:var(--text); background:var(--bg); box-shadow: inset 0 -2px 0 var(--gold); border-radius: 10px 10px 0 0; }
  .tab-dot{ width:7px; height:7px; border-radius:50%; flex-shrink:0; }
  .tab:nth-child(1) .tab-dot{ background:yellowgreen; }
  .tab:nth-child(2) .tab-dot{ background:var(--blue-soft); }
  .tab:nth-child(3) .tab-dot{ background:blueviolet; }
  .tab:nth-child(4) .tab-dot{ background:var(--gold-soft); }
  .tab:nth-child(5) .tab-dot{ background:#5a5241; }
  .tab:nth-child(6) .tab-dot{ background:var(--red-soft);}
  .tab:nth-child(7) .tab-dot{ background: #ffd700;}

  /* Icon theme toggle */
  .theme-toggle{
    position:relative;
    display:flex; align-items:center; justify-content:center;
    width:38px; height:38px;
    background:var(--surface-2); border:1px solid var(--border);
    border-radius:12px; cursor:pointer;
    flex-shrink: 0;
    transition: border-color .2s ease, background .2s ease, transform .2s ease;
  }
  .theme-toggle:hover{ border-color:var(--gold-soft); transform:translateY(-1px); }
  .theme-toggle:active{ transform:translateY(0); }
  .theme-toggle svg{
    position:absolute;
    width:18px; height:18px;
    color:var(--gold-soft);
    transition: opacity .3s ease, transform .4s ease;
  }
  .theme-toggle .icon-sun{ opacity:0; transform:rotate(-90deg) scale(.6); }
  .theme-toggle .icon-moon{ opacity:0; transform:rotate(90deg) scale(.6); }
  html[data-theme="dark"] .theme-toggle .icon-moon{ opacity:1; transform:rotate(0) scale(1); }
  html[data-theme="light"] .theme-toggle .icon-sun{ opacity:1; transform:rotate(0) scale(1); }

  /* Mobile nav */
  @media (max-width:720px){
    .hamburger{ display:flex; }
    .tabs{
      position: absolute;
      top: calc(100% + 14px);
      left: 0;
      right: 0;
      flex-direction: column;
      background: rgba(17, 23, 38, 0.9);
      backdrop-filter: blur(24px) saturate(1.3);
      -webkit-backdrop-filter: blur(24px) saturate(1.3);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 10px;
      gap: 6px;
      box-shadow: 0 20px 60px rgba(0,0,0,0.5);
      opacity: 0;
      visibility: hidden;
      transform: translateY(-12px) scale(0.98);
      transform-origin: top center;
      transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }
    html[data-theme="light"] .tabs{
      background: rgba(255, 255, 255, 0.92);
      box-shadow: 0 20px 60px rgba(80,60,20,0.2);
    }
    .tabs.open{
      opacity: 1;
      visibility: visible;
      transform: translateY(0) scale(1);
    }
    .tab{
      width: 100%;
      border-right: none;
      border-radius: 10px;
      padding: 12px 14px;
      justify-content: flex-start;
    }
    .tab.active{
      box-shadow: none;
      background: var(--surface-2);
    }
    .tab span.label{ display:inline; }
  }

  /* ===== Hero / terminal ===== */
  .hero{
    max-width:1080px; margin:0 auto; padding:90px 24px 40px;
    display:grid; grid-template-columns: 1.1fr 0.9fr; gap:48px; align-items:center;
  }
  @media (max-width:860px){ .hero{ grid-template-columns:1fr; padding-top:90px; } }

  /* Hero Logo */
  .hero-logo-wrap{
    position: relative;
    width: 200px;
    height: 200px;
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 20px;
  }
  .hero-logo-wrap img{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity .35s ease;
  }
  html[data-theme="dark"] .hero-logo-wrap .logo-light{ opacity: 0; }
  html[data-theme="light"] .hero-logo-wrap .logo-dark{ opacity: 0; }

  .eyebrow{
    font-size:12.5px; letter-spacing:.14em; text-transform:uppercase;
    color:var(--gold-soft); margin-bottom:18px; display:flex; align-items:center; gap:10px;
  }
  .eyebrow::before{ content:''; width:10px; height:1px; background:var(--gold-soft); }

  h1.name{
    font-size:clamp(2.4rem, 5.2vw, 3.6rem);
    line-height:1.05; font-weight:800; letter-spacing:-0.02em;
    margin-bottom:18px;
  }
  h1.name .accent{
    background:linear-gradient(100deg, var(--gold-soft), var(--red-soft) 55%, var(--blue-soft));
    -webkit-background-clip:text; background-clip:text; color:transparent;
  }
  .hero-desc{ color:var(--text-dim); font-size:16.5px; max-width:46ch; line-height:1.65; margin-bottom:28px; }

  .hero-cta{ display:flex; gap:14px; flex-wrap:wrap; }
  .btn{
    padding:12px 22px; border-radius:8px; font-size:14.5px; font-weight:600;
    display:inline-flex; align-items:center; gap:8px; transition:transform .2s ease, opacity .2s ease;
    border:1px solid transparent;
  }
  .btn:hover{ transform:translateY(-2px); }
  .btn-primary{ background:var(--gold); color:#14100a; }
  .btn-ghost{ border-color:var(--border); color:var(--text); }
  .btn-ghost:hover{ border-color:var(--blue-soft); }

  /* terminal card */
  .terminal{
    background:var(--surface); border:1px solid var(--border); border-radius:12px;
    box-shadow:var(--shadow); overflow:hidden;
  }
  .terminal-head{
    display:flex; align-items:center; gap:8px; padding:11px 14px;
    border-bottom:1px solid var(--border); background:var(--surface-2);
  }
  .terminal-head span{ width:10px; height:10px; border-radius:50%; }
  .terminal-head span:nth-child(1){ background:var(--red-soft); }
  .terminal-head span:nth-child(2){ background:var(--gold-soft); }
  .terminal-head span:nth-child(3){ background:var(--blue-soft); }
  .terminal-head .fname{ margin-left:auto; font-size:11.5px; color:var(--text-faint); }
  .terminal-body{ padding:22px 20px; font-size:13.8px; line-height:1.9; min-height:210px; }
  .terminal-body .l{ color:var(--text-dim); }
  .terminal-body .prompt{ color:var(--blue-soft); }
  .terminal-body .val{ color:var(--text); font-weight:600; }
  .cursor{ display:inline-block; width:7px; height:15px; background:var(--gold); vertical-align:middle; animation: blink 1s step-end infinite; margin-left:2px;}
  @keyframes blink{ 50%{ opacity:0; } }

  /* ===== Section shell ===== */
  section{ max-width:1080px; margin:0 auto; padding:90px 24px; }
  .sec-head{ margin-bottom:44px; }
  .sec-num{ font-family:'JetBrains Mono',monospace; font-size:12.5px; color:var(--text-faint); margin-bottom:10px; }
  .sec-title{ font-size:clamp(1.7rem,3vw,2.2rem); font-weight:700; letter-spacing:-0.01em; }
  .sec-title .dot{ color:var(--gold-soft); }

  /* About */
  .about-grid{ display:grid; grid-template-columns: 1fr 1fr; gap:40px; }
  @media (max-width:760px){ .about-grid{ grid-template-columns:1fr; } }
  .about-text p{ color:var(--text-dim); line-height:1.8; font-size:15.5px; margin-bottom:16px; }
  .about-text strong{ color:var(--text); }
  .facts{ display:flex; flex-direction:column; gap:0; border-top:1px solid var(--border); }
  .fact{ display:flex; justify-content:space-between; padding:16px 0; border-bottom:1px solid var(--border); font-size:14px;}
  .fact .k{ color:var(--text-faint); }
  .fact .v{ font-weight:600; }

  /* Skills */
  .skill-groups{ display:grid; grid-template-columns:repeat(auto-fit, minmax(230px,1fr)); gap:18px; }
  .skill-card{
    background:var(--surface); border:1px solid var(--border); border-radius:12px;
    padding:24px; transition:border-color .25s ease, transform .25s ease;
  }
  .skill-card:hover{ transform:translateY(-4px); }
  .skill-card:nth-child(5n+1){ border-top:3px solid var(--gold); }
  .skill-card:nth-child(5n+2){ border-top:3px solid var(--red); }
  .skill-card:nth-child(5n+3){ border-top:3px solid var(--blue); }
  .skill-card:nth-child(5n+4){ border-top:3px solid var(--gold-soft); }
  .skill-card:nth-child(5n+5){ border-top:3px solid var(--red-soft); }
  .skill-card h3{ font-size:16px; margin-bottom:6px; font-weight:700; }
  .skill-card .cmd{ font-family:'JetBrains Mono',monospace; font-size:11px; color:var(--text-faint); margin-bottom:14px; }
  .tag-row{ display:flex; flex-wrap:wrap; gap:7px; }
  .tag{
    font-size:12px; padding:5px 10px; border-radius:6px;
    background:var(--surface-2); color:var(--text-dim); border:1px solid var(--border);
    font-family:'JetBrains Mono',monospace;
  }

  /* Projects */
  .proj-grid{ display:grid; grid-template-columns:repeat(auto-fit, minmax(260px,1fr)); gap:20px; }
  .proj-card{
    background:var(--surface); border:1px dashed var(--border); border-radius:12px;
    padding:24px; position:relative; min-height:190px; display:flex; flex-direction:column;
  }
  .proj-card .ph-badge{
    align-self:flex-start; font-family:'JetBrains Mono',monospace; font-size:10.5px;
    color:var(--text-faint); border:1px solid var(--border); padding:3px 8px; border-radius:5px; margin-bottom:14px;
  }
  .proj-card h3{ font-size:16.5px; margin-bottom:8px; }
  .proj-card p{ color:var(--text-dim); font-size:13.8px; line-height:1.6; flex:1; }
  .proj-card .stack{ display:flex; gap:6px; margin-top:14px; flex-wrap:wrap; }
  .proj-card .stack span{ font-size:11px; color:var(--text-faint); font-family:'JetBrains Mono',monospace; }
  .proj-card::before{ content:'{ }'; position:absolute; top:16px; right:18px; font-family:'JetBrains Mono',monospace; color:var(--text-faint); font-size:12px; }
  .proj-card.is-featured{ border:1px solid var(--border); border-top:3px solid var(--red); }
  .proj-card .card-actions{ display:flex; flex-wrap:wrap; gap:10px; margin-top:18px; }
  .btn-small{
    display:inline-flex; align-items:center; gap:7px;
    padding:9px 14px; border-radius:7px; font-size:12.5px; font-weight:600;
    border:1px solid var(--border); background:var(--surface-2); color:var(--text);
    cursor:pointer; transition:transform .18s ease, border-color .18s ease, background .18s ease;
    font-family:'Inter', sans-serif;
  }
  .btn-small:hover{ transform:translateY(-2px); border-color:var(--red-soft); }
  .btn-small svg{ width:14px; height:14px; flex-shrink:0; }
  .btn-small.dl{ background:var(--red); border-color:var(--red); color:#fdf3ec; }
  .btn-small.dl:hover{ background:var(--red-soft); border-color:var(--red-soft); }

  /* ===== Details modal ===== */
  .modal-overlay{
    position:fixed; inset:0; z-index:100;
    background:rgba(6,8,14,0.72);
    backdrop-filter:blur(6px);
    -webkit-backdrop-filter:blur(6px);
    display:flex; align-items:flex-start; justify-content:center;
    padding:80px 20px 40px;
    opacity:0; visibility:hidden;
    transition:opacity .25s ease, visibility .25s ease;
  }
  .modal-overlay.open{ opacity:1; visibility:visible; }
  .modal-box{
    width:100%; max-width:640px;
    background:var(--surface); border:1px solid var(--border); border-top:3px solid var(--red);
    border-radius:14px; box-shadow:var(--shadow);
    max-height:80vh; display:flex; flex-direction:column;
    transform:translateY(-16px) scale(.98);
    transition:transform .28s cubic-bezier(0.16,1,0.3,1);
  }
  .modal-overlay.open .modal-box{ transform:translateY(0) scale(1); }
  .modal-head{
    display:flex; align-items:center; justify-content:space-between;
    padding:18px 22px; border-bottom:1px solid var(--border); flex-shrink:0;
  }
  .modal-head .mh-title{ font-family:'Sora',sans-serif; font-weight:700; font-size:15.5px; }
  .modal-head .mh-title span{ color:var(--red-soft); }
  .modal-close{
    width:30px; height:30px; border-radius:8px; border:1px solid var(--border);
    background:var(--surface-2); color:var(--text-dim); cursor:pointer;
    display:flex; align-items:center; justify-content:center; flex-shrink:0;
    transition:border-color .2s ease, color .2s ease;
  }
  .modal-close:hover{ border-color:var(--red-soft); color:var(--text); }
  .modal-body{ padding:24px 26px 30px; overflow-y:auto; }
  .modal-body p{ color:var(--text-dim); font-size:14.5px; line-height:1.85; margin-bottom:16px; }
  .modal-body p:last-child{ margin-bottom:0; }
  .modal-body strong{ color:var(--text); }
  .modal-body .verse{ color:var(--gold-soft); font-style:italic; }
  .modal-body .am-title{ font-family:'Sora',sans-serif; font-weight:700; color:var(--text); font-size:16.5px; margin-bottom:18px; }

  /* Contact */
  .contact-box{
    background:var(--surface); border:1px solid var(--border); border-radius:14px;
    padding:40px; box-shadow:var(--shadow);
  }
  .contact-cmd{ font-family:'JetBrains Mono',monospace; font-size:14px; color:var(--text-dim); margin-bottom:26px; }
  .contact-cmd .p1{ color:var(--blue-soft); }
  .contact-links{ display:grid; grid-template-columns:1fr 1fr; gap:16px; }
  @media (max-width:560px){ .contact-links{ grid-template-columns:1fr; } }
  .clink{
    display:flex; align-items:center; gap:14px; padding:16px 18px;
    background:var(--surface-2); border:1px solid var(--border); border-radius:10px;
    transition:border-color .2s ease, transform .2s ease;
  }
  .clink:hover{ transform:translateY(-2px); }
  .clink:nth-child(1){ border-left:3px solid var(--red); }
  .clink:nth-child(2){ border-left:3px solid var(--blue); }
  .clink .ico{
    width:38px; height:38px; border-radius:8px; display:flex; align-items:center; justify-content:center;
    background:var(--bg); flex-shrink:0;
  }
  .clink .meta .label{ font-size:11px; color:var(--text-faint); text-transform:uppercase; letter-spacing:.06em; }
  .clink .meta .value{ font-size:14px; font-weight:600; word-break:break-word; }

  footer{
    max-width:1080px; margin:0 auto; padding:36px 24px 60px;
    display:flex; justify-content:space-between; align-items:center;
    color:var(--text-faint); font-size:12.5px; font-family:'JetBrains Mono',monospace;
    border-top:1px solid var(--border);
  }
  @media (max-width:560px){ footer{ flex-direction:column; gap:10px; text-align:center; } }

  /* ════════════════════════════════════════
     STORY MODAL — Χριστός-ኣውያን Devs
     ════════════════════════════════════════ */
  .story-modal-overlay{
    position:fixed; inset:0; z-index:100;
    background:rgba(6,8,14,0.72);
    backdrop-filter:blur(6px);
    -webkit-backdrop-filter:blur(6px);
    display:flex; align-items:flex-start; justify-content:center;
    padding:80px 20px 40px;
    opacity:0; visibility:hidden;
    transition:opacity .25s ease, visibility .25s ease;
  }
  html[data-theme="light"] .story-modal-overlay{
    background:rgba(240,235,220,0.72);
  }
  .story-modal-overlay.open{ opacity:1; visibility:visible; }
  .story-modal-box{
    width:100%; max-width:720px;
    background:var(--surface); border:1px solid var(--border); border-top:3px solid var(--gold);
    border-radius:14px; box-shadow:var(--shadow);
    max-height:80vh; display:flex; flex-direction:column;
    transform:translateY(-16px) scale(.98);
    transition:transform .28s cubic-bezier(0.16,1,0.3,1);
  }
  .story-modal-overlay.open .story-modal-box{ transform:translateY(0) scale(1); }
  .story-modal-head{
    display:flex; align-items:center; justify-content:space-between;
    padding:18px 22px; border-bottom:1px solid var(--border); flex-shrink:0;
  }
  .story-modal-head .sm-title{ font-family:'Sora',sans-serif; font-weight:700; font-size:15.5px; }
  .story-modal-head .sm-title span{ color:var(--gold-soft); }
  .story-modal-close{
    width:30px; height:30px; border-radius:8px; border:1px solid var(--border);
    background:var(--surface-2); color:var(--text-dim); cursor:pointer;
    display:flex; align-items:center; justify-content:center; flex-shrink:0;
    transition:border-color .2s ease, color .2s ease, transform .2s ease;
  }
  .story-modal-close:hover{ border-color:var(--gold-soft); color:var(--text); transform:rotate(90deg); }
  .story-modal-body{
    padding:24px 26px 30px;
    overflow-y:auto;
  }
  .story-modal-body::-webkit-scrollbar{ width:6px; }
  .story-modal-body::-webkit-scrollbar-track{ background:transparent; }
  .story-modal-body::-webkit-scrollbar-thumb{ background:var(--border); border-radius:10px; }
  .story-modal-body section{
    margin-bottom:2rem;
    animation: fadeInUp 0.6s ease both;
  }
  .story-modal-body section:nth-child(1){ animation-delay:0.05s; }
  .story-modal-body section:nth-child(2){ animation-delay:0.12s; }
  .story-modal-body section:nth-child(3){ animation-delay:0.19s; }
  .story-modal-body section:nth-child(4){ animation-delay:0.26s; }
  .story-modal-body section:nth-child(5){ animation-delay:0.33s; }
  .story-modal-body section:nth-child(6){ animation-delay:0.40s; }
  @keyframes fadeInUp{
    from{ opacity:0; transform:translateY(12px); }
    to{ opacity:1; transform:translateY(0); }
  }
  .story-modal-body h3{
    font-family:'Sora',sans-serif;
    font-size:1.05rem; font-weight:700;
    color:var(--gold-soft);
    margin-bottom:0.85rem;
    display:flex; align-items:center; gap:0.6rem;
  }
  .story-modal-body h3::before{
    content:''; display:inline-block;
    width:6px; height:6px; background:var(--gold);
    border-radius:50%; flex-shrink:0;
  }
  .story-modal-body p{
    color:var(--text-dim);
    font-size:14px; line-height:1.85;
    margin-bottom:0 rem;
  }
  .story-modal-body p:last-child{ margin-bottom:0; }
  .story-modal-body strong{ color:var(--text); }
  .story-modal-body ul{
    list-style:none; padding-left:0.2rem; margin-top:0.5rem;
  }
  .story-modal-body li{
    position:relative; padding-left:1.4rem;
    margin-bottom:0.55rem;
    font-size:13.5px; line-height:1.7;
    color:var(--text-dim);
  }
  .story-modal-body li::before{
    content:'›'; position:absolute; left:0;
    color:var(--gold); font-weight:700;
    font-size:1.1rem; line-height:1.4;
  }
  .story-final{
    margin-top:2.5rem; padding-top:2rem;
    border-top:1px solid var(--border);
    text-align:center;
  }
  .story-quote{
    position:relative; padding:1.5rem 2rem;
    background:rgba(201,162,39,0.06);
    border-radius:10px;
    border-left:3px solid var(--gold);
    margin-bottom:1.5rem;
    text-align:left;
  }
  .story-quote > span{
    position:absolute; top:-0.3rem; left:0.8rem;
    font-family:'Playfair Display', serif;
    font-size:3.5rem; color:var(--gold);
    opacity:0.25; line-height:1;
    user-select:none;
  }
  .story-quote p{
    font-family:'Playfair Display', serif;
    font-size:1.05rem; font-style:italic;
    color:var(--text);
    line-height:1.7;
    position:relative; z-index:1;
  }
  .coming-soon{
    font-family:'Sora', sans-serif;
    font-size:1.1rem; color:var(--gold);
    letter-spacing:0.03em; font-weight:700;
  }
  .story-subtitle{
    font-size:0.95rem; color:var(--text-dim);
    line-height:1.6; font-style:italic;
    max-width:90%;
  }
  .story-label{
    display:inline-block;
    font-size:0.7rem; font-weight:600;
    letter-spacing:0.15em; text-transform:uppercase;
    color:var(--gold); margin-bottom:0.6rem;
  }
  .story-header{
    padding:0 0 1.5rem;
    border-bottom:1px solid var(--border);
    position:relative; margin-bottom:1.5rem;
  }
  .story-header::after{
    content:''; position:absolute;
    bottom:-1px; left:0;
    width:60px; height:2px;
    background:linear-gradient(90deg, var(--gold), transparent);
  }
  .story-header h2{
    font-family:'Sora',sans-serif;
    font-size:1.6rem; font-weight:700;
    color:var(--text);
    line-height:1.25;
    margin-bottom:0.5rem;
  }
  @media (max-width:640px){
    .story-modal-box{ max-height:88vh; }
    .story-modal-body{ padding:1.5rem; }
    .story-header h2{ font-size:1.3rem; }
  }
