/* ═══════════════════════════════════════════════════════════════
   LS WINDOWS — index.css  v3
   Key architecture:
   - #win-stage: fixed, transparent bg, z-index 50. Only the 3D window.
   - #hero: has its own canvas for tunnel bg, z-index 0.
   - .hero-copy: z-index 60 (above win-stage text-side)
   - .dark-scene / .craft-scene: their own dark bg, z-index 0
   - .light-section: position relative z-index 1 (clips win-stage via opacity)
═══════════════════════════════════════════════════════════════ */

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}

:root {
  --bg-light:  #ffffff;   /* crisp white */
  --bg-off:    #f7f7fa;   /* warm minimalist off-white/light gray */
  --dark:      #ffffff;   /* replaced with primary white */
  --dark2:     #f7f7fa;   /* replaced with minimalist off-white */
  --accent:    #7c5cfc;   /* signature purple accent */
  --acc-glow:  rgba(124,92,252,.15);
  --acc-soft:  rgba(124,92,252,.06);
  --off:       #f4f4f8;
  --text-dark: #0d0d14;   /* primary slate */
  --text-mid:  #4b5563;   /* secondary slate */
  --text-dim:  #6b7280;   /* muted gray for subtitles/borders */
  --ease: cubic-bezier(.16,1,.3,1);
  --font: 'Inter',system-ui,sans-serif;
  --serif:'Playfair Display',Georgia,serif;
  --pad:  clamp(80px,10vw,140px);
  --W:    min(1300px,94vw);
}

html { scroll-behavior: auto }
body {
  font-family: var(--font);
  background: var(--bg-light);
  color: var(--text-dark);
  overflow-x: hidden;
}
img { display:block; max-width:100% }
a   { text-decoration:none; color:inherit }
::selection { background:var(--accent); color:#fff }

/* ── SCROLLBAR ────────────────────────────────────────────────── */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-light);
}
::-webkit-scrollbar-thumb {
  background: #e8a820; /* Gold */
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: #facc15; /* Brighter gold on hover */
}

/* ── CURSOR ──────────────────────────────────────────────────── */
/* Custom cursor removed per user request */


/* ── HEADER ──────────────────────────────────────────────────── */
#site-header {
  position:fixed; top:0; left:0; right:0; z-index:500;
  padding:22px 48px; display:flex; align-items:center; justify-content:space-between;
  transition:background .4s,padding .4s;
}
#site-header.scrolled {
  background:rgba(255,255,255,.92); backdrop-filter:blur(20px);
  padding:14px 48px; border-bottom:1px solid rgba(0,0,0,0.06);
}

/* Original Logo sizing */
.hdr-logo {
  position: relative;
  display: inline-block;
  overflow: hidden;
}
.hdr-logo img { 
  height: 64px; 
  transition: height .4s var(--ease); 
  width: auto; 
  object-fit: contain; 
  display: block;
}

#site-header.scrolled .hdr-logo img { height: 48px; }

/* Luxury masked metallic reflection/sheen effect */
.hdr-logo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg, 
    rgba(255, 255, 255, 0) 0%, 
    rgba(255, 255, 255, 0.65) 50%, 
    rgba(255, 255, 255, 0) 100%
  );
  background-size: 200% 100%;
  background-position: 150% 0;
  -webkit-mask-image: url('assets/logo.png');
  mask-image: url('assets/logo.png');
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  pointer-events: none;
  z-index: 2;
}

.hdr-logo:hover::after {
  animation: logo-sheen-mask 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes logo-sheen-mask {
  0% {
    background-position: 150% 0;
  }
  100% {
    background-position: -150% 0;
  }
}

.hn-link {
  font-size:12px; font-weight:500; letter-spacing:.07em;
  text-transform:uppercase; color:rgba(255,255,255,0.8); transition:color .25s;
}
#site-header.scrolled .hn-link { color:var(--text-mid); }
.hn-link:hover { color:#fff; }
#site-header.scrolled .hn-link:hover { color:var(--accent); }
.hn-cta {
  padding:9px 22px; 
  border:1px solid #ffffff;
  border-radius:100px; 
  color:#ffffff !important; 
  background: #d99144;
  font-weight: 700 !important;
  transition:all .25s;
  box-shadow: 0 4px 15px rgba(217, 145, 68, 0.25);
}
#site-header.scrolled .hn-cta {
  border-color:#ffffff; 
  color:#ffffff !important;
  background: #0000ff;
  box-shadow: 0 4px 15px rgba(0, 0, 255, 0.2);
}
.hn-cta:hover { 
  background:#f3a858; 
  border-color:#ffffff; 
  color:#ffffff !important; 
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(243, 168, 88, 0.4);
}
#site-header.scrolled .hn-cta:hover { 
  background:#0000d0; 
  color:#ffffff !important; 
  border-color:#ffffff; 
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 0, 255, 0.35);
}

.hdr-nav { display:flex; align-items:center; gap:30px; }

.hn-phone {
  font-weight: 600 !important;
  color: rgba(255,255,255,0.85) !important;
  border-right: 1px solid rgba(255,255,255,0.18);
  padding-right: 20px;
  display: inline-block;
  --sonar-color: rgba(255, 255, 255, 0.7);
}
#site-header.scrolled .hn-phone { 
  color:var(--text-dark) !important; 
  border-right-color: rgba(0,0,0,0.08); 
  --sonar-color: rgba(124, 92, 252, 0.7);
}
.hn-phone:hover { color: #fff !important; }
#site-header.scrolled .hn-phone:hover { color: var(--accent) !important; }

.hn-phone span {
  position: relative;
  display: inline-block;
}

.hn-phone span::before,
.hn-phone span::after {
  content: '';
  position: absolute;
  inset: -4px -12px;
  border-radius: 30px;
  border: 1.5px solid var(--sonar-color);
  opacity: 0;
  pointer-events: none;
}

.hn-phone:hover span::before {
  animation: sonar-pulse 1.6s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.hn-phone:hover span::after {
  animation: sonar-pulse 1.6s cubic-bezier(0.16, 1, 0.3, 1) infinite;
  animation-delay: 0.8s;
}

@keyframes sonar-pulse {
  0% {
    transform: scale(0.95, 0.9);
    opacity: 1;
  }
  100% {
    transform: scale(1.2, 1.4);
    opacity: 0;
  }
}

.mm-phone {
  margin-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding-top: 24px;
  font-weight: 700 !important;
  color: var(--accent) !important;
}

.hbg {
  display:none; flex-direction:column; gap:5px;
  background:none; border:none; padding:4px;
}
.hbg span {
  display:block; width:24px; height:2px; background:#fff;
  border-radius:2px; transition:transform .3s,opacity .3s,background .4s;
}
#site-header.scrolled .hbg span { background:var(--text-dark); }
.hbg.open span:nth-child(1){ transform:translateY(7px) rotate(45deg) }
.hbg.open span:nth-child(2){ opacity:0 }
.hbg.open span:nth-child(3){ transform:translateY(-7px) rotate(-45deg) }

/* ── MOBILE MENU ─────────────────────────────────────────────── */
.mob-menu {
  position:fixed; inset:0;
  background:rgba(255,255,255,.98); backdrop-filter:blur(24px);
  z-index:499; display:flex; flex-direction:column;
  align-items:center; justify-content:center; gap:36px;
  opacity:0; pointer-events:none; transition:opacity .4s;
}
.mob-menu.open { opacity:1; pointer-events:auto }
.mm-link { font-size:clamp(28px,5vw,48px); font-weight:700; color:var(--text-dark); transition:color .25s }
.mm-link:hover { color:var(--accent) }

/* ════════════════════════════════════════════════════════════
   LINE NAV — short horizontal dashes, reference-site style
════════════════════════════════════════════════════════════ */
#line-nav {
  position:fixed; right:24px; top:50%; transform:translateY(-50%);
  z-index:400; display:flex; flex-direction:column; gap:9px; align-items:flex-end;
}
.ln-tick {
  display:block; width:18px; height:3px;
  background:rgba(0,0,0,.15); border-radius:3px;
  transition:width .35s var(--ease), background .35s, box-shadow .35s;
  position:relative; cursor: pointer;
}
/* tooltip label */
.ln-tick::before {
  content:attr(data-label);
  position:absolute; right:calc(100% + 12px); top:50%;
  transform:translateY(-50%);
  font-size:10px; font-weight:600; letter-spacing:.1em; text-transform:uppercase;
  color:rgba(0,0,0,.45); white-space:nowrap;
  opacity:0; transition:opacity .25s; pointer-events:none;
}
.ln-tick:hover::before, .ln-tick.active::before { opacity:1 }
.ln-tick.active {
  width:34px; background:var(--accent);
  box-shadow:0 0 10px var(--acc-glow);
}
.ln-tick:hover:not(.active) { width:26px; background:rgba(0,0,0,.35) }
/* adapt to light sections */
#line-nav.light .ln-tick         { background:rgba(0,0,0,.18) }
#line-nav.light .ln-tick.active  { background:var(--accent) }
#line-nav.light .ln-tick::before { color:rgba(0,0,0,.4) }

/* ════════════════════════════════════════════════════════════
   CINEMATIC FULL-BLEED HERO
════════════════════════════════════════════════════════════ */
.hero-cinematic {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  display: flex;
  align-items: center; /* Vertically center so it clears header */
  z-index: 10;
}

/* Full-bleed photo layer */
.hero-bg-layer {
  position: absolute; top:0; left:0; width:100%; height:100%;
  overflow: hidden; z-index: 1;
}
.hero-img-main {
  width:100%; height:100%; object-fit:cover;
  transform-origin: center center;
}
#weather-canvas {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 2; opacity: 0;
  transition: opacity 0.5s ease;
}
#weather-canvas.active {
  opacity: 1;
}
/* Cinematic dark overlay — warm amber left, transparent right for house visibility */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      to right,
      rgba(5, 3, 1, 0.88) 0%,
      rgba(5, 3, 1, 0.72) 30%,
      rgba(5, 3, 1, 0.35) 60%,
      rgba(5, 3, 1, 0.10) 100%
    ),
    linear-gradient(
      to top,
      rgba(5, 3, 1, 0.85) 0%,
      transparent 40%
    ),
    linear-gradient(
      105deg,
      rgba(180, 100, 10, 0.10) 0%,
      transparent 50%
    );
}

/* Ambient glow orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  -webkit-filter: blur(120px);
  pointer-events: none;
  will-change: transform;
  z-index: 2;
}
.hero-orb--1 {
  top: -5%;
  left: -5%;
  width: clamp(350px, 40vw, 600px);
  height: clamp(350px, 40vw, 600px);
  background: radial-gradient(circle, rgba(124,92,252,0.32) 0%, rgba(124,92,252,0) 70%);
}
.hero-orb--2 {
  bottom: 5%;
  right: 5%;
  width: clamp(300px, 35vw, 520px);
  height: clamp(300px, 35vw, 520px);
  background: radial-gradient(circle, rgba(99,60,240,0.2) 0%, rgba(99,60,240,0) 70%);
}

/* Architectural decorative grid lines */
.hero-grid-lines {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}
.hgl { position: absolute; background: rgba(255,255,255,0.04); }
.hgl-v1 { left: 33.33%; top: 0; width: 1px; height: 100%; }
.hgl-v2 { left: 66.66%; top: 0; width: 1px; height: 100%; }
.hgl-h1 { left: 0; bottom: 120px; width: 100%; height: 1px; }

/* Main editorial content block */
.hero-content {
  position: relative;
  z-index: 5;
  padding: clamp(140px, 18vh, 180px) clamp(40px, 7vw, 120px) clamp(100px, 12vh, 140px);
  max-width: 900px;
  width: 100%;
}

/* Eyebrow badge with animated dot */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 28px;
}
.hb-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent), 0 0 24px rgba(124,92,252,0.5);
  animation: dot-pulse 2.4s ease-in-out infinite;
}
@keyframes dot-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 12px var(--accent), 0 0 24px rgba(124,92,252,0.5); }
  50%       { opacity: 0.5; box-shadow: 0 0 4px var(--accent); }
}

/* Giant headline — white on dark */
.hero-h1 {
  font-size: clamp(42px, 6.5vw, 92px); /* Slightly smaller to prevent wrapping */
  font-weight: 900;
  letter-spacing: -.03em;
  line-height: 1.05;
  margin-bottom: 28px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
}

.ht-line { display: block; }

.ht-serif {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
  color: transparent;
  background: linear-gradient(90deg, #a78bfa, #7c5cfc 50%, #c4b5fd);
  -webkit-background-clip: text;
  background-clip: text;
  padding-right: 4px;
}

/* Gold/metallic headline variant — matching reference site style */
.ht-gold {
  color: transparent;
  background: linear-gradient(
    135deg,
    #f5d060 0%,
    #e8a820 25%,
    #f7d070 50%,
    #c8820a 75%,
    #f0c840 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: none;
  filter: drop-shadow(0 2px 8px rgba(200,130,10,0.4));
}

/* Sub-copy */
.hero-sub {
  font-size: clamp(14px, 1.2vw, 17px);
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  margin-bottom: 40px;
  max-width: 520px;
}

/* CTA button row */
.hero-btns {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}

/* Compass-style round CTA button */
.btn-compass {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 32px 14px 20px;
  border-radius: 100px;
  background: linear-gradient(135deg, rgba(30,25,15,0.85), rgba(15,12,5,0.95));
  border: 1.5px solid rgba(200,150,30,0.5);
  color: #f0c840;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform .25s, box-shadow .3s, border-color .3s;
  box-shadow:
    0 0 24px rgba(200,150,20,0.25),
    inset 0 1px 0 rgba(240,200,64,0.2);
}

.btn-sonar {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 100px;
  border: 1.5px solid rgba(240, 200, 64, 0.45);
  opacity: 0;
  pointer-events: none;
  animation: compass-sonar 3s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.btn-sonar--1 {
  animation-delay: 0s;
}

.btn-sonar--2 {
  animation-delay: 1s;
}

.btn-sonar--3 {
  animation-delay: 2s;
}

@keyframes compass-sonar {
  0% {
    transform: scale(1);
    opacity: 0.95;
  }
  100% {
    transform: scale(1.18, 1.35);
    opacity: 0;
  }
}

/* The spinning inner ring */
.compass-ring {
  position: relative;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(200,150,30,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.compass-ring::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  animation: compass-spin 4s linear infinite;
  background: conic-gradient(
    transparent 0deg,
    rgba(240,200,64,0.8) 90deg,
    transparent 180deg,
    rgba(240,200,64,0.4) 270deg,
    transparent 360deg
  );
  mask: radial-gradient(transparent 58%, black 60%);
  -webkit-mask: radial-gradient(transparent 58%, black 60%);
}
/* ── Weather Siding Hover Icons ── */
.siding-icons {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  pointer-events: none;
}
.si-icon {
  font-size: 24px;
  opacity: 0;
  transform: translateY(10px) scale(0.8);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}
#nav-siding:hover .si-icon {
  opacity: 1;
  transform: translateY(0) scale(1);
}
#nav-siding:hover .si-wind { transition-delay: 0s; animation: animWind 1s ease-in-out infinite alternate 0.4s; }
#nav-siding:hover .si-rain { transition-delay: 0.1s; animation: animRain 0.6s ease-in-out infinite alternate 0.5s; }
#nav-siding:hover .si-snow { transition-delay: 0.2s; animation: animSnow 3s linear infinite 0.6s; }

@keyframes animWind {
  0% { transform: translateY(0) scale(1) translateX(0) skewX(0); }
  100% { transform: translateY(0) scale(1) translateX(4px) skewX(-10deg); }
}
@keyframes animRain {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(4px) scale(1); }
}
@keyframes animSnow {
  0% { transform: translateY(0) scale(1) rotate(0deg); }
  100% { transform: translateY(0) scale(1) rotate(360deg); }
}
/* Center dot for compass */
.compass-ring::after {
  content: '';
  width: 6px;
  height: 6px;
  background: #f0c840;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(240,200,64,0.8);
}

@keyframes compass-spin {
  to { transform: rotate(360deg); }
}

.btn-compass:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 0 40px rgba(200,150,20,0.45), inset 0 1px 0 rgba(240,200,64,0.3);
  border-color: rgba(200,150,30,0.8);
}

/* Glowing violet CTA */
.btn-glow {
  box-shadow: 0 0 32px rgba(124,92,252,0.5), 0 4px 20px rgba(124,92,252,0.4);
  transition: box-shadow .3s, transform .25s;
}
.btn-glow:hover {
  box-shadow: 0 0 50px rgba(124,92,252,0.7), 0 6px 28px rgba(124,92,252,0.5);
  transform: translateY(-2px);
}

/* Ghost white on dark */
.btn-ghost-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s var(--ease);
  text-decoration: none;
}
.btn-ghost-white:hover {
  background: #ffffff;
  color: #0d0d14;
  border-color: #ffffff;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.25);
  transform: translateY(-1px);
}

/* Floating glassmorphic stats bar (bottom-right) */
.hero-stats {
  position: absolute;
  right: clamp(40px, 6vw, 100px);
  bottom: clamp(60px, 9vh, 120px);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 20px 28px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.12);
}

.hs-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 0 24px;
}

.hs-sep {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.12);
}

.hs-val {
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -.02em;
  line-height: 1;
}

.hs-lbl {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .15em;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
}

/* ── Hero Bottom Feature Strip (matches reference bottom bar) ── */
.hero-feature-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 6;
  display: flex;
  align-items: stretch;
  background: rgba(10, 8, 4, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(200, 150, 30, 0.2);
}

.hfs-item {
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  cursor: default;
  transition: background .2s;
}
.hfs-item:hover {
  background: rgba(200, 150, 30, 0.06);
}

.hfs-divider {
  width: 1px;
  background: rgba(200, 150, 30, 0.18);
  align-self: stretch;
  margin: 8px 0;
}

.hfs-icon {
  font-size: 22px;
  color: #e8a820;
  opacity: 0.85;
  flex-shrink: 0;
  filter: drop-shadow(0 0 6px rgba(200,150,20,0.4));
}

.hfs-lbl {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.4;
}

/* Scroll Hint — positioned above the feature strip */
.scroll-hint {
  position: absolute;
  bottom: clamp(80px, 12vh, 120px);
  left: clamp(40px, 7vw, 120px);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  z-index: 5;
}

.sh-line {
  width: 1.5px;
  height: 48px;
  background: rgba(255,255,255,0.12);
  position: relative;
  overflow: hidden;
  border-radius: 1px;
}

.sh-dot {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background: var(--accent);
  border-radius: 1px;
  box-shadow: 0 0 8px var(--accent);
}


/* ── Redesigned Craftsmanship Section ── */
.craft-section {
  background: var(--bg-light);
  position: relative;
  z-index: 10; /* Above the hidden 3D window background layer */
  background-image: 
    linear-gradient(rgba(124, 92, 252, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 92, 252, 0.02) 1px, transparent 1px);
  background-size: 32px 32px;
}
.craft-section .container {
  position: relative;
  z-index: 2;
}
.craft-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.3fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

/* Editorial Frame */
.craft-visual {
  position: relative;
}
.craft-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/5;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}
.craft-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.craft-frame:hover img {
  transform: scale(1.04);
}
.craft-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(124, 92, 252, 0.06), transparent 70%);
  pointer-events: none;
}
.craft-tech-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  padding: 10px 18px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ctb-title {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-mid);
}
.ctb-val {
  font-size: 16px;
  font-weight: 800;
  color: var(--accent);
}

/* Glassmorphic Pillar Cards */
.craft-pillars {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.craft-pillar-card {
  position: relative;
  display: flex;
  gap: 24px;
  padding: 28px;
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.015);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.4s var(--ease);
  overflow: hidden;
}
.craft-pillar-card:hover {
  background: rgba(124, 92, 252, 0.03);
  border-color: rgba(124, 92, 252, 0.25);
  transform: translateX(8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04), inset 0 0 15px rgba(124, 92, 252, 0.02);
}
.cpc-num {
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 900;
  color: var(--accent);
  opacity: 0.5;
  line-height: 1;
  transition: opacity 0.3s;
}
.craft-pillar-card:hover .cpc-num {
  opacity: 1;
}
.cpc-content h3 {
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.cpc-content p {
  font-size: clamp(13px, 1.25vw, 15px);
  line-height: 1.7;
  color: var(--text-mid);
  transition: color 0.3s;
}
.craft-pillar-card:hover .cpc-content p {
  color: var(--text-dark);
}
.cpc-hover-line {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), #a78bfa);
  transition: width 0.4s var(--ease);
}
.craft-pillar-card:hover .cpc-hover-line {
  width: 100%;
}

/* ════════════════════════════════════════════════════════════
   LIGHT & DARK SECTIONS
════════════════════════════════════════════════════════════ */
.light-section {
  position:relative; z-index:1;  /* sits above win-stage visually when win-stage is faded */
  background: linear-gradient(135deg, #ffffff 0%, #f7f7fa 100%);
  color: var(--text-dark);
  padding: var(--pad) 0;
  /* soft inner shadow for depth */
  box-shadow: inset 0 4px 12px rgba(0,0,0,.02);
}
.dark-section {
  position:relative; z-index:1;
  background: var(--bg-off);
  color: var(--text-dark);
  padding: var(--pad) 0;
  /* soft inner shadow for consistent editorial look */
  box-shadow: inset 0 4px 12px rgba(0,0,0,.015);
  background-image: radial-gradient(circle at 50% 50%, rgba(124,92,252,.02), transparent);
}
.container { max-width:var(--W); margin:0 auto; padding:0 clamp(24px,5vw,72px) }

/* Shared typography */
.sec-title {
  font-size:clamp(32px,4.2vw,62px); font-weight:800;
  letter-spacing:-.03em; line-height:1.05; margin-bottom:22px;
}
.sec-title em { font-family:var(--serif); font-style:italic; font-weight:700; color:var(--accent) }
.body-p { font-size:clamp(14px,1.2vw,16px); line-height:1.8; color:var(--text-mid); margin-bottom:20px }
.eyebrow {
  font-size:11px; font-weight:700; letter-spacing:.25em;
  text-transform:uppercase; color:var(--text-mid); margin-bottom:14px;
}
.accent-ey { color:var(--accent) }
.text-c { text-align:center }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display:inline-flex; align-items:center; gap:10px;
  padding:13px 30px; border-radius:100px;
  font-size:12px; font-weight:700; letter-spacing:.07em; text-transform:uppercase;
  border:2px solid transparent; cursor: pointer;
  transition:all .3s var(--ease); position:relative; overflow:hidden;
}
.btn::after {
  content:''; position:absolute; inset:0;
  background:rgba(255,255,255,.1); transform:translateX(-100%);
  transition:transform .4s var(--ease);
}
.btn:hover::after { transform:translateX(0) }
.btn-vio   { background:var(--accent); color:#fff }
.btn-vio:hover { background:#6b4de6; transform:translateY(-2px); box-shadow:0 12px 34px var(--acc-glow) }
.btn-ghost { background:transparent; color:var(--text-dark); border-color:rgba(0,0,0,.2) }
.btn-ghost:hover { border-color:var(--text-dark); background:rgba(0,0,0,.03); transform:translateY(-2px) }
.btn-full  { width:100%; justify-content:center }

/* ── REVEAL ANIMATION ────────────────────────────────────── */
.anim {
  opacity:0; transform:translateY(36px);
  transition:opacity .85s var(--ease), transform .85s var(--ease);
  transition-delay:var(--d, 0s);
  will-change: transform, opacity;
}
.anim.in { opacity:1; transform:none }

/* ════════════════════════════════════════════════════════════
   ABOUT
════════════════════════════════════════════════════════════ */
.about-decor {
  position:absolute;
  inset:0;
  background:radial-gradient(circle at 30% 30%, rgba(124,92,252,.07), transparent 60%);
  pointer-events:none;
  z-index:-1;
}
.about-grid {
  position:relative;
  z-index:60;
  display:grid; grid-template-columns:1fr 1fr;
  gap:clamp(40px,6vw,88px); align-items:flex-start;
}
.about-frame {
  position:relative; border-radius:20px; overflow:hidden; aspect-ratio:4/5;
}
.about-frame img { width:100%; height:100%; object-fit:cover; transition:transform .8s var(--ease) }
.about-frame:hover img { transform:scale(1.04) }
.about-badge {
  position:absolute; bottom:24px; left:24px;
  background:rgba(9,9,15,.9); backdrop-filter:blur(12px);
  padding:14px 20px; border-radius:14px; color:#fff;
}
.ab-num { font-size:32px; font-weight:900; color:var(--accent); line-height:1 }
.ab-unit{ font-size:18px; font-weight:700; color:var(--accent) }
.ab-lbl { display:block; font-size:11px; color:var(--text-dim); margin-top:4px }
.about-txt .sec-title { color:var(--text-dark); }
.about-txt .body-p    { color:var(--text-dark); }

.stats-row { display:flex; gap:28px; flex-wrap:wrap; margin:28px 0 }
.stat-item { display:flex; flex-direction:column }
.stat-n    { font-size:clamp(30px,3.8vw,46px); font-weight:900; letter-spacing:-.04em; color:var(--accent); line-height:1 }
.stat-u    { font-size:16px; font-weight:700; color:var(--accent); display:inline }
.stat-l    { font-size:11px; font-weight:600; color:var(--text-mid); margin-top:4px; text-transform:uppercase; letter-spacing:.08em }

/* ════════════════════════════════════════════════════════════
   SHOWCASE
════════════════════════════════════════════════════════════ */
.showcase-section { overflow:hidden }
.gal-outer { position:relative; padding:0 clamp(24px,5vw,72px) }
.gal-track {
  display:flex; gap:18px; overflow-x:auto; scroll-snap-type:x mandatory;
  -webkit-overflow-scrolling:touch; scrollbar-width:none; cursor: grab;
}
.gal-track:active { cursor: grabbing; }
.gal-track::-webkit-scrollbar { display:none }
.gal-card {
  flex:0 0 clamp(240px,28vw,380px); scroll-snap-align:start;
  border-radius:16px; overflow:hidden; background:#fff;
  transition:transform .4s var(--ease),box-shadow .4s;
}
.gal-card:hover { transform:translateY(-6px); box-shadow:0 18px 44px rgba(0,0,0,.13) }
.gal-card--tall { flex:0 0 clamp(270px,34vw,440px) }
.gc-img         { aspect-ratio:3/4; overflow:hidden }
.gal-card--tall .gc-img { aspect-ratio:2/3 }
.gc-img img { width:100%; height:100%; object-fit:cover; transition:transform .6s var(--ease) }
.gal-card:hover .gc-img img { transform:scale(1.06) }
.gc-cap { padding:16px 20px 20px; font-size:15px; color:var(--text-mid); line-height: 1.4; }
.gc-cap strong { color:var(--text-dark); font-size: 16px; font-weight: 700; display: block; margin-bottom: 4px; }

.gal-progress { height:2px; background:rgba(0,0,0,.1); border-radius:2px; max-width:160px; margin:28px auto 0; overflow:hidden }
.gal-fill     { height:100%; width:25%; background:var(--accent); transition:width .3s }
.gal-arr {
  position:absolute; top:44%; transform:translateY(-50%);
  width:46px; height:46px; border-radius:50%; background:var(--bg-light);
  color:var(--text-dark); border:1px solid rgba(0,0,0,0.08); font-size:17px; cursor: pointer;
  display:flex; align-items:center; justify-content:center;
  z-index:10; transition:background .25s,transform .25s,color .25s,border-color .25s,box-shadow .25s;
  box-shadow:0 4px 12px rgba(0,0,0,0.05);
}
.gal-arr:hover { background:var(--accent); color:#fff; border-color:var(--accent); transform:translateY(-50%) scale(1.1); box-shadow:0 6px 18px var(--acc-glow); }
.gal-arr--l { left:10px }
.gal-arr--r { right:10px }

.fullroom {
  position: relative;
  margin-top: 56px;
  height: clamp(340px, 52vw, 660px);
  overflow: hidden;
  border-radius: 24px;
}
.fr-img-container {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.fr-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  transition: transform 0.8s var(--ease);
}
.fr-img--white {
  z-index: 1;
  opacity: 1;
}
.fr-img--black {
  z-index: 2;
  opacity: 1;
  clip-path: polygon(0 0, var(--clip-pos, 50%) 0, var(--clip-pos, 50%) 100%, 0 100%);
  will-change: clip-path;
}
.fullroom:hover .fr-img {
  transform: scale(1.03);
}

/* Range slider overlay */
.fr-slider-input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 5;
  cursor: ew-resize;
  margin: 0;
  padding: 0;
  -webkit-appearance: none;
  appearance: none;
}
.fr-slider-input::-webkit-slider-runnable-track { width: 100%; height: 100%; }
.fr-slider-input::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 40px; height: 100%; }

/* Glowing slider line handle */
.fr-slider-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--clip-pos, 50%);
  width: 2px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.05), #ffffff 20%, #ffffff 80%, rgba(255,255,255,0.05));
  z-index: 4;
  pointer-events: none;
  transform: translateX(-50%);
  box-shadow: 0 0 12px rgba(124, 92, 252, 0.4);
  will-change: left;
}

/* Glassmorphic grab button */
.fr-slider-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(9, 9, 15, 0.45);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 2px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25), 0 0 16px rgba(124, 92, 252, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
}
.fr-slider-arrow {
  color: #ffffff;
  font-size: 13px;
  font-weight: bold;
  user-select: none;
}
.fullroom:hover .fr-slider-btn {
  transform: translate(-50%, -50%) scale(1.1);
  border-color: #ffffff;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35), 0 0 24px rgba(124, 92, 252, 0.6);
}

.fr-badge {
  position: absolute;
  bottom: 28px;
  left: 28px;
  background: rgba(9, 9, 15, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 12px 18px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  z-index: 6; /* Position above range overlay */
}
.fr-badge span:first-child { font-size: 10px; font-weight: 700; letter-spacing: .15em; color: rgba(255, 255, 255, 0.55); }
#fr-color-name { font-size: 14px; font-weight: 600; color: #fff; }

.fr-swatches { display: flex; gap: 8px; margin-top: 8px; padding-top: 8px; border-top: 1px solid rgba(255, 255, 255, 0.15); }
.fr-swatch { width: 44px; height: 18px; border-radius: 4px; border: none; cursor: pointer; transition: transform .2s, box-shadow .2s; outline: none; }
.fr-swatch--red { background: #b91c1c; }
.fr-swatch--white { background: #fbfbfb; border: 1px solid rgba(0,0,0,0.15); }
.fr-swatch--blue { background: #1d4ed8; }
.fr-swatch:hover { transform: scale(1.05); }
.fr-swatch.active { transform: scale(1.1); box-shadow: 0 0 0 2px var(--accent); }

/* ════════════════════════════════════════════════════════════
   FEATURES
════════════════════════════════════════════════════════════ */
.feat-section {
  padding: var(--pad) 0;
  background: var(--bg-light);
  background-image: radial-gradient(circle at 50% 50%, rgba(124,92,252,.01), transparent);
  position: relative;
  z-index: 10;
  transition: background 1.0s var(--ease); /* Dynamic environmental lighting transition */
}
.feat-section .sec-title {
  color: var(--text-dark);
  margin-bottom: 56px;
}

.features-layout {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}

/* Sticky Left Visual Container */
.features-visual-sticky {
  position: sticky;
  top: 120px;
  width: 100%;
}

.feat-sticky-frame {
  position: relative;
  width: 100%;
  height: 520px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08), 0 4px 20px rgba(0, 0, 0, 0.03);
  background: #f1eff9;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.feat-sticky-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 0.7s var(--ease), transform 0.9s var(--ease);
  pointer-events: none;
}

.feat-sticky-img.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.feat-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9, 9, 15, 0.4) 0%, transparent 40%),
              linear-gradient(to bottom, rgba(9, 9, 15, 0.25) 0%, transparent 30%);
  pointer-events: none;
}

/* Floating Editorial Label */
.feat-visual-caption {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-radius: 8px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  z-index: 10;
  pointer-events: none;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

#feat-caption-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  border-right: 1px solid rgba(0,0,0,0.08);
  padding-right: 12px;
}

#feat-caption-txt {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dark);
}

/* ── CREATIVE INTERACTIVE HOTSPOTS ── */
.feat-hotspots-container {
  position: absolute;
  inset: 0;
  z-index: 8;
  pointer-events: auto;
}

.feat-hotspot {
  position: absolute;
  width: 24px;
  height: 24px;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Pulsing rings */
.fh-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1.5px solid rgba(124, 92, 252, 0.7);
  background: rgba(124, 92, 252, 0.08);
  transform: scale(1);
  transition: transform 0.4s var(--ease), border-color 0.4s;
}

.feat-hotspot.active .fh-ring,
.feat-hotspot:hover .fh-ring {
  animation: hotspot-ripple 2s infinite var(--ease);
}

@keyframes hotspot-ripple {
  0% { transform: scale(0.9); opacity: 0.9; }
  100% { transform: scale(2.4); opacity: 0; }
}

/* Glowing center dot */
.fh-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  z-index: 2;
  box-shadow: 0 0 10px var(--accent);
  transition: transform 0.3s, background-color 0.3s;
}

.feat-hotspot.active .fh-dot,
.feat-hotspot:hover .fh-dot {
  transform: scale(1.35);
  background-color: #fff;
  box-shadow: 0 0 12px #fff;
}

/* Floating Glassmorphic Spec Label */
.fh-label {
  position: absolute;
  bottom: calc(100% + 12px);
  left: 50%;
  transform: translate(-50%, 8px) scale(0.92);
  background: rgba(9, 9, 15, 0.78);
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
  border: 1.5px solid rgba(255,255,255,0.15);
}

/* Triangle caret for label */
.fh-label::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 5px;
  border-style: solid;
  border-color: rgba(9, 9, 15, 0.78) transparent transparent transparent;
}

.feat-hotspot.active .fh-label,
.feat-hotspot:hover .fh-label {
  opacity: 1;
  transform: translate(-50%, 0) scale(1);
}

/* ── CAD HUD DIAGNOSTIC PANEL ── */
.feat-hud-overlay {
  position: absolute;
  top: 24px;
  left: 24px;
  width: 250px;
  background: rgba(9, 9, 15, 0.72);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 16px;
  z-index: 10;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
}

.hud-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 8px;
}

.hud-tag {
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
}

.hud-status {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #10b981;
  display: flex;
  align-items: center;
  gap: 5px;
  text-transform: uppercase;
}

.hud-status-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 6px #10b981;
  animation: hud-blink 1.5s infinite;
}

@keyframes hud-blink {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 1; }
}

.hud-metric-row {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hud-metric-val {
  font-size: clamp(24px, 2.5vw, 32px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1;
  font-family: var(--font);
}

.hud-metric-lbl {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
}

.hud-bar-container {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  overflow: hidden;
}

.hud-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), #a78bfa);
  border-radius: 100px;
  transition: width 0.7s var(--ease);
}

/* Right Side: Accordion Stack */
.feat-strips-stack {
  display: flex;
  flex-direction: column;
}

.feat-strip {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding: 28px 0;
  transition: border-color 0.3s;
}

.feat-strip:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.feat-strip-header {
  display: flex;
  align-items: center;
  gap: 24px;
  position: relative;
}

.feat-number {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  transition: color 0.3s;
  min-width: 24px;
}

.feat-title {
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 600;
  color: var(--text-dark);
  transition: transform 0.4s var(--ease), color 0.4s var(--ease);
}

.feat-icon-indicator {
  margin-left: auto;
  position: relative;
  width: 14px;
  height: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feat-icon-indicator::before,
.feat-icon-indicator::after {
  content: '';
  position: absolute;
  background: var(--text-dark);
  transition: transform 0.4s var(--ease), background-color 0.4s var(--ease);
}

/* Horizontal line */
.feat-icon-indicator::before {
  width: 14px;
  height: 2px;
}

/* Vertical line */
.feat-icon-indicator::after {
  width: 2px;
  height: 14px;
}

/* Hover/Active Accordion States */
.feat-strip:hover .feat-title,
.feat-strip.active .feat-title {
  color: var(--accent);
  transform: translateX(8px);
}

.feat-strip:hover .feat-number,
.feat-strip.active .feat-number {
  color: var(--accent);
}

.feat-strip.active .feat-icon-indicator::after {
  transform: rotate(90deg);
  opacity: 0;
}

.feat-strip.active .feat-icon-indicator::before,
.feat-strip.active .feat-icon-indicator::after {
  background: var(--accent);
}

/* Collapsible Accordion Body */
.feat-strip-body {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  opacity: 0;
  transition: grid-template-rows 0.4s var(--ease), opacity 0.4s var(--ease), padding 0.4s var(--ease);
}

.feat-strip.active .feat-strip-body {
  grid-template-rows: 1fr;
  opacity: 1;
}

.feat-desc {
  min-height: 0; /* allows grid transition to collapse fully */
  font-size: clamp(13px, 1.05vw, 15px);
  line-height: 1.75;
  color: var(--text-mid);
  padding-top: 14px;
  padding-left: 48px;
  max-width: 580px;
}

/* ── SHOWROOM STATUS WIDGET ── */
.showroom-status-card {
  margin-top: 36px;
  background: rgba(124, 92, 252, 0.02);
  border: 1px solid rgba(124, 92, 252, 0.08);
  border-radius: 12px;
  padding: 22px;
  max-width: 380px;
}

.ssc-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding-bottom: 12px;
}

.status-lbl {
  font-size: 11px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 100px;
  margin-left: 4px;
}

.status-lbl--open {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
}

.status-lbl--closed {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}

/* Pulsing Status Dot */
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}

.status-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  opacity: 0.4;
  animation: pulse-dot 2s infinite;
}

.status-dot--open {
  background: #10b981;
}
.status-dot--open::after {
  background: #10b981;
}

.status-dot--closed {
  background: #ef4444;
}
.status-dot--closed::after {
  background: #ef4444;
}

@keyframes pulse-dot {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(2.4); opacity: 0; }
}

.ssc-hours {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ssc-day {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-mid);
}

.ssc-day span:last-child {
  font-weight: 500;
  color: var(--text-dark);
}

/* Footer Status Styling */
.ftr-info-block {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ftr-address {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.5;
}

.ftr-phone-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.25s var(--ease);
}

.ftr-phone-link:hover {
  color: var(--accent);
}

.ftr-showroom-widget {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-mid);
}

.ftr-showroom-widget .status-lbl {
  font-size: 10px;
  padding: 1px 6px;
}

/* ════════════════════════════════════════════════════════════
   ENERGY
════════════════════════════════════════════════════════════ */
.energy-grid { display:grid; grid-template-columns:1fr 1fr; gap:clamp(40px,6vw,88px); align-items:center }
.energy-frame {
  position:relative; border-radius:20px; overflow:hidden; aspect-ratio:1;
  background:radial-gradient(ellipse at center,#ffffff 0%,#f1f5f9 100%);
  border:1px solid rgba(0,0,0,0.05);
}
.energy-frame img { width:100%; height:100%; object-fit:cover; transition:transform .8s var(--ease) }
.energy-frame:hover img { transform:scale(1.04) }
.energy-halo {
  position:absolute; inset:0;
  background:radial-gradient(ellipse at 50% 55%,rgba(124,92,252,.05) 0%,transparent 65%);
  pointer-events:none;
}
.energy-txt .sec-title { color:var(--text-dark) }
.energy-txt .body-p    { color:var(--text-mid) }
.e-specs { display:grid; grid-template-columns:1fr 1fr; gap:16px; margin:28px 0 }
.es {
  padding:18px; border-radius:14px;
  background:#ffffff; border:1px solid rgba(0,0,0,0.05);
  box-shadow:0 4px 12px rgba(0,0,0,0.02);
}
.es-v { display:block; font-size:26px; font-weight:900; color:var(--accent); letter-spacing:-.03em; line-height:1; margin-bottom:5px }
.es-l { font-size:11px; font-weight:500; color:var(--text-mid); line-height:1.4 }

/* ════════════════════════════════════════════════════════════
   COLORS
════════════════════════════════════════════════════════════ */
.colors-grid { display:grid; grid-template-columns:1fr 1fr; gap:clamp(40px,6vw,80px); align-items:center }
.colors-img { border-radius:16px; overflow:hidden; aspect-ratio:4/3 }
.colors-img img { width:100%; height:100%; object-fit:cover; transition:transform .8s var(--ease) }
.colors-img:hover img { transform:scale(1.04) }

/* ════════════════════════════════════════════════════════════
   QUALITY
════════════════════════════════════════════════════════════ */
.quality-section { position:relative; z-index:1; overflow:hidden; padding:var(--pad) 0 }
.q-bg { position:absolute; inset:0 }
.q-bg img { width:100%; height:100%; object-fit:cover; opacity:.07 }
.q-overlay {
  position:absolute; inset:0;
  background:linear-gradient(135deg,rgba(255,255,255,0.96) 40%,rgba(255,255,255,0.85) 100%);
}
.q-content { position:relative; z-index:1 }
.usa-flag  { display:flex; gap:4px; margin-bottom:26px }
.fs { height:20px; width:42px; border-radius:3px }
.fs.r { background:#B22234 }
.fs.w { background:#fff; border:1px solid rgba(0,0,0,0.1) }
.fs.b { background:#3C3B6E }
.q-badges { display:flex; gap:18px; flex-wrap:wrap; margin-top:36px }
.q-badge {
  display:flex; align-items:center; gap:12px;
  padding:14px 20px; border-radius:14px;
  background:#ffffff; border:1px solid rgba(0,0,0,0.08);
  box-shadow:0 4px 14px rgba(0,0,0,0.02);
  backdrop-filter:blur(8px); transition:all .3s;
}
.q-badge:hover {
  background:rgba(124,92,252,0.05); border-color:rgba(124,92,252,0.2);
  transform:translateY(-4px);
}
.qbi { font-size:22px }
.qbt { font-size:12px; font-weight:600; line-height:1.5; color:var(--text-dark) }

/* ════════════════════════════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════════════════════════════ */
.testi-layout { display:grid; grid-template-columns:auto 1fr; gap:56px; align-items:start; margin-top:48px }
.testi-faces  { display:flex; flex-direction:column; gap:14px; align-items:center }
.t-face {
  width:72px; height:72px; border-radius:50%; overflow:hidden;
  border:3px solid rgba(0,0,0,.08); opacity:.45; cursor: pointer;
  transition:opacity .3s,transform .3s,border-color .3s,width .3s,height .3s;
}
.t-face--active { opacity:1; transform:scale(1.12); border-color:var(--accent); width:92px; height:92px }
.t-face img { width:100%; height:100%; object-fit:cover }
#testi-slides .t-slide { display:none; flex-direction:column; gap:5px }
#testi-slides .t-slide--active { display:flex }
.t-slide strong { font-size:16px; font-weight:700; color:var(--text-dark) }
.t-slide span   { font-size:12px; color:var(--text-mid); margin-bottom:14px }
.t-slide blockquote {
  font-size:clamp(15px,1.35vw,18px); line-height:1.8;
  color:var(--text-dark); font-style:italic;
  border-left:3px solid var(--accent); padding-left:18px;
}
.testi-ctrl { display:flex; align-items:center; gap:10px; margin-top:28px }
.t-btn {
  width:42px; height:42px; border-radius:50%;
  background:transparent; border:1.5px solid rgba(0,0,0,.15);
  color:var(--text-dark); font-size:15px; cursor: pointer;
  display:flex; align-items:center; justify-content:center;
  transition:all .25s;
}
.t-btn:hover { background:var(--accent); border-color:var(--accent); color:#fff }

/* ════════════════════════════════════════════════════════════
   CONTACT
════════════════════════════════════════════════════════════ */
.contact-section .sec-title { color:var(--text-dark) }
.contact-section .body-p    { color:var(--text-mid) }
.contact-grid { display:grid; grid-template-columns:1fr 1.3fr; gap:clamp(40px,7vw,96px); align-items:start }
.ct-info { display:flex; flex-direction:column; gap:18px; margin-top:10px }
.ci-row  { display:flex; align-items:flex-start; gap:13px }
.ci-ico  { font-size:18px; margin-top:1px }
.ci-row div { display:flex; flex-direction:column; gap:2px }
.ci-row strong { font-size:11px; font-weight:700; letter-spacing:.08em; text-transform:uppercase; color:var(--text-dark) }
.ci-row span   { font-size:13px; color:var(--text-mid) }
.ct-right form {
  background:#fff; border-radius:22px;
  padding:clamp(22px,4vw,42px); box-shadow:0 4px 36px rgba(0,0,0,.07);
}
.f-row { display:grid; grid-template-columns:1fr 1fr; gap:14px }
.f-row--three { display:grid; grid-template-columns:2fr 1fr 1.2fr; gap:14px }
.fg    { display:flex; flex-direction:column; gap:6px; margin-bottom:14px }
.fg label {
  font-size:11px; font-weight:700; letter-spacing:.09em;
  text-transform:uppercase; color:var(--text-dark);
}
.fg input,.fg select,.fg textarea {
  padding:12px 15px; border:1.5px solid rgba(0,0,0,.1);
  border-radius:11px; font-size:13px; font-family:var(--font);
  color:var(--text-dark); background:var(--off);
  outline:none;
  transition:border-color .25s, box-shadow .25s;
}
.fg input:focus,.fg select:focus,.fg textarea:focus {
  border-color:var(--accent); box-shadow:0 0 0 3px rgba(124,92,252,.1);
}
.fg textarea { resize:vertical; min-height:100px }
.form-ok {
  display:none; margin-top:14px; padding:13px;
  background:rgba(124,92,252,.1); border:1px solid rgba(124,92,252,.25);
  border-radius:11px; color:var(--accent); font-size:13px; font-weight:600; text-align:center;
}
.form-ok.show { display:block }

/* ════════════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--bg-light);
  color: var(--text-dark);
  padding: 100px 0 40px;
  position: relative;
  overflow: hidden;
  border-top: none;
}
.ftr-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}
.ftr-cta {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  padding: 32px;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 40px rgba(0,0,0,0.03);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.ftr-cta-title {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.ftr-cta p {
  font-size: 14px;
  color: var(--text-mid);
  margin-bottom: 24px;
  line-height: 1.5;
}
.ftr-btn {
  padding: 12px 24px;
  font-size: 13px;
}
.ftr-brand {
  max-width: 320px;
}
.ftr-logo {
  height: 36px;
  margin-bottom: 24px;
}
.ftr-desc {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 32px;
}
.ftr-info-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}
.ftr-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-dark);
}
.ftr-contact-item svg {
  color: var(--accent);
}
.ftr-contact-item a {
  color: var(--text-dark);
  transition: color 0.3s;
  text-decoration: none;
}
.ftr-contact-item a:hover {
  color: var(--accent);
}
.ftr-showroom-widget {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.8);
  padding: 10px 16px;
  border-radius: 30px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}

.fc {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.fc strong {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 12px;
  font-weight: 800;
}
.ftr-hover-link {
  font-size: 14px;
  color: var(--text-mid);
  text-decoration: none;
  position: relative;
  display: inline-block;
  padding: 2px 0;
  width: max-content;
}
.ftr-hover-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.86, 0, 0.07, 1);
}
.ftr-hover-link:hover {
  color: var(--text-dark);
}
.ftr-hover-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.ftr-bottom {
  position: relative;
  z-index: 2;
  padding-top: 32px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text-dim);
}
.ftr-bottom-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.ftr-separator {
  opacity: 0.3;
}
.ikigai-link {
  color: var(--text-dark);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  transition: color 0.3s, border-color 0.3s;
  padding-bottom: 2px;
}
.ikigai-link:hover {
  color: var(--accent);
  border-color: var(--accent);
}

/* ════════════════════════════════════════════════════════════
   SERVICES SECTION
════════════════════════════════════════════════════════════ */
.services-section {
  position: relative;
  background: var(--bg-light);
  background-image: radial-gradient(circle at 70% 30%, rgba(124,92,252,.02), transparent 70%);
  z-index: 10;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3.5vw, 48px);
  margin-top: 56px;
  align-items: stretch;
}

.service-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(124, 92, 252, 0.06);
  border-radius: 24px;
  padding: clamp(24px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease), background 0.4s var(--ease);
}

.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 1.5px;
  background: linear-gradient(135deg, rgba(124,92,252,0.25), transparent 40%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s var(--ease);
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 30px 60px rgba(124, 92, 252, 0.08), 0 8px 24px rgba(124, 92, 252, 0.03);
  border-color: rgba(124, 92, 252, 0.15);
}

.service-card:hover::after {
  opacity: 1;
}

/* Card Number */
.sc-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  color: rgba(124, 92, 252, 0.08);
  line-height: 1;
  position: absolute;
  top: clamp(20px, 2.5vw, 36px);
  right: clamp(24px, 3vw, 40px);
  transition: color 0.4s var(--ease);
}

.service-card:hover .sc-num {
  color: rgba(124, 92, 252, 0.2);
}

/* Image Wrapper */
.sc-image-wrapper {
  width: 100%;
  aspect-ratio: 16/10;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 28px;
  border: 1px solid rgba(0, 0, 0, 0.03);
  background: #f7f6fd;
}

.sc-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.service-card:hover .sc-img {
  transform: scale(1.05);
}

/* Content */
.sc-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.sc-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.01em;
}

.sc-desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-mid);
}

/* Quote Link Button */
.sc-link {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s, gap 0.3s;
}

.sc-link span {
  display: inline-block;
  transition: transform 0.3s var(--ease);
}

.service-card:hover .sc-link {
  color: #6b4de6;
}

.service-card:hover .sc-link span {
  transform: translateX(4px);
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media(max-width:1100px){
  .features-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .features-visual-sticky {
    position: relative;
    top: 0;
  }
  .feat-sticky-frame {
    height: 380px;
  }
  .energy-grid,.about-grid,.contact-grid,.colors-grid,.services-grid { grid-template-columns:1fr }
  .testi-layout { grid-template-columns:1fr }
  .testi-faces  { flex-direction:row; justify-content:center }
  /* Cinematic hero responsive */
  .hero-stats {
    right: 50%;
    transform: translateX(50%);
    bottom: 50px;
  }
}
@media(max-width:768px){
  .hdr-nav { display:none }
  .hbg     { display:flex }
  #line-nav{ display:none }

  .f-row, .f-row--three { grid-template-columns:1fr }
  .ftr-inner{ grid-template-columns:1fr }
  .ftr-cols { flex-direction:column; gap:24px }
  .ftr-bottom{ flex-direction:column; gap:8px; text-align:center }
  /* Responsive Overrides for Redesigned Craftsmanship Section */
  .craft-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .craft-frame {
    aspect-ratio: 16/10;
  }
  .craft-pillar-card {
    flex-direction: column;
    gap: 12px;
    padding: 20px;
  }
  /* Cinematic hero mobile */
  .hero-content {
    padding: clamp(100px, 12vh, 140px) 24px clamp(80px, 10vh, 120px);
  }
  .hero-stats {
    display: none;
  }
  .scroll-hint {
    display: none;
  }
}
@media(max-width:520px){
  .gal-card { flex:0 0 80vw }
  .q-badges { flex-direction:column }
  .e-specs  { grid-template-columns:1fr 1fr }
}

/* ── LUMI INTERACTIVE CHARACTER FLOATING CTA ────────────────── */
.lumi-container {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 499;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  pointer-events: none;
  opacity: 0;
  will-change: transform, opacity;
}

.lumi-container.active {
  opacity: 1;
  pointer-events: auto;
}

/* Beautiful luxury glassmorphic speech bubble */
.lumi-bubble {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 12px 20px;
  background: rgba(26, 27, 34, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px 20px 4px 20px;
  color: #ffffff !important;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 
    0 10px 30px rgba(0,0,0,0.3),
    0 0 15px rgba(217, 145, 68, 0.15);
  transform-origin: bottom right;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.lumi-bubble-glow {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 184, 48, 0.15) 0%, rgba(217, 145, 68, 0) 100%);
  opacity: 1;
  pointer-events: none;
}

.lumi-bubble:hover {
  background: linear-gradient(135deg, #d99144 0%, #ffb830 100%);
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 
    0 15px 35px rgba(0,0,0,0.4),
    0 0 25px rgba(217, 145, 68, 0.4);
}

.lumi-bubble-txt {
  line-height: 1;
  position: relative;
  z-index: 2;
}

/* Character wrapper and elements */
.lumi-body-wrapper {
  position: relative;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.lumi-body {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 2;
  animation: lumi-bob 3s ease-in-out infinite;
  transform-origin: center center;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.lumi-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

/* Homi structural and animated mascot elements */
.homi-structure {
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: fill 0.3s ease, stroke 0.3s ease;
}

.homi-core {
  transform-origin: 50px 62px;
  animation: homi-core-pulse 2s ease-in-out infinite alternate;
}

.homi-window-glass {
  transform-origin: center center;
  animation: homi-window-blink 6s ease-in-out infinite;
}

.homi-sparkle {
  opacity: 0;
  transform-origin: center center;
  animation: homi-smoke-drift 2.6s linear infinite;
  will-change: transform, opacity;
}

.homi-sparkle-1 {
  animation-delay: 0s;
}

.homi-sparkle-2 {
  animation-delay: 1.3s;
}

.lumi-body {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 2;
  animation: lumi-bob 3s ease-in-out infinite;
  transform-origin: center center;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.lumi-shadow {
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 6px;
  background: rgba(0, 0, 0, 0.35);
  border-radius: 50%;
  filter: blur(3px);
  z-index: 1;
  pointer-events: none;
  animation: lumi-shadow-scale 3s ease-in-out infinite;
}

/* Eye and pupil styles */
.lumi-eyes-group {
  transition: transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Keyframes */
@keyframes lumi-bob {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-7px); }
  100% { transform: translateY(0px); }
}

@keyframes lumi-shadow-scale {
  0% { transform: translateX(-50%) scale(1); opacity: 0.8; }
  50% { transform: translateX(-50%) scale(0.7); opacity: 0.4; }
  100% { transform: translateX(-50%) scale(1); opacity: 0.8; }
}

@keyframes homi-smoke-drift {
  0% { transform: translateY(0) scale(0.6) rotate(0deg); opacity: 0; }
  20% { opacity: 0.95; }
  80% { opacity: 0.7; }
  100% { transform: translateY(-26px) translateX(-8px) scale(1.15) rotate(140deg); opacity: 0; }
}

@keyframes homi-window-blink {
  0%, 93%, 97%, 100% { transform: scaleY(1); }
  95% { transform: scaleY(0.08); }
}

@keyframes homi-core-pulse {
  0% { transform: scale(0.92); opacity: 0.55; }
  100% { transform: scale(1.08); opacity: 0.9; filter: drop-shadow(0 0 6px rgba(255, 184, 48, 0.5)); }
}

/* Hover and Click playfulness */
.lumi-body-wrapper:hover .lumi-body {
  transform: scale(1.1) rotate(3deg);
}

.lumi-body-wrapper:hover .homi-door {
  fill: #ffffff;
  stroke: #ffb830;
}

.lumi-container:hover .lumi-bubble {
  transform: translateY(-4px) scale(1.05);
  background: rgba(217, 145, 68, 0.95);
  border-color: rgba(255,255,255,0.4);
}

/* Media Queries */
@media (max-width: 768px) {
  .lumi-container {
    bottom: 20px;
    right: 20px;
  }
  .lumi-body-wrapper {
    width: 60px;
    height: 60px;
  }
  .lumi-bubble {
    padding: 10px 16px;
    font-size: 10px;
  }
}
/* ── FLYING SILHOUETTE BIRDS IN SUNSET HERO ────────────────── */
.hero-birds {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2; /* Fly on top of sunset photo and overlays! */
  overflow: hidden;
}

.bird-container {
  position: absolute;
  top: 30%;
  left: -50px;
  transform: scale(0.6);
  opacity: 0.9; /* Highly visible silhouette */
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.25));
  pointer-events: auto; /* Enable mouse hover sound triggers */
  cursor: pointer;
}

.bird {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 26 20'%3E%3Cpath fill='%23ffb830' d='M13,10 C9,6 2,4 0,0 C3,6 9,8 13,10 C17,8 23,6 26,0 C24,4 17,6 13,10 Z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  width: 28px;
  height: 16px;
  animation: bird-flap 0.6s infinite alternate ease-in-out;
}

@keyframes bird-flap {
  0% { transform: scaleY(1.3) translateY(-2px); }
  100% { transform: scaleY(0.2) translateY(3px); }
}

/* Fluid flight trajectories across the twilight sky */
.bird-container--one {
  animation: fly-across-one 24s infinite linear;
}

.bird-container--two {
  animation: fly-across-two 18s infinite linear 4s;
}

.bird-container--three {
  animation: fly-across-three 28s infinite linear 10s;
}

@keyframes fly-across-one {
  0% {
    left: -40px;
    top: 25%;
    transform: scale(0.4) rotate(5deg);
  }
  50% {
    top: 20%;
    transform: scale(0.45) rotate(-2deg);
  }
  100% {
    left: 105%;
    top: 15%;
    transform: scale(0.5) rotate(3deg);
  }
}

@keyframes fly-across-two {
  0% {
    left: -40px;
    top: 40%;
    transform: scale(0.3) rotate(8deg);
  }
  50% {
    top: 32%;
    transform: scale(0.33) rotate(0deg);
  }
  100% {
    left: 105%;
    top: 28%;
    transform: scale(0.35) rotate(4deg);
  }
}

@keyframes fly-across-three {
  0% {
    left: -40px;
    top: 15%;
    transform: scale(0.5) rotate(2deg);
  }
  50% {
    top: 18%;
    transform: scale(0.55) rotate(-4deg);
  }
  100% {
    left: 105%;
    top: 10%;
    transform: scale(0.6) rotate(1deg);
  }
}

/* ── CINEMATIC TEXT FLAG FILL HOVER EFFECT ────────────────── */
.flag-text {
  position: relative;
  display: inline-block;
  color: inherit;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.flag-text:hover {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='190' height='100' viewBox='0 0 190 100'%3E%3Crect width='190' height='100' fill='%23c9243f'/%3E%3Crect width='190' height='7.69' y='7.69' fill='%23fff'/%3E%3Crect width='190' height='7.69' y='23.07' fill='%23fff'/%3E%3Crect width='190' height='7.69' y='38.46' fill='%23fff'/%3E%3Crect width='190' height='7.69' y='53.84' fill='%23fff'/%3E%3Crect width='190' height='7.69' y='69.23' fill='%23fff'/%3E%3Crect width='190' height='7.69' y='84.61' fill='%23fff'/%3E%3Crect width='76' height='53.84' fill='%231d2f5f'/%3E%3Ccircle cx='10' cy='8' r='1.5' fill='%23fff'/%3E%3Ccircle cx='25' cy='8' r='1.5' fill='%23fff'/%3E%3Ccircle cx='40' cy='8' r='1.5' fill='%23fff'/%3E%3Ccircle cx='55' cy='8' r='1.5' fill='%23fff'/%3E%3Ccircle cx='70' cy='8' r='1.5' fill='%23fff'/%3E%3Ccircle cx='17.5' cy='17' r='1.5' fill='%23fff'/%3E%3Ccircle cx='32.5' cy='17' r='1.5' fill='%23fff'/%3E%3Ccircle cx='47.5' cy='17' r='1.5' fill='%23fff'/%3E%3Ccircle cx='62.5' cy='17' r='1.5' fill='%23fff'/%3E%3Ccircle cx='10' cy='26' r='1.5' fill='%23fff'/%3E%3Ccircle cx='25' cy='26' r='1.5' fill='%23fff'/%3E%3Ccircle cx='40' cy='26' r='1.5' fill='%23fff'/%3E%3Ccircle cx='55' cy='26' r='1.5' fill='%23fff'/%3E%3Ccircle cx='70' cy='26' r='1.5' fill='%23fff'/%3E%3Ccircle cx='17.5' cy='35' r='1.5' fill='%23fff'/%3E%3Ccircle cx='32.5' cy='35' r='1.5' fill='%23fff'/%3E%3Ccircle cx='47.5' cy='35' r='1.5' fill='%23fff'/%3E%3Ccircle cx='62.5' cy='35' r='1.5' fill='%23fff'/%3E%3Ccircle cx='10' cy='44' r='1.5' fill='%23fff'/%3E%3Ccircle cx='25' cy='44' r='1.5' fill='%23fff'/%3E%3Ccircle cx='40' cy='44' r='1.5' fill='%23fff'/%3E%3Ccircle cx='55' cy='44' r='1.5' fill='%23fff'/%3E%3Ccircle cx='70' cy='44' r='1.5' fill='%23fff'/%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
  text-shadow: none !important;
  transform: scale(1.04);
}
