   *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }

    :root {
      --ink:       #0B0C10;
      --paper:     #F5F2ED;
      --cream:     #EDE8DF;
      --warm:      #C8B8A2;
      --accent:    #E63946;
      --yellow:    #F5C518;
      --dark-card: #141414;
      --mid:       #555;
      --light-txt: #888;
      --ff-head:   'Bebas Neue', sans-serif;
      --ff-sub:    'DM Sans', sans-serif;
    }

    body {
      font-family: var(--ff-sub);
      background: var(--paper);
      color: var(--ink);
      overflow-x: hidden;
      cursor: none;
    }

    a { text-decoration: none; color: inherit; }
    img { display: block; max-width: 100%; }

    /* ── Custom Cursor ── */
    .cursor-dot {
      position: fixed; width: 8px; height: 8px;
      background: var(--accent); border-radius: 50%;
      pointer-events: none; z-index: 9999;
      transform: translate(-50%,-50%);
    }
    .cursor-ring {
      position: fixed; width: 36px; height: 36px;
      border: 2px solid var(--accent); border-radius: 50%;
      pointer-events: none; z-index: 9998;
      transform: translate(-50%,-50%);
      transition: left 0.18s ease, top 0.18s ease, width 0.3s, height 0.3s, opacity 0.3s;
      opacity: 0.55;
    }

    /* ── NAV ── */
    nav {
      position: fixed; top: 0; left: 0; width: 100%;
      padding: 0.6rem 6%;
      display: flex; align-items: center; justify-content: space-between;
      z-index: 100;
      transition: background 0.4s, box-shadow 0.4s;
    }
    nav.scrolled {
      background: rgba(245,242,237,0.94);
      backdrop-filter: blur(16px);
      box-shadow: 0 2px 24px rgba(0,0,0,0.07);
    }
    .nav-logo img {
      height: 68px; width: auto;
      transition: transform 0.3s;
    }
    .nav-logo:hover img { transform: scale(1.06); }
    .nav-logo-fallback {
      font-family: var(--ff-head);
      font-size: 1.8rem; color: var(--ink);
    }
    .nav-logo-fallback span { color: var(--accent); }

    .nav-links {
      display: flex; gap: 2.5rem; list-style: none;
    }
    .nav-links a {
      font-size: 0.87rem; font-weight: 500; letter-spacing: 0.06em;
      text-transform: uppercase; color: var(--mid);
      position: relative; transition: color 0.25s;
    }
    .nav-links a::after {
      content: ''; position: absolute; bottom: -4px; left: 0;
      width: 0; height: 1.5px; background: var(--accent);
      transition: width 0.3s;
    }
    .nav-links a:hover { color: var(--ink); }
    .nav-links a:hover::after { width: 100%; }

    .nav-cta {
      padding: 0.6rem 1.6rem;
      background: var(--ink); color: var(--paper);
      font-size: 0.85rem; font-weight: 600; letter-spacing: 0.05em;
      border-radius: 2px; transition: background 0.3s, transform 0.2s;
    }
    .nav-cta:hover { background: var(--accent); transform: translateY(-2px); }
    .nav-toggle { display: none; font-size: 1.6rem; cursor: pointer; color: var(--ink); background: none; border: none; }

    /* ════════ HERO ════════ */
    #home {
      min-height: 100vh;
      display: grid; grid-template-columns: 1fr 1fr;
      align-items: center;
      padding: 7rem 6% 4rem;
      position: relative; overflow: hidden;
    }

    .hero-bg-text {
      position: absolute;
      font-family: var(--ff-head);
      font-size: clamp(8rem, 16vw, 20rem);
      color: rgba(0,0,0,0.03);
      top: 50%; left: 50%;
      transform: translate(-50%,-50%);
      white-space: nowrap;
      pointer-events: none; user-select: none;
      z-index: 0;
    }

    .hero-left { z-index: 2; }

    .hero-tag {
      display: inline-flex; align-items: center; gap: 0.5rem;
      background: var(--cream); border: 1px solid var(--warm);
      padding: 0.4rem 1rem; border-radius: 2px;
      font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em;
      text-transform: uppercase; color: var(--mid);
      margin-bottom: 1.5rem;
      animation: fadeUp 0.8s 0.2s both;
    }
    .hero-tag .dot {
      width: 7px; height: 7px; background: #22c55e; border-radius: 50%;
      animation: blink 1.6s ease-in-out infinite;
    }
    @keyframes blink { 0%,100%{opacity:1;transform:scale(1);} 50%{opacity:0.3;transform:scale(0.6);} }

    .hero-name {
      font-family: var(--ff-head);
      font-size: clamp(4.5rem, 8vw, 9rem);
      line-height: 0.95; letter-spacing: -0.01em;
      margin-bottom: 0.8rem;
      animation: fadeUp 0.9s 0.35s both;
    }
    .hero-name .line2 { color: var(--accent); display: block; }

    .hero-role {
      font-size: clamp(1rem, 1.8vw, 1.2rem);
      color: var(--mid); font-weight: 300; letter-spacing: 0.02em;
      margin-bottom: 2rem;
      animation: fadeUp 0.9s 0.5s both;
    }
    .hero-role strong { color: var(--ink); font-weight: 600; }

    .hero-desc {
      font-size: 1rem; color: var(--mid); line-height: 1.75;
      max-width: 480px; margin-bottom: 2.5rem;
      animation: fadeUp 0.9s 0.65s both;
    }

    .hero-actions {
      display: flex; gap: 1rem; flex-wrap: wrap;
      animation: fadeUp 0.9s 0.8s both;
    }
    .btn-primary {
      padding: 0.9rem 2.4rem; background: var(--ink); color: var(--paper);
      font-weight: 600; font-size: 0.9rem; letter-spacing: 0.04em;
      border: none; border-radius: 2px; display: inline-block;
      transition: background 0.3s, transform 0.2s;
    }
    .btn-primary:hover { background: var(--accent); transform: translateY(-3px); }
    .btn-outline {
      padding: 0.9rem 2.4rem; background: transparent; color: var(--ink);
      font-weight: 600; font-size: 0.9rem; letter-spacing: 0.04em;
      border: 1.5px solid var(--ink); border-radius: 2px; display: inline-block;
      transition: all 0.3s;
    }
    .btn-outline:hover { background: var(--ink); color: var(--paper); transform: translateY(-3px); }

    /* ── Hero Right: Animated blob + photo ── */
    .hero-right {
      z-index: 2;
      display: flex; flex-direction: column;
      align-items: center; gap: 2rem;
      animation: fadeUp 1s 0.4s both;
    }

    .blob-scene {
      position: relative;
      width: 380px; height: 440px;
      display: flex; align-items: center; justify-content: center;
    }

    /* spinning dashed ring behind blob */
    .blob-ring-outer {
      position: absolute;
      width: 420px; height: 420px;
      border: 2px dashed rgba(230,57,70,0.25);
      border-radius: 50%;
      animation: spin 22s linear infinite;
      top: 10px; left: -20px;
    }
    .blob-ring-inner {
      position: absolute;
      width: 340px; height: 340px;
      border: 1.5px dashed rgba(245,197,24,0.3);
      border-radius: 50%;
      animation: spin 14s linear infinite reverse;
      top: 50px; left: 20px;
    }
    @keyframes spin { to { transform: rotate(360deg); } }

    /* SVG blob shape that morphs */
    .hero-blob-svg {
      position: absolute;
      inset: 0; width: 100%; height: 100%;
      z-index: 1;
    }
    .hero-blob-svg .bp1 {
      fill: var(--yellow); opacity: 0.88;
      animation: morph1 9s ease-in-out infinite;
    }
    .hero-blob-svg .bp2 {
      fill: var(--accent); opacity: 0.18;
      animation: morph2 11s ease-in-out infinite;
    }

    @keyframes morph1 {
      0%,100% { d: path("M190 38 C242 18 315 62 334 125 C353 188 320 265 278 314 C236 363 148 382 98 342 C48 302 28 218 50 148 C72 78 138 58 190 38 Z"); }
      34%     { d: path("M200 28 C258 8 336 72 346 145 C356 218 304 284 252 324 C200 364 116 374 74 332 C32 290 36 198 58 128 C80 58 142 48 200 28 Z"); }
      67%     { d: path("M175 52 C228 8 326 54 344 114 C362 174 330 272 280 324 C230 376 130 394 78 352 C26 310 18 220 44 144 C70 68 122 96 175 52 Z"); }
    }
    @keyframes morph2 {
      0%,100% { d: path("M182 52 C242 30 324 82 338 148 C352 214 312 278 262 318 C212 358 128 368 82 326 C36 284 40 196 64 126 C88 56 122 74 182 52 Z"); }
      50%     { d: path("M178 36 C248 14 328 78 342 154 C356 230 306 294 254 328 C202 362 118 378 72 334 C26 290 32 196 56 124 C80 52 108 58 178 36 Z"); }
    }

    /* Photo clipped to blob shape */
    .blob-photo-wrap {
      position: relative; z-index: 3;
      width: 310px; height: 370px;
    }
    .blob-photo-wrap img {
      width: 100%; height: 100%;
      object-fit: cover; object-position: top center;
      border-radius: 60% 40% 50% 50% / 60% 50% 50% 40%;
      animation: blobPhoto 9s ease-in-out infinite;
      filter: contrast(1.05) saturate(0.92);
    }
    @keyframes blobPhoto {
      0%,100% { border-radius: 60% 40% 50% 50% / 60% 50% 50% 40%; }
      34%     { border-radius: 50% 50% 40% 60% / 50% 60% 40% 50%; }
      67%     { border-radius: 40% 60% 55% 45% / 55% 45% 55% 45%; }
    }

    /* Floating accent dots */
    .fdot {
      position: absolute; border-radius: 50%; z-index: 4;
    }
    .fdot-1 { width: 14px; height: 14px; background: var(--accent); top: 6%; right: 6%; animation: fdrift 4s ease-in-out infinite; }
    .fdot-2 { width: 9px;  height: 9px;  background: var(--ink);    bottom: 14%; left: 3%; animation: fdrift 5.5s ease-in-out infinite 1s; }
    .fdot-3 { width: 20px; height: 20px; background: var(--yellow);  top: 48%; right: 0%; animation: fdrift 3.8s ease-in-out infinite 0.5s; opacity: 0.85; }
    @keyframes fdrift { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-18px);} }

    .hero-socials {
      display: flex; gap: 1rem;
    }
    .hero-socials a {
      width: 42px; height: 42px;
      border: 1.5px solid var(--warm);
      display: flex; align-items: center; justify-content: center;
      border-radius: 2px; color: var(--mid);
      transition: all 0.3s;
    }
    .hero-socials a:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-3px); }

    /* badge bottom-left */
    .hero-badge {
      position: absolute; bottom: 10%; left: 6%;
      background: var(--ink); color: var(--paper);
      padding: 1rem 1.5rem; border-radius: 4px;
      font-size: 0.85rem; font-weight: 500;
      animation: fadeUp 1s 1.2s both; z-index: 3;
    }
    .hero-badge strong {
      font-family: var(--ff-head); font-size: 2rem;
      display: block; color: var(--yellow); line-height: 1;
    }

    /* ════════ SHARED ════════ */
    .section-wrap { padding: 7rem 6%; }
    .section-wrap.alt-bg { background: var(--cream); }
    .section-wrap.dark-bg { background: var(--ink); color: var(--paper); }

    .sec-label {
      font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em;
      text-transform: uppercase; color: var(--accent);
      display: flex; align-items: center; gap: 0.7rem;
      margin-bottom: 1rem;
    }
    .sec-label::before { content:''; width:32px; height:1.5px; background:var(--accent); }

    h2.sec-title {
      font-family: var(--ff-head);
      font-size: clamp(3rem, 6vw, 5.5rem);
      letter-spacing: -0.01em; line-height: 1;
      margin-bottom: 1.2rem;
    }
    .sec-sub { font-size: 1.05rem; color: var(--mid); line-height: 1.7; max-width: 580px; }
    .dark-bg .sec-sub { color: #aaa; }

    /* ════════ SERVICES ════════ */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px,1fr));
      gap: 0; margin-top: 4rem;
      border: 1.5px solid #E0D9D0;
    }
    .service-card {
      padding: 2.8rem 2.5rem;
      border-right: 1.5px solid #E0D9D0;
      border-bottom: 1.5px solid #E0D9D0;
      position: relative; overflow: hidden;
      transition: background 0.4s;
    }
    .service-card::after {
      content: ''; position: absolute; bottom: 0; left: 0;
      width: 0; height: 3px; background: var(--accent);
      transition: width 0.5s;
    }
    .service-card:hover { background: var(--cream); }
    .service-card:hover::after { width: 100%; }
    .service-num {
      font-family: var(--ff-head); font-size: 5rem; line-height: 1;
      color: rgba(0,0,0,0.05);
      position: absolute; right: 1.5rem; top: 1rem;
    }
    .service-icon-wrap {
      width: 54px; height: 54px;
      background: var(--ink); color: var(--paper);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.5rem; border-radius: 2px; margin-bottom: 1.5rem;
      transition: background 0.3s;
    }
    .service-card:hover .service-icon-wrap { background: var(--accent); }
    .service-card h3 {
      font-family: var(--ff-head); font-size: 1.7rem;
      margin-bottom: 0.7rem; letter-spacing: 0.02em;
    }
    .service-card p { font-size: 0.95rem; color: var(--mid); line-height: 1.7; }

    /* ════════ ABOUT ════════ */
    .about-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 5rem; align-items: center; margin-top: 3.5rem;
    }
    .about-img-wrap { position: relative; }
    .about-img-wrap img {
      width: 540px; height: 100%;
      object-fit: cover; object-position: top;
      border-radius: 4px; filter: grayscale(15%);
    }
    .about-img-wrap .stamp {
      position: absolute; bottom: -20px; right: -20px;
      background: var(--accent); color: #fff;
      padding: 1.5rem; border-radius: 2px;
      font-family: var(--ff-head); font-size: 1.1rem;
      letter-spacing: 0.05em; text-align: center; line-height: 1.3;
    }
    .about-text p { font-size: 1.05rem; color: var(--mid); line-height: 1.8; margin-bottom: 1.2rem; }
    .about-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2rem; }
    .fact {
      padding: 1.4rem; background: var(--paper);
      border: 1px solid #E0D9D0; border-radius: 2px;
    }
    .fact-num { font-family: var(--ff-head); font-size: 2.8rem; color: var(--accent); line-height: 1; }
    .fact p { font-size: 0.85rem; color: var(--mid); font-weight: 500; margin-top: 0.3rem; }

    /* ════════ SKILLS (no levels/bars) ════════ */
    .skills-layout {
      display: grid; grid-template-columns: 1fr 1.6fr;
      gap: 4rem; align-items: start; margin-top: 3.5rem;
    }
    .skills-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(120px,1fr));
      gap: 1rem;
    }
    .skill-chip {
      display: flex; flex-direction: column;
      align-items: center; justify-content: center; gap: 0.6rem;
      padding: 1.4rem 0.8rem;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 6px;
      transition: all 0.35s;
    }
    .skill-chip:hover {
      background: rgba(230,57,70,0.12);
      border-color: var(--accent);
      transform: translateY(-5px);
    }
    .skill-icon { font-size: 1.9rem; line-height: 1; }
    .skill-chip span:last-child {
      font-size: 0.78rem; font-weight: 600;
      letter-spacing: 0.05em; text-transform: uppercase;
      color: #ccc;
    }
    .skill-chip:hover span:last-child { color: #fff; }

    /* ════════ PROJECTS ════════ */
    .projects-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 2rem; margin-top: 4rem;
    }
    .project-card {
      padding: 2.8rem 2.5rem;
      background: var(--dark-card); color: var(--paper);
      border-radius: 4px;
      border: 1px solid rgba(255,255,255,0.05);
      position: relative; overflow: hidden;
      transition: transform 0.4s, box-shadow 0.4s;
    }
    .project-card:hover { transform: translateY(-8px); box-shadow: 0 24px 60px rgba(0,0,0,0.25); }
    .project-card::before {
      content: ''; position: absolute; top: 0; left: 0;
      width: 100%; height: 3px; background: var(--accent);
      transform: scaleX(0); transform-origin: left; transition: transform 0.4s;
    }
    .project-card:hover::before { transform: scaleX(1); }
    .project-tech { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.2rem; }
    .tech-pill {
      padding: 0.25rem 0.8rem;
      background: rgba(255,255,255,0.07); border-radius: 100px;
      font-size: 0.75rem; color: #aaa;
    }
    .project-card h3 {
      font-family: var(--ff-head); font-size: 1.8rem;
      margin-bottom: 0.8rem; letter-spacing: 0.02em;
    }
    .project-card p { font-size: 0.95rem; color: #aaa; line-height: 1.7; margin-bottom: 1.5rem; }
    .project-link {
      display: inline-flex; align-items: center; gap: 0.5rem;
      font-size: 0.85rem; font-weight: 600; color: var(--accent);
      text-transform: uppercase; letter-spacing: 0.06em; transition: gap 0.3s;
    }
    .project-link:hover { gap: 0.9rem; }
    .project-link svg { width: 14px; }

    /* ════════ EXPERIENCE ════════ */
    .exp-timeline { margin-top: 4rem; position: relative; }
    .exp-timeline::before {
      content: ''; position: absolute; left: 0; top: 0; bottom: 0;
      width: 1px; background: #E0D9D0;
    }
    .exp-item { padding-left: 3rem; padding-bottom: 3.5rem; position: relative; }
    .exp-item:last-child { padding-bottom: 0; }
    .exp-dot {
      position: absolute; left: -6px; top: 0;
      width: 13px; height: 13px;
      background: var(--accent); border-radius: 50%;
      border: 3px solid var(--paper);
    }
    .exp-date { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.5rem; }
    .exp-item h3 { font-family: var(--ff-head); font-size: 1.7rem; letter-spacing: 0.02em; margin-bottom: 0.3rem; }
    .exp-org { font-size: 0.95rem; color: var(--mid); margin-bottom: 0.3rem; font-style: italic; }
    .exp-loc { font-size: 0.85rem; color: var(--light-txt); }

    /* ════════ CLIENTS ════════ */
    .clients-strip {
      display: flex; gap: 4rem; align-items: center;
      justify-content: center; flex-wrap: wrap; margin-top: 4rem;
    }
    .client-item {
      opacity: 0.45; filter: grayscale(100%);
      transition: opacity 0.4s, filter 0.4s;
      height: 70px; display: flex; align-items: center;
    }
    .client-item:hover { opacity: 1; filter: grayscale(0%); }
    .client-item img { height: 100%; width: auto; object-fit: contain; }
    .client-placeholder {
      padding: 1.2rem 2rem;
      border: 1.5px solid #E0D9D0;
      font-family: var(--ff-head);
      font-size: 1.2rem; letter-spacing: 0.05em; color: var(--mid);
      text-align: center; line-height: 1.3;
    }

    /* ════════ CONTACT ════════ */
    .contact-layout {
      display: grid; grid-template-columns: 1fr 1.4fr;
      gap: 5rem; align-items: start; margin-top: 4rem;
    }
    .contact-info h3 {
      font-family: var(--ff-head); font-size: 2.2rem;
      letter-spacing: 0.02em; margin-bottom: 1.2rem;
    }
    .contact-info > p { font-size: 1rem; color: var(--mid); line-height: 1.7; margin-bottom: 2rem; }
    .contact-detail {
      display: flex; gap: 1rem; align-items: center;
      margin-bottom: 1rem; font-size: 0.95rem; color: var(--mid);
    }
    .contact-detail svg { width: 18px; color: var(--accent); flex-shrink: 0; }
    .contact-detail a { color: var(--accent); font-weight: 600; }
    .contact-detail a:hover { text-decoration: underline; }

    .btn-mail-direct {
      display: inline-flex; align-items: center; gap: 0.8rem;
      margin-top: 1.8rem;
      padding: 1rem 2rem;
      background: var(--accent); color: #fff;
      font-weight: 700; font-size: 0.9rem;
      letter-spacing: 0.05em; text-transform: uppercase;
      border-radius: 2px;
      transition: background 0.3s, transform 0.2s;
    }
    .btn-mail-direct:hover { background: #c02530; transform: translateY(-3px); }
    .btn-mail-direct svg { width: 18px; }

    .contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
    .contact-form input,
    .contact-form textarea,
    .contact-form select {
      padding: 1rem 1.2rem;
      background: var(--cream); border: 1.5px solid #E0D9D0;
      border-radius: 2px; font-family: var(--ff-sub); font-size: 0.95rem;
      color: var(--ink); outline: none; transition: border-color 0.3s;
    }
    .contact-form input:focus,
    .contact-form textarea:focus,
    .contact-form select:focus { border-color: var(--accent); }
    .contact-form textarea { min-height: 140px; resize: vertical; }
    .contact-form button {
      padding: 1rem 2.5rem; background: var(--ink); color: var(--paper);
      border: none; font-family: var(--ff-sub);
      font-weight: 600; font-size: 0.95rem; letter-spacing: 0.04em;
      border-radius: 2px; align-self: flex-start;
      transition: background 0.3s, transform 0.2s;
    }
    .contact-form button:hover { background: var(--accent); transform: translateY(-3px); }

    /* ════════ FOOTER ════════ */
    footer {
      background: var(--ink); color: var(--paper);
      padding: 4rem 6% 2rem;
    }
    .footer-top {
      display: flex; justify-content: space-between; align-items: center;
      padding-bottom: 3rem;
      border-bottom: 1px solid rgba(255,255,255,0.08);
      margin-bottom: 2rem;
    }
    .footer-logo-img { height: 62px; width: auto; filter: brightness(0) invert(1); }
    .footer-nav { display: flex; gap: 2rem; list-style: none; }
    .footer-nav a { font-size: 0.85rem; color: #888; transition: color 0.3s; }
    .footer-nav a:hover { color: var(--paper); }
    .footer-socials { display: flex; gap: 1rem; }
    .footer-socials a {
      width: 38px; height: 38px; border: 1px solid rgba(255,255,255,0.12);
      display: flex; align-items: center; justify-content: center;
      color: #888; border-radius: 2px; transition: all 0.3s;
    }
    .footer-socials a:hover { border-color: var(--accent); color: var(--accent); }
    .footer-bottom { display: flex; justify-content: space-between; align-items: center; }
    .footer-copy { font-size: 0.82rem; color: #555; }

    /* ════════ ANIMATIONS ════════ */
    @keyframes fadeUp {
      from { opacity:0; transform: translateY(30px); }
      to   { opacity:1; transform: translateY(0); }
    }
    .reveal { opacity:0; transform:translateY(40px); transition: opacity 0.8s, transform 0.8s cubic-bezier(0.16,1,0.3,1); }
    .reveal.show { opacity:1; transform:none; }
    .reveal-left { opacity:0; transform:translateX(-40px); transition: opacity 0.9s, transform 0.9s cubic-bezier(0.16,1,0.3,1); }
    .reveal-left.show { opacity:1; transform:none; }
    .reveal-right { opacity:0; transform:translateX(40px); transition: opacity 0.9s, transform 0.9s cubic-bezier(0.16,1,0.3,1); }
    .reveal-right.show { opacity:1; transform:none; }
    .delay-1 { transition-delay:0.1s; }
    .delay-2 { transition-delay:0.2s; }
    .delay-3 { transition-delay:0.3s; }
    .delay-4 { transition-delay:0.4s; }

    /* ════════ RESPONSIVE ════════ */
    @media (max-width: 900px) {
      .nav-toggle { display: block; }
      .nav-links {
        position: fixed; top: 0; right: -100%; height: 100vh; width: 78%;
        background: var(--paper); flex-direction: column; gap: 0;
        padding: 6rem 2rem; justify-content: flex-start;
        transition: right 0.4s cubic-bezier(0.16,1,0.3,1);
        box-shadow: -10px 0 40px rgba(0,0,0,0.1); z-index: 99;
      }
      .nav-links.open { right: 0; }
      .nav-links li { border-bottom: 1px solid #E0D9D0; padding: 1rem 0; }
      .nav-links a { font-size: 1.1rem; }
      .nav-cta { display: none; }

      #home { grid-template-columns: 1fr; padding-top: 6rem; }
      .hero-right { align-items: center; }
      .blob-scene { width: 280px; height: 320px; }
      .blob-photo-wrap { width: 230px; height: 275px; }
      .blob-ring-outer { width: 310px; height: 310px; }
      .blob-ring-inner { width: 250px; height: 250px; }
      .hero-badge { display: none; }
      .hero-bg-text { display: none; }

      .about-grid { grid-template-columns: 1fr; }
      .about-img-wrap img { height: 100%; }
      .skills-layout { grid-template-columns: 1fr; }
      .projects-grid { grid-template-columns: 1fr; }
      .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
      .form-row { grid-template-columns: 1fr; }
      .footer-top { flex-direction: column; gap: 2rem; text-align: center; }
      .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
      .footer-nav { flex-wrap: wrap; justify-content: center; }
    }