
    :root {
      --forest: #1a2e1a;
      --moss: #2d4a2d;
      --sage: #5a7a4a;
      --leaf: #8fb87a;
      --cream: #f5f0e8;
      --warm: #ede6d6;
      --gold: #c8a84b;
      --gold-light: #e8c96b;
      --text-dark: #1a1a1a;
      --text-mid: #4a4a4a;
      --text-light: #7a7a7a;
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      background: var(--cream);
      color: var(--text-dark);
      font-family: 'DM Sans', sans-serif;
      font-weight: 400;
      overflow-x: hidden;
    }

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1.2rem 4rem;
      background: rgba(245, 240, 232, 0.92);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(90, 122, 74, 0.15);
    }

    .nav-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.1rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      color: var(--forest);
      text-transform: uppercase;
    }

    .nav-links {
      display: flex;
      gap: 2.5rem;
    }

    .nav-links a {
      text-decoration: none;
      font-size: 0.78rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--text-mid);
      transition: color 0.3s;
    }

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

        /* HAMBURGER */
    .nav-toggle {
      display: none;
      font-size: 1.6rem;
      cursor: pointer;
      transition: transform 0.3s ease;
    }

    /* efek dikit biar smooth */
    .nav-toggle:active {
      transform: scale(0.9);
    }

    @media (max-width: 768px) {
      .nav-toggle {
        display: block;
      }
    }

    /* MOBILE */
    @media (max-width: 768px) {

      nav {
        padding: 1rem 1.5rem;
      }

      .nav-toggle {
        display: block;
      }

      .nav-links {
        position: absolute;
        top: 100%;
        right: 0;
        width: 100%;
        background: rgba(245, 240, 232, 0.98);
        backdrop-filter: blur(12px);

        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        padding: 2rem 0;

        display: none;
      }

      .nav-links.active {
        display: flex;
      }
    }

    /* ── HERO ── */
     @media (max-width: 768px){
      .hero{
         padding-inline: 1.5rem;
      }
      .certifications{
         padding-inline: 1.5rem;
      }
    }
    
    .hero {
      min-height: 100vh;
      display: grid;
      grid-template-columns: 1fr 1fr;
      position: relative;
      overflow: hidden;
    }

    .hero-left {
      background: var(--forest);
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 8rem 5rem 6rem 6rem;
      position: relative;
      z-index: 2;
    }

    .hero-left::after {
      content: '';
      position: absolute;
      right: -60px;
      top: 0;
      bottom: 0;
      width: 120px;
      background: var(--forest);
      clip-path: polygon(0 0, 50% 0, 100% 50%, 50% 100%, 0 100%);
      z-index: 3;
    }

    .hero-tag {
      font-size: 0.72rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 2rem;
      display: flex;
      align-items: center;
      gap: 0.8rem;
    }

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

    .hero-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(3rem, 5vw, 4.8rem);
      font-weight: 300;
      line-height: 1.05;
      color: var(--cream);
      margin-bottom: 0.4rem;
    }

    .hero-name em {
      font-style: italic;
      color: var(--gold-light);
    }

    .hero-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.1rem;
      font-weight: 400;
      font-style: italic;
      color: var(--leaf);
      margin-bottom: 2.5rem;
    }

    .hero-desc {
      font-size: 0.88rem;
      line-height: 1.9;
      color: rgba(245, 240, 232, 0.7);
      max-width: 380px;
      margin-bottom: 3.5rem;
    }

    .hero-cta {
      display: inline-block;
      padding: 0.85rem 2.2rem;
      border: 1px solid var(--gold);
      color: var(--gold);
      font-size: 0.78rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      text-decoration: none;
      transition: all 0.35s;
      position: relative;
      overflow: hidden;
    }

    .hero-cta::before {
      content: '';
      position: absolute;
      inset: 0;
      background: var(--gold);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.35s;
    }

    .hero-cta span {
      position: relative;
      z-index: 1;
    }

    .hero-cta:hover::before {
      transform: scaleX(1);
    }

    .hero-cta:hover {
      color: var(--forest);
    }

    .hero-right {
      background: var(--warm);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: flex-end;
      padding: 8rem 6rem 6rem 8rem;
      position: relative;
    }

    .hero-stats {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2px;
      width: 100%;
      max-width: 340px;
      margin-bottom: 3rem;
    }

    .stat-box {
      background: white;
      padding: 1.8rem 1.5rem;
      transition: background 0.3s;
    }

    .stat-box:hover {
      background: var(--forest);
    }

    .stat-box:hover .stat-num,
    .stat-box:hover .stat-label {
      color: var(--cream);
    }

    .stat-box:nth-child(2) {
      background: var(--forest);
    }

    .stat-box:nth-child(2) .stat-num,
    .stat-box:nth-child(2) .stat-label {
      color: var(--cream);
    }

    .stat-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 3rem;
      font-weight: 300;
      line-height: 1;
      color: var(--forest);
      transition: color 0.3s;
    }

    .stat-num sup {
      font-size: 1.2rem;
    }

    .stat-label {
      font-size: 0.72rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--text-light);
      margin-top: 0.5rem;
      transition: color 0.3s;
    }

    .hero-deco {
      font-family: 'Cormorant Garamond', serif;
      font-size: 9rem;
      font-weight: 300;
      color: rgba(90, 122, 74, 0.12);
      line-height: 1;
      position: absolute;
      bottom: 2rem;
      right: 5rem;
      pointer-events: none;
      user-select: none;
    }

    /* ── SECTION BASE ── */
    section {
      padding: 7rem 6rem;
    }

    .section-label {
      font-size: 0.72rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--sage);
      margin-bottom: 1rem;
      display: flex;
      align-items: center;
      gap: 0.8rem;
    }

    .section-label::after {
      content: '';
      flex: 1;
      max-width: 40px;
      height: 1px;
      background: var(--leaf);
    }

    .section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2rem, 3.5vw, 3rem);
      font-weight: 300;
      line-height: 1.15;
      color: var(--forest);
      margin-bottom: 1rem;
    }

    .section-title em {
      font-style: italic;
      color: var(--sage);
    }

    /* ── ABOUT ── */
    .about {
      background: white;
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 2fr;
      gap: 6rem;
      margin-top: 4rem;
      align-items: start;
    }

    .about-photo-frame {
      width: 100%;
      aspect-ratio: 3/4;
      background: var(--forest);
      position: relative;
      overflow: hidden;
      margin-bottom: 2rem;
    }

    .about-photo-frame::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, var(--moss) 0%, var(--sage) 50%, var(--leaf) 100%);
      opacity: 0.8;
    }

        .about-photo-initials {
          position: absolute;
          inset: 0;
    
          display: flex;
          align-items: center;
          justify-content: center;
          text-align: center;
    
          font-family: 'Cormorant Garamond', serif;
          font-weight: 300;
          color: rgba(245, 240, 232, 0.3);
          letter-spacing: 0.1em;
    
          /* responsive font */
          font-size: clamp(2rem, 5vw, 6rem);
    
          line-height: 1;
          /* supaya baris <br> tetap rapi */
          padding: 0.5rem;
        }

    .about-photo-badge {
      position: absolute;
      bottom: 1.5rem;
      left: 1.5rem;
      background: var(--gold);
      padding: 0.6rem 1rem;
      font-size: 0.7rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--forest);
      font-weight: 500;
    }

    .contact-list {
      list-style: none;
    }

    .contact-list li {
      font-size: 0.82rem;
      padding: 0.7rem 0;
      border-bottom: 1px solid rgba(90, 122, 74, 0.12);
      color: var(--text-mid);
      display: flex;
      flex-direction: column;
      gap: 0.15rem;
    }

    .contact-list li strong {
      font-size: 0.68rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--sage);
      font-weight: 400;
    }

    .about-lead {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.45rem;
      font-weight: 300;
      font-style: italic;
      line-height: 1.7;
      color: var(--forest);
      margin-bottom: 2rem;
      padding-bottom: 2rem;
      border-bottom: 1px solid rgba(90, 122, 74, 0.2);
    }

    .about-body {
      font-size: 0.9rem;
      line-height: 1.9;
      color: var(--text-mid);
      margin-bottom: 2.5rem;
      column-count: 2;
      column-gap: 2.5rem;
    }

    .expertise-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      margin-top: 2rem;
    }

    .tag {
      padding: 0.45rem 1rem;
      border: 1px solid var(--leaf);
      font-size: 0.72rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--sage);
      transition: all 0.3s;
    }

    .tag:hover {
      background: var(--sage);
      color: white;
      border-color: var(--sage);
    }

    /* ── SERVICES ── */
    .services {
      background: var(--forest);
    }

    .services .section-label {
      color: var(--gold);
    }

    .services .section-label::after {
      background: var(--gold);
      opacity: 0.4;
    }

    .services .section-title {
      color: var(--cream);
    }

    .services .section-title em {
      color: var(--gold-light);
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
      margin-top: 4rem;
    }

    .service-card {
      background: rgba(255, 255, 255, 0.04);
      padding: 2.5rem 2rem;
      border-top: 2px solid transparent;
      transition: all 0.4s;
      cursor: default;
    }

    .service-card:hover {
      background: rgba(255, 255, 255, 0.09);
      border-top-color: var(--gold);
    }

    .service-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 3.5rem;
      font-weight: 300;
      color: rgba(200, 168, 75, 0.2);
      line-height: 1;
      margin-bottom: 1.5rem;
    }

    .service-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.3rem;
      font-weight: 400;
      color: var(--cream);
      margin-bottom: 1rem;
      line-height: 1.3;
    }

    .service-desc {
      font-size: 0.82rem;
      line-height: 1.8;
      color: rgba(245, 240, 232, 0.55);
    }

    /* ── EXPERIENCE ── */
    .experience {
      background: var(--warm);
    }

    .timeline {
      margin-top: 4rem;
    }

    .timeline-item {
      display: grid;
      grid-template-columns: 180px 1fr;
      gap: 3rem;
      margin-bottom: 3.5rem;
      padding-bottom: 3.5rem;
      border-bottom: 1px solid rgba(90, 122, 74, 0.15);
      position: relative;
    }

    .timeline-item:last-child {
      border-bottom: none;
      margin-bottom: 0;
    }

    .timeline-year {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1rem;
      color: var(--sage);
      font-style: italic;
      padding-top: 0.2rem;
      text-align: right;
    }

    .timeline-role {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.3rem;
      font-weight: 600;
      color: var(--forest);
      margin-bottom: 0.3rem;
    }

    .timeline-company {
      font-size: 0.78rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--sage);
      margin-bottom: 1rem;
    }

    .timeline-desc {
      font-size: 0.87rem;
      line-height: 1.85;
      color: var(--text-mid);
    }

    /* ── CLIENTS ── */
    .clients {
      background: white;
    }

    .clients-intro {
      font-size: 0.9rem;
      line-height: 1.9;
      color: var(--text-mid);
      max-width: 640px;
      margin-top: 1.5rem;
      margin-bottom: 4rem;
    }

    .clients-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 2px;
    }

    .client-card {
      padding: 2.5rem;
      border-left: 3px solid transparent;
      background: var(--warm);
      transition: all 0.35s;
    }

    .client-card:hover {
      border-left-color: var(--sage);
      background: var(--cream);
    }

    .client-region {
      font-size: 0.68rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1rem;
    }

    .client-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.2rem;
      font-weight: 600;
      color: var(--forest);
      margin-bottom: 0.8rem;
    }

    .client-detail {
      font-size: 0.82rem;
      line-height: 1.8;
      color: var(--text-mid);
    }

    .client-detail ul {
      list-style: none;
    }

    .client-detail li::before {
      content: '— ';
      color: var(--sage);
    }

    /* ── EDUCATION ── */
    .education {
      background: var(--forest);
    }

    .education .section-label {
      color: var(--gold);
    }

    .education .section-label::after {
      background: var(--gold);
      opacity: 0.4;
    }

    .education .section-title {
      color: var(--cream);
    }

    .education .section-title em {
      color: var(--gold-light);
    }

    .edu-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2px;
      margin-top: 4rem;
    }

    .edu-card {
      padding: 2.5rem;
      background: rgba(255, 255, 255, 0.05);
      position: relative;
      overflow: hidden;
      transition: background 0.3s;
    }

    .edu-card:hover {
      background: rgba(255, 255, 255, 0.09);
    }

    .edu-card.current {
      background: rgba(200, 168, 75, 0.1);
      border: 1px solid rgba(200, 168, 75, 0.3);
    }

    .edu-status {
      font-size: 0.68rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      padding: 0.3rem 0.8rem;
      display: inline-block;
      margin-bottom: 1.5rem;
    }

    .edu-status.active {
      background: var(--gold);
      color: var(--forest);
    }

    .edu-status.done {
      border: 1px solid rgba(245, 240, 232, 0.2);
      color: rgba(245, 240, 232, 0.5);
    }

    .edu-degree {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.3rem;
      font-weight: 400;
      color: var(--cream);
      line-height: 1.3;
      margin-bottom: 0.5rem;
    }

    .edu-institution {
      font-size: 0.78rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--leaf);
      margin-bottom: 0.8rem;
    }

    .edu-note {
      font-size: 0.82rem;
      color: rgba(245, 240, 232, 0.5);
      line-height: 1.7;
    }

    .edu-deco {
      position: absolute;
      bottom: -1rem;
      right: 1rem;
      font-family: 'Cormorant Garamond', serif;
      font-size: 7rem;
      font-weight: 300;
      color: rgba(245, 240, 232, 0.04);
      pointer-events: none;
      line-height: 1;
    }

    /* ── CERTIFICATIONS ── */
    @media (max-width: 768px){
      .certifications{
         padding-inline: 1.5rem;
      }
    }
    .certifications {
      background: var(--warm);
    }

    .cert-list {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      margin-top: 3.5rem;
    }

    .cert-item {
      background: white;
      padding: 1.8rem 1.5rem;
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
      border-bottom: 2px solid transparent;
      transition: border-color 0.3s;
    }

    .cert-item:hover {
      border-bottom-color: var(--sage);
    }

    .cert-icon {
      font-size: 1.5rem;
      margin-bottom: 0.5rem;
    }

    .cert-name {
      font-size: 0.87rem;
      font-weight: 500;
      color: var(--forest);
      line-height: 1.4;
    }

    .cert-issuer {
      font-size: 0.72rem;
      color: var(--text-light);
      letter-spacing: 0.05em;
    }

    /* ── CTA FOOTER ── */
    .cta-footer {
      background: var(--cream);
      padding: 6rem;
      text-align: center;
      border-top: 1px solid rgba(90, 122, 74, 0.15);
    }

    .cta-footer .section-label {
      justify-content: center;
    }

    .cta-footer .section-label::after {
      max-width: 0;
      display: none;
    }

    .cta-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.5rem, 4vw, 4rem);
      font-weight: 300;
      color: var(--forest);
      line-height: 1.1;
      margin-bottom: 1.5rem;
    }

    .cta-title em {
      font-style: italic;
      color: var(--sage);
    }

    .cta-sub {
      font-size: 0.9rem;
      color: var(--text-mid);
      max-width: 480px;
      margin: 0 auto 3rem;
      line-height: 1.8;
    }

    .cta-buttons {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
    }

    .btn-primary {
      background: var(--forest);
      color: var(--cream);
      padding: 1rem 2.5rem;
      text-decoration: none;
      font-size: 0.8rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      transition: background 0.3s;
    }

    .btn-primary:hover {
      background: var(--moss);
    }

    .btn-outline {
      border: 1px solid var(--forest);
      color: var(--forest);
      padding: 1rem 2.5rem;
      text-decoration: none;
      font-size: 0.8rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      transition: all 0.3s;
    }

    .btn-outline:hover {
      background: var(--forest);
      color: var(--cream);
    }

    footer {
      background: var(--forest);
      padding: 2rem 6rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .footer-copy {
      font-size: 0.75rem;
      color: rgba(245, 240, 232, 0.4);
      letter-spacing: 0.05em;
    }

    .footer-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 0.95rem;
      letter-spacing: 0.18em;
      color: rgba(245, 240, 232, 0.5);
      text-transform: uppercase;
    }

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

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

    .hero-tag {
      animation: fadeUp 0.6s 0.2s both;
    }

    .hero-name {
      animation: fadeUp 0.6s 0.4s both;
    }

    .hero-title {
      animation: fadeUp 0.6s 0.55s both;
    }

    .hero-desc {
      animation: fadeUp 0.6s 0.7s both;
    }

    .hero-cta {
      animation: fadeUp 0.6s 0.85s both;
    }

    .hero-stats {
      animation: fadeUp 0.6s 0.5s both;
    }

    @media (max-width: 900px) {
      nav {
        padding: 1rem 2rem;
      }

      .nav-links {
        display: none;
      }

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

      .hero-left::after {
        display: none;
      }

      .hero-left,
      .hero-right {
        padding: 5rem 2.5rem 3rem;
      }

      section {
        padding: 5rem 2.5rem;
      }

      .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
      }

      .about-body {
        column-count: 1;
      }

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

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

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

      .cert-list {
        grid-template-columns: 1fr 1fr;
      }

      .timeline-item {
        grid-template-columns: 1fr;
        gap: 0.5rem;
      }

      .timeline-year {
        text-align: left;
      }

      footer {
        flex-direction: column;
        gap: 1rem;
        padding: 2rem;
        text-align: center;
      }

      .cta-footer {
        padding: 4rem 2rem;
      }
    }

        /* GALLERY */
    /* .gallery {
      padding: 100px 20px;
      background: #f9f9f9;
      text-align: center;
    } */

    /* BATASI LEBAR BIAR RATA */
    .gallery-grid {
      max-width: 1200px;
      margin: 40px auto 0;

      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 25px;
    }

    /* ITEM */
    .gallery-item {
      position: relative;
      aspect-ratio: 4 / 3;
      overflow: hidden;
      border-radius: 14px;
      cursor: pointer;
    }

    /* GAMBAR */
    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.4s ease;
    }

    /* HOVER EFFECT */
    .gallery-item:hover img {
      transform: scale(1.08);
    }

    /* OVERLAY */
    .gallery-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
      display: flex;
      align-items: flex-end;
      padding: 20px;
      opacity: 0;
      transition: 0.3s;
    }

    .gallery-item:hover .gallery-overlay {
      opacity: 1;
    }

    /* TEXT */
    .gallery-title {
      color: #fff;
      font-size: 16px;
      font-weight: 500;
    }

    /* INTRO */
    .gallery-intro {
      /* max-width: 600px; */
      margin: 10px auto 0;
      color: #666;
    }

    /* RESPONSIVE */
    @media (max-width: 992px) {
      .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

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

      .gallery {
        padding: 60px 15px;
      }
    }

    /* ACTION BUTTON BAHASA */
        .lang-custom {
            position: relative;
            margin-left: 15px;
            font-size: 14px;
        }
    
        .lang-custom .selected {
            display: flex;
            align-items: center;
            gap: 6px;
            cursor: pointer;
            padding: 5px 8px;
            border-radius: 6px;
            border: 1px solid #ccc;
            background: transparent;
        }
    
        .lang-custom img {
            width: 16px;
        }
    
        .lang-custom .options {
            display: none;
            position: absolute;
            top: 110%;
            right: 0;
            background: white;
            border: 1px solid #ccc;
            border-radius: 6px;
            overflow: hidden;
            min-width: 140px;
            z-index: 999;
        }
    
        .lang-custom .options div {
            padding: 6px 10px;
            display: flex;
            align-items: center;
            gap: 6px;
            cursor: pointer;
        }
    
        .lang-custom .options div:hover {
            background: #f5f5f5;
        }
    
        .lang-custom .options.show {
            display: block;
        }