
      :root {
        --dark: #0d0d0d;
        --dark2: #111118;
        --dark3: #16161f;
        --surface: rgba(255, 255, 255, 0.04);
        --border: rgba(255, 255, 255, 0.08);
        --accent: #ec8f4d;
        --accent-glow: rgba(236, 143, 77, 0.25);
        --accent2: #ff6b35;
        --red: rgba(220, 38, 38, 0.15);
        --red-border: rgba(220, 38, 38, 0.25);
        --text: #e8e8ef;
        --muted: #8888aa;
        --white: #fff;
      }
      *,
      *::before,
      *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
      }
      html {
        scroll-behavior: smooth;
      }
      body {
        background: var(--dark);
        color: var(--text);
        font-family: "Outfit", sans-serif;
        font-size: 15px;
        line-height: 1.7;
        overflow-x: hidden;
      }

      /* ── SCROLLBAR ── */
      ::-webkit-scrollbar {
        width: 4px;
      }
      ::-webkit-scrollbar-track {
        background: var(--dark);
      }
      ::-webkit-scrollbar-thumb {
        background: var(--accent);
        border-radius: 2px;
      }

      /* ── NOISE OVERLAY ── */
      body::after {
        content: "";
        position: fixed;
        inset: 0;
        background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
        pointer-events: none;
        z-index: 9999;
        opacity: 0.5;
      }

      /* ── NAV ── */
      .nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: rgba(13, 13, 13, 0.85);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--border);
        transition: all 0.3s;
      }
      .nav-inner {
        max-width: 1280px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 18px 32px;
      }
      .nav-logo {
        font-family: "Playfair Display", serif;
        font-size: 22px;
        font-weight: 900;
        color: var(--white);
        letter-spacing: -0.02em;
      }
      .nav-logo span {
        color: var(--accent);
      }
      .nav-links {
        display: flex;
        gap: 2px;
        list-style: none;
      }
      .nav-links a {
        font-size: 13px;
        font-weight: 500;
        letter-spacing: 0.04em;
        text-decoration: none;
        color: var(--muted);
        padding: 8px 14px;
        border-radius: 8px;
        transition: all 0.2s;
      }
      .nav-links a:hover,
      .nav-links a.active {
        color: var(--white);
        background: var(--surface);
      }
      .nav-cta {
        background: var(--accent);
        color: #0d0d0d;
        font-weight: 700;
        font-size: 13px;
        padding: 9px 22px;
        border-radius: 100px;
        text-decoration: none;
        transition: all 0.25s;
        box-shadow: 0 0 24px var(--accent-glow);
      }
      .nav-cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 32px var(--accent-glow);
      }
      .hamburger {
        display: none;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        padding: 4px;
      }
      .hamburger span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--text);
        border-radius: 2px;
        transition: 0.3s;
      }

      /* ── HERO ── */
      .hero {
        min-height: 100vh;
        display: flex;
        align-items: center;
        position: relative;
        overflow: hidden;
        padding-top: 80px;
      }
      .hero-bg {
        position: absolute;
        inset: 0;
        background:
          radial-gradient(
            ellipse 70% 60% at 80% 50%,
            rgba(236, 143, 77, 0.07) 0%,
            transparent 65%
          ),
          radial-gradient(
            ellipse 40% 50% at 20% 80%,
            rgba(220, 38, 38, 0.06) 0%,
            transparent 60%
          ),
          radial-gradient(
            ellipse 60% 40% at 50% 10%,
            rgba(236, 143, 77, 0.04) 0%,
            transparent 60%
          );
      }
      .hero-grid {
        position: absolute;
        inset: 0;
        background-image:
          linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
          linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px
          );
        background-size: 64px 64px;
        mask-image: radial-gradient(
          ellipse 80% 80% at 50% 50%,
          black 0%,
          transparent 75%
        );
      }
      .hero-inner {
        max-width: 1280px;
        margin: 0 auto;
        padding: 80px 32px 60px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
        width: 100%;
        min-height: 100vh;
      }
      /* LEFT */
      .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(236, 143, 77, 0.1);
        border: 1px solid rgba(236, 143, 77, 0.3);
        border-radius: 100px;
        padding: 6px 18px;
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: var(--accent);
        margin-bottom: 24px;
      }
      .hero-badge::before {
        content: "";
        width: 7px;
        height: 7px;
        background: var(--accent);
        border-radius: 50%;
        animation: blink 2s ease infinite;
      }
      @keyframes blink {
        0%,
        100% {
          opacity: 1;
        }
        50% {
          opacity: 0.3;
          transform: scale(0.7);
        }
      }
      .hero-name {
        font-family: "Playfair Display", serif;
        font-size: clamp(44px, 5.5vw, 76px);
        font-weight: 900;
        line-height: 1;
        letter-spacing: -0.03em;
        color: var(--white);
        margin-bottom: 8px;
      }
      .hero-name .accent {
        color: var(--accent);
        font-style: italic;
      }
      .hero-role {
        font-size: clamp(16px, 2vw, 22px);
        color: var(--muted);
        font-weight: 400;
        margin-bottom: 24px;
        font-family: "JetBrains Mono", monospace;
      }
      .hero-role span {
        color: var(--accent);
      }
      .hero-desc {
        font-size: 15px;
        color: var(--muted);
        max-width: 500px;
        line-height: 1.9;
        margin-bottom: 40px;
      }
      .hero-btns {
        display: flex;
        gap: 16px;
        flex-wrap: wrap;
        margin-bottom: 56px;
      }
      .btn-primary {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: var(--accent);
        color: #0d0d0d;
        font-weight: 700;
        font-size: 14px;
        padding: 14px 32px;
        border-radius: 100px;
        text-decoration: none;
        box-shadow: 0 0 32px var(--accent-glow);
        transition: all 0.25s;
      }
      .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 40px rgba(236, 143, 77, 0.45);
      }
      .btn-outline {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: transparent;
        color: var(--accent);
        font-weight: 600;
        font-size: 14px;
        padding: 13px 28px;
        border-radius: 100px;
        border: 1.5px solid var(--accent);
        text-decoration: none;
        transition: all 0.25s;
      }
      .btn-outline:hover {
        background: rgba(236, 143, 77, 0.08);
        transform: translateY(-3px);
      }
      .hero-stats {
        display: flex;
        gap: 40px;
        padding-top: 32px;
        border-top: 1px solid var(--border);
      }
      .stat-n {
        font-family: "Playfair Display", serif;
        font-size: 36px;
        font-weight: 900;
        color: var(--white);
        line-height: 1;
      }
      .stat-n span {
        color: var(--accent);
      }
      .stat-l {
        font-size: 11px;
        color: var(--muted);
        letter-spacing: 0.1em;
        text-transform: uppercase;
        margin-top: 4px;
      }

      /* RIGHT — PHOTO
      .hero-photo-wrap {
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        height: 100%;
        min-height: 100vh;
        padding-top: 80px;
      }
      .photo-glow-ring {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 400px;
        height: 400px;
        border-radius: 50%;
        background: radial-gradient(
          circle,
          rgba(236, 143, 77, 0.2) 0%,
          rgba(220, 38, 38, 0.1) 50%,
          transparent 72%
        );
        animation: pulse-ring 4s ease-in-out infinite;
      }
      @keyframes pulse-ring {
        0%,
        100% {
          transform: scale(1);
          opacity: 1;
        }
        50% {
          transform: scale(1.08);
          opacity: 0.7;
        }
      }
      .photo-ring2 {
        position: absolute;
        bottom: 0;
        left: 50%;
        margin-left: -200px;
        width: 400px;
        height: 400px;
        border-radius: 50%;
        border: 1px solid rgba(236, 143, 77, 0.25);
        animation: rotate-ring 20s linear infinite;
      }
      .photo-ring2::before {
        content: "";
        position: absolute;
        top: -4px;
        left: 50%;
        transform: translateX(-50%);
        width: 8px;
        height: 8px;
        background: var(--accent);
        border-radius: 50%;
        box-shadow: 0 0 12px var(--accent);
      }
      @keyframes rotate-ring {
        from {
          transform: rotate(0deg);
        }
        to {
          transform: rotate(360deg);
        }
      }
      .photo-outer-wrap {
        position: relative;
        width: 360px;
        height: 520px;
        display: flex;
        align-items: flex-end;
        justify-content: center;
      }
      .photo-circle {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 360px;
        height: 360px;
        border-radius: 50%;
        overflow: hidden;
        box-shadow:
          0 0 0 3px rgba(236, 143, 77, 0.4),
          0 0 0 10px rgba(236, 143, 77, 0.08),
          0 20px 80px rgba(0, 0, 0, 0.9),
          0 0 80px rgba(236, 143, 77, 0.2);
        background: linear-gradient(
          160deg,
          rgba(236, 143, 77, 0.1),
          rgba(220, 38, 38, 0.06),
          var(--dark3)
        );
      }
      .photo-circle img {
        width: 110%;
        height: 700px;
        object-fit: cover;
        object-position: center 8%;
        display: block;
        position: absolute;
        bottom: 0;
        left: -5%;
        filter: contrast(1.05) brightness(0.98);
      }
      .photo-rim {
        position: absolute;
        inset: 0;
        border-radius: 50%;
        background: linear-gradient(
          135deg,
          rgba(236, 143, 77, 0.25) 0%,
          transparent 35%,
          transparent 65%,
          rgba(220, 38, 38, 0.18) 100%
        );
        pointer-events: none;
        z-index: 2;
      }
      .photo-badge {
        position: absolute;
        bottom: 16px;
        right: -10px;
        background: linear-gradient(135deg, var(--accent), var(--accent2));
        color: #0d0d0d;
        font-family: "JetBrains Mono", monospace;
        font-size: 11px;
        font-weight: 700;
        padding: 10px 18px;
        border-radius: 100px;
        box-shadow: 0 8px 24px var(--accent-glow);
        white-space: nowrap;
      } */

      /* RIGHT — PHOTO */
      .hero-photo-wrap {
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        min-height: 110vh;
        overflow: hidden;
        transform: translateY(-60px);
      }

      /* GLOW */
      .photo-glow-ring {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: 470px;
        height: 470px;
        border-radius: 50%;
        background: radial-gradient(
          circle,
          rgba(236, 143, 77, 0.22) 0%,
          rgba(220, 38, 38, 0.12) 45%,
          transparent 100%
        );
        z-index: 0;
      }

      @keyframes pulse-ring {
        0%,
        100% {
          transform: translate(-50%, 50%) scale(1);
          opacity: 1;
        }

        50% {
          transform: translate(-50%, -50%) scale(1.06);
          opacity: 0.7;
        }
      }

      /* ROTATING RING */
      .photo-ring2 {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: 450px;
        height: 450px;
        border-radius: 50%;
        border: 1px solid rgba(236, 143, 77, 0.28);
        animation: rotate-ring 18s linear infinite;
        z-index: 1;
      }

      .photo-ring2::before {
        content: "";
        position: absolute;
        top: -5px;
        left: 50%;
        transform: translateX(-50%);
        width: 10px;
        height: 10px;
        background: var(--accent);
        border-radius: 50%;
        box-shadow: 0 0 14px var(--accent);
      }

      @keyframes rotate-ring {
        from {
          transform: translate(-50%, -50%) rotate(0deg);
        }

        to {
          transform: translate(-50%, -50%) rotate(360deg);
        }
      }

      /* IMAGE WRAP */
      .photo-outer-wrap {
        position: relative;
        width: 420px;
        height: 420px;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 3;
      }

      /* MAIN IMAGE CIRCLE */
      .photo-circle {
        position: relative;
        width: 400px;
        height: 400px;
        border-radius: 50%;
        overflow: hidden;

        background: linear-gradient(
          160deg,
          rgba(236, 143, 77, 0.12),
          rgba(220, 38, 38, 0.08),
          var(--dark3)
        );

        box-shadow:
          0 0 0 3px rgba(236, 143, 77, 0.35),
          0 0 0 12px rgba(236, 143, 77, 0.08),
          0 20px 70px rgba(0, 0, 0, 0.85),
          0 0 90px rgba(236, 143, 77, 0.18);
      }

      /* IMAGE */
      /* IMAGE */
.photo-circle img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center top;

  position: absolute;
  inset: 0;

  display: block;

  filter: contrast(1.06) brightness(1.3);
}
      /* OVERLAY RIM */
      .photo-rim {
        position: absolute;
        inset: 0;
        border-radius: 50%;
        background: linear-gradient(
          135deg,
          rgba(236, 143, 77, 0.24) 0%,
          transparent 35%,
          transparent 65%,
          rgba(220, 38, 38, 0.18) 100%
        );

        pointer-events: none;
        z-index: 2;
      }

      /* BADGE */
      /* .photo-badge {
        position: absolute;
        bottom: 60px;
        right: 20px;

        background: linear-gradient(135deg, var(--accent), var(--accent2));

        color: #0d0d0d;
        font-family: "JetBrains Mono", monospace;
        font-size: 11px;
        font-weight: 700;

        padding: 10px 18px;
        border-radius: 100px;

        box-shadow: 0 8px 24px var(--accent-glow);

        white-space: nowrap;
        z-index: 5;
      } */

.photo-badge {
  position: absolute;
  top: 170px;
  right: 10px;

  background: linear-gradient(
    135deg,
    var(--accent),
    var(--accent2)
  );

  color: #0d0d0d;

  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 700;

  padding: 10px 18px;

  border-radius: 100px;

  box-shadow: 0 8px 24px var(--accent-glow);

  white-space: nowrap;

  z-index: 1;
}

      /* ── SECTION COMMON ── */
      .section {
        padding: 110px 0;
        position: relative;
      }
      .section-inner {
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 32px;
      }
      .s-label {
        font-family: "JetBrains Mono", monospace;
        font-size: 11px;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: var(--accent);
        margin-bottom: 12px;
        display: flex;
        align-items: center;
        gap: 10px;
      }
      .s-label::before {
        content: "//";
        opacity: 0.5;
      }
      .s-title {
        font-family: "Playfair Display", serif;
        font-size: clamp(32px, 4vw, 54px);
        font-weight: 900;
        color: var(--white);
        letter-spacing: -0.02em;
        line-height: 1.1;
        margin-bottom: 60px;
      }
      .s-title em {
        font-style: italic;
        color: var(--accent);
      }

      /* ── WHAT I DO ── */
      .what-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
      }
      .what-card {
        background: var(--surface);
        border: 1px solid var(--border);
        border-radius: 20px;
        padding: 36px;
        position: relative;
        overflow: hidden;
        transition: all 0.35s;
      }
      .what-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, var(--accent), var(--accent2));
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.35s;
      }
      .what-card:hover::before {
        transform: scaleX(1);
      }
      .what-card:hover {
        border-color: rgba(236, 143, 77, 0.2);
        transform: translateY(-6px);
        box-shadow:
          0 24px 60px rgba(0, 0, 0, 0.5),
          0 0 40px rgba(236, 143, 77, 0.06);
      }
      .what-icon {
        font-size: 32px;
        margin-bottom: 20px;
        width: 60px;
        height: 60px;
        background: rgba(236, 143, 77, 0.08);
        border: 1px solid rgba(236, 143, 77, 0.15);
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
      }
      .what-title {
        font-family: "Playfair Display", serif;
        font-size: 20px;
        font-weight: 700;
        color: var(--white);
        margin-bottom: 12px;
      }
      .what-desc {
        font-size: 13px;
        color: var(--muted);
        line-height: 1.9;
      }
      .what-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
        margin-top: 16px;
      }
      .what-tag {
        font-size: 11px;
        background: rgba(236, 143, 77, 0.07);
        border: 1px solid rgba(236, 143, 77, 0.15);
        border-radius: 100px;
        padding: 3px 12px;
        color: var(--accent);
        font-family: "JetBrains Mono", monospace;
      }

      /* ── GALLERY / PROJECTS ── */
      .gallery-bg {
        background: var(--dark2);
      }
      .gallery-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
      }
      .gallery-card {
        background: var(--surface);
        border: 1px solid var(--border);
        border-radius: 20px;
        overflow: hidden;
        transition: all 0.35s;
        cursor: pointer;
        group: true;
      }
      .gallery-card:hover {
        border-color: rgba(236, 143, 77, 0.3);
        transform: translateY(-8px);
        box-shadow:
          0 32px 80px rgba(0, 0, 0, 0.6),
          0 0 0 1px rgba(236, 143, 77, 0.15);
      }
      .g-thumb {
        height: 220px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 56px;
        position: relative;
        overflow: hidden;
      }
      .g-thumb-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(
          to bottom,
          transparent 50%,
          rgba(13, 13, 13, 0.9)
        );
        opacity: 0;
        transition: 0.35s;
        display: flex;
        align-items: center;
        justify-content: center;
      }
      .gallery-card:hover .g-thumb-overlay {
        opacity: 1;
      }
      .g-view-btn {
        background: var(--accent);
        color: #0d0d0d;
        font-weight: 700;
        font-size: 12px;
        letter-spacing: 0.05em;
        padding: 10px 24px;
        border-radius: 100px;
        transform: translateY(12px);
        transition: 0.3s 0.05s;
      }
      .gallery-card:hover .g-view-btn {
        transform: translateY(0);
      }
      .g1 {
        background: linear-gradient(135deg, #0d1117, #1a2035);
      }
      .g2 {
        background: linear-gradient(135deg, #100d1a, #1e1535);
      }
      .g3 {
        background: linear-gradient(135deg, #0a1a10, #152a1e);
      }
      .g4 {
        background: linear-gradient(135deg, #1a0d0d, #2a1515);
      }
      .g5 {
        background: linear-gradient(135deg, #0d1520, #152035);
      }
      .g6 {
        background: linear-gradient(135deg, #1a150d, #2a2015);
      }
      .g-body {
        padding: 28px;
      }
      .g-num {
        font-family: "JetBrains Mono", monospace;
        font-size: 11px;
        color: var(--muted);
        letter-spacing: 0.12em;
        text-transform: uppercase;
        margin-bottom: 6px;
      }
      .g-name {
        font-family: "Playfair Display", serif;
        font-size: 20px;
        font-weight: 700;
        color: var(--white);
        margin-bottom: 8px;
      }
      .g-desc {
        font-size: 13px;
        color: var(--muted);
        line-height: 1.8;
        margin-bottom: 14px;
      }
      .g-chips {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
      }
      .g-chip {
        font-size: 10px;
        background: rgba(220, 38, 38, 0.1);
        border: 1px solid rgba(220, 38, 38, 0.2);
        border-radius: 100px;
        padding: 3px 10px;
        color: #f87171;
        font-family: "JetBrains Mono", monospace;
      }
      .g-link {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        font-size: 12px;
        font-weight: 600;
        color: var(--accent);
        text-decoration: none;
        margin-top: 14px;
        transition: gap 0.2s;
      }
      .g-link:hover {
        gap: 10px;
      }

      /* ── EDU + EXP ── */
      .edu-exp-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
      }
      .col-title {
        font-family: "Playfair Display", serif;
        font-size: 24px;
        font-weight: 700;
        color: var(--white);
        margin-bottom: 32px;
        display: flex;
        align-items: center;
        gap: 12px;
      }
      .col-title-icon {
        width: 40px;
        height: 40px;
        background: rgba(236, 143, 77, 0.1);
        border: 1px solid rgba(236, 143, 77, 0.2);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
      }
      .timeline {
        position: relative;
        padding-left: 28px;
      }
      .timeline::before {
        content: "";
        position: absolute;
        left: 0;
        top: 6px;
        bottom: 0;
        width: 1px;
        background: var(--border);
      }
      .tl-item {
        position: relative;
        margin-bottom: 40px;
      }
      .tl-dot {
        position: absolute;
        left: -34px;
        top: 6px;
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: var(--accent);
        box-shadow:
          0 0 0 3px var(--dark),
          0 0 0 4px rgba(236, 143, 77, 0.3),
          0 0 16px rgba(236, 143, 77, 0.4);
      }
      .tl-date {
        font-family: "JetBrains Mono", monospace;
        font-size: 11px;
        letter-spacing: 0.1em;
        color: var(--accent);
        text-transform: uppercase;
        margin-bottom: 6px;
      }
      .tl-title {
        font-family: "Playfair Display", serif;
        font-size: 18px;
        font-weight: 700;
        color: var(--white);
        margin-bottom: 3px;
      }
      .tl-sub {
        font-size: 13px;
        color: var(--muted);
        margin-bottom: 10px;
      }
      .tl-desc {
        font-size: 13px;
        color: var(--muted);
        line-height: 1.8;
      }

      /* ── CLIENTS / REVIEWS ── */
      .reviews-bg {
        background: var(--dark2);
      }
      .reviews-track-wrap {
        overflow: hidden;
        position: relative;
      }
      .reviews-track-wrap::before,
      .reviews-track-wrap::after {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        width: 200px;
        z-index: 2;
        pointer-events: none;
      }
      .reviews-track-wrap::before {
        left: 0;
        background: linear-gradient(90deg, var(--dark2), transparent);
      }
      .reviews-track-wrap::after {
        right: 0;
        background: linear-gradient(-90deg, var(--dark2), transparent);
      }
      .reviews-track {
        display: flex;
        gap: 24px;
        animation: scroll-reviews 35s linear infinite;
        width: max-content;
      }
      .reviews-track:hover {
        animation-play-state: paused;
      }
      @keyframes scroll-reviews {
        from {
          transform: translateX(0);
        }
        to {
          transform: translateX(-50%);
        }
      }
      .review-card {
        flex-shrink: 0;
        width: 320px;
        background: var(--surface);
        border: 1px solid var(--border);
        border-radius: 20px;
        padding: 32px;
        position: relative;
        overflow: hidden;
      }
      .review-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(
          90deg,
          transparent,
          var(--accent),
          transparent
        );
      }
      .review-stars {
        color: var(--accent);
        font-size: 14px;
        margin-bottom: 16px;
        letter-spacing: 2px;
      }
      .review-text {
        font-size: 13px;
        color: var(--text);
        line-height: 1.9;
        margin-bottom: 20px;
        font-style: italic;
      }
      .review-text::before {
        content: '"';
        font-family: "Playfair Display", serif;
        font-size: 40px;
        color: var(--accent);
        opacity: 0.3;
        line-height: 0.5;
        display: block;
        margin-bottom: 8px;
      }
      .review-author {
        display: flex;
        align-items: center;
        gap: 12px;
      }
      .review-avatar {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--accent), var(--accent2));
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: "Playfair Display", serif;
        font-size: 16px;
        font-weight: 700;
        color: #0d0d0d;
      }
      .review-name {
        font-weight: 600;
        font-size: 14px;
        color: var(--white);
      }
      .review-role {
        font-size: 11px;
        color: var(--muted);
      }

      /* ── CONTACT ── */
      .contact-grid {
        display: grid;
        grid-template-columns: 1fr 1.2fr;
        gap: 60px;
        align-items: start;
      }
      .contact-info-title {
        font-family: "Playfair Display", serif;
        font-size: 28px;
        font-weight: 700;
        color: var(--white);
        margin-bottom: 16px;
      }
      .contact-desc {
        font-size: 14px;
        color: var(--muted);
        line-height: 1.9;
        margin-bottom: 36px;
      }
      .c-links {
        display: flex;
        flex-direction: column;
        gap: 0;
      }
      .c-link {
        display: flex;
        align-items: center;
        gap: 16px;
        padding: 18px 0;
        border-bottom: 1px solid var(--border);
        text-decoration: none;
        color: var(--text);
        transition: all 0.2s;
      }
      .c-link:first-child {
        border-top: 1px solid var(--border);
      }
      .c-link:hover {
        color: var(--accent);
        padding-left: 8px;
      }
      .c-link-icon {
        width: 42px;
        height: 42px;
        background: var(--surface);
        border: 1px solid var(--border);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        flex-shrink: 0;
      }
      .c-link-label {
        font-size: 10px;
        color: var(--muted);
        letter-spacing: 0.12em;
        text-transform: uppercase;
      }
      .c-link-val {
        font-weight: 600;
        font-size: 14px;
        font-family: "JetBrains Mono", monospace;
        font-size: 12px;
      }
      .social-row {
        display: flex;
        gap: 12px;
        margin-top: 32px;
      }
      .soc-btn {
        width: 44px;
        height: 44px;
        background: var(--surface);
        border: 1px solid var(--border);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        color: var(--muted);
        font-size: 18px;
        transition: all 0.2s;
      }
      .soc-btn:hover {
        background: rgba(236, 143, 77, 0.1);
        border-color: var(--accent);
        color: var(--accent);
        transform: translateY(-3px);
      }
      .c-form {
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid var(--border);
        border-radius: 24px;
        padding: 40px;
      }
      .f-group {
        margin-bottom: 20px;
      }
      .f-label {
        display: block;
        font-size: 11px;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        color: var(--muted);
        margin-bottom: 8px;
      }
      .f-input {
        width: 100%;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid var(--border);
        border-radius: 12px;
        padding: 14px 18px;
        font-family: "Outfit", sans-serif;
        font-size: 14px;
        color: var(--text);
        outline: none;
        transition: border-color 0.2s;
      }
      .f-input:focus {
        border-color: var(--accent);
        background: rgba(236, 143, 77, 0.04);
      }
      .f-input::placeholder {
        color: var(--muted);
      }
      textarea.f-input {
        resize: vertical;
        min-height: 130px;
      }

      /* ── FOOTER ── */
      .footer {
        background: var(--dark2);
        border-top: 1px solid var(--border);
        padding: 72px 0 32px;
      }
      .footer-grid {
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 32px;
        display: grid;
        grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
        gap: 48px;
        margin-bottom: 56px;
      }
      .f-brand {
        font-family: "Playfair Display", serif;
        font-size: 24px;
        font-weight: 900;
        color: var(--white);
        margin-bottom: 16px;
      }
      .f-brand span {
        color: var(--accent);
        font-style: italic;
      }
      .f-desc {
        font-size: 13px;
        color: var(--muted);
        line-height: 1.9;
        margin-bottom: 24px;
      }
      .f-social {
        display: flex;
        gap: 10px;
      }
      .f-social-ic {
        width: 38px;
        height: 38px;
        background: var(--surface);
        border: 1px solid var(--border);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        color: var(--muted);
        font-size: 16px;
        transition: all 0.2s;
      }
      .f-social-ic:hover {
        background: rgba(236, 143, 77, 0.1);
        border-color: var(--accent);
        color: var(--accent);
        transform: translateY(-2px);
      }
      .f-col-title {
        font-family: "Playfair Display", serif;
        font-size: 16px;
        font-weight: 700;
        color: var(--white);
        margin-bottom: 20px;
      }
      .f-links {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 10px;
      }
      .f-links a {
        text-decoration: none;
        font-size: 13px;
        color: var(--muted);
        transition: color 0.2s;
        display: flex;
        align-items: center;
        gap: 8px;
      }
      .f-links a::before {
        content: "›";
        color: var(--accent);
        opacity: 0;
        transition: 0.2s;
        margin-left: -8px;
      }
      .f-links a:hover {
        color: var(--text);
      }
      .f-links a:hover::before {
        opacity: 1;
        margin-left: 0;
      }
      .f-contact-item {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        margin-bottom: 14px;
      }
      .f-contact-icon {
        color: var(--accent);
        font-size: 16px;
        margin-top: 2px;
        flex-shrink: 0;
      }
      .f-contact-text {
        font-size: 13px;
        color: var(--muted);
        line-height: 1.6;
      }
      .footer-bottom {
        max-width: 1280px;
        margin: 0 auto;
        padding: 24px 32px 0;
        border-top: 1px solid var(--border);
        display: flex;
        align-items: center;
        justify-content: space-between;
      }
      .footer-copy {
        font-size: 12px;
        color: var(--muted);
      }
      .footer-made {
        font-size: 12px;
        color: var(--muted);
      }
      .footer-made span {
        color: var(--accent);
      }

      /* ── SCROLL ANIMATIONS ── */
      .reveal {
        opacity: 0;
        transform: translateY(40px);
        transition:
          opacity 0.8s ease,
          transform 0.8s ease;
      }
      .reveal.visible {
        opacity: 1;
        transform: translateY(0);
      }
      .reveal-left {
        opacity: 0;
        transform: translateX(-40px);
        transition:
          opacity 0.8s ease,
          transform 0.8s ease;
      }
      .reveal-left.visible {
        opacity: 1;
        transform: translateX(0);
      }
      .reveal-right {
        opacity: 0;
        transform: translateX(40px);
        transition:
          opacity 0.8s ease,
          transform 0.8s ease;
      }
      .reveal-right.visible {
        opacity: 1;
        transform: translateX(0);
      }
      .reveal-scale {
        opacity: 0;
        transform: scale(0.92);
        transition:
          opacity 0.8s ease,
          transform 0.8s ease;
      }
      .reveal-scale.visible {
        opacity: 1;
        transform: scale(1);
      }

      /* ── PARALLAX SECTION BGs ── */
      .parallax-section {
        position: relative;
        overflow: hidden;
      }
      .parallax-bg {
        position: absolute;
        inset: -20%;
        will-change: transform;
      }

      /* ── SCROLL PROGRESS ── */
      .progress-bar {
        position: fixed;
        top: 0;
        left: 0;
        height: 2px;
        background: linear-gradient(90deg, var(--accent), var(--accent2));
        z-index: 2000;
        transition: width 0.1s linear;
        box-shadow: 0 0 8px var(--accent);
      }

      /* ── MOBILE ── */
      @media (max-width: 900px) {
        .hero-inner {
          grid-template-columns: 1fr;
          text-align: center;
        }
        .hero-photo-wrap {
          justify-content: center;
          order: -1;
        }
        .hero-badge {
          margin: 0 auto 24px;
        }
        .hero-desc {
          margin: 0 auto 40px;
        }
        .hero-stats {
          justify-content: center;
        }
        .hero-btns {
          justify-content: center;
        }
        .what-grid {
          grid-template-columns: 1fr;
        }
        .gallery-grid {
          grid-template-columns: 1fr;
        }
        .edu-exp-grid {
          grid-template-columns: 1fr;
        }
        .contact-grid {
          grid-template-columns: 1fr;
        }
        .footer-grid {
          grid-template-columns: 1fr 1fr;
        }
        .nav-links,
        .nav-cta {
          display: none;
        }
        .hamburger {
          display: flex;
        }
      }
      @media (max-width: 600px) {
        .footer-grid {
          grid-template-columns: 1fr;
        }
        .section-inner {
          padding: 0 20px;
        }
        .nav-inner {
          padding: 16px 20px;
        }
      }