﻿/* Copyright 2026 HomeOne Interiors. All rights reserved. */
.ph-hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  overflow: hidden; padding-top: var(--nav-h);
}
.ph-bg { position: absolute; inset: 0; z-index: 0; }
.ph-bg-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center; background-repeat: no-repeat;
  transform: scale(1.07);
  animation: phDrift 24s ease-in-out infinite alternate;
}
@keyframes phDrift {
  from { transform: scale(1.07) translate(0, 0); }
  to   { transform: scale(1.07) translate(-2.5%, -1.2%); }
}
.ph-overlay-1 {
  position: absolute; inset: 0;
  background: linear-gradient(108deg,
    rgba(6,13,26,.97) 0%,
    rgba(6,13,26,.88) 36%,
    rgba(6,13,26,.52) 68%,
    rgba(6,13,26,.82) 100%
  );
}
.ph-overlay-2 {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6,13,26,1) 0%, transparent 45%);
}
.ph-overlay-3 {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 55% 60% at 72% 38%, rgba(26,107,218,.16) 0%, transparent 60%);
  animation: phGlowPulse 7s ease-in-out infinite alternate;
}
@keyframes phGlowPulse {
  from { opacity: .5; }
  to   { opacity: 1; }
}
.ph-grain {
  position: absolute; inset: -50%; width: 200%; height: 200%; z-index: 2; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='512' height='512' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: .025; animation: grain 8s steps(10) infinite;
}
.ph-beam {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(112deg, transparent 30%, rgba(26,107,218,.055) 50%, transparent 70%);
  animation: phBeamMove 12s ease-in-out infinite alternate;
}
@keyframes phBeamMove {
  from { transform: skewX(-6deg) translateX(-10%); opacity: .3; }
  to   { transform: skewX(-6deg) translateX(10%); opacity: 1; }
}
.ph-scan {
  position: absolute; left: 0; right: 0; height: 1px; z-index: 3; pointer-events: none;
  background: linear-gradient(to right,
    transparent 0%,
    rgba(26,107,218,.35) 25%,
    rgba(26,107,218,.65) 50%,
    rgba(26,107,218,.35) 75%,
    transparent 100%
  );
  animation: phScanMove 8s linear infinite;
}
@keyframes phScanMove {
  0%   { top: 12%; opacity: 0; }
  6%   { opacity: 1; }
  94%  { opacity: 1; }
  100% { top: 88%; opacity: 0; }
}
.ph-ghost-yr {
  position: absolute; right: -4%; bottom: 8%; z-index: 1; pointer-events: none; user-select: none;
  font-family: var(--fh); font-size: clamp(10rem, 24vw, 22rem); font-weight: 700;
  line-height: 1; letter-spacing: -.04em; color: var(--blue); opacity: .04;
  animation: phGhostDrift 20s ease-in-out infinite alternate;
}
@keyframes phGhostDrift {
  from { transform: translate(0, 0) rotate(-1.5deg); }
  to   { transform: translate(-2%, -3%) rotate(-.5deg); }
}
.ph-frame { position: absolute; inset: 24px; z-index: 3; pointer-events: none; }
.ph-corner {
  position: absolute; width: 40px; height: 40px;
  border-color: rgba(26,107,218,.45); border-style: solid;
  transition: width .6s var(--ease), height .6s var(--ease);
}
.ph-hero:hover .ph-corner { width: 56px; height: 56px; }
.ph-corner-tl { top: 0; left: 0; border-width: 1px 0 0 1px; }
.ph-corner-tr { top: 0; right: 0; border-width: 1px 1px 0 0; }
.ph-corner-bl { bottom: 0; left: 0; border-width: 0 0 1px 1px; }
.ph-corner-br { bottom: 0; right: 0; border-width: 0 1px 1px 0; }
.ph-content {
  position: relative; z-index: 5; padding: 80px 0 200px; max-width: 860px;
}
.ph-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 11px; font-weight: 700; letter-spacing: .36em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 48px;
  opacity: 0; animation: phFadeIn .8s var(--ease) .2s forwards;
}
@keyframes phFadeIn { to { opacity: 1; } }
.ph-eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--blue); flex-shrink: 0;
  box-shadow: 0 0 12px rgba(26,107,218,.9), 0 0 24px rgba(26,107,218,.5);
  animation: phDotPulse 2.4s ease-in-out infinite;
}
@keyframes phDotPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 10px rgba(26,107,218,.7); }
  50%       { transform: scale(1.6); box-shadow: 0 0 22px rgba(26,107,218,1), 0 0 40px rgba(26,107,218,.4); }
}
.ph-h1 {
  font-size: clamp(3.8rem, 6vw, 6.4rem); font-weight: 700;
  line-height: .92; letter-spacing: -.04em; margin: 0 0 36px;
}
.ph-h1-row { display: block; overflow: hidden; }
.ph-h1-inner {
  display: block; transform: translateY(115%);
  animation: phRowUp .9s cubic-bezier(.22,.61,.36,1) forwards;
}
.ph-h1-row:nth-child(2) .ph-h1-inner { animation-delay: .11s; }
.ph-h1-row:nth-child(3) .ph-h1-inner { animation-delay: .22s; }
@keyframes phRowUp { to { transform: translateY(0); } }
.ph-h1-blue { color: var(--blue); }
.ph-desc {
  font-size: 17px; color: var(--mute); line-height: 1.8; max-width: 520px; margin-bottom: 48px;
}
.ph-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.ph-ctas .btn-outline {
  border-color: rgba(255,255,255,.45); color: rgba(255,255,255,.92);
  background: rgba(255,255,255,.08); backdrop-filter: blur(10px);
}
.ph-ctas .btn-outline:hover {
  border-color: rgba(255,255,255,.85); color: var(--white);
  background: rgba(255,255,255,.16);
}
.ph-bottom {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 5;
  border-top: 1px solid rgba(26,107,218,.14);
}
.ph-bottom-inner { display: flex; align-items: stretch; }
.ph-bottom-stats {
  display: flex; width: 100%; background: rgba(6,13,26,.55); backdrop-filter: blur(14px);
}
.ph-bstat {
  flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 18px 12px; border-right: 1px solid rgba(26,107,218,.1); text-align: center;
}
.ph-bstat:last-child { border-right: none; }
.ph-bstat strong {
  font-family: var(--fh); font-size: 1.35rem; font-weight: 700; color: var(--white); line-height: 1;
}
.ph-bstat span {
  font-size: 9.5px; color: var(--mute); letter-spacing: .1em; text-transform: uppercase; margin-top: 4px;
}
.ph-scroll-cue {
  position: absolute; bottom: 90px; right: 44px; z-index: 5;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.ph-scroll-line {
  width: 1px; height: 72px;
  background: linear-gradient(to bottom, rgba(26,107,218,.9), transparent);
  animation: phScrollPulse 2.8s ease-in-out infinite;
}
@keyframes phScrollPulse {
  0%, 100% { transform: scaleY(.2); transform-origin: top; opacity: .3; }
  50%       { transform: scaleY(1); transform-origin: top; opacity: 1; }
}
.ph-scroll-label {
  font-size: 9px; font-weight: 700; letter-spacing: .32em; text-transform: uppercase;
  color: rgba(26,107,218,.55); writing-mode: vertical-rl;
}
.sv-stats {
  background: rgba(26,107,218,.07);
  border-top: 1px solid rgba(26,107,218,.2);
  border-bottom: 1px solid rgba(26,107,218,.2);
  padding: 0;
}
.sv-stats-inner {
  display: flex; align-items: stretch;
}
.sv-stat-item {
  flex: 1; display: flex; align-items: center; gap: 14px;
  padding: 20px 24px;
  border-right: 1px solid rgba(26,107,218,.15);
}
.sv-stat-item:last-child { border-right: none; }
.sv-stat-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(26,107,218,.18);
  border-radius: 6px; font-size: 14px; color: var(--blue);
}
.sv-stat-body { display: flex; flex-direction: column; }
.sv-stat-body strong {
  font-family: var(--fh); font-size: .95rem; font-weight: 700;
  color: var(--white); line-height: 1; letter-spacing: .02em;
}
.sv-stat-body span {
  font-size: 10.5px; color: rgba(26,107,218,.75); letter-spacing: .08em;
  margin-top: 3px; text-transform: uppercase; font-weight: 600;
}
.sv-intro {
  padding: 120px 0; background: var(--bg);
  position: relative; overflow: hidden;
}
.sv-intro::before {
  content: ''; position: absolute; right: 0; top: 0; bottom: 0;
  width: 42%; background: var(--bg2); z-index: 0;
}
.sv-intro-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center; position: relative; z-index: 1;
}
.sv-intro-text .eyebrow { margin-bottom: 16px; }
.sv-intro-text h2 { font-size: clamp(2rem, 3.5vw, 3rem); margin-bottom: 24px; }
.sv-intro-text h2 em { font-style: normal; color: var(--blue); }
.sv-intro-text p {
  font-size: 16px; color: var(--mute); line-height: 1.8; margin-bottom: 20px; max-width: 480px;
}
.sv-intro-feats { list-style: none; margin: 32px 0 0; }
.sv-intro-feat {
  display: flex; align-items: flex-start; gap: 14px; padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.sv-intro-feat:first-child { border-top: 1px solid var(--line); }
.sv-intro-feat-icon {
  width: 32px; height: 32px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue); font-size: 14px; margin-top: 1px;
}
.sv-intro-feat-body strong { display: block; font-size: 14px; font-weight: 600; color: var(--white); margin-bottom: 2px; }
.sv-intro-feat-body span { font-size: 13px; color: var(--mute); line-height: 1.55; }
.sv-intro-media {
  position: relative;
}
.sv-intro-img-wrap {
  position: relative; border-radius: 2px; overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 40px 80px rgba(0,0,0,.5);
  transform-style: preserve-3d;
}
.sv-intro-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease);
}
.sv-intro-img-wrap:hover img { transform: scale(1.04); }
.sv-intro-badge {
  position: absolute; bottom: 32px; left: -28px;
  background: var(--blue); color: #fff; padding: 16px 20px;
  border-radius: 2px; box-shadow: 0 12px 32px rgba(26,107,218,.45);
  display: flex; flex-direction: column; align-items: flex-start; gap: 2px;
  transform: translateZ(20px);
}
.sv-intro-badge strong {
  font-family: var(--fh); font-size: 1.4rem; font-weight: 700; line-height: 1;
}
.sv-intro-badge span { font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; opacity: .85; }
.sv-intro-accent {
  position: absolute; top: 28px; right: -16px;
  width: 72px; height: 72px;
  border: 2px solid rgba(26,107,218,.4); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--blue);
  background: var(--bg); box-shadow: 0 8px 24px rgba(0,0,0,.4);
  animation: svAccentSpin 12s linear infinite;
}
@keyframes svAccentSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.sv-pillars { }
.sv-pillar {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 560px;
  position: relative; overflow: hidden;
}
.sv-pillar:nth-child(odd) { background: var(--bg); }
.sv-pillar:nth-child(even) { background: var(--bg2); }
.sv-pillar-img-col {
  position: relative; overflow: hidden;
}
.sv-pillar-img-col img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .9s var(--ease);
  display: block;
}
.sv-pillar:hover .sv-pillar-img-col img { transform: scale(1.05); }
.sv-pillar-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, transparent 55%, rgba(6,13,26,.9) 100%);
  z-index: 1; pointer-events: none;
}
.sv-pillar--alt .sv-pillar-img-overlay {
  background: linear-gradient(to left, transparent 55%, rgba(6,13,26,.9) 100%);
}
.sv-pillar-body {
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 72px; position: relative;
}
.sv-pillar-body::before {
  content: ''; position: absolute; top: 0; left: 0; bottom: 0;
  width: 2px; background: var(--blue);
  transform: scaleY(0); transform-origin: top;
  transition: transform .5s var(--ease);
}
.sv-pillar:hover .sv-pillar-body::before { transform: scaleY(1); }
.sv-pillar-n {
  font-family: var(--fh); font-size: 4.5rem; font-weight: 700;
  color: var(--blue); opacity: .08; line-height: 1; margin-bottom: -20px;
  transition: opacity .3s;
}
.sv-pillar:hover .sv-pillar-n { opacity: .18; }
.sv-pillar-body .eyebrow { margin-bottom: 14px; }
.sv-pillar-body h2 { font-size: clamp(2rem, 3vw, 2.8rem); margin-bottom: 20px; line-height: 1.1; }
.sv-pillar-body h2 em { font-style: normal; color: var(--blue); }
.sv-pillar-body p { font-size: 15px; color: var(--mute); line-height: 1.8; max-width: 440px; margin-bottom: 32px; }
.sv-pillar-feats { list-style: none; margin: 0 0 36px; }
.sv-pillar-feat {
  display: flex; align-items: center; gap: 10px;
  font-size: 13.5px; color: var(--mute); padding: 6px 0;
}
.sv-pillar-feat i { color: var(--blue); font-size: 11px; flex-shrink: 0; }
.sv-pillar-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--blue); transition: gap .25s;
}
.sv-pillar-link:hover { gap: 14px; }
.sv-pillar-link i { font-size: 11px; }
.sv-pillar--alt { }
.sv-pillar--alt .sv-pillar-img-col { order: 2; }
.sv-pillar--alt .sv-pillar-body { order: 1; }
.sv-pillar--alt .sv-pillar-body::before { left: auto; right: 0; }
.sv-pillar-depth {
  position: absolute; bottom: -16px; right: -16px;
  width: 88px; height: 88px; border-radius: 50%;
  border: 1px solid rgba(26,107,218,.25);
  z-index: 2; pointer-events: none;
  transition: transform .6s var(--ease), opacity .6s;
}
.sv-pillar:hover .sv-pillar-depth {
  transform: scale(1.15); opacity: .6;
}
.sv-why {
  padding: 110px 0; background: var(--bg);
  border-top: 1px solid var(--line);
  position: relative; overflow: hidden;
}
.sv-why::after {
  content: ''; position: absolute; right: 0; top: 0; bottom: 0;
  width: 1px; background: linear-gradient(to bottom, transparent, var(--blue) 40%, var(--blue) 60%, transparent);
}
.sv-why-inner {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: start;
}
.sv-why-hd .eyebrow { margin-bottom: 14px; }
.sv-why-hd h2 { font-size: clamp(2.2rem, 3.6vw, 3.2rem); margin-bottom: 20px; }
.sv-why-hd h2 em { font-style: normal; color: var(--blue); }
.sv-why-hd p { font-size: 15px; color: var(--mute); line-height: 1.75; max-width: 380px; margin-bottom: 36px; }
.sv-why-items { }
.sv-why-item {
  display: grid; grid-template-columns: 64px 1fr; gap: 0;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  position: relative; cursor: default;
  transition: background .25s;
}
.sv-why-item:first-child { border-top: 1px solid var(--line); }
.sv-why-item::before {
  content: ''; position: absolute; bottom: -1px; left: 0; width: 0;
  height: 1px; background: var(--blue); transition: width .45s var(--ease);
}
.sv-why-item:hover::before { width: 100%; }
.sv-why-n {
  font-family: var(--fh); font-size: 3.2rem; font-weight: 700;
  color: var(--blue); opacity: .1; line-height: 1; transition: opacity .3s;
  padding-top: 4px; flex-shrink: 0;
}
.sv-why-item:hover .sv-why-n { opacity: .25; }
.sv-why-content { padding-left: 8px; }
.sv-why-content h3 { font-size: 1rem; font-weight: 600; color: var(--white); margin-bottom: 6px; }
.sv-why-content p { font-size: 13.5px; color: var(--mute); line-height: 1.7; }
.sv-gallery {
  padding: 110px 0; background: var(--bg2);
}
.sv-gallery-hd { text-align: center; margin-bottom: 52px; }
.sv-gallery-hd .eyebrow { margin-bottom: 12px; }
.sv-gallery-hd h2 { font-size: clamp(2rem, 3.2vw, 2.8rem); }
.sv-gallery-hd h2 em { font-style: normal; color: var(--blue); }
.sv-gallery-hd p { font-size: 15px; color: var(--mute); max-width: 500px; margin: 12px auto 0; }
.sv-gal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 300px 300px;
  gap: 6px;
}
.sv-gal-item {
  position: relative; overflow: hidden; cursor: pointer;
  background: var(--bg3);
}
.sv-gal-item:first-child { grid-row: 1 / span 2; }
.sv-gal-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease);
  display: block;
}
.sv-gal-item:hover img { transform: scale(1.07); }
.sv-gal-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6,13,26,.88) 0%, transparent 55%);
  opacity: 0; transition: opacity .4s var(--ease);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 24px;
}
.sv-gal-item:hover .sv-gal-overlay { opacity: 1; }
.sv-gal-tag {
  font-size: 9px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 6px;
  background: rgba(26,107,218,.15); padding: 4px 10px; border-radius: 2px;
  display: inline-block; width: fit-content;
  border: 1px solid rgba(26,107,218,.3);
}
.sv-gal-title {
  font-family: var(--fh); font-size: 1.15rem; font-weight: 600;
  color: var(--white); line-height: 1.3;
}
.sv-gal-loc {
  font-size: 11.5px; color: var(--mute); margin-top: 4px;
}
.sv-gal-cta {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  margin-top: 32px;
  padding: 22px 32px;
  border: 1px solid var(--line);
  font-size: 12px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  color: var(--blue); transition: border-color .3s, background .3s, gap .25s;
}
.sv-gal-cta:hover { border-color: var(--blue); background: rgba(26,107,218,.06); gap: 18px; }
.sv-gal-cta i { font-size: 11px; }
.sv-testi {
  padding: 110px 0; background: var(--bg2);
  border-top: 1px solid var(--line);
}
.sv-testi-hd { margin-bottom: 56px; }
.sv-testi-hd .eyebrow { margin-bottom: 12px; }
.sv-testi-hd h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); }
.sv-testi-hd h2 em { font-style: normal; color: var(--blue); }
.sv-testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--line); }
.sv-testi-item {
  background: var(--bg2); padding: 44px 38px;
  position: relative;
  transition: background .3s;
}
.sv-testi-item:hover { background: var(--bg3); }
.sv-testi-item::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--blue);
  transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease);
}
.sv-testi-item:hover::before { transform: scaleX(1); }
.sv-testi-stars {
  display: flex; gap: 3px; margin-bottom: 20px;
  font-size: 13px; color: #f5a524;
}
.sv-testi-quote {
  font-size: 15px; color: var(--white); line-height: 1.75;
  font-style: italic; margin-bottom: 28px;
  position: relative; padding-left: 16px;
}
.sv-testi-quote::before {
  content: ''; position: absolute; left: 0; top: 4px; bottom: 4px;
  width: 2px; background: var(--blue);
}
.sv-testi-author {
  display: flex; align-items: center; gap: 14px;
}
.sv-testi-avatar {
  width: 44px; height: 44px; border-radius: 50%; overflow: hidden; flex-shrink: 0;
  border: 1px solid rgba(26,107,218,.3);
}
.sv-testi-avatar img { width: 100%; height: 100%; object-fit: cover; }
.sv-testi-name {
  display: block; font-size: 13.5px; font-weight: 600; color: var(--white); margin-bottom: 2px;
}
.sv-testi-loc {
  font-size: 11.5px; color: var(--mute); display: flex; align-items: center; gap: 5px;
}
.sv-testi-loc i { font-size: 10px; color: var(--blue); }
.sv-testi-cta { text-align: center; margin-top: 40px; }
.faq-list { display: flex; flex-direction: column; gap: 6px; }
.faq-item {
  border: 1px solid var(--line); border-left: 2px solid transparent;
  transition: border-color .3s var(--ease), background .3s;
}
.faq-item.open {
  border-color: rgba(26,107,218,.35); border-left-color: var(--blue);
}
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 18px 22px; background: transparent; border: none; cursor: pointer;
  font-family: var(--fb); font-size: 14.5px; font-weight: 600;
  color: var(--white); text-align: left; gap: 16px;
  transition: color .2s;
}
.faq-q:hover { color: var(--bl); }
.faq-icon { color: var(--blue); font-size: 12px; transition: transform .3s; flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-a-inner {
  padding: 0 22px 18px;
  font-size: 13.5px; color: var(--mute); line-height: 1.75;
}
.faq-a-inner a { color: var(--blue); transition: opacity .2s; }
.faq-a-inner a:hover { opacity: .75; }
.faq-item.open .faq-a { max-height: 600px; }
.sv-faq {
  padding: 110px 0; background: var(--bg);
  border-top: 1px solid var(--line);
}
.sv-faq-inner {
  display: grid; grid-template-columns: 340px 1fr; gap: 80px; align-items: start;
}
.sv-faq-hd .eyebrow { margin-bottom: 12px; }
.sv-faq-hd h2 { font-size: clamp(1.8rem, 2.8vw, 2.4rem); margin-bottom: 16px; }
.sv-faq-hd h2 em { font-style: normal; color: var(--blue); }
.sv-faq-hd p { font-size: 14.5px; color: var(--mute); line-height: 1.75; margin-bottom: 28px; }
#ph-canvas {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  width: 100%; height: 100%;
}
.sv-mat {
  padding: 36px 0;
  background: var(--bg2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.sv-mat-eyebrow { text-align: center; margin-bottom: 24px; display: block; }
.sv-mat-marquee { overflow: hidden; }
.sv-mat-track {
  display: flex; align-items: center; gap: 0;
  width: max-content;
  animation: svMatScroll 32s linear infinite;
}
.sv-mat-marquee:hover .sv-mat-track { animation-play-state: paused; }
@keyframes svMatScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.sv-mat-brand {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 18px 52px;
  border-right: 1px solid var(--line);
  min-width: 180px;
  gap: 4px;
  transition: background .25s;
}
.sv-mat-brand:hover { background: rgba(26,107,218,.06); }
.sv-mat-name {
  font-family: var(--fh); font-size: 1.05rem; font-weight: 700;
  color: var(--white); letter-spacing: .04em;
}
.sv-mat-tag {
  font-size: 10px; color: rgba(26,107,218,.75); font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
}
.sv-vr {
  padding: 110px 0;
  background: var(--bg2);
  border-top: 1px solid var(--line);
  position: relative; overflow: hidden;
}
.sv-vr::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 42%; background: var(--bg); z-index: 0;
}
.sv-vr-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center; position: relative; z-index: 1;
}
.sv-vr-text .eyebrow { margin-bottom: 16px; }
.sv-vr-text h2 { font-size: clamp(2rem, 3.5vw, 3rem); margin-bottom: 24px; }
.sv-vr-text h2 em { font-style: normal; color: var(--blue); }
.sv-vr-text p { font-size: 16px; color: var(--mute); line-height: 1.8; margin-bottom: 24px; max-width: 480px; }
.sv-vr-list {
  list-style: none; margin: 0 0 36px;
  display: flex; flex-direction: column; gap: 12px;
}
.sv-vr-list li {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; color: var(--mute);
}
.sv-vr-list li i { color: var(--blue); font-size: 13px; width: 16px; flex-shrink: 0; }
.sv-vr-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.sv-vr-media { position: relative; }
.sv-vr-img-wrap {
  position: relative; border-radius: 2px; overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 40px 80px rgba(0,0,0,.5);
  transform-style: preserve-3d;
  transition: transform .6s var(--ease);
}
.sv-vr-img-wrap:hover { transform: perspective(1000px) rotateY(-3deg) rotateX(2deg) scale(1.02); }
.sv-vr-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sv-vr-badge {
  position: absolute; top: 24px; right: 24px;
  background: rgba(26,107,218,.9); backdrop-filter: blur(8px);
  color: #fff; padding: 10px 16px;
  border-radius: 2px;
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  box-shadow: 0 8px 24px rgba(26,107,218,.45);
}
.sv-vr-badge i { font-size: 14px; }
.sv-vr-stat {
  position: absolute; bottom: -24px; left: -24px;
  background: var(--bg); border: 1px solid var(--line);
  padding: 20px 24px; display: flex; flex-direction: column; gap: 4px;
}
.sv-vr-stat strong {
  font-family: var(--fh); font-size: 2.4rem; font-weight: 700;
  color: var(--blue); line-height: 1;
}
.sv-vr-stat span { font-size: 12px; color: var(--mute); line-height: 1.4; }
@media (max-width: 1200px) {
  .sv-stats-inner { flex-wrap: wrap; }
  .sv-stat-item { flex: 0 0 33.33%; border-bottom: 1px solid var(--line); }
  .pricing-grid { grid-template-columns: 1fr; }
  .sv-pillar { grid-template-columns: 1fr; min-height: auto; }
  .sv-pillar-img-col { aspect-ratio: 16/9; order: 1 !important; }
  .sv-pillar-body { order: 2 !important; padding: 56px 48px; }
  .sv-pillar-body::before { display: none; }
  .sv-pillar-img-overlay { display: none; }
}
@media (max-width: 1024px) {
  .ph-h1 { font-size: clamp(3.8rem, 8vw, 6.4rem); }
  .ph-ghost-yr { font-size: clamp(8rem, 22vw, 18rem); opacity: .03; }
  .ph-scroll-cue { display: none; }
  .sv-intro-inner { grid-template-columns: 1fr; gap: 48px; }
  .sv-intro::before { display: none; }
  .sv-intro-badge { left: 0; bottom: -20px; }
  .sv-why-inner { grid-template-columns: 1fr; gap: 48px; }
  .sv-testi-grid { grid-template-columns: 1fr; gap: 0; }
  .sv-faq-inner { grid-template-columns: 1fr; gap: 36px; }
  .sv-gal-grid { grid-template-rows: 240px 240px; }
  .sv-vr-inner { grid-template-columns: 1fr; gap: 48px; }
  .sv-vr::before { display: none; }
  .sv-vr-stat { left: 0; }
}
@media (max-width: 768px) {
  .ph-h1 { font-size: clamp(3rem, 14vw, 5rem); letter-spacing: -.02em; }
  .ph-content { padding-bottom: 220px; }
  .ph-ghost-yr { display: none; }
  .ph-corner { width: 22px; height: 22px; }
  .ph-frame { inset: 14px; }
  .ph-bottom-stats { flex-wrap: wrap; }
  .ph-bstat { flex: 0 0 20%; }
  .sv-stats-inner { flex-direction: column; }
  .sv-stat-item { flex: none; border-right: none; }
  .sv-pillar-body { padding: 40px 24px; }
  .sv-why-item { grid-template-columns: 48px 1fr; }
  .sv-gal-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px 200px;
  }
  .sv-gal-item:first-child { grid-row: 1 / span 2; }
  .pricing-hd { margin-bottom: 36px; }
  .sv-testi-item { padding: 32px 24px; }
  .sv-faq-inner { grid-template-columns: 1fr; }
  .sv-vr-inner { grid-template-columns: 1fr; gap: 56px; }
  .sv-vr::before { display: none; }
  .sv-vr-stat { left: 0; bottom: -20px; }
}
@media (max-width: 500px) {
  .sv-gal-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 220px);
  }
  .sv-gal-item:first-child { grid-row: auto; }
  .ph-bstat { flex: 0 0 33.33%; border-bottom: 1px solid rgba(26,107,218,.1); }
  .sv-mat-brand { padding: 14px 28px; min-width: 140px; }
}
@media (max-width: 400px) {
  .ph-h1 { font-size: clamp(2.6rem, 16vw, 4.2rem); }
  .ph-content { padding-bottom: 240px; }
  .sv-vr-ctas { flex-direction: column; }
}
.mk-why {
  padding: 120px 0;
  background: var(--bg);
  border-top: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.mk-why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.mk-why-text .eyebrow { margin-bottom: 16px; }
.mk-why-text h2 { font-size: clamp(2rem, 3.5vw, 3rem); margin-bottom: 24px; }
.mk-why-text h2 em { font-style: normal; color: var(--blue); }
.mk-why-text > p {
  font-size: 16px; color: var(--mute); line-height: 1.8; margin-bottom: 24px; max-width: 480px;
}
.mk-why-feats { list-style: none; margin: 8px 0 40px; }
.mk-why-feat {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 0; border-bottom: 1px solid var(--line);
}
.mk-why-feat:first-child { border-top: 1px solid var(--line); }
.mk-why-feat-icon {
  width: 32px; height: 32px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(26,107,218,.14); border-radius: 4px;
  font-size: 13px; color: var(--blue); margin-top: 1px;
}
.mk-why-feat-body strong {
  display: block; font-size: 13.5px; font-weight: 600;
  color: var(--white); margin-bottom: 2px;
}
.mk-why-feat-body span { font-size: 12.5px; color: var(--mute); line-height: 1.5; }
.mk-why-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.mk-why-media { position: relative; }
.mk-why-img-wrap {
  position: relative; border-radius: 2px; overflow: hidden;
  aspect-ratio: 4/5; box-shadow: 0 40px 80px rgba(0,0,0,.5);
}
.mk-why-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .9s var(--ease); display: block;
}
.mk-why-img-wrap:hover img { transform: scale(1.04); }
.mk-float-badge-wrap {
  position: absolute; inset: 0; pointer-events: none; z-index: 2;
}
.mk-float-badge {
  position: absolute;
  background: rgba(6,13,26,.88); backdrop-filter: blur(12px);
  border: 1px solid rgba(26,107,218,.35);
  padding: 10px 14px; border-radius: 2px;
  display: flex; flex-direction: column; gap: 2px;
  box-shadow: 0 8px 24px rgba(0,0,0,.4);
}
.mk-float-badge span {
  font-family: var(--fh); font-size: 12px; font-weight: 700;
  color: var(--white); letter-spacing: .06em;
}
.mk-float-badge small {
  font-size: 9px; font-weight: 600; color: var(--blue);
  letter-spacing: .18em; text-transform: uppercase;
}
.mk-fb-1 { top: 18%; right: -20px; animation: mkFloat1 3s ease-in-out infinite; }
.mk-fb-2 { bottom: 28%; left: -20px; animation: mkFloat2 4s ease-in-out infinite; }
.mk-fb-3 { bottom: 10%; right: 16px; animation: mkFloat3 2.5s ease-in-out infinite; }
@keyframes mkFloat1 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes mkFloat2 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(5px, -6px); }
}
@keyframes mkFloat3 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}
.mk-why-stat {
  position: absolute; bottom: -24px; right: -24px;
  background: var(--blue); color: #fff;
  padding: 16px 20px; display: flex; flex-direction: column; gap: 3px;
  box-shadow: 0 12px 32px rgba(26,107,218,.45); border-radius: 2px;
}
.mk-why-stat strong {
  font-family: var(--fh); font-size: 1.6rem; font-weight: 700; line-height: 1;
}
.mk-why-stat span {
  font-size: 10px; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; opacity: .85;
}
.mk-layouts {
  padding: 110px 0; background: var(--bg2); border-top: 1px solid var(--line);
}
.mk-layouts-hd { text-align: center; margin-bottom: 60px; }
.mk-layouts-hd .eyebrow { margin-bottom: 12px; }
.mk-layouts-hd h2 { font-size: clamp(2rem, 3.2vw, 2.8rem); margin-bottom: 16px; }
.mk-layouts-hd h2 em { font-style: normal; color: var(--blue); }
.mk-layouts-hd p {
  font-size: 15px; color: var(--mute); max-width: 520px;
  margin: 0 auto; line-height: 1.75;
}
.mk-layouts-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2px; background: var(--line);
}
.mk-layout-card {
  background: var(--bg2); padding: 44px 36px;
  position: relative; cursor: default;
  transition: background .3s;
  transform-style: preserve-3d;
}
.mk-layout-card:hover { background: var(--bg3); }
.mk-layout-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: var(--blue);
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease);
}
.mk-layout-card:hover::before { transform: scaleX(1); }
.mk-layout-card--featured { background: var(--bg3); }
.mk-layout-card--featured::before { transform: scaleX(1); }
.mk-layout-icon-wrap {
  width: 56px; height: 56px; margin-bottom: 28px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(26,107,218,.12); border-radius: 4px; padding: 10px;
}
.mk-shape-path { fill: var(--blue); }
.mk-shape-path-dim { fill: rgba(26,107,218,.35); }
.mk-layout-badge {
  display: inline-block; font-size: 9px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--blue); background: rgba(26,107,218,.12);
  border: 1px solid rgba(26,107,218,.3);
  padding: 4px 10px; border-radius: 2px; margin-bottom: 16px;
}
.mk-layout-card h3 {
  font-family: var(--fh); font-size: 1.15rem; font-weight: 700;
  color: var(--white); margin-bottom: 10px;
}
.mk-layout-card p {
  font-size: 13.5px; color: var(--mute); line-height: 1.65; margin-bottom: 16px;
}
.mk-layout-dims {
  font-size: 11px; font-weight: 600; color: rgba(26,107,218,.75);
  letter-spacing: .12em; text-transform: uppercase;
}
.mk-layouts-note {
  text-align: center; margin-top: 40px; font-size: 14px; color: var(--mute);
}
.mk-layouts-note a { color: var(--blue); }
.mk-finish {
  padding: 120px 0; background: var(--bg); border-top: 1px solid var(--line);
}
.mk-finish-hd { text-align: center; margin-bottom: 52px; }
.mk-finish-hd .eyebrow { margin-bottom: 12px; }
.mk-finish-hd h2 { font-size: clamp(2rem, 3.2vw, 2.8rem); margin-bottom: 16px; }
.mk-finish-hd h2 em { font-style: normal; color: var(--blue); }
.mk-finish-hd p {
  font-size: 15px; color: var(--mute); max-width: 500px; margin: 0 auto; line-height: 1.75;
}
.mk-finish-tabs {
  display: flex; max-width: 640px; margin: 0 auto 48px;
  border: 1px solid var(--line); border-radius: 2px; overflow: hidden;
}
.mk-finish-tab {
  flex: 1; padding: 14px 20px; background: transparent;
  border: none; border-right: 1px solid var(--line); cursor: pointer;
  font-family: var(--fh); font-size: 11px; font-weight: 700;
  letter-spacing: .24em; text-transform: uppercase; color: var(--mute);
  transition: background .3s, color .3s;
}
.mk-finish-tab:last-child { border-right: none; }
.mk-finish-tab:hover { background: rgba(26,107,218,.07); color: var(--white); }
.mk-finish-tab.mk-active { background: var(--blue); color: #fff; }
.mk-finish-panel { display: none; }
.mk-finish-panel.mk-active { display: block; }
.mk-swatch {
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; border: 1px solid var(--line); overflow: hidden;
  transform-style: preserve-3d; transition: transform .6s var(--ease);
}
.mk-swatch-img-wrap { aspect-ratio: 4/3; overflow: hidden; position: relative; }
.mk-swatch-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  display: block; transition: transform .8s var(--ease);
}
.mk-swatch:hover .mk-swatch-img-wrap img { transform: scale(1.04); }
.mk-swatch-body { padding: 48px 52px; }
.mk-swatch-body h3 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem); font-weight: 700;
  margin-bottom: 16px; line-height: 1.15;
}
.mk-swatch-body h3 em { font-style: normal; color: var(--blue); }
.mk-swatch-body p {
  font-size: 14.5px; color: var(--mute); line-height: 1.8;
  margin-bottom: 24px; max-width: 400px;
}
.mk-swatch-feats {
  list-style: none; display: flex; flex-direction: column;
  gap: 10px; margin-bottom: 32px;
}
.mk-swatch-feat { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: var(--mute); }
.mk-swatch-feat i { color: var(--blue); font-size: 11px; flex-shrink: 0; }
@media (max-width: 1200px) {
  .mk-layouts-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1024px) {
  .mk-why-inner { grid-template-columns: 1fr; gap: 56px; }
  .mk-swatch { grid-template-columns: 1fr; }
  .mk-swatch-img-wrap { aspect-ratio: 16/9; }
  .mk-why-stat { right: 0; bottom: -16px; }
  .mk-fb-1 { right: 4px; }
  .mk-fb-2 { left: 4px; }
}
@media (max-width: 768px) {
  .mk-layouts-grid { grid-template-columns: 1fr 1fr; }
  .mk-layout-card { padding: 32px 24px; }
  .mk-swatch-body { padding: 32px 28px; }
  .mk-why-ctas { flex-direction: column; }
  .mk-finish-tabs { max-width: 100%; }
}
@media (max-width: 500px) {
  .mk-layouts-grid { grid-template-columns: 1fr; }
  .mk-float-badge { display: none; }
}
.fc-types {
  padding: 120px 0;
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.fc-types-hd {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: end; margin-bottom: 56px;
}
.fc-types-hd .eyebrow { margin-bottom: 12px; }
.fc-types-hd h2 { font-size: clamp(2rem, 3.2vw, 2.8rem); line-height: 1.1; }
.fc-types-hd h2 em { font-style: normal; color: var(--blue); }
.fc-types-hd p { font-size: 15px; color: var(--mute); line-height: 1.8; }
.fc-type-tabs {
  display: flex; gap: 0; margin-bottom: 48px;
  border: 1px solid var(--line); overflow: hidden;
}
.fc-type-tab {
  flex: 1; padding: 14px 16px; background: transparent;
  border: none; border-right: 1px solid var(--line); cursor: pointer;
  font-family: var(--fh); font-size: 10.5px; font-weight: 700;
  letter-spacing: .24em; text-transform: uppercase; color: var(--mute);
  transition: background .25s, color .25s;
}
.fc-type-tab:last-child { border-right: none; }
.fc-type-tab:hover { background: rgba(26,107,218,.07); color: var(--white); }
.fc-type-tab.fc-active { background: var(--blue); color: #fff; }
.fc-type-panel { display: none; }
.fc-type-panel.fc-active { display: block; }
.fc-type-swatch {
  display: grid; grid-template-columns: 1.15fr 1fr;
  border: 1px solid var(--line); overflow: hidden;
  transform-style: preserve-3d;
}
.fc-swatch-img-wrap {
  position: relative; overflow: hidden; min-height: 480px;
}
.fc-swatch-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  display: block; transition: transform .9s var(--ease);
}
.fc-type-swatch:hover .fc-swatch-img-wrap img { transform: scale(1.04); }
.fc-swatch-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, transparent 55%, rgba(6,13,26,.72) 100%);
  pointer-events: none; z-index: 1;
}
.fc-swatch-badge {
  position: absolute; bottom: 28px; left: 24px; z-index: 2;
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(6,13,26,.82); backdrop-filter: blur(14px);
  border: 1px solid rgba(26,107,218,.4); padding: 8px 16px;
  font-size: 10px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  color: var(--blue);
}
.fc-swatch-body {
  padding: 64px 56px; display: flex; flex-direction: column; justify-content: center;
}
.fc-swatch-body .eyebrow { margin-bottom: 14px; }
.fc-swatch-body h3 {
  font-family: var(--fh); font-size: clamp(1.8rem, 2.4vw, 2.2rem);
  line-height: 1.1; margin-bottom: 16px;
}
.fc-swatch-body h3 em { font-style: normal; color: var(--blue); }
.fc-swatch-body > p {
  font-size: 15px; color: var(--mute); line-height: 1.8;
  max-width: 420px; margin-bottom: 32px;
}
.fc-swatch-feats { list-style: none; margin: 0 0 36px; }
.fc-swatch-feat {
  display: flex; align-items: center; gap: 10px;
  font-size: 13.5px; color: var(--mute);
  padding: 8px 0; border-bottom: 1px solid var(--line);
}
.fc-swatch-feat:first-child { border-top: 1px solid var(--line); }
.fc-swatch-feat i { color: var(--blue); font-size: 11px; flex-shrink: 0; }
.fc-light {
  position: relative; overflow: hidden; min-height: 640px;
  border-top: 1px solid var(--line);
}
.fc-light-bg { position: absolute; inset: 0; z-index: 0; }
.fc-light-bg img { width: 100%; height: 100%; object-fit: cover; display: block; }
.fc-light-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    to right,
    rgba(6,13,26,.28) 0%,
    rgba(6,13,26,.65) 42%,
    rgba(6,13,26,.97) 64%,
    rgba(6,13,26,1) 100%
  );
}
.fc-light-glow-strip {
  position: absolute; bottom: 0; left: 0; right: 0; height: 200px; z-index: 2;
  background: linear-gradient(to top, rgba(26,107,218,.12), transparent);
  animation: fcGlowPulse 4s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes fcGlowPulse {
  from { opacity: .35; }
  to   { opacity: 1; }
}
.fc-light-inner {
  position: relative; z-index: 3;
  display: flex; justify-content: flex-end;
  padding: 110px 0;
}
.fc-light-text { max-width: 560px; }
.fc-light-text .eyebrow { margin-bottom: 16px; }
.fc-light-text h2 {
  font-size: clamp(2rem, 3.2vw, 2.8rem); margin-bottom: 20px; line-height: 1.1;
}
.fc-light-text h2 em { font-style: normal; color: var(--blue); }
.fc-light-text > p {
  font-size: 15px; color: var(--mute); line-height: 1.8; max-width: 460px; margin-bottom: 40px;
}
.fc-light-specs { list-style: none; margin: 0 0 40px; }
.fc-light-spec {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 17px 0; border-bottom: 1px solid var(--line);
}
.fc-light-spec:first-child { border-top: 1px solid var(--line); }
.fc-light-spec-icon {
  width: 38px; height: 38px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(26,107,218,.13); border-radius: 5px;
  font-size: 15px; color: var(--blue);
}
.fc-light-spec-body strong {
  display: block; font-size: 14px; font-weight: 600; color: var(--white); margin-bottom: 3px;
}
.fc-light-spec-body span { font-size: 13px; color: var(--mute); line-height: 1.55; }
.fc-light-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.fc-rooms {
  padding: 120px 0; background: var(--bg);
  border-top: 1px solid var(--line);
}
.fc-rooms-hd { text-align: center; margin-bottom: 56px; }
.fc-rooms-hd .eyebrow { margin-bottom: 12px; }
.fc-rooms-hd h2 { font-size: clamp(2rem, 3.2vw, 2.8rem); }
.fc-rooms-hd h2 em { font-style: normal; color: var(--blue); }
.fc-rooms-hd p {
  font-size: 15px; color: var(--mute); max-width: 520px; margin: 12px auto 0; line-height: 1.8;
}
.fc-rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 270px 270px;
  gap: 4px;
}
.fc-room-item {
  position: relative; overflow: hidden;
  background: var(--bg3); cursor: default;
  transform-style: preserve-3d;
}
.fc-room-item img {
  width: 100%; height: 100%; object-fit: cover;
  display: block; transition: transform .8s var(--ease);
}
.fc-room-item:hover img { transform: scale(1.07); }
.fc-room-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(6,13,26,.9) 0%,
    rgba(6,13,26,.22) 50%,
    transparent 100%
  );
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 20px 22px;
}
.fc-room-tag {
  font-size: 9px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 7px;
  background: rgba(26,107,218,.15); padding: 3px 10px;
  display: inline-block; width: fit-content;
  border: 1px solid rgba(26,107,218,.28);
}
.fc-room-name {
  font-family: var(--fh); font-size: 1rem; font-weight: 600;
  color: var(--white); margin-bottom: 5px;
}
.fc-room-rec {
  font-size: 11.5px; color: var(--mute); line-height: 1.45;
  max-height: 0; overflow: hidden;
  transition: max-height .4s var(--ease), opacity .35s;
  opacity: 0;
}
.fc-room-item:hover .fc-room-rec { max-height: 60px; opacity: 1; }
@media (max-width: 1024px) {
  .fc-types-hd { grid-template-columns: 1fr; gap: 20px; }
  .fc-type-swatch { grid-template-columns: 1fr; }
  .fc-swatch-img-wrap { min-height: 280px; }
  .fc-swatch-img-overlay {
    background: linear-gradient(to top, transparent 55%, rgba(6,13,26,.25));
  }
  .fc-light-overlay {
    background: linear-gradient(to bottom, rgba(6,13,26,.45) 0%, rgba(6,13,26,.97) 58%);
  }
  .fc-light-inner { justify-content: flex-start; padding: 80px 0; }
  .fc-light-text { max-width: 100%; }
  .fc-rooms-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 240px 240px 240px;
  }
}
@media (max-width: 768px) {
  .fc-swatch-body { padding: 40px 28px; }
  .fc-type-tabs { flex-wrap: wrap; }
  .fc-type-tab { flex: 0 0 50%; border-bottom: 1px solid var(--line); }
  .fc-type-tab:nth-child(2) { border-right: none; }
  .fc-light-ctas { flex-direction: column; }
}
@media (max-width: 500px) {
  .fc-rooms-grid { grid-template-columns: 1fr; grid-template-rows: repeat(6, 220px); }
  .fc-type-tab { flex: 0 0 100%; border-right: none; }
  .fc-swatch-badge { bottom: 14px; left: 14px; }
}
.tv-styles {
  padding: 120px 0;
  background: var(--bg2);
  border-top: 1px solid var(--line);
}
.tv-styles-hd {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: end; margin-bottom: 56px;
}
.tv-styles-hd .eyebrow { margin-bottom: 12px; }
.tv-styles-hd h2 { font-size: clamp(2rem, 3.2vw, 2.8rem); line-height: 1.1; }
.tv-styles-hd h2 em { font-style: normal; color: var(--blue); }
.tv-styles-hd p { font-size: 15px; color: var(--mute); line-height: 1.8; }
.tv-style-tabs {
  display: flex; gap: 0; margin-bottom: 48px;
  border: 1px solid var(--line); overflow: hidden;
}
.tv-style-tab {
  flex: 1; padding: 14px 16px; background: transparent;
  border: none; border-right: 1px solid var(--line); cursor: pointer;
  font-family: var(--fh); font-size: 10.5px; font-weight: 700;
  letter-spacing: .24em; text-transform: uppercase; color: var(--mute);
  transition: background .25s, color .25s;
}
.tv-style-tab:last-child { border-right: none; }
.tv-style-tab:hover { background: rgba(26,107,218,.07); color: var(--white); }
.tv-style-tab.tv-active { background: var(--blue); color: #fff; }
.tv-style-panel { display: none; }
.tv-style-panel.tv-active {
  display: grid; grid-template-columns: 1.4fr 1fr;
  min-height: 580px; border: 1px solid var(--line); overflow: hidden;
}
.tv-sp-img { position: relative; overflow: hidden; }
.tv-sp-img img {
  width: 100%; height: 100%; object-fit: cover;
  display: block; transition: transform .9s var(--ease);
}
.tv-sp-img:hover img { transform: scale(1.04); }
.tv-sp-badge {
  position: absolute; top: 28px; left: 24px; z-index: 2;
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(6,13,26,.82); backdrop-filter: blur(14px);
  border: 1px solid rgba(26,107,218,.4); padding: 8px 16px;
  font-size: 10px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  color: var(--blue);
}
.tv-sp-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, transparent 60%, rgba(6,13,26,.6) 100%);
  pointer-events: none; z-index: 1;
}
.tv-sp-body {
  padding: 60px 52px; background: var(--bg3);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: center;
}
.tv-sp-ghost {
  position: absolute; right: -4%; bottom: -8%;
  font-family: var(--fh); font-weight: 700; line-height: 1;
  font-size: clamp(4.5rem, 10vw, 8rem);
  color: var(--blue); opacity: .04;
  pointer-events: none; user-select: none; letter-spacing: -.04em;
}
.tv-sp-body .eyebrow { margin-bottom: 14px; }
.tv-sp-body h3 {
  font-family: var(--fh); font-size: clamp(1.8rem, 2.4vw, 2.2rem);
  line-height: 1.1; margin-bottom: 16px;
}
.tv-sp-body h3 em { font-style: normal; color: var(--blue); }
.tv-sp-body > p {
  font-size: 15px; color: var(--mute); line-height: 1.8;
  max-width: 420px; margin-bottom: 32px;
}
.tv-sp-feats { list-style: none; margin: 0 0 36px; }
.tv-sp-feat {
  display: flex; align-items: center; gap: 10px;
  font-size: 13.5px; color: var(--mute);
  padding: 8px 0; border-bottom: 1px solid var(--line);
}
.tv-sp-feat:first-child { border-top: 1px solid var(--line); }
.tv-sp-feat i { color: var(--blue); font-size: 11px; flex-shrink: 0; }
.tv-focal {
  padding: 130px 0;
  background: var(--bg);
  border-top: 1px solid var(--line);
  position: relative; overflow: hidden;
}
.tv-focal::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--blue) 40%, var(--blue) 60%, transparent);
}
.tv-focal-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}
.tv-focal-stmt {
  font-family: var(--fh);
  font-size: clamp(2.2rem, 3.8vw, 3.6rem);
  line-height: 1.05; font-weight: 700;
  color: var(--white); letter-spacing: -.03em; margin-bottom: 52px;
}
.tv-focal-stmt em { font-style: normal; color: var(--blue); }
.tv-focal-proof {
  display: flex; gap: 0;
  border-top: 1px solid var(--line);
}
.tv-focal-proof-item {
  flex: 1; padding: 28px 0 0;
  border-right: 1px solid var(--line);
  padding-right: 32px; padding-left: 4px;
}
.tv-focal-proof-item:first-child { padding-left: 0; }
.tv-focal-proof-item:last-child { border-right: none; }
.tv-focal-proof-num {
  font-family: var(--fh); font-size: 2.2rem; font-weight: 700;
  color: var(--blue); line-height: 1; display: block;
}
.tv-focal-proof-text { font-size: 11.5px; color: var(--mute); margin-top: 5px; text-transform: uppercase; letter-spacing: .1em; font-weight: 600; }
.tv-focal-list { display: flex; flex-direction: column; padding-top: 8px; }
.tv-focal-item {
  display: grid; grid-template-columns: 72px 1fr;
  padding: 28px 0; border-bottom: 1px solid var(--line);
  position: relative;
}
.tv-focal-item:first-child { border-top: 1px solid var(--line); }
.tv-focal-item::before {
  content: ''; position: absolute; bottom: -1px; left: 0;
  width: 0; height: 1px; background: var(--blue);
  transition: width .45s var(--ease);
}
.tv-focal-item:hover::before { width: 100%; }
.tv-focal-n {
  font-family: var(--fh); font-size: 3rem; font-weight: 700;
  color: var(--blue); opacity: .12; line-height: 1;
  transition: opacity .3s;
}
.tv-focal-item:hover .tv-focal-n { opacity: .26; }
.tv-focal-content h3 {
  font-size: 1rem; font-weight: 600; color: var(--white);
  margin-bottom: 6px; padding-top: 4px;
}
.tv-focal-content p { font-size: 13.5px; color: var(--mute); line-height: 1.7; }
.tv-sizing {
  padding: 110px 0;
  background: var(--bg2);
  border-top: 1px solid var(--line);
}
.tv-sizing-hd { text-align: center; margin-bottom: 56px; }
.tv-sizing-hd .eyebrow { margin-bottom: 12px; }
.tv-sizing-hd h2 { font-size: clamp(2rem, 3.2vw, 2.8rem); }
.tv-sizing-hd h2 em { font-style: normal; color: var(--blue); }
.tv-sizing-hd p { font-size: 15px; color: var(--mute); max-width: 520px; margin: 12px auto 0; line-height: 1.8; }
.tv-sizing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--line);
}
.tv-sizing-col {
  background: var(--bg); padding: 52px 44px;
  position: relative; overflow: hidden;
}
.tv-sizing-col::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: var(--blue);
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease);
}
.tv-sizing-col:hover::before { transform: scaleX(1); }
.tv-sizing-col-badge {
  display: inline-block; font-size: 9px; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--blue); background: rgba(26,107,218,.12);
  border: 1px solid rgba(26,107,218,.28);
  padding: 4px 10px; margin-bottom: 20px;
}
.tv-sizing-col h3 {
  font-family: var(--fh); font-size: 1.2rem; font-weight: 700;
  color: var(--white); margin-bottom: 4px;
}
.tv-sizing-sub { font-size: 12px; color: var(--mute); margin-bottom: 20px; }
.tv-sizing-dim {
  font-family: var(--fh); font-size: clamp(2.8rem, 4.5vw, 4.5rem);
  font-weight: 700; color: var(--blue); line-height: 1;
}
.tv-sizing-dim-unit {
  font-size: 13px; color: var(--mute); font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; margin-left: 6px;
}
.tv-sizing-specs { list-style: none; margin: 24px 0 32px; display: flex; flex-direction: column; gap: 0; }
.tv-sizing-spec {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; padding: 10px 0; border-bottom: 1px solid var(--line);
}
.tv-sizing-spec-label { color: var(--mute); }
.tv-sizing-spec-val { color: var(--white); font-weight: 600; }
.tv-sizing-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--blue); transition: gap .25s;
}
.tv-sizing-link:hover { gap: 14px; }
.tv-sizing-link i { font-size: 10px; }
@media (max-width: 1024px) {
  .tv-styles-hd { grid-template-columns: 1fr; gap: 20px; }
  .tv-style-panel.tv-active { grid-template-columns: 1fr; }
  .tv-sp-img { min-height: 300px; }
  .tv-sp-img-overlay { display: none; }
  .tv-focal-inner { grid-template-columns: 1fr; gap: 48px; }
  .tv-focal::before { display: none; }
  .tv-sizing-grid { grid-template-columns: 1fr; }
  .tv-sizing-col { padding: 40px 36px; }
}
@media (max-width: 768px) {
  .tv-sp-body { padding: 40px 28px; }
  .tv-style-tabs { flex-wrap: wrap; }
  .tv-style-tab { flex: 0 0 50%; border-bottom: 1px solid var(--line); }
  .tv-style-tab:nth-child(2) { border-right: none; }
  .tv-focal-stmt { font-size: clamp(2rem, 6vw, 2.8rem); }
  .tv-focal-proof { flex-direction: column; gap: 0; }
  .tv-focal-proof-item { border-right: none; border-bottom: 1px solid var(--line); padding: 20px 0; }
  .tv-focal-item { grid-template-columns: 56px 1fr; }
}
@media (max-width: 500px) {
  .tv-style-tab { flex: 0 0 100%; border-right: none; }
  .tv-sizing-col { padding: 32px 24px; }
}
.hi-intro {
  padding: 120px 0; background: var(--bg);
  border-top: 1px solid var(--line);
  position: relative; overflow: hidden;
}
.hi-intro::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, var(--blue) 30%, var(--blue) 70%, transparent);
}
.hi-intro-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.hi-intro-text .eyebrow { margin-bottom: 16px; }
.hi-intro-text h2 {
  font-size: clamp(2.2rem, 3.8vw, 3.6rem); font-weight: 700;
  line-height: 1.05; margin-bottom: 20px; letter-spacing: -.03em;
}
.hi-intro-text h2 em { font-style: normal; color: var(--blue); }
.hi-intro-text > p {
  font-size: 16px; color: var(--mute); line-height: 1.8; max-width: 480px; margin-bottom: 36px;
}
.hi-intro-chips {
  display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 40px;
}
.hi-intro-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px;
  border: 1px solid rgba(26,107,218,.28);
  background: rgba(26,107,218,.08);
  font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--bl); transition: background .25s, border-color .25s;
}
.hi-intro-chip:hover { background: rgba(26,107,218,.16); border-color: var(--blue); }
.hi-intro-chip i { font-size: 11px; color: var(--blue); }
.hi-intro-media { position: relative; }
.hi-intro-img-wrap {
  position: relative; overflow: hidden; aspect-ratio: 3/4;
  border-radius: 2px; box-shadow: 0 48px 96px rgba(0,0,0,.5);
  transform-style: preserve-3d; transition: transform .7s var(--ease);
}
.hi-intro-img-wrap:hover { transform: perspective(1200px) rotateY(-2.5deg) rotateX(1.5deg) scale(1.02); }
.hi-intro-img-wrap img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .9s var(--ease);
}
.hi-intro-img-wrap:hover img { transform: scale(1.04); }
.hi-intro-badge {
  position: absolute; bottom: 36px; left: -32px;
  background: var(--blue); color: #fff; padding: 18px 22px;
  border-radius: 2px; box-shadow: 0 16px 40px rgba(26,107,218,.5);
  display: flex; flex-direction: column; gap: 2px;
}
.hi-intro-badge strong {
  font-family: var(--fh); font-size: 1.8rem; font-weight: 700; line-height: 1;
}
.hi-intro-badge span {
  font-size: 10px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; opacity: .85;
}
.hi-intro-ring {
  position: absolute; top: 24px; right: -20px;
  width: 80px; height: 80px; border-radius: 50%;
  border: 1px solid rgba(26,107,218,.35);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; color: var(--blue);
  background: var(--bg); box-shadow: 0 8px 28px rgba(0,0,0,.4);
  animation: svAccentSpin 14s linear infinite;
}
.hi-rooms {
  padding: 120px 0; background: var(--bg2);
  border-top: 1px solid var(--line);
}
.hi-rooms-hd { text-align: center; margin-bottom: 60px; }
.hi-rooms-hd .eyebrow { margin-bottom: 12px; }
.hi-rooms-hd h2 { font-size: clamp(2rem, 3.2vw, 2.8rem); }
.hi-rooms-hd h2 em { font-style: normal; color: var(--blue); }
.hi-rooms-hd p { font-size: 15px; color: var(--mute); max-width: 520px; margin: 12px auto 0; line-height: 1.8; }
.hi-rooms-bento {
  display: grid; grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 360px 320px; gap: 5px;
}
.hi-room {
  position: relative; overflow: hidden;
  background: var(--bg3); cursor: default;
  transform-style: preserve-3d;
}
.hi-room img {
  width: 100%; height: 100%; object-fit: cover;
  display: block; transition: transform .9s var(--ease);
}
.hi-room:hover img { transform: scale(1.08); }
.hi-room-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6,13,26,.95) 0%, rgba(6,13,26,.3) 45%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 28px 26px; transition: background .4s var(--ease);
}
.hi-room:hover .hi-room-overlay {
  background: linear-gradient(to top, rgba(6,13,26,.97) 0%, rgba(6,13,26,.55) 60%, transparent 100%);
}
.hi-room-tag {
  font-size: 9px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 8px;
  background: rgba(26,107,218,.15); padding: 3px 10px;
  display: inline-block; width: fit-content;
  border: 1px solid rgba(26,107,218,.3);
}
.hi-room-title {
  font-family: var(--fh); font-size: 1.1rem; font-weight: 700;
  color: var(--white); line-height: 1.2; margin-bottom: 8px;
}
.hi-room-specs {
  list-style: none; margin: 0 0 14px;
  max-height: 0; overflow: hidden;
  transition: max-height .45s var(--ease), opacity .4s; opacity: 0;
}
.hi-room:hover .hi-room-specs { max-height: 80px; opacity: 1; }
.hi-room-specs li {
  font-size: 11px; color: var(--mute); padding: 2px 0;
  display: flex; align-items: center; gap: 6px;
}
.hi-room-specs li::before {
  content: ''; width: 4px; height: 4px; border-radius: 50%;
  background: var(--blue); flex-shrink: 0;
}
.hi-room-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 10.5px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--blue); opacity: 0; transition: opacity .4s, gap .25s;
}
.hi-room:hover .hi-room-link { opacity: 1; }
.hi-room-link:hover { gap: 12px; }
.hi-room-link i { font-size: 9px; }
.hi-room--wide-l { grid-column: span 2; }
.hi-vr3d {
  padding: 120px 0; background: var(--bg);
  border-top: 1px solid var(--line);
  position: relative; overflow: hidden;
}
.hi-vr3d::after {
  content: ''; position: absolute; right: 0; top: 0; bottom: 0;
  width: 42%; background: var(--bg2); z-index: 0;
}
.hi-vr3d-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center; position: relative; z-index: 1;
}
.hi-vr3d-text .eyebrow { margin-bottom: 16px; }
.hi-vr3d-text h2 { font-size: clamp(2rem, 3.4vw, 3rem); margin-bottom: 20px; line-height: 1.1; }
.hi-vr3d-text h2 em { font-style: normal; color: var(--blue); }
.hi-vr3d-text > p { font-size: 16px; color: var(--mute); line-height: 1.8; max-width: 480px; margin-bottom: 36px; }
.hi-vr3d-feats {
  list-style: none; margin: 0 0 40px; display: flex; flex-direction: column; gap: 12px;
}
.hi-vr3d-feats li { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--mute); }
.hi-vr3d-feats li i { color: var(--blue); font-size: 13px; width: 16px; flex-shrink: 0; }
.hi-vr3d-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hi-vr3d-rooms {
  display: grid; grid-template-columns: 1fr 1fr;
  grid-template-rows: 220px 220px; gap: 5px;
  position: relative; padding-bottom: 28px;
}
.hi-vr3d-room {
  position: relative; overflow: hidden; background: var(--bg3);
  transform-style: preserve-3d; transition: transform .6s var(--ease);
}
.hi-vr3d-room:hover { transform: perspective(800px) rotateY(-2deg) rotateX(1deg) scale(1.02); }
.hi-vr3d-room img {
  width: 100%; height: 100%; object-fit: cover;
  display: block; transition: transform .8s var(--ease);
}
.hi-vr3d-room:hover img { transform: scale(1.07); }
.hi-vr3d-room-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 20px 16px 12px;
  background: linear-gradient(to top, rgba(6,13,26,.88) 0%, transparent 100%);
  font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.8);
}
.hi-vr3d-badge {
  position: absolute; bottom: 0; left: -20px; z-index: 2;
  background: var(--bg); border: 1px solid var(--line);
  padding: 16px 20px; display: flex; flex-direction: column; gap: 3px;
}
.hi-vr3d-badge strong {
  font-family: var(--fh); font-size: 2rem; font-weight: 700;
  color: var(--blue); line-height: 1;
}
.hi-vr3d-badge span { font-size: 11px; color: var(--mute); line-height: 1.4; }
.hi-guar {
  background: var(--bg2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.hi-guar-hd { text-align: center; padding: 72px 0 0; margin-bottom: 0; }
.hi-guar-hd .eyebrow { margin-bottom: 12px; }
.hi-guar-hd h2 { font-size: clamp(2rem, 3.2vw, 2.8rem); }
.hi-guar-hd h2 em { font-style: normal; color: var(--blue); }
.hi-guar-inner {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0; background: var(--line); margin-top: 52px;
}
.hi-guar-item {
  background: var(--bg2); padding: 72px 52px;
  position: relative; overflow: hidden;
  cursor: default; transition: background .3s;
}
.hi-guar-item:hover { background: var(--bg3); }
.hi-guar-item::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: var(--blue);
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease);
}
.hi-guar-item:hover::before { transform: scaleX(1); }
.hi-guar-num {
  font-family: var(--fh); font-size: clamp(3.5rem, 5vw, 5.5rem); font-weight: 700;
  color: var(--blue); line-height: 1; margin-bottom: 12px; letter-spacing: -.04em;
}
.hi-guar-label {
  font-size: 10px; font-weight: 700; letter-spacing: .28em; text-transform: uppercase;
  color: var(--mute); margin-bottom: 20px; display: block;
}
.hi-guar-title {
  font-family: var(--fh); font-size: 1.2rem; font-weight: 700;
  color: var(--white); margin-bottom: 12px;
}
.hi-guar-body { font-size: 14px; color: var(--mute); line-height: 1.75; max-width: 300px; }
.hi-guar-body a { color: var(--blue); }
.hi-guar-icon {
  position: absolute; top: 52px; right: 40px;
  font-size: 1.8rem; color: var(--blue); opacity: .12;
  transition: opacity .3s, transform .4s var(--ease);
}
.hi-guar-item:hover .hi-guar-icon { opacity: .25; transform: scale(1.1) rotate(-10deg); }
@media (max-width: 1200px) {
  .hi-rooms-bento { grid-template-rows: 300px 280px; }
}
@media (max-width: 1024px) {
  .hi-intro-inner { grid-template-columns: 1fr; gap: 48px; }
  .hi-intro-badge { left: 0; }
  .hi-vr3d-inner { grid-template-columns: 1fr; gap: 56px; }
  .hi-vr3d::after { display: none; }
  .hi-vr3d-badge { left: 0; }
  .hi-guar-inner { grid-template-columns: 1fr; }
  .hi-rooms-bento { grid-template-columns: repeat(2, 1fr); grid-template-rows: 280px 280px 280px; }
  .hi-room--wide-l { grid-column: span 1; }
}
@media (max-width: 768px) {
  .hi-rooms-bento { grid-template-columns: 1fr 1fr; grid-template-rows: 240px 240px 240px; }
  .hi-vr3d-rooms { grid-template-rows: 180px 180px; }
  .hi-guar-item { padding: 48px 32px; }
  .hi-intro-chips { flex-direction: column; align-items: flex-start; }
  .hi-vr3d-ctas { flex-direction: column; }
}
@media (max-width: 500px) {
  .hi-rooms-bento { grid-template-columns: 1fr; grid-template-rows: repeat(6, 220px); }
  .hi-room--wide-l { grid-column: span 1; }
  .hi-vr3d-rooms { grid-template-columns: 1fr; grid-template-rows: repeat(4, 180px); }
  .hi-guar-hd { padding-top: 48px; }
}

/* === OFFICE INTERIOR (of-) === */
.of-brand {
  padding: 120px 0;
  background: var(--bg2);
  border-top: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.of-brand::before {
  content: ''; position: absolute; top: 0; right: 0; bottom: 0;
  width: 48%; background: var(--bg); z-index: 0;
}
.of-brand-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.of-brand-text .eyebrow { margin-bottom: 16px; }
.of-brand-text h2 {
  font-size: clamp(2.2rem, 3.8vw, 3.6rem); font-weight: 700;
  line-height: 1.05; margin-bottom: 20px; letter-spacing: -.03em;
}
.of-brand-text h2 em { font-style: normal; color: var(--blue); }
.of-brand-text > p { font-size: 16px; color: var(--mute); line-height: 1.8; max-width: 480px; margin-bottom: 32px; }
.of-brand-feats { list-style: none; margin: 0 0 40px; }
.of-brand-feat {
  display: flex; align-items: center; gap: 14px;
  font-size: 14px; color: var(--mute);
  padding: 11px 0; border-bottom: 1px solid var(--line);
}
.of-brand-feat:first-child { border-top: 1px solid var(--line); }
.of-brand-feat::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--blue); flex-shrink: 0;
  box-shadow: 0 0 8px rgba(26,107,218,.7);
}
.of-brand-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.of-brand-media { position: relative; }
.of-iso-wrap {
  position: relative;
  padding: 44px;
  background: var(--bg2);
  border: 1px solid var(--line);
  overflow: hidden;
}
.of-iso-wrap::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 65% 55% at 50% 45%, rgba(26,107,218,.06) 0%, transparent 70%);
  pointer-events: none;
}
.of-iso-eyebrow {
  display: block;
  font-size: 9px; font-weight: 700; letter-spacing: .3em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 32px;
}
.of-iso-stage {
  display: grid;
  grid-template-columns: 100px 1fr 90px;
  grid-template-rows: 130px 160px;
  gap: 5px;
  transform: perspective(900px) rotateX(52deg) rotateZ(-16deg);
  transform-style: preserve-3d;
  transform-origin: center 65%;
  transition: transform .7s cubic-bezier(.22,.61,.36,1);
  margin-bottom: 32px;
}
.of-iso-zone {
  background: rgba(26,107,218,.06);
  border: 1px solid rgba(26,107,218,.2);
  position: relative;
  transform-style: preserve-3d;
  transition: transform .4s cubic-bezier(.22,.61,.36,1), background .3s, border-color .3s, opacity .5s;
  cursor: pointer;
  overflow: hidden;
  opacity: 0;
}
.of-iso-zone::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,107,218,.06) 0%, transparent 60%);
  pointer-events: none;
}
.of-iso-zone.of-zone-visible { opacity: 1; }
.of-iso-zone.of-zone-visible:hover {
  transform: translateZ(22px);
  background: rgba(26,107,218,.18);
  border-color: rgba(26,107,218,.65);
}
.of-iso-zone-inner {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  padding: 8px;
}
.of-iso-zone-name {
  font-family: var(--fh); font-size: 8px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: rgba(26,107,218,.5); transition: color .3s;
  text-align: center; line-height: 1.4;
}
.of-iso-zone.of-zone-visible:hover .of-iso-zone-name { color: var(--blue); }
.of-zone-recep { grid-row: 1; grid-column: 1; }
.of-zone-open  { grid-row: 1; grid-column: 2 / span 2; }
.of-zone-break { grid-row: 2; grid-column: 1; }
.of-zone-board { grid-row: 2; grid-column: 2; }
.of-zone-cabin { grid-row: 2; grid-column: 3; }
.of-iso-tip {
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; color: var(--mute); min-height: 18px;
  margin-bottom: 0;
}
.of-iso-tip::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--blue); flex-shrink: 0;
  animation: ofDotPulse 2s ease-in-out infinite;
}
@keyframes ofDotPulse {
  0%, 100% { opacity: .4; transform: scale(1); }
  50%       { opacity: 1; transform: scale(1.5); }
}
.of-iso-legend {
  display: flex; align-items: center; gap: 8px;
  font-size: 9px; font-weight: 600; color: var(--mute);
  letter-spacing: .12em; text-transform: uppercase;
  margin-top: 20px; border-top: 1px solid var(--line); padding-top: 14px;
}
.of-iso-legend-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(26,107,218,.15); border: 1px solid rgba(26,107,218,.4);
  flex-shrink: 0;
}
.of-brand-stat {
  position: absolute; bottom: -24px; right: -24px;
  background: var(--blue); color: #fff;
  padding: 16px 22px;
  display: flex; flex-direction: column; gap: 4px;
  box-shadow: 0 12px 32px rgba(26,107,218,.45);
}
.of-brand-stat strong {
  font-family: var(--fh); font-size: 1.6rem; font-weight: 700; line-height: 1;
}
.of-brand-stat span {
  font-size: 10px; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; opacity: .85;
}
.of-types {
  padding: 120px 0;
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.of-types-hd { text-align: center; margin-bottom: 56px; }
.of-types-hd .eyebrow { margin-bottom: 12px; }
.of-types-hd h2 { font-size: clamp(2rem, 3.2vw, 2.8rem); }
.of-types-hd h2 em { font-style: normal; color: var(--blue); }
.of-types-hd p { font-size: 15px; color: var(--mute); max-width: 560px; margin: 14px auto 0; line-height: 1.8; }
.of-types-bento {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 420px 420px;
  gap: 5px;
}
.of-type-item {
  position: relative; overflow: hidden;
  background: var(--bg3); cursor: default;
  transform-style: preserve-3d;
}
.of-type-item img {
  width: 100%; height: 100%; object-fit: cover;
  display: block; transition: transform 1s cubic-bezier(.22,.61,.36,1);
}
.of-type-item:hover img { transform: scale(1.07); }
.of-type-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6,13,26,.97) 0%, rgba(6,13,26,.4) 50%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 40px 36px;
  transition: background .5s;
}
.of-type-item:hover .of-type-overlay {
  background: linear-gradient(to top, rgba(6,13,26,1) 0%, rgba(6,13,26,.65) 60%, rgba(6,13,26,.2) 100%);
}
.of-type-sector {
  font-size: 9px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 12px;
  background: rgba(26,107,218,.15); padding: 4px 12px;
  display: inline-block; width: fit-content;
  border: 1px solid rgba(26,107,218,.3);
}
.of-type-title {
  font-family: var(--fh); font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 700; color: var(--white); line-height: 1.15; margin-bottom: 0;
}
.of-type-desc {
  font-size: 14px; color: var(--mute); line-height: 1.65;
  max-height: 0; overflow: hidden; opacity: 0; margin-top: 0;
  transition: max-height .5s cubic-bezier(.22,.61,.36,1), opacity .45s, margin-top .3s;
}
.of-type-item:hover .of-type-desc { max-height: 80px; opacity: 1; margin-top: 12px; }
.of-type-specs {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 5px;
  max-height: 0; overflow: hidden; opacity: 0;
  transition: max-height .5s cubic-bezier(.22,.61,.36,1), opacity .5s;
}
.of-type-item:hover .of-type-specs { max-height: 100px; opacity: 1; margin-top: 10px; }
.of-type-specs li {
  font-size: 11.5px; color: rgba(26,107,218,.85);
  display: flex; align-items: center; gap: 8px;
}
.of-type-specs li i { font-size: 10px; flex-shrink: 0; }
.of-type-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--blue); opacity: 0; margin-top: 0;
  transition: opacity .4s, gap .25s, margin-top .3s;
}
.of-type-item:hover .of-type-link { opacity: 1; margin-top: 16px; }
.of-type-link:hover { gap: 12px; }
.of-type-link i { font-size: 9px; }
@media (max-width: 1200px) {
  .of-types-bento { grid-template-rows: 360px 360px; }
}
@media (max-width: 1024px) {
  .of-brand-inner { grid-template-columns: 1fr; gap: 56px; }
  .of-brand::before { display: none; }
  .of-brand-stat { right: 0; }
  .of-iso-stage { transform: perspective(700px) rotateX(50deg) rotateZ(-12deg); }
}
@media (max-width: 768px) {
  .of-types-bento { grid-template-columns: 1fr; grid-template-rows: repeat(4, 340px); }
  .of-brand-ctas { flex-direction: column; align-items: flex-start; }
  .of-iso-wrap { padding: 28px 20px; }
  .of-iso-stage { grid-template-columns: 80px 1fr 70px; grid-template-rows: 100px 130px; }
  .of-type-overlay { padding: 28px 24px; }
}
@media (max-width: 500px) {
  .of-types-bento { grid-template-rows: repeat(4, 280px); }
  .of-iso-stage { grid-template-columns: 58px 1fr 56px; grid-template-rows: 88px 108px; }
  .of-iso-wrap { padding: 20px 16px; }
}

/* === LUXURY INTERIOR (lx-) === */
.lx-manifesto {
  padding: 120px 0;
  background: var(--bg);
  border-top: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.lx-manifesto::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  opacity: .5;
}
.lx-mani-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
.lx-mani-line {
  width: 48px; height: 1px;
  background: var(--blue);
  margin: 40px auto;
  opacity: .5;
}
.lx-mani-inner .eyebrow { margin-bottom: 28px; }
.lx-mani-statement {
  font-family: var(--fh);
  font-size: clamp(2.6rem, 5.5vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -.04em;
  color: var(--white);
  margin-bottom: 0;
}
.lx-mani-accent {
  display: block;
  color: var(--blue);
  font-style: italic;
}
.lx-mani-body {
  margin: 0 auto 56px;
  max-width: 680px;
}
.lx-mani-body p {
  font-size: 16px;
  color: var(--mute);
  line-height: 1.85;
  margin-bottom: 16px;
}
.lx-mani-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  margin-top: 64px;
  text-align: left;
}
.lx-mani-pillar {
  padding: 40px 36px;
  border-right: 1px solid var(--line);
  position: relative;
  transition: background .3s;
}
.lx-mani-pillar:last-child { border-right: none; }
.lx-mani-pillar:hover { background: rgba(26,107,218,.03); }
.lx-mani-pillar::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s var(--ease);
}
.lx-mani-pillar:hover::before { transform: scaleX(1); }
.lx-mani-pillar-num {
  display: block;
  font-family: var(--fh);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--blue);
  opacity: .28;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -.04em;
}
.lx-mani-pillar-label {
  display: block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
}
.lx-mani-pillar p {
  font-size: 13.5px;
  color: var(--mute);
  line-height: 1.75;
  margin: 0;
}

.lx-materials {
  padding: 120px 0;
  background: var(--bg2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.lx-mat-hd {
  text-align: center;
  margin-bottom: 64px;
}
.lx-mat-hd .eyebrow { margin-bottom: 12px; }
.lx-mat-hd h2 {
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  margin-bottom: 16px;
}
.lx-mat-hd h2 em { font-style: normal; color: var(--blue); }
.lx-mat-hd > p {
  font-size: 15px;
  color: var(--mute);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
}
.lx-mat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.lx-mat-item {
  padding: 48px 40px 40px;
  border-right: 1px solid var(--line);
  position: relative;
  transition: background .3s;
  cursor: default;
  transform-style: preserve-3d;
}
.lx-mat-item:last-child { border-right: none; }
.lx-mat-item::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--bl));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--ease);
}
.lx-mat-item:hover::before { transform: scaleX(1); }
.lx-mat-item:hover { background: rgba(26,107,218,.03); }
.lx-mat-header { margin-bottom: 24px; }
.lx-mat-origin {
  display: block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}
.lx-mat-name {
  font-family: var(--fh);
  font-size: clamp(2.2rem, 3vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -.04em;
  margin: 0;
}
.lx-mat-body > p {
  font-size: 14px;
  color: var(--mute);
  line-height: 1.8;
  margin-bottom: 20px;
}
.lx-mat-specs {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lx-mat-specs li {
  font-size: 13px;
  color: var(--mute);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.lx-mat-specs li::before {
  content: '';
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
  margin-top: 6px;
}
.lx-mat-tag {
  display: inline-block;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--mute);
  border: 1px solid var(--line);
  padding: 5px 12px;
}
.lx-mat-note {
  text-align: center;
  margin-top: 48px;
  font-size: 13px;
}
.lx-mat-note a { color: var(--blue); text-decoration: none; }
.lx-mat-note a:hover { text-decoration: underline; }

.lx-portfolio {
  padding: 80px 0 0;
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.lx-port-hd {
  text-align: center;
  margin-bottom: 48px;
}
.lx-port-hd .eyebrow { margin-bottom: 12px; }
.lx-port-hd h2 {
  font-size: clamp(2rem, 3.2vw, 2.8rem);
}
.lx-port-hd h2 em { font-style: normal; color: var(--blue); }
.lx-port-stage {
  position: relative;
  aspect-ratio: 21 / 9;
  overflow: hidden;
}
.lx-port-stage img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
  transition: transform 1.2s cubic-bezier(.22,.61,.36,1);
}
.lx-port-stage:hover img { transform: scale(1.04); }
.lx-port-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    105deg,
    rgba(6,13,26,.97) 0%,
    rgba(6,13,26,.82) 38%,
    rgba(6,13,26,.35) 65%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 56px 64px;
}
.lx-port-meta {
  max-width: 480px;
}
.lx-port-scope {
  display: block;
  font-size: 9px; font-weight: 700; letter-spacing: .3em; text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}
.lx-port-title {
  font-family: var(--fh);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -.04em;
  margin-bottom: 16px;
}
.lx-port-detail {
  font-size: 14px;
  color: rgba(238,243,255,.7);
  line-height: 1.75;
  margin-bottom: 20px;
  max-width: 380px;
}
.lx-port-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.lx-port-tags span {
  font-size: 9px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  color: var(--mute);
  border: 1px solid rgba(26,107,218,.3);
  background: rgba(26,107,218,.08);
  padding: 4px 12px;
}
.lx-port-loc {
  position: absolute;
  bottom: 40px; right: 48px;
  font-size: 11px; font-weight: 600; letter-spacing: .1em;
  color: var(--mute);
  display: flex; align-items: center; gap: 7px;
}
.lx-port-loc i { color: var(--blue); font-size: 10px; }

.lx-price {
  padding: 120px 0;
  background: var(--bg2);
  border-top: 1px solid var(--line);
}
.lx-price-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.lx-price-text .eyebrow { margin-bottom: 16px; }
.lx-price-text h2 {
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.03em;
  margin-bottom: 20px;
}
.lx-price-text h2 em { font-style: normal; color: var(--blue); }
.lx-price-text > p {
  font-size: 15px;
  color: var(--mute);
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 28px;
}
.lx-price-incl {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lx-price-incl li {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; color: var(--mute);
}
.lx-price-incl li i { color: var(--blue); font-size: 12px; flex-shrink: 0; }
.lx-price-guide {
  font-size: 13px;
  color: var(--mute);
  margin-bottom: 32px;
}
.lx-price-guide a { color: var(--blue); }
.lx-price-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.lx-price-tiers {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--line);
}
.lx-price-tier {
  padding: 36px 40px;
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: background .3s;
  cursor: default;
}
.lx-price-tier:last-child { border-bottom: none; }
.lx-price-tier:hover { background: rgba(26,107,218,.03); }
.lx-price-tier--feature {
  background: rgba(26,107,218,.05);
  border-left: 2px solid var(--blue);
}
.lx-price-tier--feature:hover { background: rgba(26,107,218,.1); }
.lx-tier-scope {
  display: block;
  font-size: 8px; font-weight: 700; letter-spacing: .28em; text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}
.lx-tier-name {
  font-family: var(--fh);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.lx-tier-desc {
  font-size: 13.5px;
  color: var(--mute);
  line-height: 1.7;
  margin-bottom: 16px;
}
.lx-tier-desc a { color: var(--blue); }
.lx-tier-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--blue); text-decoration: none;
  transition: gap .25s;
}
.lx-tier-cta:hover { gap: 14px; }
.lx-tier-cta i { font-size: 9px; }

@media (max-width: 1024px) {
  .lx-mani-pillars { grid-template-columns: 1fr; }
  .lx-mani-pillar { border-right: none; border-bottom: 1px solid var(--line); }
  .lx-mani-pillar:last-child { border-bottom: none; }
  .lx-mat-grid { grid-template-columns: 1fr; }
  .lx-mat-item { border-right: none; border-bottom: 1px solid var(--line); }
  .lx-mat-item:last-child { border-bottom: none; }
  .lx-price-inner { grid-template-columns: 1fr; gap: 56px; }
  .lx-port-stage { aspect-ratio: 16 / 9; }
  .lx-port-overlay { padding: 40px 48px; }
}
@media (max-width: 768px) {
  .lx-manifesto { padding: 80px 0; }
  .lx-mani-statement { font-size: clamp(2.2rem, 7vw, 3.2rem); }
  .lx-mani-pillar { padding: 32px 24px; }
  .lx-materials { padding: 80px 0; }
  .lx-mat-item { padding: 36px 28px; }
  .lx-portfolio { padding: 64px 0 0; }
  .lx-port-stage { aspect-ratio: 4 / 3; }
  .lx-port-overlay { padding: 28px 32px; }
  .lx-port-title { font-size: clamp(1.8rem, 5vw, 2.6rem); }
  .lx-port-loc { right: 24px; bottom: 24px; }
  .lx-price { padding: 80px 0; }
  .lx-price-ctas { flex-direction: column; align-items: flex-start; }
  .lx-price-tier { padding: 28px 28px; }
}
@media (max-width: 500px) {
  .lx-mani-inner { text-align: left; }
  .lx-mani-line { margin: 32px 0; }
  .lx-mani-body { max-width: 100%; }
  .lx-port-stage { aspect-ratio: 3 / 4; }
  .lx-port-detail { display: none; }
  .lx-port-tags { display: none; }
  .lx-port-loc { display: none; }
}

/* === INTERIOR DESIGN FIRM (if-) === */
.if-cred {
  padding: 96px 0;
  background: var(--bg2);
}
.if-cred h2 {
  font-family: var(--fh);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.15;
}
.if-cred h2 em { color: var(--blue); font-style: normal; }
.if-cred > .container > p { color: var(--mute); max-width: 600px; margin-bottom: 56px; line-height: 1.75; }
.if-cred-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.if-cred-item {
  padding: 48px 40px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: background .3s, transform .25s;
}
.if-cred-item:hover { background: rgba(26,107,218,.04); }
.if-cred-num {
  display: block;
  font-family: var(--fh);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -.02em;
}
.if-cred-title {
  font-family: var(--fh);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: .02em;
}
.if-cred-body {
  font-size: 13.5px;
  color: var(--mute);
  line-height: 1.72;
}
.if-team {
  padding: 96px 0;
  background: var(--bg);
}
.if-team-hd {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}
.if-team-hd h2 {
  font-family: var(--fh);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
}
.if-team-hd h2 em { color: var(--blue); font-style: normal; }
.if-team-hd p { color: var(--mute); line-height: 1.75; }
.if-team-hd a { color: var(--blue); }
.if-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px 48px;
}
.if-team-member {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform .25s;
}
.if-team-photo-wrap {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 24px;
  border: 2px solid var(--line);
}
.if-team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.if-team-name {
  font-family: var(--fh);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
  letter-spacing: .01em;
}
.if-team-role {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 4px;
}
.if-team-exp {
  display: block;
  font-size: 12.5px;
  color: var(--mute);
  margin-bottom: 16px;
}
.if-team-phi {
  font-size: 13.5px;
  color: var(--mute);
  line-height: 1.7;
  font-style: italic;
  border-left: 2px solid var(--blue);
  padding-left: 14px;
}
.if-studios {
  padding: 96px 0;
  background: var(--bg2);
}
.if-studios-hd {
  max-width: 680px;
  margin-bottom: 64px;
}
.if-studios-hd h2 {
  font-family: var(--fh);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
}
.if-studios-hd h2 em { color: var(--blue); font-style: normal; }
.if-studios-hd p { color: var(--mute); line-height: 1.75; }
.if-studios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.if-studio-item {
  padding: 48px 40px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background .3s, transform .25s;
}
.if-studio-item:hover { background: rgba(26,107,218,.04); }
.if-studio-tag {
  display: inline-block;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--blue);
  border: 1px solid var(--blue);
  padding: 3px 8px;
  border-radius: 2px;
  margin-bottom: 20px;
}
.if-studio-name {
  font-family: var(--fh);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: .01em;
}
.if-studio-addr {
  font-size: 13px;
  color: var(--mute);
  font-style: normal;
  line-height: 1.7;
  margin-bottom: 14px;
}
.if-studio-spec {
  font-size: 13.5px;
  color: var(--mute);
  line-height: 1.7;
  margin-bottom: 24px;
}
.if-studio-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--blue);
  text-decoration: none;
  transition: gap .25s;
}
.if-studio-link:hover { gap: 14px; }
.if-studio-link i { font-size: 9px; }
@media (max-width: 1024px) {
  .if-cred-row { grid-template-columns: repeat(2, 1fr); }
  .if-team-grid { grid-template-columns: repeat(2, 1fr); gap: 48px 40px; }
  .if-studios-grid { grid-template-columns: 1fr; }
  .if-studio-item:last-child { border-bottom: none; }
}
@media (max-width: 768px) {
  .if-cred { padding: 72px 0; }
  .if-cred-item { padding: 36px 28px; }
  .if-team { padding: 72px 0; }
  .if-team-grid { grid-template-columns: 1fr; gap: 40px; }
  .if-studios { padding: 72px 0; }
  .if-studio-item { padding: 36px 28px; }
}
@media (max-width: 500px) {
  .if-cred-row { grid-template-columns: 1fr; }
  .if-cred-item:last-child { border-bottom: none; }
  .if-cred-item { padding: 32px 24px; }
  .if-studio-item { padding: 32px 24px; }
}

/* === BEDROOM INTERIOR (br-) === */
.br-styles {
  padding: 96px 0;
  background: var(--bg2);
}
.br-styles-hd {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}
.br-styles-hd h2 {
  font-family: var(--fh);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 14px;
}
.br-styles-hd h2 em { color: var(--blue); font-style: normal; }
.br-styles-hd p { color: var(--mute); line-height: 1.75; }
.br-style-tabs {
  display: flex; gap: 0; margin-bottom: 48px;
  border: 1px solid var(--line); overflow: hidden;
}
.br-style-tab {
  flex: 1; padding: 14px 16px; background: transparent;
  border: none; border-right: 1px solid var(--line); cursor: pointer;
  font-family: var(--fh); font-size: 10.5px; font-weight: 700;
  letter-spacing: .24em; text-transform: uppercase; color: var(--mute);
  transition: background .25s, color .25s;
}
.br-style-tab:last-child { border-right: none; }
.br-style-tab:hover { background: rgba(26,107,218,.07); color: var(--white); }
.br-style-tab.br-active { background: var(--blue); color: #fff; }
.br-style-panels { position: relative; }
.br-style-panel { display: none; }
.br-style-panel.br-active { display: grid; grid-template-columns: 1fr 1fr; }
.br-panel-img { aspect-ratio: 4 / 3; overflow: hidden; }
.br-panel-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s ease; }
.br-panel-img:hover img { transform: scale(1.04); }
.br-panel-body {
  padding: 56px 48px;
  background: var(--bg3);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.br-panel-tag {
  display: block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}
.br-panel-title {
  font-family: var(--fh);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}
.br-panel-desc { font-size: 14px; color: var(--mute); line-height: 1.75; margin-bottom: 24px; }
.br-panel-specs { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.br-panel-spec {
  font-size: 13px;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
}
.br-panel-spec::before {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}
.br-elements {
  padding: 96px 0;
  background: var(--bg);
}
.br-elements-hd {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}
.br-elements-hd h2 {
  font-family: var(--fh);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 14px;
}
.br-elements-hd h2 em { color: var(--blue); font-style: normal; }
.br-elements-hd p { color: var(--mute); line-height: 1.75; }
.br-elements-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.br-el-item {
  padding: 48px 40px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background .3s, transform .25s;
}
.br-el-item:hover { background: rgba(26,107,218,.04); }
.br-el-icon { font-size: 1.6rem; color: var(--blue); margin-bottom: 20px; }
.br-el-title {
  font-family: var(--fh);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: .01em;
}
.br-el-desc { font-size: 13.5px; color: var(--mute); line-height: 1.72; margin-bottom: 20px; }
.br-el-specs { list-style: none; display: flex; flex-direction: column; gap: 7px; margin-bottom: 24px; }
.br-el-spec {
  font-size: 12.5px;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
}
.br-el-spec::before {
  content: '';
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}
.br-el-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--blue);
  text-decoration: none;
  transition: gap .25s;
}
.br-el-link:hover { gap: 12px; }
.br-el-link i { font-size: 9px; }
@media (max-width: 1024px) {
  .br-style-panel.br-active { grid-template-columns: 1fr; }
  .br-panel-img { aspect-ratio: 16 / 9; }
  .br-elements-grid { grid-template-columns: 1fr; }
  .br-el-item:last-child { border-bottom: none; }
}
@media (max-width: 768px) {
  .br-styles { padding: 72px 0; }
  .br-style-tabs { flex-wrap: wrap; }
  .br-style-tab { flex: 0 0 100%; border-right: none; border-bottom: 1px solid var(--line); padding: 14px 20px; }
  .br-style-tab:last-child { border-bottom: none; }
  .br-panel-body { padding: 36px 28px; }
  .br-elements { padding: 72px 0; }
  .br-el-item { padding: 36px 28px; }
}
@media (max-width: 500px) {
  .br-el-item { padding: 32px 24px; }
}

/* === LIVING ROOM INTERIOR (lr-) === */
.lr-focal {
  padding: 96px 0;
  background: var(--bg2);
}
.lr-focal-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.lr-focal-statement {
  font-family: var(--fh);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 24px;
  letter-spacing: -.02em;
}
.lr-focal-statement em { color: var(--blue); font-style: normal; }
.lr-focal-sub { font-size: 14px; color: var(--mute); line-height: 1.75; margin-bottom: 32px; max-width: 480px; }
.lr-focal-stats { display: flex; gap: 40px; margin-bottom: 40px; }
.lr-focal-stat { display: flex; flex-direction: column; }
.lr-focal-stat strong {
  font-family: var(--fh);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 4px;
}
.lr-focal-stat span { font-size: 12px; color: var(--mute); }
.lr-focal-items { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--line); }
.lr-focal-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 0;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
  transition: background .25s;
  cursor: default;
}
.lr-focal-item:hover { background: rgba(26,107,218,.03); }
.lr-focal-n {
  font-family: var(--fh);
  font-size: 2.2rem;
  font-weight: 700;
  color: rgba(26,107,218,.2);
  line-height: 1;
  padding-top: 4px;
}
.lr-focal-content h3 {
  font-family: var(--fh);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
  letter-spacing: .02em;
}
.lr-focal-content p { font-size: 13px; color: var(--mute); line-height: 1.65; }
.lr-focal-content a { color: var(--blue); }
.lr-zones {
  padding: 96px 0;
  background: var(--bg);
}
.lr-zones-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.lr-zones-img { aspect-ratio: 3 / 4; overflow: hidden; }
.lr-zones-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lr-zones-body { padding-top: 8px; }
.lr-zones-body h2 {
  font-family: var(--fh);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 12px;
}
.lr-zones-body h2 em { color: var(--blue); font-style: normal; }
.lr-zones-body > p { font-size: 14px; color: var(--mute); line-height: 1.75; margin-bottom: 40px; }
.lr-zones-list { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--line); }
.lr-zone-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 16px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
  transition: transform .25s;
}
.lr-zone-n {
  font-family: var(--fh);
  font-size: 1.6rem;
  font-weight: 700;
  color: rgba(26,107,218,.24);
  line-height: 1;
  padding-top: 3px;
}
.lr-zone-name {
  font-family: var(--fh);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  display: block;
  margin-bottom: 4px;
  letter-spacing: .015em;
}
.lr-zone-desc { font-size: 13px; color: var(--mute); line-height: 1.65; }
@media (max-width: 1024px) {
  .lr-focal-inner { grid-template-columns: 1fr; gap: 56px; }
  .lr-focal-stats { gap: 28px; }
  .lr-zones-inner { grid-template-columns: 1fr; gap: 48px; }
  .lr-zones-img { aspect-ratio: 16 / 9; }
}
@media (max-width: 768px) {
  .lr-focal { padding: 72px 0; }
  .lr-zones { padding: 72px 0; }
  .lr-focal-stats { flex-wrap: wrap; gap: 20px; }
}
@media (max-width: 500px) {
  .lr-focal-item { grid-template-columns: 48px 1fr; }
  .lr-zone-item { grid-template-columns: 32px 1fr; gap: 12px; }
}

/* === WARDROBE DESIGN (wd-) === */
.wd-types {
  padding: 96px 0;
  background: var(--bg2);
}
.wd-types-hd { text-align: center; max-width: 680px; margin: 0 auto 48px; }
.wd-types-hd h2 {
  font-family: var(--fh);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 14px;
}
.wd-types-hd h2 em { color: var(--blue); font-style: normal; }
.wd-types-hd p { color: var(--mute); line-height: 1.75; }
.wd-type-tabs {
  display: flex; gap: 0; margin-bottom: 48px;
  border: 1px solid var(--line); overflow: hidden;
}
.wd-type-tab {
  flex: 1; padding: 14px 16px; background: transparent;
  border: none; border-right: 1px solid var(--line); cursor: pointer;
  font-family: var(--fh); font-size: 10.5px; font-weight: 700;
  letter-spacing: .24em; text-transform: uppercase; color: var(--mute);
  transition: background .25s, color .25s;
}
.wd-type-tab:last-child { border-right: none; }
.wd-type-tab:hover { background: rgba(26,107,218,.07); color: var(--white); }
.wd-type-tab.wd-active { background: var(--blue); color: #fff; }
.wd-type-panels { position: relative; }
.wd-type-panel { display: none; }
.wd-type-panel.wd-active { display: grid; grid-template-columns: 1fr 1fr; }
.wd-panel-img { aspect-ratio: 4 / 3; overflow: hidden; }
.wd-panel-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s ease; }
.wd-panel-img:hover img { transform: scale(1.04); }
.wd-panel-body {
  padding: 56px 48px;
  background: var(--bg3);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.wd-panel-tag {
  display: block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}
.wd-panel-title {
  font-family: var(--fh);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}
.wd-panel-desc { font-size: 14px; color: var(--mute); line-height: 1.75; margin-bottom: 24px; }
.wd-panel-specs { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.wd-panel-spec {
  font-size: 13px;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
}
.wd-panel-spec::before {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}
.wd-interior {
  padding: 96px 0;
  background: var(--bg3);
}
.wd-int-hd { max-width: 680px; margin-bottom: 64px; }
.wd-int-hd h2 {
  font-family: var(--fh);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 14px;
}
.wd-int-hd h2 em { color: var(--blue); font-style: normal; }
.wd-int-hd p { color: var(--mute); line-height: 1.75; }
.wd-int-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.wd-int-item {
  padding: 40px 36px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background .3s, transform .25s;
}
.wd-int-item:hover { background: rgba(26,107,218,.05); }
.wd-int-icon { font-size: 1.4rem; color: var(--blue); margin-bottom: 16px; }
.wd-int-title {
  font-family: var(--fh);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: .01em;
}
.wd-int-desc { font-size: 13px; color: var(--mute); line-height: 1.68; margin-bottom: 10px; }
.wd-int-spec {
  font-size: 11.5px;
  color: var(--blue);
  font-weight: 600;
  letter-spacing: .04em;
  display: block;
}
@media (max-width: 1024px) {
  .wd-type-panel.wd-active { grid-template-columns: 1fr; }
  .wd-panel-img { aspect-ratio: 16 / 9; }
  .wd-int-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .wd-types { padding: 72px 0; }
  .wd-type-tabs { flex-wrap: wrap; }
  .wd-type-tab { flex: 0 0 100%; border-right: none; border-bottom: 1px solid var(--line); padding: 14px 20px; }
  .wd-type-tab:last-child { border-bottom: none; }
  .wd-panel-body { padding: 36px 28px; }
  .wd-interior { padding: 72px 0; }
  .wd-int-item { padding: 32px 28px; }
}
@media (max-width: 500px) {
  .wd-int-grid { grid-template-columns: 1fr; }
  .wd-int-item:last-child { border-bottom: none; }
  .wd-int-item { padding: 28px 24px; }
}

/* === POOJA ROOM DESIGN (pr-) === */
.pr-styles {
  padding: 96px 0;
  background: var(--bg2);
}
.pr-styles-hd { text-align: center; max-width: 680px; margin: 0 auto 48px; }
.pr-styles-hd h2 {
  font-family: var(--fh);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 14px;
}
.pr-styles-hd h2 em { color: var(--blue); font-style: normal; }
.pr-styles-hd p { color: var(--mute); line-height: 1.75; }
.pr-style-tabs {
  display: flex; gap: 0; margin-bottom: 48px;
  border: 1px solid var(--line); overflow: hidden;
}
.pr-style-tab {
  flex: 1; padding: 14px 16px; background: transparent;
  border: none; border-right: 1px solid var(--line); cursor: pointer;
  font-family: var(--fh); font-size: 10.5px; font-weight: 700;
  letter-spacing: .24em; text-transform: uppercase; color: var(--mute);
  transition: background .25s, color .25s;
}
.pr-style-tab:last-child { border-right: none; }
.pr-style-tab:hover { background: rgba(26,107,218,.07); color: var(--white); }
.pr-style-tab.pr-active { background: var(--blue); color: #fff; }
.pr-style-panels { position: relative; }
.pr-style-panel { display: none; }
.pr-style-panel.pr-active { display: grid; grid-template-columns: 1fr 1fr; }
.pr-panel-img { aspect-ratio: 4 / 3; overflow: hidden; }
.pr-panel-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s ease; }
.pr-panel-img:hover img { transform: scale(1.04); }
.pr-panel-body {
  padding: 56px 48px;
  background: var(--bg3);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.pr-panel-tag {
  display: block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}
.pr-panel-title {
  font-family: var(--fh);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}
.pr-panel-desc { font-size: 14px; color: var(--mute); line-height: 1.75; margin-bottom: 24px; }
.pr-panel-specs { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.pr-panel-spec {
  font-size: 13px;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
}
.pr-panel-spec::before {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}
.pr-materials {
  padding: 96px 0;
  background: var(--bg);
}
.pr-mat-hd { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.pr-mat-hd h2 {
  font-family: var(--fh);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 14px;
}
.pr-mat-hd h2 em { color: var(--blue); font-style: normal; }
.pr-mat-hd p { color: var(--mute); line-height: 1.75; }
.pr-mat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.pr-mat-item {
  padding: 40px 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background .3s, transform .25s;
  position: relative;
}
.pr-mat-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}
.pr-mat-item:hover::before { transform: scaleX(1); }
.pr-mat-item:hover { background: rgba(26,107,218,.05); }
.pr-mat-origin {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--blue);
  display: block;
  margin-bottom: 14px;
}
.pr-mat-name {
  font-family: var(--fh);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 12px;
}
.pr-mat-desc { font-size: 13px; color: var(--mute); line-height: 1.7; }
@media (max-width: 1024px) {
  .pr-style-panel.pr-active { grid-template-columns: 1fr; }
  .pr-panel-img { aspect-ratio: 16 / 9; }
  .pr-mat-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .pr-styles { padding: 72px 0; }
  .pr-style-tabs { flex-wrap: wrap; }
  .pr-style-tab { flex: 0 0 100%; border-right: none; border-bottom: 1px solid var(--line); padding: 14px 20px; }
  .pr-style-tab:last-child { border-bottom: none; }
  .pr-panel-body { padding: 36px 28px; }
  .pr-materials { padding: 72px 0; }
  .pr-mat-item { padding: 32px 24px; }
}
@media (max-width: 500px) {
  .pr-mat-grid { grid-template-columns: 1fr; }
}

/* === HOME RENOVATION (rn-) === */
.rn-before {
  padding: 96px 0;
  background: var(--bg2);
}
.rn-before-hd { max-width: 680px; margin-bottom: 56px; }
.rn-before-hd h2 {
  font-family: var(--fh);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 14px;
}
.rn-before-hd h2 em { color: var(--blue); font-style: normal; }
.rn-before-hd p { color: var(--mute); line-height: 1.75; }
.rn-compare-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.rn-compare-item {
  background: var(--bg3);
  overflow: hidden;
  transition: transform .3s;
}
.rn-compare-item:hover { transform: translateY(-4px); }
.rn-compare-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.rn-compare-img-wrap { position: relative; aspect-ratio: 1; overflow: hidden; }
.rn-compare-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.rn-compare-label {
  position: absolute;
  top: 8px; left: 8px;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(6,13,26,.72);
  padding: 4px 8px;
}
.rn-compare-label--after { background: rgba(26,107,218,.72); }
.rn-compare-body { padding: 24px; }
.rn-compare-tag {
  display: block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 8px;
}
.rn-compare-title {
  font-family: var(--fh);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.rn-compare-desc { font-size: 13px; color: var(--mute); line-height: 1.65; }
.rn-timeline {
  padding: 96px 0;
  background: var(--bg3);
}
.rn-tl-hd { text-align: center; max-width: 680px; margin: 0 auto 64px; }
.rn-tl-hd h2 {
  font-family: var(--fh);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 14px;
}
.rn-tl-hd h2 em { color: var(--blue); font-style: normal; }
.rn-tl-hd p { color: var(--mute); line-height: 1.75; }
.rn-tl-steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  position: relative;
}
.rn-tl-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 0; right: 0;
  height: 1px;
  background: var(--line);
}
.rn-tl-step { padding: 0 16px; position: relative; }
.rn-tl-dot {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fh);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  transition: border-color .3s, box-shadow .3s;
}
.rn-tl-step:hover .rn-tl-dot { border-color: var(--blue); box-shadow: 0 0 16px var(--glow); }
.rn-tl-label {
  font-family: var(--fh);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
}
.rn-tl-desc { font-size: 12px; color: var(--mute); line-height: 1.65; }
@media (max-width: 1024px) {
  .rn-compare-grid { grid-template-columns: 1fr 1fr; }
  .rn-tl-steps { grid-template-columns: repeat(3, 1fr); row-gap: 48px; }
  .rn-tl-steps::before { display: none; }
}
@media (max-width: 768px) {
  .rn-before { padding: 72px 0; }
  .rn-timeline { padding: 72px 0; }
  .rn-compare-grid { grid-template-columns: 1fr; }
  .rn-tl-steps { grid-template-columns: repeat(2, 1fr); }
  .rn-tl-step { padding: 0 12px; }
}
@media (max-width: 500px) {
  .rn-tl-steps { grid-template-columns: 1fr; }
  .rn-tl-step { display: flex; align-items: flex-start; gap: 16px; }
  .rn-tl-dot { flex-shrink: 0; margin-bottom: 0; }
}

/* === APARTMENT INTERIOR (ap-) === */
.ap-sizes {
  padding: 96px 0;
  background: var(--bg2);
}
.ap-sizes-hd { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.ap-sizes-hd h2 {
  font-family: var(--fh);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 14px;
}
.ap-sizes-hd h2 em { color: var(--blue); font-style: normal; }
.ap-sizes-hd p { color: var(--mute); line-height: 1.75; }
.ap-size-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.ap-size-item {
  padding: 48px 40px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background .3s;
  position: relative;
}
.ap-size-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}
.ap-size-item:hover::before { transform: scaleX(1); }
.ap-size-item:hover { background: rgba(26,107,218,.05); }
.ap-size-sqft {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--blue);
  display: block;
  margin-bottom: 12px;
}
.ap-size-label {
  font-family: var(--fh);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
}
.ap-size-desc { font-size: 13px; color: var(--mute); line-height: 1.75; margin-bottom: 24px; }
.ap-size-incl { list-style: none; display: flex; flex-direction: column; gap: 6px; margin-bottom: 24px; }
.ap-size-incl li {
  font-size: 13px;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
}
.ap-size-incl li i { color: var(--blue); font-size: .7rem; flex-shrink: 0; }
.ap-size-price {
  font-family: var(--fh);
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 16px;
}
.ap-size-link {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--blue);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap .25s;
}
.ap-size-link:hover { gap: 10px; }
.ap-constraints {
  padding: 96px 0;
  background: var(--bg);
}
.ap-constr-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.ap-constr-text h2 {
  font-family: var(--fh);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
}
.ap-constr-text h2 em { color: var(--blue); font-style: normal; }
.ap-constr-text > p { color: var(--mute); line-height: 1.75; margin-bottom: 40px; }
.ap-constr-items { display: flex; flex-direction: column; gap: 32px; }
.ap-constr-item { display: flex; gap: 20px; align-items: flex-start; }
.ap-constr-icon {
  width: 48px; height: 48px;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 1rem;
  flex-shrink: 0;
  transition: background .3s, border-color .3s;
}
.ap-constr-item:hover .ap-constr-icon { background: rgba(26,107,218,.12); border-color: var(--blue); }
.ap-constr-body h3 {
  font-family: var(--fh);
  font-size: .95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.ap-constr-body p { font-size: 13px; color: var(--mute); line-height: 1.7; }
.ap-constr-media { position: relative; }
.ap-constr-img-wrap { aspect-ratio: 4 / 5; overflow: hidden; }
.ap-constr-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .8s ease; }
.ap-constr-img-wrap:hover img { transform: scale(1.04); }
.ap-constr-accent {
  position: absolute;
  bottom: -20px; right: -20px;
  width: 120px; height: 120px;
  background: var(--blue);
  opacity: .08;
  pointer-events: none;
}
@media (max-width: 1024px) {
  .ap-size-grid { grid-template-columns: 1fr 1fr; }
  .ap-constr-inner { grid-template-columns: 1fr; gap: 48px; }
  .ap-constr-accent { display: none; }
}
@media (max-width: 768px) {
  .ap-sizes { padding: 72px 0; }
  .ap-constraints { padding: 72px 0; }
  .ap-size-item { padding: 36px 28px; }
  .ap-constr-items { gap: 24px; }
}
@media (max-width: 500px) {
  .ap-size-grid { grid-template-columns: 1fr; }
}

/* === MODULAR KITCHEN CABINETS (kc-) === */
.kc-anatomy {
  padding: 96px 0;
  background: var(--bg2);
}
.kc-anat-hd { max-width: 680px; margin-bottom: 56px; }
.kc-anat-hd h2 {
  font-family: var(--fh);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 14px;
}
.kc-anat-hd h2 em { color: var(--blue); font-style: normal; }
.kc-anat-hd p { color: var(--mute); line-height: 1.75; }
.kc-anat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.kc-anat-item {
  padding: 40px 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background .3s, transform .25s;
  position: relative;
  display: flex;
  flex-direction: column;
}
.kc-anat-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}
.kc-anat-item:hover::before { transform: scaleX(1); }
.kc-anat-item:hover { background: rgba(26,107,218,.05); }
.kc-anat-icon { font-size: 1.4rem; color: var(--blue); margin-bottom: 16px; }
.kc-anat-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--blue);
  display: block;
  margin-bottom: 10px;
}
.kc-anat-title {
  font-family: var(--fh);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.kc-anat-desc { font-size: 13px; color: var(--mute); line-height: 1.68; margin-bottom: 14px; flex: 1; }
.kc-anat-spec {
  font-size: 11.5px;
  color: var(--blue);
  font-weight: 600;
  letter-spacing: .04em;
  display: block;
  border-top: 1px solid var(--line);
  padding-top: 12px;
}
.kc-storage {
  padding: 96px 0;
  background: var(--bg3);
}
.kc-store-hd { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.kc-store-hd h2 {
  font-family: var(--fh);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 14px;
}
.kc-store-hd h2 em { color: var(--blue); font-style: normal; }
.kc-store-hd p { color: var(--mute); line-height: 1.75; }
.kc-store-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.kc-store-item {
  padding: 40px 32px;
  background: var(--bg);
  border: 1px solid var(--line);
  transition: border-color .3s, transform .25s, background .3s;
}
.kc-store-item:hover {
  border-color: var(--blue);
  background: rgba(26,107,218,.04);
}
.kc-store-icon {
  width: 52px; height: 52px;
  background: rgba(26,107,218,.1);
  border: 1px solid rgba(26,107,218,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 1.1rem;
  margin-bottom: 20px;
}
.kc-store-name {
  font-family: var(--fh);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.kc-store-desc { font-size: 13px; color: var(--mute); line-height: 1.68; margin-bottom: 12px; }
.kc-store-spec {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: .04em;
}
@media (max-width: 1024px) {
  .kc-anat-grid { grid-template-columns: repeat(2, 1fr); }
  .kc-store-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .kc-anatomy { padding: 72px 0; }
  .kc-storage { padding: 72px 0; }
  .kc-anat-item { padding: 32px 24px; }
  .kc-store-item { padding: 32px 24px; }
}
@media (max-width: 500px) {
  .kc-anat-grid { grid-template-columns: 1fr; }
  .kc-store-grid { grid-template-columns: 1fr; }
}

/* === 3D INTERIOR DESIGN (td-) === */
.td-process {
  padding: 96px 0;
  background: var(--bg2);
}
.td-proc-hd { text-align: center; max-width: 680px; margin: 0 auto 64px; }
.td-proc-hd h2 {
  font-family: var(--fh);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 14px;
}
.td-proc-hd h2 em { color: var(--blue); font-style: normal; }
.td-proc-hd p { color: var(--mute); line-height: 1.75; }
.td-proc-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.td-proc-step {
  padding: 48px 36px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background .3s, transform .25s;
}
.td-proc-step:hover { background: rgba(26,107,218,.04); }
.td-proc-img { aspect-ratio: 16 / 9; overflow: hidden; margin-bottom: 24px; }
.td-proc-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s ease; }
.td-proc-step:hover .td-proc-img img { transform: scale(1.04); }
.td-proc-n {
  font-family: var(--fh);
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(26,107,218,.2);
  line-height: 1;
  margin-bottom: 12px;
  display: block;
}
.td-proc-label {
  font-family: var(--fh);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 10px;
}
.td-proc-desc { font-size: 13px; color: var(--mute); line-height: 1.7; }
.td-before3d {
  padding: 96px 0;
  background: var(--bg);
}
.td-b3d-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.td-b3d-text h2 {
  font-family: var(--fh);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
}
.td-b3d-text h2 em { color: var(--blue); font-style: normal; }
.td-b3d-text > p { color: var(--mute); line-height: 1.75; margin-bottom: 40px; }
.td-b3d-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.td-b3d-col h4 {
  font-family: var(--fh);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.td-b3d-col--free h4 { color: var(--blue); }
.td-b3d-col--cost h4 { color: var(--mute); }
.td-b3d-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.td-b3d-list li { font-size: 13px; color: var(--mute); line-height: 1.6; display: flex; gap: 8px; align-items: flex-start; }
.td-b3d-list li i { flex-shrink: 0; margin-top: 2px; }
.td-b3d-col--free .td-b3d-list li i { color: var(--blue); }
.td-b3d-col--cost .td-b3d-list li i { color: rgba(255,80,80,.6); }
.td-b3d-media { position: relative; }
.td-b3d-img-wrap { aspect-ratio: 4 / 5; overflow: hidden; }
.td-b3d-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .8s ease; }
.td-b3d-img-wrap:hover img { transform: scale(1.04); }
.td-b3d-badge {
  position: absolute;
  bottom: 24px; right: -20px;
  background: var(--bg3);
  border: 1px solid var(--line);
  padding: 16px 24px;
  min-width: 160px;
}
.td-b3d-badge strong {
  display: block;
  font-family: var(--fh);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 4px;
}
.td-b3d-badge span { font-size: 11px; color: var(--mute); text-transform: uppercase; letter-spacing: .1em; }
@media (max-width: 1024px) {
  .td-proc-steps { grid-template-columns: repeat(2, 1fr); }
  .td-b3d-inner { grid-template-columns: 1fr; gap: 48px; }
  .td-b3d-badge { right: 0; }
}
@media (max-width: 768px) {
  .td-process { padding: 72px 0; }
  .td-before3d { padding: 72px 0; }
  .td-proc-step { padding: 36px 28px; }
}
@media (max-width: 500px) {
  .td-proc-steps { grid-template-columns: 1fr; }
  .td-b3d-cols { grid-template-columns: 1fr; }
}

/* === INTERIOR DECORATORS (dc-) === */
.dc-palette {
  padding: 96px 0;
  background: var(--bg2);
}
.dc-pal-hd { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.dc-pal-hd h2 {
  font-family: var(--fh);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 14px;
}
.dc-pal-hd h2 em { color: var(--blue); font-style: normal; }
.dc-pal-hd p { color: var(--mute); line-height: 1.75; }
.dc-pal-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
}
.dc-pal-card {
  background: var(--bg3);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform .3s, border-color .3s;
  cursor: default;
}
.dc-pal-card:hover { transform: translateY(-4px); border-color: rgba(26,107,218,.3); }
.dc-swatches {
  display: flex;
  height: 72px;
}
.dc-swatch { flex: 1; }
.dc-pal-body { padding: 24px 20px; }
.dc-pal-name {
  font-family: var(--fh);
  font-size: .85rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
  letter-spacing: .02em;
}
.dc-pal-mood { font-size: 12px; color: var(--mute); line-height: 1.65; }
.dc-elements {
  padding: 96px 0;
  background: var(--bg);
}
.dc-elem-hd { max-width: 680px; margin-bottom: 56px; }
.dc-elem-hd h2 {
  font-family: var(--fh);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 14px;
}
.dc-elem-hd h2 em { color: var(--blue); font-style: normal; }
.dc-elem-hd p { color: var(--mute); line-height: 1.75; }
.dc-elem-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.dc-elem-item {
  padding: 40px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background .3s, transform .25s;
  position: relative;
}
.dc-elem-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}
.dc-elem-item:hover::before { transform: scaleX(1); }
.dc-elem-item:hover { background: rgba(26,107,218,.05); }
.dc-elem-icon {
  font-size: 1.4rem;
  color: var(--blue);
  margin-bottom: 18px;
}
.dc-elem-title {
  font-family: var(--fh);
  font-size: .95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.dc-elem-desc { font-size: 13px; color: var(--mute); line-height: 1.68; }
@media (max-width: 1024px) {
  .dc-pal-grid { grid-template-columns: repeat(3, 1fr); }
  .dc-elem-list { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .dc-palette { padding: 72px 0; }
  .dc-elements { padding: 72px 0; }
  .dc-pal-grid { grid-template-columns: repeat(2, 1fr); }
  .dc-elem-list { grid-template-columns: repeat(2, 1fr); }
  .dc-elem-item { padding: 32px 22px; }
}
@media (max-width: 500px) {
  .dc-pal-grid { grid-template-columns: 1fr; }
  .dc-elem-list { grid-template-columns: 1fr; }
}
