  :root {
    --rose-white:   #fdf6f9;
    --blush:        #f5dce8;
    --petal:        #e8b4cc;
    --mauve:        #c47fa0;
    --orchid:       #9b5b82;
    --plum:         #6d3b5e;
    --midnight:     #2d1a28;
    --lavender-fog: #ede6f5;
    --wisteria:     #c4aad8;
    --violet:       #8b6aad;
    --deep-violet:  #4a2f6e;
    --font-display: 'Italiana', serif;
    --font-body:    'Cormorant Garamond', serif;
    --font-label:   'Josefin Sans', sans-serif;
    --ease-silk:  cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-bloom: cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; font-size: 16px; }
  body { background: var(--rose-white); color: var(--midnight); font-family: var(--font-body); overflow-x: hidden; cursor: none; }

  /* Noise overlay */
  body::before {
    content: '';
    position: fixed; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none; z-index: 1000; opacity: 0.35;
  }

  /* Cursor */
  .cursor-dot {
    width: 8px; height: 8px; background: var(--orchid); border-radius: 50%;
    position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999;
    transition: transform 0.1s; transform: translate(-50%, -50%);
  }
  .cursor-ring {
    width: 36px; height: 36px; border: 1.5px solid var(--mauve); border-radius: 50%;
    position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9998;
    transition: transform 0.22s var(--ease-silk), width 0.3s, height 0.3s, border-color 0.3s, opacity 0.3s;
    transform: translate(-50%, -50%); opacity: 0.7;
  }
  .cursor-ring.hov { width: 58px; height: 58px; border-color: var(--violet); opacity: 0.45; }

  ::-webkit-scrollbar { width: 4px; }
  ::-webkit-scrollbar-track { background: var(--blush); }
  ::-webkit-scrollbar-thumb { background: var(--mauve); border-radius: 2px; }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 500;
    padding: 1.5rem 5rem;
    display: flex; align-items: center; justify-content: space-between;
    transition: background 0.5s, backdrop-filter 0.5s, box-shadow 0.5s;
  }
  nav.scrolled {
    background: rgba(253,246,249,0.88);
    backdrop-filter: blur(22px);
    box-shadow: 0 1px 0 rgba(196,127,160,0.18);
  }
  .nav-logo { font-family: var(--font-display); font-size: 1.65rem; color: var(--plum); text-decoration: none; letter-spacing: 0.02em; }
  .nav-links { display: flex; gap: 2.5rem; list-style: none; }
  .nav-links a {
    font-family: var(--font-label); font-size: 0.68rem; font-weight: 300;
    letter-spacing: 0.18em; text-transform: uppercase; color: var(--orchid);
    text-decoration: none; position: relative; padding-bottom: 2px; transition: color 0.3s;
  }
  .nav-links a::after { content:''; position:absolute; bottom:0; left:0; width:0; height:1px; background:var(--mauve); transition: width 0.4s var(--ease-silk); }
  .nav-links a:hover { color: var(--plum); }
  .nav-links a:hover::after { width: 100%; }

  .hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: none; padding: 4px; }
  .hamburger span { display: block; width: 24px; height: 1.5px; background: var(--orchid); transition: transform 0.3s, 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-menu {
    display: none; position: fixed; inset: 0;
    background: rgba(253,246,249,0.97); backdrop-filter: blur(30px);
    z-index: 490; flex-direction: column; align-items: center; justify-content: center; gap: 2.5rem;
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a {
    font-family: var(--font-display); font-size: 2.6rem; color: var(--plum); text-decoration: none;
    opacity: 0; transform: translateY(20px); animation: menuIn 0.5s var(--ease-bloom) forwards;
  }
  .mobile-menu a:nth-child(1){animation-delay:.05s} .mobile-menu a:nth-child(2){animation-delay:.1s}
  .mobile-menu a:nth-child(3){animation-delay:.15s} .mobile-menu a:nth-child(4){animation-delay:.2s}
  .mobile-menu a:nth-child(5){animation-delay:.25s}
  @keyframes menuIn { to { opacity:1; transform:translateY(0); } }

  /* HERO */
  #hero {
    min-height: 100vh;
    display: grid; grid-template-columns: 1fr 1fr;
    position: relative; overflow: hidden;
  }

  .hero-left {
    display: flex; flex-direction: column; justify-content: center;
    padding: 9rem 4rem 6rem 6rem; position: relative; z-index: 2;
  }

  .hero-tag {
    font-family: var(--font-label); font-size: 0.65rem; font-weight: 300;
    letter-spacing: 0.26em; text-transform: uppercase; color: var(--mauve);
    margin-bottom: 2rem; opacity: 0; animation: fadeUp 0.8s var(--ease-silk) 0.2s forwards;
  }
  .hero-name {
    font-family: var(--font-display); font-size: clamp(4rem, 7vw, 7.5rem);
    line-height: 0.92; color: var(--plum); margin-bottom: 0.3em;
    opacity: 0; animation: fadeUp 0.9s var(--ease-silk) 0.35s forwards;
  }
  .hero-title {
    font-family: var(--font-body); font-size: clamp(1.1rem, 2vw, 1.5rem);
    font-weight: 300; font-style: italic; color: var(--orchid); margin-bottom: 2.5rem;
    opacity: 0; animation: fadeUp 0.9s var(--ease-silk) 0.5s forwards;
  }
  .hero-desc {
    font-size: clamp(1rem, 1.3vw, 1.15rem); font-weight: 300; line-height: 1.88;
    color: var(--plum); max-width: 40ch; margin-bottom: 3rem;
    opacity: 0; animation: fadeUp 0.9s var(--ease-silk) 0.65s forwards;
  }
  .hero-ctas { display: flex; gap: 1.25rem; flex-wrap: wrap; opacity: 0; animation: fadeUp 0.9s var(--ease-silk) 0.8s forwards; }

  .btn-primary {
    font-family: var(--font-label); font-size: 0.68rem; font-weight: 300;
    letter-spacing: 0.18em; text-transform: uppercase; text-decoration: none;
    color: white; background: linear-gradient(135deg, var(--mauve), var(--violet));
    padding: 1rem 2.4rem; border-radius: 50px;
    transition: transform 0.3s var(--ease-bloom), box-shadow 0.3s;
    box-shadow: 0 8px 30px rgba(155,91,130,0.3);
  }
  .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(155,91,130,0.45); }

  .btn-secondary {
    font-family: var(--font-label); font-size: 0.68rem; font-weight: 300;
    letter-spacing: 0.18em; text-transform: uppercase; text-decoration: none;
    color: var(--orchid); border: 1px solid var(--petal);
    padding: 1rem 2.4rem; border-radius: 50px;
    transition: all 0.3s var(--ease-bloom);
  }
  .btn-secondary:hover { background: var(--blush); border-color: var(--mauve); color: var(--plum); transform: translateY(-3px); }

  /* Hero right mosaic */
  .hero-right { position: relative; overflow: hidden; opacity: 0; animation: fadeIn 1.2s var(--ease-silk) 0.3s forwards; }
  .hero-mosaic {
    position: absolute; inset: 0;
    display: grid; grid-template-columns: repeat(3,1fr); grid-template-rows: repeat(4,1fr); gap: 6px; padding: 6px;
  }
  .mc { border-radius: 12px; position: relative; overflow: hidden; }
  .mc::after { content:''; position:absolute; inset:0; background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, transparent 60%); }
  .mc svg { position:absolute; inset:0; width:100%; height:100%; }
  .mc-1 { grid-column:1/3; grid-row:1/3; background: linear-gradient(145deg,#f2c4d8,#d4a0c0,#b37da0); }
  .mc-2 { grid-column:3; grid-row:1; background: linear-gradient(135deg,#e8d5f0,#c4aad8); }
  .mc-3 { grid-column:3; grid-row:2; background: linear-gradient(135deg,#f8e8f2,#e4b8d4); }
  .mc-4 { grid-column:1; grid-row:3; background: linear-gradient(135deg,#ede6f5,#c4aad8); }
  .mc-5 { grid-column:2/4; grid-row:3; background: linear-gradient(145deg,#d4b0e0,#9b7abc); }
  .mc-6 { grid-column:1/3; grid-row:4; background: linear-gradient(145deg,#f5dce8,#dba8c4); }
  .mc-7 { grid-column:3; grid-row:4; background: linear-gradient(135deg,#e0d0f0,#8b6aad); }

  /* Floating stats */
  .hero-stat {
    position: absolute; background: rgba(253,246,249,0.88);
    backdrop-filter: blur(16px); border: 1px solid rgba(228,184,212,0.4);
    border-radius: 16px; padding: 1.1rem 1.5rem;
    box-shadow: 0 8px 30px rgba(155,91,130,0.12); z-index: 5;
  }
  .stat-num { font-family: var(--font-display); font-size: 2rem; color: var(--plum); line-height: 1; }
  .stat-lbl { font-family: var(--font-label); font-size: 0.58rem; font-weight: 300; letter-spacing: 0.14em; text-transform: uppercase; color: var(--mauve); margin-top: 0.25rem; }
  .stat-a { top: 22%; right: 5%; animation: floatA 6s ease-in-out infinite; }
  .stat-b { bottom: 26%; left: 3%; animation: floatB 7s ease-in-out 1s infinite; }
  .stat-c { bottom: 12%; right: 11%; animation: floatA 5.5s ease-in-out 2s infinite; }
  @keyframes floatA { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
  @keyframes floatB { 0%,100%{transform:translateY(0)} 50%{transform:translateY(8px)} }

  .scroll-hint {
    position: absolute; bottom: 2.5rem; left: 6rem;
    display: flex; align-items: center; gap: 1rem;
    opacity: 0; animation: fadeIn 1s var(--ease-silk) 1.2s forwards; z-index: 10;
  }
  .scroll-line { width: 50px; height: 1px; background: var(--petal); position: relative; overflow: hidden; }
  .scroll-line::after {
    content:''; position:absolute; top:0; left:-100%; width:100%; height:100%;
    background: var(--mauve); animation: sLine 2s ease-in-out 1.5s infinite;
  }
  @keyframes sLine { 0%{left:-100%} 50%{left:0} 100%{left:100%} }
  .scroll-hint span { font-family: var(--font-label); font-size: 0.6rem; font-weight: 200; letter-spacing: 0.2em; text-transform: uppercase; color: var(--mauve); }

  /* SECTIONS */
  section { padding: 8rem 6rem; }
  .s-eyebrow {
    font-family: var(--font-label); font-size: 0.65rem; font-weight: 300;
    letter-spacing: 0.28em; text-transform: uppercase; color: var(--mauve);
    display: flex; align-items: center; gap: 1rem; margin-bottom: 1.2rem;
  }
  .s-eyebrow::before { content:''; width:30px; height:1px; background:var(--petal); flex-shrink:0; }
  .s-heading { font-family: var(--font-display); font-size: clamp(2.5rem,4.5vw,4.5rem); line-height: 1.05; color: var(--plum); margin-bottom: 1rem; }
  .s-sub { font-family: var(--font-body); font-size: 1.1rem; font-weight: 300; font-style: italic; color: var(--orchid); margin-bottom: 3rem; max-width: 55ch; line-height: 1.85; }

  /* SERVICES */
  #services { background: linear-gradient(160deg, var(--lavender-fog) 0%, var(--rose-white) 60%); position: relative; overflow: hidden; }
  #services::before {
    content:''; position:absolute; width:600px; height:600px; border-radius:50%;
    background: radial-gradient(circle, rgba(196,170,216,0.2) 0%, transparent 70%);
    top:-200px; right:-200px; pointer-events:none;
  }
  .svc-header { max-width: 600px; }
  .svc-grid {
    display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5px;
    background: linear-gradient(135deg, var(--petal), var(--wisteria));
    border-radius: 24px; overflow: hidden;
    box-shadow: 0 20px 60px rgba(155,91,130,0.12);
  }
  .svc-card {
    background: var(--rose-white); padding: 2.8rem 2.4rem;
    position: relative; overflow: hidden;
    transition: transform 0.4s var(--ease-bloom);
  }
  .svc-card::before { content:''; position:absolute; inset:0; background: linear-gradient(135deg,var(--blush) 0%, transparent 60%); opacity:0; transition:opacity 0.4s; }
  .svc-card:hover::before { opacity:1; }
  .svc-card:hover { transform: scale(1.02); z-index:2; }
  .svc-icon { width:48px; height:48px; margin-bottom:1.5rem; position:relative; z-index:1; }
  .svc-name { font-family:var(--font-body); font-size:1.3rem; font-weight:500; color:var(--plum); margin-bottom:0.75rem; position:relative; z-index:1; }
  .svc-desc { font-size:0.95rem; font-weight:300; line-height:1.85; color:var(--orchid); position:relative; z-index:1; }
  .svc-num { position:absolute; top:1.5rem; right:1.8rem; font-family:var(--font-display); font-size:3.5rem; color:rgba(196,127,160,0.1); line-height:1; pointer-events:none; }

  /* ABOUT */
  #about { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
  .about-vis { position: relative; }
  .about-portrait {
    width:100%; aspect-ratio: 4/5;
    border-radius: 60% 40% 55% 45% / 40% 50% 50% 60%;
    background: linear-gradient(145deg,#f2c4d8,#c4aad8,#9b7abc);
    position: relative; overflow: hidden;
    box-shadow: 0 30px 80px rgba(155,91,130,0.2);
    animation: morphBlob 8s ease-in-out infinite;
  }
  @keyframes morphBlob {
    0%,100%{border-radius:60% 40% 55% 45% / 40% 50% 50% 60%}
    25%{border-radius:50% 50% 40% 60% / 60% 40% 60% 40%}
    50%{border-radius:40% 60% 60% 40% / 50% 60% 40% 50%}
    75%{border-radius:65% 35% 45% 55% / 45% 55% 45% 55%}
  }
  .about-portrait::after { content:''; position:absolute; inset:0; background: linear-gradient(135deg,rgba(255,255,255,0.15) 0%,transparent 50%); }
  .about-initials { position:absolute; inset:0; display:flex; align-items:center; justify-content:center; font-family:var(--font-display); font-size:7rem; color:rgba(253,246,249,0.5); z-index:1; letter-spacing:-0.05em; }
  .about-initials img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 100%; /* Image must have a width smaller than the container */
}
  .about-badge {
    position:absolute; bottom:-1.5rem; right:-1.5rem;
    width:120px; height:120px; border-radius:50%;
    background: linear-gradient(135deg,var(--mauve),var(--violet));
    display:flex; flex-direction:column; align-items:center; justify-content:center;
    box-shadow: 0 10px 30px rgba(139,106,173,0.35);
    animation: rotateBadge 20s linear infinite;
  }
  .badge-num { font-family:var(--font-display); font-size:2.2rem; color:white; line-height:1; }
  .badge-txt { font-family:var(--font-label); font-size:0.5rem; font-weight:200; letter-spacing:0.15em; text-transform:uppercase; color:rgba(255,255,255,0.8); text-align:center; margin-top:0.2rem; }
  @keyframes rotateBadge { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }
  .a-ring { position:absolute; border: 1.5px solid var(--petal); border-radius:50%; animation: rpulse 4s ease-in-out infinite; }
  .a-ring-1 { width:200px; height:200px; top:-40px; left:-40px; }
  .a-ring-2 { width:300px; height:300px; top:-90px; left:-90px; animation-delay:1s; opacity:0.5; }
  @keyframes rpulse { 0%,100%{transform:scale(1);opacity:0.6} 50%{transform:scale(1.04);opacity:0.3} }
  .traits { display:grid; grid-template-columns:1fr 1fr; gap:1rem; margin-top:2.5rem; }
  .t-pill {
    background:var(--blush); border:1px solid var(--petal); border-radius:50px;
    padding:0.75rem 1.4rem; font-family:var(--font-label); font-size:0.65rem;
    font-weight:300; letter-spacing:0.14em; text-transform:uppercase; color:var(--orchid);
    text-align:center; transition: all 0.3s var(--ease-bloom);
  }
  .t-pill:hover { background:var(--petal); border-color:var(--mauve); color:var(--plum); transform:scale(1.04); }

  /* SKILLS */
  #skills { background: linear-gradient(160deg, var(--rose-white) 0%, var(--lavender-fog) 100%); }
  .skills-layout { display:grid; grid-template-columns:38% 1fr; gap:5rem; align-items:start; }
  .skill-bars { display:flex; flex-direction:column; gap:2rem; margin-top:3rem; }
  .sk-top { display:flex; justify-content:space-between; align-items:baseline; margin-bottom:0.6rem; }
  .sk-name { font-family:var(--font-body); font-size:1rem; font-weight:400; color:var(--plum); }
  .sk-pct { font-family:var(--font-label); font-size:0.65rem; font-weight:300; color:var(--mauve); letter-spacing:0.1em; }
  .sk-track { height:3px; background:var(--blush); border-radius:3px; overflow:hidden; }
  .sk-fill { height:100%; background: linear-gradient(90deg,var(--mauve),var(--violet)); border-radius:3px; width:0; transition: width 1.2s var(--ease-silk); }
  .tools-cloud { margin-top:3rem; display:flex; flex-wrap:wrap; gap:0.8rem; }
  .t-tag {
    font-family:var(--font-label); font-size:0.62rem; font-weight:300;
    letter-spacing:0.14em; text-transform:uppercase; color:var(--orchid);
    background:rgba(253,246,249,0.8); border:1px solid var(--petal);
    border-radius:50px; padding:0.65rem 1.2rem;
    transition: all 0.3s var(--ease-bloom); backdrop-filter:blur(8px);
  }
  .t-tag:hover { background:var(--petal); border-color:var(--mauve); color:var(--plum); transform:translateY(-3px); box-shadow:0 6px 20px rgba(155,91,130,0.15); }

  /* PROCESS */
  #process { background: linear-gradient(160deg, var(--rose-white) 0%, var(--lavender-fog) 100%); position:relative; overflow:hidden; }
  .process-steps { display:grid; grid-template-columns:repeat(4,1fr); gap:2px; margin-top:4rem; position:relative; }
  .process-steps::before {
    content:''; position:absolute; top:1.75rem;
    left:calc(12.5% + 1px); right:calc(12.5% + 1px); height:1px;
    background: linear-gradient(90deg,var(--petal),var(--wisteria),var(--petal)); z-index:0;
  }
  .p-step { padding:0 1.5rem; position:relative; z-index:1; text-align:center; }
  .p-dot {
    width:56px; height:56px; border-radius:50%; background:var(--rose-white);
    border:2px solid var(--rose-white);
    box-shadow: 0 0 0 2px var(--petal), 0 8px 20px rgba(155,91,130,0.15);
    margin:0 auto 2rem; display:flex; align-items:center; justify-content:center;
    font-family:var(--font-display); font-size:1.4rem; color:var(--plum);
    transition: all 0.4s var(--ease-bloom); position:relative; z-index:2;
  }
  .p-step:hover .p-dot { background: linear-gradient(135deg,var(--mauve),var(--violet)); color:white; transform:scale(1.15); box-shadow: 0 0 0 3px var(--blush), 0 12px 30px rgba(155,91,130,0.3); }
  .p-title { font-family:var(--font-body); font-size:1.15rem; font-weight:500; color:var(--plum); margin-bottom:0.75rem; }
  .p-desc { font-size:0.9rem; font-weight:300; line-height:1.85; color:var(--orchid); }

  /* TESTIMONIALS */
  #testimonials { background: linear-gradient(160deg,var(--lavender-fog) 0%, var(--blush) 100%); position:relative; overflow:hidden; }
  #testimonials::before { content:'❝'; position:absolute; font-family:var(--font-display); font-size:30rem; color:rgba(196,127,160,0.06); top:-5rem; left:-2rem; pointer-events:none; line-height:1; }
  .t-slider { position:relative; margin-top:4rem; min-height:280px; }
  .t-card {
    position:absolute; inset:0; display:none; flex-direction:column;
    background:rgba(253,246,249,0.72); backdrop-filter:blur(20px);
    border:1px solid rgba(228,184,212,0.4); border-radius:24px; padding:3.5rem 4rem;
    box-shadow: 0 20px 60px rgba(155,91,130,0.1);
    opacity:0; transition:opacity 0.6s var(--ease-silk);
  }
  .t-card.active { display:flex; opacity:1; }
  .t-quote { font-size:clamp(1.1rem,1.8vw,1.35rem); font-weight:300; font-style:italic; line-height:1.9; color:var(--plum); margin-bottom:2.5rem; max-width:68ch; }
  .t-author { display:flex; align-items:center; gap:1.2rem; }
  .t-avatar { width:50px; height:50px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-family:var(--font-display); font-size:1.2rem; color:white; background: linear-gradient(135deg,var(--mauve),var(--violet)); flex-shrink:0; }
  .t-name { font-family:var(--font-body); font-size:1rem; font-weight:500; color:var(--plum); }
  .t-role { font-family:var(--font-label); font-size:0.6rem; font-weight:300; letter-spacing:0.14em; text-transform:uppercase; color:var(--mauve); margin-top:0.2rem; }
  .t-stars { margin-left:auto; display:flex; gap:0.3rem; color:var(--mauve); font-size:1rem; }
  .t-controls { display:flex; align-items:center; gap:1rem; margin-top:2rem; }
  .td { width:8px; height:8px; border-radius:50%; background:var(--petal); cursor:none; transition:all 0.3s var(--ease-bloom); }
  .td.active { background:var(--orchid); transform:scale(1.4); }

  /* CONTACT */
  #contact { display:grid; grid-template-columns:1fr 1fr; gap:5rem; align-items:center; }
  .c-items { display:flex; flex-direction:column; gap:1.5rem; }
  .c-item {
    display:flex; align-items:center; gap:1.2rem;
    padding:1.2rem 1.5rem; background:var(--blush);
    border:1px solid var(--petal); border-radius:16px;
    transition: all 0.3s var(--ease-bloom);
  }
  .c-item:hover { background:var(--petal); border-color:var(--mauve); transform:translateX(6px); }
  .c-icon { width:40px; height:40px; border-radius:10px; background: linear-gradient(135deg,var(--mauve),var(--violet)); display:flex; align-items:center; justify-content:center; color:white; font-size:1rem; flex-shrink:0; }
  .c-label { font-family:var(--font-label); font-size:0.6rem; font-weight:300; letter-spacing:0.14em; text-transform:uppercase; color:var(--mauve); }
  .c-value { font-family:var(--font-body); font-size:1rem; font-weight:400; color:var(--plum); margin-top:0.15rem; }
  .c-form {
    background:rgba(253,246,249,0.6); backdrop-filter:blur(20px);
    border:1px solid rgba(228,184,212,0.4); border-radius:24px; padding:3rem;
    box-shadow: 0 20px 60px rgba(155,91,130,0.1);
  }
  .f-row { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
  .f-group { display:flex; flex-direction:column; gap:0.5rem; margin-bottom:1.2rem; }
  .f-group label { font-family:var(--font-label); font-size:0.62rem; font-weight:300; letter-spacing:0.14em; text-transform:uppercase; color:var(--mauve); }
  .f-group input,.f-group textarea,.f-group select {
    font-family:var(--font-body); font-size:1rem; font-weight:300; color:var(--plum);
    background:rgba(253,246,249,0.8); border:1px solid var(--petal); border-radius:12px;
    padding:0.9rem 1.2rem; outline:none; resize:none; appearance:none; cursor:none;
    transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
  }
  .f-group input:focus,.f-group textarea:focus,.f-group select:focus { border-color:var(--mauve); box-shadow:0 0 0 4px rgba(196,127,160,0.12); background:white; }
  .f-group input::placeholder,.f-group textarea::placeholder { color:var(--petal); font-style:italic; }
  .f-submit {
    width:100%; font-family:var(--font-label); font-size:0.7rem; font-weight:300;
    letter-spacing:0.2em; text-transform:uppercase; color:white;
    background: linear-gradient(135deg,var(--mauve),var(--violet));
    border:none; border-radius:50px; padding:1.2rem 2rem; cursor:none;
    transition: all 0.3s var(--ease-bloom);
    box-shadow: 0 8px 30px rgba(155,91,130,0.3); margin-top:0.5rem;
  }
  .f-submit:hover { transform:translateY(-3px); box-shadow: 0 14px 40px rgba(155,91,130,0.4); }

  /* FOOTER */
  footer { background:var(--midnight); padding:4rem 6rem 2.5rem; position:relative; overflow:hidden; }
  footer::before { content:''; position:absolute; inset:0; background: linear-gradient(135deg,rgba(155,91,130,0.08) 0%,transparent 60%); }
  .ft { display:flex; justify-content:space-between; align-items:center; padding-bottom:2.5rem; border-bottom:1px solid rgba(196,127,160,0.15); margin-bottom:2.5rem; position:relative; }
  .ft-logo { font-family:var(--font-display); font-size:2rem; color:var(--petal); }
  .ft-tag { font-family:var(--font-body); font-size:0.95rem; font-weight:300; font-style:italic; color:var(--mauve); margin-top:0.3rem; }
  .ft-soc { display:flex; gap:1rem; }
  .soc-a { width:42px; height:42px; border-radius:12px; border:1px solid rgba(196,127,160,0.25); display:flex; align-items:center; justify-content:center; color:var(--mauve); font-size:0.85rem; transition: all 0.3s var(--ease-bloom); text-decoration:none; }
  .soc-a:hover { background:rgba(196,127,160,0.15); border-color:var(--mauve); color:var(--petal); transform:translateY(-4px); }
  .fb { display:flex; justify-content:space-between; align-items:center; position:relative; }
  .ft-copy { font-family:var(--font-label); font-size:0.6rem; font-weight:200; letter-spacing:0.14em; text-transform:uppercase; color:rgba(196,127,160,0.5); }
  .ft-avail { display:flex; align-items:center; gap:0.6rem; font-family:var(--font-label); font-size:0.6rem; font-weight:200; letter-spacing:0.14em; text-transform:uppercase; color:rgba(196,127,160,0.6); }
  .avdot { width:6px; height:6px; border-radius:50%; background:#6ee7b7; box-shadow:0 0 8px rgba(110,231,183,0.6); animation:blink 2s ease-in-out infinite; }
  @keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.4} }

  /* ANIMATIONS */
  @keyframes fadeUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }
  @keyframes fadeIn { from{opacity:0} to{opacity:1} }
  .reveal { opacity:0; transform:translateY(40px); transition: opacity 0.85s var(--ease-silk), transform 0.85s var(--ease-silk); }
  .reveal.vis { opacity:1; transform:translateY(0); }
  .d1{transition-delay:.1s} .d2{transition-delay:.2s} .d3{transition-delay:.3s} .d4{transition-delay:.4s}

  /* RESPONSIVE */
  @media (max-width:1100px) {
    section { padding:6rem 3rem; }
    .skills-layout { grid-template-columns:1fr; gap:3rem; }
    .process-steps { grid-template-columns:repeat(2,1fr); gap:3rem; }
    .process-steps::before { display:none; }
  }
  @media (max-width:900px) {
    nav { padding:1.2rem 2rem; }
    .nav-links { display:none; }
    .hamburger { display:flex; }
    #hero { grid-template-columns:1fr; }
    .hero-left { padding:9rem 2rem 4rem; }
    .hero-right { display:none; }
    .scroll-hint { left:2rem; }
    section { padding:5rem 2rem; }
    #about { grid-template-columns:1fr; gap:3rem; }
    .about-vis { max-width:300px; margin:0 auto; }
    .svc-grid { grid-template-columns:1fr 1fr; }
    #contact { grid-template-columns:1fr; gap:3rem; }
    footer { padding:3rem 2rem 2rem; }
    .ft { flex-direction:column; gap:1.5rem; text-align:center; }
    .fb { flex-direction:column; gap:1rem; text-align:center; }
  }
  @media (max-width:600px) {
    .svc-grid { grid-template-columns:1fr; }
    .process-steps { grid-template-columns:1fr; }
    .f-row { grid-template-columns:1fr; }
    .hero-name { font-size:3.5rem; }
    .traits { grid-template-columns:1fr; }
  }