/* =========================================================================
   LK ASSOCIATES LLP — Design Tokens
   Palette: charcoal ink + limestone paper + brass accent + blueprint navy
   Type: Fraunces (display) / Work Sans (body) / Space Mono (spec/utility)
   Signature: "blueprint viewport" — corner brackets + coordinate captions
   ========================================================================= */

:root{
  --ink:        #14171a;
  --charcoal:   #1b1f1c;
  --charcoal-2: #232824;
  --paper:      #edeee8;
  --paper-2:    #e2e2da;
  --stone:      #c7b79a;
  --brass:      #a9763e;
  --brass-l:    #c68f52;
  --blueprint:  #2e4756;
  --blueprint-l:#3f5f70;
  --white:      #fbfaf7;

  --f-display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --f-body: "Work Sans", "Segoe UI", sans-serif;
  --f-mono: "Space Mono", "Courier New", monospace;

  --container: 1240px;
  --radius: 2px;
  --ease: cubic-bezier(.22,.68,0,1);
}
@media (min-width:1400px){ :root{ --container:1340px; } }
@media (min-width:1700px){ :root{ --container:1480px; } }
@media (min-width:1900px){ :root{ --container:1600px; } }

*{box-sizing:border-box;}
html{scroll-behavior:smooth; overflow-x:hidden; max-width:100%;}
body{
  margin:0;
  font-family:var(--f-body);
  color:var(--ink);
  background:var(--paper);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto;}
  *{animation-duration:.01ms !important; animation-iteration-count:1 !important; transition-duration:.01ms !important;}
}

a{color:inherit; text-decoration:none;}
img{max-width:100%; display:block;}
.container-xl{max-width:var(--container); margin:0 auto; padding:0 24px;}

h1,h2,h3,h4,.font-display{font-family:var(--f-display); font-weight:600; letter-spacing:-.01em; color:var(--charcoal);}
.font-mono{font-family:var(--f-mono);}

::selection{background:var(--brass); color:var(--white);}

:focus-visible{outline:2px solid var(--brass); outline-offset:3px;}

/* ---------- eyebrow / coordinate label (signature detail) ---------- */
.eyebrow{
  display:flex; align-items:center; gap:12px;
  font-family:var(--f-mono);
  font-size:12.5px; letter-spacing:.14em; text-transform:uppercase;
  color:var(--brass);
  margin-bottom:14px;
}
.eyebrow::before{
  content:""; width:34px; height:1px; background:var(--brass);
}
.coord{
  font-family:var(--f-mono); font-size:11px; letter-spacing:.06em;
  color:var(--stone); opacity:.85;
}

/* ---------- buttons ---------- */
/* ---------- buttons (premium sweep-fill) ---------- */
.btn-brass{
  position:relative; display:inline-flex; align-items:center; gap:10px; overflow:hidden; isolation:isolate;
  background:var(--brass); color:var(--white);
  border:1px solid var(--brass);
  padding:15px 32px; font-family:var(--f-mono); font-size:13px;
  letter-spacing:.08em; text-transform:uppercase;
  border-radius:var(--radius);
  box-shadow:0 10px 26px -12px rgba(169,118,62,.55);
  transition:color .45s var(--ease), box-shadow .4s, transform .3s;
}
.btn-brass::before{
  content:""; position:absolute; inset:0; z-index:-1; background:var(--charcoal);
  transform:scaleX(0); transform-origin:right; transition:transform .5s var(--ease);
}
.btn-brass:hover{color:var(--white); box-shadow:0 14px 32px -10px rgba(20,23,26,.4); transform:translateY(-2px);}
.btn-brass:hover::before{transform:scaleX(1); transform-origin:left;}
.btn-brass i{transition:transform .4s var(--ease);}
.btn-brass:hover i{transform:translateX(4px);}

.btn-outline-paper{
  position:relative; display:inline-flex; align-items:center; gap:10px; overflow:hidden; isolation:isolate;
  background:transparent; color:var(--white);
  border:1px solid rgba(251,250,247,.55);
  padding:15px 32px; font-family:var(--f-mono); font-size:13px;
  letter-spacing:.08em; text-transform:uppercase;
  border-radius:var(--radius);
  transition:color .45s var(--ease), border-color .4s, transform .3s;
}
.btn-outline-paper::before{
  content:""; position:absolute; inset:0; z-index:-1; background:var(--white);
  transform:scaleX(0); transform-origin:right; transition:transform .5s var(--ease);
}
.btn-outline-paper:hover{color:var(--charcoal); border-color:var(--white); transform:translateY(-2px);}
.btn-outline-paper:hover::before{transform:scaleX(1); transform-origin:left;}
.btn-outline-paper i{transition:transform .4s var(--ease);}
.btn-outline-paper:hover i{transform:translateX(4px);}

.btn-line{
  display:inline-flex; align-items:center; gap:8px;
  font-family:var(--f-mono); font-size:12.5px; letter-spacing:.08em; text-transform:uppercase;
  color:var(--charcoal); border-bottom:1px solid var(--charcoal); padding-bottom:3px;
  transition:color .3s, border-color .3s;
}
.btn-line:hover{color:var(--brass); border-color:var(--brass);}
.btn-line i{transition:transform .35s var(--ease);}
.btn-line:hover i{transform:translateX(4px);}

/* premium navbar CTA button — distinct from generic btn-brass usage */
.nav-cta{
  position:relative; display:inline-flex; align-items:center; gap:9px; overflow:hidden; isolation:isolate;
  background:linear-gradient(135deg, var(--brass-l), var(--brass) 60%);
  color:var(--white) !important; border:0 !important;
  padding:12px 24px !important; font-family:var(--f-mono); font-size:12px !important;
  letter-spacing:.07em; text-transform:uppercase; border-radius:30px !important;
  box-shadow:0 10px 24px -10px rgba(169,118,62,.65);
  transition:box-shadow .4s var(--ease), transform .35s var(--ease);
}
.nav-cta::before{
  content:""; position:absolute; inset:0; z-index:-1; border-radius:30px;
  background:linear-gradient(135deg, var(--blueprint), var(--charcoal));
  transform:scaleX(0); transform-origin:right; transition:transform .5s var(--ease);
}
.nav-cta:hover{box-shadow:0 14px 30px -8px rgba(46,71,86,.55); transform:translateY(-2px);}
.nav-cta:hover::before{transform:scaleX(1); transform-origin:left;}
.nav-cta i{font-size:10px; transition:transform .4s var(--ease);}
.nav-cta:hover i{transform:translateX(4px) rotate(45deg);}

/* ---------- navbar ---------- */
.lk-topbar{
  background:var(--charcoal); color:var(--stone); position:relative; overflow:hidden;
  font-family:var(--f-mono); font-size:11.5px; letter-spacing:.06em;
  border-bottom:1px solid rgba(251,250,247,.06);
}
.lk-topbar .container-xl{display:flex; justify-content:space-between; align-items:center; height:38px;}
.lk-topbar a{color:var(--stone); transition:color .25s;}
.lk-topbar a:hover{color:var(--brass-l);}
.lk-topbar .marquee{display:flex; align-items:center; gap:34px; white-space:nowrap; overflow:hidden; -webkit-mask-image:linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image:linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);}
.lk-topbar .marquee-track{display:flex; gap:34px; animation:marquee 22s linear infinite;}
.lk-topbar .marquee span{display:flex; align-items:center; gap:8px; text-transform:uppercase;}
.lk-topbar .marquee span::before{content:"◆"; color:var(--brass); font-size:7px;}
@keyframes marquee{from{transform:translateX(0);} to{transform:translateX(-50%);}}

.lk-nav{
  position:sticky; top:0; z-index:1000;
  background:rgba(237,238,232,.92);
  -webkit-backdrop-filter:blur(10px); backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(20,23,26,.08);
  transition:background .3s, box-shadow .3s;
}
.lk-nav.is-scrolled{ box-shadow:0 8px 24px rgba(20,23,26,.08); }
.lk-nav .container-xl{display:flex; align-items:center; justify-content:space-between; height:88px;}
.lk-logo{display:flex; align-items:center; gap:0; color:var(--charcoal); transition:transform .35s var(--ease);}
.lk-logo:hover{transform:translateY(-1px);}
.lk-logo img{height:54px; width:auto; display:block;}
footer .lk-logo img, .sidebar-head .lk-logo img{ filter:brightness(0) invert(1); }

.lk-links{display:flex; align-items:center; gap:36px; margin:0; padding:0;}
.sidebar-nav-list{display:contents; list-style:none; margin:0; padding:0;}
.lk-links a{
  font-family:var(--f-mono); font-size:12.5px; letter-spacing:.07em; text-transform:uppercase;
  color:var(--charcoal); position:relative; padding:6px 0;
}
.lk-links a::after{
  content:""; position:absolute; left:0; bottom:0; height:1px; width:0; background:var(--brass);
  transition:width .3s var(--ease);
}
.lk-links a:hover::after, .lk-links a.active::after{width:100%;}
.lk-links a.active{color:var(--brass);}
.nl-ico, .nl-idx{display:none;}

.lk-burger{display:none; flex-direction:column; gap:5px; background:none; border:0; cursor:pointer; padding:6px; z-index:1100;}
.lk-burger span{width:24px; height:1.5px; background:var(--charcoal); display:block; transition:transform .3s, opacity .3s;}

.lk-overlay{
  position:fixed; inset:0; z-index:1050; background:rgba(20,23,26,.6); -webkit-backdrop-filter:blur(4px); backdrop-filter:blur(4px);
  opacity:0; visibility:hidden; transition:opacity .45s var(--ease), visibility .45s;
}
.lk-overlay.is-open{opacity:1; visibility:visible;}
.sidebar-close{
  display:none; align-items:center; gap:10px; padding:8px 8px 8px 18px; border-radius:30px;
  border:1px solid rgba(251,250,247,.22); background:rgba(251,250,247,.04); cursor:pointer;
  color:rgba(251,250,247,.75); font-family:var(--f-mono); font-size:10.5px; letter-spacing:.14em; text-transform:uppercase;
  transition:background .35s var(--ease), border-color .35s var(--ease), color .35s var(--ease);
}
.sidebar-close .sc-ico{
  width:26px; height:26px; border-radius:50%; flex:none; display:flex; align-items:center; justify-content:center;
  background:rgba(251,250,247,.08); color:var(--white); font-size:11px;
  transition:background .4s var(--ease), color .4s var(--ease), transform .4s var(--ease);
}
.sidebar-close:hover{background:var(--brass); border-color:var(--brass); color:var(--charcoal);}
.sidebar-close:hover .sc-ico{background:rgba(20,23,26,.18); color:var(--charcoal); transform:rotate(90deg);}
.sidebar-head{display:none;}
.sidebar-foot{display:none;}

@media (max-width:991px){
  .lk-burger{display:flex;}
  .lk-links{
    position:fixed; inset:0 0 0 auto; width:min(88vw,380px); height:100vh; z-index:1100;
    background:
      repeating-linear-gradient(0deg, rgba(20,23,26,.025) 0 1px, transparent 1px 34px),
      repeating-linear-gradient(90deg, rgba(20,23,26,.025) 0 1px, transparent 1px 34px),
      var(--white);
    flex-direction:column; align-items:stretch; justify-content:flex-start;
    padding:0; gap:0; transform:translateX(100%); transition:transform .55s var(--ease);
    box-shadow:-30px 0 70px rgba(0,0,0,.25); overflow-y:auto;
  }
  .lk-links.is-open{transform:translateX(0);}
  .sidebar-nav-list{display:block; padding:20px 20px 6px;}
  .sidebar-nav-list li{width:100%; list-style:none;}
  .lk-links a{
    font-size:15.5px; font-family:var(--f-display); font-weight:600; text-transform:none; letter-spacing:0;
    padding:13px 12px; display:flex; align-items:center; gap:14px; width:100%;
    border-radius:12px; margin-bottom:4px;
    opacity:0; transform:translateX(30px); transition:opacity .45s var(--ease), transform .45s var(--ease), background .3s;
  }
  .lk-links a:hover, .lk-links a.active{background:rgba(169,118,62,.09);}
  .lk-links a::after{display:none;}
  .nl-ico{
    display:flex; width:40px; height:40px; border-radius:50%; background:rgba(169,118,62,.1); color:var(--brass);
    align-items:center; justify-content:center; font-size:15px; flex:none;
    transition:all .4s var(--ease);
  }
  .lk-links a:hover .nl-ico, .lk-links a.active .nl-ico{background:var(--brass); color:var(--white); transform:rotate(-10deg) scale(1.08);}
  .nl-txt{flex:1;}
  .nl-idx{display:block; font-family:var(--f-mono); font-size:10px; letter-spacing:.05em; color:rgba(20,23,26,.22); transition:color .3s;}
  .lk-links a:hover .nl-idx, .lk-links a.active .nl-idx{color:var(--brass);}
  .lk-links.is-open a{opacity:1; transform:translateX(0);}
  .lk-links.is-open li:nth-child(1) a{transition-delay:.08s;}
  .lk-links.is-open li:nth-child(2) a{transition-delay:.13s;}
  .lk-links.is-open li:nth-child(3) a{transition-delay:.18s;}
  .lk-links.is-open li:nth-child(4) a{transition-delay:.23s;}
  .lk-links.is-open li:nth-child(5) a{transition-delay:.28s;}
  .lk-links.is-open li:nth-child(6) a{transition-delay:.33s;}
  .lk-links a.btn-brass{
    margin:18px 10px 8px; text-align:center; justify-content:center; border-radius:10px;
    font-family:var(--f-mono); font-size:13px; letter-spacing:.08em; text-transform:uppercase; font-weight:400;
  }
  .lk-burger.is-active span:nth-child(1){transform:translateY(6.5px) rotate(45deg);}
  .lk-burger.is-active span:nth-child(2){opacity:0;}
  .lk-burger.is-active span:nth-child(3){transform:translateY(-6.5px) rotate(-45deg);}

  .sidebar-head{
    display:flex; align-items:center; justify-content:space-between; padding:24px 26px;
    background:var(--charcoal); flex:none; position:relative;
  }
  .sidebar-head::after{content:""; position:absolute; left:0; right:0; bottom:0; height:2px; background:linear-gradient(90deg,var(--brass),var(--blueprint),var(--brass));}
  .sidebar-head .lk-logo img{height:34px;}
  .sidebar-close{display:flex;}
  .sidebar-foot{
    display:block; margin-top:auto; padding:26px 26px 34px; background:var(--paper-2); flex:none;
  }
  .sidebar-foot .sf-label{font-family:var(--f-mono); font-size:10.5px; letter-spacing:.14em; text-transform:uppercase; color:var(--stone); margin-bottom:12px; display:block;}
  .sidebar-foot a{display:flex; align-items:center; gap:12px; font-family:var(--f-mono); font-size:13px; color:var(--charcoal); padding:9px 0; border:0;}
  .sidebar-foot a i{width:30px; height:30px; border-radius:50%; background:var(--white); display:flex; align-items:center; justify-content:center; color:var(--brass); font-size:12px; flex:none; transition:all .3s;}
  .sidebar-foot a:hover i{background:var(--brass); color:var(--white); transform:scale(1.1);}
  .sidebar-foot .sf-social{display:flex; gap:10px; margin-top:16px;}
  .sidebar-foot .sf-social a{width:36px; height:36px; border:1px solid rgba(20,23,26,.15); border-radius:50%; justify-content:center; padding:0; background:var(--white); transition:all .3s;}
  .sidebar-foot .sf-social a:hover{background:var(--brass); border-color:var(--brass); color:var(--white); transform:translateY(-3px);}
  .sidebar-foot .sf-social a i{width:auto; height:auto; background:none; color:inherit;}

  /* ---- mobile: true fixed header (no sticky glitching while scrolling) ---- */
  .lk-topbar{display:none;}
  .lk-nav{
    position:fixed; top:0; left:0; right:0; width:100%;
  }
  body{padding-top:88px;}
}

/* ---------- stats bar (icon design restored; background made distinct) ---------- */
.stats{
  background:
    radial-gradient(ellipse 760px 420px at 10% -12%, rgba(169,118,62,.18), transparent 62%),
    radial-gradient(ellipse 760px 460px at 92% 112%, rgba(46,71,86,.4), transparent 60%),
    var(--charcoal);
  color:var(--paper); padding:76px 0; position:relative; overflow:hidden;
  border-top:1px solid rgba(169,118,62,.22); border-bottom:1px solid rgba(169,118,62,.22);
}
.stats::before{
  content:""; position:absolute; inset:0; z-index:0; pointer-events:none;
  background-image:radial-gradient(rgba(251,250,247,.09) 1px, transparent 1.4px);
  background-size:26px 26px;
  -webkit-mask-image:radial-gradient(ellipse 75% 100% at 50% 45%, #000 35%, transparent 100%);
  mask-image:radial-gradient(ellipse 75% 100% at 50% 45%, #000 35%, transparent 100%);
}
.stats-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:0; text-align:center; position:relative; z-index:1;}
.stat-cell{
  display:flex; flex-direction:column; align-items:center; padding:8px 20px;
  border-right:1px solid rgba(251,250,247,.1);
}
.stat-cell:last-child{border-right:0;}
.stat-icon{
  position:relative; width:64px; height:64px; border-radius:50%; display:flex; align-items:center; justify-content:center;
  font-size:23px; color:var(--white); margin-bottom:20px; transition:transform .5s var(--ease), border-radius .5s var(--ease);
  box-shadow:0 0 0 6px rgba(251,250,247,.04);
}
.stat-icon::after{
  content:""; position:absolute; inset:-9px; border-radius:50%; border:1px dashed rgba(251,250,247,.22);
  animation:spinSlow 16s linear infinite;
}
@keyframes spinSlow{from{transform:rotate(0);}to{transform:rotate(360deg);}}
.stat-icon.i-brass{background:linear-gradient(135deg, var(--brass-l), var(--brass)); box-shadow:0 10px 26px -8px rgba(169,118,62,.55), 0 0 0 6px rgba(251,250,247,.04);}
.stat-icon.i-blue{background:linear-gradient(135deg, var(--blueprint-l), var(--blueprint)); box-shadow:0 10px 26px -8px rgba(46,71,86,.65), 0 0 0 6px rgba(251,250,247,.04);}
.stat-cell:hover .stat-icon{transform:rotate(-10deg) scale(1.1); border-radius:38% 62% 63% 37% / 41% 44% 56% 59%;}
.stat-divider{width:30px; height:1px; background:var(--brass); margin:14px 0 2px; opacity:.7;}
.stat-num{font-family:var(--f-display); font-size:clamp(2.1rem,4vw,3.4rem); color:var(--brass-l); font-weight:600;}
.stat-label{font-family:var(--f-mono); font-size:11px; letter-spacing:.11em; text-transform:uppercase; color:var(--stone); margin-top:8px;}
@media (max-width:767px){
  .stats-grid{grid-template-columns:repeat(2,1fr); row-gap:36px;}
  .stat-cell:nth-child(odd){border-right:1px solid rgba(251,250,247,.1);}
  .stat-cell:nth-child(2), .stat-cell:nth-child(4){border-right:0;}
}

/* ---------- section basics ---------- */
section{padding:110px 0;}
@media (max-width:767px){section{padding:70px 0;}}
.section-head{max-width:640px; margin-bottom:56px;}
.section-title{font-size:clamp(1.9rem,3.6vw,3rem); line-height:1.08;}
.lead-p{font-size:17px; color:#4a4f4a; line-height:1.75; max-width:560px;}

/* reveal-on-scroll — stronger, more dramatic motion */
.reveal{opacity:0; transform:translateY(64px) scale(.96); transition:opacity 1s var(--ease), transform 1s var(--ease); will-change:transform,opacity;}
.reveal.is-visible{opacity:1; transform:translateY(0) scale(1);}
.reveal-left{opacity:0; transform:translateX(-90px); transition:opacity 1s var(--ease), transform 1s var(--ease);}
.reveal-left.is-visible{opacity:1; transform:translateX(0);}
.reveal-right{opacity:0; transform:translateX(90px); transition:opacity 1s var(--ease), transform 1s var(--ease);}
.reveal-right.is-visible{opacity:1; transform:translateX(0);}
.reveal-zoom{opacity:0; transform:scale(.8); transition:opacity 1.1s var(--ease), transform 1.1s var(--ease);}
.reveal-zoom.is-visible{opacity:1; transform:scale(1);}
.reveal-d1{transition-delay:.1s;} .reveal-d2{transition-delay:.2s;} .reveal-d3{transition-delay:.3s;} .reveal-d4{transition-delay:.4s;} .reveal-d5{transition-delay:.5s;} .reveal-d6{transition-delay:.6s;}

/* ---------- about split ---------- */
.about-media{position:relative;}
.about-media .frame-box{position:relative; overflow:hidden;}
.about-media img{width:100%; height:520px; object-fit:cover; transition:transform 1.2s var(--ease);}
.about-media:hover img{transform:scale(1.05);}
.about-media .brackets i{position:absolute; width:26px; height:26px; border:1.5px solid var(--brass); z-index:2;}
.about-media .brackets i:nth-child(1){top:-1px; left:-1px; border-right:0; border-bottom:0;}
.about-media .brackets i:nth-child(2){bottom:-1px; right:-1px; border-left:0; border-top:0;}
.about-badge{
  position:absolute; left:-28px; bottom:-28px; background:var(--brass); color:var(--white);
  padding:22px 26px; font-family:var(--f-display); z-index:3; max-width:200px;
}
.about-badge .n{font-size:2.2rem; font-weight:600; line-height:1;}
.about-badge .t{font-family:var(--f-mono); font-size:10.5px; letter-spacing:.08em; text-transform:uppercase; margin-top:6px;}
@media (max-width:991px){.about-badge{left:14px; bottom:14px;}}

.check-list{list-style:none; padding:0; margin:26px 0;}
.check-list li{display:flex; gap:12px; align-items:flex-start; padding:9px 0; color:#3c413c; font-size:15px;}
.check-list li::before{content:"◆"; color:var(--brass); font-size:9px; margin-top:6px;}

/* ---------- services ---------- */
.svc-card{
  background:var(--white); border:1px solid rgba(20,23,26,.08); padding:40px 32px;
  height:100%; position:relative; overflow:hidden; transition:transform .5s var(--ease), border-color .5s, box-shadow .5s;
}
.svc-card:hover{transform:translateY(-10px); border-color:var(--brass); box-shadow:0 26px 50px rgba(20,23,26,.1);}
.svc-icon{
  width:66px; height:66px; border-radius:50%; display:flex; align-items:center; justify-content:center;
  font-size:24px; color:var(--white); margin-bottom:24px; position:relative; z-index:1;
  transition:transform .55s var(--ease), border-radius .55s var(--ease);
}
.svc-icon.i-brass{background:var(--brass);}
.svc-icon.i-blue{background:var(--blueprint);}
.svc-card:hover .svc-icon{transform:rotate(-10deg) scale(1.1); border-radius:38% 62% 63% 37% / 41% 44% 56% 59%;}
.svc-num{
  position:absolute; top:24px; right:28px; font-family:var(--f-mono); font-size:34px; color:rgba(20,23,26,.06);
  font-weight:700; line-height:1;
}
.svc-card h3{font-size:1.28rem; margin:0 0 12px;}
.svc-card p{color:#585d58; font-size:14.5px; line-height:1.7; margin:0;}
.svc-card .arrow{
  position:absolute; right:26px; bottom:26px; width:34px; height:34px; border-radius:50%;
  border:1px solid rgba(20,23,26,.15); display:flex; align-items:center; justify-content:center;
  transition:all .4s var(--ease); color:var(--charcoal);
}
.svc-card:hover .arrow{background:var(--brass); border-color:var(--brass); color:var(--white); transform:rotate(45deg);}

/* ---------- portfolio teaser / gallery grid ---------- */
.gal-item{position:relative; overflow:hidden; cursor:pointer; background:var(--charcoal);}
.gal-item .ratio-box{aspect-ratio:4/5; overflow:hidden;}
.gal-item.wide .ratio-box{aspect-ratio:16/10;}
.gal-item img{width:100%; height:100%; object-fit:cover; transition:transform .8s var(--ease), filter .5s;}
.gal-item:hover img{transform:scale(1.08); filter:saturate(1.05);}
.gal-overlay{
  position:absolute; inset:0; display:flex; flex-direction:column; justify-content:flex-end; padding:22px;
  background:linear-gradient(180deg, rgba(20,23,26,0) 38%, rgba(20,23,26,.92) 100%);
  opacity:1; transition:opacity .4s;
}
.gal-cat{
  font-family:var(--f-mono); font-size:10.5px; letter-spacing:.1em; text-transform:uppercase; color:var(--brass-l);
  display:inline-flex; align-items:center; gap:6px;
}
.gal-cat::before{content:""; width:14px; height:1px; background:var(--brass-l);}
.gal-title{font-family:var(--f-display); color:var(--white); font-size:1.15rem; margin-top:8px; line-height:1.25; text-shadow:0 2px 10px rgba(0,0,0,.4);}
.gal-plus{
  position:absolute; top:16px; right:16px; width:38px; height:38px; border-radius:50%;
  background:rgba(251,250,247,.14); -webkit-backdrop-filter:blur(6px); backdrop-filter:blur(6px); color:var(--white);
  display:flex; align-items:center; justify-content:center; opacity:0; transform:scale(.7);
  transition:all .35s var(--ease); border:1px solid rgba(251,250,247,.3);
}
.gal-item:hover .gal-plus{opacity:1; transform:scale(1);}

/* ---------- masonry gallery ---------- */
.masonry{column-count:3; column-gap:22px;}
.masonry .gal-item{break-inside:avoid; margin-bottom:22px; width:100%; display:block;}
.masonry .gal-item .ratio-box{aspect-ratio:auto;}
.masonry .gal-item img{height:auto;}
@media (max-width:991px){.masonry{column-count:2; column-gap:16px;}}
@media (max-width:575px){.masonry{column-count:2; column-gap:10px;} .masonry .gal-item{margin-bottom:10px;} .gal-title{font-size:.85rem;} .gal-cat{font-size:8.5px;} .gal-overlay{padding:12px;}}

/* ---------- homepage project slider (uniform-size cards) ---------- */
.port-track{
  display:flex; gap:24px; overflow-x:auto; scroll-snap-type:x mandatory; scroll-behavior:smooth;
  padding-bottom:14px; -ms-overflow-style:none; scrollbar-width:none;
}
.port-track::-webkit-scrollbar{display:none;}
.port-card{flex:0 0 300px; scroll-snap-align:start;}
.port-card .ratio-box{aspect-ratio:3/4;}
@media (max-width:991px){.port-card{flex-basis:calc(50% - 12px);}}
@media (max-width:575px){.port-card{flex-basis:calc(50% - 8px);} .port-track{gap:16px;}}
.port-nav{display:flex; gap:14px; justify-content:flex-end; margin-top:22px;}
.port-nav button{
  width:54px; height:54px; border-radius:50%; border:1.5px solid rgba(20,23,26,.16); background:var(--white);
  display:flex; align-items:center; justify-content:center; cursor:pointer; transition:all .4s var(--ease);
  color:var(--charcoal); font-size:15px; position:relative; overflow:hidden;
}
.port-nav button::before{
  content:""; position:absolute; inset:0; background:var(--brass); border-radius:50%;
  transform:scale(0); transition:transform .4s var(--ease); z-index:-1;
}
.port-nav button:hover{border-color:var(--brass); color:var(--white); transform:translateY(-3px); box-shadow:0 14px 26px -8px rgba(169,118,62,.45);}
.port-nav button:hover::before{transform:scale(1);}
.port-nav button:active{transform:translateY(-1px) scale(.94);}

/* ---------- lightbox — full-screen viewer with topbar + filmstrip ---------- */
.lb-overlay{
  position:fixed; inset:0; z-index:2000; background:rgba(15,17,15,.98);
  display:flex; flex-direction:column;
  opacity:0; visibility:hidden; transition:opacity .35s var(--ease);
}
.lb-overlay.is-open{opacity:1; visibility:visible;}

.lb-topbar{
  display:flex; align-items:center; justify-content:space-between;
  padding:20px 26px; flex:none; position:relative; z-index:3;
}
.lb-counter{
  font-family:var(--f-mono); font-size:13px; letter-spacing:.05em; color:rgba(251,250,247,.65);
}
.lb-counter .cur{color:var(--white); font-weight:600;}
.lb-tools{display:flex; align-items:center; gap:10px;}
.lb-tools button, .lb-close{
  width:40px; height:40px; border-radius:50%; border:1px solid rgba(251,250,247,.22);
  background:rgba(251,250,247,.04); color:rgba(251,250,247,.85); font-size:14px;
  display:flex; align-items:center; justify-content:center; cursor:pointer;
  transition:all .3s var(--ease); -webkit-backdrop-filter:blur(4px); backdrop-filter:blur(4px);
}
.lb-tools button:hover, .lb-close:hover{background:var(--brass); border-color:var(--brass); color:var(--white); transform:translateY(-2px);}
.lb-close{font-size:16px;}

.lb-stage{
  flex:1; min-height:0; position:relative;
  display:flex; align-items:center; justify-content:center;
  padding:0 96px; touch-action:pan-y;
}
.lb-stage img{
  max-height:100%; max-width:100%; width:auto; height:auto; object-fit:contain;
  box-shadow:0 30px 80px rgba(0,0,0,.55); opacity:0; transform:scale(.96);
  transition:opacity .5s var(--ease), transform .3s var(--ease); cursor:zoom-in;
}
.lb-overlay.is-open .lb-stage img{opacity:1; transform:scale(1);}

.lb-prev, .lb-next{
  position:absolute; z-index:3; top:50%; transform:translateY(-50%);
  width:52px; height:52px; border-radius:50%;
  background:rgba(251,250,247,.05); -webkit-backdrop-filter:blur(6px); backdrop-filter:blur(6px);
  border:1.5px solid rgba(251,250,247,.3); color:var(--white); font-size:15px;
  cursor:pointer; display:flex; align-items:center; justify-content:center;
  transition:all .35s var(--ease); overflow:hidden; isolation:isolate;
}
.lb-prev::before, .lb-next::before{
  content:""; position:absolute; inset:0; background:var(--brass); border-radius:50%;
  transform:scale(0); transition:transform .35s var(--ease); z-index:-1;
}
.lb-prev{left:22px;} .lb-next{right:22px;}
.lb-prev:hover, .lb-next:hover{border-color:var(--brass); transform:translateY(-50%) translateY(-2px);}
.lb-prev:hover::before, .lb-next:hover::before{transform:scale(1);}

.lb-bottom{flex:none; padding:16px 24px 24px; text-align:center; position:relative; z-index:3;}
.lb-title{font-family:var(--f-body); font-size:14.5px; color:var(--paper); margin-bottom:16px;}
.lb-title b{font-family:var(--f-display); color:var(--brass-l); font-weight:600; letter-spacing:0; margin-right:8px;}
.lb-title span{color:rgba(251,250,247,.55); font-size:13px;}

.lb-filmstrip{
  display:flex; gap:10px; justify-content:flex-start; overflow-x:auto; padding:4px 4px 8px;
  max-width:100%; margin:0 auto; scrollbar-width:thin; scrollbar-color:rgba(251,250,247,.3) transparent;
}
.lb-filmstrip::-webkit-scrollbar{height:5px;}
.lb-filmstrip::-webkit-scrollbar-thumb{background:rgba(251,250,247,.25); border-radius:3px;}
.lb-filmstrip img{
  width:78px; height:56px; object-fit:cover; border-radius:2px; flex:none;
  opacity:.5; cursor:pointer; border:2px solid transparent;
  transition:all .3s var(--ease);
}
.lb-filmstrip img:hover{opacity:.85;}
.lb-filmstrip img.active{opacity:1; border-color:var(--brass-l); transform:scale(1.05);}

@media (max-width:767px){
  .lb-topbar{padding:14px 16px;}
  .lb-tools button, .lb-close{width:34px; height:34px; font-size:12px;}
  .lb-tools .lb-zoom-in, .lb-tools .lb-zoom-out, .lb-tools .lb-fullscreen{display:none;}
  .lb-stage{padding:0 14px;}
  .lb-prev, .lb-next{width:40px; height:40px; font-size:12px;}
  .lb-prev{left:8px;} .lb-next{right:8px;}
  .lb-filmstrip img{width:56px; height:42px;}
  .lb-bottom{padding:12px 14px 18px;}
}

/* ---------- CTA band ---------- */
.cta-band{
  background:var(--blueprint); color:var(--white); padding:80px 0;
  background-image:
    linear-gradient(var(--blueprint), var(--blueprint)),
    repeating-linear-gradient(0deg, rgba(251,250,247,.05) 0 1px, transparent 1px 64px),
    repeating-linear-gradient(90deg, rgba(251,250,247,.05) 0 1px, transparent 1px 64px);
  background-blend-mode:normal;
}
.cta-band h2{color:var(--white); font-size:clamp(1.8rem,3.4vw,2.8rem); max-width:640px;}
.cta-band p{color:rgba(251,250,247,.75); max-width:480px; margin-top:14px;}

.cta-icon-badge{
  position:relative; width:118px; height:118px; border-radius:50%; display:flex; align-items:center; justify-content:center;
  background:rgba(251,250,247,.1); border:1px solid rgba(251,250,247,.25); color:var(--white);
  font-size:44px; margin-bottom:22px; transition:transform .5s var(--ease);
}
.cta-icon-badge::before, .cta-icon-badge::after{
  content:""; position:absolute; inset:0; border-radius:50%; border:1px solid rgba(251,250,247,.35);
  animation:pingRing 2.8s ease-out infinite;
}
.cta-icon-badge::after{animation-delay:1.4s;}
@keyframes pingRing{0%{transform:scale(1); opacity:.8;}100%{transform:scale(1.5); opacity:0;}}
.cta-icon-badge:hover{transform:rotate(-6deg) scale(1.05);}
.cta-icon-badge.dark{background:rgba(169,118,62,.1); border-color:rgba(169,118,62,.3); color:var(--brass);}
.cta-icon-badge.dark::before, .cta-icon-badge.dark::after{border-color:rgba(169,118,62,.45);}
@media (max-width:991px){.cta-icon-badge{margin:0 auto 18px; width:96px; height:96px; font-size:36px;}}

/* ---------- footer ---------- */
footer{background:var(--charcoal); color:rgba(251,250,247,.82); padding-top:0; position:relative; overflow:hidden;}
.foot-accent{height:4px; background:linear-gradient(90deg, var(--brass) 0%, var(--blueprint) 50%, var(--brass) 100%);}
.foot-word{
  position:absolute; left:50%; top:40px; transform:translateX(-50%); z-index:0; pointer-events:none;
  font-family:var(--f-display); font-size:11vw; font-weight:600; color:rgba(251,250,247,.025); white-space:nowrap;
}
footer .container-xl{position:relative; z-index:1;}

/* premium footer CTA strip */
.foot-cta{
  display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:24px;
  padding:52px 0; border-bottom:1px solid rgba(251,250,247,.1);
  margin-top:0;
}
.foot-cta-text .eyebrow{color:var(--brass-l); margin-bottom:10px;}
.foot-cta-text h3{color:var(--white); font-size:clamp(1.4rem,2.6vw,2rem); margin:0; max-width:480px;}
.foot-cta-actions{display:flex; gap:14px; flex-wrap:wrap;}
.foot-cta-phone{display:flex; align-items:center; gap:14px;}
.foot-cta-phone .ic{
  width:50px; height:50px; border-radius:50%; border:1px solid var(--brass); color:var(--brass-l);
  display:flex; align-items:center; justify-content:center; font-size:18px; flex:none;
}
.foot-cta-phone span{display:block; font-family:var(--f-mono); font-size:10.5px; letter-spacing:.08em; text-transform:uppercase; color:rgba(251,250,247,.6);}
.foot-cta-phone a{display:block; font-family:var(--f-display); font-size:1.3rem; color:var(--white); font-weight:600;}
.foot-cta-phone a:hover{color:var(--brass-l);}

.foot-top{padding:64px 0 0;}
.foot-desc{font-size:14px; line-height:1.85; max-width:280px; color:rgba(251,250,247,.7);}
.foot-grid{display:grid; grid-template-columns:1.5fr 1fr 1fr 1.2fr; gap:40px; padding-bottom:60px; border-bottom:1px solid rgba(251,250,247,.1);}
.foot-logo{display:flex; align-items:center; color:var(--white); margin-bottom:6px; padding:10px 16px; background:rgba(251,250,247,.05); border-radius:8px; width:fit-content;}
.foot-logo img{height:50px; width:auto; filter:brightness(0) invert(1);}
footer h5{
  font-family:var(--f-mono); color:var(--white); font-size:13.5px; letter-spacing:.1em; text-transform:uppercase;
  margin-bottom:26px; padding-bottom:16px; position:relative;
  display:flex; align-items:center; gap:14px;
}
.ic-ring{
  width:38px; height:38px; border-radius:50%; flex:none; padding:2px;
  background:conic-gradient(from 180deg, var(--brass), var(--blueprint), var(--brass));
  display:flex; align-items:center; justify-content:center;
}
.ic-ring i{
  width:100%; height:100%; border-radius:50%; background:var(--charcoal); color:var(--brass-l);
  display:flex; align-items:center; justify-content:center; font-size:14px; line-height:1;
}
footer h5::after{content:""; position:absolute; left:0; bottom:0; width:34px; height:2px; background:linear-gradient(90deg,var(--brass),var(--blueprint));}
.foot-links{list-style:none; padding:0; margin:0;}
.foot-links li{margin-bottom:13px;}
.foot-links a{color:rgba(251,250,247,.72); font-size:14px; transition:all .3s; display:inline-flex; align-items:center; gap:11px;}
.foot-links a:hover{color:var(--white);}
.foot-links a i{
  width:24px; height:24px; border-radius:50%; border:1px solid rgba(251,250,247,.16); background:rgba(251,250,247,.04);
  display:flex; align-items:center; justify-content:center; font-size:9px; color:var(--brass-l); flex:none; transition:all .3s;
}
.foot-links a:hover i{background:var(--brass); border-color:var(--brass); color:var(--white); transform:scale(1.12) rotate(-8deg);}
.foot-links li.addr-item a{align-items:flex-start;}
.foot-links li.addr-item a i{
  width:32px; height:32px; border-radius:9px; font-size:14px; margin-top:0;
  background:rgba(169,118,62,.15); border-color:rgba(169,118,62,.3); color:var(--brass-l);
}
.foot-links li.addr-item a:hover i{background:var(--brass); border-color:var(--brass); transform:none;}
.foot-bottom{display:flex; justify-content:space-between; align-items:center; padding:24px 0; font-size:12px; font-family:var(--f-mono); flex-wrap:wrap; gap:14px; color:rgba(251,250,247,.55);}
.foot-legal{display:flex; gap:22px; flex-wrap:wrap;}
.foot-legal a{color:rgba(251,250,247,.62); transition:color .25s;}
.foot-legal a:hover{color:var(--brass-l);}
.foot-social{display:flex; gap:12px;}
.foot-social a{width:40px; height:40px; border:1px solid rgba(251,250,247,.2); border-radius:50%; display:flex; align-items:center; justify-content:center; transition:all .35s var(--ease); color:var(--white); position:relative; overflow:hidden; isolation:isolate;}
.foot-social a::before{content:""; position:absolute; inset:0; background:var(--brass); border-radius:50%; transform:scale(0); transition:transform .35s var(--ease); z-index:-1;}
.foot-social a:hover{border-color:var(--brass); transform:translateY(-4px);}
.foot-social a:hover::before{transform:scale(1);}
@media (max-width:767px){
  .foot-grid{grid-template-columns:1fr 1fr; row-gap:36px;} .foot-word{display:none;}
  .foot-cta{flex-direction:column; align-items:flex-start;}
  .foot-cta-actions{width:100%;}
  .foot-bottom{flex-direction:column; align-items:flex-start; text-align:left;}
}
@media (max-width:575px){
  .foot-top{padding:48px 0 0;}
  .foot-grid{grid-template-columns:1fr; row-gap:34px; padding-bottom:40px;}
  .foot-desc{max-width:100%;}
  .foot-cta{padding:40px 0; gap:26px;}
  .foot-cta-text h3{font-size:1.3rem;}
  .foot-cta-actions{flex-direction:column; align-items:stretch; gap:16px;}
  .foot-cta-phone{width:100%;}
  .foot-cta-actions .btn-brass{justify-content:center; width:100%;}
  .foot-bottom{padding:20px 0; gap:16px;}
  .foot-legal{gap:10px 18px; width:100%;}
}

/* ---------- floating action buttons ---------- */
.fab-stack-left{position:fixed; left:22px; bottom:24px; z-index:900; display:flex; flex-direction:column; gap:14px;}
.fab-btn{
  width:56px; height:56px; border-radius:50%; display:flex; align-items:center; justify-content:center;
  color:#fff; font-size:22px; position:relative; transition:transform .35s var(--ease), box-shadow .35s;
}
.fab-btn:hover{transform:translateY(-4px) scale(1.05);}
.fab-btn .fab-label{
  position:absolute; left:68px; top:50%; transform:translateY(-50%) translateX(-8px); white-space:nowrap;
  background:var(--charcoal); color:var(--white); font-family:var(--f-mono); font-size:11.5px; letter-spacing:.04em;
  padding:8px 14px; border-radius:6px; opacity:0; visibility:hidden; transition:all .3s var(--ease); pointer-events:none;
}
.fab-btn .fab-label::before{content:""; position:absolute; left:-5px; top:50%; transform:translateY(-50%); border:5px solid transparent; border-right-color:var(--charcoal);}
.fab-btn:hover .fab-label{opacity:1; visibility:visible; transform:translateY(-50%) translateX(0);}
.fab-whatsapp{background:#25D366; box-shadow:0 10px 26px rgba(37,211,102,.4); animation:pulseGreen 2.6s infinite;}
.fab-call{background:var(--brass); box-shadow:0 10px 26px rgba(169,118,62,.4); animation:pulseBrass 2.6s infinite 1.3s;}
@keyframes pulseGreen{0%{box-shadow:0 0 0 0 rgba(37,211,102,.45);}70%{box-shadow:0 0 0 16px rgba(37,211,102,0);}100%{box-shadow:0 0 0 0 rgba(37,211,102,0);}}
@keyframes pulseBrass{0%{box-shadow:0 0 0 0 rgba(169,118,62,.45);}70%{box-shadow:0 0 0 16px rgba(169,118,62,0);}100%{box-shadow:0 0 0 0 rgba(169,118,62,0);}}

.fab-top{
  position:fixed; right:22px; bottom:24px; z-index:900; width:52px; height:52px; border-radius:50%;
  background:var(--charcoal); color:var(--white); border:1px solid rgba(251,250,247,.15);
  display:flex; align-items:center; justify-content:center; font-size:18px; cursor:pointer;
  opacity:0; visibility:hidden; transform:translateY(20px) scale(.8);
  transition:opacity .4s var(--ease), transform .4s var(--ease), background .3s, box-shadow .3s;
}
.fab-top.is-visible{opacity:1; visibility:visible; transform:translateY(0) scale(1);}
.fab-top:hover{background:var(--brass); box-shadow:0 12px 28px rgba(169,118,62,.4); transform:translateY(-4px);}
.fab-top i{animation:floatArrow 1.8s ease-in-out infinite;}
@keyframes floatArrow{0%,100%{transform:translateY(0);}50%{transform:translateY(-3px);}}
@media (max-width:575px){
  .fab-stack-left{left:14px; bottom:18px; gap:10px;}
  .fab-btn{width:48px; height:48px; font-size:19px;}
  .fab-btn .fab-label{display:none;}
  .fab-top{right:14px; bottom:18px; width:44px; height:44px;}
}

/* ---------- inner page hero (about/services/gallery/contact) ---------- */
.page-hero{
  position:relative; background:var(--charcoal); overflow:hidden;
  padding:158px 0 52px;
}
.page-hero img{position:absolute; inset:0; width:100%; height:100%; object-fit:cover; opacity:.9;}
.page-hero::after{
  content:""; position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(20,23,26,.15) 0%, rgba(20,23,26,.2) 35%, rgba(20,23,26,.88) 100%);
}
.page-hero::before{
  content:""; position:absolute; inset:0; z-index:1;
  background:linear-gradient(90deg, rgba(20,23,26,.75) 0%, rgba(20,23,26,.15) 55%);
}
.page-hero .container-xl{position:relative; z-index:2;}
.page-hero-frame{position:absolute; inset:24px; z-index:2; pointer-events:none; border:1px solid rgba(251,250,247,.15);}
.page-hero-frame i{position:absolute; width:20px; height:20px; border:1.5px solid var(--brass-l);}
.page-hero-frame i:nth-child(1){top:-1px; left:-1px; border-right:0; border-bottom:0;}
.page-hero-frame i:nth-child(2){top:-1px; right:-1px; border-left:0; border-bottom:0;}
.page-hero-frame i:nth-child(3){bottom:-1px; left:-1px; border-right:0; border-top:0;}
.page-hero-frame i:nth-child(4){bottom:-1px; right:-1px; border-left:0; border-top:0;}
@media (max-width:767px){.page-hero-frame{display:none;} .page-hero{padding:128px 0 42px;}}
.page-hero .eyebrow{color:var(--brass-l); text-shadow:0 2px 12px rgba(0,0,0,.5);}
.page-hero .eyebrow::before{background:var(--brass-l);}
.page-hero h1{
  color:var(--white); font-size:clamp(2rem,4.4vw,3.4rem); text-shadow:0 4px 24px rgba(0,0,0,.55);
  letter-spacing:-.01em; margin:0;
}
.breadcrumb-lk{
  display:inline-flex; align-items:center; gap:12px; margin-top:22px;
  padding:11px 24px; background:rgba(20,23,26,.35); -webkit-backdrop-filter:blur(14px); backdrop-filter:blur(14px);
  border:1px solid rgba(251,250,247,.14); border-left:2px solid var(--brass);
  border-radius:6px;
  font-family:var(--f-mono); font-size:12px; letter-spacing:.04em; color:var(--stone);
  box-shadow:0 16px 36px -18px rgba(0,0,0,.6);
}
.breadcrumb-lk a{
  color:var(--stone); display:inline-flex; align-items:center; gap:8px; transition:color .25s;
}
.breadcrumb-lk a i{color:var(--brass-l); font-size:11px;}
.breadcrumb-lk a:hover{color:var(--white);}
.breadcrumb-lk .sep{color:rgba(251,250,247,.3); font-size:9px; display:flex;}
.breadcrumb-lk .current{
  color:var(--brass-l); text-transform:uppercase; letter-spacing:.06em; font-weight:600;
  display:inline-flex; align-items:center; gap:8px;
}
.breadcrumb-lk .current::before{content:""; width:5px; height:5px; border-radius:50%; background:var(--brass-l); flex:none;}
@media (max-width:575px){.breadcrumb-lk{padding:9px 16px; gap:9px; font-size:11px;}}

/* ---------- forms ---------- */
.lk-form .form-control, .lk-form .form-select{
  background:transparent; border:0; border-bottom:1px solid rgba(20,23,26,.22);
  border-radius:0; padding:14px 4px; font-family:var(--f-body); font-size:15px; color:var(--ink);
}
.lk-form .form-control:focus, .lk-form .form-select:focus{
  box-shadow:none; border-color:var(--brass); background:transparent;
}
.lk-form label{font-family:var(--f-mono); font-size:11px; letter-spacing:.08em; text-transform:uppercase; color:var(--stone); margin-bottom:6px; display:block;}
/* on light/white cards (contact form, admin panel) the light stone label reads too faint — darken it there */
.admin-card label{color:rgba(20,23,26,.55);}

/* contact info list */
.info-row{display:flex; gap:18px; align-items:flex-start; padding:22px 0; border-bottom:1px solid rgba(251,250,247,.1);}
.info-row .ic{width:44px; height:44px; border:1px solid var(--brass); color:var(--brass-l); border-radius:50%; display:flex; align-items:center; justify-content:center; flex:none;}
.info-row h6{font-family:var(--f-mono); font-size:11px; letter-spacing:.08em; text-transform:uppercase; color:var(--stone); margin:0 0 6px;}
.info-row p, .info-row a{color:var(--white); margin:0; font-size:15px;}

/* ---------- admin panel ---------- */
.admin-shell{min-height:100vh; background:var(--charcoal);}
.admin-card{background:var(--white); border-radius:2px; padding:34px;}
.admin-thumb{width:100%; aspect-ratio:4/3; object-fit:cover; background:var(--paper-2);}
.dropzone{
  border:1.5px dashed rgba(20,23,26,.25); padding:34px; text-align:center; cursor:pointer;
  transition:all .3s; font-family:var(--f-mono); font-size:12.5px; letter-spacing:.06em; color:#666;
}
.dropzone:hover, .dropzone.drag{border-color:var(--brass); color:var(--brass); background:rgba(169,118,62,.04);}
.tag-pill{
  display:inline-block; font-family:var(--f-mono); font-size:10px; letter-spacing:.06em; text-transform:uppercase;
  background:var(--paper-2); padding:4px 9px; color:#555;
}
.admin-item{border:1px solid rgba(20,23,26,.1); position:relative;}
.admin-item .del-btn{
  position:absolute; top:8px; right:8px; width:30px; height:30px; border-radius:50%; background:rgba(20,23,26,.75);
  color:#fff; border:0; cursor:pointer; display:flex; align-items:center; justify-content:center; transition:background .3s;
}
.admin-item .del-btn:hover{background:#b0392f;}

/* ---------- legal / policy pages ---------- */
.legal-content h2{font-size:1.5rem; margin-top:44px; margin-bottom:14px;}
.legal-content h2:first-child{margin-top:0;}
.legal-content p, .legal-content li{color:#4a4f4a; line-height:1.85; font-size:15px;}
.legal-content ul{padding-left:20px;}
.legal-updated{font-family:var(--f-mono); font-size:12px; color:var(--brass); letter-spacing:.06em; text-transform:uppercase; margin-bottom:30px; display:inline-block;}

/* utilities */
.text-brass{color:var(--brass);} .bg-charcoal{background:var(--charcoal);} .text-stone{color:var(--stone);}
.hairline{height:1px; background:rgba(20,23,26,.1); border:0; margin:0;}

/* =========================================================================
   PREMIUM HERO CAROUSEL — cinematic, asymmetric, fully responsive
   ========================================================================= */
.lk-hero{ position:relative; padding:0; }
.lk-hero, .lk-hero #lkHeroCarousel{ height:clamp(520px, calc(100vh - 126px), 680px); }
/* safety-net fallback (matches Bootstrap's own carousel base rules) so the
   hero never breaks into a tall stacked/blank mess if the Bootstrap CDN is
   slow, blocked, or fails to load for any reason */
.lk-hero .carousel-inner{ position:relative; width:100%; overflow:hidden; }
.lk-hero .carousel-item{ display:none; float:left; width:100%; margin-right:-100%; backface-visibility:hidden; }
.lk-hero .carousel-item.active{ display:block; }
.lk-hero .carousel-inner,
.lk-hero .carousel-item{ height:100%; }
.lk-hero .carousel-item{ position:relative; background:var(--charcoal); overflow:hidden; }

.lk-hero-media{ position:absolute; inset:0; z-index:0; overflow:hidden; }
.lk-hero-img{
  width:100%; height:100%; object-fit:cover; object-position:center;
  transform:scale(1.12);
}
.carousel-item.active .lk-hero-img{ animation:cineDrift 16s ease-in-out infinite alternate; }
@keyframes cineDrift{
  0%{transform:scale(1.12) translate(0,0);}
  50%{transform:scale(1.2) translate(-1.2%,-1%);}
  100%{transform:scale(1.12) translate(1%,.6%);}
}
.lk-hero-overlay{
  position:absolute; inset:0;
  background:
    linear-gradient(90deg, rgba(20,23,26,.86) 0%, rgba(20,23,26,.45) 46%, rgba(20,23,26,.2) 72%, rgba(20,23,26,.55) 100%),
    linear-gradient(180deg, rgba(20,23,26,.35) 0%, transparent 30%, transparent 68%, rgba(20,23,26,.75) 100%);
}
/* moving light sheen for a premium "in motion" feel */
.lk-hero-media::after{
  content:""; position:absolute; inset:0; z-index:1; pointer-events:none; mix-blend-mode:overlay;
  background:linear-gradient(120deg, transparent 30%, rgba(255,255,255,.14) 48%, transparent 66%);
  background-size:260% 260%; background-position:130% 20%; opacity:0;
}
.carousel-item.active .lk-hero-media::after{ opacity:1; animation:sheen 9s ease-in-out .6s infinite; }
@keyframes sheen{
  0%{background-position:130% 20%;}
  50%{background-position:-20% -10%;}
  100%{background-position:130% 20%;}
}

/* ---- content: left-aligned, editorial, staggered reveal ---- */
.lk-hero-content{
  position:relative; z-index:3; height:100%;
  display:flex; flex-direction:column; justify-content:flex-end;
  padding:0 8% 100px; max-width:760px;
}
.hero-tag{
  display:inline-flex; align-items:center; gap:14px;
  font-family:var(--f-mono); font-size:12px; letter-spacing:.16em; text-transform:uppercase;
  color:var(--brass-l); margin-bottom:22px;
  opacity:0; transform:translateY(16px);
}
.hero-tag span{
  display:inline-flex; align-items:center; justify-content:center;
  width:26px; height:26px; border:1px solid var(--brass-l); border-radius:50%;
  font-size:10.5px; color:var(--white);
}
.hero-tag::after{content:""; width:40px; height:1px; background:var(--brass-l);}
.hero-title{
  font-family:var(--f-display); font-weight:600; color:var(--white);
  font-size:clamp(2.1rem, 4.6vw, 4.1rem); line-height:1.08;
  text-shadow:0 8px 34px rgba(0,0,0,.5);
  opacity:0; transform:translateY(28px);
}
.hero-sub{
  font-family:var(--f-body); color:rgba(251,250,247,.82); font-size:clamp(14px,1.4vw,17px);
  max-width:460px; line-height:1.75; margin:22px 0 0;
  opacity:0; transform:translateY(20px);
}
.hero-cta{
  margin-top:36px; display:flex; gap:16px; flex-wrap:wrap;
  opacity:0; transform:translateY(20px);
}
.carousel-item.active .hero-tag{ animation:riseIn .8s var(--ease) .35s forwards; }.carousel-item.active .hero-title{ animation:riseIn .9s var(--ease) .5s forwards; }
.carousel-item.active .hero-sub{ animation:riseIn .9s var(--ease) .68s forwards; }
.carousel-item.active .hero-cta{ animation:riseIn .9s var(--ease) .82s forwards; }
@keyframes riseIn{ to{ opacity:1; transform:translateY(0); } }

/* glass-style secondary button — premium companion to .btn-brass */
.btn-glass{
  display:inline-flex; align-items:center; gap:10px;
  padding:15px 28px; font-family:var(--f-body); font-weight:500; font-size:14.5px;
  color:var(--white); border:1px solid rgba(251,250,247,.45); border-radius:2px;
  background:rgba(251,250,247,.06);
  -webkit-backdrop-filter:blur(8px); backdrop-filter:blur(8px);
  transition:all .4s var(--ease); text-decoration:none;
}
.btn-glass i{ transition:transform .4s var(--ease); }
.btn-glass:hover{ background:var(--white); color:var(--charcoal); border-color:var(--white); transform:translateY(-2px); }
.btn-glass:hover i{ transform:translateX(4px); }

/* ---- decorative blueprint corner frame ---- */
.lk-hero-frame{ position:absolute; inset:30px; z-index:3; pointer-events:none; border:1px solid rgba(251,250,247,.18); }
.lk-hero-frame i{ position:absolute; width:22px; height:22px; border:1.5px solid var(--brass-l); }
.lk-hero-frame i:nth-child(1){ top:-1px; left:-1px; border-right:0; border-bottom:0; }
.lk-hero-frame i:nth-child(2){ top:-1px; right:-1px; border-left:0; border-bottom:0; }
.lk-hero-frame i:nth-child(3){ bottom:-1px; left:-1px; border-right:0; border-top:0; }
.lk-hero-frame i:nth-child(4){ bottom:-1px; right:-1px; border-left:0; border-top:0; }

.lk-hero-coord{
  position:absolute; z-index:3; right:52px; top:44px; text-align:right;
  font-family:var(--f-mono); font-size:11px; letter-spacing:.06em; color:rgba(251,250,247,.72); line-height:1.6;
}
.lk-hero-coord .coord{ color:var(--brass-l); }

/* ---- footer: progress lines + numeric counter ---- */
.lk-hero-footer{
  position:absolute; z-index:4; left:52px; right:52px; bottom:46px;
  display:flex; align-items:center; justify-content:space-between; gap:20px;
}
.lk-hero-progress{ display:flex; gap:10px; align-items:center; }
.lk-hero-progress button{
  width:40px; height:3px; background:rgba(251,250,247,.25); border:0; cursor:pointer; padding:0;
  border-radius:3px; position:relative; overflow:hidden; transition:background .3s;
}
.lk-hero-progress button .fill{ position:absolute; inset:0; width:0%; background:var(--brass-l); border-radius:3px; }
.lk-hero-progress button.active .fill{ animation:fillBar 6.5s linear forwards; }
@keyframes fillBar{ from{ width:0%; } to{ width:100%; } }

.lk-hero-counter{
  display:flex; align-items:center; gap:12px;
  font-family:var(--f-mono); color:rgba(251,250,247,.55); font-size:13px; letter-spacing:.05em;
}
.lk-hero-counter .cur{ color:var(--white); font-size:20px; font-weight:600; font-family:var(--f-display); }
.lk-hero-counter .counter-line{ width:28px; height:1px; background:rgba(251,250,247,.35); display:inline-block; }

/* ---- prev / next arrows: minimal ghost circles, bottom-right stacked over content ---- */
.lk-hero-arrow{
  position:absolute; z-index:4; bottom:130px; z-index:5;
  width:54px; height:54px; border-radius:50%; border:1px solid rgba(251,250,247,.35);
  background:rgba(251,250,247,.05); color:var(--white);
  display:flex; align-items:center; justify-content:center; font-size:15px;
  -webkit-backdrop-filter:blur(6px); backdrop-filter:blur(6px);
  cursor:pointer; transition:all .4s var(--ease);
}
.lk-hero-arrow:hover{ background:var(--brass); border-color:var(--brass); transform:translateY(-3px); box-shadow:0 12px 26px -8px rgba(0,0,0,.4); }
.lk-hero-prev{ right:126px; }
.lk-hero-next{ right:60px; }

/* ---------- large-screen refinement (laptops/desktops 1600px+) ---------- */
@media (min-width:1700px){
  .lk-hero-content{ max-width:840px; padding:0 7% 110px; }
  .hero-title{ font-size:clamp(2.1rem, 4.2vw, 4.6rem); }
  .hero-sub{ max-width:520px; font-size:17px; }
  .lk-nav .container-xl{ height:96px; }
  section{ padding:128px 0; }
}

/* ---------- responsive ---------- */
@media (max-width:1199px){
  .lk-hero-content{ max-width:640px; padding:0 6% 100px; }
}
@media (max-width:991px){
  .lk-hero, .lk-hero #lkHeroCarousel{ height:clamp(500px, calc(100vh - 88px), 620px); }
  .lk-hero-coord{ display:none; }
  .lk-hero-content{ padding:0 6% 92px; }
  .lk-hero-footer{ left:32px; right:32px; bottom:26px; }
  .lk-hero-arrow{ bottom:98px; width:46px; height:46px; }
  .lk-hero-prev{ right:98px; } .lk-hero-next{ right:44px; }
}
@media (max-width:767px){
  .lk-hero, .lk-hero #lkHeroCarousel{ height:clamp(400px, calc(100vh - 88px), 480px); }
  .lk-hero-overlay{ background:linear-gradient(180deg, rgba(20,23,26,.55) 0%, rgba(20,23,26,.4) 35%, rgba(20,23,26,.85) 100%); }
  .lk-hero-content{ max-width:100%; padding:0 24px 54px; text-align:center; align-items:center; justify-content:flex-end; gap:0; }
  .hero-tag{ justify-content:center; margin-bottom:10px; font-size:11px; }
  .hero-title{ font-size:clamp(1.5rem, 6.4vw, 2.1rem); line-height:1.16; }
  .hero-sub{ margin:10px auto 0; font-size:13.5px; line-height:1.55; }
  .hero-cta{ justify-content:center; margin-top:16px; }
  .hero-cta a{ padding:12px 22px; font-size:12.5px; }
  .lk-hero-frame{ inset:14px; }
  .lk-hero-footer{ left:20px; right:20px; bottom:14px; }
  .lk-hero-arrow{ display:none; }
}
@media (max-width:480px){
  .lk-hero, .lk-hero #lkHeroCarousel{ height:clamp(370px, calc(100vh - 88px), 440px); }
  .lk-hero-content{ padding:0 18px 46px; }
  .hero-title{ font-size:clamp(1.38rem, 7vw, 1.9rem); }
  .hero-sub{ font-size:13px; }
  .hero-cta{ flex-direction:column; align-items:stretch; width:100%; max-width:260px; margin-left:auto; margin-right:auto; gap:10px; margin-top:14px; }
  .hero-cta a{ justify-content:center; padding:11px 20px; }
  .lk-hero-footer{ flex-direction:row; align-items:center; gap:14px; }
  .lk-hero-counter{ display:none; }
}
