:root {
    --ink: #331522;
    --ink-soft: #7d5468;
    --paper: #fff5f9;
    --paper-deep: #fce7f0;
    --accent: #d6336c;
    --accent-soft: #ffdeeb;
    --lilac: #dcb6f5;
    --sage: #f4b8d0;
    --gold: #f9a8c9;
    --radius: 22px;
    --font-display: "Fraunces", serif;
    --font-body: "Space Grotesk", sans-serif;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }

  body {
    font-family: var(--font-body);
    background: var(--paper);
    color: var(--ink);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: default;
  }

  ::selection { background: var(--accent); color: #fff; }

  /* ---------- Cursor dot ---------- */
  .cursor-dot {
    position: fixed; top: 0; left: 0; z-index: 9999;
    width: 12px; height: 12px; border-radius: 50%;
    background: var(--accent);
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: width .25s ease, height .25s ease, opacity .25s ease;
    mix-blend-mode: multiply;
    opacity: 0;
  }
  body:hover .cursor-dot { opacity: 1; }
  .cursor-dot.is-hovering { width: 46px; height: 46px; opacity: .35; }
  @media (hover: none) { .cursor-dot { display: none; } }

  /* ---------- Reveal animations (only when JS is running, so content is never hidden without it) ---------- */
  html.js .reveal { opacity: 0; transform: translateY(36px); transition: opacity .9s cubic-bezier(.16,1,.3,1), transform .9s cubic-bezier(.16,1,.3,1); }
  html.js .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-delay-1 { transition-delay: .12s; }
  .reveal-delay-2 { transition-delay: .24s; }
  .reveal-delay-3 { transition-delay: .36s; }

  .container { width: min(1200px, 92vw); margin: 0 auto; }

  /* ---------- Nav ---------- */
  header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    transition: background .35s ease, box-shadow .35s ease, backdrop-filter .35s ease;
  }
  header.scrolled {
    background: rgba(255, 245, 249, .96);
    box-shadow: 0 1px 0 rgba(51,21,34,.08);
  }
  .nav {
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 0;
  }
  .logo {
    font-family: var(--font-display);
    font-weight: 700; font-size: 1.35rem; text-decoration: none; color: var(--ink);
    letter-spacing: -.02em;
  }
  .logo span { color: var(--accent); }
  .nav-links { display: flex; gap: 34px; align-items: center; list-style: none; }
  .nav-links a {
    text-decoration: none; color: var(--ink-soft); font-size: .92rem; font-weight: 500;
    letter-spacing: .02em; transition: color .25s;
    position: relative;
  }
  .nav-links a::after {
    content: ""; position: absolute; left: 0; bottom: -5px; height: 2px; width: 0;
    background: var(--accent); transition: width .3s ease; border-radius: 2px;
  }
  .nav-links a:hover { color: var(--ink); }
  .nav-links a:hover::after { width: 100%; }
  .btn {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--ink); color: var(--paper); border: none;
    padding: 13px 26px; border-radius: 100px;
    font-family: var(--font-body); font-weight: 600; font-size: .92rem;
    text-decoration: none; cursor: pointer;
    transition: transform .3s cubic-bezier(.16,1,.3,1), background .3s, box-shadow .3s;
  }
  .btn:hover { background: var(--accent); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(214,51,108,.3); }
  .btn.light { background: var(--paper); color: var(--ink); }
  .btn.light:hover { background: var(--accent); color: #fff; }
  .btn .arrow { transition: transform .3s; }
  .btn:hover .arrow { transform: translateX(4px); }

  .menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
  .menu-toggle svg { width: 26px; height: 26px; stroke: var(--ink); }

  /* ---------- Hero ---------- */
  .hero {
    min-height: 100svh;
    display: flex; flex-direction: column; justify-content: center;
    position: relative; padding-top: 110px; padding-bottom: 40px;
    overflow: hidden;
  }
  .hero-blob {
    position: absolute; border-radius: 50%; filter: blur(90px); opacity: .55; z-index: 0;
    animation: float 14s ease-in-out infinite alternate;
  }
  .blob-1 { width: 480px; height: 480px; background: var(--accent-soft); top: -80px; right: -120px; }
  .blob-2 { width: 380px; height: 380px; background: #eedcff; bottom: -60px; left: -100px; animation-delay: -6s; }
  @keyframes float {
    from { transform: translate(0, 0) scale(1); }
    to   { transform: translate(30px, -30px) scale(1.08); }
  }

  .hero-inner { position: relative; z-index: 1; }
  .hero-eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    background: #fff; border: 1px solid rgba(51,21,34,.1);
    padding: 9px 18px; border-radius: 100px;
    font-size: .85rem; font-weight: 500; color: var(--ink-soft);
    margin-bottom: 34px;
    box-shadow: 0 2px 10px rgba(51,21,34,.04);
  }
  .pulse-dot {
    width: 9px; height: 9px; border-radius: 50%; background: #f06595;
    animation: pulse 2s infinite;
  }
  @keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(240,101,149,.5); }
    70% { box-shadow: 0 0 0 9px rgba(240,101,149,0); }
    100% { box-shadow: 0 0 0 0 rgba(240,101,149,0); }
  }

  .hero h1 {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8.4vw, 7rem);
    max-width: 15ch;
    line-height: .98; font-weight: 560; letter-spacing: -.03em;
    margin-bottom: 14px;
  }
  .hero h1 .line { display: block; overflow: hidden; }
  .hero h1 .line > span { display: inline-block; transform: translateY(110%); animation: riseUp 1.1s cubic-bezier(.16,1,.3,1) forwards; }
  .hero h1 .line:nth-child(2) > span { animation-delay: .12s; }
  @keyframes riseUp { to { transform: translateY(0); } }

  .hero h1 em {
    font-style: italic; font-weight: 400; color: var(--accent);
  }
  .hero-sub {
    max-width: 560px; font-size: 1.13rem; color: var(--ink-soft);
    margin: 26px 0 40px;
    opacity: 0; animation: fadeIn 1s ease .6s forwards;
  }
  @keyframes fadeIn { to { opacity: 1; } }
  .hero-cta { display: flex; gap: 16px; flex-wrap: wrap; opacity: 0; animation: fadeIn 1s ease .8s forwards; }

  .hero-badges {
    position: absolute; right: 4vw; top: 50%; transform: translateY(-58%);
    display: flex; flex-direction: column; gap: 18px; z-index: 1;
  }
  .float-card {
    background: #fff; border-radius: 18px; padding: 16px 20px;
    box-shadow: 0 18px 44px rgba(51,21,34,.1);
    display: flex; align-items: center; gap: 14px;
    animation: bob 6s ease-in-out infinite;
    border: 1px solid rgba(51,21,34,.05);
  }
  .float-card:nth-child(2) { animation-delay: -2s; margin-left: 36px; }
  .float-card:nth-child(3) { animation-delay: -4s; }
  @keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
  .float-icon {
    width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
    display: grid; place-items: center; font-size: 1.25rem;
  }
  .float-card b { display: block; font-size: .95rem; }
  .float-card small { color: var(--ink-soft); font-size: .78rem; }

  .scroll-hint {
    position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%);
    color: var(--ink-soft); font-size: .8rem; letter-spacing: .18em; text-transform: uppercase;
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    opacity: 0; animation: fadeIn 1s ease 1.4s forwards;
  }
  .scroll-hint::after {
    content: ""; width: 1px; height: 44px; background: linear-gradient(var(--ink-soft), transparent);
    animation: drip 1.8s ease-in-out infinite;
  }
  @keyframes drip { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

  /* ---------- Marquee ---------- */
  .marquee {
    background: var(--ink); color: var(--paper);
    padding: 20px 0; overflow: hidden; white-space: nowrap;
    transform: rotate(-1.2deg) scale(1.02);
  }
  .marquee-track { display: inline-flex; gap: 0; animation: scrollX 28s linear infinite; }
  .marquee span {
    font-family: var(--font-display); font-size: 1.5rem; font-weight: 500; font-style: italic;
    padding: 0 28px; display: inline-flex; align-items: center; gap: 28px;
  }
  .marquee span::after { content: "✦"; color: var(--accent); font-style: normal; }
  @keyframes scrollX { from { transform: translateX(0); } to { transform: translateX(-50%); } }

  /* ---------- Sections ---------- */
  section { padding: 110px 0; }
  .section-tag {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--accent); font-weight: 600; font-size: .85rem;
    text-transform: uppercase; letter-spacing: .2em; margin-bottom: 18px;
  }
  .section-tag::before { content: ""; width: 30px; height: 2px; background: var(--accent); border-radius: 2px; }
  h2 {
    font-family: var(--font-display); font-weight: 560;
    font-size: clamp(2.1rem, 4.6vw, 3.6rem); letter-spacing: -.02em; line-height: 1.08;
  }
  h2 em { font-style: italic; font-weight: 400; color: var(--accent); }

  /* ---------- About ---------- */
  .about-grid {
    display: grid; grid-template-columns: 1fr 1.15fr; gap: 70px; align-items: center;
    margin-top: 20px;
  }
  .about-visual { position: relative; }
  .portrait-frame {
    border-radius: var(--radius);
    aspect-ratio: 4/4.7;
    background:
      radial-gradient(120% 90% at 20% 15%, #ffc9dd 0%, transparent 55%),
      radial-gradient(110% 100% at 85% 80%, #e9d8ff 0%, transparent 50%),
      linear-gradient(160deg, #fff0f6, #fbe7f0);
    display: grid; place-items: center; overflow: hidden;
    border: 1px solid rgba(51,21,34,.08);
    box-shadow: 0 30px 70px rgba(51,21,34,.12);
  }
  .portrait-frame svg { width: 68%; height: auto; }
  .about-sticker {
    position: absolute; background: #fff; border-radius: 16px;
    padding: 14px 20px; box-shadow: 0 16px 40px rgba(51,21,34,.14);
    font-size: .88rem; font-weight: 600;
    border: 1px solid rgba(51,21,34,.06);
  }
  .about-sticker small { display: block; font-weight: 400; color: var(--ink-soft); font-size: .76rem; }
  .sticker-1 { top: 26px; right: -22px; transform: rotate(4deg); }
  .sticker-2 { bottom: 34px; left: -26px; transform: rotate(-4deg); }

  .about-copy p { color: var(--ink-soft); font-size: 1.06rem; margin: 22px 0; }
  .about-copy p strong { color: var(--ink); }

  .facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 34px; }
  .fact {
    background: #fff; border-radius: 16px; padding: 20px 18px;
    border: 1px solid rgba(51,21,34,.07);
    transition: transform .35s cubic-bezier(.16,1,.3,1), box-shadow .35s;
  }
  .fact:hover { transform: translateY(-5px); box-shadow: 0 16px 34px rgba(51,21,34,.09); }
  .fact b { font-family: var(--font-display); font-size: 1.7rem; display: block; letter-spacing: -.02em; }
  .fact b span { color: var(--accent); }
  .fact small { color: var(--ink-soft); font-size: .82rem; }

  .lang-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
  .chip {
    background: var(--paper-deep); border: 1px solid rgba(51,21,34,.08);
    padding: 8px 16px; border-radius: 100px; font-size: .84rem; font-weight: 500;
  }
  .chip b { color: var(--accent); font-weight: 600; }

  /* ---------- Services ---------- */
  .services { background: var(--ink); color: var(--paper); border-radius: 40px 40px 0 0; }
  .services .section-tag { color: var(--gold); }
  .services .section-tag::before { background: var(--gold); }
  .services h2 em { color: var(--gold); }
  .services-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; flex-wrap: wrap; }
  .services-head p { color: #c9a0b4; max-width: 420px; }
  .service-list { margin-top: 64px; border-top: 1px solid rgba(250,246,240,.14); }
  .service-item {
    display: grid; grid-template-columns: 80px 1.1fr 1.6fr auto;
    gap: 28px; align-items: center;
    padding: 38px 10px; border-bottom: 1px solid rgba(250,246,240,.14);
    transition: background .35s, padding .35s;
    position: relative;
  }
  .service-item:hover { background: rgba(250,246,240,.045); padding-left: 26px; }
  .service-num { font-family: var(--font-display); font-style: italic; color: var(--gold); font-size: 1.15rem; }
  .service-item h3 { font-family: var(--font-display); font-size: 1.6rem; font-weight: 500; letter-spacing: -.01em; }
  .service-item p { color: #c9a0b4; font-size: .96rem; }
  .service-arrow {
    width: 52px; height: 52px; border-radius: 50%; border: 1px solid rgba(250,246,240,.25);
    display: grid; place-items: center; font-size: 1.1rem;
    transition: background .3s, transform .4s cubic-bezier(.16,1,.3,1), color .3s;
  }
  .service-item:hover .service-arrow { background: var(--gold); color: var(--ink); transform: rotate(45deg); }

  /* ---------- Work ---------- */
  .work { background: var(--ink); color: var(--paper); border-radius: 0 0 40px 40px; padding-top: 40px; }
  .work .section-tag { color: var(--lilac); }
  .work .section-tag::before { background: var(--lilac); }
  .work h2 em { color: var(--lilac); }
  .work-note { color: #c9a0b4; margin-top: 16px; max-width: 520px; font-size: .95rem; }
  .work-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 56px;
  }
  .work-card {
    border-radius: var(--radius); overflow: hidden; position: relative;
    aspect-ratio: 4/4.6; cursor: pointer;
    transition: transform .5s cubic-bezier(.16,1,.3,1), box-shadow .5s;
    border: 1px solid rgba(250,246,240,.1);
  }
  .work-card:hover { box-shadow: 0 28px 60px rgba(0,0,0,.45); }
  .work-cover { position: absolute; inset: 0; transition: transform .8s cubic-bezier(.16,1,.3,1); }
  .work-card:hover .work-cover { transform: scale(1.06); }
  .work-info {
    position: absolute; left: 0; right: 0; bottom: 0; padding: 22px;
    background: linear-gradient(transparent, rgba(15,12,10,.88));
    display: flex; justify-content: space-between; align-items: flex-end; gap: 12px;
  }
  .work-info h3 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 500; }
  .work-info small { color: #d6d3d1; font-size: .8rem; }
  .work-tag {
    background: rgba(84,26,50,.55);
    padding: 6px 13px; border-radius: 100px; font-size: .72rem; font-weight: 600;
    letter-spacing: .06em; text-transform: uppercase; white-space: nowrap;
  }

  /* covers — pure CSS/SVG art so the grid looks finished before real work is added */
  .cover-1 { background: radial-gradient(140% 110% at 18% 12%, #ff9ec2 0%, #e64980 45%, #6e1b3d 100%); }
  .cover-2 { background: linear-gradient(150deg, #e3b8f5 0%, #a86ee6 55%, #4d3486 100%); }
  .cover-3 { background: radial-gradient(120% 130% at 80% 20%, #ffddc9 0%, #ff9d8a 45%, #8f3a30 100%); }
  .cover-4 { background: linear-gradient(160deg, #fbc2eb 0%, #d966ab 55%, #611b48 100%); }
  .cover-5 { background: radial-gradient(130% 120% at 25% 85%, #f9a8d4 0%, #db2777 50%, #500724 100%); }
  .cover-6 { background: linear-gradient(145deg, #bcc8fd 0%, #7080e8 55%, #2b2a6e 100%); }
  .cover-art {
    position: absolute; inset: 0; display: grid; place-items: center;
    font-family: var(--font-display); font-style: italic;
    color: rgba(255,255,255,.92); font-size: 4.6rem; font-weight: 300;
    text-shadow: 0 8px 30px rgba(0,0,0,.25);
  }
  .cover-art svg { width: 58%; opacity: .9; }

  /* ---------- Social strip ---------- */
  .social-strip { padding-top: 90px; }
  .insta-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; margin-top: 50px; }
  .insta-tile {
    aspect-ratio: 1; border-radius: 16px; overflow: hidden; position: relative;
    transition: transform .4s cubic-bezier(.16,1,.3,1);
    border: 1px solid rgba(51,21,34,.08);
    display: grid; place-items: center; font-size: 1.8rem;
  }
  .insta-tile:hover { transform: scale(1.05) rotate(-1.5deg); z-index: 2; box-shadow: 0 18px 40px rgba(51,21,34,.16); }
  .insta-tile span {
    font-family: var(--font-display); font-style: italic; font-size: 1rem;
    color: rgba(51,21,34,.7); text-align: center; padding: 0 10px;
  }

  /* ---------- Credentials ---------- */
  .creds-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 56px; }
  .cred-card {
    background: #fff; border-radius: var(--radius); padding: 34px;
    border: 1px solid rgba(51,21,34,.08); position: relative; overflow: hidden;
    transition: transform .4s cubic-bezier(.16,1,.3,1), box-shadow .4s;
  }
  .cred-card:hover { transform: translateY(-6px); box-shadow: 0 22px 48px rgba(51,21,34,.1); }
  .cred-card::before {
    content: ""; position: absolute; top: 0; left: 0; right: 0; height: 5px;
    background: linear-gradient(90deg, var(--accent), var(--gold));
  }
  .cred-icon {
    width: 54px; height: 54px; border-radius: 14px; background: var(--accent-soft);
    display: grid; place-items: center; font-size: 1.5rem; margin-bottom: 20px;
  }
  .cred-card h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 560; margin-bottom: 8px; }
  .cred-card p { color: var(--ink-soft); font-size: .95rem; }
  .cred-card .meta { display: inline-block; margin-top: 16px; font-size: .8rem; font-weight: 600; color: var(--accent); letter-spacing: .06em; text-transform: uppercase; }

  /* ---------- Toolbox ---------- */
  .tools-cloud { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 46px; }
  .tool {
    background: #fff; border: 1px solid rgba(51,21,34,.09);
    padding: 13px 24px; border-radius: 100px; font-weight: 500; font-size: .95rem;
    display: inline-flex; align-items: center; gap: 9px;
    transition: transform .3s, border-color .3s, box-shadow .3s;
  }
  .tool:hover { transform: translateY(-4px) rotate(-1deg); border-color: var(--accent); box-shadow: 0 12px 26px rgba(214,51,108,.16); }

  /* ---------- Contact ---------- */
  .contact { background: var(--ink); color: var(--paper); border-radius: 40px; margin: 0 auto 40px; width: min(1280px, 96vw); position: relative; overflow: hidden; }
  .contact-inner { text-align: center; padding: 30px 20px; position: relative; z-index: 1; }
  .contact .section-tag { justify-content: center; color: var(--gold); }
  .contact .section-tag::before { background: var(--gold); }
  .contact h2 { font-size: clamp(2.6rem, 6.5vw, 5.4rem); }
  .contact h2 em { color: var(--gold); }
  .contact p { color: #c9a0b4; max-width: 480px; margin: 24px auto 42px; }
  .contact-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
  .contact-meta { display: flex; gap: 34px; justify-content: center; flex-wrap: wrap; margin-top: 56px; color: #c9a0b4; font-size: .92rem; }
  .contact-meta a { color: var(--paper); text-decoration: none; border-bottom: 1px solid rgba(250,246,240,.3); transition: border-color .3s, color .3s; }
  .contact-meta a:hover { color: var(--gold); border-color: var(--gold); }
  .contact-glow {
    position: absolute; width: 600px; height: 600px; border-radius: 50%;
    background: radial-gradient(circle, rgba(214,51,108,.28), transparent 65%);
    top: -220px; left: 50%; transform: translateX(-50%);
  }

  footer { text-align: center; padding: 34px 0 44px; color: var(--ink-soft); font-size: .88rem; }
  footer b { font-family: var(--font-display); }

  /* ---------- Preloader ---------- */
  #preloader {
    position: fixed; inset: 0; z-index: 10000; background: var(--paper);
    display: grid; place-items: center;
    transition: opacity .6s ease, visibility .6s ease;
  }
  #preloader.done { opacity: 0; visibility: hidden; }
  html:not(.js) #preloader { display: none; }
  .loader-name {
    font-family: var(--font-display); font-style: italic; font-weight: 560;
    font-size: clamp(2.2rem, 5vw, 3.4rem); color: var(--ink);
    animation: loaderPulse 1.1s ease-in-out infinite alternate;
  }
  .loader-name span { color: var(--accent); }
  @keyframes loaderPulse { from { opacity: .3; transform: scale(.97); } to { opacity: 1; transform: scale(1); } }

  /* ---------- Scroll progress ---------- */
  #scrollProgress {
    position: fixed; top: 0; left: 0; height: 4px; width: 0%; z-index: 1001;
    background: linear-gradient(90deg, var(--accent), #f06595, var(--lilac));
    border-radius: 0 4px 4px 0;
  }

  /* ---------- Film grain ---------- */
  .grain {
    position: fixed; inset: 0; z-index: 9997; pointer-events: none; opacity: .045;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  }

  /* ---------- Floating sparkle decorations ---------- */
  .deco {
    position: absolute; pointer-events: none; z-index: 1; color: var(--accent);
    animation: twinkle 3.6s ease-in-out infinite;
  }
  .deco svg { width: 100%; height: 100%; display: block; fill: currentColor; }
  @keyframes twinkle {
    0%, 100% { transform: scale(.55) rotate(0deg); opacity: .3; }
    50% { transform: scale(1) rotate(20deg); opacity: 1; }
  }

  /* ---------- Spinning badge ---------- */
  .spin-badge {
    position: absolute; bottom: 90px; right: 5vw; width: 150px; height: 150px;
    z-index: 2; color: var(--accent);
  }
  .spin-badge svg { width: 100%; height: 100%; animation: spin 20s linear infinite; }
  .spin-badge text { fill: currentColor; text-transform: uppercase; }
  .spin-center {
    position: absolute; inset: 0; display: grid; place-items: center; font-size: 1.7rem;
  }
  @keyframes spin { to { transform: rotate(360deg); } }

  /* ---------- Wavy underline on hero italics ---------- */
  .hero h1 em { position: relative; }
  .hero h1 em::after {
    content: ""; position: absolute; left: 3%; right: 6%; bottom: -.06em; height: .13em;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 8' preserveAspectRatio='none'%3E%3Cpath d='M0 6 Q 5 1 10 5 T 20 5 T 30 5 T 40 5' fill='none' stroke='%23f9a8c9' stroke-width='2.4' stroke-linecap='round'/%3E%3C/svg%3E") repeat-x;
    background-size: auto 100%;
  }

  /* ---------- Button shine sweep ---------- */
  .btn { position: relative; overflow: hidden; }
  .btn::before {
    content: ""; position: absolute; top: 0; left: -85%; width: 55%; height: 100%;
    background: linear-gradient(105deg, transparent, rgba(255,255,255,.5), transparent);
    transform: skewX(-20deg); transition: left .55s ease; pointer-events: none;
  }
  .btn:hover::before { left: 135%; }

  /* ---------- Service icons ---------- */
  .service-title { display: flex; align-items: center; gap: 18px; }
  .service-icon {
    width: 48px; height: 48px; border-radius: 14px; flex-shrink: 0;
    background: rgba(249,168,201,.1); border: 1px solid rgba(249,168,201,.3);
    display: grid; place-items: center; color: var(--gold);
    transition: background .3s, transform .4s cubic-bezier(.16,1,.3,1);
  }
  .service-item:hover .service-icon { background: rgba(249,168,201,.22); transform: rotate(-8deg) scale(1.08); }
  .service-icon svg { width: 23px; height: 23px; stroke: currentColor; fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

  /* ---------- Process ---------- */
  .process-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
    margin-top: 60px; position: relative;
  }
  .process-grid::before {
    content: ""; position: absolute; top: 56px; left: 8%; right: 8%;
    border-top: 2px dashed rgba(214,51,108,.28);
  }
  .process-step {
    background: #fff; border-radius: var(--radius); padding: 32px 26px;
    border: 1px solid rgba(51,21,34,.08); position: relative;
    transition: transform .4s cubic-bezier(.16,1,.3,1), box-shadow .4s;
  }
  .process-step:hover { transform: translateY(-7px) rotate(-.6deg); box-shadow: 0 20px 44px rgba(214,51,108,.13); }
  .step-num {
    width: 48px; height: 48px; border-radius: 50%; margin-bottom: 20px;
    background: linear-gradient(135deg, var(--accent), #f06595);
    color: #fff; display: grid; place-items: center;
    font-family: var(--font-display); font-style: italic; font-size: 1.15rem;
    box-shadow: 0 8px 20px rgba(214,51,108,.3);
  }
  .process-step h3 { font-family: var(--font-display); font-weight: 560; font-size: 1.25rem; margin-bottom: 9px; }
  .process-step p { color: var(--ink-soft); font-size: .93rem; }

  /* ---------- Pink marquee ---------- */
  .marquee.pink {
    background: linear-gradient(90deg, #d6336c, #ad2a5f);
    transform: rotate(1deg) scale(1.02); color: #fff;
  }
  .marquee.pink span::after { content: "♥"; color: #ffd3e3; }

  /* ---------- Back to top ---------- */
  #toTop {
    position: fixed; bottom: 26px; right: 26px; z-index: 900;
    width: 54px; height: 54px; border-radius: 50%;
    background: var(--ink); color: var(--paper); border: none; cursor: pointer;
    display: grid; place-items: center; font-size: 1.15rem;
    opacity: 0; visibility: hidden; transform: translateY(14px);
    transition: opacity .35s, visibility .35s, transform .35s, background .3s;
    box-shadow: 0 14px 32px rgba(51,21,34,.28);
  }
  #toTop.show { opacity: 1; visibility: visible; transform: none; }
  #toTop:hover { background: var(--accent); }

  /* ---------- WhatsApp float ---------- */
  #waFloat {
    position: fixed; bottom: 26px; left: 26px; z-index: 900;
    display: inline-flex; align-items: center; gap: 10px;
    background: #fff; border: 1px solid rgba(51,21,34,.1); border-radius: 100px;
    padding: 10px 20px 10px 12px; text-decoration: none;
    color: var(--ink); font-weight: 600; font-size: .9rem;
    box-shadow: 0 14px 34px rgba(51,21,34,.16);
    transition: transform .3s, box-shadow .3s;
  }
  #waFloat:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(214,51,108,.24); }
  .wa-ic {
    width: 36px; height: 36px; border-radius: 50%; background: #25d366;
    display: grid; place-items: center; flex-shrink: 0;
  }
  .wa-ic svg { width: 20px; height: 20px; fill: #fff; }

  /* ---------- Insta tile hover heart ---------- */
  .insta-tile::after {
    content: "♥"; position: absolute; inset: 0; border-radius: inherit;
    display: grid; place-items: center; font-size: 1.7rem; color: #fff;
    background: rgba(214,51,108,.45); opacity: 0; transition: opacity .3s;
  }
  .insta-tile:hover::after { opacity: 1; }

  /* ---------- Work card tilt (transform driven by JS) ---------- */
  .work-card { will-change: transform; }

  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation-duration: .01ms !important; animation-iteration-count: 1 !important;
      transition-duration: .01ms !important; scroll-behavior: auto !important;
    }
  }

  /* ---------- Responsive ---------- */
  @media (max-width: 1024px) {
    .hero-badges { display: none; }
    .spin-badge { display: none; }
    .work-grid { grid-template-columns: repeat(2, 1fr); }
    .insta-grid { grid-template-columns: repeat(3, 1fr); }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .process-grid::before { display: none; }
  }
  @media (max-width: 768px) {
    section { padding: 76px 0; }
    .nav-links {
      position: fixed; inset: 0; background: var(--paper);
      flex-direction: column; justify-content: center; gap: 30px;
      font-size: 1.3rem; transform: translateY(-100%); transition: transform .45s cubic-bezier(.16,1,.3,1);
      z-index: 90;
    }
    .nav-links.open { transform: translateY(0); }
    .nav-links a { font-size: 1.25rem; }
    .menu-toggle { display: block; z-index: 95; }
    .about-grid { grid-template-columns: 1fr; gap: 54px; }
    .facts { grid-template-columns: repeat(3, 1fr); gap: 10px; }
    .fact { padding: 14px 12px; }
    .fact b { font-size: 1.25rem; }
    .service-item { grid-template-columns: 1fr; gap: 10px; padding: 30px 6px; }
    .service-arrow { display: none; }
    .work-grid { grid-template-columns: 1fr; }
    .creds-grid { grid-template-columns: 1fr; }
    .insta-grid { grid-template-columns: repeat(2, 1fr); }
    .sticker-1 { right: -6px; } .sticker-2 { left: -6px; }
    .scroll-hint { display: none; }
    .process-grid { grid-template-columns: 1fr; }
    .service-title { align-items: flex-start; }
    #waFloat .wa-txt { display: none; }
    #waFloat { padding: 10px 12px; }
    #toTop { bottom: 20px; right: 20px; }
    .deco { display: none; }
  }

  /* ---------- Nav CTA visibility fix ---------- */
  .nav-links a.btn { color: var(--paper); }
  .nav-links a.btn::after { content: none; }
  .nav-links a.btn:hover { color: #fff; }

  /* ---------- Inline text links ---------- */
  .inline-link { color: var(--accent); text-decoration: none; border-bottom: 2px solid var(--gold); transition: color .25s, border-color .25s; }
  .inline-link:hover { color: var(--ink); border-color: var(--accent); }
  .contact .inline-link, footer .inline-link { border-color: rgba(249,168,201,.5); }

  /* ---------- Clickable service rows & work cards ---------- */
  a.service-item, a.work-card { text-decoration: none; color: inherit; }
  a.service-item h3 { color: var(--paper); }

  /* ---------- Founder feature card ---------- */
  .cred-feature-row { display: flex; align-items: center; gap: 28px; }
  .gauram-logo { height: 58px; width: auto; border-radius: 12px; flex-shrink: 0; }
  .cred-feature h3 { font-family: var(--font-display); font-weight: 560; font-size: 1.3rem; margin-bottom: 8px; }
  .cred-feature p { color: var(--ink-soft); font-size: .95rem; }
  .cred-feature a.meta { text-decoration: none; }
  @media (max-width: 768px) {
    .cred-feature-row { flex-direction: column; align-items: flex-start; gap: 18px; }
  }

  /* ---------- Contact form ---------- */
  .contact-form { max-width: 620px; margin: 44px auto 0; display: grid; gap: 16px; text-align: left; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .form-field { display: grid; gap: 8px; }
  .form-field span { font-size: .82rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--gold); }
  .form-field input, .form-field textarea {
    background: rgba(255,245,249,.06); border: 1px solid rgba(255,245,249,.22);
    border-radius: 14px; padding: 15px 18px; color: var(--paper);
    font-family: var(--font-body); font-size: .96rem; transition: border-color .25s, background .25s;
  }
  .form-field input::placeholder, .form-field textarea::placeholder { color: #b98da2; }
  .form-field input:focus, .form-field textarea:focus {
    outline: none; border-color: var(--gold); background: rgba(255,245,249,.1);
  }
  .form-field textarea { min-height: 130px; resize: vertical; }
  .form-submit { justify-self: center; margin-top: 6px; }
  .form-note { text-align: center; font-size: .85rem; color: var(--gold); min-height: 1.2em; }
  @media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }

  /* ---------- Subpages (service & work detail) ---------- */
  .subpage-hero { padding: 180px 0 70px; position: relative; overflow: hidden; }
  .subpage-hero h1 {
    font-family: var(--font-display); font-weight: 560; letter-spacing: -.02em;
    font-size: clamp(2.6rem, 6vw, 4.6rem); line-height: 1.05; margin: 18px 0 20px;
  }
  .subpage-hero h1 em { font-style: italic; font-weight: 400; color: var(--accent); }
  .subpage-hero .lede { max-width: 640px; color: var(--ink-soft); font-size: 1.1rem; }
  .crumb {
    display: inline-flex; align-items: center; gap: 8px; text-decoration: none;
    color: var(--ink-soft); font-size: .9rem; font-weight: 500; margin-bottom: 26px;
    transition: color .25s;
  }
  .crumb:hover { color: var(--accent); }
  .detail-cover {
    border-radius: 26px; aspect-ratio: 16/7; position: relative; overflow: hidden;
    border: 1px solid rgba(51,21,34,.08); box-shadow: 0 30px 70px rgba(51,21,34,.14);
    display: grid; place-items: center;
  }
  .detail-cover .cover-art { position: static; font-size: clamp(3rem, 8vw, 6rem); }
  .detail-cover img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
  .detail-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 56px; }
  .detail-point {
    background: #fff; border-radius: 18px; padding: 26px 22px;
    border: 1px solid rgba(51,21,34,.08);
    transition: transform .35s cubic-bezier(.16,1,.3,1), box-shadow .35s;
  }
  .detail-point:hover { transform: translateY(-5px); box-shadow: 0 16px 36px rgba(214,51,108,.12); }
  .detail-point b { display: block; font-family: var(--font-display); font-size: 1.08rem; margin-bottom: 6px; }
  .detail-point p { color: var(--ink-soft); font-size: .9rem; }
  .detail-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
  .subpage-cta { text-align: center; padding-bottom: 40px; }
  .gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 46px; }
  .gallery-slot {
    aspect-ratio: 4/5; border-radius: 18px; display: grid; place-items: center;
    border: 2px dashed rgba(214,51,108,.3); color: var(--ink-soft);
    font-size: .85rem; text-align: center; padding: 14px; background: rgba(255,255,255,.5);
    overflow: hidden; position: relative;
  }
  .gallery-slot img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
  @media (max-width: 900px) {
    .detail-grid, .gallery-grid { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 640px) {
    .detail-grid, .gallery-grid { grid-template-columns: 1fr; }
    .subpage-hero { padding-top: 140px; }
  }
