  :root {
    --black: #050505;
    --red: #E8619A;
    --red-dim: #A03060;
    --gold: #E8619A;
    --gold-dim: #A03060;
    --white: #F0EBE0;
    --muted: #6B6560;
    --surface: #0F0D0C;
    --border: rgba(232,97,154,0.2);
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    background: var(--black);
    color: var(--white);
    font-family: 'Cormorant Garamond', Georgia, serif;
    overflow-x: hidden;
    cursor: none;
  }

  /* CUSTOM CURSOR */
  .cursor {
    position: fixed; width: 10px; height: 10px;
    background: var(--red); border-radius: 50%;
    pointer-events: none; z-index: 9999;
    transform: translate(-50%,-50%);
    transition: transform 0.1s, width 0.2s, height 0.2s, background 0.2s;
  }
  .cursor-ring {
    position: fixed; width: 36px; height: 36px;
    border: 1px solid rgba(232,97,154,0.6);
    border-radius: 50%; pointer-events: none; z-index: 9998;
    transform: translate(-50%,-50%);
    transition: transform 0.15s ease-out, width 0.3s, height 0.3s;
  }
  body:hover .cursor { opacity: 1; }

  /* GRAIN 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='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none; z-index: 9000; opacity: 0.5;
  }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.5rem 3rem;
    background: linear-gradient(180deg, rgba(5,5,5,0.95) 0%, transparent 100%);
    backdrop-filter: blur(2px);
  }
  .nav-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem; letter-spacing: 0.1em;
    color: var(--white); text-decoration: none;
    display: flex; align-items: center; gap: 0.5rem;
  }
  .nav-logo span { color: var(--red); }
  .nav-links { display: flex; gap: 2.5rem; align-items: center; }
  .nav-links a {
    font-family: 'Space Mono', monospace;
    font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--muted); text-decoration: none;
    transition: color 0.3s;
  }
  .nav-links a:hover { color: var(--gold); }
  .nav-cta {
    border: 1px solid var(--gold) !important;
    color: var(--gold) !important;
    padding: 0.5rem 1.2rem;
    transition: background 0.3s, color 0.3s !important;
  }
  .nav-cta:hover { background: var(--gold) !important; color: var(--black) !important; }

  /* Language Toggle */
  .lang-btn {
    font-family: 'Space Mono', monospace;
    font-size: 0.6rem; letter-spacing: 0.1em;
    color: var(--muted); background: none;
    border: 1px solid var(--border);
    padding: 0.25rem 0.5rem;
    cursor: pointer; transition: all 0.3s;
    border-radius: 4px;
  }
  .lang-btn:hover { color: var(--gold); border-color: var(--gold); }
  .lang-btn.active { color: var(--gold); border-color: var(--gold); }

  /* HERO */
  #hero {
    min-height: 100vh; position: relative;
    display: flex; align-items: flex-end;
    overflow: hidden;
  }
  .hero-bg {
    position: absolute; inset: 0;
    background: 
      radial-gradient(ellipse 60% 80% at 70% 40%, rgba(232,97,154,0.15) 0%, transparent 60%),
      radial-gradient(ellipse 40% 60% at 30% 70%, rgba(232,97,154,0.05) 0%, transparent 50%),
      linear-gradient(180deg, #050505 0%, #0a0605 50%, #050505 100%);
  }
  .hero-lines {
    position: absolute; inset: 0; overflow: hidden;
  }
  .hero-lines::before {
    content: '';
    position: absolute; top: 0; left: 50%; bottom: 0; width: 1px;
    background: linear-gradient(180deg, transparent, rgba(232,97,154,0.15), transparent);
    transform: skewX(-15deg);
  }
  .hero-content {
    position: relative; z-index: 2;
    padding: 0 3rem 5rem;
    max-width: 900px;
  }
  .hero-tag {
    font-family: 'Space Mono', monospace;
    font-size: 0.65rem; letter-spacing: 0.35em; color: var(--gold);
    margin-bottom: 1.5rem; display: flex; align-items: center; gap: 1rem;
    animation: fadeUp 1s ease 0.2s both;
  }
  .hero-tag::before { content: ''; width: 40px; height: 1px; background: var(--gold); }
  .hero-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(6rem, 15vw, 14rem);
    line-height: 0.88; letter-spacing: -0.02em;
    color: var(--white);
    animation: fadeUp 1s ease 0.4s both;
  }
  .hero-name em {
    color: transparent;
    -webkit-text-stroke: 1px rgba(232,97,154,0.6);
    font-style: normal; display: block;
  }
  .hero-sub {
    font-size: 1.3rem; font-style: italic; color: var(--muted);
    margin-top: 1.5rem; letter-spacing: 0.05em;
    animation: fadeUp 1s ease 0.6s both;
  }
  .hero-actions {
    display: flex; gap: 1.5rem; margin-top: 3rem;
    animation: fadeUp 1s ease 0.8s both;
  }
  .btn-primary {
    background: var(--red); color: var(--white);
    padding: 1rem 2.5rem; text-decoration: none;
    font-family: 'Space Mono', monospace;
    font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
    transition: background 0.3s, transform 0.2s;
    display: inline-block;
  }
  .btn-primary:hover { background: var(--red-dim); transform: translateY(-2px); }
  .btn-ghost {
    border: 1px solid rgba(240,235,224,0.3); color: var(--white);
    padding: 1rem 2.5rem; text-decoration: none;
    font-family: 'Space Mono', monospace;
    font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
    transition: border-color 0.3s, color 0.3s;
    display: inline-block;
  }
  .btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

  .hero-scroll {
    position: absolute; bottom: 2rem; right: 3rem; z-index: 2;
    font-family: 'Space Mono', monospace; font-size: 0.6rem;
    letter-spacing: 0.2em; color: var(--muted);
    writing-mode: vertical-rl; display: flex; align-items: center; gap: 1rem;
    animation: fadeIn 1.5s ease 1.2s both;
  }
  .hero-scroll::after { content: ''; width: 1px; height: 60px; background: var(--muted); }

  /* SECTION STYLES */
  section { padding: 7rem 3rem; }
  .section-label {
    font-family: 'Space Mono', monospace;
    font-size: 0.6rem; letter-spacing: 0.35em; color: var(--gold);
    text-transform: uppercase; margin-bottom: 1rem;
    display: flex; align-items: center; gap: 1rem;
  }
  .section-label::before { content: ''; width: 30px; height: 1px; background: var(--gold); }
  .section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 1; color: var(--white); margin-bottom: 2rem;
  }

  /* BIO */
  #bio {
    display: grid; grid-template-columns: 1fr 1fr; gap: 6rem;
    align-items: center; max-width: 1400px; margin: 0 auto;
  }
  #bio .bio-text { font-size: 1.15rem; line-height: 1.9; color: rgba(240,235,224,0.8); }
  #bio .bio-text p + p { margin-top: 1.5rem; }
  .bio-img-frame {
    position: relative; aspect-ratio: 3/4;
    background: var(--surface);
    border: 1px solid var(--border);
  }
  .bio-img-frame::before {
    content: 'SUSSANA'; position: absolute; bottom: -1.5rem; right: -1.5rem;
    font-family: 'Bebas Neue', sans-serif; font-size: 5rem;
    color: transparent; -webkit-text-stroke: 1px rgba(232,97,154,0.15);
    line-height: 1; pointer-events: none; z-index: -1;
  }
  .bio-img-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    flex-direction: column; gap: 1rem;
    background: linear-gradient(135deg, #0f0d0c 0%, #1a1210 50%, #0f0d0c 100%);
  }
  .bio-img-placeholder .dragon { font-size: 5rem; opacity: 0.4; }
  .bio-img-placeholder span {
    font-family: 'Space Mono', monospace; font-size: 0.6rem;
    letter-spacing: 0.2em; color: var(--muted);
  }
  .stats-row {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 2rem; margin-top: 3rem; padding-top: 3rem;
    border-top: 1px solid var(--border);
  }
  .stat-item .num {
    font-family: 'Bebas Neue', sans-serif; font-size: 3rem;
    color: var(--gold); line-height: 1;
  }
  .stat-item .lbl {
    font-family: 'Space Mono', monospace; font-size: 0.6rem;
    letter-spacing: 0.15em; color: var(--muted); margin-top: 0.3rem;
  }

  /* EVENTS */
  #events { background: var(--surface); }
  .events-inner { max-width: 1100px; margin: 0 auto; }
  .event-list { margin-top: 3rem; }
  .event-item {
    display: grid; grid-template-columns: 80px 1fr auto auto;
    align-items: center; gap: 2rem;
    padding: 1.8rem 0; border-bottom: 1px solid var(--border);
    transition: background 0.3s;
  }
  .event-item:first-child { border-top: 1px solid var(--border); }
  .event-item:hover { padding-left: 1rem; }
  .event-date {
    font-family: 'Bebas Neue', sans-serif;
    text-align: center;
  }
  .event-date .month {
    font-family: 'Space Mono', monospace; font-size: 0.55rem;
    letter-spacing: 0.2em; color: var(--gold); display: block;
  }
  .event-date .day { font-size: 2.5rem; line-height: 1; color: var(--white); }
  .event-name { font-size: 1.4rem; font-weight: 300; color: var(--white); }
  .event-venue { font-family: 'Space Mono', monospace; font-size: 0.6rem; letter-spacing: 0.1em; color: var(--muted); margin-top: 0.3rem; }
  .event-tag {
    font-family: 'Space Mono', monospace; font-size: 0.55rem;
    letter-spacing: 0.15em; padding: 0.3rem 0.8rem;
    border: 1px solid var(--red); color: var(--red); white-space: nowrap;
  }
  .event-tag.intl { border-color: var(--gold); color: var(--gold); }
  .event-cta {
    font-family: 'Space Mono', monospace; font-size: 0.6rem;
    letter-spacing: 0.15em; color: var(--muted); text-decoration: none;
    transition: color 0.3s;
  }
  .event-cta:hover { color: var(--gold); }

  /* MUSIC / SOCIAL */
  #music { max-width: 1200px; margin: 0 auto; }
  .platforms-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem; margin-top: 3rem;
  }
  .platform-card {
    border: 1px solid var(--border); padding: 2rem 1.5rem;
    text-decoration: none; display: flex; flex-direction: column; gap: 1rem;
    background: var(--surface); transition: border-color 0.3s, transform 0.3s;
    position: relative; overflow: hidden;
  }
  .platform-card::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, transparent 60%, rgba(232,97,154,0.05));
    opacity: 0; transition: opacity 0.3s;
  }
  .platform-card:hover { border-color: var(--gold); transform: translateY(-4px); }
  .platform-card:hover::after { opacity: 1; }
  .platform-icon { font-size: 2rem; }
  .platform-name {
    font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem;
    color: var(--white); letter-spacing: 0.05em;
  }
  .platform-handle { font-family: 'Space Mono', monospace; font-size: 0.6rem; letter-spacing: 0.1em; color: var(--muted); }
  .platform-arrow { margin-top: auto; color: var(--gold); font-size: 1.2rem; }

  /* GALLERY */
  #gallery { background: var(--surface); }
  .gallery-inner { max-width: 1300px; margin: 0 auto; }
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px; margin-top: 3rem;
  }
  .gallery-cell {
    background: #111;
    border: 1px solid var(--border);
    overflow: hidden; position: relative; cursor: pointer;
    transition: border-color 0.3s;
  }
  .gallery-cell img { width: 100%; height: auto; display: block; }
  .gallery-cell:hover { border-color: var(--red); }
  .gallery-cell .overlay {
    position: absolute; inset: 0; background: rgba(232,97,154,0.55);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity 0.3s;
    font-family: 'Bebas Neue', sans-serif; font-size: 1.2rem; letter-spacing: 0.1em;
  }
  .gallery-cell:hover .overlay { opacity: 1; }

  /* LIGHTBOX */
  .lightbox {
    display: none; position: fixed; inset: 0; z-index: 10000;
    background: rgba(5,5,5,0.96); align-items: center; justify-content: center;
    cursor: zoom-out;
  }
  .lightbox.open { display: flex; }
  .lightbox img {
    max-width: 92vw; max-height: 92vh;
    object-fit: contain; display: block;
    box-shadow: 0 0 60px rgba(0,0,0,0.8);
  }
  .lightbox-close {
    position: absolute; top: 1.5rem; right: 2rem;
    font-family: 'Space Mono', monospace; font-size: 0.75rem;
    letter-spacing: 0.2em; color: var(--muted); cursor: pointer;
    transition: color 0.2s;
  }
  .lightbox-close:hover { color: var(--gold); }
  .gallery-more {
    text-align: center; margin-top: 2rem;
    font-family: 'Space Mono', monospace; font-size: 0.65rem;
    letter-spacing: 0.2em;
  }
  .gallery-more a { color: var(--gold); text-decoration: none; }
  .gallery-more a:hover { text-decoration: underline; }

  /* PRESS / ARTICLES */
  #press { background: var(--black); }
  .press-inner { max-width: 1100px; margin: 0 auto; }
  .press-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; margin-top: 3rem; }
  .press-card {
    border: 1px solid var(--border); background: var(--surface);
    padding: 2rem; text-decoration: none; display: flex; flex-direction: column; gap: 1rem;
    transition: border-color 0.3s, transform 0.3s; position: relative; overflow: hidden;
  }
  .press-card::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, transparent 60%, rgba(232,97,154,0.05));
    opacity: 0; transition: opacity 0.3s;
  }
  .press-card:hover { border-color: var(--gold); transform: translateY(-4px); }
  .press-card:hover::after { opacity: 1; }
  .press-tag {
    font-family: 'Space Mono', monospace; font-size: 0.55rem;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--gold); border: 1px solid var(--gold);
    padding: 0.2rem 0.6rem; display: inline-block; align-self: flex-start;
  }
  .press-pub {
    font-family: 'Space Mono', monospace; font-size: 0.6rem;
    letter-spacing: 0.15em; color: var(--muted); text-transform: uppercase;
  }
  .press-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.3rem; font-weight: 400; line-height: 1.4; color: var(--white);
  }
  .press-excerpt {
    font-size: 0.95rem; line-height: 1.7; color: rgba(240,235,224,0.65);
    flex: 1;
  }
  .press-meta {
    font-family: 'Space Mono', monospace; font-size: 0.55rem;
    letter-spacing: 0.1em; color: var(--muted);
    display: flex; align-items: center; justify-content: space-between;
    border-top: 1px solid var(--border); padding-top: 1rem; margin-top: auto;
  }
  .press-arrow { color: var(--gold); font-size: 1rem; }

  /* PRESS KIT */
  #presskit {
    max-width: 900px; margin: 0 auto;
    text-align: center;
  }
  .presskit-box {
    border: 1px solid var(--border); padding: 4rem;
    margin-top: 3rem; position: relative; background: var(--surface);
  }
  .presskit-box::before {
    content: '🐉'; position: absolute; top: -1.5rem; left: 50%;
    transform: translateX(-50%); font-size: 2.5rem;
    background: var(--black); padding: 0 1rem;
  }
  .presskit-box p { font-size: 1.1rem; color: rgba(240,235,224,0.7); line-height: 1.8; margin-bottom: 2rem; }
  .btn-gold {
    background: transparent; border: 1px solid var(--gold);
    color: var(--gold); padding: 1rem 2.5rem; text-decoration: none;
    font-family: 'Space Mono', monospace; font-size: 0.7rem;
    letter-spacing: 0.15em; text-transform: uppercase;
    transition: background 0.3s, color 0.3s; display: inline-block;
  }
  .btn-gold:hover { background: var(--gold); color: var(--black); }

  /* BOOKING CONTACT */
  #booking { background: var(--surface); }
  .booking-inner {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start;
  }
  .booking-info h2 { font-family: 'Bebas Neue', sans-serif; font-size: 4rem; color: var(--white); margin-bottom: 1.5rem; }
  .booking-info p { font-size: 1.1rem; color: rgba(240,235,224,0.7); line-height: 1.8; margin-bottom: 1.5rem; }
  .booking-contact-item { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
  .booking-contact-item .label {
    font-family: 'Space Mono', monospace; font-size: 0.6rem;
    letter-spacing: 0.15em; color: var(--gold); min-width: 80px;
  }
  .booking-contact-item .val { font-size: 1.05rem; color: var(--white); }
  .booking-contact-item a { color: var(--white); text-decoration: none; }
  .booking-contact-item a:hover { color: var(--gold); }
  .booking-form { display: flex; flex-direction: column; gap: 1.2rem; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
  .form-field {
    display: flex; flex-direction: column; gap: 0.5rem;
  }
  .form-field label {
    font-family: 'Space Mono', monospace; font-size: 0.55rem;
    letter-spacing: 0.2em; color: var(--gold); text-transform: uppercase;
  }
  .form-field input, .form-field select, .form-field textarea {
    background: rgba(240,235,224,0.04); border: 1px solid var(--border);
    color: var(--white); padding: 0.9rem 1rem;
    font-family: 'Cormorant Garamond', serif; font-size: 1rem;
    outline: none; transition: border-color 0.3s;
    -webkit-appearance: none;
  }
  .form-field input:focus, .form-field select, .form-field textarea:focus {
    border-color: rgba(232,97,154,0.6);
  }
  .form-field select option { background: #111; }
  .form-field textarea { resize: vertical; min-height: 120px; }
  .form-submit {
    background: var(--red); color: var(--white); border: none;
    padding: 1.1rem 2rem; font-family: 'Space Mono', monospace;
    font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
    cursor: pointer; transition: background 0.3s; width: 100%;
  }
  .form-submit:hover { background: var(--red-dim); }

  /* FOOTER */
  footer {
    background: var(--black); border-top: 1px solid var(--border);
    padding: 3rem; display: flex; align-items: center; justify-content: space-between;
  }
  .footer-logo { font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem; color: var(--white); }
  .footer-logo span { color: var(--red); }
  .footer-links { display: flex; gap: 2rem; }
  .footer-links a {
    font-family: 'Space Mono', monospace; font-size: 0.6rem;
    letter-spacing: 0.15em; color: var(--muted); text-decoration: none;
    transition: color 0.3s;
  }
  .footer-links a:hover { color: var(--gold); }
  .footer-copy {
    font-family: 'Space Mono', monospace; font-size: 0.55rem;
    letter-spacing: 0.1em; color: var(--muted);
  }

  /* PAGE NAV CTA */
  .page-switch {
    position: fixed; bottom: 2rem; right: 2rem; z-index: 200;
  }
  .page-switch a {
    display: flex; align-items: center; gap: 0.8rem;
    background: var(--surface); border: 1px solid var(--gold);
    color: var(--gold); padding: 0.8rem 1.4rem; text-decoration: none;
    font-family: 'Space Mono', monospace; font-size: 0.6rem;
    letter-spacing: 0.15em; text-transform: uppercase;
    transition: background 0.3s, color 0.3s;
    box-shadow: 0 4px 30px rgba(0,0,0,0.8);
  }
  .page-switch a:hover { background: var(--gold); color: var(--black); }
  .page-switch .dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--red); animation: pulse 2s infinite;
  }
  @keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.3} }

  /* ANIMATIONS */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeIn {
    from { opacity: 0; } to { opacity: 1; }
  }

  /* SCROLLED NAV */
  nav.scrolled {
    background: rgba(5,5,5,0.98);
    border-bottom: 1px solid var(--border);
  }

  /* TOAST */
  .toast {
    position: fixed; bottom: 2rem; left: 50%; transform: translateX(-50%);
    background: var(--gold); color: var(--black);
    padding: 1rem 2rem; font-family: 'Space Mono', monospace;
    font-size: 0.7rem; letter-spacing: 0.1em;
    z-index: 9999; opacity: 0; pointer-events: none;
    transition: opacity 0.3s;
  }
  .toast.show { opacity: 1; }

  /* RESPONSIVE */
  @media (max-width: 900px) {\n    nav { padding: 1rem 1.5rem; }\n    .nav-links { display: none; }\n    #bio { grid-template-columns: 1fr; gap: 3rem; }\n    .booking-inner { grid-template-columns: 1fr; gap: 3rem; }\n    section { padding: 5rem 1.5rem; }\n    .hero-content { padding: 0 1.5rem 4rem; }\n    .hero-content img[src*=\"logo\"] { width: min(320px, 55vw) !important; }\n    #hero > div:first-of-type + div + div + div[style*=\"position:absolute\"] { width: 35% !important; }\n    .gallery-grid { grid-template-columns: 1fr 1fr; }\n    #videos .event-list { grid-template-columns: 1fr !important; }\n    footer { flex-direction: column; gap: 1.5rem; text-align: center; }\n    .form-row { grid-template-columns: 1fr; }\n  }

  /* EXTRA MOBILE FIXES */
  @media (max-width: 900px) {
    .mobile-menu-btn { display: block; position: fixed; top: 1.1rem; right: 1.5rem; z-index: 101; font-size: 1.5rem; color: var(--white); background: none; border: none; cursor: pointer; padding: 0.5rem; }
    .mobile-menu { display: none; position: fixed; inset: 0; z-index: 99; background: rgba(5,5,5,0.98); padding: 6rem 2rem 2rem; flex-direction: column; gap: 1.5rem; }
    .mobile-menu.open { display: flex; }
    .mobile-menu a { font-family: 'Space Mono', monospace; font-size: 0.85rem; letter-spacing: 0.2em; color: var(--white); text-decoration: none; text-transform: uppercase; padding: 0.75rem 0; border-bottom: 1px solid var(--border); }
    .mobile-lang { display: flex; gap: 1rem; margin-top: 1rem; }
    .mobile-lang button { flex: 1; text-align: center; padding: 0.6rem; }
    #hero { flex-direction: column !important; align-items: stretch !important; min-height: auto !important; }
    #hero > div[style*="position:absolute;right:0"] { position: relative !important; width: 100% !important; height: auto !important; top: auto !important; bottom: auto !important; right: auto !important; opacity: 1 !important; }
    #hero > div[style*="position:absolute;right:0"] img { height: auto !important; object-fit: contain !important; object-position: center top !important; opacity: 1 !important; mask-image: none !important; -webkit-mask-image: none !important; }
    #hero > div[style*="position:absolute;right:0"] > div { display: none !important; }
    .hero-content { padding: 1.5rem 1.5rem 3rem !important; }
    .hero-content img[src*="logo"] { display: none !important; }
    body { cursor: auto; }
    .cursor, .cursor-ring { display: none !important; }
  }
  @media (min-width: 901px) { .mobile-menu-btn, .mobile-menu { display: none !important; } }
