*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

  :root {
    --ink: #0d0d0d;
    --ink-2: #1a1a1a;
    --ink-3: #2e2e2e;
    --muted: #6b6b6b;
    --muted-2: #9a9a9a;
    --cream: #f5f0e8;
    --cream-2: #ede7d9;
    --gold: #c9a84c;
    --gold-2: #e8c96a;
    --white: #fafaf7;
    --serif: 'Playfair Display', Georgia, serif;
    --sans: 'DM Sans', system-ui, sans-serif;
  }

  html { scroll-behavior: smooth; }

  body {
    background: var(--ink);
    color: var(--cream);
    font-family: var(--sans);
    font-weight: 300;
    overflow-x: hidden;
    cursor: none;
  }

  /* Custom cursor */
  .cursor {
    position: fixed;
    width: 10px; height: 10px;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background 0.2s;
  }
  .cursor-ring {
    position: fixed;
    width: 36px; height: 36px;
    border: 1px solid rgba(201,168,76,0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.12s ease, width 0.2s, height 0.2s;
  }
  body:has(a:hover) .cursor, body:has(button:hover) .cursor { width: 16px; height: 16px; }
  body:has(a:hover) .cursor-ring, body:has(button:hover) .cursor-ring { width: 52px; height: 52px; }

  /* Scrollbar */
  ::-webkit-scrollbar { width: 3px; }
  ::-webkit-scrollbar-track { background: var(--ink-2); }
  ::-webkit-scrollbar-thumb { background: var(--gold); }

  /* Noise overlay */
  body::before {
    content: '';
    position: fixed; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' 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.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9000;
    opacity: 0.6;
  }

  /* Nav */
  nav {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex; justify-content: space-between; align-items: center;
    padding: 28px 60px;
    mix-blend-mode: normal;
  }
  .nav-logo {
    font-family: var(--serif);
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: var(--cream);
    text-decoration: none;
  }
  .nav-logo span { color: var(--gold); }
  .nav-links {
    display: flex; gap: 44px;
    list-style: none;
  }
  .nav-links a {
    color: var(--muted-2);
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition: color 0.3s;
    position: relative;
  }
  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 1px;
    background: var(--gold);
    transition: width 0.3s;
  }
  .nav-links a:hover { color: var(--cream); }
  .nav-links a:hover::after { width: 100%; }

  /* Hero */
  .hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 0 60px;
    position: relative;
    overflow: hidden;
  }
  .hero-bg-text {
    position: absolute;
    bottom: -60px; right: -40px;
    font-family: var(--serif);
    font-size: clamp(120px, 20vw, 240px);
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px rgba(201,168,76,0.08);
    letter-spacing: -0.04em;
    line-height: 1;
    user-select: none;
    pointer-events: none;
  }
  .hero-content { padding-top: 80px; z-index: 1; }
  .hero-eyebrow {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s 0.2s forwards;
  }
  .hero-title {
    font-family: var(--serif);
    font-size: clamp(52px, 7vw, 96px);
    font-weight: 900;
    line-height: 1.0;
    letter-spacing: -0.02em;
    color: var(--cream);
    margin-bottom: 32px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.9s 0.35s forwards;
  }
  .hero-title em {
    font-style: italic;
    color: var(--gold);
  }
  .hero-desc {
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--muted-2);
    max-width: 440px;
    margin-bottom: 52px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.9s 0.5s forwards;
  }
  .hero-actions {
    display: flex;
    gap: 24px;
    align-items: center;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.9s 0.65s forwards;
  }
  .btn-primary {
    background: var(--gold);
    color: var(--ink);
    padding: 16px 38px;
    font-family: var(--sans);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: none;
    cursor: none;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s;
    display: inline-block;
  }
  .btn-primary:hover { background: var(--gold-2); transform: translateY(-2px); }
  .btn-ghost {
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted-2);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s;
  }
  .btn-ghost svg { transition: transform 0.3s; }
  .btn-ghost:hover { color: var(--cream); }
  .btn-ghost:hover svg { transform: translateX(4px); }

  /* Hero image side */
  .hero-visual {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
  }
  .hero-photo-frame {
    position: relative;
    width: 380px;
    height: 500px;
    opacity: 0;
    animation: fadeIn 1.2s 0.4s forwards;
  }
  .hero-photo-frame::before {
    content: '';
    position: absolute;
    inset: -16px;
    border: 1px solid rgba(201,168,76,0.2);
    z-index: -1;
    animation: expandBorder 1s 0.8s both;
  }
  @keyframes expandBorder {
    from { inset: 0; opacity: 0; }
    to { inset: -16px; opacity: 1; }
  }
  .hero-photo {
    width: 100%; height: 100%;
    background: linear-gradient(145deg, #1e1e1e 0%, #2a2318 50%, #1a1610 100%);
    position: relative;
    overflow: hidden;
  }
  .hero-photo::after {
    content: '';
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse at 30% 20%, rgba(201,168,76,0.12) 0%, transparent 60%),
      radial-gradient(ellipse at 80% 80%, rgba(201,100,50,0.08) 0%, transparent 50%);
  }
  .avatar-silhouette {
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 260px; height: 420px;
  }
  .photo-tag {
    position: absolute;
    bottom: -14px; right: -24px;
    background: var(--gold);
    color: var(--ink);
    padding: 10px 20px;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }
  .stats-row {
    position: absolute;
    bottom: -60px; left: 0; right: 0;
    display: flex;
    gap: 0;
    border-top: 1px solid rgba(255,255,255,0.06);
  }
  .stat {
    flex: 1;
    padding: 28px 0 20px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.06);
  }
  .stat:last-child { border-right: none; }
  .stat-num {
    font-family: var(--serif);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--cream);
    line-height: 1;
    margin-bottom: 6px;
  }
  .stat-num span { color: var(--gold); }
  .stat-label {
    font-size: 0.68rem;
    font-weight: 400;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
  }

  /* Marquee */
  .marquee-section {
    padding: 48px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    overflow: hidden;
    margin-top: 80px;
  }
  .marquee-track {
    display: flex;
    gap: 0;
    animation: marquee 22s linear infinite;
    width: max-content;
  }
  .marquee-item {
    white-space: nowrap;
    padding: 0 48px;
    font-family: var(--serif);
    font-size: 1.05rem;
    font-style: italic;
    font-weight: 400;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 48px;
  }
  .marquee-dot {
    width: 5px; height: 5px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
  }
  @keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  /* Section base */
  section { padding: 120px 60px; }
  .section-label {
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .section-label::before {
    content: '';
    width: 32px; height: 1px;
    background: var(--gold);
    flex-shrink: 0;
  }
  .section-title {
    font-family: var(--serif);
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--cream);
    margin-bottom: 20px;
  }

  /* Work section */
  .work-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 72px;
  }
  .work-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
  }
  .work-card {
    position: relative;
    overflow: hidden;
    cursor: none;
    group: true;
  }
  .work-card:first-child {
    grid-column: 1 / -1;
    height: 540px;
  }
  .work-card:not(:first-child) { height: 360px; }
  .card-bg {
    width: 100%; height: 100%;
    transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
  }
  .work-card:hover .card-bg { transform: scale(1.04); }
  .card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(13,13,13,0.92) 0%, rgba(13,13,13,0.2) 50%, transparent 100%);
    transition: background 0.4s;
  }
  .work-card:hover .card-overlay {
    background: linear-gradient(to top, rgba(13,13,13,0.96) 0%, rgba(13,13,13,0.5) 60%, rgba(13,13,13,0.1) 100%);
  }
  .card-content {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 40px;
    transform: translateY(8px);
    transition: transform 0.4s;
  }
  .work-card:hover .card-content { transform: translateY(0); }
  .card-tag {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
  }
  .card-title {
    font-family: var(--serif);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--cream);
    line-height: 1.15;
    margin-bottom: 12px;
  }
  .work-card:first-child .card-title { font-size: 2.8rem; }
  .card-desc {
    font-size: 0.88rem;
    color: var(--muted-2);
    line-height: 1.7;
    max-width: 480px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s 0.05s, transform 0.4s 0.05s;
  }
  .work-card:hover .card-desc { opacity: 1; transform: translateY(0); }
  .card-arrow {
    position: absolute;
    top: 36px; right: 40px;
    width: 44px; height: 44px;
    border: 1px solid rgba(201,168,76,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    opacity: 0;
    transform: translateX(-10px);
    transition: opacity 0.3s, transform 0.3s, background 0.3s;
  }
  .work-card:hover .card-arrow {
    opacity: 1;
    transform: translateX(0);
    background: var(--gold);
    color: var(--ink);
  }

  /* Gradient backgrounds for cards */
  .bg-1 { background: linear-gradient(135deg, #1a1410 0%, #2d1f0a 40%, #3d2a10 100%); }
  .bg-2 { background: linear-gradient(135deg, #0f1520 0%, #1a2535 50%, #0d1a2a 100%); }
  .bg-3 { background: linear-gradient(135deg, #1a0f15 0%, #2d1525 50%, #1a0d1a 100%); }

  /* Card decorative shapes */
  .card-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
  }
  .s1 { width: 320px; height: 320px; background: rgba(201,168,76,0.15); top: -80px; right: -80px; }
  .s2 { width: 200px; height: 200px; background: rgba(201,100,50,0.1); bottom: 80px; left: -60px; }
  .s3 { width: 240px; height: 240px; background: rgba(80,140,220,0.12); top: -40px; right: -40px; }
  .s4 { width: 200px; height: 200px; background: rgba(180,80,180,0.1); bottom: -40px; left: -40px; }

  /* About */
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 100px;
    align-items: center;
  }
  .about-visual {
    position: relative;
  }
  .about-img-stack {
    position: relative;
    height: 500px;
  }
  .img-main {
    position: absolute;
    top: 0; left: 0;
    width: 82%;
    height: 420px;
    background: linear-gradient(145deg, #1e1e1e, #252015);
    overflow: hidden;
  }
  .img-main::after {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 40% 30%, rgba(201,168,76,0.1) 0%, transparent 60%);
  }
  .img-accent {
    position: absolute;
    bottom: 0; right: 0;
    width: 54%;
    height: 260px;
    background: var(--gold);
    display: flex;
    align-items: flex-end;
    padding: 24px;
  }
  .img-accent-text {
    font-family: var(--serif);
    font-size: 1.4rem;
    font-style: italic;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.3;
  }
  .about-exp-badge {
    position: absolute;
    top: 40px; right: -20px;
    width: 110px; height: 110px;
    background: var(--ink-2);
    border: 1px solid rgba(201,168,76,0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .badge-num {
    font-family: var(--serif);
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
  }
  .badge-label {
    font-size: 0.62rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted-2);
    margin-top: 4px;
    line-height: 1.3;
  }
  .about-text p {
    font-size: 1.0rem;
    font-weight: 300;
    line-height: 1.9;
    color: var(--muted-2);
    margin-bottom: 20px;
  }
  .about-text p:first-of-type {
    font-size: 1.2rem;
    color: var(--cream-2);
    font-weight: 300;
    font-family: var(--serif);
    font-style: italic;
    margin-bottom: 32px;
  }
  .skills-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 36px;
  }
  .skill-pill {
    padding: 8px 18px;
    border: 1px solid rgba(201,168,76,0.25);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    color: var(--muted-2);
    transition: border-color 0.3s, color 0.3s;
  }
  .skill-pill:hover {
    border-color: var(--gold);
    color: var(--gold);
  }

  /* Services */
  .services-bg { background: var(--ink-2); }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255,255,255,0.04);
    margin-top: 72px;
  }
  .service-card {
    background: var(--ink-2);
    padding: 52px 40px;
    transition: background 0.3s;
    position: relative;
    overflow: hidden;
  }
  .service-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
  }
  .service-card:hover { background: #202020; }
  .service-card:hover::before { transform: scaleX(1); }
  .service-num {
    font-family: var(--serif);
    font-size: 4rem;
    font-weight: 900;
    color: rgba(201,168,76,0.1);
    line-height: 1;
    margin-bottom: 32px;
    transition: color 0.3s;
  }
  .service-card:hover .service-num { color: rgba(201,168,76,0.2); }
  .service-icon {
    width: 48px; height: 48px;
    margin-bottom: 24px;
  }
  .service-name {
    font-family: var(--serif);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 16px;
    line-height: 1.2;
  }
  .service-desc {
    font-size: 0.88rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--muted);
  }

  /* Testimonials */
  .testimonials-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    margin-top: 72px;
  }
  .testimonial-card {
    background: var(--ink-2);
    padding: 52px 48px;
    position: relative;
  }
  .testimonial-card:nth-child(2) { background: var(--gold); }
  .testimonial-card:nth-child(2) .t-quote,
  .testimonial-card:nth-child(2) .t-name,
  .testimonial-card:nth-child(2) .t-role { color: var(--ink); }
  .testimonial-card:nth-child(2) .t-stars { color: var(--ink-3); }
  .t-quote-mark {
    font-family: var(--serif);
    font-size: 6rem;
    color: rgba(201,168,76,0.15);
    line-height: 0.6;
    margin-bottom: 28px;
  }
  .testimonial-card:nth-child(2) .t-quote-mark { color: rgba(13,13,13,0.15); }
  .t-quote {
    font-family: var(--serif);
    font-size: 1.15rem;
    font-style: italic;
    font-weight: 400;
    color: var(--cream);
    line-height: 1.7;
    margin-bottom: 36px;
  }
  .t-author { display: flex; align-items: center; gap: 16px; }
  .t-avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--ink-3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--serif);
    font-size: 1rem;
    font-weight: 700;
    color: var(--gold);
    flex-shrink: 0;
  }
  .testimonial-card:nth-child(2) .t-avatar { background: rgba(13,13,13,0.2); color: var(--ink); }
  .t-name {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--cream);
    margin-bottom: 2px;
  }
  .t-role {
    font-size: 0.75rem;
    color: var(--muted-2);
    font-weight: 300;
  }
  .t-stars {
    color: var(--gold);
    font-size: 0.75rem;
    letter-spacing: 2px;
    margin-bottom: 6px;
  }

  /* CTA */
  .cta-section {
    background: var(--cream);
    color: var(--ink);
    padding: 120px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .cta-section::before {
    content: 'HELLO';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--serif);
    font-size: clamp(100px, 18vw, 220px);
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px rgba(13,13,13,0.06);
    user-select: none;
    pointer-events: none;
    letter-spacing: -0.04em;
  }
  .cta-label {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
  }
  .cta-label::before { content: ''; width: 32px; height: 1px; background: var(--gold); }
  .cta-label::after { content: ''; width: 32px; height: 1px; background: var(--gold); }
  .cta-title {
    font-family: var(--serif);
    font-size: clamp(44px, 7vw, 88px);
    font-weight: 900;
    line-height: 1.0;
    color: var(--ink);
    letter-spacing: -0.03em;
    margin-bottom: 28px;
    position: relative;
  }
  .cta-title em { font-style: italic; color: var(--gold); }
  .cta-desc {
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--muted);
    max-width: 500px;
    margin: 0 auto 52px;
    line-height: 1.8;
    position: relative;
  }
  .cta-email {
    font-family: var(--serif);
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 700;
    color: var(--ink);
    text-decoration: none;
    position: relative;
    display: inline-block;
    padding-bottom: 6px;
  }
  .cta-email::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 2px;
    background: var(--gold);
    transform: scaleX(0.3);
    transform-origin: left;
    transition: transform 0.4s;
  }
  .cta-email:hover::after { transform: scaleX(1); }

  /* Footer */
  footer {
    background: var(--ink);
    padding: 60px;
    border-top: 1px solid rgba(255,255,255,0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .footer-logo {
    font-family: var(--serif);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--cream);
  }
  .footer-logo span { color: var(--gold); }
  .footer-copy {
    font-size: 0.75rem;
    color: var(--muted);
    font-weight: 300;
  }
  .footer-social {
    display: flex;
    gap: 28px;
  }
  .footer-social a {
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-social a:hover { color: var(--gold); }

  /* Scroll reveal */
  .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* Animations */
  @keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeIn {
    to { opacity: 1; }
  }

  /* Responsive */
  @media (max-width: 900px) {
    nav { padding: 24px 28px; }
    .nav-links { gap: 24px; }
    .hero {
      grid-template-columns: 1fr;
      padding: 120px 28px 60px;
      text-align: center;
    }
    .hero-visual { display: none; }
    .hero-desc { margin: 0 auto 40px; }
    .hero-actions { justify-content: center; }
    section { padding: 80px 28px; }
    .work-grid { grid-template-columns: 1fr; }
    .work-card:first-child { grid-column: auto; height: 400px; }
    .about-grid { grid-template-columns: 1fr; gap: 60px; }
    .about-img-stack { height: 360px; }
    .about-exp-badge { right: 20px; }
    .services-grid { grid-template-columns: 1fr; }
    .testimonials-layout { grid-template-columns: 1fr; }
    .cta-section { padding: 80px 28px; }
    footer { flex-direction: column; gap: 24px; text-align: center; }
    .stats-row { display: none; }
    .marquee-section { margin-top: 40px; }
    body { cursor: auto; }
    .cursor, .cursor-ring { display: none; }
  }