/* ============================================================
   BWANA KIOO — Premium Mirror & Glass · Kisumu, Kenya
   Theme: Dark Obsidian × Liquid Gold × Glassmorphism
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Jost:wght@200;300;400;500&family=Cinzel:wght@400;600&display=swap');

/* ── Variables ── */
:root {
  --obsidian:   #080a0d;
  --deep:       #0d1017;
  --void:       #111620;
  --glass-bg:   rgba(255,255,255,0.04);
  --glass-border: rgba(255,255,255,0.08);
  --glass-hover: rgba(255,255,255,0.07);
  --gold:       #c9a84c;
  --gold-lt:    #e8c96a;
  --gold-dim:   #7a6128;
  --gold-glow:  rgba(201,168,76,0.18);
  --silver:     #b8bec8;
  --silver-dim: #5a6070;
  --white:      #eef0f4;
  --muted:      #6b7280;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-caps:    'Cinzel', serif;
  --font-body:    'Jost', sans-serif;
  --ease:       cubic-bezier(0.16, 1, 0.3, 1);
  --ease-back:  cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--obsidian);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
::selection { background: var(--gold); color: var(--obsidian); }

/* ── Custom Cursor ── */
.cursor {
  position: fixed; top: 0; left: 0;
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%,-50%);
  transition: width .2s, height .2s, background .2s;
  mix-blend-mode: screen;
}
.cursor-ring {
  position: fixed; top: 0; left: 0;
  width: 36px; height: 36px;
  border: 1px solid rgba(201,168,76,.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%,-50%);
  transition: transform .15s var(--ease), width .3s var(--ease), height .3s var(--ease);
}
body:has(a:hover) .cursor,
body:has(button:hover) .cursor { width: 16px; height: 16px; background: var(--gold-lt); }
body:has(a:hover) .cursor-ring,
body:has(button:hover) .cursor-ring { width: 52px; height: 52px; border-color: var(--gold); }

/* ── Particle Canvas ── */
#particles { position: fixed; inset: 0; pointer-events: none; z-index: 0; opacity: .5; }

/* ── Scroll Reveal ── */
.reveal, .reveal-up, .reveal-left, .reveal-right {
  opacity: 0; transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal      { transform: translateY(36px); }
.reveal-left { transform: translateX(-36px); }
.reveal-right{ transform: translateX(36px); }
.reveal.on, .reveal-up.on, .reveal-left.on, .reveal-right.on {
  opacity: 1; transform: none;
}
.d1 { transition-delay: .1s; } .d2 { transition-delay: .22s; }
.d3 { transition-delay: .36s; } .d4 { transition-delay: .5s; }
.d5 { transition-delay: .65s; }

/* ── Navigation ── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 500;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.6rem 5rem;
  transition: padding .4s, background .4s, border-color .4s;
  border-bottom: 1px solid transparent;
}
nav.scrolled {
  padding: 1rem 5rem;
  background: rgba(8,10,13,.88);
  backdrop-filter: blur(20px);
  border-bottom-color: var(--glass-border);
}
.nav-logo {
  display: flex; flex-direction: column; line-height: 1;
}
.nav-logo-main {
  font-family: var(--font-caps);
  font-size: 1.2rem; letter-spacing: .18em;
  color: var(--gold);
}
.nav-logo-sub {
  font-size: .6rem; letter-spacing: .3em;
  text-transform: uppercase; color: var(--silver-dim);
  margin-top: 2px;
}
.nav-links { display: flex; gap: 2.5rem; list-style: none; align-items: center; }
.nav-links a {
  font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--silver-dim);
  transition: color .3s;
  position: relative; padding-bottom: 3px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width .35s var(--ease);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-cta-btn {
  background: transparent !important;
  border: 1px solid var(--gold) !important;
  color: var(--gold) !important;
  padding: .45rem 1.3rem;
  font-size: .68rem !important; letter-spacing: .18em !important;
  cursor: none; transition: background .3s, color .3s !important;
}
.nav-cta-btn::after { display: none !important; }
.nav-cta-btn:hover { background: var(--gold) !important; color: var(--obsidian) !important; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: none; padding: 4px;
}
.hamburger span { display: block; width: 24px; height: 1px; background: var(--silver); transition: .3s; }

/* ── HERO ── */
#hero {
  min-height: 100vh; position: relative;
  display: flex; align-items: center;
  padding: 0 5rem; overflow: hidden;
}
.hero-bg-glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 55% 60% at 65% 40%, rgba(201,168,76,.06) 0%, transparent 65%),
    radial-gradient(ellipse 35% 45% at 15% 70%, rgba(184,190,200,.04) 0%, transparent 60%);
}
.hero-mirror-frame {
  position: absolute; right: 5rem; top: 50%;
  transform: translateY(-50%);
  width: min(38vw, 500px); aspect-ratio: 3/4;
  border: 1px solid rgba(201,168,76,.25);
  box-shadow:
    inset 0 0 80px rgba(201,168,76,.04),
    0 0 60px rgba(201,168,76,.06),
    0 0 120px rgba(201,168,76,.03);
  overflow: hidden;
  animation: mirrorFloat 6s ease-in-out infinite;
}
.hero-mirror-frame::before {
  content: '';
  position: absolute; inset: 8px;
  border: 1px solid rgba(201,168,76,.12);
}
.hero-mirror-frame::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg,
    rgba(255,255,255,.07) 0%,
    rgba(255,255,255,.02) 40%,
    transparent 60%,
    rgba(201,168,76,.04) 100%);
}
.mirror-inner {
  width: 100%; height: 100%;
  background: linear-gradient(160deg, #0d1520 0%, #080d14 40%, #0a1018 100%);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-caps); font-size: 4rem;
  color: rgba(201,168,76,.12); letter-spacing: .1em;
}
.mirror-corner {
  position: absolute; width: 20px; height: 20px;
  border-color: var(--gold); border-style: solid; opacity: .6;
}
.mc-tl { top: -1px; left: -1px; border-width: 2px 0 0 2px; }
.mc-tr { top: -1px; right: -1px; border-width: 2px 2px 0 0; }
.mc-bl { bottom: -1px; left: -1px; border-width: 0 0 2px 2px; }
.mc-br { bottom: -1px; right: -1px; border-width: 0 2px 2px 0; }

.hero-content { position: relative; z-index: 2; max-width: 580px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: .75rem;
  font-size: .65rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 2rem;
  opacity: 0; animation: fadeUp .8s var(--ease) .3s forwards;
}
.hero-badge::before { content: ''; width: 28px; height: 1px; background: var(--gold); }
.hero-badge::after  { content: ''; width: 28px; height: 1px; background: var(--gold); }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 6.5rem);
  font-weight: 400; line-height: 1.05;
  letter-spacing: -.01em;
  margin-bottom: 1.5rem;
  opacity: 0; animation: fadeUp 1s var(--ease) .5s forwards;
}
.hero-title em { font-style: italic; color: var(--gold); }
.hero-title .indent { padding-left: 2.5rem; display: block; }

.hero-sub {
  font-size: 1rem; color: var(--silver-dim); line-height: 1.9;
  max-width: 420px; margin-bottom: 2.5rem;
  opacity: 0; animation: fadeUp 1s var(--ease) .7s forwards;
}

.hero-actions {
  display: flex; gap: 1.2rem; align-items: center;
  opacity: 0; animation: fadeUp 1s var(--ease) .9s forwards;
}
.btn-gold {
  background: var(--gold); color: var(--obsidian);
  padding: .9rem 2.2rem; font-family: var(--font-body);
  font-size: .75rem; font-weight: 500; letter-spacing: .2em;
  text-transform: uppercase; border: none; cursor: none;
  transition: background .3s, transform .2s, box-shadow .3s;
  position: relative; overflow: hidden;
}
.btn-gold::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.2), transparent);
  transform: translateX(-100%); transition: transform .5s;
}
.btn-gold:hover::before { transform: translateX(100%); }
.btn-gold:hover { background: var(--gold-lt); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,168,76,.3); }

.btn-outline {
  color: var(--silver-dim); font-size: .75rem; letter-spacing: .18em;
  text-transform: uppercase; display: flex; align-items: center; gap: .7rem;
  transition: color .3s; cursor: none;
}
.btn-outline .line { width: 30px; height: 1px; background: currentColor; transition: width .3s; position: relative; }
.btn-outline .line::after {
  content: ''; position: absolute; right: 0; top: -3px;
  width: 7px; height: 7px;
  border-right: 1px solid currentColor; border-top: 1px solid currentColor;
  transform: rotate(45deg);
}
.btn-outline:hover { color: var(--white); }
.btn-outline:hover .line { width: 44px; }

.hero-scroll-ind {
  position: absolute; bottom: 2.5rem; left: 5rem;
  display: flex; align-items: center; gap: 1rem;
  font-size: .62rem; letter-spacing: .22em; text-transform: uppercase; color: var(--muted);
  opacity: 0; animation: fadeUp .8s var(--ease) 1.1s forwards;
}
.scroll-bar { width: 1px; height: 48px; background: linear-gradient(to bottom, var(--gold), transparent); animation: pulse 2s ease-in-out infinite; }

/* ── Section Base ── */
section { padding: 8rem 5rem; position: relative; }
.section-eyebrow {
  display: flex; align-items: center; gap: 1rem;
  font-size: .65rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.2rem;
}
.section-eyebrow::before { content: ''; width: 22px; height: 1px; background: var(--gold); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.8vw, 3.8rem);
  font-weight: 400; line-height: 1.12; letter-spacing: -.01em;
}
.section-title em { font-style: italic; color: var(--gold); }
.divider { width: 100%; height: 1px; background: var(--glass-border); }

/* ── Glass Card Mixin ── */
.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  transition: background .35s, border-color .35s, transform .35s var(--ease), box-shadow .35s;
}
.glass-card:hover {
  background: var(--glass-hover);
  border-color: rgba(201,168,76,.25);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,.4), 0 0 30px rgba(201,168,76,.06);
}

/* ── PRODUCTS ── */
#products { background: var(--deep); }
.products-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 4rem; }
.products-header p { max-width: 340px; color: var(--muted); font-size: .88rem; line-height: 1.8; }

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.product-card {
  position: relative; overflow: hidden; cursor: none;
  aspect-ratio: 3/4;
}
.product-card:nth-child(1) { grid-row: span 2; aspect-ratio: auto; }

.product-visual {
  width: 100%; height: 100%; min-height: 260px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  transition: transform .6s var(--ease);
}
.product-card:hover .product-visual { transform: scale(1.04); }

/* Per-product gradient backgrounds simulating mirror surfaces */
.pv-plain    { background: linear-gradient(145deg,#0f1822,#162030); }
.pv-antique  { background: linear-gradient(145deg,#1a1408,#251c0a); }
.pv-twoway   { background: linear-gradient(145deg,#0d1520,#0f1a2a); }
.pv-convex   { background: linear-gradient(145deg,#12101e,#1a1630); }
.pv-flower   { background: linear-gradient(145deg,#160d18,#200f24); }
.pv-glass    { background: linear-gradient(145deg,#0a1a18,#0d2220); }

.product-sheen {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.05) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform .7s;
}
.product-card:hover .product-sheen { transform: translateX(100%); }

.product-icon-wrap {
  position: relative; z-index: 1;
  width: 80px; height: 80px;
  border: 1px solid rgba(201,168,76,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  color: rgba(201,168,76,.35);
  font-family: var(--font-caps);
  letter-spacing: .05em;
}

.product-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(8,10,13,.95) 0%, transparent 100%);
  transform: translateY(20px); opacity: 0;
  transition: transform .4s var(--ease), opacity .4s;
}
.product-card:hover .product-info { transform: none; opacity: 1; }

.product-tag {
  font-size: .62rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: .35rem;
}
.product-name {
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 400;
  color: var(--white); line-height: 1.2; margin-bottom: .5rem;
}
.product-desc { font-size: .78rem; color: var(--silver-dim); line-height: 1.7; }

.product-border-frame {
  position: absolute; inset: 0; pointer-events: none;
  border: 1px solid transparent;
  transition: border-color .35s;
}
.product-card:hover .product-border-frame { border-color: rgba(201,168,76,.2); }

/* ── GALLERY ── */
#gallery { overflow: hidden; }
.gallery-header { margin-bottom: 4rem; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 1rem;
}
.gallery-item {
  position: relative; overflow: hidden; cursor: none;
  background: var(--void);
}
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(4) { grid-column: span 2; }

.gallery-visual {
  width: 100%; aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  transition: transform .6s var(--ease);
  font-family: var(--font-caps); font-size: 1.2rem;
  letter-spacing: .2em; color: rgba(201,168,76,.1);
  position: relative; overflow: hidden;
}
.gallery-item:nth-child(1) .gallery-visual { aspect-ratio: 1; }
.gallery-item:nth-child(4) .gallery-visual { aspect-ratio: 2; }
.gallery-item:hover .gallery-visual { transform: scale(1.06); }

.gv1 { background: linear-gradient(135deg,#0f1c28,#152538); }
.gv2 { background: linear-gradient(135deg,#1c1408,#281e0a); }
.gv3 { background: linear-gradient(135deg,#0e1822,#12202e); }
.gv4 { background: linear-gradient(135deg,#180e1e,#221228); }
.gv5 { background: linear-gradient(135deg,#0a1c18,#0d2420); }
.gv6 { background: linear-gradient(135deg,#181018,#221420); }

.gallery-visual::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.04), transparent);
  transform: translateX(-100%); transition: transform .8s;
}
.gallery-item:hover .gallery-visual::before { transform: translateX(100%); }

.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(8,10,13,.7); backdrop-filter: blur(4px);
  display: flex; align-items: flex-end; padding: 1.25rem;
  opacity: 0; transition: opacity .35s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-label {
  font-family: var(--font-display); font-size: 1rem; font-style: italic;
  color: var(--gold);
}

/* ── PRICING ── */
#pricing { background: var(--deep); }
.pricing-header { text-align: center; margin-bottom: 4rem; }
.pricing-header p { color: var(--muted); font-size: .9rem; margin-top: 1rem; }
.pricing-note {
  text-align: center; font-size: .75rem; color: var(--silver-dim);
  margin-top: 2rem; letter-spacing: .05em;
}
.pricing-note span { color: var(--gold); }

.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; align-items: start;
}
.price-card {
  padding: 2.5rem 2rem; position: relative; overflow: hidden;
}
.price-card.featured {
  border-color: rgba(201,168,76,.4) !important;
  background: rgba(201,168,76,.05) !important;
}
.price-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute; top: 1.2rem; right: -2.5rem;
  background: var(--gold); color: var(--obsidian);
  font-size: .55rem; letter-spacing: .2em; font-weight: 500;
  padding: .3rem 3rem; transform: rotate(35deg);
}
.price-card-label {
  font-size: .65rem; letter-spacing: .25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: .75rem;
}
.price-card-name {
  font-family: var(--font-display); font-size: 1.6rem; font-weight: 400;
  color: var(--white); margin-bottom: 1.5rem; line-height: 1.2;
}
.price-amount {
  display: flex; align-items: baseline; gap: .4rem; margin-bottom: 1.75rem;
}
.price-currency { font-size: .85rem; color: var(--gold); font-weight: 400; }
.price-num {
  font-family: var(--font-display); font-size: 3rem; font-weight: 600;
  color: var(--white); line-height: 1;
}
.price-unit { font-size: .75rem; color: var(--muted); }
.price-divider { height: 1px; background: var(--glass-border); margin-bottom: 1.75rem; }
.price-features { list-style: none; display: flex; flex-direction: column; gap: .85rem; margin-bottom: 2rem; }
.price-features li {
  font-size: .82rem; color: var(--silver-dim); display: flex; align-items: center; gap: .75rem;
}
.price-features li::before {
  content: ''; width: 16px; height: 1px;
  background: var(--gold); flex-shrink: 0;
}
.price-features li.off { color: var(--muted); text-decoration: line-through; }
.price-features li.off::before { background: var(--muted); }

.btn-price {
  width: 100%; padding: .85rem; font-family: var(--font-body);
  font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
  border: 1px solid var(--glass-border); background: transparent;
  color: var(--silver-dim); cursor: none; transition: all .3s;
}
.btn-price:hover, .price-card.featured .btn-price {
  background: var(--gold); border-color: var(--gold);
  color: var(--obsidian); box-shadow: 0 4px 24px rgba(201,168,76,.25);
}

/* ── ABOUT ── */
#about {
  display: grid; grid-template-columns: 1fr 1fr; gap: 7rem; align-items: center;
}
.about-visual-wrap { position: relative; }
.about-mirror-display {
  aspect-ratio: 3/4; max-height: 560px;
  border: 1px solid rgba(201,168,76,.2);
  position: relative; overflow: hidden;
  background: linear-gradient(145deg,#0d1520,#0a1018);
  display: flex; align-items: center; justify-content: center;
}
.about-mirror-display::before {
  content: ''; position: absolute; inset: 10px;
  border: 1px solid rgba(201,168,76,.08);
}
.about-mirror-display::after {
  content: '';  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(255,255,255,.06) 0%, transparent 50%, rgba(201,168,76,.04) 100%);
  pointer-events: none;
}
.about-mirror-text {
  font-family: var(--font-caps); font-size: 5rem;
  color: rgba(201,168,76,.1); letter-spacing: .05em; text-align: center;
}
.about-float-badge {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  width: 110px; height: 110px;
  background: var(--gold); color: var(--obsidian);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-family: var(--font-caps); gap: 2px;
  box-shadow: 0 8px 32px rgba(201,168,76,.3);
}
.badge-num { font-size: 2.2rem; font-weight: 600; line-height: 1; }
.badge-label { font-size: .52rem; letter-spacing: .18em; text-align: center; }

.about-corner-accent {
  position: absolute; top: -1rem; left: -1rem;
  width: 70px; height: 70px;
  border-top: 2px solid var(--gold); border-left: 2px solid var(--gold);
}
.about-text p { font-size: .92rem; color: var(--muted); line-height: 1.95; margin-bottom: 1.4rem; }
.about-text p strong { color: var(--white); font-weight: 400; }
.about-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin: 2.5rem 0;
  padding: 2rem; background: var(--glass-bg); border: 1px solid var(--glass-border);
}
.stat-val {
  font-family: var(--font-display); font-size: 2rem; font-weight: 600; color: var(--gold); line-height: 1;
}
.stat-val span { font-size: 1.2rem; }
.stat-lbl { font-size: .65rem; letter-spacing: .15em; text-transform: uppercase; color: var(--muted); margin-top: .3rem; }

/* ── CONTACT ── */
#contact {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 6rem; align-items: start;
}
.contact-left p { font-size: .9rem; color: var(--muted); line-height: 1.9; margin-bottom: 2.5rem; max-width: 380px; }

.contact-detail {
  display: flex; gap: 1.25rem; align-items: flex-start; margin-bottom: 1.75rem;
}
.c-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  border: 1px solid var(--glass-border); display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: .85rem; transition: border-color .3s, background .3s;
}
.contact-detail:hover .c-icon { border-color: var(--gold); background: rgba(201,168,76,.08); }
.c-lbl { font-size: .6rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); margin-bottom: .2rem; }
.c-val { font-size: .88rem; color: var(--silver); transition: color .3s; }
.contact-detail:hover .c-val { color: var(--gold); }

.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.fg { position: relative; }
.fg input, .fg textarea, .fg select {
  width: 100%; background: transparent;
  border: none; border-bottom: 1px solid var(--glass-border);
  padding: 1rem 0; color: var(--white);
  font-family: var(--font-body); font-size: .88rem;
  outline: none; transition: border-color .3s;
  -webkit-appearance: none; resize: none;
}
.fg select option { background: var(--deep); color: var(--white); }
.fg textarea { min-height: 110px; }
.fg input:focus, .fg textarea:focus, .fg select:focus { border-bottom-color: var(--gold); }
.fg label {
  position: absolute; top: 1rem; left: 0;
  font-size: .7rem; letter-spacing: .15em; text-transform: uppercase; color: var(--muted);
  pointer-events: none; transition: top .3s, font-size .3s, color .3s;
}
.fg input:focus + label,
.fg input:not(:placeholder-shown) + label,
.fg textarea:focus + label,
.fg textarea:not(:placeholder-shown) + label,
.fg select:focus + label { top: -.5rem; font-size: .6rem; color: var(--gold); }
.fg input::placeholder,
.fg textarea::placeholder { color: transparent; }

/* ── CTA Band ── */
#cta-band {
  padding: 5rem; text-align: center; position: relative; overflow: hidden;
  background: linear-gradient(135deg, #0d1117, #111820);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}
#cta-band::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 100% at 50% 0%, rgba(201,168,76,.07), transparent);
}
.cta-title {
  font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 400; color: var(--white); margin-bottom: .75rem; position: relative;
}
.cta-title em { font-style: italic; color: var(--gold); }
.cta-sub { font-size: .85rem; color: var(--muted); margin-bottom: 2.5rem; position: relative; }

/* ── Footer ── */
footer {
  padding: 2.5rem 5rem;
  border-top: 1px solid var(--glass-border);
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
}
.footer-brand { font-family: var(--font-caps); font-size: .9rem; letter-spacing: .2em; color: var(--gold); }
.footer-copy { font-size: .7rem; color: var(--muted); }
.footer-links { display: flex; gap: 2rem; list-style: none; }
.footer-links a { font-size: .68rem; letter-spacing: .15em; text-transform: uppercase; color: var(--muted); transition: color .3s; }
.footer-links a:hover { color: var(--gold); }
.social-row { display: flex; gap: .75rem; }
.soc {
  width: 34px; height: 34px; border: 1px solid var(--glass-border);
  display: flex; align-items: center; justify-content: center;
  font-size: .65rem; color: var(--muted); letter-spacing: 0;
  transition: border-color .3s, color .3s;
}
.soc:hover { border-color: var(--gold); color: var(--gold); }

/* ── Animations ── */
@keyframes fadeUp { from { opacity:0; transform:translateY(22px); } to { opacity:1; transform:none; } }
@keyframes mirrorFloat {
  0%,100% { transform: translateY(-50%) rotate(.4deg); }
  50%      { transform: translateY(calc(-50% - 14px)) rotate(-.4deg); }
}
@keyframes pulse { 0%,100%{opacity:.4;} 50%{opacity:1;} }
@keyframes shimmer { 0%{transform:translateX(-100%);} 100%{transform:translateX(100%);} }

/* ── Responsive ── */
@media(max-width:1100px){
  nav { padding:1.4rem 3rem; }
  nav.scrolled { padding:.9rem 3rem; }
  section { padding:6rem 3rem; }
  #hero { padding:0 3rem; }
  .hero-mirror-frame { width:36vw; }
  .hero-scroll-ind { left:3rem; }
  footer { padding:2rem 3rem; }
  #cta-band { padding:4rem 3rem; }
}

@media(max-width:900px){
  .nav-links {
    position:fixed; top:0; right:0; bottom:0; width:270px;
    background:rgba(8,10,13,.97); backdrop-filter:blur(20px);
    flex-direction:column; align-items:flex-start; justify-content:center;
    padding:4rem 2.5rem; gap:1.75rem;
    transform:translateX(100%); transition:transform .4s var(--ease);
    border-left:1px solid var(--glass-border); z-index:200;
  }
  .nav-links.open { transform:translateX(0); }
  .nav-links a { font-size:.88rem; }
  .hamburger { display:flex; z-index:201; }

  #hero { padding:0 2rem; flex-direction:column; justify-content:center; padding-top:8rem; }
  .hero-mirror-frame { display:none; }
  .hero-content { max-width:100%; }
  .hero-scroll-ind { left:2rem; }

  section { padding:5rem 2rem; }
  .products-grid { grid-template-columns:1fr 1fr; }
  .product-card:nth-child(1) { grid-column:span 2; grid-row:span 1; }
  .gallery-grid { grid-template-columns:1fr 1fr; }
  .gallery-item:nth-child(1) { grid-column:span 2; }
  .gallery-item:nth-child(4) { grid-column:span 2; }
  .pricing-grid { grid-template-columns:1fr; max-width:420px; margin:0 auto; }
  #about { grid-template-columns:1fr; gap:3rem; }
  .about-visual-wrap { max-width:360px; }
  .about-stats { grid-template-columns:1fr 1fr 1fr; }
  #contact { grid-template-columns:1fr; gap:3rem; }
  .form-row { grid-template-columns:1fr; }
  footer { flex-wrap:wrap; padding:2rem; gap:1.25rem; }
  .products-header { flex-direction:column; align-items:flex-start; gap:1rem; }
  #cta-band { padding:4rem 2rem; }
  nav { padding:1.2rem 2rem; }
  nav.scrolled { padding:.85rem 2rem; }
}

@media(max-width:480px){
  .products-grid { grid-template-columns:1fr; }
  .product-card:nth-child(1) { grid-column:span 1; }
  .gallery-grid { grid-template-columns:1fr; }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(4) { grid-column:span 1; }
  .about-stats { grid-template-columns:1fr 1fr; }
  .hero-actions { flex-direction:column; align-items:flex-start; }
}