/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   BRICKMUSE INFRA — Shared Stylesheet
   Dark Forest + Warm Gold palette
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
:root {
  --bg:     #07110f;
  --bg2:    #0b1a16;
  --bg3:    #0f201b;
  --line:   rgba(200,220,205,0.08);
  --line2:  rgba(200,220,205,0.15);
  --text:   #f0f3ee;
  --muted:  #b2bdb4;
  --muted2: #cdd6ce;
  --gold:   #dfb96c;
  --gold2:  #f3d8a3;
  --gdim:   rgba(223,185,108,0.10);
  --gdim2:  rgba(223,185,108,0.20);
  --serif:  'Cormorant Garamond', serif;
  --sans:   'DM Sans', sans-serif;
  --max:    1140px;
  --gap:    clamp(1rem,4vw,2rem);
  --r:      5px;
}

*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; }
body {
  font-family:var(--sans); background:var(--bg);
  color:var(--text); line-height:1.65; font-weight:300; overflow-x:hidden;
}
img  { display:block; max-width:100%; }
a    { color:inherit; text-decoration:none; }
ul   { list-style:none; }
button { font:inherit; cursor:pointer; border:none; background:none; }
main { position:relative; z-index:1; }

/* Skip link */
.skip { position:absolute; top:-100px; left:1rem; z-index:9999; background:var(--gold); color:#15100a; padding:.5rem 1rem; border-radius:var(--r); font-weight:600; transition:top .15s; }
.skip:focus { top:1rem; }

/* Progress bar */
.prog { position:fixed; top:0; left:0; z-index:9999; height:2px; width:0%; background:linear-gradient(90deg,var(--gold),var(--gold2)); transition:width .08s linear; pointer-events:none; }

/* Loader intro */
body.has-loader { min-height:100vh; }
body.loader-active { overflow:hidden; }
body.has-loader > :not(.bm-loader):not(script) {
  transition:opacity 1.05s cubic-bezier(.22,1,.36,1), transform 1.05s cubic-bezier(.22,1,.36,1), filter 1.05s ease;
}
body.loader-active > :not(.bm-loader):not(script) {
  opacity:0;
  transform:scale(1.01);
  filter:blur(10px);
  pointer-events:none;
  user-select:none;
}
.bm-loader {
  position:fixed;
  inset:0;
  z-index:12000;
  overflow:hidden;
  isolation:isolate;
  display:grid;
  place-items:center;
  background:#040d0b;
  transition:opacity 1.05s ease, visibility 1.05s ease;
}
.bm-loader::before {
  content:'';
  position:absolute;
  inset:-10%;
  background:
    radial-gradient(circle at 50% 50%,rgba(12,40,32,.18) 0%,rgba(12,40,32,0) 48%),
    radial-gradient(circle at 50% 50%,rgba(223,185,108,.06) 0%,rgba(223,185,108,0) 38%),
    linear-gradient(135deg,rgba(255,255,255,.02),transparent 45%,rgba(223,185,108,.04));
  animation:bm-loader-drift 10s ease-in-out infinite alternate;
}
.bm-loader::after {
  content:'';
  position:absolute;
  inset:0;
  background:radial-gradient(circle at 50% 50%,transparent 0%,rgba(4,13,11,.16) 46%,rgba(2,7,6,.82) 100%);
}
.bm-loader.is-exit { opacity:0; }
.bm-loader.is-hidden {
  visibility:hidden;
  pointer-events:none;
}
.bm-loader__canvas {
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
}
.bm-loader__center {
  position:relative;
  z-index:2;
  width:min(88vw,540px);
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:.9rem;
  text-align:center;
  opacity:0;
  transform:scale(.92);
  transition:opacity 1.15s cubic-bezier(.25,.46,.45,.94), transform 1.15s cubic-bezier(.25,.46,.45,.94);
  pointer-events:none;
}
.bm-loader__center.is-visible { opacity:1; transform:scale(1); }
.bm-loader__crest {
  position:relative;
  width:88px;
  height:88px;
  display:grid;
  place-items:center;
  opacity:0;
  transform:translateY(10px) scale(.92);
  transition:opacity .82s ease .08s, transform .82s ease .08s;
}
.bm-loader__crest svg {
  width:100%;
  height:100%;
  overflow:visible;
  filter:drop-shadow(0 0 18px rgba(223,185,108,.16));
}
.bm-loader__brand {
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:.52rem;
  opacity:0;
  transform:translateY(10px);
  transition:opacity .92s ease .24s, transform .92s ease .24s;
}
.bm-loader__logo-shell {
  width:88px;
  height:88px;
  border-radius:28px;
  display:grid;
  place-items:center;
  background:
    linear-gradient(145deg,rgba(255,255,255,.07),rgba(255,255,255,.02)),
    radial-gradient(circle at 50% 38%,rgba(223,185,108,.14),transparent 60%),
    rgba(7,17,15,.9);
  border:1px solid rgba(223,185,108,.18);
  box-shadow:
    0 18px 40px rgba(0,0,0,.3),
    inset 0 1px 0 rgba(255,255,255,.08);
}
.bm-loader__logo-icon {
  width:56px;
  height:56px;
  transform:scale(.78);
  opacity:0;
  filter:drop-shadow(0 0 16px rgba(223,185,108,.28));
  transition:opacity .85s ease .7s, transform .85s ease .7s;
}
.bm-loader__center.is-visible .bm-loader__crest,
.bm-loader__center.is-visible .bm-loader__brand {
  opacity:1;
  transform:translateY(0) scale(1);
}
.bm-loader__center.is-visible .bm-loader__logo-icon {
  opacity:1;
  transform:scale(1);
}
.bm-loader__wordmark {
  font-size:1.18rem;
  letter-spacing:.28em;
  text-transform:uppercase;
  color:var(--text);
  opacity:0;
  transform:translateY(8px);
  transition:opacity .9s ease .28s, transform .9s ease .28s;
}
.bm-loader__caption {
  font-size:.64rem;
  letter-spacing:.3em;
  text-transform:uppercase;
  color:var(--gold);
  opacity:0;
  transform:translateY(6px);
  transition:opacity .9s ease .52s, transform .9s ease .52s;
}
.bm-loader__center.is-visible .bm-loader__wordmark,
.bm-loader__center.is-visible .bm-loader__caption {
  opacity:1;
  transform:translateY(0);
}
.bm-loader__progress {
  position:absolute;
  bottom:1.35rem;
  left:50%;
  z-index:2;
  transform:translateX(-50%);
  width:min(180px,40vw);
  height:1px;
  background:rgba(223,185,108,.14);
  overflow:hidden;
  opacity:0;
  transition:opacity .5s ease;
}
.bm-loader__progress.is-visible { opacity:1; }
.bm-loader__progress-fill {
  height:100%;
  width:0%;
  background:linear-gradient(90deg,transparent,rgba(223,185,108,.2),#dfb96c,rgba(223,185,108,.2),transparent);
}

@keyframes bm-loader-drift {
  0% { transform:scale(1.02) translate3d(-1.2%,-1%,0); }
  100% { transform:scale(1.08) translate3d(1.2%,1%,0); }
}

/* ── TOPBAR ── */
.topbar { background:rgba(3,8,7,.94); border-bottom:1px solid var(--line); backdrop-filter:blur(12px); position:relative; z-index:90; }
.topbar-inner { max-width:var(--max); margin:auto; padding:.55rem var(--gap); display:flex; justify-content:space-between; align-items:center; gap:1rem; font-size:.78rem; color:var(--muted); }
.topbar-links { display:flex; gap:1.5rem; }
.topbar-links a { color:var(--gold2); opacity:.75; transition:opacity .15s; }
.topbar-links a:hover { opacity:1; }

/* ── HEADER ── */
header { position:sticky; top:0; z-index:100; background:rgba(7,17,15,.15); backdrop-filter:blur(18px); border-bottom:1px solid transparent; transition:background .2s, border-color .2s, box-shadow .2s; }
header.scrolled { background:rgba(7,17,15,.95); border-bottom-color:var(--line); box-shadow:0 6px 32px rgba(0,0,0,.28); }
.hdr-inner { max-width:var(--max); margin:auto; padding:0 var(--gap); height:68px; display:flex; align-items:center; justify-content:space-between; gap:2rem; }

.brand { display:flex; align-items:center; gap:.85rem; flex-shrink:0; }
.brand-icon { width:42px; height:42px; border-radius:10px; background:rgba(255,255,255,.04); border:1px solid var(--line2); display:grid; place-items:center; flex-shrink:0; overflow:hidden; }
.brand-icon img { width:30px; height:30px; object-fit:contain; }
.brand-name { font-family:var(--serif); font-size:1.12rem; font-weight:500; letter-spacing:.02em; }
.brand-sub  { font-size:.68rem; letter-spacing:.14em; text-transform:uppercase; color:var(--muted); margin-top:.05rem; }

nav.dnav { display:flex; align-items:center; gap:1.75rem; }
nav.dnav a { font-size:.88rem; color:var(--muted2); letter-spacing:.02em; position:relative; padding-bottom:2px; transition:color .15s; }
nav.dnav a::after { content:''; position:absolute; bottom:-2px; left:0; width:100%; height:1px; background:var(--gold); transform:scaleX(0); transform-origin:right; transition:transform .22s ease; }
nav.dnav a:hover  { color:var(--text); }
nav.dnav a:hover::after { transform:scaleX(1); transform-origin:left; }

.hdr-cta { background:linear-gradient(135deg,var(--gold2),var(--gold)); color:#15100a; padding:.58rem 1.25rem; border-radius:999px; font-size:.84rem; font-weight:600; letter-spacing:.02em; white-space:nowrap; flex-shrink:0; transition:opacity .18s, transform .18s, box-shadow .18s; box-shadow:0 6px 22px rgba(223,185,108,.2); }
.hdr-cta:hover { opacity:.9; transform:translateY(-1px); }

.menu-btn { display:none; flex-direction:column; justify-content:center; align-items:center; gap:5px; width:44px; height:44px; border-radius:50%; background:rgba(255,255,255,.05); border:1px solid var(--line2); }
.menu-btn span { display:block; width:20px; height:1.5px; background:var(--text); transition:transform .2s, opacity .2s; }
.menu-btn.open span:nth-child(1) { transform:translateY(6.5px) rotate(45deg); }
.menu-btn.open span:nth-child(2) { opacity:0; }
.menu-btn.open span:nth-child(3) { transform:translateY(-6.5px) rotate(-45deg); }

.mob-nav { position:fixed; inset:0; z-index:90; background:rgba(5,11,10,.98); display:flex; flex-direction:column; justify-content:center; padding:3rem var(--gap); transform:translateX(100%); transition:transform .3s cubic-bezier(.4,0,.2,1); }
.mob-nav.open { transform:none; }
.mob-nav a { font-family:var(--serif); font-size:2.2rem; font-weight:400; color:var(--muted2); padding:.4rem 0; border-bottom:1px solid var(--line); transition:color .15s; }
.mob-nav a:hover { color:var(--gold2); }
.mob-nav .mob-cta { margin-top:2rem; display:inline-block; background:linear-gradient(135deg,var(--gold2),var(--gold)); color:#15100a; padding:.85rem 2rem; border-radius:999px; font-family:var(--sans); font-size:.9rem; font-weight:600; }

/* ── LAYOUT ── */
.wrap { max-width:var(--max); margin:auto; padding:0 var(--gap); }
section { padding:clamp(4rem,8vw,7rem) 0; position:relative; overflow:hidden; }

/* Blueprint grid (fades in on scroll) */
section::before { content:''; position:absolute; inset:0; pointer-events:none; z-index:0; background-image:linear-gradient(rgba(223,185,108,.022) 1px,transparent 1px),linear-gradient(90deg,rgba(223,185,108,.022) 1px,transparent 1px); background-size:88px 88px; opacity:0; transition:opacity .9s ease; }
section.g-grid::before { opacity:1; }
section > * { position:relative; z-index:1; }

/* ── TYPOGRAPHY ── */
.s-label { display:inline-flex; align-items:center; gap:.65rem; font-size:.73rem; text-transform:uppercase; letter-spacing:.22em; color:var(--gold); font-weight:500; margin-bottom:1.25rem; }
.s-label::before { content:''; width:28px; height:1px; background:var(--gold); opacity:.65; flex-shrink:0; }

.s-head { font-family:var(--serif); font-weight:500; font-size:clamp(2rem,4vw,3.4rem); line-height:1.07; color:var(--text); max-width:640px; margin-bottom:1rem; }
.s-head em { font-style:italic; color:var(--gold2); }
.s-sub { font-size:1rem; color:var(--muted); max-width:540px; line-height:1.7; }

/* ── GEO DIVIDER ── */
.geo-div { position:relative; height:28px; pointer-events:none; overflow:visible; background:transparent; }
.geo-div::before { content:''; position:absolute; top:50%; left:0; right:0; height:1px; background:linear-gradient(90deg,transparent 0%,rgba(223,185,108,.08) 20%,rgba(223,185,108,.14) 50%,rgba(223,185,108,.08) 80%,transparent 100%); }
.geo-div .gd-sq { position:absolute; top:50%; left:20%; transform:translate(-50%,-50%); width:7px; height:7px; border:1px solid rgba(223,185,108,.22); background:var(--bg); }
.geo-div .gd-rc { position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width:14px; height:7px; border:1px solid rgba(223,185,108,.16); background:var(--bg); }
.geo-div .gd-tr { position:absolute; top:50%; right:20%; transform:translate(50%,-50%); width:0; height:0; border-left:5px solid transparent; border-right:5px solid transparent; border-bottom:8px solid rgba(223,185,108,.18); }

/* ── REVEAL ── */
.rv { opacity:0; transform:translateY(18px); transition:opacity .65s ease, transform .65s ease; transition-delay:var(--d,0s); }
.rv.in { opacity:1; transform:none; }

/* ── BUTTONS ── */
.btn-gold { display:inline-flex; align-items:center; gap:.55rem; background:linear-gradient(135deg,var(--gold2),var(--gold)); color:#15100a; padding:.85rem 1.75rem; border-radius:999px; font-size:.9rem; font-weight:600; letter-spacing:.02em; position:relative; isolation:isolate; transition:opacity .18s, transform .22s ease, box-shadow .22s; box-shadow:0 8px 28px rgba(223,185,108,.22); }
.btn-gold:hover { opacity:.92; transform:translateY(-2px) scale(1.02); box-shadow:0 14px 36px rgba(223,185,108,.3); }
.btn-gold svg { width:13px; height:13px; }

.btn-out { display:inline-flex; align-items:center; gap:.55rem; color:var(--muted2); padding:.85rem 1.5rem; border-radius:999px; font-size:.9rem; border:1px solid var(--line2); position:relative; overflow:hidden; isolation:isolate; transition:border-color .2s, color .2s, transform .22s; }
.btn-out:hover { border-color:rgba(223,185,108,.4); color:var(--gold2); transform:scale(1.02); }

.btn-wa { display:inline-flex; align-items:center; gap:.5rem; background:#25D366; color:#fff; padding:.85rem 1.4rem; border-radius:999px; font-size:.9rem; font-weight:500; transition:background .18s, transform .2s; }
.btn-wa:hover { background:#1aab52; transform:translateY(-2px) scale(1.02); }
.btn-wa svg { width:17px; height:17px; fill:currentColor; }

.btn-row { display:flex; gap:.85rem; flex-wrap:wrap; align-items:center; }

/* ── HERO (full bg image) ── */
.hero { position:relative; overflow:hidden; min-height:calc(100vh - 108px); display:flex; align-items:center; padding:5rem 0 4rem; }
.hero-bg { position:absolute; inset:0; z-index:0; }
.hero-bg img { width:100%; height:100%; object-fit:cover; }
.hero-bg::after { content:''; position:absolute; inset:0; background:linear-gradient(115deg,rgba(5,11,10,.96) 0%,rgba(5,11,10,.78) 38%,rgba(5,11,10,.35) 65%,rgba(5,11,10,.88) 100%),linear-gradient(180deg,rgba(5,11,10,.1) 0%,rgba(5,11,10,.82) 100%); }

/* Hero geometry */
.h-geo { position:absolute; pointer-events:none; z-index:1; }
.h-geo-circ { top:50%; left:-80px; transform:translateY(-50%); width:420px; height:420px; border-radius:50%; border:1px solid rgba(223,185,108,.055); animation:g-pulse 8s ease-in-out infinite; }
.h-geo-circ::after { content:''; position:absolute; inset:50px; border-radius:50%; border:1px solid rgba(223,185,108,.035); }
.h-geo-rect { top:44px; right:44px; width:170px; height:105px; border:1px solid rgba(223,185,108,.04); }
.h-geo-tri  { bottom:90px; left:80px; width:0; height:0; border-left:18px solid transparent; border-right:18px solid transparent; border-bottom:30px solid rgba(223,185,108,.06); animation:g-tri 5s ease-in-out infinite; }
.h-geo-sq   { bottom:60px; right:90px; width:50px; height:50px; border:1px solid rgba(223,185,108,.05); }
.h-geo-sq::after { content:''; position:absolute; inset:11px; border:1px solid rgba(223,185,108,.04); }

@keyframes g-pulse { 0%,100%{opacity:.05} 50%{opacity:.11} }
@keyframes g-tri   { 0%,100%{opacity:.07} 50%{opacity:.18} }
@keyframes g-float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(8px)} }

.hero-inner { position:relative; z-index:2; display:grid; grid-template-columns:1fr minmax(300px,.65fr); gap:3rem; align-items:center; }
.h-eyebrow { font-size:.73rem; text-transform:uppercase; letter-spacing:.22em; color:var(--gold); font-weight:500; display:flex; align-items:center; gap:.7rem; margin-bottom:1.6rem; }
.h-eyebrow::before { content:''; width:28px; height:1px; background:var(--gold); opacity:.7; }
.hero h1 { font-family:var(--serif); font-size:clamp(3.2rem,6.5vw,5.8rem); line-height:1.02; font-weight:500; letter-spacing:-.01em; color:var(--text); margin-bottom:1.4rem; }
.hero h1 em { font-style:italic; color:var(--gold2); }
.hero-sub { font-size:1.05rem; color:var(--muted2); line-height:1.72; max-width:480px; margin-bottom:2rem; font-weight:300; }
.hero-pills { display:flex; flex-wrap:wrap; gap:.65rem; margin-bottom:2rem; }
.hero-pills li { display:inline-flex; align-items:center; gap:.5rem; padding:.52rem .9rem; border-radius:999px; background:rgba(255,255,255,.05); border:1px solid var(--line2); font-size:.84rem; color:var(--muted2); }
.hero-pills li::before { content:''; width:6px; height:6px; border-radius:50%; background:linear-gradient(135deg,var(--gold2),var(--gold)); flex-shrink:0; }

/* Hero panel */
.hero-panel { padding:1.75rem; border-radius:var(--r); background:radial-gradient(circle at top,rgba(223,185,108,.12),transparent 55%),linear-gradient(160deg,rgba(15,32,27,.97),rgba(9,18,16,.94)); border:1px solid rgba(223,185,108,.22); box-shadow:0 28px 80px rgba(0,0,0,.32); position:relative; }
.hero-panel::before { content:''; position:absolute; top:12px; left:12px; width:28px; height:28px; border-top:1px solid rgba(223,185,108,.22); border-left:1px solid rgba(223,185,108,.22); pointer-events:none; transition:width .4s, height .4s; }
.hero-panel::after  { content:''; position:absolute; bottom:12px; right:12px; width:20px; height:20px; border-bottom:1px solid rgba(223,185,108,.16); border-right:1px solid rgba(223,185,108,.16); pointer-events:none; }
.hero-panel:hover::before { width:40px; height:40px; }
.hp-label { font-size:.7rem; text-transform:uppercase; letter-spacing:.16em; color:var(--gold); font-weight:500; margin-bottom:.75rem; display:flex; align-items:center; gap:.55rem; }
.hp-label::before { content:''; width:20px; height:1px; background:var(--gold); opacity:.6; }
.hero-panel h2 { font-family:var(--serif); font-size:1.5rem; font-weight:500; color:var(--text); margin-bottom:.75rem; line-height:1.2; }
.hero-panel p  { font-size:.88rem; color:var(--muted); line-height:1.65; margin-bottom:1rem; }
.hp-list { display:flex; flex-direction:column; gap:.55rem; margin-bottom:1.4rem; }
.hp-list li { font-size:.86rem; color:var(--muted2); display:flex; align-items:flex-start; gap:.6rem; line-height:1.5; }
.hp-list li::before { content:''; width:6px; height:6px; border-radius:50%; background:linear-gradient(135deg,var(--gold2),var(--gold)); flex-shrink:0; margin-top:.52rem; box-shadow:0 0 0 3px rgba(223,185,108,.12); }
.hp-btns { display:flex; gap:.65rem; flex-wrap:wrap; }

/* Scroll indicator */
.scroll-ind { position:absolute; bottom:2.25rem; left:50%; transform:translateX(-50%); z-index:3; display:flex; flex-direction:column; align-items:center; gap:5px; pointer-events:none; transition:opacity .4s; }
.si-ring { width:30px; height:30px; border-radius:50%; border:1px solid rgba(223,185,108,.25); display:grid; place-items:center; animation:g-float 2.6s ease-in-out infinite; }
.si-dot  { width:5px; height:5px; border-radius:50%; background:var(--gold); opacity:.55; }
.si-text { font-size:.62rem; letter-spacing:.18em; text-transform:uppercase; color:rgba(223,185,108,.3); }

/* Stat strip */
.stat-strip { background:var(--bg2); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.stat-row   { display:grid; grid-template-columns:repeat(4,1fr); }
.stat-item  { padding:1.6rem 1.4rem; border-right:1px solid var(--line); display:flex; align-items:flex-start; gap:.9rem; }
.stat-item:last-child { border-right:none; }
.s-icon { width:36px; height:36px; border:1px solid var(--line2); border-radius:8px; display:grid; place-items:center; flex-shrink:0; background:var(--gdim); }
.s-icon svg { width:17px; height:17px; stroke:var(--gold); fill:none; stroke-width:1.5; stroke-linecap:round; stroke-linejoin:round; }
.stat-item strong { display:block; font-family:var(--serif); font-size:1.55rem; color:var(--gold2); line-height:1.1; margin-bottom:.15rem; }
.stat-item span   { font-size:.79rem; color:var(--muted); font-weight:300; }

/* Card grids */
.grid-4 { display:grid; grid-template-columns:repeat(4,1fr); gap:1px; background:var(--line2); border:1px solid var(--line2); border-radius:var(--r); overflow:hidden; }
.grid-3 { display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:var(--line2); border:1px solid var(--line2); border-radius:var(--r); overflow:hidden; }
.grid-2 { display:grid; grid-template-columns:1fr 1fr; gap:1.25rem; }

/* Base card */
.g-card { background:var(--bg2); padding:1.85rem 1.65rem; position:relative; overflow:hidden; transition:background .22s; }
.g-card:hover { background:var(--bg3); }

/* Triangle corner hover on cards */
.g-card::after { content:''; position:absolute; top:0; right:0; width:0; height:0; border-style:solid; border-width:0; border-color:transparent rgba(223,185,108,.15) transparent transparent; transition:border-width .35s ease; pointer-events:none; }
.g-card:hover::after { border-width:0 26px 26px 0; }
/* Square corner hover */
.g-card::before { content:''; position:absolute; bottom:10px; left:10px; width:0; height:0; border-bottom:1px solid transparent; border-left:1px solid transparent; transition:width .35s ease, height .35s ease, border-color .35s ease; pointer-events:none; }
.g-card:hover::before { width:16px; height:16px; border-color:rgba(223,185,108,.2); }

.g-card .cn { font-family:var(--serif); font-size:.82rem; color:var(--gold); font-weight:500; margin-bottom:.8rem; }
.g-icon { width:42px; height:42px; border:1px solid var(--line2); border-radius:10px; display:grid; place-items:center; margin-bottom:.9rem; background:rgba(223,185,108,.05); transition:background .22s, border-color .22s; }
.g-card:hover .g-icon { background:rgba(223,185,108,.1); border-color:var(--gdim2); }
.g-icon svg { width:20px; height:20px; stroke:var(--muted2); fill:none; stroke-width:1.5; stroke-linecap:round; stroke-linejoin:round; transition:stroke .22s; }
.g-card:hover .g-icon svg { stroke:var(--gold2); }
.g-card h3 { font-family:var(--serif); font-size:1.2rem; color:var(--text); font-weight:500; margin-bottom:.4rem; }
.g-card p  { font-size:.86rem; color:var(--muted); line-height:1.65; }

/* Package cards */
.pkg-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:1.2rem; }
.pkg-card { background:var(--bg2); border:1px solid var(--line2); border-radius:var(--r); padding:1.75rem; display:flex; flex-direction:column; gap:.9rem; position:relative; overflow:hidden; transition:background .22s, transform .28s, border-color .22s; }
.pkg-card:hover { background:var(--bg3); transform:translateY(-3px); border-color:var(--gdim2); }
.pkg-card.featured { background:linear-gradient(160deg,rgba(223,185,108,.09),rgba(223,185,108,.03)); border-color:rgba(223,185,108,.25); }
.pkg-card.featured:hover { transform:translateY(-3px); border-color:rgba(223,185,108,.4); }

/* Geometric bg shape per package */
.pkg-card[data-geo="square"]::after   { content:''; position:absolute; top:50%; right:-18px; transform:translateY(-50%); width:84px; height:84px; border:1px solid rgba(223,185,108,.05); pointer-events:none; z-index:0; }
.pkg-card[data-geo="rectangle"]::after { content:''; position:absolute; top:50%; right:-14px; transform:translateY(-50%); width:48px; height:104px; border:1px solid rgba(223,185,108,.05); pointer-events:none; z-index:0; }
.pkg-card[data-geo="circle"]::after   { content:''; position:absolute; top:50%; right:-36px; transform:translateY(-50%); width:108px; height:108px; border-radius:50%; border:1px solid rgba(223,185,108,.08); pointer-events:none; z-index:0; }
.pkg-card[data-geo="triangle"]::after { content:''; position:absolute; bottom:16px; right:16px; width:0; height:0; border-left:28px solid transparent; border-right:28px solid transparent; border-bottom:46px solid rgba(223,185,108,.055); pointer-events:none; z-index:0; }
.pkg-card > * { position:relative; z-index:1; }

/* Corner brackets on pkg cards */
.pkg-card .gtl, .pkg-card .gbr { position:absolute; pointer-events:none; transition:width .35s, height .35s, opacity .35s; width:0; height:0; opacity:0; z-index:2; }
.pkg-card .gtl { top:10px; left:10px; border-top:1px solid rgba(223,185,108,.3); border-left:1px solid rgba(223,185,108,.3); }
.pkg-card .gbr { bottom:10px; right:10px; border-bottom:1px solid rgba(223,185,108,.3); border-right:1px solid rgba(223,185,108,.3); }
.pkg-card:hover .gtl, .pkg-card.featured .gtl,
.pkg-card:hover .gbr, .pkg-card.featured .gbr { width:20px; height:20px; opacity:1; }

.pkg-badge { display:inline-flex; align-items:center; padding:.28rem .65rem; border-radius:3px; font-size:.7rem; letter-spacing:.1em; text-transform:uppercase; font-weight:600; width:fit-content; }
.pb-std { background:rgba(255,255,255,.05); border:1px solid var(--line2); color:var(--muted); }
.pb-hot { background:var(--gdim); border:1px solid var(--gdim2); color:var(--gold2); }
.pkg-name  { font-family:var(--serif); font-size:1.35rem; line-height:1.2; color:var(--text); font-weight:500; }
.pkg-price { display:flex; align-items:baseline; gap:.4rem; }
.pkg-price strong { font-family:var(--serif); font-size:2rem; color:var(--gold2); line-height:1; }
.pkg-price span   { font-size:.8rem; color:var(--muted); }
.pkg-rule  { height:1px; background:var(--line); }
.pkg-card.featured .pkg-rule { background:rgba(223,185,108,.15); }
.pkg-feats { display:flex; flex-direction:column; gap:.5rem; flex:1; }
.pkg-feats li { font-size:.86rem; color:var(--muted2); display:flex; align-items:flex-start; gap:.6rem; line-height:1.5; }
.pkg-feats li::before { content:''; width:5px; height:5px; border-radius:50%; background:var(--gold); flex-shrink:0; margin-top:.55rem; opacity:.75; }
.pkg-card.featured .pkg-feats li::before { opacity:1; }
.pkg-btn { display:flex; align-items:center; justify-content:center; gap:.45rem; text-align:center; padding:.65rem 1rem; border-radius:var(--r); font-size:.84rem; font-weight:500; border:1px solid var(--line2); color:var(--muted2); transition:background .18s, border-color .18s, color .18s; }
.pkg-btn:hover { background:rgba(255,255,255,.06); border-color:var(--text); color:var(--text); }
.pkg-btn.gold { background:linear-gradient(135deg,var(--gold2),var(--gold)); border-color:transparent; color:#15100a; box-shadow:0 6px 20px rgba(223,185,108,.2); }
.pkg-btn.gold:hover { opacity:.9; }

/* Compare button inside package cards */
.pkg-cmp-btn { display:block; width:100%; text-align:center; padding:.58rem; border-radius:var(--r); font-size:.8rem; font-weight:500; border:1px solid var(--gdim2); color:var(--gold); background:var(--gdim); cursor:pointer; transition:background .18s, border-color .18s, color .18s; font-family:var(--sans); letter-spacing:.02em; }
.pkg-cmp-btn:hover { background:rgba(223,185,108,.18); border-color:var(--gold); }
.pkg-cmp-btn.featured { background:rgba(223,185,108,.15); border-color:rgba(223,185,108,.4); color:var(--gold2); }
.pkg-cmp-btn.featured:hover { background:rgba(223,185,108,.25); }

/* Process */
.proc-row { display:grid; grid-template-columns:repeat(5,1fr); gap:0; position:relative; }
.proc-row::before { content:''; position:absolute; top:2.2rem; left:calc(10%); right:calc(10%); height:1px; background:linear-gradient(90deg,var(--gdim),rgba(223,185,108,.22),var(--gdim)); pointer-events:none; }
.proc-step { text-align:center; padding:0 .75rem; position:relative; z-index:1; }
.proc-circ { width:46px; height:46px; border-radius:50%; border:1px solid var(--line2); background:var(--bg2); display:grid; place-items:center; margin:0 auto 1rem; position:relative; transition:background .28s, border-color .28s, transform .28s; }
.proc-circ::after { content:''; position:absolute; inset:-7px; border-radius:50%; border:1px solid transparent; transition:border-color .35s, inset .35s; pointer-events:none; }
.proc-step:hover .proc-circ { background:var(--gdim); border-color:var(--gdim2); transform:translateY(-3px); }
.proc-step:hover .proc-circ::after { border-color:rgba(223,185,108,.2); inset:-10px; }
.proc-circ svg { width:20px; height:20px; stroke:var(--muted); fill:none; stroke-width:1.5; stroke-linecap:round; stroke-linejoin:round; transition:stroke .28s; }
.proc-step:hover .proc-circ svg { stroke:var(--gold2); }
.proc-num { position:absolute; top:-5px; right:-5px; width:17px; height:17px; background:var(--gold); color:#15100a; border-radius:50%; font-size:.6rem; font-weight:700; display:grid; place-items:center; }
.proc-geo { font-size:.85rem; color:rgba(223,185,108,.28); display:block; margin-top:.6rem; }
.proc-step h4 { font-family:var(--serif); font-size:1rem; color:var(--text); font-weight:500; margin-bottom:.3rem; }
.proc-step p  { font-size:.79rem; color:var(--muted); line-height:1.55; }

/* Portfolio */
.filter-row { display:flex; gap:.5rem; flex-wrap:wrap; margin-bottom:1.75rem; }
.f-btn { padding:.48rem .95rem; border:1px solid var(--line2); border-radius:999px; font-size:.8rem; color:var(--muted2); background:transparent; cursor:pointer; position:relative; overflow:hidden; transition:background .15s, border-color .15s, color .15s; }
.f-btn.active { background:var(--gdim); border-color:var(--gdim2); color:var(--gold2); }
.f-btn::after { content:''; position:absolute; bottom:4px; left:50%; transform:translateX(-50%) scaleX(0); width:50%; height:1px; background:var(--gold); opacity:.55; transform-origin:center; transition:transform .28s ease; }
.f-btn:hover::after,.f-btn.active::after { transform:translateX(-50%) scaleX(1); }

.portfolio-groups { display:grid; gap:1.25rem; }
.port-group { border:1px solid var(--line2); border-radius:var(--r); overflow:hidden; background:linear-gradient(180deg,rgba(255,255,255,.025),rgba(255,255,255,.01)); }
.port-group-head { display:grid; grid-template-columns:minmax(0,1.15fr) minmax(260px,.85fr); gap:1rem 1.5rem; align-items:end; padding:1.25rem 1.25rem 1rem; }
.port-group-head h3 { font-family:var(--serif); font-size:1.45rem; font-weight:500; color:var(--text); }
.port-group-head p { color:var(--muted2); font-size:.92rem; line-height:1.7; max-width:420px; }
.port-group-kicker { font-size:.68rem; letter-spacing:.16em; text-transform:uppercase; color:var(--gold2); display:block; margin-bottom:.35rem; }
.port-group .port-grid { border:none; border-top:1px solid var(--line); border-radius:0; }
.port-grid { display:grid; grid-template-columns:repeat(12,1fr); gap:1px; background:var(--line); border:1px solid var(--line2); border-radius:var(--r); overflow:hidden; }
.port-card { position:relative; overflow:hidden; background:var(--bg3); cursor:pointer; }
.port-card.w7 { grid-column:span 7; }
.port-card.w5 { grid-column:span 5; }
.port-card.w4 { grid-column:span 4; }
.port-card img,.port-card video { width:100%; height:100%; object-fit:cover; display:block; transition:transform .55s ease; aspect-ratio:4/3; background:#0b100f; }
.port-card.w7 img,.port-card.w7 video { aspect-ratio:16/9; }
.port-card.w4 img,.port-card.w4 video { aspect-ratio:1/1; }
.port-card:hover img,.port-card:hover video { transform:scale(1.05); }
.port-frame { position:absolute; inset:10px; border:1px solid transparent; z-index:3; pointer-events:none; transition:border-color .4s, inset .4s; }
.port-corner { position:absolute; top:14px; right:14px; z-index:4; pointer-events:none; opacity:0; transition:opacity .35s; }
.port-corner::before { content:''; position:absolute; top:0; right:0; width:16px; height:1px; background:rgba(223,185,108,.5); }
.port-corner::after  { content:''; position:absolute; top:0; right:0; width:1px; height:16px; background:rgba(223,185,108,.5); }
.port-card:hover .port-frame { border-color:rgba(223,185,108,.24); inset:14px; }
.port-card:hover .port-corner { opacity:1; }
.port-overlay { position:absolute; inset:0; z-index:2; background:linear-gradient(to top,rgba(5,11,10,.82) 0%,rgba(5,11,10,.12) 58%,transparent 100%); opacity:1; transition:background .28s ease; display:flex; align-items:flex-end; padding:1.2rem 1.25rem; }
.port-card:hover .port-overlay { background:linear-gradient(to top,rgba(5,11,10,.9) 0%,rgba(5,11,10,.22) 58%,transparent 100%); }
.port-tag   { font-size:.68rem; letter-spacing:.14em; text-transform:uppercase; color:var(--gold2); display:block; margin-bottom:.2rem; opacity:.75; }
.port-title { font-family:var(--serif); font-size:1.05rem; color:var(--text); }

/* Comparison table */
.cmp-wrap { border:1px solid var(--line2); border-radius:var(--r); overflow:hidden; overflow-x:auto; }
.cmp-table { width:100%; border-collapse:collapse; min-width:560px; }
.cmp-table th { padding:1rem 1.2rem; text-align:left; font-size:.74rem; letter-spacing:.14em; text-transform:uppercase; font-weight:500; border-bottom:1px solid var(--line2); background:var(--bg2); color:var(--muted); }
.cmp-table th.hl { background:rgba(223,185,108,.06); color:var(--gold2); border-bottom-color:rgba(223,185,108,.2); }
.cmp-table td { padding:.85rem 1.2rem; font-size:.87rem; color:var(--muted2); border-bottom:1px solid var(--line); }
.cmp-table td:first-child { color:var(--text); font-weight:400; }
.cmp-table td.hl { background:rgba(223,185,108,.03); position:relative; }
.cmp-table td.hl::before { content:''; position:absolute; left:0; top:20%; bottom:20%; width:2px; background:linear-gradient(to bottom,transparent,rgba(223,185,108,.28),transparent); border-radius:1px; }
.cmp-table tr:last-child td { border-bottom:none; }
.cmp-table tr:hover td { background:rgba(255,255,255,.02); }
.tick  { color:var(--gold); font-size:.95rem; }
.ndash { color:var(--line2); }

/* Team */
.team-grid { display:grid; grid-template-columns:repeat(5,1fr); gap:1px; background:var(--line2); border:1px solid var(--line2); border-radius:var(--r); overflow:hidden; }
.team-card { background:var(--bg2); padding:1.75rem 1.4rem; position:relative; transition:background .22s; }
.team-card:hover { background:var(--bg3); }
.team-card::after { content:''; position:absolute; top:0; right:0; width:0; height:0; border-style:solid; border-width:0; border-color:transparent rgba(223,185,108,.15) transparent transparent; transition:border-width .35s ease; pointer-events:none; }
.team-card:hover::after { border-width:0 22px 22px 0; }
.tc-ico { width:44px; height:44px; border-radius:50%; border:1px solid var(--gdim2); background:var(--gdim); display:grid; place-items:center; margin-bottom:1rem; transition:background .2s; }
.team-card:hover .tc-ico { background:rgba(223,185,108,.15); }
.tc-ico svg { width:20px; height:20px; stroke:var(--gold); fill:none; stroke-width:1.5; stroke-linecap:round; }
.tc-badge { display:inline-flex; padding:.28rem .65rem; border-radius:3px; font-size:.68rem; letter-spacing:.1em; text-transform:uppercase; font-weight:600; background:var(--gdim); border:1px solid var(--gdim2); color:var(--gold2); margin-bottom:.65rem; }
.team-card h3 { font-family:var(--serif); font-size:1rem; color:var(--text); font-weight:500; margin-bottom:.3rem; }
.team-card p  { font-size:.82rem; color:var(--muted); line-height:1.55; }

/* Milestone */
.milestone-wrap { background:var(--bg2); border:1px solid var(--line2); border-radius:var(--r); padding:2rem; overflow-x:auto; }
.milestone-wrap h4 { font-family:var(--serif); font-size:1.1rem; color:var(--text); font-weight:500; margin-bottom:1.5rem; }
.m-track { display:flex; align-items:center; min-width:520px; }
.m-node { display:flex; flex-direction:column; align-items:center; flex:1; position:relative; }
.m-node::before { content:''; position:absolute; top:24px; left:calc(50% + 26px); right:calc(-50% + 26px); height:1px; background:var(--line2); }
.m-node:last-child::before { display:none; }
.m-circle { width:48px; height:48px; border-radius:50%; background:var(--bg3); border:2px solid var(--gold); display:grid; place-items:center; font-family:var(--serif); font-size:1rem; color:var(--gold2); font-weight:500; margin-bottom:.6rem; z-index:1; position:relative; }
.m-label { font-size:.74rem; color:var(--muted); text-align:center; line-height:1.4; }
.m-label strong { display:block; color:var(--text); font-weight:500; font-size:.78rem; margin-bottom:.15rem; }

/* Payment cards */
.pay-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.2rem; }
.pay-card { background:var(--bg2); border:1px solid rgba(223,185,108,.18); border-radius:var(--r); padding:1.5rem; text-align:center; }
.pay-card h4 { font-size:.7rem; text-transform:uppercase; letter-spacing:.14em; color:var(--muted); font-weight:500; margin-bottom:.75rem; }
.pay-card strong { display:block; font-family:var(--serif); font-size:1.8rem; color:var(--gold2); line-height:1.1; margin-bottom:.4rem; }
.pay-card p { font-size:.84rem; color:var(--muted); line-height:1.55; }

/* DesignCraft benefits */
.dc-grid { display:grid; grid-template-columns:repeat(6,1fr); gap:1px; background:var(--line2); border:1px solid var(--line2); border-radius:var(--r); overflow:hidden; }
.dc-cell { background:var(--bg2); padding:1.5rem 1.1rem; text-align:center; transition:background .22s; }
.dc-cell:hover { background:var(--bg3); }
.dc-ico { width:44px; height:44px; border-radius:50%; background:var(--gdim); border:1px solid var(--gdim2); display:grid; place-items:center; margin:0 auto .85rem; }
.dc-ico svg { width:20px; height:20px; stroke:var(--gold); fill:none; stroke-width:1.5; stroke-linecap:round; }
.dc-cell h4 { font-family:var(--serif); font-size:.95rem; color:var(--text); font-weight:500; margin-bottom:.25rem; }
.dc-cell p  { font-size:.78rem; color:var(--muted); line-height:1.5; }

/* Banner quote */
.banner-quote { padding:1rem 1.5rem; background:var(--gdim); border:1px solid var(--gdim2); border-radius:var(--r); font-size:.9rem; color:var(--gold2); font-weight:500; font-style:italic; display:flex; align-items:center; gap:.85rem; }
.banner-quote span { font-size:1.8rem; font-family:var(--serif); line-height:1; opacity:.6; }

/* Agreement benefits */
.agr-benefits { display:flex; flex-direction:column; gap:.75rem; }
.agr-row { display:flex; align-items:flex-start; gap:.85rem; padding:.8rem 0; border-bottom:1px solid var(--line); }
.agr-row:last-child { border-bottom:none; }
.agr-ico { width:34px; height:34px; border-radius:50%; border:1px solid var(--gdim2); background:var(--gdim); display:grid; place-items:center; flex-shrink:0; }
.agr-ico svg { width:16px; height:16px; stroke:var(--gold); fill:none; stroke-width:1.5; stroke-linecap:round; }
.agr-row h4 { font-size:.9rem; color:var(--text); font-weight:500; margin-bottom:.15rem; }
.agr-row p  { font-size:.82rem; color:var(--muted); line-height:1.5; }

/* Package detail page */
.pkg-hero { padding:4.5rem 0 3.5rem; background:var(--bg2); border-bottom:1px solid var(--line); }
.pkg-hero-inner { display:grid; grid-template-columns:1fr minmax(300px,.65fr); gap:3rem; align-items:center; }
.pkg-hero h1 { font-family:var(--serif); font-size:clamp(2.8rem,5vw,4.8rem); line-height:1.05; font-weight:500; color:var(--text); margin-bottom:1.2rem; }
.pkg-hero h1 em { font-style:italic; color:var(--gold2); }
.pkg-hero p { font-size:1rem; color:var(--muted2); line-height:1.7; max-width:480px; margin-bottom:1.75rem; }
.pkg-snapshot { padding:1.75rem; border-radius:var(--r); background:radial-gradient(circle at top,rgba(223,185,108,.12),transparent 55%),linear-gradient(160deg,rgba(15,32,27,.97),rgba(9,18,16,.94)); border:1px solid rgba(223,185,108,.22); }
.pkg-snapshot .label { font-size:.7rem; text-transform:uppercase; letter-spacing:.14em; color:var(--gold); font-weight:500; margin-bottom:.6rem; }
.pkg-snapshot .price { font-family:var(--serif); font-size:3rem; color:var(--gold2); line-height:1; margin-bottom:.4rem; }
.pkg-snapshot .unit  { font-size:.82rem; color:var(--muted); margin-bottom:1.2rem; }
.snap-list { display:flex; flex-direction:column; gap:.55rem; margin-bottom:1.4rem; }
.snap-list li { font-size:.86rem; color:var(--muted2); display:flex; align-items:flex-start; gap:.6rem; line-height:1.5; }
.snap-list li::before { content:''; width:6px; height:6px; border-radius:50%; background:linear-gradient(135deg,var(--gold2),var(--gold)); flex-shrink:0; margin-top:.52rem; }

/* Spec table */
.spec-table-wrap { overflow-x:auto; }
.spec-table { width:100%; border-collapse:collapse; min-width:420px; }
.spec-table th { padding:.85rem 1rem; text-align:left; font-size:.74rem; letter-spacing:.14em; text-transform:uppercase; font-weight:500; border-bottom:1px solid var(--line2); background:var(--bg2); color:var(--muted); }
.spec-table td { padding:.82rem 1rem; font-size:.87rem; color:var(--muted2); border-bottom:1px solid var(--line); }
.spec-table td:first-child { color:var(--text); font-weight:400; }
.spec-table tr:last-child td { border-bottom:none; }
.spec-table tr:hover td { background:rgba(255,255,255,.02); }

/* Drawings table */
.draw-table { width:100%; border-collapse:collapse; min-width:360px; }
.draw-table th { padding:.8rem 1rem; text-align:left; font-size:.74rem; letter-spacing:.14em; text-transform:uppercase; font-weight:500; border-bottom:1px solid var(--line2); background:var(--bg2); color:var(--muted); }
.draw-table td { padding:.78rem 1rem; font-size:.87rem; color:var(--muted2); border-bottom:1px solid var(--line); }
.draw-table td:first-child { color:var(--text); font-weight:400; }
.draw-table tr:last-child td { border-bottom:none; }
.draw-table .yes { color:var(--gold); }
.draw-table .no  { color:var(--line2); }

/* Contact / form */
.contact-split { display:grid; grid-template-columns:1fr 1fr; gap:3.5rem; align-items:start; }
.c-lhs { display:flex; flex-direction:column; gap:2.25rem; }
.c-block h4 { font-size:.7rem; text-transform:uppercase; letter-spacing:.18em; color:var(--gold); font-weight:500; margin-bottom:.55rem; }
.c-block p,.c-block a { font-size:.93rem; color:var(--muted2); line-height:1.65; }
.c-block a { transition:color .15s; }
.c-block a:hover { color:var(--gold2); }

.form-shell { background:linear-gradient(160deg,rgba(255,255,255,.05),rgba(255,255,255,.02)); border:1px solid var(--line2); border-radius:var(--r); padding:2rem; position:relative; }
.form-shell::before { content:''; position:absolute; top:14px; left:14px; width:24px; height:24px; border-top:1px solid rgba(223,185,108,.1); border-left:1px solid rgba(223,185,108,.1); pointer-events:none; transition:width .4s, height .4s, border-color .4s; }
.form-shell::after  { content:''; position:absolute; bottom:14px; right:14px; width:24px; height:24px; border-bottom:1px solid rgba(223,185,108,.1); border-right:1px solid rgba(223,185,108,.1); pointer-events:none; transition:width .4s, height .4s, border-color .4s; }
.form-shell:focus-within::before,.form-shell:focus-within::after { width:36px; height:36px; border-color:rgba(223,185,108,.24); }
.form-shell h3 { font-family:var(--serif); font-size:1.5rem; font-weight:500; color:var(--text); margin-bottom:1.5rem; }
.f-row { display:grid; grid-template-columns:1fr 1fr; gap:1rem; margin-bottom:1rem; }
.f-row.full { grid-template-columns:1fr; }
.fld { display:flex; flex-direction:column; gap:.38rem; }
.fld label { font-size:.72rem; letter-spacing:.12em; text-transform:uppercase; color:var(--muted); font-weight:500; }
.fld input,.fld select,.fld textarea { padding:.72rem .9rem; border:1px solid var(--line2); border-radius:var(--r); background:rgba(255,255,255,.04); color:var(--text); font-family:var(--sans); font-size:.9rem; font-weight:300; outline:none; appearance:none; color-scheme:dark; transition:border-color .15s, background .15s, box-shadow .15s; }
.fld select { background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23b2bdb4' stroke-width='1.2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat:no-repeat; background-position:right .85rem center; padding-right:2.2rem; cursor:pointer; }
.fld select option { color:#111; background:#fff; }
.fld input:focus,.fld select:focus,.fld textarea:focus { border-color:rgba(223,185,108,.45); background:rgba(255,255,255,.06); box-shadow:0 0 0 3px rgba(223,185,108,.08); }
.fld textarea { min-height:100px; resize:vertical; }
.f-foot { margin-top:1.25rem; display:flex; gap:1rem; align-items:center; flex-wrap:wrap; }
.f-note { font-size:.78rem; color:var(--muted); }

/* Footer */
footer { background:var(--bg2); border-top:1px solid var(--line); padding:3.5rem 0 2rem; }
.footer-grid { display:grid; grid-template-columns:1.6fr 1fr 1fr; gap:3rem; padding-bottom:2.25rem; border-bottom:1px solid var(--line); margin-bottom:1.6rem; }
.f-brand strong { font-family:var(--serif); font-size:1.4rem; font-weight:500; display:block; margin-bottom:.3rem; }
.f-brand small  { font-size:.68rem; letter-spacing:.14em; text-transform:uppercase; color:var(--muted); }
.f-brand p      { font-size:.86rem; color:var(--muted); line-height:1.65; margin-top:.9rem; max-width:300px; }
.f-col h5       { font-size:.68rem; letter-spacing:.2em; text-transform:uppercase; color:var(--muted); font-weight:500; margin-bottom:1rem; }
.f-col ul       { display:flex; flex-direction:column; gap:.55rem; }
.f-col a        { font-size:.86rem; color:var(--muted2); transition:color .15s; }
.f-col a:hover  { color:var(--gold2); }
.f-bottom { display:flex; justify-content:space-between; flex-wrap:wrap; gap:1rem; font-size:.79rem; color:var(--muted); }

/* FAB & B2T */
.fab { position:fixed; right:1.25rem; bottom:1.25rem; width:54px; height:54px; background:#25D366; border-radius:50%; display:grid; place-items:center; color:#fff; z-index:90; box-shadow:0 8px 24px rgba(20,156,64,.3); transition:transform .18s, box-shadow .18s; }
.fab:hover { transform:scale(1.07); box-shadow:0 12px 32px rgba(20,156,64,.42); }
.fab svg { width:24px; height:24px; fill:currentColor; }
.b2t { position:fixed; right:1.25rem; bottom:5.25rem; width:42px; height:42px; background:var(--bg2); border:1px solid var(--line2); border-radius:var(--r); display:grid; place-items:center; color:var(--muted2); z-index:89; opacity:0; pointer-events:none; cursor:pointer; transition:opacity .2s, transform .2s, color .15s; }
.b2t.show { opacity:1; pointer-events:auto; }
.b2t:hover { color:var(--gold2); transform:translateY(-2px); }
.b2t svg { width:16px; height:16px; stroke:currentColor; fill:none; stroke-width:2; stroke-linecap:round; }

/* Section backgrounds */
.bg2 { background:var(--bg2); }

/* ── RESPONSIVE ── */
@media(max-width:1000px){
  .bm-loader__crest { width:78px; height:78px; }
  .bm-loader__logo-shell { width:82px; height:82px; border-radius:24px; }
  .bm-loader__logo-icon { width:52px; height:52px; }
  .bm-loader__wordmark { font-size:1rem; letter-spacing:.24em; }
  .bm-loader__caption { font-size:.58rem; letter-spacing:.24em; }
  .hero-inner,.pkg-hero-inner { grid-template-columns:1fr; }
  .h-geo-rect,.h-geo-sq { display:none; }
  .grid-4,.pkg-grid { grid-template-columns:repeat(2,1fr); }
  .grid-3 { grid-template-columns:repeat(2,1fr); }
  .proc-row { grid-template-columns:repeat(3,1fr); gap:1.5rem; }
  .proc-row::before { display:none; }
  .port-group-head { grid-template-columns:1fr; padding:1rem 1rem .85rem; }
  .port-group-head p { max-width:none; }
  .port-grid { grid-template-columns:1fr 1fr; }
  .port-card.w7,.port-card.w5,.port-card.w4 { grid-column:span 1; }
  .team-grid { grid-template-columns:repeat(3,1fr); }
  .dc-grid  { grid-template-columns:repeat(3,1fr); }
  .contact-split { grid-template-columns:1fr; gap:2.5rem; }
  .footer-grid   { grid-template-columns:1fr 1fr; }
  .stat-row { grid-template-columns:repeat(2,1fr); }
  nav.dnav,.hdr-cta { display:none; }
  .menu-btn { display:flex; }
}
@media(max-width:640px){
  .bm-loader__center { width:calc(100% - 2rem); }
  .bm-loader__crest { width:70px; height:70px; }
  .bm-loader__logo-shell { width:74px; height:74px; border-radius:22px; }
  .bm-loader__logo-icon { width:46px; height:46px; }
  .bm-loader__wordmark { font-size:.86rem; letter-spacing:.22em; }
  .bm-loader__caption { font-size:.54rem; letter-spacing:.18em; }
  .bm-loader__progress { width:150px; bottom:1.1rem; }
  .grid-4,.grid-3,.grid-2,.pkg-grid,.pay-grid { grid-template-columns:1fr; }
  .proc-row { grid-template-columns:repeat(2,1fr); }
  .team-grid { grid-template-columns:repeat(2,1fr); }
  .dc-grid   { grid-template-columns:repeat(2,1fr); }
  .portfolio-groups { gap:1rem; }
  .port-group-head { padding:1rem; }
  .port-grid { grid-template-columns:1fr; }
  .stat-row  { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr; }
  .f-row { grid-template-columns:1fr; }
  .btn-row { flex-direction:column; align-items:flex-start; }
  .btn-row a,.btn-row button { width:100%; justify-content:center; }
}
@media(prefers-reduced-motion:reduce){
  *,*::before,*::after { animation-duration:.01ms!important; transition-duration:.01ms!important; }
}
