*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
 
    :root {
      --teal-dark:   #085041;
      --teal-mid:    #0F6E56;
      --teal-light:  #E1F5EE;
      --teal-border: #9FE1CB;
      --teal-bright: #5DCAA5;
      --amber-bg:    #FAEEDA;
      --amber-border:#FAC775;
      --amber-dark:  #633806;
      --amber-mid:   #854F0B;
      --amber-circle:#EF9F27;
      --text:        #1a1a1a;
      --text-muted:  #6b7280;
      --border:      #e5e7eb;
      --card-bg:     #ffffff;
      --body-bg:     #1e1e1e;
      --title: 'Chango';
      --serif: 'Lora', Georgia, serif;
      --sans:  'DM Sans', system-ui, sans-serif;
      --radius: 16px;
    }
 
    body {
      font-family: var(--sans);
      background: var(--body-bg);
      color: var(--text);
      min-height: 100vh;
    }
 
    /* ── NAV ── */
    nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1.1rem 2rem;
      max-width: 900px;
      margin: 0 auto;
      font-family: 'Chango';
    }
 
    .logo {
      font-size: 22px;
      font-weight: 500;
      color: var(--teal-dark);
      letter-spacing: -0.5px;
      text-decoration: none;
    }
 
    .logo sup {
      font-size: 11px;
      color: var(--teal-bright);
      vertical-align: super;
      font-family: var(--sans);
      letter-spacing: 1px;
    }
 
    .nav-links {
      display: flex;
      gap: 1.75rem;
      list-style: none;
    }
 
    .nav-links a {
      font-size: 13px;
      color: var(--text-muted);
      text-decoration: none;
      transition: color 0.2s;
    }
 
    .nav-links a:hover { color: var(--teal-dark); }
    .nav-links a.active { color: var(--teal-dark); font-weight: 500; }
 
    /* ── HERO ── */
    .hero {
      background: var(--teal-dark);
      padding: 3rem 2rem 2.5rem;
      position: relative;
      overflow: hidden;
    }
 
    .hero-inner {
      max-width: 900px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }
 
    .hero-kicker {
      font-size: 10px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--teal-bright);
      margin-bottom: 1rem;
    }
 
    .hero-title {
      font-family: var(--serif);
      font-size: clamp(36px, 5vw, 52px);
      font-weight: 500;
      line-height: 1.05;
      color: var(--teal-light);
      max-width: 560px;
    }
 
    .hero-title em {
      color: var(--teal-bright);
      font-style: italic;
    }
 
    .hero-sub {
      font-size: 14px;
      color: var(--teal-border);
      margin-top: 1rem;
      max-width: 380px;
      line-height: 1.7;
    }
 
    /* Decorative bubbles */
    .hero-bubble {
      position: absolute;
      border-radius: 50%;
      pointer-events: none;
    }
 
    .hb1 { width: 200px; height: 200px; border: 1.5px solid #1D9E75; right: 80px; top: -60px; opacity: 0.4; }
    .hb2 { width: 110px; height: 110px; border: 1.5px solid var(--teal-bright); right: 180px; top: 60px; opacity: 0.3; }
    .hb3 { width: 60px; height: 60px; background: #1D9E75; right: 100px; top: 90px; opacity: 0.25; }
    .hb4 { width: 30px; height: 30px; background: var(--teal-bright); right: 260px; top: 30px; opacity: 0.35; }
 
    /* ── BENTO GRID ── */
    .bento-wrapper {
      max-width: 900px;
      margin: 0 auto;
      padding: 12px 2rem 0;
    }
 
    .bento {
      display: grid;
      grid-template-columns: repeat(12, minmax(0, 1fr));
      gap: 12px;
    }
 
    /* Card base */
    .card {
      border-radius: var(--radius);
      overflow: hidden;
      border: 0.5px solid var(--border);
      background: var(--card-bg);
      transition: transform 0.2s, box-shadow 0.2s;
      cursor: pointer;
    }
 
    .card:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 24px rgba(8, 80, 65, 0.1);
    }
 
    .card.teal-bg  { background: var(--teal-light); border-color: var(--teal-border); }
    .card.amber-bg { background: var(--amber-bg);   border-color: var(--amber-border); }
    .card.dark-bg  { background: var(--teal-dark);  border-color: var(--teal-mid); }
 
    /* Grid placements */
    .g-main  { grid-column: 1 / 8;  grid-row: 1; }
    .g-tall  { grid-column: 8 / 13; grid-row: 1 / 4; }
    .g-sm1   { grid-column: 1 / 5;  grid-row: 2; }
    .g-sm2   { grid-column: 5 / 8;  grid-row: 2; }
    .g-sq    { grid-column: 1 / 8;  grid-row: 3; }
 
    /* Card internals */
    .card-body {
      padding: 1.25rem 1.3rem 1.3rem;
      height: 100%;
      display: flex;
      flex-direction: column;
    }
 
    .tag {
      font-size: 10px;
      letter-spacing: 1.2px;
      text-transform: uppercase;
      font-weight: 500;
      color: var(--teal-mid);
      margin-bottom: 0.6rem;
    }
 
    .tag.amber { color: var(--amber-mid); }
    .tag.light { color: var(--teal-bright); }
 
    .card-title {
      font-family: var(--serif);
      font-size: 17px;
      font-weight: 500;
      line-height: 1.3;
      color: var(--text);
    }
 
    .card-title.lg    { font-size: 22px; }
    .card-title.light { color: var(--teal-light); }
    .card-title.sm    { font-size: 14px; }
 
    .card-desc {
      font-size: 13px;
      color: var(--text-muted);
      margin-top: 0.5rem;
      line-height: 1.6;
    }
 
    .card-meta {
      font-size: 11px;
      color: var(--text-muted);
      margin-top: auto;
      padding-top: 0.75rem;
    }
 
    .card-meta.light { color: var(--teal-border); }
 
    /* Illustration strip */
    .illo {
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--teal-light);
      height: 90px;
      position: relative;
      overflow: hidden;
    }
 
    .illo-emoji {
      font-size: 36px;
      position: relative;
      z-index: 1;
    }
 
    .illo-dot {
      position: absolute;
      border-radius: 50%;
      background: var(--teal-border);
      opacity: 0.5;
    }
 
    /* About / tall card */
    .about-avatar {
      width: 70px;
      height: 70px;
      border-radius: 50%;
      background: var(--amber-circle);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--serif);
      font-size: 26px;
      color: #412402;
      margin-bottom: 1rem;
      flex-shrink: 0;
    }
 
    .about-name {
      font-family: var(--serif);
      font-size: 19px;
      font-weight: 500;
      color: var(--amber-dark);
      margin-bottom: 0.4rem;
    }
 
    .about-role {
      font-size: 11px;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: #BA7517;
      margin-bottom: 0.9rem;
    }
 
    .about-bio {
      font-size: 13px;
      color: var(--amber-mid);
      line-height: 1.65;
    }
 
    .about-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-top: 1rem;
    }
 
    .about-tag {
      font-size: 11px;
      background: var(--amber-border);
      color: #412402;
      border-radius: 20px;
      padding: 3px 10px;
    }
 
    .about-cv-btn {
      display: inline-block;
      margin-top: 1rem;
      font-size: 12px;
      border: 0.5px solid #BA7517;
      border-radius: 20px;
      padding: 5px 16px;
      color: var(--amber-dark);
      text-decoration: none;
      transition: background 0.2s;
    }
 
    .about-cv-btn:hover { background: var(--amber-border); }
 
    /* Wide dark card */
    .wide-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      height: 100%;
    }
 
    .wide-left {
      padding: 1.25rem 1.3rem;
      display: flex;
      flex-direction: column;
    }
 
    .wide-right {
      background: var(--teal-dark);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }
 
    .wr-bubble {
      position: absolute;
      border-radius: 50%;
      border: 1.5px solid #1D9E75;
      opacity: 0.4;
    }
 
    /* Stat card */
    .stat-num {
      font-family: var(--serif);
      font-size: 42px;
      font-weight: 500;
      color: var(--teal-mid);
      line-height: 1;
    }
 
    .stat-label {
      font-size: 12px;
      color: var(--text-muted);
      margin-top: 0.25rem;
    }
 
    /* ── FOOTER ── */
    footer {
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 1.5rem 2rem;
      margin-top: 12px;
      max-width: 90%;
      margin-left: auto;
      margin-right: auto;
      border-top: 0.5px solid var(--border);
      
      display: flex;
      flex-direction: row;
      gap: 12px;
    }
 
    footer p { font-size: 12px; color: var(--text-muted); }
    
 
    footer a {
      font-size: 12px;
      color: var(--text-muted);
    }
 
    footer a:hover { color: var(--teal-mid); }
 
    /* ── RESPONSIVE ── */
    @media (max-width: 720px) {
      nav { padding: 1rem 1.25rem; }
      .nav-links { gap: 1rem; }
      .bento-wrapper { padding: 12px 1.25rem 0; }
 
      .bento {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
 
      .g-main, .g-tall, .g-sm1, .g-sm2, .g-sq {
        grid-column: auto;
        grid-row: auto;
      }
 
      .g-main  { grid-column: 1 / -1; }
      .g-tall  { grid-column: 1 / -1; }
    }
 
    @media (max-width: 480px) {
      .bento { grid-template-columns: 1fr; }
      .g-main, .g-sm1, .g-sm2, .g-sq { grid-column: 1 / -1; }
      .hero-title { font-size: 32px; }
      .hb1, .hb2, .hb3, .hb4 { display: none; }
    }