    :root {
      --bg: #F7F5F1;
      --bg-nav: #F0EDE8;
      --bg-hero: #EDE9E3;
      --bg-card: #F7F5F1;
      --gold: #D4A500;
      --gold-dark: #8A6C00;
      --gold-bg: rgba(212, 165, 0, 0.1);
      --gold-bd: rgba(212, 165, 0, 0.32);
      --text: #111111;
      --text-mid: #444444;
      --text-muted: #777777;
      --text-light: #999999;
      --border: rgba(0, 0, 0, 0.07);
      --border-md: rgba(0, 0, 0, 0.11);
      --font: 'Century Gothic', 'AppleGothic', 'Gill Sans MT', 'Gill Sans', 'Trebuchet MS', sans-serif;
    }

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

    html {
      scroll-behavior: smooth;
      overflow-x: hidden;
    }

    /* Offset anchor targets below the fixed nav */
    [id] {
      scroll-margin-top: 80px;
    }

    body {
      font-family: var(--font);
      background-color: var(--bg);
      background-image:
        linear-gradient(rgba(0, 0, 0, 0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.018) 1px, transparent 1px),
        radial-gradient(circle, rgba(0, 0, 0, 0.014) 1px, transparent 1px),
        radial-gradient(circle, rgba(0, 0, 0, 0.008) 1px, transparent 1px),
        radial-gradient(circle, rgba(140, 130, 115, 0.04) 2px, transparent 2px);
      background-size: 28px 28px, 28px 28px, 8px 8px, 14px 14px, 21px 21px;
      background-position: 0 0, 0 0, 0 0, 5px 7px, 10px 12px;
      color: var(--text);
      line-height: 1.6;
      overflow-x: hidden;
    }


    .name-font {
      font-family: var(--font);
      font-weight: 700;
      font-size: clamp(2.6rem, 5vw + 1rem, 5rem);
      color: var(--text);
      line-height: 1;
      margin-bottom: 0.5rem;
      text-transform: capitalize;
      letter-spacing: 0.04em;
    }

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      background: rgba(240, 237, 232, 0.96);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid var(--border-md);
      height: 60px;
      padding: 0 2.5rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .nav-logo {
      font-family: var(--font);
      font-weight: 700;
      font-size: 0.88rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold);
    }

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

    .nav-links a {
      text-decoration: none;
      font-family: var(--font);
      font-weight: 400;
      font-size: 0.7rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--text-muted);
      transition: color 0.2s;
    }

    .nav-links a:hover {
      color: var(--gold);
    }

    /* ── HAMBURGER (hidden on desktop) ── */
    .hamburger {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 4px;
      z-index: 101;
    }

    .hamburger span {
      display: block;
      width: 22px;
      height: 2px;
      background: var(--text);
      border-radius: 2px;
      transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .hamburger.active span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
      opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    /* ── HERO ── */
    .hero {
      min-height: 100vh;
      background-color: var(--bg-hero);
      background-image:
        radial-gradient(circle, rgba(0, 0, 0, 0.012) 1px, transparent 1px),
        radial-gradient(circle, rgba(0, 0, 0, 0.007) 1px, transparent 1px);
      background-size: 8px 8px, 14px 14px;
      border-bottom: 1px solid var(--border-md);
      display: flex;
      align-items: center;
      padding: 9rem 2.5rem 5rem;
    }

    .hero-inner {
      max-width: 1200px;
      margin: 0 auto;
      width: 100%;
    }

    .hero-tag {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 0.6rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1.4rem;
    }

    .hero-tag::before {
      content: '';
      width: 32px;
      height: 1.5px;
      background: var(--gold);
    }

    h1 {
      font-family: var(--font);
      font-weight: 700;
      font-size: clamp(3rem, 7.5vw, 6rem);
      line-height: 1;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: var(--text);
      margin-bottom: 1.1rem;
    }

    h1 span {
      color: var(--gold);
    }

    .hero-role {
      display: inline-block;
      font-size: 0.75rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--text-muted);
      border: 1px solid var(--border-md);
      padding: 0.4rem 1rem;
      margin-bottom: 1.4rem;
    }

    .hero-sub {
      font-size: 0.88rem;
      color: var(--text-mid);
      max-width: 500px;
      line-height: 1.85;
      margin-bottom: 1.8rem;
    }

    .hero-stats {
      display: flex;
      gap: 3rem;
      margin-bottom: 2rem;
      flex-wrap: wrap;
    }

    .stat-num {
      font-family: var(--font);
      font-weight: 700;
      font-size: 2.2rem;
      color: var(--gold);
      line-height: 1;
    }

    .stat-label {
      font-size: 0.58rem;
      color: var(--text-light);
      text-transform: uppercase;
      letter-spacing: 0.16em;
      margin-top: 4px;
    }

    .hero-btns {
      display: flex;
      gap: 0.8rem;
      flex-wrap: wrap;
    }

    .btn-fill {
      background: var(--gold);
      color: #fff;
      font-family: var(--font);
      font-weight: 700;
      font-size: 0.7rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      text-decoration: none;
      padding: 0.75rem 1.8rem;
      border: none;
      transition: background 0.2s;
    }

    .btn-fill:hover {
      background: #C9A010;
    }

    .btn-outline {
      background: transparent;
      color: var(--text-muted);
      font-family: var(--font);
      font-weight: 400;
      font-size: 0.7rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      text-decoration: none;
      padding: 0.75rem 1.8rem;
      border: 1px solid var(--border-md);
      transition: border-color 0.2s, color 0.2s;
    }

    .btn-outline:hover {
      border-color: var(--gold);
      color: var(--gold);
    }

    /* ── SECTION COMMON ── */
    .section {
      padding: 4.5rem 2.5rem;
    }

    .section-alt {
      background-color: rgba(230, 227, 220, 0.3);
      background-image:
        radial-gradient(circle, rgba(0, 0, 0, 0.01) 1px, transparent 1px);
      background-size: 10px 10px;
    }

    .section-inner {
      max-width: 1080px;
      margin: 0 auto;
    }

    .section-label {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 0.56rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 0.6rem;
    }

    .section-label::after {
      content: '';
      flex: 1;
      height: 1px;
      background: var(--border-md);
    }

    h2 {
      font-family: var(--font);
      font-weight: 700;
      font-size: clamp(1.6rem, 3.5vw, 2.4rem);
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: var(--text);
      line-height: 1.05;
      margin-bottom: 2rem;
    }

    h2 span {
      color: var(--gold);
    }

    /* ── ABOUT ── */
    .about-grid {
      display: grid;
      /* grid-template-columns: 1.1fr 0.9fr; */
      gap: 0rem;
      align-items: start;
    }

    @media(max-width:720px) {
      .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
      }
    }

    .about-text p {
      font-size: 0.84rem;
      color: var(--text-mid);
      line-height: 1.85;
      margin-bottom: 1rem;
    }

    .skills-label {
      font-size: 0.56rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 0.8rem;
    }

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

    .skill-item {
      background: rgba(0, 0, 0, 0.03);
      border: 1px solid var(--border);
      padding: 0.5rem 0.75rem;
      font-size: 0.68rem;
      letter-spacing: 0.06em;
      color: var(--text-muted);
      display: flex;
      align-items: center;
      gap: 8px;
      transition: border-color 0.2s, color 0.2s;
    }

    .skill-item::before {
      content: '';
      width: 5px;
      height: 5px;
      background: var(--gold);
      flex-shrink: 0;
    }

    .skill-item:hover {
      border-color: var(--gold);
      color: var(--gold-dark);
    }

    /* ── COUNTRY DIVIDER ── */
    .country-div {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1.5rem;
    }

    .country-badge {
      background: rgba(0, 0, 0, 0.04);
      border: 1px solid var(--border-md);
      padding: 0.35rem 1rem;
      font-size: 0.62rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--gold);
      white-space: nowrap;
    }

    .country-line {
      flex: 1;
      height: 1px;
      background: var(--border);
    }

    /* ── PROJECT GRID ── */
    .projects-grid {
      display: flex;
      flex-direction: column;
      gap: 16px;
      margin-bottom: 3rem;
    }

    .project-card {
      background: #ffffff;
      border: 0.5px solid var(--border-md);
      border-radius: 12px;
      overflow: hidden;
      padding: 28px 32px 32px;
      transition: box-shadow 0.25s ease, border-color 0.25s ease;
    }

    .project-card:hover {
      border-color: var(--gold-bd);
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    }

    .card-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      margin-bottom: 0.6rem;
    }

    .card-num {
      font-size: 0.62rem;
      color: var(--text-muted);
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .card-type {
      font-size: 0.62rem;
      font-weight: 500;
      padding: 5px 14px;
      border-radius: 100px;
      background: var(--gold-bg);
      color: var(--gold-dark);
      border: 0.5px solid var(--gold-bd);
      white-space: nowrap;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }

    .card-name {
      font-family: var(--font);
      font-weight: 700;
      font-size: 1.2rem;
      letter-spacing: 0.03em;
      color: var(--text);
      line-height: 1.25;
      margin-bottom: 0.2rem;
    }

    .card-loc {
      font-size: 0.72rem;
      color: var(--text-light);
      letter-spacing: 0.04em;
      margin-bottom: 1rem;
      display: flex;
      align-items: center;
      gap: 5px;
    }

    .card-loc::before {
      content: '⌖';
      color: var(--gold);
      font-size: 0.9rem;
    }

    .card-desc {
      font-size: 0.82rem;
      color: var(--text-mid);
      line-height: 1.75;
      padding: 16px 0;
      margin-bottom: 0;
      border-top: 0.5px solid var(--border);
      border-bottom: 0.5px solid var(--border);
    }

    .card-metrics {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
      gap: 10px;
      margin: 20px 0;
    }

    .card-metrics > div {
      background: var(--bg);
      border-radius: 8px;
      padding: 12px 14px;
    }

    .metric-val {
      font-family: var(--font);
      font-weight: 700;
      font-size: 0.95rem;
      color: var(--text);
    }

    .metric-lbl {
      font-size: 0.58rem;
      color: var(--text-light);
      text-transform: uppercase;
      letter-spacing: 0.06em;
      margin-top: 4px;
    }

    .roles-section {
      border-top: 0.5px solid var(--border);
      padding-top: 1rem;
      margin-top: 0.5rem;
    }

    .roles-title {
      font-size: 0.62rem;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 0.6rem;
    }

    .role-tag {
      display: inline-block;
      border: 0.5px solid var(--border-md);
      border-radius: 100px;
      color: var(--text-muted);
      font-size: 0.65rem;
      padding: 4px 12px;
      margin: 2px 4px 2px 0;
      letter-spacing: 0.04em;
      background: #ffffff;
    }

    .resp-list {
      margin-top: 0.75rem;
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .resp-item {
      display: flex;
      gap: 10px;
      font-size: 0.8rem;
      color: var(--text-mid);
      line-height: 1.7;
      padding: 7px 0 7px 18px;
      position: relative;
      border-bottom: 0.5px solid rgba(0,0,0,0.05);
    }

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

    .resp-item::before {
      content: '';
      position: absolute;
      left: 0;
      top: 15px;
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: var(--gold);
      flex-shrink: 0;
    }

    /* ── AUSTRALIA CARDS ── */
    .aus-grid {
      display: flex;
      flex-direction: column;
      gap: 16px;
      margin-bottom: 1rem;
    }

    .aus-card {
      background: #ffffff;
      border: 0.5px solid var(--border-md);
      border-radius: 12px;
      padding: 24px 28px;
      transition: box-shadow 0.25s ease, border-color 0.25s ease;
    }

    .aus-card:hover {
      border-color: rgba(74,124,181,0.4);
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    }

    .aus-type {
      font-size: 0.62rem;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: #4A7CB5;
      margin-bottom: 0.4rem;
    }

    .aus-name {
      font-family: var(--font);
      font-weight: 700;
      font-size: 1.05rem;
      letter-spacing: 0.03em;
      color: var(--text);
      margin-bottom: 0.2rem;
      line-height: 1.3;
    }

    .aus-loc {
      font-size: 0.68rem;
      color: var(--text-light);
      letter-spacing: 0.04em;
      margin-bottom: 0.8rem;
    }

    .aus-desc {
      font-size: 0.82rem;
      color: var(--text-mid);
      line-height: 1.75;
      margin-bottom: 0.8rem;
      padding-top: 0.8rem;
      border-top: 0.5px solid var(--border);
    }

    .aus-role {
      font-size: 0.62rem;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--gold);
      padding-top: 0.8rem;
      border-top: 0.5px solid var(--border);
    }

    /* ── COMPETENCIES ── */
    .comp-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1px;
      background: var(--border);
      border: 1px solid var(--border-md);
    }

    .comp-card {
    background: var(--bg-card);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
      /* border-top: 2.5px solid var(--gold); */
    }

    .comp-icon {
      font-size: 1.3rem;
      margin-bottom: 0.7rem;
    }

    .comp-title {
      font-family: var(--font);
      font-weight: 700;
      font-size: 0.78rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--text);
      margin-bottom: 0.4rem;
    }

    .comp-desc {
      font-size: 0.72rem;
      color: var(--text-muted);
      line-height: 1.65;
    }

    @media(max-width:900px) {
      .comp-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media(max-width:540px) {
      .comp-grid {
        grid-template-columns: 1fr;
      }
    }

    /* ── CONTACT ── */
    .contact-wrap {
      background-color: var(--bg-hero);
      background-image: radial-gradient(circle, rgba(0, 0, 0, 0.01) 1px, transparent 1px);
      background-size: 10px 10px;
      border-top: 1px solid var(--border-md);
    }

    .contact-inner {
      max-width: 1080px;
      margin: 0 auto;
      padding: 4rem 2.5rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 2.5rem;
    }

    .contact-head h2 {
      margin-bottom: 0.4rem;
      font-size: 1.8rem;
    }

    .contact-head p {
      font-size: 0.8rem;
      color: var(--text-muted);
    }

    .contact-list {
      display: flex;
      flex-direction: column;
      gap: 0.7rem;
    }

    .contact-item {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 0.8rem;
      color: var(--text-mid);
      text-decoration: none;
    }

    .contact-item span:first-child {
      font-size: 0.56rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold);
      width: 58px;
      flex-shrink: 0;
    }

    /* ── SECTION SUBTITLE ── */
    .section-subtitle {
      font-size: clamp(0.78rem, 1.4vw, 0.88rem);
      color: var(--text-light);
      margin-bottom: 1.5rem;
      letter-spacing: 0.03em;
    }

    /* ── DRAFTING PROJECT LIST ── */
    .drafting-proj-list {
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .drafting-proj-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 10px 0;
      border-bottom: 0.5px solid rgba(0,0,0,0.06);
      transition: background 0.2s ease;
    }

    .drafting-proj-row:last-child {
      border-bottom: none;
    }

    .drafting-proj-row:hover {
      background: var(--bg);
      border-radius: 6px;
      padding-left: 10px;
      padding-right: 10px;
    }

    .drafting-proj-highlight {
      background: rgba(195,166,104,0.04);
      border-radius: 6px;
      padding-left: 10px;
      padding-right: 10px;
    }

    .drafting-proj-name {
      font-family: var(--font);
      font-weight: 600;
      font-size: 0.82rem;
      color: var(--text);
      margin: 0;
      line-height: 1.3;
    }

    .drafting-proj-sub {
      font-size: 0.68rem;
      color: var(--text-light);
      margin: 2px 0 0;
      letter-spacing: 0.02em;
    }

    .drafting-proj-pill {
      display: inline-block;
      border: 0.5px solid var(--border-md);
      border-radius: 100px;
      color: var(--text-muted);
      font-size: 0.6rem;
      font-weight: 500;
      padding: 4px 12px;
      letter-spacing: 0.04em;
      background: #ffffff;
      white-space: nowrap;
      flex-shrink: 0;
    }

    /* ── DRAFTING IMAGE GRID ── */
    .drafting-images-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
    }

    .drafting-img-box {
      background: #ffffff;
      border: 0.5px solid var(--border-md);
      border-radius: 8px;
      overflow: hidden;
    }

    .drafting-img-box img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      display: block;
      background: #f9f8f6;
    }

    /* ── OTHER WORKS GRID ── */
    .other-works-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .other-works-wide {
      grid-column: 1 / -1;
    }

    .other-works-item {
      display: flex;
      flex-direction: column;
    }

    .other-works-img-placeholder {
      background: var(--bg);
      border: 1px dashed var(--border-md);
      border-radius: 8px;
      min-height: 240px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text-light);
      font-size: 0.78rem;
      text-align: center;
      padding: 24px;
      margin-bottom: 12px;
    }

    .other-works-wide .other-works-img-placeholder {
      min-height: 300px;
    }

    .other-works-caption {
      padding: 0;
    }

    @media(max-width:680px) {
      .drafting-images-grid {
        grid-template-columns: 1fr 1fr;
      }
      .other-works-grid {
        grid-template-columns: 1fr;
      }
      .other-works-wide {
        grid-column: auto;
      }
    }

    .contact-resume span:last-child {
      color: var(--gold-dark);
      font-weight: 500;
    }

    .contact-resume:hover span:last-child {
      text-decoration: underline;
    }

    /* ── OTHER WORKS SLIDES ── */
    .ow-track {
      scroll-snap-type: x mandatory;
    }

    .ow-slide {
      flex: 0 0 100%;
      scroll-snap-align: start;
      display: flex;
      flex-direction: row;
      padding: 0;
      overflow: hidden;
      min-height: 280px;
    }

    .ow-slide-img {
      width: 50%;
      flex-shrink: 0;
      object-fit: cover;
      cursor: pointer;
      display: block;
    }

    .ow-slide-text {
      flex: 1;
      padding: 28px 32px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      border-left: 0.5px solid var(--border);
    }

    @media(max-width:680px) {
      .ow-slide {
        flex-direction: column;
        min-height: auto;
      }
      .ow-slide-img {
        width: 100%;
        aspect-ratio: 16 / 9;
      }
      .ow-slide-text {
        border-left: none;
        border-top: 0.5px solid var(--border);
        padding: 20px 24px;
      }
    }

    /* ── CAROUSEL ── */
    .carousel {
      position: relative;
      display: flex;
      align-items: center;
      gap: 0;
    }

    .carousel-track {
      display: flex;
      gap: 10px;
      overflow-x: auto;
      scroll-behavior: smooth;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      padding: 4px 0;
      flex: 1;
    }

    .carousel-track::-webkit-scrollbar {
      display: none;
    }

    .carousel-track img {
      flex: 0 0 calc((100% - 20px) / 3);
      aspect-ratio: 4 / 3;
      width: calc((100% - 20px) / 3);
      object-fit: cover;
      border-radius: 8px;
      border: 0.5px solid var(--border-md);
      scroll-snap-align: start;
      cursor: pointer;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      background: #f5f4f2;
    }

    .carousel-track img:hover {
      transform: scale(1.02);
      box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    }

    .carousel-btn {
      flex-shrink: 0;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      border: 0.5px solid var(--border-md);
      background: #ffffff;
      color: var(--text-mid);
      font-size: 1.3rem;
      line-height: 1;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.2s ease, border-color 0.2s ease;
      z-index: 2;
    }

    .carousel-prev { margin-right: 8px; }
    .carousel-next { margin-left: 8px; }

    .carousel-btn:hover {
      background: var(--bg);
      border-color: var(--gold-bd);
      color: var(--gold-dark);
    }

    @media(max-width:680px) {
      .carousel-track img {
        flex: 0 0 calc((100% - 10px) / 2);
        width: calc((100% - 10px) / 2);
      }
      .carousel-btn {
        width: 28px;
        height: 28px;
        font-size: 1.1rem;
      }
    }

    /* ── IMAGE MODAL ── */
    .img-modal {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 1000;
      background: rgba(0, 0, 0, 0.85);
      backdrop-filter: blur(8px);
      align-items: center;
      justify-content: center;
      padding: 2rem;
      cursor: pointer;
    }

    .img-modal.active {
      display: flex;
      animation: modalFadeIn 0.25s ease;
    }

    .img-modal-content {
      max-width: 90vw;
      max-height: 90vh;
      object-fit: contain;
      border-radius: 8px;
      box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
      cursor: default;
    }

    .img-modal-close {
      position: absolute;
      top: 1.2rem;
      right: 1.5rem;
      background: none;
      border: none;
      color: #ffffff;
      font-size: 2.2rem;
      cursor: pointer;
      line-height: 1;
      opacity: 0.7;
      transition: opacity 0.2s ease;
    }

    .img-modal-close:hover {
      opacity: 1;
    }

    @keyframes modalFadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    /* ── FOOTER ── */
    footer {
      background: rgba(0, 0, 0, 0.025);
      border-top: 1px solid var(--border);
      padding: 1.2rem 2.5rem;
      text-align: center;
      font-size: 0.58rem;
      color: #bbb;
      letter-spacing: 0.1em;
    }

    /* ── ANIMATIONS ── */
    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(22px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .hero-inner>* {
      animation: fadeUp 0.65s ease both;
    }

    .hero-inner>*:nth-child(1) {
      animation-delay: 0.1s;
    }

    .hero-inner>*:nth-child(2) {
      animation-delay: 0.2s;
    }

    .hero-inner>*:nth-child(3) {
      animation-delay: 0.3s;
    }

    .hero-inner>*:nth-child(4) {
      animation-delay: 0.4s;
    }

    .hero-inner>*:nth-child(5) {
      animation-delay: 0.5s;
    }

    .hero-inner>*:nth-child(6) {
      animation-delay: 0.6s;
    }

    @media(max-width:680px) {
      /* Nav */
      nav {
        padding: 0 1rem;
        height: 52px;
      }

      .nav-logo {
        font-size: 0.75rem;
        letter-spacing: 0.12em;
      }

      .hamburger {
        display: flex;
      }

      .nav-links {
        display: none;
        position: absolute;
        top: 52px;
        left: 0;
        right: 0;
        background: rgba(240, 237, 232, 0.98);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid var(--border-md);
        flex-direction: column;
        padding: 1rem 1.5rem 1.2rem;
        gap: 0;
        box-shadow: 0 8px 24px rgba(0,0,0,0.08);
      }

      .nav-links.open {
        display: flex;
        animation: slideDown 0.25s ease;
      }

      .nav-links li {
        border-bottom: 0.5px solid var(--border);
      }

      .nav-links li:last-child {
        border-bottom: none;
      }

      .nav-links a {
        display: block;
        padding: 0.7rem 0;
        font-size: 0.7rem;
        letter-spacing: 0.14em;
        color: var(--text-mid);
      }

      .nav-links a:hover {
        color: var(--gold);
      }

      @keyframes slideDown {
        from { opacity: 0; transform: translateY(-8px); }
        to { opacity: 1; transform: translateY(0); }
      }

      /* Hero */
      .hero {
        padding: 5rem 1rem 2.5rem;
        min-height: auto;
      }

      .hero-inner {
        flex-direction: column !important;
        text-align: center;
        gap: 2rem !important;
      }

      .hero-inner > div:first-child {
        min-width: 0 !important;
      }

      .hero-inner > div:last-child {
        display: none;
      }

      .hero-tag {
        justify-content: center;
      }

      .hero-stats {
        gap: 1.5rem;
        justify-content: center;
      }

      .stat-num {
        font-size: 1.6rem;
      }

      .hero-btns {
        justify-content: center;
      }

      .hero-btns a {
        font-size: 0.62rem;
        padding: 0.6rem 1.3rem;
      }

      /* Sections */
      .section {
        padding: 2.5rem 1rem;
      }

      .section-inner {
        padding: 0;
        max-width: 100%;
        overflow: hidden;
      }

      h2 {
        font-size: clamp(1.4rem, 5vw, 2rem);
      }

      .section-label {
        font-size: 0.52rem;
      }

      /* About */
      .about-text p {
        font-size: 0.78rem;
        line-height: 1.75;
      }

      /* Country badge */
      .country-badge {
        white-space: normal;
        font-size: 0.55rem;
        padding: 0.3rem 0.8rem;
        letter-spacing: 0.1em;
      }

      .country-div {
        flex-direction: column;
        gap: 0.5rem;
        align-items: stretch;
      }

      .country-line {
        display: none;
      }

      /* Project cards */
      .project-card {
        padding: 16px 14px 18px;
        overflow: hidden;
        word-break: break-word;
        overflow-wrap: break-word;
      }

      .aus-grid,
      .projects-grid {
        overflow: hidden;
      }

      .card-name {
        font-size: 1rem;
      }

      .card-desc {
        font-size: 0.76rem;
      }

      .card-metrics {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
      }

      .metric-val {
        font-size: 0.85rem;
      }

      .resp-item {
        font-size: 0.74rem;
        padding: 6px 0 6px 14px;
      }

      .role-tag {
        font-size: 0.58rem;
      }

      /* Aus cards */
      .aus-card {
        padding: 16px 14px;
        overflow: hidden;
        word-break: break-word;
        overflow-wrap: break-word;
      }

      .aus-name {
        font-size: 0.95rem;
      }

      .aus-desc {
        font-size: 0.76rem;
      }

      /* Drafting rows */
      .drafting-proj-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
      }

      .drafting-proj-pill {
        align-self: flex-start;
      }

      .drafting-proj-name {
        font-size: 0.76rem;
      }

      .drafting-proj-sub {
        font-size: 0.62rem;
      }

      /* Comp grid */
      .comp-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      /* Contact */
      .contact-inner {
        padding: 3rem 1.2rem;
        flex-direction: column;
        text-align: center;
      }

      .contact-item {
        font-size: 0.72rem;
        word-break: break-word;
        overflow-wrap: break-word;
      }

      .contact-item span:last-child {
        word-break: break-all;
      }
    }

    /* Extra small screens */
    @media(max-width:400px) {
      .card-metrics {
        grid-template-columns: 1fr;
      }

      .comp-grid {
        grid-template-columns: 1fr;
      }

      .drafting-images-grid {
        grid-template-columns: 1fr;
      }

      .carousel-track img {
        flex: 0 0 calc(100% - 0px);
        width: 100%;
      }
    }
