:root {
  --bg: #0d1417;
  --surface: #182226;
  --ink: #f1f6f6;
  --muted: #92a3a6;
  --teal: #26bcae;
  --line: rgba(255, 255, 255, 0.12);
  --dark: #080d0f;
  --dark-line: rgba(255, 255, 255, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.room-clone {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Segoe UI', system-ui, sans-serif;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
.wrap5 { max-width: 1360px; margin: 0 auto; padding: 0 32px; }
.heavy5 { font-weight: 800; letter-spacing: -0.01em; }

.reveal5 { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal5.visible { opacity: 1; transform: translateY(0); }

.btn5 { display: inline-flex; align-items: center; gap: 10px; padding: 15px 26px; border-radius: 999px; font-weight: 800; font-size: 0.92rem; border: 1px solid transparent; transition: transform .25s ease, box-shadow .25s ease; }
.btn5:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(0,0,0,0.15); }
.btn5-ink { background: var(--ink); color: var(--dark); }
.btn5-teal { background: var(--teal); color: #04211d; }
.btn5-outline { border-color: var(--line); color: var(--ink); }

/* Header */
.header5 { position: sticky; top: 44px; z-index: 60; display: flex; align-items: center; justify-content: space-between; padding: 20px 32px; background: color-mix(in srgb, var(--bg) 82%, transparent); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.brand5 { display: flex; align-items: baseline; gap: 10px; font-size: 1.15rem; }
.brand5 .cross { color: var(--teal); margin-right: 2px; }
.brand5 span.tagline { font-size: 0.78rem; font-weight: 600; color: var(--muted); }
.menu-btn5 { position: relative; }
.menu-panel5 { position: absolute; top: calc(100% + 10px); right: 0; background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 12px; min-width: 200px; box-shadow: 0 24px 50px rgba(0,0,0,0.4); display: none; flex-direction: column; gap: 4px; }
.menu-panel5.open { display: flex; }
.menu-panel5 a { padding: 10px 14px; border-radius: 8px; font-weight: 600; font-size: 0.95rem; }
.menu-panel5 a:hover { background: var(--bg); color: var(--teal); }

/* Hero */
.hero5 { min-height: 88vh; display: flex; flex-direction: column; justify-content: center; padding: 60px 32px; }
.hero5 h1 { font-size: clamp(2.6rem, 7.5vw, 6rem); line-height: 1; margin: 0; max-width: 900px; }
.hero-row5 { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; margin-top: 40px; flex-wrap: wrap; }
.scroll-indicator5 { display: flex; align-items: center; gap: 12px; font-weight: 700; font-size: 0.9rem; color: var(--muted); }
.scroll-indicator5 .dot { width: 26px; height: 40px; border: 2px solid var(--ink); border-radius: 999px; position: relative; }
.scroll-indicator5 .dot::after { content: ""; position: absolute; top: 6px; left: 50%; width: 4px; height: 8px; background: var(--ink); border-radius: 999px; transform: translateX(-50%); animation: scrollDot5 1.6s ease infinite; }
@keyframes scrollDot5 { 0%,100% { top: 6px; opacity: 1; } 60% { top: 20px; opacity: 0; } }
.hero-sub5 { max-width: 380px; font-size: 1.1rem; color: var(--muted); text-align: right; }

/* Transition */
.transition5 { padding: 120px 32px 70px; text-align: center; }
.transition5 h2 { font-size: clamp(2.6rem, 7vw, 5rem); margin: 0 0 20px; line-height: 1; }
.transition5 p { color: var(--muted); font-size: 1.1rem; margin: 0 0 40px; }
.look-pill { display: inline-flex; align-items: center; gap: 14px; background: var(--ink); color: var(--dark); padding: 10px 10px 10px 22px; border-radius: 999px; font-weight: 800; }
.look-pill .ring { width: 34px; height: 34px; border-radius: 50%; border: 2px solid var(--teal); display: flex; align-items: center; justify-content: center; }
.look-pill .ring svg { width: 14px; height: 14px; color: var(--teal); }

/* Room section */
.room-section { position: relative; height: 480vh; background: var(--dark); }
.room-sticky { position: sticky; top: 0; height: 100vh; overflow: hidden; color: #fff; display: flex; align-items: center; justify-content: center; }
.room-stage { position: relative; width: 100%; height: 100%; perspective: 1500px; display: flex; align-items: center; justify-content: center; }
.room-ceiling, .room-floor { position: absolute; left: 50%; width: 1400px; height: 1400px; border-radius: 50%; transform: translateX(-50%); }
.room-ceiling { top: -1080px; background: radial-gradient(circle, rgba(255,255,255,0.08), transparent 68%); }
.room-floor { bottom: -1080px; background: radial-gradient(circle, rgba(255,255,255,0.14), transparent 68%); }
.room-ring { position: relative; width: 10px; height: 10px; transform-style: preserve-3d; will-change: transform; }
.room-wall {
  position: absolute; top: 50%; left: 50%; width: 560px; height: 480px;
  margin: -240px 0 0 -280px;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid rgba(255,255,255,0.18);
  box-shadow: inset 0 0 80px rgba(0,0,0,0.25);
  backface-visibility: hidden;
}
.room-wall .wall-icon { width: 96px; height: 96px; opacity: 0.9; }
.room-wall .wall-icon svg { width: 100%; height: 100%; }
.room-wall .wall-name { position: absolute; bottom: 30px; left: 0; right: 0; text-align: center; font-weight: 800; font-size: 1.3rem; letter-spacing: 0.03em; }
.wall-w1 { background: linear-gradient(160deg, #e8ddc9, #c9b98f); color: #40331a; }
.wall-w2 { background: linear-gradient(160deg, #e2665a, #a83a30); color: #2c0806; }
.wall-w3 { background: linear-gradient(160deg, #f0c04b, #c99420); color: #3a2a02; }
.wall-w4 { background: linear-gradient(160deg, #4fa79c, #266b62); color: #05201c; }
.wall-w5 { background: linear-gradient(160deg, #9b8bc4, #6a5896); color: #17102b; }
.room-wall.wall-w1 { transform: rotateY(0deg) translateZ(-420px); }
.room-wall.wall-w2 { transform: rotateY(-72deg) translateZ(-420px); }
.room-wall.wall-w3 { transform: rotateY(-144deg) translateZ(-420px); }
.room-wall.wall-w4 { transform: rotateY(-216deg) translateZ(-420px); }
.room-wall.wall-w5 { transform: rotateY(-288deg) translateZ(-420px); }

.room-hud { position: absolute; left: 0; right: 0; bottom: 26px; display: flex; flex-direction: column; align-items: center; gap: 16px; padding: 0 32px; z-index: 5; }
.room-hud .dept-info { text-align: center; max-width: 480px; }
.room-hud .dept-info h3 { margin: 0 0 6px; font-size: 1.3rem; }
.room-hud .dept-info p { margin: 0; color: rgba(255,255,255,0.7); font-size: 0.95rem; min-height: 42px; }
.room-slider-row { display: flex; align-items: center; gap: 14px; width: 100%; max-width: 520px; }
.room-slider-row span { font-size: 0.78rem; font-weight: 700; color: rgba(255,255,255,0.6); }
.room-slider-row input[type="range"] { flex: 1; -webkit-appearance: none; appearance: none; height: 3px; background: rgba(255,255,255,0.25); border-radius: 999px; outline: none; }
.room-slider-row input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; width: 16px; height: 16px; border-radius: 50%; background: var(--teal); cursor: pointer; }
.room-slider-row input[type="range"]::-moz-range-thumb { width: 16px; height: 16px; border: none; border-radius: 50%; background: var(--teal); cursor: pointer; }

/* Sections */
.section5 { padding: 110px 0; }
.section5.tight { padding: 70px 0; }
.eyebrow5 { text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.78rem; color: var(--muted); margin-bottom: 14px; }
.section5 h2.big5 { font-size: clamp(2.2rem, 5vw, 3.4rem); margin: 0 0 50px; max-width: 720px; }
.dept-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.dept-card { border-radius: 18px; padding: 26px 20px; color: #fff; min-height: 200px; display: flex; flex-direction: column; justify-content: flex-end; transition: transform .3s ease, box-shadow .3s ease; }
.dept-card:hover { transform: translateY(-8px); box-shadow: 0 24px 40px rgba(0,0,0,0.18); }
.dept-card h3 { margin: 0 0 8px; font-size: 1.05rem; }
.dept-card p { margin: 0; font-size: 0.85rem; opacity: 0.9; }
.dept-card .icon-wrap { width: 42px; height: 42px; margin-bottom: 16px; }
.dept-card .icon-wrap svg { width: 100%; height: 100%; }

/* Stats */
.stats-band5 { background: var(--surface); color: var(--ink); padding: 70px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stats-grid5 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stats-grid5 strong { display: block; font-size: clamp(2rem, 4vw, 3rem); color: var(--teal); }
.stats-grid5 span { color: rgba(243,246,246,0.7); font-size: 0.92rem; }

/* Testimonials */
.testi-grid5 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testi-card5 { background: var(--surface); border: 1px solid var(--line); border-radius: 18px; padding: 30px; }
.testi-card5 .stars { color: var(--teal); letter-spacing: 2px; margin-bottom: 14px; }
.testi-card5 p.quote { font-size: 1.02rem; margin: 0 0 18px; }
.testi-card5 .who { font-weight: 700; font-size: 0.9rem; color: var(--muted); }

/* Contact */
.contact-band5 { background: var(--dark); color: #fff; border-radius: 28px; padding: 60px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 30px; }
.contact-band5 h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin: 0 0 10px; }
.contact-band5 p { color: rgba(255,255,255,0.7); margin: 0; max-width: 420px; }

/* Footer */
.footer5 { padding: 70px 0 30px; }
.footer-top5 { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid var(--line); margin-bottom: 24px; }
.footer-col5 h4 { text-transform: uppercase; font-size: 0.76rem; letter-spacing: 0.14em; color: var(--muted); margin: 0 0 14px; }
.footer-col5 a, .footer-col5 div { display: block; margin-bottom: 10px; font-size: 0.95rem; }
.footer-col5 a:hover { color: var(--teal); }
.footer-bottom5 { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; color: var(--muted); font-size: 0.85rem; }

@media (max-width: 980px) {
  .dept-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid5 { grid-template-columns: 1fr 1fr; }
  .testi-grid5 { grid-template-columns: 1fr; }
  .room-wall { width: 420px; height: 380px; margin: -190px 0 0 -210px; }
}
@media (max-width: 700px) {
  .hero-row5 { flex-direction: column; align-items: flex-start; }
  .hero-sub5 { text-align: left; }
  .dept-grid { grid-template-columns: 1fr; }
  .stats-grid5 { grid-template-columns: 1fr 1fr; }
  .contact-band5 { flex-direction: column; align-items: flex-start; }
  .room-wall { width: 300px; height: 320px; margin: -160px 0 0 -150px; }
  .room-wall .wall-icon { width: 64px; height: 64px; }
}
