/* ==========================================================================
   PROSTIR MGF — shared stylesheet
   Tokens: warm-black ground, brass/gold accent, Syne display + Manrope body
   Signature motif: the backlit halo ring (their product, abstracted in CSS)
   ========================================================================== */

/* Syne + Manrope are loaded via <link rel="stylesheet"> in each page's <head> (next to the
   preconnect hints) instead of @import here — @import blocks the browser from discovering
   and fetching the font CSS until this whole stylesheet has downloaded and parsed, which
   delays text rendering. A <link> tag is discovered immediately during HTML parsing and
   fetches in parallel with this file. */

:root{
  --bg:            #0b0a09;
  --bg-panel:      #161311;
  --bg-panel-2:    #1e1a16;
  --gold:          #c9974a;
  --gold-light:    #e8c98a;
  --gold-deep:     #7a5a2c;
  --text:          #f3efe8;
  --text-muted:    #a39c8f;
  --line:          rgba(201,151,74,0.22);
  --line-strong:   rgba(201,151,74,0.45);
  --radius-s:      8px;
  --radius-m:      16px;
  --radius-l:      22px;
  --max:           1180px;
  --nav-h:         84px;
  --ease:          cubic-bezier(.2,.7,.2,1);
  --panel-grad:    linear-gradient(165deg, var(--bg-panel-2), var(--bg-panel) 60%);
  --shadow-s:      0 6px 18px -8px rgba(0,0,0,0.45);
  --shadow-m:      0 20px 44px -20px rgba(0,0,0,0.6);
  --shadow-l:      0 34px 80px -28px rgba(0,0,0,0.68);
  --shadow-gold:   0 18px 40px -18px rgba(201,151,74,0.38);
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
html,body{ margin:0; padding:0; }

body{
  background:
    radial-gradient(1200px 600px at 12% -10%, rgba(201,151,74,0.09), transparent 60%),
    radial-gradient(900px 500px at 108% 18%, rgba(201,151,74,0.06), transparent 55%),
    var(--bg);
  color:var(--text);
  font-family:'Manrope',system-ui,-apple-system,sans-serif;
  font-size:16px;
  line-height:1.65;
  letter-spacing:0.005em;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}

/* subtle grain to keep the black from looking flat / templated */
body::before{
  content:"";
  position:fixed; inset:0;
  pointer-events:none;
  z-index:2000;
  opacity:0.035;
  mix-blend-mode:overlay;
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

h1,h2,h3,h4{
  font-family:'Syne',sans-serif;
  font-weight:800;
  line-height:1.08;
  margin:0;
  letter-spacing:-0.01em;
}

p{ margin:0; }
a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }
button{ font-family:inherit; cursor:pointer; }

.eyebrow{
  font-family:'Manrope',sans-serif;
  font-weight:700;
  font-size:0.78rem;
  letter-spacing:0.22em;
  text-transform:uppercase;
  color:var(--gold);
}
.eyebrow::before{
  content:"";
  display:inline-block;
  width:22px; height:1px;
  margin-right:10px;
  margin-bottom:3px;
  background:linear-gradient(90deg, var(--gold), transparent);
}

.wrap{
  max-width:var(--max);
  margin:0 auto;
  padding:0 28px;
}

/* focus visibility, kept even though palette is dark */
a:focus-visible,button:focus-visible,input:focus-visible,select:focus-visible,textarea:focus-visible{
  outline:2px solid var(--gold-light);
  outline-offset:3px;
  border-radius:2px;
}

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *{ animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important; }
}

/* ---------------------------------- nav ---------------------------------- */
.site-nav{
  position:sticky; top:0; z-index:500;
  height:var(--nav-h);
  display:flex; align-items:center;
  background:rgba(11,10,9,0.9);
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
  border-bottom:1px solid var(--line);
  box-shadow:0 1px 0 rgba(255,255,255,0.02), 0 18px 40px -30px rgba(0,0,0,0.8);
}
.site-nav .wrap{ display:flex; align-items:center; justify-content:space-between; width:100%; }
.nav-brand{ display:flex; align-items:center; gap:12px; }
.nav-brand img{ height:34px; width:auto; }
.nav-brand .nb-stack{ display:flex; flex-direction:column; justify-content:center; }
.nav-brand .nb-text{ font-family:'Syne',sans-serif; font-weight:700; font-size:1.05rem; letter-spacing:0.12em; display:block; }
.nav-brand .nb-sub{ display:block; font-family:'Manrope',sans-serif; font-weight:600; font-size:0.6rem; letter-spacing:0.16em; color:var(--gold); margin-top:2px; }

.nav-links{ display:flex; align-items:center; gap:36px; list-style:none; margin:0; padding:0; }
.nav-links a{
  font-size:0.86rem; letter-spacing:0.04em; color:var(--text-muted);
  position:relative; padding:6px 0; transition:color 0.2s ease;
}
.nav-links a:hover, .nav-links a.active{ color:var(--text); }
.nav-links a.active::after{
  content:""; position:absolute; left:0; right:0; bottom:-4px; height:1px; background:var(--gold);
}
.nav-cta{
  border:1px solid var(--line-strong); padding:10px 18px; border-radius:999px;
  font-size:0.82rem; letter-spacing:0.03em; color:var(--text);
  transition:border-color 0.2s ease, background 0.2s ease;
  white-space:nowrap;
}
.nav-cta:hover{ background:var(--gold); color:#161311; border-color:var(--gold); }

.nav-toggle{
  display:none; background:none; border:none; padding:8px; color:var(--text);
}
.nav-toggle svg{ width:24px; height:24px; }

@media (max-width:900px){
  .nav-links{
    position:fixed; top:var(--nav-h); left:0; right:0;
    flex-direction:column; align-items:flex-start; gap:0;
    background:var(--bg-panel);
    border-bottom:1px solid var(--line);
    max-height:0; overflow:hidden;
    transition:max-height 0.3s ease;
  }
  .nav-links.open{ max-height:calc(100vh - var(--nav-h)); overflow-y:auto; -webkit-overflow-scrolling:touch; }
  .nav-links li{ width:100%; }
  .nav-links a{ display:block; padding:16px 28px; width:100%; border-bottom:1px solid var(--line); box-sizing:border-box; }
  .nav-links a::after{ display:none; }
  .nav-links a.nav-cta{ width:auto; margin:16px 28px 20px; padding:12px 18px; text-align:center; }
  .nav-toggle{ display:block; }
}

/* --------------------------------- halo ---------------------------------- */
/* the recurring signature: a backlit ring, abstracted from their own product photography */
.halo{
  position:absolute;
  border-radius:50%;
  pointer-events:none;
  border:1px solid rgba(201,151,74,0.55);
  box-shadow:
    0 0 60px 8px rgba(201,151,74,0.30),
    0 0 160px 50px rgba(201,151,74,0.12),
    inset 0 0 50px rgba(201,151,74,0.18);
}
.halo.oval{ border-radius:50%/42%; }

/* --------------------------------- hero ----------------------------------- */
.hero{
  position:relative;
  min-height:min(88vh,840px);
  display:flex; align-items:center;
  overflow:hidden;
  border-bottom:1px solid var(--line);
}
.hero .halo{
  width:620px; height:620px;
  right:-160px; top:50%; transform:translateY(-50%);
}
.hero-bg{
  position:absolute; inset:0; z-index:0;
  background:
    linear-gradient(180deg, rgba(11,10,9,0.93), rgba(11,10,9,0.82) 40%, rgba(11,10,9,0.95)),
    url('works/work-13-round-led.webp') center 30% / cover no-repeat;
  filter:saturate(0.85);
  transition:transform .2s ease-out;
  will-change:transform;
}
.hero-layout{ width:100%; display:grid; grid-template-columns:1.03fr .97fr; gap:70px; align-items:center; position:relative; z-index:2; }
.hero-inner{ position:relative; z-index:2; max-width:640px; }
.hero-media{ position:relative; max-width:520px; justify-self:end; }
.hero-media a{ display:block; border:1px solid var(--line-strong); border-radius:24px; overflow:hidden; box-shadow:var(--shadow-l); background:var(--panel-grad); }
.hero-media img{ width:100%; aspect-ratio:4/5; object-fit:cover; transition:transform .6s ease; }
.hero-media a:hover img{ transform:scale(1.025); }
.hero-media::before{ content:""; position:absolute; inset:-18px 18px 18px -18px; border:1px solid var(--line); border-radius:24px; z-index:-1; }
.hero-media-label{ position:absolute; left:22px; right:22px; bottom:22px; padding:18px 20px; border:1px solid rgba(255,255,255,.15); border-radius:14px; background:rgba(11,10,9,.68); backdrop-filter:blur(12px); }
.hero-media-label span{ display:block; color:var(--gold-light); font-size:.72rem; text-transform:uppercase; letter-spacing:.16em; }
.hero-media-label strong{ display:block; margin-top:5px; font-family:'Syne',sans-serif; font-size:1rem; }
.hero h1{
  font-size:clamp(2.6rem,5.6vw,4.6rem);
  margin-top:18px;
  text-transform:uppercase;
}
.hero h1 span{ color:var(--gold); }
.hero .lede{
  margin-top:22px; font-size:1.08rem; color:var(--text-muted); max-width:460px;
}
.hero-actions{ display:flex; align-items:center; gap:16px; margin-top:38px; flex-wrap:wrap; }

.btn{
  display:inline-flex; align-items:center; gap:10px;
  padding:15px 28px; border-radius:999px;
  font-size:0.92rem; font-weight:600; letter-spacing:0.02em;
  transition:transform 0.25s var(--ease), background 0.25s var(--ease), color 0.2s ease, border-color 0.2s ease, box-shadow 0.25s var(--ease);
  border:1px solid transparent;
  background:none;
  font-family:inherit;
  cursor:pointer;
}
.btn[hidden]{ display:none !important; }
.btn-primary{
  background:linear-gradient(155deg, var(--gold-light), var(--gold) 55%, var(--gold-deep));
  color:#1b140c;
  box-shadow:0 12px 26px -14px rgba(201,151,74,0.55);
}
.btn-primary:hover{ background:linear-gradient(155deg, var(--gold-light), var(--gold-light) 40%, var(--gold)); transform:translateY(-2px) scale(1.015); box-shadow:var(--shadow-gold); }
.btn-primary:active{ transform:translateY(0) scale(0.99); }
.btn-ghost{ background:rgba(201,151,74,0.03); border-color:var(--line-strong); color:var(--text); }
.btn-ghost:hover{ border-color:var(--gold); color:var(--gold-light); background:rgba(201,151,74,0.08); transform:translateY(-2px); box-shadow:var(--shadow-s); }

/* -------------------------------- sections -------------------------------- */
section{ padding:96px 0; position:relative; }
.section-head{ max-width:620px; margin-bottom:56px; }
.section-head h2{ font-size:clamp(1.8rem,3.4vw,2.6rem); margin-top:14px; }
.section-head .lede{ margin-top:16px; color:var(--text-muted); font-size:1.05rem; line-height:1.7; }

.divider{ border:none; border-top:1px solid var(--line); margin:0; }

/* ------------------------------ feature strip ------------------------------ */
.feature-grid{
  display:grid; grid-template-columns:repeat(4,1fr); gap:1px;
  background:var(--line); border:1px solid var(--line); border-radius:var(--radius-m); overflow:hidden;
  box-shadow:var(--shadow-s);
}
.feature-item{ background:var(--panel-grad); padding:36px 26px; transition:background .3s ease; }
.feature-item:hover{ background:linear-gradient(165deg, var(--bg-panel-2), rgba(201,151,74,0.06) 140%); }
.feature-item svg{ width:30px; height:30px; color:var(--gold); filter:drop-shadow(0 4px 10px rgba(201,151,74,0.35)); }
.feature-item h3{ font-size:1rem; margin-top:20px; font-weight:700; }
.feature-item p{ margin-top:8px; font-size:0.88rem; color:var(--text-muted); }
@media (max-width:820px){ .feature-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:520px){ .feature-grid{ grid-template-columns:1fr; } }

/* --------------------------------- why us ---------------------------------- */
.why{ display:grid; grid-template-columns:1.1fr 0.9fr; gap:64px; align-items:center; }
.why-list{ list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:0; }
.why-list li{
  display:flex; gap:18px; padding:22px 0; border-bottom:1px solid var(--line);
  transition:padding-left .25s var(--ease), border-color .25s ease;
}
.why-list li:hover{ padding-left:8px; border-color:var(--line-strong); }
.why-list li:first-child{ border-top:1px solid var(--line); }
.why-list .num{ font-family:'Syne',sans-serif; font-weight:700; color:var(--gold-deep); font-size:0.95rem; padding-top:2px; }
.why-list strong{ display:block; font-size:1.02rem; }
.why-list span{ display:block; margin-top:4px; color:var(--text-muted); font-size:0.9rem; }
.why-visual{ position:relative; aspect-ratio:1/1; display:flex; align-items:center; justify-content:center; }
.why-visual .halo{ width:78%; height:78%; position:relative; inset:auto; transform:none; }
@media (max-width:900px){ .why{ grid-template-columns:1fr; } .why-visual{ order:-1; max-width:280px; margin:0 auto; } }

/* -------------------------------- slogan band -------------------------------- */
.slogan{
  position:relative;
  background:
    radial-gradient(700px 340px at 50% 0%, rgba(201,151,74,0.10), transparent 65%),
    var(--bg-panel);
  border-top:1px solid var(--line); border-bottom:1px solid var(--line);
  text-align:center; padding:110px 0;
  overflow:hidden;
}
.slogan .eyebrow{ display:block; margin-bottom:22px; }
.slogan h2{ font-size:clamp(1.9rem,4.6vw,3.4rem); }
.slogan h2 em{ font-style:normal; color:var(--gold); }

/* -------------------------------- process -------------------------------- */
.process{ display:grid; grid-template-columns:repeat(4,1fr); gap:32px; }
.process-step{ position:relative; padding-top:36px; border-top:1px solid var(--line-strong); transition:border-color .3s ease; }
.process-step:hover{ border-top-color:var(--gold); }
.process-step .num{ font-family:'Syne',sans-serif; font-size:1.4rem; color:var(--gold); font-weight:800; }
.process-step h3{ margin-top:14px; font-size:1.02rem; }
.process-step p{ margin-top:8px; color:var(--text-muted); font-size:0.88rem; }
@media (max-width:900px){ .hero-layout{ grid-template-columns:1fr; gap:38px; padding-top:70px; padding-bottom:70px; } .hero-media{ justify-self:start; width:min(100%,520px); } .hero{ min-height:auto; } }
@media (max-width:520px){ .hero-layout{ padding-top:52px; padding-bottom:52px; } .hero-media-label{ left:12px; right:12px; bottom:12px; padding:14px; } }

@media (max-width:820px){ .process{ grid-template-columns:1fr 1fr; row-gap:44px; } }
@media (max-width:520px){ .process{ grid-template-columns:1fr; } }

/* -------------------------------- cta strip -------------------------------- */
.cta-strip{
  display:flex; align-items:center; justify-content:space-between; gap:24px; flex-wrap:wrap;
  padding:64px 0;
}
.cta-strip h2{ font-size:clamp(1.5rem,3vw,2.1rem); max-width:520px; }

/* ----------------------------- featured gallery ----------------------------- */
.featured-works{ background:var(--bg-panel); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.split-head{ display:flex; align-items:flex-end; justify-content:space-between; gap:30px; }
.text-link{ color:var(--gold-light); font-size:.9rem; white-space:nowrap; padding-bottom:4px; }
.text-link span{ margin-left:8px; }
.home-gallery{ display:grid; grid-template-columns:1.15fr .85fr .85fr; grid-auto-rows:260px; gap:16px; margin-top:42px; }
.home-photo{ position:relative; overflow:hidden; border-radius:var(--radius-m); border:1px solid var(--line); min-height:0; background:#111; }
.home-photo img{ width:100%; height:100%; object-fit:cover; transition:transform .55s ease, filter .55s ease; }
.home-photo:hover img{ transform:scale(1.04); filter:brightness(1.06); }
.home-photo span{ position:absolute; left:14px; bottom:14px; padding:7px 11px; border-radius:999px; background:rgba(11,10,9,.72); backdrop-filter:blur(8px); border:1px solid rgba(255,255,255,.14); color:#fff; font-size:.72rem; }
.home-photo-tall{ grid-row:span 2; }
.home-photo-wide{ grid-column:span 2; }
@media (max-width:700px){ .split-head{ align-items:flex-start; flex-direction:column; } .home-gallery{ grid-template-columns:1fr 1fr; grid-auto-rows:210px; } .home-photo-tall{ grid-row:span 2; } .home-photo-wide{ grid-column:span 2; } }
@media (max-width:480px){ .home-gallery{ grid-template-columns:1fr; grid-auto-rows:280px; } .home-photo-tall,.home-photo-wide{ grid-row:span 1; grid-column:span 1; } }

/* --------------------------------- footer --------------------------------- */
footer{ position:relative; border-top:1px solid var(--line); padding:64px 0 32px; }
footer::before{ content:""; position:absolute; top:-1px; left:0; right:0; height:1px; background:linear-gradient(90deg, transparent, var(--gold), transparent); opacity:0.6; }
.footer-grid{ display:grid; grid-template-columns:1.3fr 1fr 1fr 1fr; gap:40px; }
.footer-brand img{ height:32px; margin-bottom:14px; }
.footer-brand p{ color:var(--text-muted); font-size:0.88rem; max-width:260px; }
.footer-col h4{ font-family:'Manrope',sans-serif; font-size:0.78rem; letter-spacing:0.14em; text-transform:uppercase; color:var(--gold); font-weight:700; }
.footer-col ul{ list-style:none; margin:16px 0 0; padding:0; display:flex; flex-direction:column; gap:10px; }
.footer-col a{ color:var(--text-muted); font-size:0.9rem; transition:color 0.2s ease; }
.footer-col a:hover{ color:var(--text); }
.footer-bottom{
  margin-top:56px; padding-top:24px; border-top:1px solid var(--line);
  display:flex; justify-content:space-between; flex-wrap:wrap; gap:12px;
  color:var(--text-muted); font-size:0.8rem;
}
.footer-credit{
  margin-top:16px; text-align:center;
  font-size:0.72rem; color:var(--text-muted); opacity:0.65;
}
.footer-credit a{ color:var(--text-muted); text-decoration:underline; text-underline-offset:2px; transition:color 0.2s ease; }
.footer-credit a:hover{ color:var(--gold); }
@media (max-width:820px){ .footer-grid{ grid-template-columns:1fr 1fr; row-gap:36px; } }
@media (max-width:520px){
  .footer-grid{ grid-template-columns:repeat(3,1fr); column-gap:16px; row-gap:28px; }
  .footer-brand{ grid-column:1 / -1; }
  .footer-brand p{ max-width:none; }
  .footer-col h4{ font-size:0.68rem; letter-spacing:0.08em; }
  .footer-col ul{ margin-top:10px; gap:8px; }
  .footer-col a{ font-size:0.8rem; line-height:1.4; }
}

/* ------------------------------ page header (inner pages) ------------------------------ */
.page-header{
  position:relative; padding:150px 0 80px; overflow:hidden;
  border-bottom:1px solid var(--line);
}
.page-header .halo{ width:420px; height:420px; right:-120px; top:-80px; }
.page-header h1{ font-size:clamp(2.2rem,4.6vw,3.4rem); margin-top:16px; text-transform:uppercase; }
.page-header .lede{ margin-top:18px; max-width:560px; color:var(--text-muted); font-size:1.02rem; }

.page-header-bg{
  position:absolute; inset:0; z-index:0; background-size:cover; background-position:center 35%; background-repeat:no-repeat;
  filter:saturate(0.85);
}
.page-header-bg::after{
  content:""; position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(11,10,9,0.90), rgba(11,10,9,0.78) 45%, rgba(11,10,9,0.94));
}
.page-header-photo .wrap{ position:relative; z-index:1; }
.page-header-photo .halo{ z-index:1; }


/* ------------------------------ works gallery ------------------------------ */
.works-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.work-card{ position:relative; overflow:hidden; border:1px solid var(--line); border-radius:var(--radius-l); background:var(--panel-grad); min-height:280px; transition:border-color .3s ease, box-shadow .3s var(--ease), transform .3s var(--ease); box-shadow:var(--shadow-s); }
.work-card:hover{ border-color:var(--line-strong); box-shadow:var(--shadow-l); transform:translateY(-5px); }
.work-card a{ display:block; height:100%; }
.work-card img{ width:100%; height:340px; object-fit:cover; display:block; transition:transform .5s var(--ease), filter .5s ease; }
.work-card:hover img{ transform:scale(1.045); filter:brightness(1.05); }
.work-caption{ position:absolute; left:0; right:0; bottom:0; padding:48px 22px 20px; color:#fff; background:linear-gradient(transparent,rgba(0,0,0,.72)); }
.work-caption strong{ display:block; font-size:1rem; }
.work-caption span{ display:block; margin-top:5px; color:rgba(255,255,255,.72); font-size:.8rem; }
@media (max-width:900px){ .works-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:560px){ .works-grid{ grid-template-columns:1fr; } .work-card img{ height:360px; } }

/* ------------------------------ single featured-work photo + link to full portfolio ------------------------------ */
.portfolio-featured{
  position:relative; border-radius:var(--radius-l); overflow:hidden;
  border:1px solid var(--line); box-shadow:var(--shadow-m); background:var(--bg-panel);
}
.portfolio-featured-link{ display:block; position:relative; }
.portfolio-featured img{
  width:100%; height:auto; max-height:560px; object-fit:cover; display:block;
  transition:transform .6s var(--ease), filter .6s ease;
}
.portfolio-featured-link:hover img{ transform:scale(1.035); filter:brightness(1.05); }
.portfolio-featured-overlay{
  position:absolute; inset:0; display:flex; flex-direction:column; align-items:flex-start; justify-content:flex-end;
  gap:14px; padding:32px; background:linear-gradient(transparent 35%, rgba(8,7,6,0.86));
}
.portfolio-featured-title{ color:#fff; font-family:'Syne',sans-serif; font-size:1.15rem; text-shadow:0 2px 14px rgba(0,0,0,.4); }
.portfolio-featured-cta{
  display:inline-flex; align-items:center; gap:10px; padding:14px 24px; border-radius:999px;
  background:linear-gradient(155deg, var(--gold-light), var(--gold) 55%, var(--gold-deep));
  color:#191410; font-weight:700; font-size:0.92rem; box-shadow:var(--shadow-gold);
  transition:transform .2s ease, box-shadow .2s ease;
}
.portfolio-featured-cta svg{ width:17px; height:17px; }
.portfolio-featured-link:hover .portfolio-featured-cta{ transform:translateY(-2px); box-shadow:0 18px 40px -16px rgba(201,151,74,0.55); }
@media (max-width:640px){
  .portfolio-featured img{ max-height:340px; }
  .portfolio-featured-overlay{ padding:20px; }
  .portfolio-featured-title{ font-size:1rem; }
  .portfolio-featured-cta{ padding:12px 20px; font-size:0.86rem; width:100%; justify-content:center; }
}

/* real photos inside catalog cards */
.mirror-stage.photo-stage{ height:250px; margin:-34px -26px 0; overflow:hidden; border-radius:var(--radius-l) var(--radius-l) 0 0; }
.photo-stage img{ width:100%; height:100%; object-fit:cover; display:block; transition:transform .4s ease; }
.mirror-card:hover .photo-stage img{ transform:scale(1.035); }

/* --------------------------------- catalog --------------------------------- */
.catalog-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:28px; }
.mirror-card{
  background:var(--panel-grad); border:1px solid var(--line); border-radius:var(--radius-l);
  padding:34px 26px; transition:border-color 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  box-shadow:var(--shadow-s);
}
.mirror-card:hover{ border-color:var(--line-strong); transform:translateY(-6px); box-shadow:var(--shadow-l); }
.mirror-stage{ height:180px; display:flex; align-items:center; justify-content:center; position:relative; overflow:hidden; border-radius:10px; }
.mirror-stage img{ max-width:100%; max-height:100%; width:100%; height:100%; object-fit:cover; display:block; }
.mirror-shape{
  border:2px solid var(--gold);
  box-shadow:0 0 30px 4px rgba(201,151,74,0.28), inset 0 0 22px rgba(201,151,74,0.16);
  background:linear-gradient(155deg,rgba(255,255,255,0.03),rgba(255,255,255,0));
}
.shape-round{ width:120px; height:120px; border-radius:50%; }
.shape-oval{ width:150px; height:104px; border-radius:50%; }
.shape-rect{ width:150px; height:112px; border-radius:4px; clip-path:polygon(14px 0,100% 0,100% 100%,0 100%,0 14px); }
.shape-arch{ width:118px; height:150px; border-radius:60px 60px 4px 4px; }
.shape-custom{ width:130px; height:130px; border-radius:38% 62% 55% 45%/45% 38% 62% 55%; }
.shape-panel{ width:150px; height:104px; border-radius:2px; display:grid; grid-template-columns:1fr 1fr; }
.shape-panel::after{ content:""; border-left:1px solid rgba(201,151,74,0.5); grid-column:1; margin-left:50%; }
.mirror-card h3{ font-size:1.1rem; margin-top:22px; letter-spacing:-0.005em; }
.mirror-card p{ margin-top:10px; color:var(--text-muted); font-size:0.9rem; line-height:1.6; }
.card-price{
  display:inline-block; margin-top:14px; font-family:'Syne',sans-serif; font-weight:800;
  color:var(--gold-light); font-size:1.02rem; padding:6px 14px; border-radius:999px;
  background:linear-gradient(155deg, rgba(201,151,74,0.16), rgba(201,151,74,0.05));
  border:1px solid var(--line-strong);
}
.card-price[hidden]{ display:none; }
.mirror-card.is-hidden-by-admin{ display:none; }
.chip-row{ display:flex; flex-wrap:wrap; gap:8px; margin-top:16px; }
.chip{
  font-size:0.74rem; letter-spacing:0.02em; color:var(--gold-light);
  border:1px solid var(--line-strong); background:rgba(201,151,74,0.06); border-radius:999px; padding:5px 12px;
  transition:background .2s ease, border-color .2s ease;
}
.mirror-card:hover .chip{ border-color:var(--line-strong); background:rgba(201,151,74,0.1); }
@media (max-width:920px){ .catalog-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:560px){ .catalog-grid{ grid-template-columns:1fr; } }

.spec-table{ width:100%; border-collapse:collapse; }
.spec-table th,.spec-table td{ text-align:left; padding:16px 0; border-bottom:1px solid var(--line); font-size:0.94rem; }
.spec-table th{ color:var(--text-muted); font-weight:600; width:38%; }

/* ---------------------------------- about ---------------------------------- */
.about-lead{ max-width:720px; font-size:1.18rem; color:var(--text); font-family:'Syne',sans-serif; font-weight:600; line-height:1.45; }
.about-lead .gold{ color:var(--gold); }
.value-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:1px; background:var(--line); border:1px solid var(--line); border-radius:var(--radius-m); overflow:hidden; margin-top:20px; box-shadow:var(--shadow-s); }
.value-item{ background:var(--panel-grad); padding:28px; display:flex; gap:16px; transition:background .3s ease; }
.value-item:hover{ background:linear-gradient(165deg, var(--bg-panel-2), rgba(201,151,74,0.06) 140%); }
.value-item .num{ font-family:'Syne',sans-serif; color:var(--gold-deep); font-weight:800; }
.value-item strong{ display:block; }
.value-item span{ display:block; margin-top:6px; color:var(--text-muted); font-size:0.9rem; }
@media (max-width:700px){ .value-grid{ grid-template-columns:1fr; } }

/* -------------------------------- contacts -------------------------------- */
.contact-layout{ display:grid; grid-template-columns:0.85fr 1.15fr; gap:56px; align-items:start; }
.contact-card{ background:var(--panel-grad); border:1px solid var(--line); border-radius:var(--radius-l); padding:36px; box-shadow:var(--shadow-m); }
.contact-row{ display:flex; align-items:flex-start; gap:16px; padding:18px 0; border-bottom:1px solid var(--line); }
.contact-row:last-child{ border-bottom:none; }
.contact-row svg{ width:20px; height:20px; color:var(--gold); flex-shrink:0; margin-top:2px; }
.contact-row strong{ display:block; font-size:0.78rem; letter-spacing:0.1em; text-transform:uppercase; color:var(--text-muted); }
.contact-row a, .contact-row span.val{ display:block; margin-top:4px; font-size:1rem; }
.contact-row a:hover{ color:var(--gold-light); }
.map-frame{ margin-top:24px; border-radius:var(--radius-m); overflow:hidden; border:1px solid var(--line); filter:grayscale(0.4) invert(0.92) contrast(0.9); }
.map-frame iframe{ width:100%; height:260px; border:0; display:block; }

.order-form{ background:var(--panel-grad); border:1px solid var(--line); border-radius:var(--radius-l); padding:40px; box-shadow:var(--shadow-m); }
.form-grid{ display:grid; grid-template-columns:1fr 1fr; gap:20px; }
.field{ display:flex; flex-direction:column; gap:8px; }
.field.full{ grid-column:1/-1; }
.field label{ font-size:0.82rem; color:var(--text-muted); }
.field input[type=text],
.field input[type=tel],
.field input[type=number],
.field input[type=password],
.field select,
.field textarea{
  background:var(--bg); border:1px solid var(--line-strong); border-radius:var(--radius-s);
  padding:13px 14px; color:var(--text); font-family:'Manrope',sans-serif; font-size:0.95rem;
  width:100%;
  transition:border-color .2s ease, box-shadow .2s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus{
  outline:none; border-color:var(--gold); box-shadow:0 0 0 3px rgba(201,151,74,0.16);
}
.field textarea{ resize:vertical; min-height:90px; }
.field-check{ flex-direction:row; align-items:center; gap:10px; }
.calc-checks-row{ display:flex; flex-direction:row; flex-wrap:wrap; gap:32px; }
@media (max-width:480px){ .calc-checks-row{ gap:16px; } }
.field-check input{ width:18px; height:18px; accent-color:var(--gold); }
.form-foot{ margin-top:28px; display:flex; align-items:center; gap:18px; flex-wrap:wrap; }

.calc-result{
  margin-top:24px; padding:20px 24px; border-radius:var(--radius-m);
  background:linear-gradient(155deg, rgba(201,151,74,0.14), rgba(201,151,74,0.03));
  border:1px solid var(--line-strong);
  display:flex; align-items:center; justify-content:space-between; gap:16px; flex-wrap:wrap;
}
.calc-result-label{ color:var(--text-muted); font-size:0.88rem; }
.calc-result-sum{ font-family:'Syne',sans-serif; font-weight:800; font-size:1.6rem; color:var(--gold); }
.calc-disclaimer{ margin-top:14px; color:var(--text-muted); font-size:0.72rem; line-height:1.6; max-width:640px; }
.form-note{ color:var(--text-muted); font-size:0.84rem; }
@media (max-width:640px){ .contact-layout{ grid-template-columns:1fr; } .form-grid{ grid-template-columns:1fr; } .order-form{ padding:28px; } }
.catalog-photo-link{ display:block; margin:-34px -26px 0; overflow:hidden; border-radius:var(--radius-l) var(--radius-l) 0 0; }
.catalog-photo-link .photo-stage{ margin:0; }
.catalog-photo-link:focus-visible{ outline:2px solid var(--gold-light); outline-offset:-2px; }

/* Hero project carousel */
.hero-layout{grid-template-columns:1fr; max-width:1120px;}
.hero-inner{max-width:900px; width:100%;}
.hero-carousel{position:relative; margin-top:42px; width:100%;}
.hero-slide{display:none; position:relative; overflow:hidden; border:1px solid var(--line-strong); border-radius:24px; background:var(--bg-panel); box-shadow:0 30px 80px rgba(0,0,0,.34);}
.hero-slide.active{display:block; animation:heroFade .55s ease;}
.hero-slide a{display:block;}
.hero-slide img{display:block; width:100%; aspect-ratio:16/9; object-fit:cover;}
.hero-slide::after{content:""; position:absolute; inset:auto 0 0; height:42%; background:linear-gradient(transparent,rgba(8,7,6,.78)); pointer-events:none;}
.hero-slide-caption{position:absolute; z-index:2; left:26px; right:26px; bottom:22px; color:#fff; text-shadow:0 2px 18px rgba(0,0,0,.4);}
.hero-slide-caption span{display:block; color:var(--gold-light); font-size:.72rem; text-transform:uppercase; letter-spacing:.16em;}
.hero-slide-caption strong{display:block; margin-top:5px; font-family:'Syne',sans-serif; font-size:1.15rem;}
.hero-carousel-prev,.hero-carousel-next{position:absolute; z-index:3; top:50%; transform:translateY(-50%); width:46px; height:46px; border:1px solid rgba(255,255,255,.25); border-radius:50%; background:rgba(10,9,8,.55); color:#fff; font-size:30px; line-height:1; cursor:pointer; backdrop-filter:blur(10px);}
.hero-carousel-prev{left:16px}.hero-carousel-next{right:16px}
.hero-carousel-prev:hover,.hero-carousel-next:hover{background:rgba(10,9,8,.8);}
.hero-carousel-dots{position:absolute; z-index:4; left:50%; bottom:18px; transform:translateX(-50%); display:flex; gap:7px;}
.hero-carousel-dots button{width:7px;height:7px;padding:0;border:0;border-radius:50%;background:rgba(255,255,255,.45);cursor:pointer;transition:.25s;}
.hero-carousel-dots button.active{width:22px;border-radius:10px;background:var(--gold-light);}
@keyframes heroFade{from{opacity:.45;transform:translateY(5px)}to{opacity:1;transform:none}}
@media (max-width:520px){
  .hero-carousel{margin-top:30px;}
  .hero-slide{border-radius:18px;}
  .hero-slide img{aspect-ratio:4/3;}
  .hero-slide-caption{left:16px;right:16px;bottom:20px;}
  .hero-slide-caption strong{font-size:1rem;}
  .hero-carousel-prev,.hero-carousel-next{width:38px;height:38px;font-size:25px;}
  .hero-carousel-prev{left:10px}.hero-carousel-next{right:10px}
}

/* ---------- compact spacing / mobile refinement ---------- */
@media (max-width: 900px){
  section{padding:64px 0;}
  .why{gap:28px;}
  .why-visual{display:none;}
  .slogan{padding:72px 0;}
  .section-head{margin-bottom:34px;}
  .cta-strip{padding:40px 0;}
}

@media (max-width: 520px){
  section{padding:44px 0;}
  .hero-layout{padding-top:34px; padding-bottom:34px;}
  .hero-carousel{margin-top:24px;}
  .feature-item{padding:26px 22px;}
  .why{gap:18px;}
  .why-list li{padding:17px 0;}
  .slogan{padding:58px 0;}
  .slogan .eyebrow{margin-bottom:14px;}
  .section-head{margin-bottom:26px;}
  .process{row-gap:28px;}
  .cta-strip{padding:28px 0;}
}

/* ------------------------------ language switch ------------------------------ */
.lang-switch{ display:flex; align-items:center; gap:2px; border:1px solid var(--line-strong); border-radius:999px; padding:3px; }
.lang-switch a{ padding:6px 13px; font-size:0.72rem; letter-spacing:0.06em; border-radius:999px; color:var(--text-muted); transition:background .2s ease,color .2s ease; }
.lang-switch a.active{ background:var(--gold); color:#161311; font-weight:700; }
.lang-switch a:hover:not(.active){ color:var(--text); }
@media (max-width:900px){
  .nav-links li.lang-item{ padding:18px 28px 4px; border-bottom:none; }
  .lang-switch{ width:max-content; }
}

/* ---------------------------------- marquee ---------------------------------- */
.marquee{ border-top:1px solid var(--line); border-bottom:1px solid var(--line); overflow:hidden; padding:20px 0; background:var(--bg-panel); }
.marquee-track{ display:flex; width:max-content; animation:marquee 30s linear infinite; }
.marquee-track .m-set{ display:flex; align-items:center; gap:14px; padding-right:14px; flex-shrink:0; }
.marquee-track span.m-item{ font-family:'Syne',sans-serif; font-weight:700; font-size:0.98rem; letter-spacing:0.06em; text-transform:uppercase; color:var(--text-muted); white-space:nowrap; }
.marquee-track span.m-item em{ font-style:normal; color:var(--gold); }
.marquee-track .m-dot{ color:var(--gold-deep); font-size:1.1rem; }
@keyframes marquee{ from{ transform:translateX(0); } to{ transform:translateX(-50%); } }
@media (prefers-reduced-motion: reduce){ .marquee-track{ animation:none; } }

/* ----------------------------------- stats ----------------------------------- */
.stats{ display:grid; grid-template-columns:repeat(4,1fr); border:1px solid var(--line); border-radius:var(--radius-m); overflow:hidden; background:var(--panel-grad); box-shadow:var(--shadow-s); }
.stat{ padding:32px 26px; border-left:1px solid var(--line); transition:background .3s ease; }
.stat:hover{ background:rgba(201,151,74,0.05); }
.stat:first-child{ border-left:none; }
.stat .stat-num{ font-family:'Syne',sans-serif; font-weight:800; font-size:clamp(1.7rem,3.2vw,2.3rem); color:var(--gold); display:block; }
.stat .stat-label{ display:block; margin-top:6px; font-size:0.82rem; color:var(--text-muted); }
@media (max-width:820px){ .stats{ grid-template-columns:1fr 1fr; } .stat:nth-child(odd){ border-left:none; } .stat:nth-child(n+3){ border-top:1px solid var(--line); } }
@media (max-width:520px){ .stats{ grid-template-columns:1fr; } .stat{ border-left:none !important; border-top:1px solid var(--line); } .stat:first-child{ border-top:none; } }

/* ==========================================================================
   Signature motion system — mirror-brand 3D flourishes
   Everything here respects prefers-reduced-motion (guarded in JS + CSS)
   ========================================================================== */

/* ------------------------------ 3D flip-in reveal ------------------------------ */
.reveal{
  opacity:0;
  transform:perspective(900px) translateY(20px) rotateX(-6deg);
  transition:opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1);
  transform-style:preserve-3d;
}
.reveal.in-view{ opacity:1; transform:perspective(900px) translateY(0) rotateX(0deg); }

/* ------------------------------ 3D tilt-on-hover cards ------------------------------ */
.tilt-card{ transition:transform .18s ease-out, box-shadow .18s ease-out; transform-style:preserve-3d; }
.tilt-card:hover{ box-shadow:0 22px 40px -18px rgba(0,0,0,0.55); }

/* ------------------------------ mirror-shine sweep ------------------------------ */
.shine-sweep{ position:relative; overflow:hidden; }
.shine-sweep::after{
  content:""; position:absolute; top:0; left:-75%; width:45%; height:100%;
  background:linear-gradient(115deg, transparent, rgba(255,255,255,0.35), transparent);
  transform:skewX(-18deg); transition:left .65s cubic-bezier(.2,.7,.2,1); pointer-events:none;
}
.shine-sweep:hover::after{ left:130%; }
@media (prefers-reduced-motion: reduce){ .shine-sweep::after{ display:none; } }

/* ------------------------------ shimmer gold text ------------------------------ */
.shimmer-text{
  background:linear-gradient(90deg, var(--gold-deep), var(--gold-light), var(--gold), var(--gold-deep)) !important;
  background-size:300% 100%;
  -webkit-background-clip:text !important; background-clip:text !important;
  -webkit-text-fill-color:transparent !important; color:transparent !important;
  animation:shimmerMove 7s ease-in-out infinite;
}
@keyframes shimmerMove{ 0%,100%{ background-position:0% 50%; } 50%{ background-position:100% 50%; } }

/* ------------------------------ 3D rotating halo showcase ------------------------------ */
@keyframes haloSpin3D{
  0%{ transform:perspective(1000px) rotateY(0deg) rotateX(2deg); filter:brightness(1); }
  50%{ transform:perspective(1000px) rotateY(180deg) rotateX(2deg); filter:brightness(1.18); }
  100%{ transform:perspective(1000px) rotateY(360deg) rotateX(2deg); filter:brightness(1); }
}
@keyframes haloFloat{
  0%,100%{ transform:translateY(0); } 50%{ transform:translateY(-14px); }
}
@keyframes haloSpin3DFloat{
  0%{ transform:perspective(1000px) translateY(0) rotateY(0deg) rotateX(2deg); filter:brightness(1); }
  25%{ transform:perspective(1000px) translateY(-14px) rotateY(90deg) rotateX(2deg); filter:brightness(1.1); }
  50%{ transform:perspective(1000px) translateY(0) rotateY(180deg) rotateX(2deg); filter:brightness(1.18); }
  75%{ transform:perspective(1000px) translateY(-14px) rotateY(270deg) rotateX(2deg); filter:brightness(1.1); }
  100%{ transform:perspective(1000px) translateY(0) rotateY(360deg) rotateX(2deg); filter:brightness(1); }
}
.halo-3d{ animation:haloSpin3D 16s linear infinite; }
.halo-float{ animation:haloFloat 7s ease-in-out infinite; }
.halo-3d.halo-float{ animation:haloSpin3DFloat 16s ease-in-out infinite; }

/* ------------------------------ scroll progress bar ------------------------------ */
.scroll-progress{
  position:fixed; top:0; left:0; height:3px; width:0%; z-index:1000;
  background:linear-gradient(90deg, var(--gold-deep), var(--gold-light), var(--gold));
  box-shadow:0 0 12px rgba(201,151,74,0.6);
}

/* ------------------------------ micro-interactions ------------------------------ */
@keyframes pulseOnce{
  0%{ transform:scale(1); } 35%{ transform:scale(1.28); } 60%{ transform:scale(0.94); } 100%{ transform:scale(1); }
}
.pulse-once{ animation:pulseOnce .5s cubic-bezier(.3,1.5,.5,1); }

.check-draw{ width:52px; height:52px; margin:0 auto 4px; display:block; }
.check-draw circle{ fill:none; stroke:var(--gold); stroke-width:2; stroke-dasharray:150; stroke-dashoffset:150; animation:checkCircle .5s ease forwards; }
.check-draw path{ fill:none; stroke:var(--gold); stroke-width:2.4; stroke-linecap:round; stroke-linejoin:round; stroke-dasharray:40; stroke-dashoffset:40; animation:checkMark .35s .45s ease forwards; }
@keyframes checkCircle{ to{ stroke-dashoffset:0; } }
@keyframes checkMark{ to{ stroke-dashoffset:0; } }

@media (prefers-reduced-motion: reduce){
  .halo-3d, .halo-float, .halo-3d.halo-float{ animation:none !important; }
  .shimmer-text{ animation:none; background-position:0% 50%; }
  .reveal{ transition:opacity .3s ease; transform:none !important; }
}

/* ------------------------------ hero halo parallax ------------------------------ */
.hero .halo{ transition:transform .25s ease-out; will-change:transform; }

/* staggered cascade for grid/list reveals */
.feature-item.reveal:nth-child(1),.value-item.reveal:nth-child(1),.process-step.reveal:nth-child(1){transition-delay:.02s}
.feature-item.reveal:nth-child(2),.value-item.reveal:nth-child(2),.process-step.reveal:nth-child(2){transition-delay:.08s}
.feature-item.reveal:nth-child(3),.value-item.reveal:nth-child(3),.process-step.reveal:nth-child(3){transition-delay:.14s}
.feature-item.reveal:nth-child(4),.value-item.reveal:nth-child(4),.process-step.reveal:nth-child(4){transition-delay:.20s}
.value-item.reveal:nth-child(5){transition-delay:.26s}
.value-item.reveal:nth-child(6){transition-delay:.32s}
.why-list li.reveal:nth-child(1){transition-delay:.02s}
.why-list li.reveal:nth-child(2){transition-delay:.07s}
.why-list li.reveal:nth-child(3){transition-delay:.12s}
.why-list li.reveal:nth-child(4){transition-delay:.17s}
.why-list li.reveal:nth-child(5){transition-delay:.22s}
.mirror-card.reveal:nth-child(3n+1){transition-delay:.02s}
.mirror-card.reveal:nth-child(3n+2){transition-delay:.08s}
.mirror-card.reveal:nth-child(3n+3){transition-delay:.14s}
.mobile-cta{ display:none; }
.mobile-call-btn{ display:none; }
.mobile-tg-btn{ display:none; }
@media (max-width:820px){
  body{ padding-bottom:78px; }
  .mobile-cta{
    display:flex; position:fixed; left:140px; right:16px; bottom:calc(14px + env(safe-area-inset-bottom));
    z-index:400; justify-content:center; align-items:center; gap:6px;
    background:var(--gold); color:#161311; font-weight:700; font-size:0.82rem;
    height:52px; padding:0 14px; border-radius:999px; box-shadow:0 10px 30px rgba(0,0,0,0.5);
    white-space:nowrap; overflow:hidden; text-overflow:ellipsis;
    opacity:0; transform:translateY(16px); pointer-events:none;
    transition:opacity 0.25s ease, transform 0.25s ease;
  }
  .mobile-cta.is-visible{ opacity:1; transform:translateY(0); pointer-events:auto; }
  .mobile-cta svg{ width:16px; height:16px; flex-shrink:0; }

  .mobile-call-btn,
  .mobile-tg-btn{
    display:flex; align-items:center; justify-content:center; flex-shrink:0;
    position:fixed; bottom:calc(14px + env(safe-area-inset-bottom));
    z-index:401; width:52px; height:52px; border-radius:50%;
    background:var(--gold); color:#161311; box-shadow:0 10px 30px rgba(0,0,0,0.5);
    transition:transform 0.2s ease;
  }
  .mobile-call-btn{ left:16px; }
  .mobile-tg-btn{ left:78px; }
  .mobile-call-btn:active, .mobile-tg-btn:active{ transform:scale(0.94); }
  .mobile-call-btn svg, .mobile-tg-btn svg{ width:22px; height:22px; }
}

/* ---------------------------------- cart / proposal ---------------------------------- */
.nav-links li.cart-item-wrap{ display:flex; align-items:center; }
.cart-btn{ position:relative; display:flex; align-items:center; gap:6px; border:1px solid var(--line-strong); padding:9px 13px; border-radius:999px; font-size:0.82rem; color:var(--text); background:none; transition:border-color .2s ease, color .2s ease, background .2s ease; }
.cart-btn:hover{ border-color:var(--gold); color:var(--gold-light); background:rgba(201,151,74,0.08); }
.cart-btn svg{ width:16px; height:16px; }
.cart-count{ position:absolute; top:-7px; right:-7px; min-width:18px; height:18px; padding:0 4px; border-radius:999px; background:var(--gold); color:#161311; font-size:0.68rem; font-weight:800; display:flex; align-items:center; justify-content:center; }
.cart-count[hidden]{ display:none; }
@media (max-width:900px){
  .nav-links li.cart-item-wrap{ padding:14px 28px; border-bottom:1px solid var(--line); }
  .nav-links li.cart-item-wrap .cart-btn{ width:100%; justify-content:center; border:1px solid var(--line-strong); padding:12px; }
}

.cart-drawer{ position:fixed; inset:0; z-index:900; display:none; }
.cart-drawer.open{ display:block; }
.cart-drawer-backdrop{ position:absolute; inset:0; background:rgba(0,0,0,0.6); backdrop-filter:blur(2px); }
.cart-drawer-panel{ position:absolute; top:0; right:0; bottom:0; width:min(420px,100%); background:var(--panel-grad); border-left:1px solid var(--line); display:flex; flex-direction:column; padding:28px 24px; animation:cartIn .3s var(--ease); box-shadow:-30px 0 60px -30px rgba(0,0,0,0.7); }
@keyframes cartIn{ from{ transform:translateX(24px); opacity:0; } to{ transform:translateX(0); opacity:1; } }
.cart-drawer-head{ display:flex; align-items:center; justify-content:space-between; margin-bottom:20px; }
.cart-drawer-head h3{ font-size:1.15rem; }
.cart-close{ background:none; border:none; color:var(--text-muted); padding:6px; }
.cart-close svg{ width:22px; height:22px; }
.cart-items{ flex:1; overflow-y:auto; display:flex; flex-direction:column; gap:14px; margin:0; padding:0; list-style:none; }
.cart-item{ display:flex; gap:12px; padding-bottom:14px; border-bottom:1px solid var(--line); }
.cart-item img{ width:60px; height:60px; object-fit:cover; border-radius:8px; flex-shrink:0; }
.cart-item-body{ flex:1; min-width:0; }
.cart-item-body strong{ display:block; font-size:0.9rem; }
.cart-item-body span{ display:block; margin-top:4px; color:var(--text-muted); font-size:0.76rem; }
.cart-item-remove{ background:none; border:none; color:var(--text-muted); font-size:0.76rem; margin-top:6px; padding:0; text-decoration:underline; cursor:pointer; }
.cart-item-remove:hover{ color:var(--gold-light); }
.cart-empty{ color:var(--text-muted); font-size:0.9rem; padding:40px 0; text-align:center; list-style:none; }
.cart-drawer-foot{ margin-top:20px; display:flex; flex-direction:column; gap:10px; }
.cart-toast{ position:fixed; left:50%; bottom:24px; transform:translate(-50%,12px); z-index:950; background:var(--gold); color:#161311; padding:12px 20px; border-radius:999px; font-size:0.86rem; font-weight:700; opacity:0; pointer-events:none; transition:opacity .25s ease, transform .25s ease; }
.cart-toast.show{ opacity:1; transform:translate(-50%,0); }

.btn-add-cart{ display:inline-flex; align-items:center; gap:8px; margin-top:16px; padding:11px 16px; border-radius:999px; border:1px solid var(--line-strong); background:rgba(201,151,74,0.03); color:var(--text); font-size:0.82rem; font-weight:600; width:100%; justify-content:center; transition:background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease; }
.btn-add-cart svg{ width:15px; height:15px; flex-shrink:0; }
.btn-add-cart:hover{ background:linear-gradient(155deg, var(--gold-light), var(--gold)); border-color:var(--gold); color:#191410; box-shadow:0 10px 22px -12px rgba(201,151,74,0.55); }
.btn-add-cart:active{ transform:scale(0.98); }
.btn-add-cart.added{ background:var(--gold-deep); border-color:var(--gold-deep); color:#fff; }

/* ------------------------------ catalog filter/search toolbar ------------------------------ */
.catalog-toolbar{ display:flex; flex-wrap:wrap; gap:14px; align-items:center; justify-content:space-between; margin-bottom:36px; }
.catalog-search{ position:relative; flex:1; min-width:220px; max-width:320px; }
.catalog-search input{ width:100%; background:var(--bg-panel); border:1px solid var(--line-strong); border-radius:999px; padding:11px 18px 11px 40px; color:var(--text); font-family:'Manrope',sans-serif; font-size:0.88rem; transition:border-color .2s ease, box-shadow .2s ease; }
.catalog-search input:focus{ outline:none; border-color:var(--gold); box-shadow:0 0 0 3px rgba(201,151,74,0.16); }
.catalog-search svg{ position:absolute; left:14px; top:50%; transform:translateY(-50%); width:16px; height:16px; color:var(--text-muted); pointer-events:none; }
.catalog-filters{ display:flex; flex-wrap:wrap; gap:8px; }
.filter-pill{ border:1px solid var(--line-strong); background:rgba(201,151,74,0.03); color:var(--text-muted); padding:8px 16px; border-radius:999px; font-size:0.8rem; font-family:'Manrope',sans-serif; cursor:pointer; transition:all 0.2s ease; }
.filter-pill:hover{ border-color:var(--gold); color:var(--text); background:rgba(201,151,74,0.08); }
.filter-pill.active{ background:linear-gradient(155deg, var(--gold-light), var(--gold)); border-color:var(--gold); color:#191410; font-weight:700; box-shadow:0 8px 18px -10px rgba(201,151,74,0.5); }
.catalog-empty-state{ text-align:center; padding:70px 0; color:var(--text-muted); grid-column:1/-1; }
.mirror-card.admin-mode{ border-color:var(--line-strong); }
.admin-edit-badge{ display:inline-flex; align-items:center; gap:6px; font-size:0.72rem; letter-spacing:0.04em; color:var(--gold); border:1px solid var(--gold-deep); border-radius:999px; padding:4px 10px; margin-bottom:12px; }
@media (max-width:640px){ .catalog-toolbar{ flex-direction:column; align-items:stretch; } .catalog-search{ max-width:none; } }

/* ------------------------------ commercial proposal doc ------------------------------ */
.proposal-doc{ background:var(--panel-grad); border:1px solid var(--line); border-radius:var(--radius-l); padding:44px; box-shadow:var(--shadow-m); }
.proposal-head{ display:flex; justify-content:space-between; align-items:flex-start; gap:24px; flex-wrap:wrap; border-bottom:1px solid var(--line); padding-bottom:24px; margin-bottom:28px; }
.proposal-head img{ height:38px; }
.proposal-meta{ text-align:right; color:var(--text-muted); font-size:0.86rem; }
.proposal-meta strong{ display:block; color:var(--text); font-size:1.05rem; font-family:'Syne',sans-serif; }
.proposal-fields{ display:grid; grid-template-columns:1fr 1fr; gap:20px; margin-bottom:32px; }
.proposal-table{ width:100%; border-collapse:collapse; margin-top:8px; }
.proposal-table th,.proposal-table td{ text-align:left; padding:14px 10px; border-bottom:1px solid var(--line); font-size:0.9rem; vertical-align:top; }
.proposal-table th{ color:var(--text-muted); font-weight:600; font-size:0.76rem; text-transform:uppercase; letter-spacing:0.04em; }
.proposal-table .prop-specs{ display:block; margin-top:4px; color:var(--text-muted); font-size:0.8rem; }
.proposal-table input[type=number]{ width:60px; background:var(--bg); border:1px solid var(--line-strong); border-radius:6px; padding:6px 8px; color:var(--text); }
.prop-remove{ background:none; border:none; color:var(--text-muted); cursor:pointer; font-size:1rem; }
.prop-remove:hover{ color:var(--gold-light); }
.proposal-total{ display:flex; justify-content:flex-end; margin-top:16px; gap:14px; align-items:baseline; }
.proposal-total strong{ font-family:'Syne',sans-serif; font-size:1.1rem; color:var(--gold); }
.proposal-note{ margin-top:10px; color:var(--text-muted); font-size:0.82rem; text-align:right; }
.proposal-actions{ display:flex; gap:14px; margin-top:32px; flex-wrap:wrap; }
.proposal-empty{ text-align:center; padding:80px 0; color:var(--text-muted); }
@media (max-width:640px){ .proposal-doc{ padding:26px; } .proposal-fields{ grid-template-columns:1fr; } .proposal-meta{ text-align:left; } .proposal-note{ text-align:left; } }

@media print{
  .site-nav, .mobile-cta, .mobile-call-btn, footer, .cart-drawer, .proposal-actions, .marquee, .no-print{ display:none !important; }
  body{ background:#fff; color:#111; padding-bottom:0; }
  .proposal-doc{ border:none; background:#fff; color:#111; padding:0; }
  .proposal-table th, .proposal-table td{ border-color:#ccc; color:#111; }
  .proposal-table .prop-specs{ color:#555 !important; }
  .proposal-meta, .proposal-meta strong, .proposal-meta span{ color:#111 !important; }
  .proposal-total span, .proposal-total strong{ color:#111 !important; }
  .proposal-note{ color:#444 !important; }
  .proposal-fields .field label{ color:#444 !important; }
  .proposal-fields input, .proposal-fields select,
  .proposal-table input{ background:#fff !important; color:#111 !important; border:1px solid #ccc !important; -webkit-print-color-adjust:exact; print-color-adjust:exact; }
  .proposal-head img{ background:#0b0a09; padding:10px 16px; border-radius:6px; }
  .page-header{ display:none; }
  a{ color:#111; }
  main{ padding-top:0; }
}

/* ---------------------------------- photo dropzone (admin) ---------------------------------- */
.photo-drop{
  position:relative; border:1.5px dashed var(--line-strong); border-radius:var(--radius-m);
  background:var(--bg); padding:28px 20px; text-align:center; cursor:pointer;
  transition:border-color .2s ease, background .2s ease;
}
.photo-drop:hover, .photo-drop.drag-over{ border-color:var(--gold); background:rgba(201,151,74,0.05); }
.photo-drop-empty{ display:flex; flex-direction:column; align-items:center; gap:10px; color:var(--text-muted); font-size:0.86rem; }
.photo-drop-empty[hidden], .photo-drop-preview[hidden]{ display:none !important; }
.photo-drop-empty svg{ width:30px; height:30px; color:var(--gold); }
.photo-drop-empty strong{ color:var(--text); font-weight:600; }
.photo-drop-preview{ position:relative; display:inline-block; }
.photo-drop-preview img{ max-height:180px; max-width:100%; border-radius:10px; display:block; margin:0 auto; }
.photo-drop-remove{
  position:absolute; top:-10px; right:-10px; width:28px; height:28px; border-radius:50%;
  background:var(--bg-panel); border:1px solid var(--line-strong); color:var(--text);
  cursor:pointer; font-size:0.9rem; line-height:1; display:flex; align-items:center; justify-content:center;
}
.photo-drop-remove:hover{ border-color:var(--gold); color:var(--gold-light); }
.photo-drop-hint{ margin-top:8px; font-size:0.76rem; color:var(--text-muted); }

/* --------------------------- multi-photo manager (admin) --------------------------- */
.photo-multi-grid{ display:grid; grid-template-columns:repeat(auto-fill,minmax(84px,1fr)); gap:10px; margin-top:14px; }
.photo-multi-item{ position:relative; aspect-ratio:1/1; border-radius:8px; overflow:hidden; border:1px solid var(--line-strong); }
.photo-multi-item img{ width:100%; height:100%; object-fit:cover; display:block; }
.photo-multi-item .photo-multi-remove{
  position:absolute; top:4px; right:4px; width:22px; height:22px; border-radius:50%;
  background:rgba(11,10,9,0.8); border:1px solid var(--line-strong); color:var(--text);
  font-size:0.72rem; line-height:1; display:flex; align-items:center; justify-content:center; cursor:pointer;
}
.photo-multi-item .photo-multi-remove:hover{ border-color:var(--gold); color:var(--gold-light); }
.photo-multi-item .photo-multi-primary{
  position:absolute; left:4px; bottom:4px; background:rgba(201,151,74,0.92); color:#161311;
  font-size:0.62rem; font-weight:700; padding:2px 6px; border-radius:4px; letter-spacing:0.02em;
}
.photo-url-row{ display:flex; gap:8px; margin-top:10px; }
.photo-url-row input{ flex:1; }

/* --------------------------- product gallery (product page) --------------------------- */
.product-thumbs{ display:flex; gap:10px; margin-top:14px; flex-wrap:wrap; }
.product-thumb{
  width:64px; height:64px; border-radius:8px; overflow:hidden; border:2px solid transparent;
  cursor:pointer; opacity:0.6; transition:opacity .2s ease, border-color .2s ease; padding:0; background:none;
}
.product-thumb img{ width:100%; height:100%; object-fit:cover; display:block; }
.product-thumb:hover{ opacity:0.9; }
.product-thumb.active{ opacity:1; border-color:var(--gold); }

/* ---------------------------------- catalog lightbox ---------------------------------- */
.lightbox{ position:fixed; inset:0; z-index:1100; display:none; }
.lightbox.open{ display:block; }
.lightbox-backdrop{ position:absolute; inset:0; background:rgba(6,5,4,0.92); backdrop-filter:blur(6px); }
.lightbox-stage{
  position:relative; height:100%; display:flex; align-items:center; justify-content:center;
  padding:70px 90px; animation:lightboxIn .25s ease;
}
@keyframes lightboxIn{ from{ opacity:0; transform:scale(0.97); } to{ opacity:1; transform:scale(1); } }
.lightbox-stage img{ max-width:100%; max-height:100%; border-radius:12px; box-shadow:0 30px 80px rgba(0,0,0,0.6); }
.lightbox-caption{
  position:absolute; left:0; right:0; bottom:20px; text-align:center; color:var(--text-muted); font-size:0.88rem;
}
.lightbox-caption strong{ color:var(--text); font-weight:700; display:block; margin-bottom:2px; }
.lightbox-close, .lightbox-prev, .lightbox-next{
  position:absolute; background:rgba(22,19,17,0.8); border:1px solid var(--line-strong); color:var(--text);
  border-radius:50%; width:46px; height:46px; display:flex; align-items:center; justify-content:center;
  cursor:pointer; transition:border-color .2s ease, background .2s ease;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover{ border-color:var(--gold); background:rgba(201,151,74,0.15); }
.lightbox-close{ top:20px; right:20px; }
.lightbox-close svg{ width:20px; height:20px; }
.lightbox-prev{ left:20px; top:50%; transform:translateY(-50%); }
.lightbox-next{ right:20px; top:50%; transform:translateY(-50%); }
.lightbox-prev svg, .lightbox-next svg{ width:22px; height:22px; }
@media (max-width:700px){
  .lightbox-stage{ padding:60px 16px; }
  .lightbox-prev{ left:8px; } .lightbox-next{ right:8px; }
  .lightbox-prev, .lightbox-next{ width:38px; height:38px; }
}

/* ---------------------------------- back-to-top ---------------------------------- */
.back-to-top{
  position:fixed; right:24px; bottom:24px; z-index:400;
  width:46px; height:46px; border-radius:50%;
  background:var(--bg-panel); border:1px solid var(--line-strong); color:var(--gold);
  display:flex; align-items:center; justify-content:center; cursor:pointer;
  opacity:0; pointer-events:none; transform:translateY(10px);
  transition:opacity .3s ease, transform .3s ease, border-color .2s ease, background .2s ease;
}
.back-to-top.show{ opacity:1; pointer-events:auto; transform:translateY(0); }
.back-to-top:hover{ border-color:var(--gold); background:var(--gold); color:#161311; }
.back-to-top svg{ width:20px; height:20px; }
@media (max-width:820px){ .back-to-top{ right:16px; bottom:calc(78px + env(safe-area-inset-bottom)); width:42px; height:42px; } }

/* ---------------------------------- custom scrollbar ---------------------------------- */
html{ scrollbar-color:var(--gold-deep) var(--bg); scrollbar-width:thin; }
body::-webkit-scrollbar{ width:10px; }
body::-webkit-scrollbar-track{ background:var(--bg); }
body::-webkit-scrollbar-thumb{ background:var(--gold-deep); border-radius:6px; border:2px solid var(--bg); }
body::-webkit-scrollbar-thumb:hover{ background:var(--gold); }

/* ---------------------------------- sparkle accents ---------------------------------- */
.sparkle{ position:absolute; pointer-events:none; color:var(--gold-light); opacity:0; animation:sparkleTwinkle 3.4s ease-in-out infinite; }
.sparkle svg{ width:100%; height:100%; }
@keyframes sparkleTwinkle{
  0%,100%{ opacity:0; transform:scale(0.5) rotate(0deg); }
  50%{ opacity:0.85; transform:scale(1) rotate(45deg); }
}
@media (prefers-reduced-motion: reduce){ .sparkle{ display:none; } }

/* ---------------------------------- product detail page ---------------------------------- */
.breadcrumb{ display:flex; flex-wrap:wrap; align-items:center; gap:8px; font-size:0.84rem; color:var(--text-muted); margin-bottom:28px; }
.breadcrumb a{ color:var(--text-muted); transition:color .2s ease; }
.breadcrumb a:hover{ color:var(--gold-light); }
.breadcrumb span{ color:var(--gold-deep); }
.product-layout{ display:grid; grid-template-columns:1.1fr 1fr; gap:56px; align-items:start; }
.product-layout[hidden]{ display:none !important; }
.product-photo{ position:relative; border-radius:var(--radius-l); overflow:hidden; border:1px solid var(--line); background:var(--panel-grad); aspect-ratio:4/3; display:flex; align-items:center; justify-content:center; cursor:zoom-in; box-shadow:var(--shadow-m); }
.product-photo img{ width:100%; height:100%; object-fit:cover; display:block; }
.product-photo .mirror-shape{ width:62%; height:62%; }
.product-zoom-hint{ position:absolute; right:16px; bottom:16px; background:rgba(11,10,9,0.75); border:1px solid var(--line-strong); border-radius:999px; padding:8px 14px; font-size:0.78rem; color:var(--text); display:flex; align-items:center; gap:6px; pointer-events:none; }
.product-zoom-hint svg{ width:14px; height:14px; }
.product-info h1{ font-size:clamp(1.6rem,3vw,2.1rem); }
.product-price{ font-family:'Syne',sans-serif; font-weight:800; font-size:1.7rem; color:var(--gold); margin-top:14px; }
.product-desc{ margin-top:18px; color:var(--text-muted); font-size:1rem; line-height:1.7; }
.product-specs{ width:100%; border-collapse:collapse; margin-top:26px; }
.product-specs th,.product-specs td{ text-align:left; padding:13px 0; border-bottom:1px solid var(--line); font-size:0.92rem; }
.product-specs th{ color:var(--text-muted); font-weight:600; width:42%; }
.product-actions{ display:flex; gap:14px; margin-top:30px; flex-wrap:wrap; }
.product-not-found{ text-align:center; padding:100px 0; }

/* ---------------------------------- product detail: description / specs / reviews ---------------------------------- */
.product-detail-section{
  grid-column:1/-1; margin-top:76px; padding-top:8px; border-top:1px solid var(--line);
}
.product-detail-section h2{ font-size:clamp(1.2rem,2.1vw,1.5rem); margin:0; }
.product-full-desc{ max-width:820px; font-size:1.05rem; line-height:1.9; color:var(--text-muted); }
.product-detail-specs{ max-width:640px; width:100%; }

/* collapsible Опис / Характеристики / Відгуки — keeps product pages short on mobile */
.detail-accordion-item{ border-bottom:1px solid var(--line); }
.detail-accordion-toggle{
  width:100%; display:flex; align-items:center; justify-content:space-between; gap:16px;
  background:none; border:none; padding:24px 0; cursor:pointer; text-align:left; color:var(--text);
  font-family:inherit;
}
.detail-accordion-chevron{ width:22px; height:22px; color:var(--gold); flex-shrink:0; transition:transform .3s var(--ease); }
.detail-accordion-toggle[aria-expanded="true"] .detail-accordion-chevron{ transform:rotate(180deg); }
.detail-accordion-panel{ max-height:0; overflow:hidden; transition:max-height .4s var(--ease); }
.detail-accordion-panel.open{ max-height:4000px; }
.detail-accordion-panel-inner{ padding-bottom:32px; }

.reviews-count{ margin-left:10px; color:var(--text-muted); font-family:'Manrope',sans-serif; font-weight:600; font-size:1rem; }
.reviews-summary{ display:flex; align-items:baseline; gap:10px; }
.reviews-avg{ font-family:'Syne',sans-serif; font-weight:800; font-size:1.5rem; color:var(--gold); }
.reviews-stars{ color:var(--gold); letter-spacing:2px; font-size:1rem; }

.reviews-list{ margin-top:26px; display:flex; flex-direction:column; gap:16px; max-width:760px; }
.review-card{ background:var(--panel-grad); border:1px solid var(--line); border-radius:var(--radius-m); padding:22px 24px; box-shadow:var(--shadow-s); }
.review-card-head{ display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap; }
.review-card-name{ font-weight:700; font-family:'Syne',sans-serif; }
.review-card-stars{ color:var(--gold); letter-spacing:2px; font-size:0.92rem; white-space:nowrap; }
.review-card-date{ display:block; margin-top:2px; color:var(--text-muted); font-size:0.76rem; }
.review-card p{ margin-top:12px; color:var(--text-muted); font-size:0.92rem; line-height:1.7; }

.review-form-wrap{ margin-top:8px; max-width:520px; }
.review-form-wrap h3{ font-size:1.05rem; font-family:'Syne',sans-serif; font-weight:700; }
.star-input{ display:flex; gap:6px; margin-top:6px; }
.star-btn{
  background:none; border:none; padding:2px; font-size:1.7rem; line-height:1; cursor:pointer;
  color:var(--line-strong); transition:color .15s ease, transform .15s ease;
}
.star-btn:hover{ transform:scale(1.14); }
.star-btn.hovered{ color:var(--gold-light); }
.star-btn.selected{ color:var(--gold); }
@media (max-width:640px){ .product-detail-section{ margin-top:48px; } .detail-accordion-toggle{ padding:20px 0; } }
@media (max-width:860px){ .product-layout{ grid-template-columns:1fr; gap:32px; } }

/* ---------------------------------- advanced filters ---------------------------------- */
.catalog-sort{
  background:var(--bg-panel); border:1px solid var(--line-strong); border-radius:999px;
  padding:10px 16px; color:var(--text); font-family:'Manrope',sans-serif; font-size:0.82rem; cursor:pointer;
}
.catalog-sort:focus{ outline:none; border-color:var(--gold); }
.active-filter-chips{ display:flex; flex-wrap:wrap; gap:8px; margin-bottom:14px; }
.active-filter-chips:empty{ display:none; }
.active-filter-chip{
  display:inline-flex; align-items:center; gap:6px; padding:6px 8px 6px 14px;
  border:1px solid var(--line-strong); background:rgba(201,151,74,0.06); border-radius:999px;
  font-size:0.78rem; color:var(--text);
}
.active-filter-chip button{
  display:flex; align-items:center; justify-content:center; width:18px; height:18px; border-radius:50%;
  background:var(--line); border:none; color:var(--text-muted); cursor:pointer; font-size:0.8rem; line-height:1;
}
.active-filter-chip button:hover{ background:var(--gold); color:#161311; }
.active-filter-chip.active-filter-chip-clearall{ background:none; border-style:dashed; color:var(--text-muted); cursor:pointer; padding:6px 14px; }
.active-filter-chip.active-filter-chip-clearall:hover{ border-color:var(--gold); color:var(--gold-light); }
.catalog-result-count{ margin:-16px 0 24px; color:var(--text-muted); font-size:0.84rem; }
.filters-toggle{ display:inline-flex; align-items:center; gap:8px; border:1px solid var(--line-strong); background:none; color:var(--text); padding:9px 16px; border-radius:999px; font-size:0.82rem; cursor:pointer; }
.filters-toggle:hover{ border-color:var(--gold); color:var(--gold-light); }
.filters-toggle svg{ width:15px; height:15px; }
.filter-count-badge{
  display:inline-flex; align-items:center; justify-content:center; min-width:18px; height:18px; padding:0 5px;
  border-radius:999px; background:var(--gold); color:#161311; font-size:0.68rem; font-weight:800;
}
.filter-count-badge[hidden]{ display:none; }
.filters-panel{ max-height:0; overflow:hidden; transition:max-height .35s ease; }
.filters-panel.open{ max-height:600px; }
.filters-panel-inner{ display:grid; grid-template-columns:repeat(4,1fr); gap:20px; padding:24px 0 8px; border-bottom:1px solid var(--line); margin-bottom:28px; }
.filters-panel select, .filters-panel input[type=number]{
  width:100%; background:var(--bg-panel); border:1px solid var(--line-strong); border-radius:var(--radius-s);
  padding:11px 12px; color:var(--text); font-family:'Manrope',sans-serif; font-size:0.88rem;
}
.filters-panel label{ display:block; font-size:0.76rem; color:var(--text-muted); margin-bottom:6px; text-transform:uppercase; letter-spacing:0.04em; }
.filters-range{ display:flex; gap:8px; align-items:center; }
.filters-range input{ min-width:0; }
.filters-reset{ grid-column:1/-1; text-align:right; }
.filters-reset button{ background:none; border:none; color:var(--text-muted); font-size:0.82rem; cursor:pointer; text-decoration:underline; }
.filters-reset button:hover{ color:var(--gold-light); }
@media (max-width:820px){ .filters-panel-inner{ grid-template-columns:1fr 1fr; } }
@media (max-width:520px){ .filters-panel-inner{ grid-template-columns:1fr; } }

/* ==========================================================================
   More 3D flourishes
   ========================================================================== */

/* ------------------------------ 3D rotating glass cube ------------------------------ */
.cube-3d-wrap{ perspective:1200px; width:150px; height:150px; margin:0 auto; }
.cube-3d{ width:100%; height:100%; position:relative; transform-style:preserve-3d; animation:cubeRotate 16s linear infinite; }
.cube-3d .face{
  position:absolute; width:150px; height:150px;
  border:1px solid var(--gold-deep);
  background:linear-gradient(135deg, rgba(201,151,74,0.16), rgba(201,151,74,0.02));
  box-shadow:inset 0 0 30px rgba(201,151,74,0.15), 0 0 40px rgba(201,151,74,0.08);
}
.cube-3d .face-front{ transform:translateZ(75px); }
.cube-3d .face-back{ transform:rotateY(180deg) translateZ(75px); }
.cube-3d .face-right{ transform:rotateY(90deg) translateZ(75px); }
.cube-3d .face-left{ transform:rotateY(-90deg) translateZ(75px); }
.cube-3d .face-top{ transform:rotateX(90deg) translateZ(75px); }
.cube-3d .face-bottom{ transform:rotateX(-90deg) translateZ(75px); }
.cube-3d .face::after{
  content:""; position:absolute; inset:14px; border:1px solid rgba(201,151,74,0.35);
}
@keyframes cubeRotate{
  0%{ transform:rotateX(-18deg) rotateY(0deg); }
  100%{ transform:rotateX(-18deg) rotateY(360deg); }
}
@media (prefers-reduced-motion: reduce){ .cube-3d{ animation:none; transform:rotateX(-18deg) rotateY(35deg); } }

/* ------------------------------ hero depth parallax ------------------------------ */
.hero-inner{ transition:transform .2s ease-out; will-change:transform; }

/* ------------------------------ 3D flip cards (process steps) ------------------------------ */
.flip-card{ perspective:1200px; }
.flip-card-inner{
  position:relative; width:100%; min-height:150px; transition:transform .7s cubic-bezier(.2,.7,.2,1);
  transform-style:preserve-3d;
}
.flip-card:hover .flip-card-inner{ transform:rotateY(180deg); }
.flip-card-front, .flip-card-back{ position:absolute; inset:0; backface-visibility:hidden; -webkit-backface-visibility:hidden; }
.flip-card-back{
  transform:rotateY(180deg); display:flex; flex-direction:column; align-items:center; justify-content:center;
  text-align:center; border:1px solid var(--line-strong); border-radius:var(--radius-s); background:var(--bg-panel);
  padding:16px;
}
.flip-card-back svg{ width:30px; height:30px; color:var(--gold); margin-bottom:10px; }
.flip-card-back span{ font-family:'Syne',sans-serif; font-weight:700; color:var(--gold); font-size:0.85rem; letter-spacing:0.04em; }
@media (prefers-reduced-motion: reduce){ .flip-card-inner{ transition:none; } .flip-card:hover .flip-card-inner{ transform:none; } }

/* ------------------------------ logo 3D tilt ------------------------------ */
.nav-brand{ transition:transform .2s ease; transform-style:preserve-3d; perspective:400px; }
.nav-brand:hover{ transform:rotateY(8deg) rotateX(-4deg) scale(1.03); }

/* ------------------------------ cube showcase layout ------------------------------ */
.cube-showcase{ display:grid; grid-template-columns:1fr auto; gap:40px; align-items:center; }
@media (max-width:760px){ .cube-showcase{ grid-template-columns:1fr; text-align:center; } .cube-showcase .lede{ margin-left:auto; margin-right:auto; } }

/* ==========================================================================
   Kinetic-typography touches (inspired by typefaceanimator.com)
   ========================================================================== */

/* ------------------------------ hero rotating word ------------------------------ */
.hero-rotator{ margin-top:14px; font-size:1.05rem; color:var(--text-muted); }
.hero-rotator .rotator-word{
  display:inline-block; color:var(--gold-light); font-weight:700;
  transition:opacity .22s ease, transform .22s ease;
}
.hero-rotator .rotator-word.swap{ opacity:0; transform:translateY(6px); }
@media (prefers-reduced-motion: reduce){ .hero-rotator .rotator-word{ transition:none; } }

/* ==========================================================================
   Finishing pass — 3D mirror showcase, ambient particles, cursor spotlight,
   glowing card borders, ripple feedback, load-in entrance
   ========================================================================== */

/* ------------------------------ 3D mirror showcase (why-us visual) ------------------------------ */
.mirror3d{ position:relative; width:100%; height:100%; }
.mirror3d-shadow{
  position:absolute; left:16%; right:16%; bottom:2%; height:22px; border-radius:50%;
  background:radial-gradient(closest-side, rgba(0,0,0,.5), transparent 72%);
  filter:blur(3px); animation:mirror3dShadowPulse 6.4s ease-in-out infinite;
}
.mirror3d-float{ position:absolute; inset:6% 6% 16%; animation:mirror3dFloat 6.4s ease-in-out infinite; }
.mirror3d-stage{ width:100%; height:100%; perspective:1600px; }
.mirror3d-spin{
  position:relative; width:100%; height:100%; transform-style:preserve-3d; will-change:transform;
  animation:mirror3dSpin 15s cubic-bezier(.45,0,.55,1) infinite;
}
.mirror3d-rim{
  position:absolute; inset:0; border-radius:50%;
  background:conic-gradient(from 0deg, var(--gold-deep), var(--gold-light) 22%, var(--gold) 45%, var(--gold-deep) 62%, var(--gold-light) 82%, var(--gold-deep));
  box-shadow:0 0 60px 8px rgba(201,151,74,0.30), 0 0 160px 50px rgba(201,151,74,0.12);
}
.mirror3d-glass{
  position:absolute; inset:6px; border-radius:50%; overflow:hidden;
  background:
    linear-gradient(155deg, rgba(255,255,255,.16), rgba(255,255,255,0) 45%),
    radial-gradient(120% 130% at 32% 22%, rgba(232,201,138,.32), rgba(14,12,10,.94) 64%);
  box-shadow:
    inset 0 0 44px rgba(201,151,74,.25),
    inset 0 -18px 40px rgba(0,0,0,.55);
}
.mirror3d-shine{
  position:absolute; top:-50%; left:-70%; width:70%; height:220%;
  background:linear-gradient(115deg, transparent, rgba(255,255,255,.5), transparent);
  transform:rotate(18deg);
  animation:mirror3dShine 4.4s ease-in-out infinite;
}
@keyframes mirror3dSpin{
  0%{ transform:rotateY(0deg) rotateX(6deg); }
  50%{ transform:rotateY(180deg) rotateX(6deg); }
  100%{ transform:rotateY(360deg) rotateX(6deg); }
}
@keyframes mirror3dFloat{ 0%,100%{ transform:translateY(0); } 50%{ transform:translateY(-14px); } }
@keyframes mirror3dShadowPulse{ 0%,100%{ transform:scale(1); opacity:.55; } 50%{ transform:scale(.82); opacity:.28; } }
@keyframes mirror3dShine{
  0%{ transform:translateX(0) rotate(18deg); opacity:0; }
  8%{ opacity:.9; }
  35%{ opacity:0; }
  100%{ transform:translateX(340%) rotate(18deg); opacity:0; }
}
@media (prefers-reduced-motion: reduce){
  .mirror3d-spin, .mirror3d-float, .mirror3d-shadow, .mirror3d-shine{ animation:none !important; }
  .mirror3d-spin{ transform:rotateY(35deg) rotateX(6deg); }
}

/* ------------------------------ ambient ember particles ------------------------------ */
.slogan .wrap{ position:relative; z-index:1; }
.page-header .wrap{ position:relative; z-index:1; }
.ember-field{ position:absolute; inset:0; overflow:hidden; pointer-events:none; z-index:0; }
.hero .ember-field{ z-index:1; }
.ember{
  position:absolute; left:var(--x,50%); bottom:-6%;
  width:var(--s,3px); height:var(--s,3px); border-radius:50%;
  background:radial-gradient(circle, var(--gold-light), var(--gold) 55%, transparent 78%);
  opacity:0; animation:emberRise var(--dur,9s) linear infinite;
}
@keyframes emberRise{
  0%{ transform:translate(0,0) scale(.6); opacity:0; }
  8%{ opacity:.9; }
  85%{ opacity:.35; }
  100%{ transform:translate(var(--drift,24px),-260px) scale(1); opacity:0; }
}
@media (prefers-reduced-motion: reduce){ .ember-field{ display:none; } }

/* ------------------------------ glowing rotating card border (catalog / portfolio) ------------------------------ */
.mirror-card, .work-card{ position:relative; }
.mirror-card::before, .work-card::before{
  content:""; position:absolute; inset:-1px; border-radius:inherit; padding:1px;
  background:conic-gradient(from 0deg, transparent 0 70%, var(--gold-light) 84%, var(--gold) 90%, transparent 100%);
  -webkit-mask:linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite:xor; mask-composite:exclude;
  opacity:0; transition:opacity .35s ease; pointer-events:none;
  animation:borderSpin 3.6s linear infinite; animation-play-state:paused;
}
.mirror-card:hover::before, .work-card:hover::before{ opacity:1; animation-play-state:running; }
@keyframes borderSpin{ to{ transform:rotate(360deg); } }
@media (prefers-reduced-motion: reduce){ .mirror-card::before, .work-card::before{ display:none; } }

/* ------------------------------ ripple click feedback ------------------------------ */
.btn, .nav-cta, .filter-pill, .btn-add-cart{ position:relative; overflow:hidden; }
.ripple{
  position:absolute; border-radius:50%; background:rgba(255,255,255,0.45);
  transform:scale(0); opacity:.55; pointer-events:none; animation:rippleOut .6s ease-out forwards;
}
@keyframes rippleOut{ to{ transform:scale(1); opacity:0; } }
@media (prefers-reduced-motion: reduce){ .ripple{ display:none; } }

/* ------------------------------ product photo 3D tilt ------------------------------ */
.product-photo.tilt-card{ transition:transform .18s ease-out, box-shadow .18s ease-out; transform-style:preserve-3d; }

/* ------------------------------ load-in entrance (hero / page header) ------------------------------ */
@keyframes fadeUpIn{ from{ opacity:0; transform:translateY(16px); } to{ opacity:1; transform:translateY(0); } }
.hero-inner > *{ animation:fadeUpIn .8s cubic-bezier(.2,.7,.2,1) both; }
.hero-inner > *:nth-child(1){ animation-delay:.02s; }
.hero-inner > *:nth-child(2){ animation-delay:.1s; }
.hero-inner > *:nth-child(3){ animation-delay:.18s; }
.hero-inner > *:nth-child(4){ animation-delay:.26s; }
.hero-inner > *:nth-child(5){ animation-delay:.34s; }
.hero-inner > *:nth-child(6){ animation-delay:.42s; }
.page-header .wrap > *{ animation:fadeUpIn .8s cubic-bezier(.2,.7,.2,1) both; }
.page-header .wrap > *:nth-child(1){ animation-delay:.04s; }
.page-header .wrap > *:nth-child(2){ animation-delay:.12s; }
.page-header .wrap > *:nth-child(3){ animation-delay:.2s; }
@media (prefers-reduced-motion: reduce){
  .hero-inner > *, .page-header .wrap > *{ animation:none; }
}

/* ==========================================================================
   Round two — more 3D, ribbon badges, animated icons
   ========================================================================== */

/* ------------------------------ icon pop on hover (feature / value tiles) ------------------------------ */
.feature-item svg, .value-item svg{ transition:transform .3s var(--ease), color .3s ease; }
.feature-item:hover svg, .value-item:hover svg{ transform:scale(1.16) rotate(-6deg); color:var(--gold-light); }
@media (prefers-reduced-motion: reduce){ .feature-item svg, .value-item svg{ transition:none; } .feature-item:hover svg, .value-item:hover svg{ transform:none; } }

/* ------------------------------ ribbon divider (animated diagonal stripe) ------------------------------ */
.ribbon-divider{
  position:relative; height:5px; border:none; border-radius:999px; overflow:hidden;
  background:
    repeating-linear-gradient(-45deg,
      var(--gold-deep) 0 10px,
      var(--gold) 10px 20px,
      var(--gold-light) 20px 30px,
      var(--gold) 30px 40px);
  background-size:200% 100%;
  animation:ribbonSlide 5.5s linear infinite;
  box-shadow:0 0 24px -4px rgba(201,151,74,.5);
  opacity:.75;
}
@keyframes ribbonSlide{ from{ background-position:0 0; } to{ background-position:-113px 0; } }
@media (prefers-reduced-motion: reduce){ .ribbon-divider{ animation:none; } }

/* ------------------------------ animated stat icons ------------------------------ */
.stat-icon{
  display:inline-flex; width:28px; height:28px; margin-bottom:10px; color:var(--gold);
  animation:statIconFloat 4.6s ease-in-out infinite;
}
.stat-icon svg{ width:100%; height:100%; filter:drop-shadow(0 4px 10px rgba(201,151,74,.35)); }
.stat:nth-child(1) .stat-icon{ animation-delay:0s; }
.stat:nth-child(2) .stat-icon{ animation-delay:.25s; }
.stat:nth-child(3) .stat-icon{ animation-delay:.5s; }
.stat:nth-child(4) .stat-icon{ animation-delay:.75s; }
@keyframes statIconFloat{
  0%,100%{ transform:translateY(0) rotate(0deg); }
  50%{ transform:translateY(-6px) rotate(-8deg); }
}
@media (prefers-reduced-motion: reduce){ .stat-icon{ animation:none; } }

/* ------------------------------ 3D spinning coin badge (hero) ------------------------------ */
.seal-3d{ position:relative; width:112px; height:112px; flex-shrink:0; margin-left:auto; }
.seal-3d-inner{ position:relative; width:100%; height:100%; }
.seal-3d-face{
  position:absolute; inset:0; border-radius:50%;
  display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center;
  border:1px solid var(--line-strong);
  background:radial-gradient(120% 130% at 32% 22%, rgba(232,201,138,.28), var(--bg-panel) 68%);
  box-shadow:0 0 0 1px rgba(201,151,74,.2), 0 16px 34px -16px rgba(0,0,0,.6), inset 0 0 24px rgba(201,151,74,.18);
}
.seal-3d-face strong{ display:block; font-family:'Syne',sans-serif; font-weight:800; color:var(--gold-light); font-size:1.5rem; line-height:1; }
.seal-3d-face span{ display:block; margin-top:4px; font-size:.56rem; letter-spacing:.08em; text-transform:uppercase; color:var(--text-muted); max-width:70px; }
.seal-3d-face svg{ width:30px; height:30px; color:var(--gold); }
.seal-3d-front{ animation:sealFadeFront 7s ease-in-out infinite; }
.seal-3d-back{ animation:sealFadeBack 7s ease-in-out infinite; }
@keyframes sealFadeFront{
  0%,38%{ opacity:1; transform:scale(1); }
  50%,88%{ opacity:0; transform:scale(.94); }
  100%{ opacity:1; transform:scale(1); }
}
@keyframes sealFadeBack{
  0%,38%{ opacity:0; transform:scale(.94); }
  50%,88%{ opacity:1; transform:scale(1); }
  100%{ opacity:0; transform:scale(.94); }
}
@media (prefers-reduced-motion: reduce){ .seal-3d-front, .seal-3d-back{ animation:none; } .seal-3d-back{ opacity:0; } }

/* --------------------------------- admin: detailed mirror calculator --------------------------------- */
.calc-wizard{ margin-top:24px; }
.calc-steps{ display:flex; flex-wrap:wrap; gap:8px; margin-bottom:28px; }
.calc-step-pill{
  display:flex; align-items:center; gap:8px; padding:8px 14px 8px 8px; border-radius:999px;
  border:1px solid var(--line); background:rgba(201,151,74,0.03); color:var(--text-muted);
  font-size:0.78rem; letter-spacing:0.02em; cursor:default; transition:border-color .2s ease, color .2s ease, background .2s ease;
}
.calc-step-pill b{
  display:flex; align-items:center; justify-content:center; width:22px; height:22px; border-radius:50%;
  background:var(--bg); border:1px solid var(--line-strong); font-size:0.72rem; color:var(--text-muted); font-weight:700;
  transition:background .2s ease, color .2s ease, border-color .2s ease;
}
.calc-step-pill.done{ border-color:var(--line-strong); color:var(--text); }
.calc-step-pill.done b{ background:var(--gold); border-color:var(--gold); color:#191410; }
.calc-step-pill.active{ border-color:var(--gold); color:var(--gold-light); background:rgba(201,151,74,0.1); }
.calc-step-pill.active b{ background:var(--gold); border-color:var(--gold); color:#191410; }

.calc-screen{ display:none; }
.calc-screen.active{ display:block; animation:calcIn .35s var(--ease); }
@keyframes calcIn{ from{ opacity:0; transform:translateY(10px); } to{ opacity:1; transform:none; } }
.calc-screen .calc-title{ font-family:'Syne',sans-serif; font-weight:700; font-size:1.25rem; }
.calc-screen .calc-desc{ margin-top:8px; color:var(--text-muted); font-size:0.92rem; line-height:1.6; max-width:560px; }

.calc-grid2{ display:grid; grid-template-columns:repeat(2,1fr); gap:14px; margin-top:20px; }
.calc-grid3{ display:grid; grid-template-columns:repeat(3,1fr); gap:14px; margin-top:20px; }
.calc-grid4{ display:grid; grid-template-columns:repeat(4,1fr); gap:14px; margin-top:20px; }

.calc-card{
  text-align:left; border:1px solid var(--line); border-radius:var(--radius-m); background:var(--panel-grad);
  padding:18px; color:var(--text); box-shadow:var(--shadow-s); cursor:pointer;
  transition:border-color .2s var(--ease), box-shadow .2s var(--ease), transform .2s var(--ease);
}
.calc-card:hover{ border-color:var(--line-strong); transform:translateY(-3px); box-shadow:var(--shadow-m); }
.calc-card.active{ border-color:var(--gold); box-shadow:0 0 0 1px var(--gold), var(--shadow-m); }
.calc-card b{ display:block; font-family:'Syne',sans-serif; font-size:1rem; }
.calc-card p{ margin-top:4px; color:var(--text-muted); font-size:0.82rem; }
.calc-card .calc-huge{ font-family:'Syne',sans-serif; font-weight:800; font-size:2rem; color:var(--gold); line-height:1; margin-bottom:10px; }

.calc-swatch{ width:100%; aspect-ratio:2.4/1; border-radius:var(--radius-s); border:1px solid var(--line-strong); margin-bottom:12px; }
.calc-swatch.silver{ background:linear-gradient(135deg,#f3efe8,#8a8378,#161311); }
.calc-swatch.graphite{ background:linear-gradient(135deg,#8a8378,#2a2622,#0b0a09); }
.calc-swatch.bronze{ background:linear-gradient(135deg,#e8c98a,#c9974a,#3d2c14); }
.calc-swatch.diamond{ background:linear-gradient(135deg,#f3efe8,#dff5f8,#8fa7b0,#f3efe8); }

.calc-rowgrid{ display:grid; grid-template-columns:1.4fr .9fr; gap:20px; margin-top:20px; align-items:start; }
.calc-box{ border:1px solid var(--line); background:var(--bg-panel); border-radius:var(--radius-m); padding:20px; }
.calc-box > b{ font-family:'Syne',sans-serif; font-size:0.95rem; }

.calc-item{ display:grid; grid-template-columns:1fr 1fr .7fr auto; gap:10px; align-items:end; padding:12px; border:1px solid var(--line); background:var(--bg); border-radius:var(--radius-s); margin-top:12px; }
.calc-item label{ display:block; font-size:0.72rem; color:var(--text-muted); margin-bottom:6px; }
.calc-item input{ width:100%; height:42px; border-radius:8px; border:1px solid var(--line-strong); background:var(--bg-panel); color:var(--text); padding:0 10px; font-family:inherit; }
.calc-item input:focus{ outline:2px solid var(--gold-light); outline-offset:1px; }
.calc-del{ height:42px; width:42px; border-radius:8px; border:1px solid var(--line-strong); background:var(--bg-panel); color:var(--text-muted); flex-shrink:0; }
.calc-del:hover{ color:var(--gold-light); border-color:var(--gold); }
.calc-mini{ height:40px; border-radius:999px; padding:0 16px; margin:14px 10px 0 0; border:1px solid var(--line-strong); background:rgba(201,151,74,0.03); color:var(--text); font-size:0.82rem; }
.calc-mini:hover{ border-color:var(--gold); color:var(--gold-light); }

.calc-preview{ height:150px; border:1px dashed var(--line-strong); border-radius:var(--radius-m); display:flex; align-items:center; justify-content:center; background:var(--bg); margin-top:14px; }
.calc-mirror-shape{ border:1px solid var(--gold); border-radius:4px; background:linear-gradient(135deg,#f3efe8,#8a8378,#3a352e); box-shadow:0 0 20px rgba(201,151,74,0.25); }

.calc-stat{ display:flex; justify-content:space-between; border-bottom:1px solid var(--line); padding:12px 0; color:var(--text-muted); font-size:0.88rem; }
.calc-stat:last-child{ border-bottom:none; }
.calc-stat b{ color:var(--text); }

.calc-addon{ display:flex; justify-content:space-between; align-items:center; gap:16px; }
.calc-addon b{ display:block; font-family:'Syne',sans-serif; font-size:0.94rem; }
.calc-addon p{ margin-top:3px; color:var(--text-muted); font-size:0.8rem; }
.calc-switch{ flex-shrink:0; width:52px; height:30px; border-radius:999px; border:1px solid var(--line-strong); background:var(--bg); position:relative; }
.calc-switch::after{ content:""; position:absolute; width:22px; height:22px; border-radius:50%; background:var(--text-muted); left:3px; top:3px; transition:transform .2s var(--ease), background .2s ease; }
.calc-switch.on{ border-color:var(--gold); background:rgba(201,151,74,0.18); }
.calc-switch.on::after{ transform:translateX(22px); background:var(--gold); }

.calc-sub-panel{ margin-top:20px; padding-top:20px; border-top:1px dashed var(--line); }
.calc-facet-size{ padding:12px; text-align:center; }
.calc-facet-size b{ font-size:0.86rem; }
.calc-hole-input{ width:100%; height:42px; border-radius:8px; border:1px solid var(--line-strong); background:var(--bg); color:var(--text); padding:0 10px; font-family:inherit; }
.calc-hole-input:focus{ outline:2px solid var(--gold-light); outline-offset:1px; }

.calc-breakdown-row{ display:flex; justify-content:space-between; gap:14px; border-bottom:1px solid var(--line); padding:10px 0; font-size:0.84rem; color:var(--text-muted); }
.calc-breakdown-row b{ color:var(--text); white-space:nowrap; }
.calc-breakdown-row.calc-breakdown-multiplier{ color:var(--gold-light); font-style:italic; }
.calc-breakdown-empty{ color:var(--text-muted); font-size:0.86rem; }

.calc-nav{ display:flex; justify-content:space-between; gap:12px; margin-top:28px; padding-top:20px; border-top:1px solid var(--line); }

.calc-result-total{ font-family:'Syne',sans-serif; font-weight:800; font-size:clamp(2.2rem,4vw,2.8rem); color:var(--gold-light); line-height:1; }
.calc-resrow{ display:flex; justify-content:space-between; border-bottom:1px solid var(--line); padding:11px 0; color:var(--text-muted); font-size:0.86rem; }
.calc-resrow b{ color:var(--text); text-align:right; }

.calc-pricebox{ margin-top:32px; border-top:1px solid var(--line); padding-top:20px; }
.calc-pricebox summary{ cursor:pointer; font-family:'Syne',sans-serif; font-weight:700; font-size:0.92rem; color:var(--gold-light); list-style:none; display:flex; align-items:center; gap:8px; }
.calc-pricebox summary::-webkit-details-marker{ display:none; }
.calc-pricebox summary::before{ content:"＋"; display:inline-flex; width:20px; }
.calc-pricebox[open] summary::before{ content:"－"; }
.calc-pricebox .form-note{ margin-top:8px; }
.calc-price-scroll{ max-height:520px; overflow:auto; margin-top:16px; padding-right:6px; }
.calc-price-group{ font-size:0.72rem; letter-spacing:0.1em; text-transform:uppercase; color:var(--gold); margin:18px 0 8px; }
.calc-price-group:first-child{ margin-top:0; }
.calc-price-row{ display:grid; grid-template-columns:1fr 110px; gap:10px; align-items:center; border:1px solid var(--line); background:var(--bg); border-radius:8px; padding:8px 10px; margin-bottom:8px; }
.calc-price-row label{ font-size:0.82rem; color:var(--text-muted); }
.calc-price-row input{ height:38px; border-radius:6px; border:1px solid var(--line-strong); background:var(--bg-panel); color:var(--text); padding:0 8px; font-family:inherit; width:100%; }
.calc-price-reset{ margin-top:14px; }

@media (max-width:900px){
  .calc-grid2,.calc-grid3,.calc-grid4,.calc-rowgrid{ grid-template-columns:1fr; }
  .calc-item{ grid-template-columns:1fr 1fr; }
  .calc-item .calc-del{ grid-column:span 2; width:100%; }
}
@media (max-width:640px){ .seal-3d{ display:none; } }
