/* ============================
       CSS VARIABLES & RESET
    ============================ */
    :root {
      --bg: #f7f4f0;
      --bg2: #EEEAE4;
      --fg: #1A1714;
      --fg2: #5C5651;
      --fg3: #9C958E;
      --accent: #C8A96E;
      --accent2: #8B5E3C;
      --white: #FFFFFF;
      --border: rgba(26,23,20,0.1);
      --radius: 2px;
      --nav-h: 72px;
      --serif: 'Cormorant Garamond', Georgia, serif;
      --sans: 'Outfit', system-ui, sans-serif;
      --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
      --ease-out: cubic-bezier(0, 0, 0.2, 1);
    }
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; font-size: 16px; }
    body {
      font-family: var(--sans);
      background: var(--bg);
      color: var(--fg);
      line-height: 1.6;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }
    img { max-width: 100%; display: block; }
    a { text-decoration: none; color: inherit; }
    button { cursor: pointer; border: none; background: none; font-family: var(--sans); }
    ul { list-style: none; }

    /* ============================
       SCROLLBAR
    ============================ */
    ::-webkit-scrollbar { width: 4px; }
    ::-webkit-scrollbar-track { background: var(--bg); }
    ::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 2px; }

    /* ============================
       SELECTION
    ============================ */
    ::selection { background: var(--accent); color: var(--white); }

    /* ============================
       LOADER
    ============================ */
    #loader {
      position: fixed; inset: 0; z-index: 9999;
      background: var(--fg);
      display: flex; align-items: center; justify-content: center;
      transition: opacity 0.6s var(--ease), visibility 0.6s;
    }
    #loader.hide { opacity: 0; visibility: hidden; }
    .loader-text {
      font-family: var(--serif);
      font-size: clamp(1.5rem, 4vw, 2.5rem);
      color: var(--accent);
      font-weight: 300;
      letter-spacing: 0.2em;
      animation: pulse 1.2s ease infinite;
    }
    @keyframes pulse { 0%,100%{opacity:0.4} 50%{opacity:1} }

    /* ============================
       CURSOR
    ============================ */
    .cursor {
      width: 8px; height: 8px;
      border-radius: 50%;
      background: var(--accent);
      position: fixed; pointer-events: none; z-index: 9998;
      transform: translate(-50%,-50%);
      transition: transform 0.1s, width 0.3s var(--ease), height 0.3s var(--ease);
    }
    .cursor-ring {
      width: 36px; height: 36px;
      border-radius: 50%;
      border: 1px solid var(--accent);
      position: fixed; pointer-events: none; z-index: 9997;
      transform: translate(-50%,-50%);
      transition: transform 0.15s var(--ease), width 0.3s var(--ease), height 0.3s var(--ease), opacity 0.3s;
      opacity: 0.5;
    }
    body.cursor-hover .cursor { width: 16px; height: 16px; background: var(--accent2); }
    body.cursor-hover .cursor-ring { width: 52px; height: 52px; opacity: 0.8; }
    @media (pointer: coarse) { .cursor, .cursor-ring { display: none; } }

    /* ============================
       NAVIGATION
    ============================ */
    #nav {
      position: fixed; top: 0; left: 0; right: 0;
      height: var(--nav-h);
      z-index: 100;
      display: flex; align-items: center;
      padding: 0 clamp(1.5rem, 5vw, 4rem);
      transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
    }
    #nav.scrolled {
      background: rgba(247,245,242,0.92);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      box-shadow: 0 1px 0 var(--border);
    }
    .nav-logo {
      font-family: var(--serif);
      font-size: 1.25rem;
      font-weight: 600;
      letter-spacing: 0.04em;
      color: var(--fg);
      margin-right: auto;
    }
    .nav-logo span { color: var(--accent); }
    .nav-links {
      display: flex; gap: 2.5rem; align-items: center;
    }
    .nav-links a {
      font-size: 0.8rem;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--fg2);
      transition: color 0.25s;
      position: relative;
    }
    .nav-links a::after {
      content: '';
      position: absolute; bottom: -4px; left: 0; right: 100%;
      height: 1px; background: var(--accent);
      transition: right 0.3s var(--ease);
    }
    .nav-links a:hover, .nav-links a.active { color: var(--fg); }
    .nav-links a:hover::after, .nav-links a.active::after { right: 0; }
    .nav-cta {
      margin-left: 1.5rem;
      padding: 0.5rem 1.25rem;
      border: 1px solid var(--accent);
      color: var(--accent);
      font-size: 0.75rem;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      border-radius: var(--radius);
      transition: background 0.25s, color 0.25s;
    }
    .nav-cta:hover { background: var(--accent); color: var(--white); }
    .hamburger {
      display: none; flex-direction: column; gap: 5px;
      width: 24px; cursor: pointer; padding: 4px;
    }
    .hamburger span {
      display: block; height: 1.5px; background: var(--fg);
      transition: transform 0.3s var(--ease), opacity 0.3s;
    }
    .hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

    /* Mobile nav drawer */
    .nav-drawer {
      position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0;
      background: rgba(247,245,242,0.97);
      backdrop-filter: blur(20px);
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      gap: 2.5rem;
      z-index: 99;
      opacity: 0; visibility: hidden;
      transition: opacity 0.3s var(--ease), visibility 0.3s;
    }
    .nav-drawer.open { opacity: 1; visibility: visible; }
    .nav-drawer a {
      font-family: var(--serif);
      font-size: 2rem;
      font-weight: 300;
      color: var(--fg);
      transition: color 0.25s;
    }
    .nav-drawer a:hover { color: var(--accent); }

    /* ============================
       PAGE SYSTEM
    ============================ */
    .page { display: none; min-height: 100vh; }
    .page.active { display: block; }
    .fade-in { animation: fadeUp 0.7s var(--ease-out) both; }
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .stagger > * { animation: fadeUp 0.6s var(--ease-out) both; }
    .stagger > *:nth-child(1) { animation-delay: 0.05s; }
    .stagger > *:nth-child(2) { animation-delay: 0.15s; }
    .stagger > *:nth-child(3) { animation-delay: 0.25s; }
    .stagger > *:nth-child(4) { animation-delay: 0.35s; }
    .stagger > *:nth-child(5) { animation-delay: 0.45s; }

    /* ============================
       SECTION UTILITIES
    ============================ */
    .section { padding: clamp(5rem, 10vw, 9rem) clamp(1.5rem, 5vw, 4rem); }
    .section-sm { padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4rem); }
    .container { max-width: 1200px; margin: 0 auto; }
    .container-sm { max-width: 800px; margin: 0 auto; }
    .label {
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 1rem;
      display: block;
    }
    .title-xl {
      font-family: var(--serif);
      font-size: clamp(2.5rem, 7vw, 6rem);
      font-weight: 300;
      line-height: 1.05;
      letter-spacing: -0.02em;
    }
    .title-lg {
      font-family: var(--serif);
      font-size: clamp(2rem, 5vw, 4rem);
      font-weight: 300;
      line-height: 1.1;
      letter-spacing: -0.02em;
    }
    .title-md {
      font-family: var(--serif);
      font-size: clamp(1.5rem, 3.5vw, 2.5rem);
      font-weight: 300;
      line-height: 1.2;
    }
    .subtitle {
      font-size: clamp(0.95rem, 1.5vw, 1.1rem);
      color: var(--fg2);
      line-height: 1.75;
      font-weight: 300;
      max-width: 540px;
    }
    .divider {
      width: 48px; height: 1px;
      background: var(--accent);
      margin: 2rem 0;
    }
    .btn {
      display: inline-flex; align-items: center; gap: 0.6rem;
      padding: 0.85rem 2rem;
      font-size: 0.8rem;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      border-radius: var(--radius);
      transition: all 0.3s var(--ease);
    }
    .btn-primary {
      background: var(--fg);
      color: var(--white);
    }
    .btn-primary:hover { background: var(--accent2); transform: translateY(-2px); }
    .btn-outline {
      border: 1px solid var(--fg);
      color: var(--fg);
    }
    .btn-outline:hover { background: var(--fg); color: var(--white); }
    .btn-accent {
      background: var(--accent);
      color: var(--white);
    }
    .btn-accent:hover { background: var(--accent2); transform: translateY(-2px); }
    .grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
    .grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
    .grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

    /* ============================
       ▶ PAGE: HOME
    ============================ */

    /* Hero */
    .hero {
      min-height: 100vh;
      display: flex; flex-direction: column; justify-content: flex-end;
      padding: calc(var(--nav-h) + 4rem) clamp(1.5rem, 5vw, 4rem) clamp(4rem, 8vw, 7rem);
      position: relative; overflow: hidden;
    }
    .hero-bg {
      position: absolute; inset: 0; z-index: 0;
      background: 
        radial-gradient(ellipse 80% 60% at 70% 40%, rgba(200,169,110,0.12) 0%, transparent 60%),
        radial-gradient(ellipse 60% 80% at 20% 80%, rgba(139,94,60,0.08) 0%, transparent 55%);
    }
    .hero-line {
      position: absolute; top: 0; right: clamp(4rem, 15vw, 15rem);
      width: 1px; height: 45vh;
      background: linear-gradient(to bottom, transparent, var(--accent), transparent);
      opacity: 0.4;
    }
    .hero-content { position: relative; z-index: 1; max-width: 1200px; }
    .hero-eyebrow {
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 2rem;
      display: flex; align-items: center; gap: 1rem;
    }
    .hero-eyebrow::before {
      content: '';
      width: 40px; height: 1px;
      background: var(--accent);
    }
    .hero-title {
      font-family: var(--serif);
      font-size: clamp(3.5rem, 10vw, 9rem);
      font-weight: 300;
      line-height: 1.0;
      letter-spacing: -0.03em;
      margin-bottom: 2.5rem;
    }
    .hero-title em { font-style: italic; color: var(--accent); }
    .hero-footer {
      display: flex; align-items: flex-end;
      justify-content: space-between; flex-wrap: wrap; gap: 2rem;
    }
    .hero-desc {
      font-size: 1rem;
      color: var(--fg2);
      line-height: 1.8;
      max-width: 420px;
      font-weight: 300;
    }
    .hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
    .hero-scroll {
      position: absolute; bottom: 2.5rem; left: 50%;
      transform: translateX(-50%);
      display: flex; flex-direction: column; align-items: center; gap: 0.75rem;
      font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
      color: var(--fg3); z-index: 1;
    }
    .scroll-line {
      width: 1px; height: 48px;
      background: linear-gradient(to bottom, var(--accent), transparent);
      animation: scrollLine 1.8s ease infinite;
    }
    @keyframes scrollLine {
      0% { transform: scaleY(0); transform-origin: top; opacity: 1; }
      50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
      100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
    }

    /* Stats bar */
    .stats-bar {
      background: var(--fg);
      padding: 2.5rem clamp(1.5rem, 5vw, 4rem);
    }
    .stats-inner {
      max-width: 1200px; margin: 0 auto;
      display: flex; flex-wrap: wrap; gap: 3rem; justify-content: space-between;
    }
    .stat-item { text-align: center; }
    .stat-num {
      font-family: var(--serif);
      font-size: 2.8rem;
      color: var(--accent);
      font-weight: 300;
      display: block;
      line-height: 1;
    }
    .stat-label {
      font-size: 0.72rem;
      color: rgba(255,255,255,0.5);
      letter-spacing: 0.15em;
      text-transform: uppercase;
      margin-top: 0.5rem;
      display: block;
    }

    /* Portfolio Grid */
    .portfolio-grid {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      grid-auto-rows: 280px;
      gap: 1.5rem;
    }
    .pf-card {
      position: relative; overflow: hidden;
      border-radius: 4px;
      cursor: pointer;
      background: var(--bg2);
    }
    .pf-card:nth-child(1) { grid-column: span 7; grid-row: span 2; }
    .pf-card:nth-child(2) { grid-column: span 5; }
    .pf-card:nth-child(3) { grid-column: span 5; }
    .pf-card:nth-child(4) { grid-column: span 4; }
    .pf-card:nth-child(5) { grid-column: span 4; }
    .pf-card:nth-child(6) { grid-column: span 4; }
    .pf-card-img {
      width: 100%; height: 100%;
      object-fit: cover;
      transition: transform 0.7s var(--ease);
    }
    .pf-card-img-placeholder {
      width: 100%; height: 100%;
      display: flex; align-items: center; justify-content: center;
      font-family: var(--serif); font-size: 1.5rem;
      color: var(--fg3); letter-spacing: 0.05em;
      transition: transform 0.7s var(--ease);
    }
    .pf-card:hover .pf-card-img,
    .pf-card:hover .pf-card-img-placeholder { transform: scale(1.05); }
    .pf-card-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(26,23,20,0.85) 0%, transparent 55%);
      opacity: 0; transition: opacity 0.4s var(--ease);
      display: flex; flex-direction: column; justify-content: flex-end;
      padding: 2rem;
    }
    .pf-card:hover .pf-card-overlay { opacity: 1; }
    .pf-card-cat {
      font-size: 0.65rem; letter-spacing: 0.2em;
      text-transform: uppercase; color: var(--accent);
      margin-bottom: 0.4rem;
    }
    .pf-card-title {
      font-family: var(--serif);
      font-size: 1.4rem; font-weight: 300;
      color: var(--white); line-height: 1.2;
    }
    .pf-card-arrow {
      position: absolute; top: 1.5rem; right: 1.5rem;
      width: 40px; height: 40px; border-radius: 50%;
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.2);
      display: flex; align-items: center; justify-content: center;
      color: white; font-size: 1rem;
      opacity: 0; transform: scale(0.7);
      transition: opacity 0.3s, transform 0.3s var(--ease);
    }
    .pf-card:hover .pf-card-arrow { opacity: 1; transform: scale(1); }

    /* Filter Tabs */
    .filter-tabs {
      display: flex; gap: 0.5rem; flex-wrap: wrap;
      margin-bottom: 3rem;
    }
    .filter-tab {
      padding: 0.5rem 1.25rem;
      font-size: 0.75rem; font-weight: 500;
      letter-spacing: 0.08em; text-transform: uppercase;
      border: 1px solid var(--border);
      border-radius: 100px;
      color: var(--fg2);
      transition: all 0.25s;
      cursor: pointer;
    }
    .filter-tab:hover, .filter-tab.active {
      background: var(--fg); color: var(--white); border-color: var(--fg);
    }

    /* Services */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 0;
      border: 1px solid var(--border);
    }
    .service-item {
      padding: 2.5rem;
      border-right: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      transition: background 0.3s;
    }
    .service-item:hover { background: var(--white); }
    .service-num {
      font-family: var(--serif);
      font-size: 3rem; color: var(--bg2);
      font-weight: 300; line-height: 1;
      margin-bottom: 1.5rem;
    }
    .service-title {
      font-size: 1.1rem; font-weight: 500;
      margin-bottom: 0.75rem;
    }
    .service-desc {
      font-size: 0.88rem; color: var(--fg2);
      line-height: 1.7;
    }

    /* Process */
    .process-steps {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 0;
      position: relative;
    }
    .process-steps::before {
      content: '';
      position: absolute; top: 1.5rem; left: 8%; right: 8%; height: 1px;
      background: var(--border);
      z-index: 0;
    }
    .process-step { padding: 0 1.5rem; text-align: center; position: relative; z-index: 1; }
    .process-dot {
      width: 48px; height: 48px; border-radius: 50%;
      background: var(--bg); border: 2px solid var(--accent);
      display: flex; align-items: center; justify-content: center;
      font-family: var(--serif); font-size: 1.1rem; font-weight: 300; color: var(--accent);
      margin: 0 auto 1.5rem;
    }
    .process-step-title { font-size: 0.9rem; font-weight: 600; margin-bottom: 0.5rem; }
    .process-step-desc { font-size: 0.82rem; color: var(--fg2); line-height: 1.6; }

    /* Testimonials */
    .testimonials-wrap {
      display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 1.5rem;
    }
    .testimonial-card {
      background: var(--white);
      padding: 2.5rem;
      border-radius: 4px;
      position: relative;
    }
    .testimonial-quote {
      font-family: var(--serif);
      font-size: 4rem; line-height: 1;
      color: var(--accent); opacity: 0.3;
      position: absolute; top: 1rem; left: 2rem;
    }
    .testimonial-text {
      font-family: var(--serif);
      font-size: 1.1rem; line-height: 1.7;
      color: var(--fg); font-style: italic;
      margin-bottom: 1.5rem; position: relative; z-index: 1;
      padding-top: 1.5rem;
    }
    .testimonial-author { display: flex; align-items: center; gap: 1rem; }
    .testimonial-avatar {
      width: 44px; height: 44px; border-radius: 50%;
      background: var(--bg2);
      display: flex; align-items: center; justify-content: center;
      font-family: var(--serif); font-size: 1.1rem; color: var(--accent);
    }
    .testimonial-name { font-size: 0.9rem; font-weight: 600; }
    .testimonial-role { font-size: 0.78rem; color: var(--fg3); }

    /* Clients marquee */
    .marquee-wrap {
      overflow: hidden;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 1.5rem 0;
      background: var(--white);
    }
    .marquee-track {
      display: flex; gap: 4rem; align-items: center;
      animation: marquee 25s linear infinite;
      width: max-content;
    }
    .marquee-wrap:hover .marquee-track { animation-play-state: paused; }
    @keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
    .marquee-item {
      font-family: var(--serif);
      font-size: 1.1rem; color: var(--fg3);
      letter-spacing: 0.05em; white-space: nowrap;
      transition: color 0.25s;
    }
    .marquee-item:hover { color: var(--accent); }
    .marquee-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--accent); opacity: 0.4; }

    /* CTA Section */
    .cta-section {
      background: var(--fg);
      padding: clamp(5rem, 10vw, 9rem) clamp(1.5rem, 5vw, 4rem);
      text-align: center; position: relative; overflow: hidden;
    }
    .cta-section::before {
      content: 'KYD';
      position: absolute; inset: 0;
      display: flex; align-items: center; justify-content: center;
      font-family: var(--serif);
      font-size: 40vw; font-weight: 300;
      color: rgba(200,169,110,0.04);
      letter-spacing: -0.05em;
      pointer-events: none; user-select: none;
    }
    .cta-section .title-xl { color: var(--white); }
    .cta-section .subtitle { color: rgba(255,255,255,0.5); margin: 2rem auto; }
    .cta-section .btn-accent { font-size: 0.85rem; padding: 1rem 2.5rem; }

    /* ============================
       ▶ PAGE: PROFILE
    ============================ */
    
    .profile-hero {
      padding-top: calc(var(--nav-h) + -5rem);
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 4rem; align-items: center;
    }
    .profile-img-wrap {
      aspect-ratio: 4/5; background: var(--bg2);
      border-radius: 4px; overflow: hidden;
      position: relative;
    }
    .profile-img-placeholder {
      width: 100%; height: 100%;
      display: flex; align-items: center; justify-content: center;
      font-family: var(--serif); font-size: 5rem; color: var(--fg3);
      background: linear-gradient(135deg, var(--bg2) 0%, var(--white) 100%);
    }
    .profile-badges { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
    .badge {
      padding: 0.35rem 0.9rem;
      border: 1px solid var(--border); border-radius: 100px;
      font-size: 0.72rem; font-weight: 500; color: var(--fg2);
      letter-spacing: 0.06em;
    }
    .skills-list { margin-top: 2rem; }
    .skill-row { margin-bottom: 1.25rem; }
    .skill-row-top { display: flex; justify-content: space-between; margin-bottom: 0.5rem; font-size: 0.82rem; }
    .skill-bar { height: 2px; background: var(--border); border-radius: 1px; overflow: hidden; }
    .skill-fill { height: 100%; background: var(--accent); border-radius: 1px; transform-origin: left; transform: scaleX(0); transition: transform 1s var(--ease-out); }
    .skill-fill.animate { transform: scaleX(1); }
    .timeline { margin-top: 1rem; }
    .timeline-item {
      display: grid; grid-template-columns: 120px 1fr;
      gap: 1.5rem; padding: 1.5rem 0;
      border-bottom: 1px solid var(--border);
    }
    .timeline-year { font-size: 0.78rem; color: var(--fg3); padding-top: 0.2rem; }
    .timeline-title { font-weight: 600; margin-bottom: 0.25rem; }
    .timeline-sub { font-size: 0.85rem; color: var(--accent); margin-bottom: 0.5rem; }
    .timeline-desc { font-size: 0.88rem; color: var(--fg2); line-height: 1.7; }
    .awards-grid {
      display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 1.5rem; margin-top: 2rem;
    }
    .award-item {
      padding: 1.75rem; background: var(--white); border-radius: 4px;
      text-align: center;
    }
    .award-icon { font-size: 2rem; margin-bottom: 1rem; }
    .award-title { font-size: 0.9rem; font-weight: 600; margin-bottom: 0.25rem; }
    .award-org { font-size: 0.78rem; color: var(--fg3); }

    /* ============================
       ▶ PAGE: BLOG
    ============================ */
    .blog-header { padding-top: calc(var(--nav-h) + -5rem); }
    .blog-featured {
      display: grid; grid-template-columns: 3fr 2fr; gap: 2rem;
      margin-bottom: 4rem;
    }
    .blog-card {
      background: var(--white); border-radius: 4px; overflow: hidden;
      transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
      cursor: pointer;
    }
    .blog-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(26,23,20,0.1); }
    .blog-thumb {
      aspect-ratio: 16/9; background: var(--bg2);
      display: flex; align-items: center; justify-content: center;
      font-family: var(--serif); font-size: 1.2rem; color: var(--fg3);
      overflow: hidden;
    }
    .blog-thumb-tall { aspect-ratio: 4/5; }
    .blog-body { padding: 2rem; }
    .blog-cat {
      font-size: 0.68rem; font-weight: 600;
      letter-spacing: 0.18em; text-transform: uppercase;
      color: var(--accent); margin-bottom: 0.75rem; display: block;
    }
    .blog-title {
      font-family: var(--serif);
      font-size: 1.4rem; font-weight: 400; line-height: 1.3;
      margin-bottom: 0.75rem;
    }
    .blog-title-sm {
      font-family: var(--serif);
      font-size: 1.15rem; font-weight: 400; line-height: 1.35;
      margin-bottom: 0.75rem;
    }
    .blog-excerpt { font-size: 0.88rem; color: var(--fg2); line-height: 1.7; }
    .blog-meta {
      display: flex; align-items: center; gap: 1.25rem;
      margin-top: 1.5rem;
      font-size: 0.75rem; color: var(--fg3);
    }
    .blog-meta-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--fg3); }
    .blog-grid-list {
      display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 1.5rem;
    }
    .blog-side-list { display: flex; flex-direction: column; gap: 1rem; }
    .blog-side-card {
      background: var(--white); border-radius: 4px; padding: 1.5rem;
      cursor: pointer; transition: transform 0.3s var(--ease);
    }
    .blog-side-card:hover { transform: translateX(6px); }

    /* Blog Post Content in Modal */
    .blog-post-content p { margin-bottom: 1.25rem; }
    .blog-post-content h3 {
      font-family: var(--serif); font-size: 1.2rem;
      font-weight: 400; color: var(--fg);
      margin: 2rem 0 0.75rem;
    }
    .blog-post-content em { color: var(--accent); font-style: italic; }

    /* Blog inline images (admin-inserted) */
    .blog-img-full,
    .blog-img-center,
    .blog-img-left,
    .blog-img-right {
      margin: 1.5rem 0; overflow: hidden; border-radius: 6px;
    }
    .blog-img-full img { width: 100%; border-radius: 6px; display: block; }
    .blog-img-center img { display: block; margin: 0 auto; max-width: 100%; border-radius: 6px; }
    .blog-img-left img { float: left; margin: 0 1.5rem 1rem 0; max-width: 50%; border-radius: 6px; }
    .blog-img-right img { float: right; margin: 0 0 1rem 1.5rem; max-width: 50%; border-radius: 6px; }
    @media (max-width: 768px) {
      .blog-img-left img, .blog-img-right img {
        float: none; max-width: 100%; margin: 1rem 0;
      }
    }

    /* ============================
       ▶ PAGE: OUR VENTURE
    ============================ */
    .venture-header { padding-top: calc(var(--nav-h) + -5rem); }
    .ventures-list { display: flex; flex-direction: column; gap: 0; }
    .venture-item {
      display: grid; grid-template-columns: 1fr 2fr;
      gap: 4rem; padding: 4rem 0;
      border-bottom: 1px solid var(--border);
      align-items: center;
      cursor: pointer;
    }
    .venture-item:hover .venture-img-wrap img { transform: scale(1.04); }
    .venture-img-wrap {
      aspect-ratio: 4/3; border-radius: 4px;
      overflow: hidden; background: var(--bg2);
    }
    .venture-img-placeholder {
      width: 100%; height: 100%;
      display: flex; align-items: center; justify-content: center;
      font-family: var(--serif); font-size: 1.5rem; color: var(--fg3);
      transition: transform 0.6s var(--ease);
    }
    .venture-num {
      font-family: var(--serif);
      font-size: 5rem; color: var(--bg2);
      font-weight: 300; line-height: 1; margin-bottom: 1rem;
    }
    .venture-name {
      font-family: var(--serif);
      font-size: 2.2rem; font-weight: 300; margin-bottom: 0.75rem;
    }
    .venture-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 1.25rem; }
    .venture-tag {
      padding: 0.3rem 0.8rem;
      background: var(--bg2); border-radius: 100px;
      font-size: 0.72rem; color: var(--fg2);
    }
    .venture-desc { font-size: 0.95rem; color: var(--fg2); line-height: 1.75; margin-bottom: 1.5rem; }

    /* ============================
       ▶ PAGE: KERJASAMA
    ============================ */
    .collab-header { padding-top: calc(var(--nav-h) + -5rem); }
    .collab-options {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.5rem; margin-bottom: 5rem;
    }
    .collab-card {
      padding: 2.5rem; border: 1px solid var(--border);
      border-radius: 4px; transition: all 0.3s var(--ease);
      cursor: pointer;
    }
    .collab-card:hover { border-color: var(--accent); background: var(--white); transform: translateY(-4px); }
    .collab-icon { font-size: 2rem; margin-bottom: 1.25rem; display: block; }
    .collab-title { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.75rem; }
    .collab-desc { font-size: 0.88rem; color: var(--fg2); line-height: 1.7; }
    .collab-price {
      margin-top: 1.5rem; padding-top: 1.5rem;
      border-top: 1px solid var(--border);
      font-family: var(--serif); font-size: 1.6rem; color: var(--accent);
    }
    .collab-price small { font-family: var(--sans); font-size: 0.75rem; color: var(--fg3); }
    .contact-form-wrap {
      display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start;
    }
    .form-group { margin-bottom: 1.5rem; }
    .form-label { font-size: 0.78rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--fg2); display: block; margin-bottom: 0.6rem; }
    .form-input, .form-textarea, .form-select {
      width: 100%; padding: 0.9rem 1rem;
      background: transparent;
      border: 1px solid var(--border); border-radius: var(--radius);
      font-family: var(--sans); font-size: 0.95rem; color: var(--fg);
      transition: border-color 0.25s;
      outline: none;
    }
    .form-input:focus, .form-textarea:focus, .form-select:focus { border-color: var(--accent); }
    .form-textarea { resize: vertical; min-height: 120px; }
    .form-select { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239C958E' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
    .contact-info-item { display: flex; gap: 1rem; margin-bottom: 2rem; }
    .contact-info-icon { width: 44px; height: 44px; border-radius: 50%; background: var(--bg2); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; margin-top: 0.2rem; }
    .contact-info-text h4 { font-size: 0.88rem; font-weight: 600; margin-bottom: 0.25rem; }
    .contact-info-text p { font-size: 0.85rem; color: var(--fg2); }
    .social-links { display: flex; gap: 1rem; margin-top: 2rem; }
    .social-link {
      width: 44px; height: 44px; border-radius: 50%;
      border: 1px solid var(--border);
      display: flex; align-items: center; justify-content: center;
      font-size: 0.9rem; color: var(--fg2);
      transition: all 0.25s;
    }
    .social-link:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-3px); }

    /* ============================
       FOOTER
    ============================ */
    footer {
      background: var(--fg);
      padding: 4rem clamp(1.5rem, 5vw, 4rem) 2rem;
    }
    .footer-inner {
      max-width: 1200px; margin: 0 auto;
      display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
      padding-bottom: 3rem;
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .footer-brand .nav-logo { color: var(--white); font-size: 1.4rem; margin-bottom: 1rem; display: block; }
    .footer-desc { font-size: 0.85rem; color: rgba(255,255,255,0.4); line-height: 1.7; max-width: 280px; }
    .footer-col h5 {
      font-size: 0.7rem; font-weight: 600; letter-spacing: 0.18em;
      text-transform: uppercase; color: rgba(255,255,255,0.3);
      margin-bottom: 1.25rem;
    }
    .footer-col li { margin-bottom: 0.75rem; }
    .footer-col a { font-size: 0.88rem; color: rgba(255,255,255,0.55); transition: color 0.25s; }
    .footer-col a:hover { color: var(--accent); }
    .footer-bottom {
      max-width: 1200px; margin: 1.5rem auto 0;
      display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
    }
    .footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.25); }
    .footer-copy a { color: var(--accent); }

    /* ============================
       BACK TO TOP
    ============================ */
    #back-top {
      position: fixed; bottom: 2rem; right: 2rem; z-index: 50;
      width: 44px; height: 44px; border-radius: 50%;
      background: var(--fg); color: var(--white);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.1rem;
      opacity: 0; transform: translateY(20px);
      transition: all 0.3s var(--ease);
      border: 1px solid rgba(255,255,255,0.1);
    }
    #back-top.show { opacity: 1; transform: translateY(0); }
    #back-top:hover { background: var(--accent); transform: translateY(-4px); }

    /* ============================
       PORTFOLIO MODAL
    ============================ */
    .modal-overlay {
      position: fixed; inset: 0; z-index: 200;
      background: rgba(26,23,20,0.85);
      backdrop-filter: blur(8px);
      display: flex; align-items: center; justify-content: center;
      opacity: 0; visibility: hidden;
      transition: all 0.3s var(--ease);
      padding: 1rem;
    }
    .modal-overlay.open { opacity: 1; visibility: visible; }
    .modal-box {
      background: var(--bg);
      max-width: 860px; width: 100%; max-height: 90vh;
      overflow-y: auto; border-radius: 8px;
      padding: clamp(2rem, 4vw, 3.5rem);
      transform: translateY(20px); transition: transform 0.3s var(--ease);
    }
    .modal-overlay.open .modal-box { transform: translateY(0); }
    .modal-close {
      position: absolute; top: 1.5rem; right: 1.5rem;
      width: 40px; height: 40px; border-radius: 50%;
      background: var(--bg2); display: flex; align-items: center; justify-content: center;
      font-size: 1.1rem; color: var(--fg); cursor: pointer;
      transition: background 0.25s;
    }
    .modal-close:hover { background: var(--border); }
    .modal-img {
      aspect-ratio: 16/9; background: var(--bg2); border-radius: 4px; margin-bottom: 2rem;
      display: flex; align-items: center; justify-content: center;
      font-family: var(--serif); font-size: 2rem; color: var(--fg3);
    }
    .modal-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 1rem; }
    .modal-tag {
      padding: 0.3rem 0.9rem; background: var(--bg2); border-radius: 100px;
      font-size: 0.72rem; color: var(--fg2);
    }

    /* ============================
       TOAST
    ============================ */
    .toast {
      position: fixed; bottom: 2rem; left: 50%; transform: translateX(-50%) translateY(80px);
      background: var(--fg); color: var(--white);
      padding: 1rem 2rem; border-radius: 100px;
      font-size: 0.88rem; z-index: 300;
      transition: transform 0.4s var(--ease);
      white-space: nowrap;
    }
    .toast.show { transform: translateX(-50%) translateY(0); }

    /* ============================
       RESPONSIVE
    ============================ */
    @media (max-width: 1024px) {
      .portfolio-grid { grid-auto-rows: 220px; }
      .pf-card:nth-child(1) { grid-column: span 12; grid-row: span 1; }
      .pf-card:nth-child(2), .pf-card:nth-child(3) { grid-column: span 6; }
      .pf-card:nth-child(4), .pf-card:nth-child(5), .pf-card:nth-child(6) { grid-column: span 4; }
      .profile-hero { grid-template-columns: 1fr; }
      .profile-img-wrap { max-width: 340px; margin: 0 auto; }
      .blog-featured { grid-template-columns: 1fr; }
      .venture-item { grid-template-columns: 1fr; gap: 2rem; }
      .contact-form-wrap { grid-template-columns: 1fr; gap: 3rem; }
      .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
    }
    @media (max-width: 768px) {
      :root { --nav-h: 60px; }
      .nav-links { display: none; }
      .hamburger { display: flex; }
      .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
      .portfolio-grid { grid-auto-rows: 200px; }
      .pf-card:nth-child(1),
      .pf-card:nth-child(2),
      .pf-card:nth-child(3),
      .pf-card:nth-child(4),
      .pf-card:nth-child(5),
      .pf-card:nth-child(6) { grid-column: span 12; }
      .stats-inner { justify-content: center; }
      .process-steps::before { display: none; }
      .form-row { grid-template-columns: 1fr; }
      .footer-inner { grid-template-columns: 1fr; }
      .footer-brand { grid-column: span 1; }
      .venture-item { padding: 2.5rem 0; }
    }
    @media (max-width: 480px) {
      .hero-footer { flex-direction: column; }
      .hero-title { font-size: clamp(2.8rem, 14vw, 4rem); }
    }