﻿/* ════════════════════════════════════════
   THEME TOKENS — light default
════════════════════════════════════════ */
    :root {
      --bg: #f0f7f1;
      --bg2: #e4f0e6;
      --surface: #ffffff;
      --border: rgba(60, 120, 70, .14);
      --ink: #1a2e1c;
      --ink2: #3a5a3d;
      --muted: #6b8f6e;
      --green: #2d7d46;
      --green-lt: #52b26b;
      --green-pale: #d2edda;
      --accent: #1a5c30;
      --shadow: rgba(30, 80, 40, .13);
      --nav-bg: rgba(240, 247, 241, .90);
      --blob: rgba(82, 178, 107, .15);
      --footer-bg: #132617;
      --footer-copy: rgba(255, 255, 255, .72);

      /* Services section always dark */
      --svc-bg: #192b1b;
      --svc-card: rgba(255, 255, 255, .055);
      --svc-border: rgba(255, 255, 255, .10);
      --svc-h-bg: rgba(82, 178, 107, .12);
      --svc-h-bdr: rgba(82, 178, 107, .38);
      --svc-num: rgba(82, 178, 107, .22);
      --svc-title: #edfaef;
      --svc-text: rgba(255, 255, 255, .60);
      --svc-dot: #7dd492;
      --svc-label: #7dd492;
      --svc-heading: #edfaef;

      --fh: 'Playfair Display', Georgia, serif;
      --fb: 'Outfit', sans-serif;
      --r: 14px;
      --ease: cubic-bezier(.4, 0, .2, 1);
    }

    html.icons-fallback .uil::before {
      content: attr(data-fallback-icon);
      font-family: "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
      font-style: normal;
      font-weight: 400;
      line-height: 1;
    }

    /* Dark theme overrides — only the variables that change */
    [data-theme="dark"] {
      --bg: #0f1a10;
      --bg2: #141f15;
      --surface: #1a2a1b;
      --border: rgba(80, 180, 100, .15);
      --ink: #e8f5ea;
      --ink2: #a8d4ad;
      --muted: #6a9e70;
      --green: #52b26b;
      --green-lt: #7dd492;
      --green-pale: rgba(82, 178, 107, .18);
      --accent: #52b26b;
      --shadow: rgba(0, 0, 0, .38);
      --nav-bg: rgba(14, 24, 15, .92);
      --blob: rgba(82, 178, 107, .07);
      --footer-bg: #081209;
      --footer-copy: rgba(232, 245, 234, .78);
      /* Services still dark but slightly different */
      --svc-bg: #080f09;
      --svc-card: rgba(255, 255, 255, .04);
      --svc-border: rgba(255, 255, 255, .07);
    }

    /* ════════════════════════════════════════
   RESET & BASE
════════════════════════════════════════ */
    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      background: var(--bg);
      color: var(--ink);
      font-family: var(--fb);
      line-height: 1.65;
      overflow-x: hidden;
      transition: background .4s var(--ease), color .4s var(--ease);
    }

    img {
      display: block;
      max-width: 100%;
    }

    a {
      text-decoration: none;
    }

    ul {
      list-style: none;
    }

    ::-webkit-scrollbar {
      width: 4px;
    }

    ::-webkit-scrollbar-thumb {
      background: var(--green);
      border-radius: 4px;
    }

    /* ════════════════════════════════════════
   BOTTOM FLOATING DOCK NAVBAR
════════════════════════════════════════ */
    #navbar {
      position: fixed;
      bottom: 22px;
      left: 50%;
      transform: translateX(-50%);
      width: min(calc(100vw - 24px), max-content);
      max-width: calc(100vw - 24px);
      z-index: 300;
      background: var(--nav-bg);
      backdrop-filter: blur(22px) saturate(1.6);
      -webkit-backdrop-filter: blur(22px);
      border: 1.5px solid var(--border);
      border-radius: 999px;
      box-shadow: 0 10px 40px var(--shadow);
      transition: background .4s var(--ease), box-shadow .3s;
    }

    #navbar.menu-open {
      z-index: 380;
    }

    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 2px;
      width: 100%;
      padding: 10px 14px;
      height: px;
    }

    .nav-logo {
      font-family: var(--fh);
      font-size: 18px;
      font-weight: 800;
      color: var(--green);
      display: flex;
      align-items: center;
      gap: 5px;
      padding: 6px 16px 6px 10px;
      margin-right: 4px;
      border-right: 1px solid var(--border);
      white-space: nowrap;
    }

    @keyframes pulse {

      0%,
      100% {
        opacity: 1;
        transform: scale(1);
      }

      50% {
        opacity: .45;
        transform: scale(.65);
      }
    }

    .nav-dot {
      width: 7px;
      height: 7px;
      background: var(--green-lt);
      border-radius: 50%;
      display: inline-block;
      animation: pulse 2.2s ease infinite;
      flex-shrink: 0;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 1px;
    }

    .nav-links a {
      display: block;
      padding: 9px 14px;
      font-size: 14px;
      font-weight: 500;
      color: var(--muted);
      border-radius: 999px;
      white-space: nowrap;
      transition: color .2s, background .2s;
    }

    .nav-links a:hover {
      color: var(--green);
      background: var(--green-pale);
    }

    .nav-links a.active {
      color: var(--green);
      background: var(--green-pale);
      font-weight: 700;
    }

    .nav-hire {
      margin-left: 6px;
      padding: 9px 20px;
      background: var(--green);
      color: #fff;
      border-radius: 999px;
      font-size: 14px;
      font-weight: 700;
      white-space: nowrap;
      box-shadow: 0 2px 10px rgba(45, 125, 70, .35);
      transition: background .2s, transform .18s;
    }

    .nav-hire:hover {
      background: var(--green-lt);
      transform: translateY(-1px);
      color: #fff;
    }

    .nav-hire.active {
      background: var(--green-lt);
    }

    /* Theme button */
    .theme-btn {
      margin-left: 6px;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      border: 1.5px solid var(--border);
      background: var(--surface);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      transition: background .2s, transform .22s, border-color .2s;
      flex-shrink: 0;
    }

    .theme-btn:hover {
      transform: rotate(22deg) scale(1.1);
      background: var(--green-pale);
      border-color: var(--green);
    }

    .theme-btn i {
      font-size: 18px;
      line-height: 1;
      color: var(--green);
    }

    /* Hamburger — green circle, only on mobile */
    .ham-btn {
      display: none;
      margin-left: 6px;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: var(--green);
      border: none;
      cursor: pointer;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 4px;
      flex-shrink: 0;
      transition: background .2s, transform .2s;
    }

    .ham-btn:hover {
      background: var(--green-lt);
      transform: scale(1.08);
    }

    .ham-btn span {
      display: block;
      width: 15px;
      height: 2px;
      background: #fff;
      border-radius: 2px;
      transition: transform .28s var(--ease), opacity .2s, width .2s;
    }

    .ham-btn.open span:nth-child(1) {
      transform: translateY(6px) rotate(45deg);
    }

    .ham-btn.open span:nth-child(2) {
      opacity: 0;
      width: 0;
    }

    .ham-btn.open span:nth-child(3) {
      transform: translateY(-6px) rotate(-45deg);
    }

    .top-btn {
      position: fixed;
      right: 24px;
      bottom: 108px;
      width: 52px;
      height: 52px;
      border: none;
      border-radius: 18px;
      background: var(--green-lt);
      color: #fff;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      box-shadow: 0 14px 28px rgba(82, 178, 107, .28);
      cursor: pointer;
      opacity: 0;
      visibility: hidden;
      transform: translateY(12px);
      transition: opacity .22s var(--ease), transform .22s var(--ease), background .2s;
      z-index: 290;
    }

    .top-btn.show {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .top-btn:hover {
      background: var(--green);
      transform: translateY(-2px);
    }

    .top-btn i {
      line-height: 1;
      color: #fff;
    }

    /* ════════════════════════════════════════
   FULL-SCREEN MOBILE OVERLAY MENU
════════════════════════════════════════ */
    #navOverlay {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 360;
      background: rgba(26, 46, 28, .18);
      padding: 20px;
      align-items: flex-end;
      justify-content: center;
    }

    #navOverlay.open,
    #navOverlay.closing {
      display: flex;
    }

    #navOverlay.open {
      animation: fadeScale .28s var(--ease) forwards;
    }

    #navOverlay.closing {
      animation: fadeOut .24s var(--ease) forwards;
    }

    @keyframes fadeScale {
      from {
        opacity: 0;
        transform: scale(.97);
      }

      to {
        opacity: 1;
        transform: scale(1);
      }
    }

    .overlay-panel {
      width: min(100%, 360px);
      max-height: calc(100vh - 120px);
      background: var(--nav-bg);
      border: 1px solid var(--border);
      border-radius: 26px;
      box-shadow: 0 26px 80px var(--shadow);
      backdrop-filter: blur(22px) saturate(1.25);
      -webkit-backdrop-filter: blur(22px) saturate(1.25);
      padding: 28px 24px 14px;
      overflow-y: auto;
      overscroll-behavior: contain;
      scrollbar-width: none;
      -ms-overflow-style: none;
      animation: slideUp .32s var(--ease) both;
    }

    .overlay-panel::-webkit-scrollbar {
      display: none;
      width: 0;
    }

    #navOverlay.closing .overlay-panel {
      animation: slideDown .24s var(--ease) forwards;
    }

    .overlay-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 20px 12px;
    }

    .overlay-link {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 7px;
      min-height: 70px;
      padding: 8px 4px;
      border-radius: 18px;
      text-align: center;
      color: var(--ink);
      transition: color .22s, background .22s, transform .22s;
      animation: slideUp .32s var(--ease) both;
    }

    .overlay-link i {
      font-size: 24px;
      line-height: 1;
    }

    .overlay-link span {
      font-size: 13px;
      font-weight: 600;
      line-height: 1.2;
    }

    .overlay-link:hover,
    .overlay-link.active {
      color: var(--green);
      background: var(--green-pale);
      transform: translateY(-2px);
    }

    .overlay-link.contact-cta {
      flex-direction: column;
      gap: 8px;
      min-height: 74px;
      padding: 10px 14px;
      border-radius: 22px;
      background: var(--green);
      color: #fff;
      box-shadow: 0 10px 24px rgba(45, 125, 70, .22);
    }

    .overlay-link.contact-cta i,
    .overlay-link.contact-cta span {
      color: #fff;
    }

    .overlay-link.contact-cta span {
      white-space: nowrap;
      font-size: 12px;
      letter-spacing: 0;
    }

    .overlay-link.contact-cta:hover,
    .overlay-link.contact-cta.active {
      background: var(--green-lt);
      color: #fff;
      transform: translateY(-2px);
    }

    .overlay-link:nth-child(1) {
      animation-delay: .02s;
    }

    .overlay-link:nth-child(2) {
      animation-delay: .06s;
    }

    .overlay-link:nth-child(3) {
      animation-delay: .10s;
    }

    .overlay-link:nth-child(4) {
      animation-delay: .14s;
    }

    .overlay-link:nth-child(5) {
      animation-delay: .18s;
    }

    .overlay-link:nth-child(6) {
      animation-delay: .22s;
    }

    .overlay-link:nth-child(7) {
      animation-delay: .26s;
    }

    .overlay-link:nth-child(8) {
      animation-delay: .30s;
    }

    @keyframes slideUp {
      from {
        opacity: 0;
        transform: translateY(16px);
      }

      to {
        opacity: 1;
        transform: none;
      }
    }

    @keyframes slideDown {
      from {
        opacity: 1;
        transform: none;
      }

      to {
        opacity: 0;
        transform: translateY(14px);
      }
    }

    @keyframes fadeOut {
      from {
        opacity: 1;
      }

      to {
        opacity: 0;
      }
    }

    /* ════════════════════════════════════════
   HERO
════════════════════════════════════════ */
    #home {
      min-height: 100vh;
      padding: 64px 40px 120px;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
    }

    .blobs {
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: 0;
    }

    .blob {
      position: absolute;
      border-radius: 50%;
      filter: blur(64px);
      background: var(--blob);
    }

    .b1 {
      width: 520px;
      height: 520px;
      top: -120px;
      right: -80px;
    }

    .b2 {
      width: 360px;
      height: 360px;
      bottom: 60px;
      left: -80px;
    }

    .b3 {
      width: 200px;
      height: 200px;
      top: 42%;
      left: 42%;
    }

    .hero-inner {
      max-width: 1100px;
      margin: 0 auto;
      width: 100%;
      display: grid;
      grid-template-columns: 1fr auto;
      align-items: center;
      gap: 56px;
      position: relative;
      z-index: 1;
    }

    .hero-tag {
      display: flex;
      width: fit-content;
      align-items: center;
      gap: 7px;
      background: var(--green-pale);
      color: var(--green);
      border: 1px solid rgba(45, 125, 70, .22);
      border-radius: 999px;
      padding: 6px 14px;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: .8px;
      text-transform: uppercase;
      margin-bottom: 18px;
    }

    .hero-datetime {
      display: flex;
      width: fit-content;
      max-width: 100%;
      align-items: center;
      gap: 7px;
      background: var(--green-pale);
      color: var(--green);
      border: 1px solid rgba(45, 125, 70, .22);
      border-radius: 999px;
      padding: 6px 14px;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: .3px;
      margin-bottom: 8px;
    }

    .hero-datetime .dt-text {
      display: flex;
      flex-direction: column;
      gap: 1px;
    }

    .hero-datetime .dt-line {
      display: block;
      white-space: nowrap;
    }

    .hero-datetime .dt-line + .dt-line::before {
      content: " · ";
    }

    @media (min-width:801px) {
      .hero-datetime {
        align-items: center;
        flex-wrap: wrap;
        row-gap: 4px;
      }

      .hero-datetime .dt-line {
        display: block;
      }

      .hero-datetime .dt-line + .dt-line::before {
        content: "";
      }
    }

    @media (max-width:700px) {
      .hero-datetime {
        align-items: flex-start;
        flex-wrap: wrap;
        row-gap: 4px;
      }

      .hero-datetime .dt-line {
        display: block;
        white-space: normal;
      }

      .hero-datetime .dt-line + .dt-line::before {
        content: "";
      }
    }

    .hero-datetime i {
      color: var(--green);
      font-size: 14px;
      line-height: 1;
    }

    .hero-tag::before {
      content: '';
      width: 6px;
      height: 6px;
      background: var(--green);
      border-radius: 50%;
      display: inline-block;
      animation: pulse 2.2s ease infinite;
      flex-shrink: 0;
    }

    .hero-name {
      font-family: var(--fh);
      font-size: clamp(40px, 5.5vw, 74px);
      font-weight: 800;
      line-height: 1.05;
      letter-spacing: -2px;
      color: var(--ink);
      margin-bottom: 10px;
    }

    .hero-name em {
      font-style: normal;
      color: var(--green);
      position: relative;
      display: inline-block;
    }

    .hero-name em::after {
      content: '';
      position: absolute;
      bottom: 2px;
      left: 0;
      right: 0;
      height: 3px;
      background: var(--green-lt);
      border-radius: 2px;
      opacity: .45;
    }

    .hero-role {
      font-size: 13px;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 22px;
    }

    .hero-bio {
      font-size: 16px;
      color: var(--ink2);
      max-width: 460px;
      line-height: 1.82;
      margin-bottom: 34px;
    }

    .hero-btns {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }

    /* Buttons */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 12px 26px;
      border-radius: 999px;
      font-family: var(--fb);
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      border: none;
      transition: all .22s var(--ease);
    }

    .btn:hover {
      transform: translateY(-2px);
    }

    .btn-green {
      background: var(--green);
      color: #fff;
      box-shadow: 0 4px 18px rgba(45, 125, 70, .3);
    }

    .btn-green:hover {
      background: var(--accent);
    }

    .btn-ghost {
      background: var(--surface);
      color: var(--ink);
      border: 1.5px solid var(--border);
    }

    .btn-ghost:hover {
      border-color: var(--green);
      color: var(--green);
      background: var(--green-pale);
    }

    .btn-white {
      background: #fff;
      color: var(--green);
      font-weight: 700;
    }

    .btn-white:hover {
      background: var(--green-pale);
    }

    /* Hero profile card */
    .hero-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 22px;
      padding: 26px 22px;
      box-shadow: 0 8px 36px var(--shadow);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 14px;
      min-width: 210px;
      animation: float 4s ease-in-out infinite;
    }

    @keyframes float {

      0%,
      100% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(-8px);
      }
    }

    .hero-card img {
      width: 126px;
      height: 126px;
      border-radius: 50%;
      object-fit: cover;
      border: 4px solid var(--green-pale);
      box-shadow: 0 0 0 2.5px var(--green);
    }

    .hc-name {
      font-family: var(--fh);
      font-size: 20px;
      font-weight: 700;
      color: var(--ink);
      text-align: center;
    }

    .hc-sub {
      font-size: 15px;
      color: var(--muted);
      text-align: center;
      letter-spacing: .4px;
    }

    .hc-badges {
      display: flex;
      flex-direction: column;
      gap: 7px;
      width: 100%;
    }

    .hc-row {
      display: flex;
      align-items: center;
      gap: 8px;
      background: var(--bg2);
      border-radius: 8px;
      padding: 7px 11px;
      font-size: 14px;
      color: var(--ink2);
      font-weight: 500;
    }

    /* ════════════════════════════════════════
   SHARED SECTION LAYOUT
════════════════════════════════════════ */
    .wrap {
      max-width: 1100px;
      margin: 0 auto;
    }

    section {
      padding: 88px 40px;
    }

    .sec-lbl {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--green);
      margin-bottom: 10px;
    }

    .sec-lbl::before {
      content: '';
      width: 20px;
      height: 2px;
      background: var(--green);
      border-radius: 1px;
    }

    .sec-title {
      font-family: var(--fh);
      font-size: clamp(26px, 4vw, 44px);
      font-weight: 800;
      letter-spacing: -1.2px;
      line-height: 1.1;
      color: var(--ink);
      margin-bottom: 46px;
    }

    /* Scroll reveal */
    .reveal {
      opacity: 0;
      transform: translateY(26px);
      transition: opacity .6s var(--ease), transform .6s var(--ease);
    }

    .reveal.up {
      opacity: 1;
      transform: none;
    }

    /* ════════════════════════════════════════
   ABOUT
════════════════════════════════════════ */
    #about {
      background: var(--bg2);
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 56px;
      align-items: start;
    }

    .about-txt {
      font-size: 16px;
      color: var(--ink2);
      line-height: 1.88;
      margin-top: 22px;
    }

    .about-txt strong {
      color: var(--green);
      font-weight: 600;
    }

    .about-feats {
      display: flex;
      flex-direction: column;
      gap: 13px;
      padding-top: 52px;
    }

    .af {
      display: flex;
      gap: 14px;
      align-items: flex-start;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--r);
      padding: 16px 18px;
      transition: transform .22s, box-shadow .22s;
    }

    .af:hover {
      transform: translateX(5px);
      box-shadow: 0 4px 18px var(--shadow);
    }

    .af-icon {
      width: 38px;
      height: 38px;
      border-radius: 9px;
      background: var(--green-pale);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 19px;
      flex-shrink: 0;
    }

    .af h4 {
      font-size: 14px;
      font-weight: 600;
      color: var(--ink);
      margin-bottom: 3px;
    }

    .af p {
      font-size: 13px;
      color: var(--muted);
      line-height: 1.5;
    }

    /* ════════════════════════════════════════
   SKILLS
════════════════════════════════════════ */
    #skills {
      background: var(--bg);
    }

    .skills-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(195px, 1fr));
      gap: 13px;
    }

    .sk {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--r);
      padding: 20px 18px;
      display: flex;
      flex-direction: column;
      gap: 9px;
      position: relative;
      overflow: hidden;
      transition: transform .22s, box-shadow .22s, border-color .22s;
    }

    .sk:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 28px var(--shadow);
      border-color: var(--green);
    }

    .sk::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--green), var(--green-lt));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .28s var(--ease);
    }

    .sk:hover::after {
      transform: scaleX(1);
    }

    .sk-icon {
      font-size: 28px;
    }

    .sk-name {
      font-size: 14px;
      font-weight: 600;
      color: var(--ink);
    }

    .sk-cat {
      font-size: 11px;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: .4px;
    }

    /* ════════════════════════════════════════
   TIMELINE
════════════════════════════════════════ */
    #timeline {
      background: var(--bg2);
    }

    .tl-tabs {
      display: flex;
      gap: 8px;
      margin-bottom: 42px;
    }

    .tl-tab {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 7px;
      padding: 8px 20px;
      border-radius: 999px;
      font-family: var(--fb);
      font-size: 13px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: .3px;
      border: 1.5px solid var(--border);
      background: transparent;
      color: var(--muted);
      cursor: pointer;
      transition: all .22s var(--ease);
    }

    .tl-tab i {
      font-size: 14px;
      line-height: 1;
    }

    .tl-tab.on {
      background: var(--green);
      color: #fff;
      border-color: var(--green);
    }

    .tl-panel {
      display: none;
      flex-direction: column;
    }

    .tl-panel.on {
      display: flex;
    }

    .tl-item {
      display: flex;
      gap: 22px;
      padding: 18px 0;
      border-bottom: 1px solid var(--border);
      animation: popIn .36s var(--ease) both;
    }

    .tl-item:last-child {
      border-bottom: none;
    }

    @keyframes popIn {
      from {
        opacity: 0;
        transform: translateX(-12px);
      }

      to {
        opacity: 1;
        transform: none;
      }
    }

    .tl-dot {
      flex-shrink: 0;
      margin-top: 3px;
      width: 34px;
      height: 34px;
      border-radius: 50%;
      background: var(--green-pale);
      border: 2px solid var(--green);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
    }

    .tl-dot i {
      font-size: 15px;
      line-height: 1;
      color: var(--green);
    }

    .tl-period {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: var(--green);
      margin-bottom: 3px;
    }

    .tl-role {
      font-family: var(--fh);
      font-size: 17px;
      font-weight: 700;
      color: var(--ink);
      margin-bottom: 2px;
    }

    .tl-org {
      font-size: 13px;
      color: var(--muted);
    }

    /* ════════════════════════════════════════
   SERVICES — always dark, theme-independent
════════════════════════════════════════ */
    #services {
      background: var(--svc-bg);
      padding: 88px 40px;
    }

    #services .sec-lbl {
      color: var(--svc-label);
    }

    #services .sec-lbl::before {
      background: var(--svc-label);
    }

    #services .sec-title {
      color: var(--svc-heading);
    }

    .svc-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 18px;
    }

    .svc {
      background: var(--svc-card);
      border: 1px solid var(--svc-border);
      border-radius: var(--r);
      padding: 30px;
      transition: background .22s, transform .22s, border-color .22s;
    }

    .svc:hover {
      background: var(--svc-h-bg);
      border-color: var(--svc-h-bdr);
      transform: translateY(-5px);
    }

    .svc-num {
      font-family: var(--fh);
      font-size: 50px;
      font-weight: 800;
      color: var(--svc-num);
      line-height: 1;
      margin-bottom: 13px;
    }

    .svc-title {
      font-family: var(--fh);
      font-size: 19px;
      font-weight: 700;
      color: var(--svc-title);
      margin-bottom: 16px;
    }

    .svc-list {
      display: flex;
      flex-direction: column;
      gap: 9px;
    }

    .svc-list li {
      font-size: 14px;
      color: var(--svc-text);
      display: flex;
      align-items: center;
      gap: 9px;
    }

    .svc-list li::before {
      content: '';
      flex-shrink: 0;
      width: 6px;
      height: 6px;
      background: var(--svc-dot);
      border-radius: 50%;
    }

    /* ════════════════════════════════════════
   PROJECTS
════════════════════════════════════════ */
    #projects {
      background: var(--bg);
    }

    .proj-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
      gap: 22px;
      margin-bottom: 46px;
    }

    .proj {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 18px;
      overflow: hidden;
      transition: transform .28s, box-shadow .28s;
    }

    .proj:hover {
      transform: translateY(-7px);
      box-shadow: 0 20px 48px var(--shadow);
    }

    .proj-img {
      width: 100%;
      height: 190px;
      object-fit: cover;
      filter: saturate(.82);
      transition: filter .3s, transform .3s;
      display: block;
    }

    .proj:hover .proj-img {
      filter: saturate(1);
      transform: scale(1.02);
    }

    .proj-body {
      padding: 20px 22px;
    }

    .proj-tag {
      display: inline-block;
      background: var(--green-pale);
      color: var(--green);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .8px;
      text-transform: uppercase;
      padding: 3px 10px;
      border-radius: 999px;
      margin-bottom: 8px;
    }

    .proj-title {
      font-family: var(--fh);
      font-size: 17px;
      font-weight: 700;
      color: var(--ink);
      margin-bottom: 7px;
    }

    .proj-desc {
      font-size: 14px;
      color: var(--muted);
      line-height: 1.6;
      margin-bottom: 14px;
    }

    .proj-price {
      font-size: 15px;
      font-weight: 700;
      color: var(--green);
      margin-bottom: 13px;
    }

    .proj-link {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      font-size: 13px;
      font-weight: 700;
      color: var(--green);
      border-bottom: 1.5px solid currentColor;
      padding-bottom: 1px;
      transition: gap .18s;
    }

    .proj-link:hover {
      gap: 9px;
    }

    .cta-band {
      background: linear-gradient(135deg, var(--green) 0%, #1a4a28 100%);
      border-radius: 18px;
      padding: 50px 56px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      flex-wrap: wrap;
    }

    .cta-band h3 {
      font-family: var(--fh);
      font-size: 26px;
      font-weight: 800;
      color: #fff;
      letter-spacing: -.7px;
    }

    .cta-band p {
      color: rgba(255, 255, 255, .62);
      margin-top: 5px;
      font-size: 15px;
    }

    /* ════════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════════ */
    #testimonials {
      background: var(--bg2);
    }

    .testi-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
      gap: 18px;
    }

    .testi {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--r);
      padding: 26px;
      transition: transform .22s;
    }

    .testi:hover {
      transform: translateY(-4px);
    }

    .testi-stars {
      color: #e6b800;
      font-size: 18px;
      letter-spacing: 2px;
      margin-bottom: 13px;
    }

    .testi-text {
      font-size: 15px;
      font-style: italic;
      color: var(--ink2);
      line-height: 1.75;
      margin-bottom: 18px;
    }

    .testi-author {
      display: flex;
      align-items: center;
      gap: 11px;
    }

    .testi-av {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      object-fit: cover;
      border: 2px solid var(--green-pale);
    }

    .testi-name {
      font-family: var(--fh);
      font-size: 14px;
      font-weight: 700;
      color: var(--ink);
    }

    .testi-meta {
      font-size: 12px;
      color: var(--muted);
      margin-top: 1px;
    }

    /* ════════════════════════════════════════
   CONTACT
════════════════════════════════════════ */
    #contact {
      background: var(--bg);
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1.5fr;
      gap: 56px;
      align-items: start;
    }

    .c-items {
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-top: 4px;
    }

    .c-item {
      display: flex;
      align-items: flex-start;
      gap: 13px;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--r);
      padding: 14px 16px;
      transition: border-color .2s, transform .2s;
    }

    .c-item:hover {
      border-color: var(--green);
      transform: translateX(4px);
    }

    .c-ico {
      width: 36px;
      height: 36px;
      border-radius: 8px;
      background: var(--green-pale);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 17px;
      flex-shrink: 0;
    }

    .c-lbl {
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: .8px;
      color: var(--muted);
      margin-bottom: 2px;
    }

    .c-val {
      font-size: 14px;
      color: var(--ink2);
    }

    .c-val a {
      color: var(--ink2);
      transition: color .18s;
    }

    .c-val a:hover {
      color: var(--green);
    }

    .social-bar {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      margin-top: 2px;
    }

    .social-icon {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      border: 1px solid var(--border);
      background: var(--surface);
      color: var(--green);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      transition: transform .2s, border-color .2s, background .2s, color .2s;
    }

    .social-icon i {
      line-height: 1;
    }

    .social-icon:hover {
      transform: translateY(-2px);
      border-color: var(--green);
      background: var(--green-pale);
      color: var(--accent);
    }

    .cform {
      display: flex;
      flex-direction: column;
      gap: 13px;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 13px;
    }

    .fg {
      display: flex;
      flex-direction: column;
      gap: 5px;
    }

    .fg label {
      font-size: 11px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: .8px;
      color: var(--muted);
    }

    .fg input,
    .fg textarea,
    .fg select {
      background: var(--surface);
      border: 1.5px solid var(--border);
      border-radius: 9px;
      padding: 11px 13px;
      font-family: var(--fb);
      font-size: 14px;
      color: var(--ink);
      outline: none;
      transition: border-color .2s, box-shadow .2s;
    }

    .fg input::placeholder,
    .fg textarea::placeholder {
      color: var(--muted);
      opacity: .55;
    }

    .fg input:focus,
    .fg textarea:focus,
    .fg select:focus {
      border-color: var(--green);
      box-shadow: 0 0 0 3px rgba(45, 125, 70, .1);
    }

    .fg textarea {
      resize: vertical;
      height: 114px;
    }

    .fg select option {
      background: var(--surface);
      color: var(--ink);
    }

    .btn-submit {
      align-self: flex-start;
      background: var(--green);
      color: #fff;
      font-weight: 700;
      box-shadow: 0 4px 16px rgba(45, 125, 70, .25);
    }

    .btn-submit:hover {
      background: var(--accent);
    }

    .form-note {
      font-size: 14px;
      color: var(--muted);
    }

    /* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
    footer {
      background: var(--footer-bg);
      padding: 26px 40px 96px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 10px;
      text-align: center;
    }

    .foot-logo {
      font-family: var(--fh);
      font-size: 22px;
      font-weight: 800;
      color: var(--green-lt);
    }

    .foot-copy {
      font-size: 15px;
      color: var(--footer-copy);
    }

    /* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
    @media (max-width:800px) {
      #navbar {
        bottom: 14px;
      }

      .nav-logo {
        max-width: calc(100vw - 138px);
        padding-right: 10px;
        overflow: hidden;
        text-overflow: ellipsis;
      }

      .nav-links,
      .nav-hire {
        display: none;
      }

      .ham-btn {
        display: flex;
      }

      .top-btn {
        right: 16px;
        bottom: 88px;
      }

      #navOverlay {
        inset: 0;
        padding: 12px 12px 76px;
        align-items: flex-end;
        justify-content: center;
        background: rgba(26, 46, 28, .18);
      }

      .overlay-panel {
        position: relative;
        right: auto;
        bottom: auto;
        left: auto;
        width: min(100%, 360px);
        max-width: 360px;
        margin: 0 auto;
        max-height: calc(100vh - 100px);
      }

      #home {
        padding: 48px 24px 110px;
      }

      .hero-inner {
        grid-template-columns: 1fr;
      }

      .hero-card {
        display: none;
      }

      section {
        padding: 64px 24px 80px;
      }

      #services {
        padding: 64px 24px 80px;
      }

      .about-grid,
      .contact-grid {
        grid-template-columns: 1fr;
        gap: 32px;
      }

      .tl-tabs {
        flex-wrap: wrap;
        margin-bottom: 28px;
      }

      .tl-tab {
        flex: 1 1 160px;
      }

      .tl-item {
        gap: 16px;
      }

      .form-row {
        grid-template-columns: 1fr;
      }

      .cta-band {
        padding: 30px 22px;
        flex-direction: column;
        text-align: center;
      }

      footer {
        padding: 22px 24px 96px;
        flex-direction: column;
        text-align: center;
      }
    }

    @media (max-width:560px) {
      .nav-inner {
        padding: 8px;
        gap: 6px;
      }

      .nav-logo {
        font-size: 14px;
        max-width: calc(100vw - 122px);
        padding-left: 4px;
        margin-right: 0;
      }

      .theme-btn,
      .ham-btn {
        width: 40px;
        height: 40px;
      }

      .top-btn {
        right: 12px;
        bottom: 96px;
        width: 48px;
        height: 48px;
        border-radius: 16px;
      }

      #navOverlay {
        padding: 10px 10px 74px;
        align-items: flex-end;
        justify-content: center;
      }

      .overlay-panel {
        right: auto;
        bottom: auto;
        left: auto;
        width: min(100%, 100%);
        border-radius: 24px;
        padding: 22px 14px 10px 10px;
        max-height: calc(100vh - 94px);
      }

      .overlay-grid {
        gap: 18px 8px;
      }

      .overlay-link span {
        font-size: 12px;
      }

      .tl-tabs {
        gap: 10px;
      }

      .tl-tab {
        width: 100%;
        padding: 10px 16px;
      }

      .tl-item {
        align-items: flex-start;
        gap: 12px;
        padding: 16px 0;
      }

      .tl-dot {
        width: 30px;
        height: 30px;
        font-size: 12px;
      }
    }