    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html, body { height: 100%; font-family: sans-serif; overflow: hidden; }

    :root {
      --wall: rgba(245, 236, 215, 1);
      --ceiling: rgba(237, 224, 196, 1);
      --gold: rgba(201, 169, 110, 1);
      --text: rgba(58, 42, 26, 1);
      --placard: rgba(250, 246, 238, 1);
      --floor-1: rgba(212, 169, 106, 1);
      --floor-2: rgba(196, 149, 88, 1);
    }

    /* ─── ENTRANCE SCREEN ─── */
    .entrance {
      position: fixed;
      inset: 0;
      overflow: hidden;
      background: radial-gradient(50% 50% at 50% 50%, #fff9ea 0%, #ecd8b0 59%, #ffdd9c 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: opacity 0.8s ease;
    }
    .entrance.fade-out { opacity: 0; pointer-events: none; }

    /* Ceiling */
    .ceiling-bar {
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 17%;
      background-color: #ecd8b1;
      border-bottom: 5px solid #e2a700cc;
      box-shadow: inset 0px 92px 74px 14px #00000040;
      z-index: 2;
    }

    /* String lights */
    .lights-row {
      position: absolute;
      top: 14%;
      left: 0; right: 0;
      display: flex;
      justify-content: space-around;
      padding: 0 40px;
      z-index: 3;
    }
    .bulb {
      width: 10px; height: 16px;
      background: radial-gradient(circle, #ffe97a 30%, #fdbb00 100%);
      border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
      box-shadow: 0 0 8px 4px #fdbb0088;
      animation: twinkle 2s ease-in-out infinite;
    }
    .bulb:nth-child(odd) { animation-delay: 0.4s; }
    .bulb:nth-child(3n) { animation-delay: 0.9s; }
    .bulb:nth-child(4n) { animation-delay: 1.3s; }
    @keyframes twinkle {
      0%, 100% { opacity: 1; box-shadow: 0 0 8px 4px #fdbb0088; }
      50% { opacity: 0.5; box-shadow: 0 0 3px 1px #fdbb0033; }
    }

    /* Walls */
    .walls {
      position: absolute;
      inset: 0;
      z-index: 1;
      overflow: hidden;
    }
    .wall-left, .wall-right {
      position: absolute;
      top: 0; bottom: 0;
      width: 50%;
      background: linear-gradient(to bottom, #f5ecd7 0%, #e8d4b0 60%, #d4b87a 100%);
    }
    .wall-left { left: 0; border-right: 2px solid #c9a06e44; }
    .wall-right { right: 0; border-left: 2px solid #c9a06e44; }

    /* Paintings removed */

    /* Floor */
    .floor-area {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 14%;
      background: linear-gradient(to bottom, #d4a96a 0%, #a0682a 100%);
      border-top: 4px solid #8a5520;
      z-index: 4;
    }
    .floor-planks {
      position: absolute;
      inset: 0;
      background-image: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 119px,
        #9a621888 120px
      );
    }

    /* Door */
    .door-wrapper {
      position: absolute;
      bottom: 14%;
      left: 50%;
      transform: translateX(-50%);
      z-index: 5;
      cursor: pointer;
    }
    .door {
      width: 220px;
      height: 310px;
      background: linear-gradient(138deg, #b7723e 0%, #603a21 41%, #190b03 100%);
      border: 4px solid #5a2507;
      border-radius: 8px 8px 0 0;
      box-shadow: 0 4px 80px 20px #3b0c0c55;
      position: relative;
      transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      transform-origin: left center;
    }
    .door-wrapper:hover .door { transform: perspective(800px) rotateY(-25deg); }
    .door-inner-top {
      position: absolute;
      top: 5%; left: 6%; right: 6%;
      height: 40%;
      background: rgba(0,0,0,0.08);
      border-radius: 8px;
      border: 2px solid #d4a96a33;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .door-inner-bottom {
      position: absolute;
      top: 44%; left: 8%; right: 8%;
      height: 48%;
      background: rgba(0,0,0,0.15);
      border-radius: 4px;
      border: 2px solid #d4a96a55;
    }
    .door-knob {
      position: absolute;
      right: 10%; top: 62%;
      width: 18px; height: 24px;
      background: radial-gradient(circle at 40% 35%, #ffe082, #e2a800);
      border-radius: 50%;
      box-shadow: inset 2px 2px 4px #00000055;
    }
    .door-sign {
      position: absolute;
      top: 8%; left: 50%;
      transform: translateX(-50%);
      font-family: 'Caveat', cursive;
      font-weight: 700;
      color: #612706;
      font-size: 19px;
      line-height: 1.35;
      text-align: center;
      white-space: nowrap;
      pointer-events: none;
      background: #faf3e0;
      border: 3px solid #8a5820;
      border-radius: 10px;
      padding: 14px 20px;
      box-shadow: 2px 3px 12px #00000044, inset 0 0 6px #00000011;
    }
    .push-text {
      position: absolute;
      bottom: -48px;
      left: 50%;
      transform: translateX(-50%);
      font-family: 'Caveat', cursive;
      font-weight: 700;
      color: #5a2507;
      font-size: 18px;
      white-space: nowrap;
      opacity: 0.8;
      animation: pulse 2s ease-in-out infinite;
    }
    @keyframes pulse {
      0%, 100% { opacity: 0.8; transform: translateX(-50%) translateY(0); }
      50% { opacity: 1; transform: translateX(-50%) translateY(-4px); }
    }

    /* ─── EASEL ─── */
    .easel-wrap {
      position: absolute;
      bottom: 14%;
      left: 7%;
      z-index: 6;
      display: flex;
      flex-direction: column;
      align-items: center;
      width: 160px;
    }
    /* Top bar of easel */
    .easel-top-bar {
      width: 144px;
      height: 12px;
      background: linear-gradient(to bottom, #c49060, #8a5820);
      border-radius: 4px;
      border: 2px solid #7a4818;
      position: relative;
      z-index: 2;
      box-shadow: 0 2px 6px #00000033;
    }
    /* Two small knobs on top bar */
    .easel-top-bar::before, .easel-top-bar::after {
      content: '';
      position: absolute;
      top: -6px;
      width: 10px; height: 10px;
      background: radial-gradient(circle at 40% 35%, #d4a060, #8a5020);
      border-radius: 50%;
      border: 1.5px solid #7a4018;
    }
    .easel-top-bar::before { left: 16px; }
    .easel-top-bar::after { right: 16px; }
    /* Canvas board */
    .easel-canvas {
      width: 140px;
      background: #fffef8;
      border: 4px solid #8a5820;
      border-radius: 4px;
      padding: 16px 12px 14px;
      box-shadow: 3px 6px 18px #00000044, inset 0 0 8px #00000011;
      text-align: center;
      position: relative;
      z-index: 2;
      margin-top: -2px;
    }
    .easel-canvas .welcome {
      font-family: 'Kaushan Script', cursive;
      color: #5c0d0d;
      font-size: 17px;
      display: block;
      margin-bottom: 2px;
      line-height: 1.2;
    }
    .easel-canvas .site-name {
      font-family: 'Kaushan Script', cursive;
      color: #06007f;
      font-size: 14px;
      margin-bottom: 10px;
      display: block;
    }
    .easel-canvas .exhibition-text {
      font-family: 'Caveat', cursive;
      font-weight: 700;
      color: #921717;
      font-size: 12px;
      line-height: 1.5;
    }
    .easel-canvas .artist-name { color: #590000; font-size: 13px; }
    .placard-divider {
      width: 70%;
      margin: 6px auto;
      border: none;
      border-top: 1px solid #bd835266;
    }
    /* Easel legs */
    .easel-legs {
      position: relative;
      width: 160px;
      height: 80px;
      margin-top: -4px;
    }
    .easel-leg-left {
      position: absolute;
      bottom: 0; left: 12px;
      width: 8px; height: 80px;
      background: linear-gradient(to bottom, #c49060, #7a4818);
      border-radius: 2px;
      transform-origin: top center;
      transform: rotate(-12deg);
    }
    .easel-leg-right {
      position: absolute;
      bottom: 0; right: 12px;
      width: 8px; height: 80px;
      background: linear-gradient(to bottom, #c49060, #7a4818);
      border-radius: 2px;
      transform-origin: top center;
      transform: rotate(12deg);
    }
    .easel-leg-back {
      position: absolute;
      bottom: 0; left: 50%;
      width: 6px; height: 90px;
      background: linear-gradient(to bottom, #a07040, #6a3810);
      border-radius: 2px;
      transform: translateX(-50%) rotate(6deg);
      transform-origin: top center;
    }
    /* Cross bar on legs */
    .easel-crossbar {
      position: absolute;
      bottom: 22px; left: 22px; right: 22px;
      height: 6px;
      background: linear-gradient(to bottom, #c49060, #8a5820);
      border-radius: 3px;
    }

    /* Glow at top of door */
    .door-glow {
      position: absolute;
      bottom: calc(14% + 310px);
      left: 50%;
      transform: translateX(-50%);
      width: 260px; height: 14px;
      background: radial-gradient(50% 50% at 50% 50%, rgba(255,220,120,0.9) 0%, transparent 100%);
      border-radius: 50%;
      filter: blur(6px);
      z-index: 6;
    }

    /* Pendant string */
    .pendant-string {
      position: absolute;
      top: 17%;
      left: 50%;
      transform: translateX(-50%);
      width: 3px;
      height: 130px;
      background: linear-gradient(to bottom, #c9a06e, #a07040);
      z-index: 4;
    }
    .pendant-bulb {
      position: absolute;
      top: 17%;
      left: 50%;
      transform: translate(-50%, 130px);
      width: 22px; height: 28px;
      background: radial-gradient(circle at 40% 30%, #ffe082, #f5a623);
      border-radius: 50% 50% 50% 50% / 40% 40% 60% 60%;
      box-shadow: 0 0 20px 12px #ffdc7899;
      z-index: 4;
      animation: pendantGlow 3s ease-in-out infinite;
    }
    @keyframes pendantGlow {
      0%, 100% { box-shadow: 0 0 20px 12px #ffdc7899; }
      50% { box-shadow: 0 0 30px 20px #ffdc78bb; }
    }

    /* ─── GALLERY SCREEN ─── */
    .gallery {
      position: fixed;
      inset: 0;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.8s ease 0.4s;
      overflow-x: auto;
      overflow-y: hidden;
      background: #f5ecd7;
      scroll-behavior: smooth;
      scrollbar-width: thin;
      scrollbar-color: #c9a06e #f0e4c8;
    }
    .gallery.visible { opacity: 1; pointer-events: all; }
    .gallery-inner {
      width: 3350px;
      height: 100vh;
      position: relative;
      display: flex;
      align-items: stretch;
    }

    /* Gallery ceiling */
    .gallery-ceiling {
      position: fixed;
      top: 0; left: 0; right: 0;
      height: 15%;
      background: #ecd8b1;
      border-bottom: 4px solid #e2a700aa;
      box-shadow: inset 0 60px 60px #00000033;
      z-index: 10;
    }
    .gallery-lights {
      position: fixed;
      top: 13%;
      left: 0; right: 0;
      display: flex;
      gap: 80px;
      padding: 0 60px;
      z-index: 11;
      overflow: hidden;
    }
    .g-bulb {
      flex-shrink: 0;
      width: 10px; height: 16px;
      background: radial-gradient(circle, #ffe97a 30%, #fdbb00 100%);
      border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
      box-shadow: 0 0 8px 4px #fdbb0088;
      animation: twinkle 2.5s ease-in-out infinite;
    }
    .g-bulb:nth-child(odd) { animation-delay: 0.6s; }
    .g-bulb:nth-child(3n) { animation-delay: 1.2s; }

    /* Gallery wall */
    .gallery-wall {
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 80%;
      background: linear-gradient(to bottom, #f5ecd7 0%, #ead5b0 70%, #d4b87a 100%);
    }

    /* Gallery floor */
    .gallery-floor {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 22%;
      background: linear-gradient(to bottom, #d4a96a, #a0682a);
      border-top: 4px solid #8a5520;
    }
    .gallery-floor-planks {
      position: absolute; inset: 0;
      background-image: repeating-linear-gradient(90deg, transparent, transparent 159px, #9a621833 160px);
    }

    /* Gallery canvases */
    .canvas-item {
      position: absolute;
      top: 18%;
      border: 8px solid #7a4e20;
      box-shadow: 4px 8px 40px #00000055, inset 0 0 16px #00000011;
      border-radius: 4px;
      cursor: pointer;
      transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.35s ease;
      overflow: hidden;
    }
    .canvas-item::after {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(255,255,255,0);
      transition: background 0.35s ease;
    }
    .canvas-item:hover {
      transform: translateY(-8px) scale(1.03);
      box-shadow: 4px 16px 60px #00000077;
    }
    .canvas-item:hover::after { background: rgba(255,255,255,0.08); }

    /* Canvas label placard */
    .canvas-label {
      position: absolute;
      bottom: calc(22% - 60px);
      background: #fffaeb;
      border: 2px solid #c9a06e99;
      border-radius: 4px;
      padding: 6px 12px;
      font-family: 'Caveat', cursive;
      font-size: 13px;
      color: #5a2507;
      box-shadow: 1px 2px 8px #00000022;
      white-space: nowrap;
    }

    /* Individual canvases */
    .c1 { left: 120px; width: 280px; height: 340px; background: linear-gradient(150deg, #d4826e 0%, #8b2a1e 50%, #3d0a05 100%); }
    .c2 { left: 520px; width: 240px; height: 300px; background: linear-gradient(160deg, #8ab88a 0%, #3a7a3a 50%, #1a3a1a 100%); top: 20%; }
    .c3 { left: 890px; width: 260px; height: 320px; background: linear-gradient(145deg, #e8d080 0%, #b08020 50%, #5a3e08 100%); }
    .c4 { left: 1270px; width: 240px; height: 300px; background: linear-gradient(160deg, #8a9ec4 0%, #3a5a8b 50%, #1a2a4a 100%); top: 22%; }
    .c5 { left: 1640px; width: 280px; height: 340px; background: linear-gradient(150deg, #b07aa8 0%, #6a2a70 50%, #2a0a30 100%); }
    .c6 { left: 2050px; width: 260px; height: 320px; background: linear-gradient(145deg, #c48a60 0%, #8a4820 50%, #3a1808 100%); }

    /* Canvas inner abstract art */
    .canvas-item .art { position: absolute; inset: 0; }
    .c1 .art { background: radial-gradient(circle at 40% 60%, #e8886055 50%, transparent 70%), radial-gradient(circle at 70% 30%, #ff6b4444 40%, transparent 60%); }
    .c2 .art { background: radial-gradient(ellipse at 50% 80%, #6fcf6f44 50%, transparent 70%); }
    .c3 .art { background: repeating-linear-gradient(45deg, transparent, transparent 20px, #ffffff0a 20px, #ffffff0a 22px); }
    .c4 .art { background: radial-gradient(circle at 30% 40%, #ffffff1a 40%, transparent 60%); }
    .c5 .art { background: radial-gradient(circle at 60% 50%, #e0a0e044 50%, transparent 70%); }
    .c6 .art { background: repeating-linear-gradient(-30deg, transparent, transparent 25px, #ffffff0a 25px, #ffffff0a 27px); }

    /* Plants on floor */
    .plant {
      position: absolute;
      bottom: 22%;
      z-index: 6;
    }
    .plant-pot {
      width: 32px; height: 24px;
      background: linear-gradient(to bottom, #a04818, #6a2808);
      border-radius: 0 0 8px 8px;
      border-top: 3px solid #c07030;
      margin: 0 auto;
    }
    .plant-leaves {
      display: flex;
      justify-content: center;
      margin-bottom: -4px;
    }
    .leaf {
      width: 18px; height: 36px;
      background: linear-gradient(to top, #2d6e2d, #5aaa5a);
      border-radius: 50% 50% 30% 30%;
      margin: 0 -3px;
    }
    .leaf:nth-child(even) { transform: rotate(15deg) translateY(4px); }
    .leaf:nth-child(odd) { transform: rotate(-15deg) translateY(6px); }

    /* ─── ABOUT SECTION ─── */
    .about-section {
      position: absolute;
      left: 2380px;
      top: 0;
      width: 900px;
      height: 100%;
    }
    .about-nav {
      position: absolute;
      top: 4%;
      left: 20px;
      display: flex;
      gap: 12px;
      z-index: 20;
    }
    .nav-btn {
      background: rgba(239,170,86,0.88);
      border: 2px solid #904c10;
      border-radius: 40px;
      padding: 8px 22px;
      font-family: "Caveat", cursive;
      font-size: 17px;
      color: #220a0a;
      cursor: pointer;
      transition: background 0.2s;
    }
    .nav-btn:hover { background: #d4a050; }
    .artist-intro {
      position: absolute;
      top: 18%;
      left: 20px;
      width: 195px;
      z-index: 8;
      font-family: "Caveat", cursive;
    }
    .keep-walking { font-size: 18px; color: #3a1a00; margin-bottom: 12px; opacity: 0.75; }
    .artist-is-in { font-size: 38px; font-weight: 700; color: #4c0c0c; line-height: 1.1; margin-bottom: 16px; }
    .say-hello { font-size: 18px; color: #5a2507; margin-bottom: 6px; }
    .email-link { font-size: 14px; color: #5a2507; text-decoration: underline; word-break: break-all; display: block; margin-bottom: 16px; }
    .social-btns { display: flex; flex-direction: column; gap: 8px; }
    .social-row { display: flex; gap: 8px; }
    .social-btn {
      background: rgba(239,170,86,0.88);
      border: 2px solid #904c10;
      border-radius: 40px;
      padding: 6px 18px;
      font-family: "Caveat", cursive;
      font-size: 16px;
      color: #220a0a;
      cursor: pointer;
      text-decoration: none;
      display: inline-block;
      transition: background 0.2s;
    }
    .social-btn:hover { background: #d4a050; }
    .bio-card {
      position: absolute;
      top: 18%;
      left: 225px;
      width: 210px;
      background: linear-gradient(135deg, #e8c86a, #c9a030, #e8c86a);
      border: 3px solid #a07820;
      border-radius: 6px;
      padding: 18px 16px;
      box-shadow: 2px 4px 16px #00000055, inset 0 1px 2px #ffe08888;
      z-index: 8;
    }
    .bio-name {
      font-size: 19px;
      color: #2a0a00;
      font-weight: 700;
      font-family: "Kaushan Script", cursive;
      margin-bottom: 10px;
      text-align: center;
    }
    .bio-body {
      font-size: 13px;
      color: #350505;
      line-height: 1.55;
      font-family: "Caveat", cursive;
    }
    .glass-studio {
      position: absolute;
      top: 14%;
      left: 448px;
      width: 300px;
      height: 66%;
      border-radius: 4px;
      overflow: hidden;
      box-shadow: 0 0 40px rgba(150,190,255,0.2), 4px 8px 40px #00000040;
      border: 3px solid rgba(200,220,255,0.45);
    }
    .glass-studio img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
    .glass-studio::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(120deg, rgba(255,255,255,0.12) 0%, transparent 50%, rgba(255,255,255,0.06) 100%);
      pointer-events: none;
    }
    .skills-card {
      position: absolute;
      top: 18%;
      left: 762px;
      width: 155px;
      background: #fefddb;
      border: 5px solid #600707;
      border-radius: 20px;
      padding: 18px 14px;
      box-shadow: 0 4px 20px 10px #00000033, inset 0 4px 20px 16px #00000033;
      z-index: 8;
      font-family: "Caveat", cursive;
      max-height: 72vh;
      overflow-y: auto;
    }
    .skills-card h3 { font-size: 16px; font-weight: 700; color: #590202; margin-bottom: 8px; }
    .skills-card p { font-size: 11.5px; color: #590202; line-height: 1.55; margin-bottom: 14px; }

    /* Back button */
    .back-btn {
      position: fixed;
      top: 20px; left: 20px;
      z-index: 20;
      background: #fffaeb;
      border: 2px solid #c9a06e;
      border-radius: 8px;
      padding: 8px 16px;
      font-family: 'Caveat', cursive;
      font-size: 16px;
      color: #5a2507;
      cursor: pointer;
      box-shadow: 2px 2px 8px #00000033;
      display: none;
      transition: background 0.2s;
    }
    .back-btn:hover { background: #f5e8cc; }
    .back-btn.show { display: block; }

    /* Welcome board in gallery */
    .gallery-welcome {
      position: absolute;
      left: 40px;
      top: 20%;
      font-family: 'Caveat', cursive;
      font-weight: 700;
      font-size: 20px;
      color: #5a2507;
      writing-mode: vertical-rl;
      letter-spacing: 2px;
      opacity: 0.6;
    }

    /* Scroll hint */
    .scroll-hint {
      position: fixed;
      bottom: 28%;
      right: 30px;
      z-index: 20;
      font-family: 'Caveat', cursive;
      font-size: 15px;
      color: #8a5520;
      display: none;
      align-items: center;
      gap: 6px;
      animation: hintPulse 2s infinite;
    }
    .scroll-hint.show { display: flex; }
    @keyframes hintPulse {
      0%, 100% { opacity: 1; transform: translateX(0); }
      50% { opacity: 0.6; transform: translateX(6px); }
    }
