:root {
      --ruby:    #e8193c;
      --ruby-d:  #9b0f26;
      --ruby-g:  #ff4d6d;
      --gold:    #f5c842;
      --gold-l:  #ffe27a;
      --gold-d:  #b8952a;
      --ivory:   #fdf6e3;
      --cream:   #f0e6c8;
      --ink:     #080509;
      --ink2:    #10070d;
      --velvet:  #1a0515;
      --smoke:   #c8b8c0;
      --r: 4px;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; font-size: 16px; }

    body {
      background: var(--ink);
      color: var(--ivory);
      font-family: 'Noto Sans KR', sans-serif;
      font-weight: 300;
      overflow-x: hidden;
      cursor: none;
    }

    /* ─── CUSTOM CURSOR ─── */
    #cursor {
      position: fixed; z-index: 9999; pointer-events: none;
      width: 12px; height: 12px; border-radius: 50%;
      background: var(--ruby-g);
      transform: translate(-50%,-50%);
      transition: transform .1s, width .25s, height .25s, background .2s;
      mix-blend-mode: screen;
    }
    #cursor-ring {
      position: fixed; z-index: 9998; pointer-events: none;
      width: 36px; height: 36px; border-radius: 50%;
      border: 1px solid rgba(245,200,66,.5);
      transform: translate(-50%,-50%);
      transition: transform .18s ease-out, width .3s, height .3s;
    }
    body:hover #cursor { width: 14px; height: 14px; }

    /* ─── CANVAS BG ─── */
    #bg-canvas {
      position: fixed; inset: 0; z-index: 0;
      pointer-events: none;
    }

    /* ─── NAV ─── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 500;
      display: flex; align-items: center; justify-content: center;
      padding: 0 48px;
      height: 40px;
      background: linear-gradient(to bottom, rgba(8,5,9,.95) 0%, transparent 100%);
    }
    nav::after {
      content: '';
      position: absolute; bottom: 0; left: 48px; right: 48px; height: 1px;
      background: linear-gradient(to right, transparent, rgba(245,200,66,.3), transparent);
    }
    .nav-logo {
      font-family: 'Cinzel Decorative', serif;
      font-size: .9rem; font-weight: 700; letter-spacing: .15em;
      text-decoration: none;
      background: linear-gradient(135deg, var(--gold-l), var(--gold), var(--gold-d));
      -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    }
    .nav-links { display: flex; gap: 36px; list-style: none; }
    .nav-links a {
      text-decoration: none; color: var(--smoke);
      font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
      position: relative; transition: color .2s;
    }
    .nav-links a::after {
      content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px;
      background: var(--gold); transition: width .3s;
    }
    .nav-links a:hover { color: var(--gold-l); }
    .nav-links a:hover::after { width: 100%; }

        /* ─── SUB NAV ─── */
    subnav {
      position: fixed; top: 41px; left: 0; right: 0; z-index: 500;
      display: flex; align-items: center; justify-content: center;
      height: 60px;
      background: linear-gradient(to bottom, rgba(8,5,9,.95) 0%, transparent 100%);
      padding: 0 10px 0 10px;
    }
    subnav::after {
      content: '';
      position: absolute; bottom: 0; left: 48px; right: 48px; height: 1px;
      background: linear-gradient(to right, transparent, rgba(245,200,66,.3), transparent);
    }
    .subnav-logo {
      font-family: 'Cinzel Decorative', serif;
      font-size: .9rem; font-weight: 700; letter-spacing: .15em;
      text-decoration: none;
      background: linear-gradient(135deg, var(--gold-l), var(--gold), var(--gold-d));
      -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    }
    .subnav-links {
      display: flex; gap: 20px; list-style: none;
      flex-wrap: nowrap;
      max-width: 100%;
      overflow-x: auto;
      overflow-y: hidden;
      white-space: nowrap;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
    }
    .subnav-links::-webkit-scrollbar { display: none; }
    .subnav-links li { flex: 0 0 auto; }
    .subnav-links a {
      text-decoration: none; color: var(--smoke);
      font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
      position: relative; transition: color .2s;
    }
    .subnav-links a::after {
      content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px;
      background: var(--gold); transition: width .3s;
    }
    .subnav-links a:hover,
    .subnav-links a.is-active,
    .subnav-links a[aria-current="true"] {
      color: var(--gold-l);
      text-shadow: 0 0 14px rgba(245,200,66,.35);
    }
    .subnav-links a:hover::after,
    .subnav-links a.is-active::after,
    .subnav-links a[aria-current="true"]::after {
      width: 100%;
      box-shadow: 0 0 10px rgba(245,200,66,.65);
    }
   
    /* ─── HERO ─── */
    .hero {
      position: relative; min-height: 100vh;
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      text-align: center; padding: 120px 24px 80px;
      overflow: hidden; z-index: 1;
    }

    .hero::before {
      content: '';
      position: absolute; inset: 0; z-index: -1;
      background:
        radial-gradient(ellipse 55% 45% at 50% 50%, rgba(232,25,60,.18) 0%, transparent 65%),
        radial-gradient(ellipse 30% 40% at 20% 80%, rgba(245,200,66,.12) 0%, transparent 60%),
        radial-gradient(ellipse 25% 30% at 80% 15%, rgba(245,200,66,.1) 0%, transparent 55%),
        var(--ink);
    }

    .hero-deco {
      position: absolute; inset: 0; z-index: -1; overflow: hidden;
      opacity: .15;
    }
    .hero-deco svg { width: 100%; height: 100%; }

    .hero-eyebrow {
      display: flex; align-items: center; gap: 14px;
      margin-bottom: 32px;
      animation: riseIn .9s ease both;
    }
    .eyebrow-line { width: 60px; height: 1px; background: linear-gradient(to right, transparent, var(--gold)); }
    .eyebrow-line.r { background: linear-gradient(to left, transparent, var(--gold)); }
    .eyebrow-text {
      font-family: 'Cinzel Decorative', serif;
      font-size: .6rem; letter-spacing: .3em; color: var(--gold);
    }

    .hero-kicker {
      font-size: .72rem; letter-spacing: .25em; color: var(--ruby-g);
      text-transform: uppercase; margin-bottom: 14px;
      animation: riseIn .9s .1s ease both;
    }

    .hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(3.5rem, 10vw, 8rem);
      font-weight: 900; line-height: .95; letter-spacing: -.01em;
      animation: riseIn 1s .2s ease both;
    }
    .hero h1 .kr {
      display: block;
      font-family: 'Noto Serif KR', serif;
      font-size: .42em; font-weight: 900;
      letter-spacing: .08em;
      color: var(--ivory); opacity: .9;
      margin-bottom: 8px;
    }
    .hero h1 .en {
      display: block;
      background: linear-gradient(135deg, var(--gold-l) 0%, var(--gold) 40%, var(--ruby-g) 70%, var(--ruby) 100%);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
      text-shadow: none;
    }
    .hero h1 .sub-en {
      display: block;
      font-size: .22em; font-weight: 400; letter-spacing: .3em;
      color: var(--smoke); -webkit-text-fill-color: var(--smoke);
      margin-top: 12px; font-style: italic;
    }

    .hero-divider {
      display: flex; align-items: center; gap: 18px; margin: 28px 0;
      animation: riseIn 1s .35s ease both;
    }
    .hd-line { flex: 1; max-width: 120px; height: 1px; background: linear-gradient(to right, transparent, rgba(245,200,66,.4)); }
    .hd-line.r { background: linear-gradient(to left, transparent, rgba(245,200,66,.4)); }
    .hd-diamond {
      width: 10px; height: 10px; border: 1px solid var(--gold);
      transform: rotate(45deg); flex-shrink: 0;
    }
    .hd-diamond::before {
      content: ''; display: block; width: 4px; height: 4px;
      background: var(--ruby); margin: 2px; border-radius: 50%;
    }

    .hero-tags {
      display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
      margin-bottom: 40px;
      animation: riseIn 1s .45s ease both;
    }
    .tag {
      border: 1px solid rgba(245,200,66,.25);
      color: var(--cream); font-size: .72rem; letter-spacing: .1em;
      padding: 7px 18px; border-radius: 1px;
      background: rgba(245,200,66,.05);
      position: relative; overflow: hidden;
      transition: border-color .3s, background .3s;
    }
    .tag::before {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(135deg, rgba(232,25,60,.15), rgba(245,200,66,.1));
      opacity: 0; transition: opacity .3s;
    }
    .tag:hover { border-color: rgba(232,25,60,.6); }
    .tag:hover::before { opacity: 1; }

    .hero-btns {
      display: flex; gap: 16px; flex-wrap: wrap; justify-content: center;
      animation: riseIn 1s .55s ease both;
    }
    .btn-ruby {
      position: relative; overflow: hidden;
      background: linear-gradient(135deg, var(--ruby-g) 0%, var(--ruby) 50%, var(--ruby-d) 100%);
      color: #fff; font-weight: 500; font-size: .9rem; letter-spacing: .1em;
      padding: 16px 42px; border-radius: 2px; text-decoration: none; border: none;
      box-shadow: 0 0 30px rgba(232,25,60,.5), 0 4px 20px rgba(0,0,0,.4);
      transition: transform .2s, box-shadow .2s;
    }
    .btn-ruby::before {
      content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,.2), transparent);
      transition: left .5s;
    }
    .btn-ruby:hover { transform: translateY(-3px); box-shadow: 0 0 50px rgba(232,25,60,.7), 0 8px 30px rgba(0,0,0,.5); }
    .btn-ruby:hover::before { left: 100%; }
    .btn-ghost {
      background: transparent; color: var(--gold-l);
      border: 1px solid rgba(245,200,66,.4);
      padding: 16px 38px; border-radius: 2px; font-size: .9rem; letter-spacing: .1em;
      text-decoration: none; transition: border-color .25s, box-shadow .25s, background .25s;
    }
    .btn-ghost:hover {
      border-color: var(--gold);
      background: rgba(245,200,66,.07);
      box-shadow: 0 0 20px rgba(245,200,66,.2);
    }

    .hero-scroll-hint {
      position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
      display: flex; flex-direction: column; align-items: center; gap: 8px;
      animation: riseIn 1s .8s ease both;
    }
    .scroll-text { font-size: .62rem; letter-spacing: .25em; color: rgba(245,200,66,.5); text-transform: uppercase; }
    .scroll-track { width: 1px; height: 60px; background: linear-gradient(to bottom, rgba(245,200,66,.5), transparent); position: relative; overflow: hidden; }
    .scroll-dot { width: 1px; height: 20px; background: var(--gold); position: absolute; top: -20px; animation: scrollDrop 2s ease-in-out infinite; }

    /* ─── MARQUEE ─── */
    .marquee-wrap {
      position: relative; z-index: 2;
      overflow: hidden;
      background: linear-gradient(to right, var(--ruby-d), var(--ruby), var(--ruby-d));
      border-top: 1px solid rgba(245,200,66,.3);
      border-bottom: 1px solid rgba(245,200,66,.3);
      padding: 14px 0;
    }
    .marquee-track {
      display: flex; gap: 0; white-space: nowrap;
      animation: marquee 18s linear infinite;
    }
    .marquee-item {
      display: inline-flex; align-items: center; gap: 20px;
      padding: 0 28px;
      font-family: 'Cinzel Decorative', serif;
      font-size: .62rem; letter-spacing: .2em; color: rgba(255,255,255,.9);
      text-transform: uppercase;
    }
    .marquee-diamond { width: 5px; height: 5px; background: var(--gold); transform: rotate(45deg); flex-shrink: 0; }

    /* ─── SECTION SHARED ─── */
    section { position: relative; z-index: 2; }
    .container { max-width: 1140px; margin: 0 auto; padding: 0 32px; }
    .sec-label {
      font-family: 'Cinzel Decorative', serif;
      font-size: .6rem; letter-spacing: .3em; color: var(--ruby-g);
      text-transform: uppercase; margin-bottom: 10px;
    }
    .sec-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 5vw, 3.2rem);
      font-weight: 700; line-height: 1.15; margin-bottom: 14px;
    }
    .sec-title em { font-style: italic; color: var(--gold); }
    .sec-sub { color: var(--smoke); max-width: 500px; font-size: .9rem; line-height: 1.85; }
    .ornament {
      display: flex; align-items: center; gap: 14px; margin: 16px 0;
    }
    .orn-line { height: 1px; width: 50px; background: linear-gradient(to right, var(--ruby), transparent); }
    .orn-diamond { width: 8px; height: 8px; border: 1px solid var(--ruby); transform: rotate(45deg); }

    /* ─── STATS ─── */
    .stats {
      padding: 72px 32px;
      background: linear-gradient(135deg, #12050e 0%, #0e0409 50%, #130610 100%);
      border-top: 1px solid rgba(245,200,66,.1);
      border-bottom: 1px solid rgba(245,200,66,.1);
    }
    .stats-row { display: flex; flex-wrap: wrap; justify-content: center; }
    .stat-item {
      flex: 1; min-width: 150px; max-width: 200px;
      text-align: center; padding: 24px 16px;
      position: relative;
    }
    .stat-item + .stat-item::before {
      content: ''; position: absolute; left: 0; top: 20%; height: 60%; width: 1px;
      background: linear-gradient(to bottom, transparent, rgba(245,200,66,.2), transparent);
    }
    .stat-n {
      font-family: 'Playfair Display', serif;
      font-size: 3.2rem; font-weight: 900; line-height: 1;
      background: linear-gradient(135deg, var(--gold-l), var(--gold));
      -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    }
    .stat-n sup { font-size: 1.4rem; }
    .stat-lbl { font-size: .7rem; letter-spacing: .14em; color: var(--smoke); margin-top: 6px; text-transform: uppercase; }

    /* ─── ABOUT ─── */
    .about {
      padding: 110px 32px;
      background: var(--velvet);
    }
    .about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
    .about-art {
      position: relative; height: 500px;
    }
    .art-box {
      position: absolute; border-radius: 2px;
    }
    .art-box-1 {
      inset: 0;
      background: linear-gradient(145deg, #1e0a18 0%, #0e0510 100%);
      border: 1px solid rgba(232,25,60,.2);
      overflow: hidden;
    }
    .art-box-2 {
      top: -14px; left: -14px; right: 14px; bottom: 14px;
      border: 1px solid rgba(245,200,66,.15);
      pointer-events: none;
    }
    .art-box-3 {
      top: 14px; left: 14px; right: -14px; bottom: -14px;
      border: 1px solid rgba(232,25,60,.1);
      pointer-events: none;
    }

    /* ─── ABOUT ART CENTER: 이미지 위, 텍스트 아래 ─── */
    .art-center {
      position: absolute; inset: 0;
      display: flex; flex-direction: column;
      align-items: stretch; justify-content: flex-start;
      gap: 0; padding: 0; overflow: hidden;
    }
    .art-photo {
      margin-top: 10px;
      width: 100%;
      flex: 1 1 auto;
      object-fit: contain;
      object-position: center;
      display: block;
      min-height: 0;
    }
    .art-info {
      flex: 0 0 auto;
      display: flex; flex-direction: column; align-items: center;
      gap: 10px; padding: 16px 12px;
      background: linear-gradient(to top, rgba(14,5,16,.95) 0%, rgba(14,5,16,.7) 100%);
    }
    .art-name {
      font-family: 'Playfair Display', serif;
      font-size: 1.6rem; font-style: italic;
      background: linear-gradient(135deg, var(--gold-l), var(--gold));
      -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
      letter-spacing: .08em;
    }
    .art-tag-strip {
      display: flex; gap: 8px; flex-wrap: wrap; justify-content: center;
    }
    .art-tag {
      font-size: .65rem; letter-spacing: .12em;
      border: 1px solid rgba(232,25,60,.35); color: rgba(255,255,255,.6);
      padding: 4px 12px; border-radius: 1px;
    }

    /* corner ornaments */
    .corner { position: absolute; width: 24px; height: 24px; z-index: 2; }
    .corner::before, .corner::after { content: ''; position: absolute; background: var(--gold); }
    .corner::before { width: 100%; height: 1px; top: 0; left: 0; }
    .corner::after { width: 1px; height: 100%; top: 0; left: 0; }
    .corner.tl { top: 12px; left: 12px; }
    .corner.tr { top: 12px; right: 12px; transform: scaleX(-1); }
    .corner.bl { bottom: 12px; left: 12px; transform: scaleY(-1); }
    .corner.br { bottom: 12px; right: 12px; transform: scale(-1); }

    .af-num {
      font-family: 'Playfair Display', serif;
      font-size: 2.2rem; font-weight: 900; color: #fff; line-height: 1;
    }
    .af-lbl { font-size: .68rem; letter-spacing: .1em; color: rgba(255,255,255,.7); margin-top: 4px; }

    /* ─── PRICING ─── */
    .pricing {
      padding: 110px 32px;
      background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(232,25,60,.08) 0%, transparent 60%), var(--ink2);
    }
    .price-header { text-align: center; margin-bottom: 56px; }
    .price-header .sec-sub { margin: 0 auto; text-align: center; }
    .price-header .ornament { justify-content: center; }
    .price-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 2px; }

    .pc {
      background: #12070f;
      border: 1px solid rgba(245,200,66,.1);
      padding: 40px 32px; position: relative; overflow: hidden;
      transition: border-color .3s, transform .3s;
    }
    .pc::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
      background: linear-gradient(to right, transparent, rgba(232,25,60,.4), transparent);
      transition: background .3s;
    }
    .pc.hot::before { background: linear-gradient(to right, var(--ruby-d), var(--ruby-g), var(--ruby-d)); }
    .pc:hover { border-color: rgba(245,200,66,.35); transform: translateY(-6px); }
    .pc:hover::before { background: linear-gradient(to right, var(--gold-d), var(--gold), var(--gold-d)); }
    .pc.hot {
      background: linear-gradient(160deg, #1e0412 0%, #12070f 60%);
      border-color: rgba(232,25,60,.3);
    }
    .hot-badge {
      position: absolute; top: 16px; right: 16px;
      background: linear-gradient(135deg, var(--ruby-g), var(--ruby));
      color: #fff; font-size: .6rem; font-weight: 700; letter-spacing: .12em;
      padding: 4px 12px; border-radius: 1px;
      box-shadow: 0 0 12px rgba(232,25,60,.5);
    }
    .pc-label { font-size: .68rem; letter-spacing: .2em; color: var(--smoke); text-transform: uppercase; margin-bottom: 16px; }
    .pc-price {
      font-family: 'Playfair Display', serif;
      font-size: 3.4rem; font-weight: 900; line-height: 1;
      color: var(--gold-l);
    }
    .pc-price sub { font-size: 1rem; font-weight: 400; color: var(--smoke); vertical-align: middle; }
    .pc-unit { font-size: .72rem; color: var(--smoke); margin-bottom: 22px; letter-spacing: .08em; }
    .pc-desc { font-size: .84rem; color: var(--smoke); line-height: 1.75; }

    .price-note-wrap {
      margin-top: 40px;
      background: rgba(245,200,66,.05);
      border: 1px solid rgba(245,200,66,.2);
      border-radius: 2px; padding: 24px 32px;
      text-align: center;
    }
    .price-note-wrap p { font-size: .85rem; color: var(--smoke); line-height: 1.8; }
    .price-note-wrap strong { color: var(--gold); }

    /* ─── FEATURES ─── */
    .features {
      padding: 110px 32px;
      background: var(--velvet);
    }
    .seo-guide-hidden {
      position: absolute;
      width: 1px;
      height: 1px;
      margin: -1px;
      padding: 0;
      overflow: hidden;
      clip: rect(0 0 0 0);
      clip-path: inset(50%);
      border: 0;
      white-space: normal;
    }
    .feat-header { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end; margin-bottom: 56px; }
    .feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
    @media (max-width: 900px) { .feat-grid { grid-template-columns: 1fr 1fr; } }

    .fc {
      position: relative; overflow: hidden;
      background: linear-gradient(145deg, #150310 0%, #0d0208 100%);
      border: 1px solid rgba(255,255,255,.06);
      padding: 36px 28px; border-radius: 2px;
      transition: border-color .3s, transform .3s, box-shadow .3s;
    }
    .fc::after {
      content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
      background: linear-gradient(to right, var(--ruby-d), var(--ruby-g), var(--ruby-d));
      transform: scaleX(0); transform-origin: left;
      transition: transform .4s;
    }
    .fc:hover { border-color: rgba(232,25,60,.35); transform: translateY(-5px); box-shadow: 0 12px 40px rgba(0,0,0,.4), 0 0 20px rgba(232,25,60,.1); }
    .fc:hover::after { transform: scaleX(1); }
    .fc-num {
      font-family: 'Playfair Display', serif;
      font-size: 3.5rem; font-weight: 900; line-height: 1;
      color: rgba(232,25,60,.12); position: absolute; top: 16px; right: 20px;
    }
    .fc-icon { font-size: 1.8rem; margin-bottom: 18px; }
    .fc-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; color: var(--cream);
    }
    .fc-text { font-size: .82rem; color: var(--smoke); line-height: 1.75; }

    /* ─── REVIEWS ─── */
    .reviews {
      padding: 110px 32px;
      background: radial-gradient(ellipse 70% 50% at 50% 100%, rgba(232,25,60,.07), transparent 65%), var(--ink2);
    }
    .reviews-header { text-align: center; margin-bottom: 56px; }
    .reviews-header .ornament { justify-content: center; }
    .review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: 24px; padding-bottom: 50px; }
    .rv {
      display: block;
      color: inherit;
      text-decoration: none;
      background: linear-gradient(145deg, #150a12, #0d0509);
      border: 1px solid rgba(255,255,255,.07);
      padding: 32px 28px; border-radius: 2px;
      position: relative; overflow: hidden;
      transition: border-color .3s, transform .3s;
    }
    .rv::before {
      content: '"'; position: absolute; top: -10px; left: 16px;
      font-family: 'Playfair Display', serif; font-size: 7rem; font-weight: 900;
      color: rgba(232,25,60,.08); line-height: 1;
    }
    .rv:hover { border-color: rgba(232,25,60,.3); }
    .community-review-card { display: flex; flex-direction: column; min-height: 260px; cursor: pointer; }
    .community-review-card:hover { transform: translateY(-4px); }
    .community-review-card:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }
    .rv-stars { color: var(--gold); font-size: .85rem; letter-spacing: .1em; margin-bottom: 16px; }
    .rv-text { font-size: .875rem; color: var(--smoke); line-height: 1.85; margin-bottom: 20px; position: relative; z-index: 1; }
    .rv-author { font-size: .72rem; letter-spacing: .12em; color: rgba(245,200,66,.6); text-transform: uppercase; }

    .community-review-status {
      padding: 18px;
      border: 1px solid rgba(255,255,255,.06);
      color: rgba(255,255,255,.72);
      text-align: center;
      font-size: .85rem;
      background: rgba(255,255,255,.025);
    }
    .community-review-status.is-hidden { display: none; }
    .community-review-date { font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(245,200,66,.72); margin-bottom: 12px; }
    .community-review-title { color: var(--cream); font-size: 1rem; line-height: 1.5; margin-bottom: 12px; }
    .community-review-content {
      color: var(--smoke);
      font-size: .82rem;
      line-height: 1.75;
      display: -webkit-box;
      -webkit-line-clamp: 4;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    .community-review-more { margin-top: auto; padding-top: 18px; color: var(--gold); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; text-decoration: none; }
    .community-review-more:hover { text-decoration: underline; }

    /* ─── INFO ─── */
    .info {
      padding: 110px 32px;
      background: linear-gradient(135deg, #130610 0%, #0e0510 50%, #1a0515 100%);
      border-top: 1px solid rgba(245,200,66,.1);
    }
    .info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
    .info-table { width: 100%; border-collapse: collapse; margin-top: 32px; }
    .info-table tr { border-bottom: 1px solid rgba(255,255,255,.05); }
    .info-table td { padding: 16px 0; font-size: .88rem; vertical-align: top; }
    .info-table td:first-child {
      font-size: .68rem; letter-spacing: .15em; text-transform: uppercase;
      color: var(--gold); width: 90px; padding-top: 18px;
    }

    /* ─── INFO MAP: 카카오 지도 위, 텍스트 아래 ─── */
    .info-map {
      background: linear-gradient(145deg, #180a15, #0d0509);
      border: 1px solid rgba(245,200,66,.15);
      border-radius: 2px;
      display: flex; flex-direction: column;
      align-items: stretch; justify-content: flex-start;
      overflow: hidden; position: relative;
    }
    .info-map::before {
      content: '';
      position: absolute; inset: 0; z-index: 0;
      background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(232,25,60,.08), transparent);
      pointer-events: none;
    }
    .kakao-map {
      width: 100%;
      min-height: 360px;
      background: linear-gradient(135deg, rgba(245,200,66,.08), rgba(232,25,60,.08));
      position: relative;
      z-index: 1;
    }
    .map-fallback {
      position: absolute;
      inset: 0;
      display: grid;
      place-items: center;
      margin: 0;
      padding: 24px;
      color: var(--smoke);
      font-size: .85rem;
      text-align: center;
    }
    .map-text {
      display: flex; flex-direction: column; align-items: center;
      gap: 10px; padding: 24px 20px;
      position: relative; z-index: 1;
    }
    .map-icon { font-size: 2.8rem; filter: drop-shadow(0 0 20px rgba(232,25,60,.5)); }
    .map-name {
      font-family: 'Playfair Display', serif;
      font-size: 1.2rem; font-weight: 700; color: var(--gold);
    }
    .map-addr { font-size: .8rem; color: var(--smoke); text-align: center; line-height: 1.7; }
    .map-link {
      font-size: .75rem; color: var(--ruby-g); text-decoration: underline;
      letter-spacing: .08em;
    }

    /* ─── FAQ ─── */
    .faq {
      padding: 110px 32px;
      background: var(--ink2);
    }
    .faq-inner { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: start; }
    .faq-list { margin-top: 0; }
    .faq-item { border-bottom: 1px solid rgba(255,255,255,.06); }
    .faq-btn {
      width: 100%; background: none; border: none; cursor: none;
      color: var(--ivory); text-align: left;
      font-family: 'Noto Sans KR', sans-serif; font-size: .9rem; font-weight: 500;
      padding: 22px 0; display: flex; justify-content: space-between; align-items: center; gap: 16px;
      transition: color .2s;
    }
    .faq-btn:hover { color: var(--gold-l); }
    .faq-icon {
      width: 22px; height: 22px; border: 1px solid rgba(232,25,60,.4); border-radius: 1px;
      display: grid; place-items: center; flex-shrink: 0;
      color: var(--ruby-g); font-size: .8rem; transition: transform .3s, background .3s;
    }
    .faq-item.open .faq-icon { transform: rotate(45deg); background: rgba(232,25,60,.15); }
    .faq-ans {
      font-size: .85rem; color: var(--smoke); line-height: 1.85;
      max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .3s;
    }
    .faq-item.open .faq-ans { max-height: 220px; padding-bottom: 22px; }

    /* ─── CTA ─── */
    .cta {
      padding: 120px 32px; text-align: center; position: relative; overflow: hidden;
      background: linear-gradient(160deg, #1e0310 0%, #12040e 50%, #1a0310 100%);
      border-top: 1px solid rgba(245,200,66,.15);
    }
    .cta::before {
      content: '';
      position: absolute; inset: 0;
      background:
        radial-gradient(ellipse 50% 60% at 50% 50%, rgba(232,25,60,.18) 0%, transparent 65%),
        radial-gradient(circle 300px at 10% 80%, rgba(245,200,66,.08) 0%, transparent 60%),
        radial-gradient(circle 200px at 90% 20%, rgba(245,200,66,.06) 0%, transparent 60%);
    }
    .cta-content { position: relative; z-index: 1; }
    .cta h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900;
      margin-bottom: 16px; line-height: 1.2;
    }
    .cta h2 em { font-style: italic; color: var(--gold); }
    .cta p { color: var(--smoke); max-width: 440px; margin: 0 auto 40px; line-height: 1.85; }
    .cta-phone {
      display: block; font-family: 'Playfair Display', serif;
      font-size: clamp(2.4rem, 7vw, 4rem); font-weight: 900;
      background: linear-gradient(135deg, var(--gold-l), var(--gold), var(--ruby-g));
      -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
      text-decoration: none; margin-bottom: 12px; letter-spacing: .04em;
      filter: drop-shadow(0 0 30px rgba(245,200,66,.3));
    }
    .cta-sub { font-size: .75rem; color: var(--smoke); letter-spacing: .15em; margin-bottom: 36px; }

    /* ─── FOOTER ─── */
    footer {
      background: #050307;
      border-top: 1px solid rgba(255,255,255,.05);
      padding: 52px 32px 28px;
    }
    .footer-top {
      max-width: 1140px; margin: 0 auto;
      display: flex; flex-wrap: wrap; gap: 36px;
      justify-content: space-between; align-items: flex-start;
      padding-bottom: 32px;
      border-bottom: 1px solid rgba(255,255,255,.05);
    }
    .footer-brand {
      font-family: 'Cinzel Decorative', serif; font-size: .85rem; font-weight: 700;
      background: linear-gradient(135deg, var(--gold-l), var(--gold));
      -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
      letter-spacing: .12em;
    }
    .footer-brand small { display: block; font-family: 'Noto Sans KR', sans-serif; font-size: .7rem; color: var(--smoke); font-weight: 300; margin-top: 6px; -webkit-text-fill-color: var(--smoke); }
    .footer-links { display: flex; gap: 24px; flex-wrap: wrap; list-style: none; }
    .footer-links a { color: var(--smoke); font-size: .78rem; text-decoration: none; letter-spacing: .06em; transition: color .2s; }
    .footer-links a:hover { color: var(--gold); }
    .footer-bottom {
      max-width: 1140px; margin: 24px auto 0;
      font-size: .72rem; color: rgba(200,184,192,.4); line-height: 1.8;
    }

    /* ─── FLOATING ─── */
    .float-cta {
      position: fixed; bottom: 32px; right: 32px; z-index: 400;
      text-decoration: none;
      background: linear-gradient(135deg, var(--ruby-g), var(--ruby));
      color: #fff; font-weight: 500; font-size: .8rem; letter-spacing: .1em;
      padding: 14px 24px; border-radius: 32px;
      box-shadow: 0 0 0 0 rgba(232,25,60,.5);
      animation: pulse 2.5s ease-in-out infinite;
    }
    .float-cta:hover { animation: none; box-shadow: 0 8px 30px rgba(232,25,60,.6); transform: scale(1.04); }

    /* ─── KEYFRAMES ─── */
    @keyframes riseIn {
      from { opacity: 0; transform: translateY(28px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes scrollDrop {
      0%   { top: -20px; opacity: 1; }
      100% { top: 60px;  opacity: 0; }
    }
    @keyframes marquee {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }
    @keyframes pulse {
      0%,100% { box-shadow: 0 0 0 0 rgba(232,25,60,.55); }
      50%      { box-shadow: 0 0 0 14px rgba(232,25,60,0); }
    }

    /* ─── REVEAL ON SCROLL ─── */
    .reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
    .reveal.in { opacity: 1; transform: translateY(0); }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 900px) {
      nav { padding: 0 20px; }
      .nav-links { display: none; }
      .about-inner, .info-grid, .faq-inner, .feat-header { grid-template-columns: 1fr; gap: 40px; }
      .about-art { height: 300px; }
    }
    @media (max-width: 600px) {
      .feat-grid { grid-template-columns: 1fr; }
      .float-cta { bottom: 20px; right: 16px; }
    }

    /* ─── LIVE INFO ─── */
    .live-info {
      padding: 110px 32px;
      background:
        radial-gradient(ellipse 75% 55% at 50% 0%, rgba(245,200,66,.1) 0%, transparent 62%),
        linear-gradient(180deg, #0b0509 0%, var(--ink2) 100%);
    }
    .live-info-header { text-align: center; margin-bottom: 36px; }
    .live-info-header .sec-sub { margin: 0 auto; text-align: center; }
    .live-info-status {
      max-width: 760px; margin: 0 auto 28px; padding: 14px 18px;
      border: 1px solid rgba(245,200,66,.18); border-radius: 2px;
      background: rgba(245,200,66,.04); color: var(--smoke);
      text-align: center; font-size: .82rem; line-height: 1.7;
    }
    .live-info-status.is-hidden { display: none; }
    .live-info-cta { display: flex; justify-content: center; margin: -8px 0 30px; }
    .live-info-link {
      position: relative; display: inline-flex; align-items: center; justify-content: center;
      min-width: 220px; padding: 14px 28px; border: 1px solid rgba(245,200,66,.42); border-radius: 2px;
      background: linear-gradient(135deg, rgba(245,200,66,.12), rgba(232,25,60,.12));
      color: var(--gold-l); font-size: .86rem; font-weight: 500; letter-spacing: .12em; text-decoration: none;
      box-shadow: 0 12px 34px rgba(0,0,0,.24); transition: transform .2s, border-color .2s, box-shadow .2s, background .2s;
    }
    .live-info-link::after { content: '↗'; margin-left: 10px; color: var(--ruby-g); font-size: .9rem; }
    .live-info-link:hover {
      transform: translateY(-2px); border-color: var(--gold);
      background: linear-gradient(135deg, rgba(245,200,66,.18), rgba(232,25,60,.18));
      box-shadow: 0 16px 42px rgba(232,25,60,.2);
    }
    .live-info-grid { display: grid; grid-template-columns: minmax(280px, .9fr) minmax(320px, 1.1fr); gap: 18px; align-items: stretch; }
    .live-card {
      position: relative; overflow: hidden; padding: 32px;
      border: 1px solid rgba(245,200,66,.16); border-radius: 2px;
      background: rgba(18,7,15,.86); box-shadow: 0 18px 60px rgba(0,0,0,.25);
    }
    .live-card::before {
      content: ''; position: absolute; inset: 0 0 auto; height: 3px;
      background: linear-gradient(to right, transparent, rgba(245,200,66,.55), rgba(232,25,60,.5), transparent);
    }
    .live-card-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; margin-bottom: 24px; }
    .live-card-label { color: var(--ruby-g); font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; margin-bottom: 8px; }
    .live-card h3 { color: var(--ivory); font-family: 'Noto Serif KR', serif; font-size: clamp(1.35rem, 3vw, 2rem); line-height: 1.25; }
    .live-pill {
      flex-shrink: 0; max-width: 190px; padding: 7px 12px; border: 1px solid rgba(245,200,66,.24);
      color: var(--gold-l); background: rgba(245,200,66,.06); font-size: .68rem; line-height: 1.45; text-align: right;
    }
    .live-metrics { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-bottom: 24px; }
    .live-metric { padding: 22px 18px; border: 1px solid rgba(245,200,66,.14); background: rgba(8,5,9,.6); text-align: center; }
    .live-metric-value { display: block; color: var(--gold-l); font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 900; line-height: 1; }
    .live-metric-value.is-relaxed { font-size: 2rem; white-space: nowrap; }
    .live-metric-label { display: block; margin-top: 8px; color: var(--smoke); font-size: .72rem; letter-spacing: .12em; }
    .room-detail-list { display: grid; gap: 12px; }
    .room-floor { border: 1px solid rgba(245,200,66,.12); background: rgba(245,200,66,.035); padding: 16px; }
    .room-floor-title { color: var(--gold); font-size: .86rem; letter-spacing: .16em; margin-bottom: 12px; }
    .room-type-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
    .room-type { display: flex; justify-content: space-between; gap: 8px; color: var(--cream); font-size: .82rem; }
    .room-type strong { color: var(--ivory); }
    .entry-list { display: flex; flex-wrap: wrap; gap: 8px; max-height: 430px; overflow: auto; padding-right: 4px; }
    .entry-chip { border: 1px solid rgba(245,200,66,.18); background: rgba(245,200,66,.045); color: var(--cream); padding: 8px 11px; font-size: .8rem; line-height: 1; }
    .entry-chip small { color: rgba(245,200,66,.72); margin-left: 5px; }
    .live-empty { color: var(--smoke); font-size: .86rem; line-height: 1.7; }
    @media (max-width: 860px) { .live-info-grid { grid-template-columns: 1fr; } .room-type-grid { grid-template-columns: 1fr; } }
