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

  :root {
    --black: #1A1A1A;
    --blue: #185FA5;
    --blue-deep: #0C447C;
    --amber: #BA7517;
    --amber-light: #EF9F27;
    --white: #FFFFFF;
    --offwhite: #F7F5F0;
    --gray: #888780;
    --light-gray: #E8E6E0;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Montserrat', sans-serif;
    background: var(--offwhite);
    color: var(--black);
    overflow-x: hidden;
    cursor: none;
  }

  /* Custom cursor */
  .cursor {
    width: 10px; height: 10px;
    background: var(--amber);
    border-radius: 50%;
    position: fixed; top: 0; left: 0;
    pointer-events: none; z-index: 100002;
    transition: transform 0.15s ease;
  }
  .cursor-ring {
    width: 36px; height: 36px;
    border: 1.5px solid var(--blue);
    border-radius: 50%;
    position: fixed; top: 0; left: 0;
    pointer-events: none; z-index: 100001;
    transition: transform 0.35s ease, width 0.3s, height 0.3s;
  }

  /* NAV */
  nav {
    position: fixed; top: 0; width: 100%; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 24px 60px;
    background: rgba(247,245,240,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 0.5px solid var(--light-gray);
  }

  .nav-logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 22px;
    letter-spacing: 3px;
    color: var(--black);
    text-decoration: none;
    display: flex; align-items: center; gap: 4px;
  }
  .nav-logo .i-blue { color: var(--blue); position: relative; display: inline-block; }
  .nav-logo .innovation-tag {
    font-size: 5.5px;
    font-weight: 700;
    color: var(--amber);
    letter-spacing: 0.8px;
    display: block;
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    line-height: 1.6;
    text-align: center;
  }

  .nav-links { display: flex; gap: 40px; list-style: none; }
  .nav-links a {
    font-size: 11px; font-weight: 400;
    letter-spacing: 3px; text-decoration: none;
    color: var(--gray);
    transition: color 0.3s;
    text-transform: uppercase;
  }
  .nav-links a:hover { color: var(--blue); }
  .nav-links a.active-page { color: var(--blue); border-bottom: 2px solid var(--amber); padding-bottom: 2px; }
  .page-section { display: none; }
  .page-section.active-section { display: block; }

  /* HERO */
  .hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-top: 100px;
    overflow: hidden;
  }

  .hero-left {
    padding: 80px 60px 80px 60px;
    display: flex; flex-direction: column; justify-content: center;
  }

  .hero-eyebrow {
    font-size: 10px; font-weight: 400;
    letter-spacing: 5px; color: var(--amber);
    text-transform: uppercase; margin-bottom: 24px;
    opacity: 0; animation: fadeUp 0.8s 0.2s forwards;
  }

  .hero-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: clamp(42px, 5vw, 72px);
    line-height: 1;
    letter-spacing: -1px;
    color: var(--black);
    margin-bottom: 8px;
    opacity: 0; animation: fadeUp 0.8s 0.4s forwards;
  }
  .hero-name .i-letter { color: var(--blue); }

  .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 32px;
    opacity: 0; animation: fadeUp 0.8s 0.6s forwards;
  }

  .hero-summary {
    font-size: 13px; font-weight: 400;
    line-height: 1.9; color: #555;
    max-width: 480px;
    margin-bottom: 48px;
    opacity: 0; animation: fadeUp 0.8s 0.8s forwards;
  }

  .hero-cta {
    display: flex; gap: 16px; flex-wrap: wrap;
    opacity: 0; animation: fadeUp 0.8s 1s forwards;
  }

  .btn-primary {
    padding: 14px 32px;
    background: var(--blue);
    color: white;
    font-size: 10px; font-weight: 700;
    letter-spacing: 3px; text-transform: uppercase;
    border: none; cursor: none;
    transition: background 0.3s, transform 0.2s;
    text-decoration: none; display: inline-block;
  }
  .btn-primary:hover { background: var(--blue-deep); transform: translateY(-2px); }

  .btn-secondary {
    padding: 14px 32px;
    background: transparent;
    color: var(--black);
    font-size: 10px; font-weight: 700;
    letter-spacing: 3px; text-transform: uppercase;
    border: 1px solid var(--black); cursor: none;
    transition: all 0.3s;
    text-decoration: none; display: inline-block;
  }
  .btn-secondary:hover { background: var(--black); color: white; }

  .hero-right {
    background: var(--black);
    position: relative;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
  }

  .hero-right-inner {
    text-align: center; padding: 60px 40px;
    opacity: 0; animation: fadeIn 1.2s 1.2s forwards;
  }

  .hero-watchword {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 13px; color: rgba(255,255,255,0.4);
    letter-spacing: 3px; margin-bottom: 40px;
  }

  .hero-big-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800; font-size: 80px;
    color: white; line-height: 1;
    letter-spacing: -2px;
  }
  .hero-big-text .i-w { color: var(--blue); position: relative; }
  .hero-big-i-label {
    font-size: 7px; font-weight: 700;
    color: var(--amber); letter-spacing: 1.5px;
    display: block;
    position: absolute;
    top: -28px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    text-align: center;
    line-height: 1.7;
  }
  .hero-big-text .i-w { position: relative; display: inline-block; }

  .hero-stats {
    display: flex; gap: 40px; justify-content: center;
    margin-top: 60px;
  }
  .stat { text-align: center; }
  .stat-num {
    font-weight: 800; font-size: 32px; color: white;
    display: block;
  }
  .stat-label {
    font-size: 9px; font-weight: 400;
    letter-spacing: 3px; color: rgba(255,255,255,0.4);
    text-transform: uppercase; margin-top: 4px;
  }

  .hero-deco {
    position: absolute; bottom: 40px; right: 40px;
    width: 80px; height: 80px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
  }
  .hero-deco::after {
    content: '';
    width: 50px; height: 50px;
    border: 1px solid var(--amber);
    border-radius: 50%;
    opacity: 0.4;
  }

  /* TICKER */
  .ticker {
    background: var(--blue);
    padding: 18px 0;
    overflow: hidden;
    white-space: nowrap;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .ticker-inner {
    display: inline-flex;
    gap: 0;
    animation: ticker 40s linear infinite;
    width: max-content;
  }
  .ticker-item {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    color: white;
    text-transform: uppercase;
    padding: 0 30px;
    display: flex;
    align-items: center;
    gap: 30px;
  }
  .ticker-dot { 
    color: var(--amber-light);
    font-size: 8px;
  }

  @keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  /* SECTIONS */
  section { padding: 100px 60px; }

  .section-label {
    font-size: 9px; font-weight: 700;
    letter-spacing: 5px; color: var(--amber);
    text-transform: uppercase; margin-bottom: 16px;
  }

  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 300; line-height: 1.1;
    color: var(--black); margin-bottom: 48px;
  }

  /* ABOUT */
  .about { background: white; }
  .about-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: start;
  }
  .about-text {
    font-size: 14px; line-height: 2;
    color: #555;
  }
  .about-text p { margin-bottom: 20px; }

  .about-right { display: flex; flex-direction: column; gap: 24px; }

  .skill-row {
    display: flex; align-items: center;
    justify-content: space-between;
    padding-bottom: 16px;
    border-bottom: 0.5px solid var(--light-gray);
  }
  .skill-name {
    font-size: 11px; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase;
    color: var(--black);
  }
  .skill-bar {
    flex: 1; height: 2px;
    background: var(--light-gray);
    margin: 0 24px; position: relative;
  }
  .skill-fill {
    position: absolute; top: 0; left: 0;
    height: 100%; background: var(--blue);
  }
  .skill-pct {
    font-size: 10px; font-weight: 700;
    color: var(--amber); letter-spacing: 1px;
  }

  /* TIMELINE */
  .timeline-section { background: var(--offwhite); }
  .timeline { position: relative; padding-left: 40px; }
  .timeline::before {
    content: '';
    position: absolute; left: 0; top: 0; bottom: 0;
    width: 1px; background: var(--blue); opacity: 0.2;
  }

  .timeline-item {
    position: relative; margin-bottom: 48px;
    padding-left: 32px;
  }
  .timeline-dot {
    position: absolute; left: -47px; top: 4px;
    width: 14px; height: 14px;
    border-radius: 50%; background: var(--blue);
    border: 3px solid var(--offwhite);
  }
  .timeline-dot.amber { background: var(--amber); }
  .timeline-dot.coral { background: #993C1D; }

  .timeline-year {
    font-size: 10px; font-weight: 700;
    letter-spacing: 3px; color: var(--amber);
    text-transform: uppercase; margin-bottom: 6px;
  }
  .timeline-role {
    font-weight: 700; font-size: 15px;
    color: var(--black); margin-bottom: 4px;
  }
  .timeline-org {
    font-size: 12px; color: var(--gray);
    font-style: italic;
  }

  /* RESEARCH */
  .research { background: var(--black); }
  .research .section-title { color: white; }
  .research .section-label { color: var(--amber-light); }

  .papers-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .paper-card {
    border: 0.5px solid rgba(255,255,255,0.1);
    padding: 32px;
    transition: border-color 0.3s, transform 0.3s;
  }
  .paper-card:hover {
    border-color: var(--amber);
    transform: translateY(-4px);
  }
  .paper-num {
    font-size: 40px; font-weight: 800;
    color: rgba(255,255,255,0.06);
    margin-bottom: 16px; line-height: 1;
  }
  .paper-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px; color: white;
    line-height: 1.4; margin-bottom: 16px;
  }
  .paper-meta {
    font-size: 10px; font-weight: 700;
    letter-spacing: 2px; color: var(--amber);
    text-transform: uppercase;
  }

  /* SKILLS GRID */
  .skills-section { background: white; }
  .skills-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
  }
  .skill-card {
    background: var(--offwhite);
    padding: 32px 24px;
    transition: background 0.3s, color 0.3s;
    cursor: default;
  }
  .skill-card:hover {
    background: var(--blue);
  }
  .skill-card:hover .skill-card-title { color: white; }
  .skill-card:hover .skill-card-icon { color: var(--amber-light); }
  .skill-card-icon {
    font-size: 24px; color: var(--blue);
    margin-bottom: 12px;
    transition: color 0.3s;
  }
  .skill-card-title {
    font-size: 11px; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase;
    color: var(--black); transition: color 0.3s;
  }

  /* TOOLS */
  .tools-section { background: var(--offwhite); }
  .tools-grid {
    display: flex; flex-wrap: wrap; gap: 12px;
  }
  .tool-pill {
    padding: 10px 24px;
    border: 1px solid var(--black);
    font-size: 10px; font-weight: 700;
    letter-spacing: 3px; text-transform: uppercase;
    color: var(--black);
    transition: all 0.3s;
  }
  .tool-pill:hover {
    background: var(--black); color: white;
  }

  /* EDUCATION */
  .education-section { background: white; }
  .edu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
  .edu-card {
    padding: 40px;
    border-left: 3px solid var(--blue);
    background: var(--offwhite);
  }
  .edu-degree {
    font-weight: 700; font-size: 15px;
    color: var(--black); margin-bottom: 8px;
  }
  .edu-sub {
    font-size: 12px; color: var(--gray);
    font-style: italic;
  }

  /* AWARDS & AFFILIATIONS */
  .awards-section { background: white; }
  .awards-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 80px;
  }
  .award-item {
    display: flex; gap: 24px;
    margin-bottom: 40px;
    padding: 24px;
    background: var(--offwhite);
    border-left: 3px solid var(--amber);
  }
  .award-icon { width: 40px; height: 40px; color: var(--blue); flex-shrink: 0; }
  .award-title { font-weight: 700; font-size: 16px; color: var(--black); margin-bottom: 4px; }
  .award-desc { font-size: 13px; color: var(--gray); line-height: 1.6; }

  .affiliation-item {
    padding: 24px;
    border-bottom: 0.5px solid var(--light-gray);
    transition: background 0.3s;
  }
  .affiliation-item:hover { background: var(--offwhite); }
  .aff-name { font-weight: 700; font-size: 14px; color: var(--black); margin-bottom: 4px; }
  .aff-role { font-size: 12px; color: var(--amber); font-style: italic; letter-spacing: 1px; }

  /* CSR PAGE */
  .csr-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .csr-card {
    background: white;
    padding: 48px;
    border: 0.5px solid var(--light-gray);
    position: relative;
    transition: border-color 0.3s;
  }
  .csr-card:hover { border-color: var(--blue); }
  .csr-date {
    font-size: 10px; font-weight: 700;
    letter-spacing: 3px; color: var(--amber);
    text-transform: uppercase; margin-bottom: 12px;
  }
  .csr-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px; color: var(--black);
    margin-bottom: 20px;
    line-height: 1.2;
  }
  .csr-desc {
    font-size: 13px; color: #555;
    line-height: 1.8; margin-bottom: 24px;
  }
  .csr-list {
    list-style: none;
  }
  .csr-list li {
    font-size: 12px; color: var(--gray);
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
  }
  .csr-list li::before {
    content: '◈';
    position: absolute; left: 0;
    color: var(--blue); font-size: 10px;
  }

  /* PUBLICATIONS PAGE */
  .pub-category-title {
    font-size: 11px; font-weight: 700;
    letter-spacing: 3px; text-transform: uppercase;
    color: var(--blue); margin-bottom: 32px;
    display: flex; align-items: center; gap: 12px;
  }
  .pub-category-title::after {
    content: ''; flex: 1; height: 1px; background: var(--light-gray);
  }

  .pub-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 60px; }
  
  .pub-card {
    background: white;
    padding: 24px 32px;
    border: 0.5px solid var(--light-gray);
    display: flex; align-items: center; justify-content: space-between;
    transition: all 0.3s;
    text-decoration: none;
  }
  .pub-card:hover {
    border-color: var(--amber);
    background: var(--offwhite);
    transform: translateX(8px);
  }
  .pub-info { display: flex; align-items: center; gap: 20px; }
  .pub-icon { color: var(--blue); font-size: 20px; flex-shrink: 0; }
  .pub-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px; color: var(--black);
    font-weight: 600;
  }
  .pub-link-icon { color: var(--gray); font-size: 14px; transition: color 0.3s; }
  .pub-card:hover .pub-link-icon { color: var(--amber); }

  /* EVENTS GRID */
  .events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    align-items: start;
  }
  .event-card {
    background: white;
    padding: 16px;
    border: 0.5px solid var(--light-gray);
    transition: transform 0.3s, border-color 0.3s;
    cursor: default;
    align-self: start;
  }
  .event-card:hover {
    transform: translateY(-8px);
    border-color: var(--amber);
  }
  .event-img-wrap {
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    margin-bottom: 20px;
    background: var(--offwhite);
  }
  .event-gallery {
    aspect-ratio: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    overflow: visible;
  }
  .event-img {
    width: 100%;
    height: 100%;
    aspect-ratio: 3/4;
    object-fit: contain;
    background: var(--offwhite);
    transition: transform 0.5s;
  }
  .event-card:hover .event-img {
    transform: scale(1.05);
  }
  .event-gallery .event-img,
  .event-card:hover .event-gallery .event-img {
    height: auto;
    transform: none;
  }
  .event-name {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--black);
    text-align: center;
  }

  /* FOOTER */
  footer {
    background: var(--black);
    border-top: 0.5px solid rgba(255,255,255,0.08);
    padding: 32px 60px;
    display: flex; align-items: center;
    justify-content: space-between;
  }
  .footer-logo {
    font-weight: 800; font-size: 16px;
    letter-spacing: 3px; color: white;
  }
  .footer-logo span { color: var(--blue); }
  .footer-copy {
    font-size: 10px; color: rgba(255,255,255,0.3);
    letter-spacing: 2px;
  }
  .footer-watch {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic; font-size: 13px;
    color: var(--amber);
  }

  /* ANIMATIONS */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
  }
  @keyframes ticker {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }


  /* PHOTO */
  .hero-photo-wrap {
    position: relative;
    width: 280px; height: 340px;
    margin: 0 auto 40px auto;
  }
  .hero-photo-wrap::before {
    content: '';
    position: absolute;
    top: -10px; left: -10px;
    right: 10px; bottom: 10px;
    border: 1.5px solid var(--amber);
    z-index: 0;
  }
  .hero-photo-wrap::after {
    content: '';
    position: absolute;
    top: 10px; left: 10px;
    right: -10px; bottom: -10px;
    border: 1.5px solid var(--blue);
    z-index: 0;
  }
  .hero-photo {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center top;
    position: relative; z-index: 1;
    filter: grayscale(20%) contrast(1.05);
  }

  /* IMPACT SECTION */
  .impact-section { background: var(--black); padding: 100px 60px; }
  .impact-section .section-label { color: var(--amber-light); }
  .impact-section .section-title { color: white; }

  .impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px; margin-bottom: 60px;
  }
  .impact-card {
    background: rgba(255,255,255,0.04);
    padding: 40px 32px;
    border-top: 2px solid transparent;
    transition: border-color 0.3s, background 0.3s;
  }
  .impact-card:hover {
    border-color: var(--amber);
    background: rgba(255,255,255,0.07);
  }
  .impact-card.blue-top { border-top-color: var(--blue); }
  .impact-card.amber-top { border-top-color: var(--amber); }
  .impact-card.coral-top { border-top-color: #993C1D; }
  .impact-card.green-top { border-top-color: #2E8B57; }

  .impact-num {
    font-weight: 800; font-size: 48px;
    color: white; line-height: 1;
    margin-bottom: 8px;
  }
  .impact-num span { color: var(--amber-light); }
  .impact-desc {
    font-size: 11px; font-weight: 400;
    letter-spacing: 1px; color: rgba(255,255,255,0.5);
    line-height: 1.7;
  }

  .impact-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .pillar-card {
    border: 0.5px solid rgba(255,255,255,0.1);
    padding: 32px;
    transition: border-color 0.3s;
  }
  .pillar-card:hover { border-color: var(--blue); }
  .pillar-icon {
    font-size: 28px; margin-bottom: 16px;
  }
  .pillar-title {
    font-weight: 700; font-size: 13px;
    letter-spacing: 2px; text-transform: uppercase;
    color: white; margin-bottom: 12px;
  }
  .pillar-text {
    font-size: 12px; color: rgba(255,255,255,0.5);
    line-height: 1.8;
  }

  /* COMPETENCES BAND */
  .competences-band {
    background: var(--blue);
    padding: 32px 60px;
    display: flex; flex-wrap: wrap;
    gap: 0; align-items: center;
  }
  .comp-item {
    font-size: 10px; font-weight: 700;
    letter-spacing: 3px; color: white;
    text-transform: uppercase;
    padding: 8px 20px;
    border-right: 1px solid rgba(255,255,255,0.2);
  }
  .comp-item:last-child { border-right: none; }
  /* HAMBURGER */
  #nav-burger {
    display: none;
    background: none;
    border: none;
    font-size: 26px;
    color: var(--black);
    cursor: pointer;
    padding: 4px 8px;
  }

  /* MOBILE */
  @media (max-width: 768px) {
    body { cursor: auto; }
    .cursor, .cursor-ring { display: none; }

    nav {
      padding: 16px 20px;
      flex-wrap: wrap;
      position: relative;
    }
    section { padding: 60px 20px !important; }
    #nav-burger { display: block; }
    .nav-links {
      display: none;
      flex-direction: column;
      width: 100%;
      gap: 0;
      margin-top: 12px;
      background: var(--offwhite);
      border-top: 1px solid var(--light-gray);
    }
    .nav-links.nav-open { display: flex; }
    .nav-links li { width: 100%; }
    .nav-links a {
      display: block;
      padding: 14px 0;
      border-bottom: 1px solid var(--light-gray);
      font-size: 13px;
      letter-spacing: 2px;
    }

    .hero {
      grid-template-columns: 1fr;
      padding-top: 80px;
      min-height: auto;
    }
    .hero-left { padding: 40px 20px; }
    .hero-deco { display: none; }
    .hero-name { font-size: 42px; }
    .hero-cta { flex-direction: column; gap: 10px; }
    .hero-cta a { text-align: center; width: 100%; }
    .hero-right { border-left: none !important; border-top: 1px solid var(--light-gray) !important; }

    /* Grids → Stacked Single Column */
    .about-grid,
    .papers-grid,
    .edu-grid,
    .impact-pillars,
    .csr-grid,
    .events-grid,
    .awards-grid,
    div[style*="grid-template-columns: 2fr 1fr"],
    div[style*="grid-template-columns: 1fr 2fr"],
    div[style*="grid-template-columns: repeat(auto-fit"],
    div[style*="grid-template-columns:2fr 1fr"],
    div[style*="grid-template-columns:1fr 2fr"],
    div[style*="display:grid"][style*="repeat(auto-fit"] {
      grid-template-columns: 1fr !important;
      gap: 24px !important;
    }

    /* CSR Page Specifics */
    .csr-card {
      padding: 24px !important;
    }
    .csr-title {
      font-size: 24px !important;
    }

    /* Publications Page Specifics */
    .pub-card {
      padding: 20px !important;
      flex-direction: column !important;
      align-items: flex-start !important;
      gap: 16px !important;
    }
    .pub-title {
      font-size: 16px !important;
      line-height: 1.4 !important;
    }
    .pub-info {
      gap: 12px !important;
    }
    .pub-link-icon {
      align-self: flex-end !important;
    }

    /* Events Page Specifics */
    .event-card {
      padding: 12px !important;
    }

    /* Awards Section Specifics */
    .award-item {
      padding: 20px !important;
      flex-direction: column !important;
      gap: 16px !important;
    }
    .award-icon {
      width: 32px !important;
      height: 32px !important;
    }

    /* Impact Grid on Mobile/Tablet */
    .impact-grid {
      grid-template-columns: 1fr 1fr !important;
      gap: 16px !important;
    }

    /* Skills Grid on Mobile/Tablet */
    .skills-grid {
      grid-template-columns: 1fr 1fr !important;
    }

    /* SDG pillars */
    div[style*="grid-template-columns:repeat(auto-fit,minmax(180px"] {
      grid-template-columns: 1fr 1fr !important;
    }

    /* Images in project grids */
    img[style*="height:400px"],
    video[style*="height:420px"],
    img[style*="height:420px"] {
      height: 220px !important;
    }

    /* Hero section headings */
    h2[style*="font-size:clamp(36px,5vw,64px)"] {
      font-size: 32px !important;
    }

    /* Timeline */
    .timeline-item { padding-left: 20px; }

    /* Tool pills */
    div[style*="flex-wrap:wrap"] { gap: 8px !important; }

    /* Contact section */
    section#contact { padding: 40px 20px !important; }

    .inquiry-panel, .social-panel {
      padding: 40px 20px !important;
    }
    .social-link {
      font-size: 24px !important;
      gap: 12px !important;
    }
    .social-link i {
      font-size: 16px !important;
    }

    /* Competences Band (Stats bar) */
    .competences-band {
      padding: 20px 16px !important;
      justify-content: center !important;
    }
    .comp-item {
      min-width: 100% !important;
      border-right: none !important;
      border-bottom: 1px solid rgba(255,255,255,0.15) !important;
      text-align: center !important;
      padding: 12px 0 !important;
    }
    .comp-item:last-child {
      border-bottom: none !important;
    }

    /* Footer */
    footer {
      padding: 32px 20px !important;
      flex-direction: column !important;
      gap: 16px !important;
      text-align: center !important;
    }
  }

  @media (max-width: 480px) {
    .hero-name { font-size: 32px; }
    div[style*="grid-template-columns:repeat(auto-fit,minmax(180px"] {
      grid-template-columns: 1fr !important;
    }
    .skills-grid { grid-template-columns: 1fr !important; }
    .impact-grid { grid-template-columns: 1fr !important; }
  }

  /* NEW REWORK STYLES */
  .scalene-clip {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 92%);
  }
  .scalene-clip-reverse {
    clip-path: polygon(0 8%, 100% 0, 100% 100%, 0 100%);
  }

  .badge-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: white;
    border: 1px solid var(--light-gray);
    border-radius: 100px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
  }
  .status-dot {
    width: 8px; height: 8px;
    background: var(--amber);
    border-radius: 50%;
    position: relative;
  }
  .status-dot::after {
    content: '';
    position: absolute; top: 0; left: 0;
    width: 100%; height: 100%;
    background: inherit;
    border-radius: inherit;
    animation: pulse 2s infinite;
  }
  @keyframes pulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(3); opacity: 0; }
  }

  /* Disciplines */
  .discipline-row {
    border-bottom: 1px solid var(--light-gray);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: padding 0.4s ease;
  }
  .discipline-row:hover {
    padding-left: 40px;
  }
  .discipline-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: clamp(32px, 6vw, 80px);
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px var(--black);
    text-transform: uppercase;
    transition: color 0.4s;
    position: relative;
    z-index: 2;
  }
  .discipline-row:hover .discipline-name {
    color: var(--blue);
    -webkit-text-stroke: 0px;
  }
  .discipline-image {
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%) scale(0.8);
    width: 400px;
    aspect-ratio: 16/9;
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 1;
    pointer-events: none;
    clip-path: polygon(10% 0, 100% 0, 90% 100%, 0% 100%);
  }
  .discipline-row:hover .discipline-image {
    opacity: 1;
    transform: translateY(-50%) scale(1);
    right: 5%;
  }

  /* Highlights */
  .highlight-col {
    padding: 40px;
    border-right: 1px solid var(--light-gray);
    background: white;
  }
  .highlight-col:last-child { border-right: none; }
  .highlight-num {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 64px;
    color: var(--amber);
    line-height: 1;
    margin-bottom: 24px;
  }
  .highlight-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .highlight-item {
    font-size: 13px;
    color: #555;
    padding-bottom: 12px;
    border-bottom: 0.5px solid var(--light-gray);
  }
  .highlight-item:last-child { border-bottom: none; }

  /* Contact Board */
  .contact-board {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--black);
    min-height: 500px;
  }
  .inquiry-panel {
    background: white;
    padding: 80px 60px;
  }
  .social-panel {
    background: var(--blue-deep);
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .inquiry-block {
    padding: 24px;
    border: 1px solid var(--light-gray);
    margin-bottom: 16px;
    transition: all 0.3s;
    cursor: pointer;
  }
  .inquiry-block:hover {
    background: var(--offwhite);
    border-color: var(--blue);
    transform: translateX(10px);
  }
  .inquiry-title {
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 4px;
  }
  .inquiry-desc {
    font-size: 12px;
    color: var(--gray);
  }

  .social-link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: clamp(24px, 4vw, 48px);
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 10px;
    transition: color 0.3s, transform 0.3s;
  }
  .social-link:hover {
    color: var(--amber);
    transform: translateX(20px);
  }
  .social-link i {
    font-size: 0.5em;
    opacity: 0;
    transition: opacity 0.3s;
  }
  .social-link:hover i {
    opacity: 1;
  }

  /* Email Buttons */
  .email-btn-primary {
    display: block;
    width: 100%;
    padding: 20px;
    background: var(--blue);
    color: white;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    letter-spacing: 2px;
    font-size: 14px;
    transition: background 0.3s;
  }
  .email-btn-primary:hover {
    background: var(--blue-deep);
  }
  .email-btn-secondary {
    display: block;
    width: 100%;
    padding: 20px;
    background: white;
    color: var(--black);
    border: 1px solid var(--black);
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    letter-spacing: 2px;
    font-size: 14px;
    transition: background 0.3s, color 0.3s;
  }
  .email-btn-secondary:hover {
    background: var(--black);
    color: white;
  }

  .contact-circle-deco {
    width: 40px;
    height: 40px;
    border: 1px solid var(--blue);
    border-radius: 50%;
    margin: 0 auto 20px auto;
  }

  .hero-photo-small {
    display: none;
  }

  @media (max-width: 1024px) {
    .hero-photo-small {
        display: block;
    }
    .contact-board { grid-template-columns: 1fr; }
    .discipline-image { display: none; }
    .highlight-col { border-right: none; border-bottom: 1px solid var(--light-gray); }
  }

/* ==========================================================================
   BREVO NEWSLETTER POPUP MODAL STYLES
   ========================================================================== */
.newsletter-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 15, 15, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s;
}

.newsletter-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.newsletter-modal-card {
  position: relative;
  width: 100%;
  max-width: 520px;
  background: #1A1A1A;
  color: #FFFFFF;
  border: 1px solid rgba(186, 117, 23, 0.3);
  border-radius: 4px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7), 0 0 30px rgba(24, 95, 165, 0.15);
  overflow: hidden;
  transform: translateY(30px) scale(0.96);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.newsletter-overlay.active .newsletter-modal-card {
  transform: translateY(0) scale(1);
}

.newsletter-header-accent {
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, #BA7517 0%, #EF9F27 50%, #185FA5 100%);
}

.newsletter-close-btn {
  position: absolute;
  top: 16px;
  right: 18px;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  transition: color 0.2s ease, transform 0.2s ease;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.newsletter-close-btn:hover {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.1);
  transform: rotate(90deg);
}

.newsletter-content-inner {
  padding: 40px 36px 36px 36px;
  text-align: center;
}

.newsletter-tag {
  display: inline-block;
  color: var(--amber);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.newsletter-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 400;
  line-height: 1.2;
  color: #FFFFFF;
  margin-bottom: 14px;
  letter-spacing: 0.5px;
}

.newsletter-description {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 28px;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-form-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 12px;
}

@media (min-width: 480px) {
  .newsletter-form-group {
    flex-direction: row;
  }
}

.newsletter-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  padding: 14px 18px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  color: #FFFFFF;
  outline: none;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.newsletter-input:focus {
  border-color: var(--amber);
  background: rgba(255, 255, 255, 0.1);
}

.newsletter-submit-btn {
  background: var(--amber);
  color: #FFFFFF;
  border: none;
  border-radius: 2px;
  padding: 14px 26px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 130px;
}

.newsletter-submit-btn:hover {
  background: var(--amber-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(186, 117, 23, 0.4);
}

.newsletter-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.btn-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #FFFFFF;
  border-radius: 50%;
  animation: newsletterSpinner 0.8s linear infinite;
}

@keyframes newsletterSpinner {
  to { transform: rotate(360deg); }
}

.newsletter-feedback {
  font-size: 12px;
  min-height: 18px;
  margin-top: 6px;
  transition: opacity 0.2s ease;
}

.newsletter-feedback.error {
  color: #FF6B6B;
}

.newsletter-feedback.success {
  color: #51CF66;
}

.newsletter-privacy-notice {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 20px;
}

.newsletter-success-container {
  padding: 20px 10px;
  animation: fadeInModal 0.4s ease forwards;
}

.newsletter-success-icon {
  width: 50px;
  height: 50px;
  background: rgba(186, 117, 23, 0.15);
  border: 2px solid var(--amber);
  color: var(--amber);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  margin: 0 auto 16px auto;
}

.newsletter-success-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  color: #FFFFFF;
  margin-bottom: 10px;
}

.newsletter-success-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  margin-bottom: 24px;
}

.newsletter-secondary-close-btn {
  background: transparent;
  border: 1px solid var(--amber);
  color: var(--amber);
  padding: 10px 28px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-secondary-close-btn:hover {
  background: var(--amber);
  color: #FFFFFF;
}

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

