
:root{
  --bg:#f6f1e8;
  --bg-2:#fffaf3;
  --panel:#fff9f1cc;
  --panel-strong:#fffaf5f0;
  --ink:#111214;
  --muted:#6f675d;
  --muted-2:#8f877c;
  --gold:#c8a96b;
  --gold-dark:#8e7032;
  --gold-soft:#e8d6af;
  --taupe:#d6d0c4;
  --line:rgba(17,18,20,.1);
  --line-gold:rgba(200,169,107,.35);
  --shadow:0 24px 80px rgba(17,18,20,.08);
  --shadow-soft:0 14px 34px rgba(17,18,20,.06);
  --radius-xl:34px;
  --radius-lg:26px;
  --radius-md:20px;
  --max:1180px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  color:var(--ink);
  background:
    radial-gradient(circle at 0% 0%, rgba(200,169,107,.18), transparent 28rem),
    radial-gradient(circle at 100% 0%, rgba(255,255,255,.85), transparent 26rem),
    linear-gradient(180deg,#fffdf9 0%, var(--bg) 44%, #ece3d4 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
a{color:inherit}
img{max-width:100%; display:block}
.container{width:min(var(--max), calc(100% - 36px)); margin:0 auto}
.topbar{
  position:sticky;
  top:0;
  z-index:30;
  background:rgba(246,241,232,.82);
  backdrop-filter:blur(18px) saturate(160%);
  border-bottom:1px solid rgba(17,18,20,.08);
}
.nav{
  min-height:76px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}
.brand{
  display:flex;
  align-items:center;
  gap:14px;
  text-decoration:none;
  min-width:0;
}
.brand-icon{
  width:46px;
  height:46px;
  border-radius:16px;
  overflow:hidden;
  box-shadow:var(--shadow-soft);
  border:1px solid var(--line-gold);
  flex:0 0 auto;
}
.brand-title{
  font-size:22px;
  font-weight:950;
  letter-spacing:.18em;
  line-height:1;
}
.brand-sub{
  font-size:10px;
  color:var(--gold-dark);
  text-transform:uppercase;
  letter-spacing:.22em;
  font-weight:900;
  margin-top:4px;
}
.navlinks{
  display:flex;
  align-items:center;
  gap:8px;
  color:var(--muted);
  font-size:13px;
}
.navlinks a{
  text-decoration:none;
  padding:9px 12px;
  border-radius:999px;
  border:1px solid transparent;
  transition:.2s ease;
}
.navlinks a:hover{
  background:rgba(255,255,255,.5);
  border-color:var(--line-gold);
}
.navlinks .contact{
  background:var(--ink);
  color:var(--bg-2);
  font-weight:850;
}
.hero{
  padding:56px 0 34px;
}
.hero-shell{
  position:relative;
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:28px;
  align-items:center;
}
.hero-copy{
  position:relative;
  z-index:2;
}
.kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  color:var(--gold-dark);
  text-transform:uppercase;
  letter-spacing:.18em;
  font-size:12px;
  font-weight:900;
}
.kicker:before{
  content:"";
  width:34px;
  height:1px;
  background:linear-gradient(90deg,var(--gold),transparent);
}
h1{
  margin:18px 0 14px;
  font-size:clamp(42px,7vw,84px);
  line-height:.9;
  letter-spacing:-.075em;
  max-width:13ch;
}
.lead{
  max-width:700px;
  margin:0;
  color:var(--muted);
  font-size:clamp(17px,2vw,21px);
  line-height:1.58;
}
.actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:26px;
}
.btn{
  min-height:48px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0 18px;
  border-radius:999px;
  text-decoration:none;
  font-weight:850;
  border:1px solid var(--line);
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover{transform:translateY(-2px); box-shadow:var(--shadow-soft)}
.btn-primary{background:var(--ink); color:var(--bg-2)}
.btn-secondary{background:rgba(255,255,255,.56)}
.btn-gold{background:linear-gradient(180deg,#ebddb8,#d9bd84); border-color:rgba(143,112,50,.18)}
.hero-art{
  position:relative;
  min-height:540px;
  border-radius:40px;
  overflow:hidden;
  border:1px solid var(--line-gold);
  background:
    linear-gradient(145deg, rgba(255,255,255,.72), rgba(255,255,255,.38)),
    radial-gradient(circle at 72% 24%, rgba(200,169,107,.18), transparent 14rem),
    radial-gradient(circle at 28% 80%, rgba(214,208,196,.7), transparent 18rem),
    linear-gradient(180deg,var(--bg-2),#f0e7d9 100%);
  box-shadow:var(--shadow);
}
.hero-art:before{
  content:"";
  position:absolute;
  inset:14px;
  border-radius:28px;
  border:1px solid rgba(17,18,20,.05);
  pointer-events:none;
}
.art-grid{
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(rgba(17,18,20,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17,18,20,.04) 1px, transparent 1px);
  background-size:34px 34px;
  mask-image:linear-gradient(180deg, rgba(0,0,0,.28), transparent 80%);
}
.logo-stack{
  position:absolute;
  inset:28px 24px auto 24px;
  z-index:2;
}
.logo-stack img{
  width:100%;
  height:auto;
  mix-blend-mode:multiply;
}
.float{
  position:absolute;
  z-index:3;
  min-width:170px;
  max-width:220px;
  padding:14px 16px;
  border-radius:20px;
  background:rgba(255,250,243,.92);
  border:1px solid var(--line-gold);
  box-shadow:var(--shadow-soft);
}
.float strong{
  display:block;
  font-size:13px;
  margin-bottom:4px;
  letter-spacing:.02em;
}
.float span{
  display:block;
  color:var(--muted);
  font-size:12px;
  line-height:1.42;
}
.float-a{left:28px; bottom:32px}
.float-b{right:26px; top:150px}
.ribbon{
  position:absolute;
  right:-42px;
  top:46px;
  rotate:18deg;
  padding:11px 58px;
  background:linear-gradient(180deg,#ead9b0,#d4b574);
  color:#3b2c12;
  font-size:11px;
  font-weight:900;
  letter-spacing:.18em;
  text-transform:uppercase;
  box-shadow:var(--shadow-soft);
}
.orb{
  position:absolute;
  border-radius:999px;
  filter:blur(2px);
}
.orb-1{
  width:170px; height:170px; right:-40px; bottom:-40px;
  background:radial-gradient(circle,#fff5da 0%, rgba(232,214,175,.8) 34%, rgba(200,169,107,.22) 72%, transparent 100%);
}
.orb-2{
  width:120px; height:120px; left:-30px; top:-30px;
  background:radial-gradient(circle,rgba(200,169,107,.45), transparent 70%);
}
.strip{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:12px;
  margin-top:32px;
}
.mini{
  min-height:108px;
  border-radius:22px;
  overflow:hidden;
  border:1px solid var(--line-gold);
  background:linear-gradient(180deg, rgba(255,255,255,.7), rgba(255,255,255,.48));
  box-shadow:var(--shadow-soft);
  transition:transform .18s ease, box-shadow .18s ease;
}
.mini:hover{transform:translateY(-3px)}
.mini svg{width:100%; height:100%; display:block}
.section{
  padding:56px 0;
}
.section + .section{
  border-top:1px solid rgba(17,18,20,.08);
}
.badge{
  display:inline-flex;
  align-items:center;
  padding:7px 11px;
  border-radius:999px;
  border:1px solid var(--line-gold);
  background:rgba(200,169,107,.09);
  color:var(--gold-dark);
  font-size:12px;
  letter-spacing:.1em;
  text-transform:uppercase;
  font-weight:900;
  margin-bottom:16px;
}
.section h2{
  margin:0 0 12px;
  font-size:clamp(32px,5vw,58px);
  line-height:.98;
  letter-spacing:-.055em;
}
.section-intro{
  max-width:780px;
  color:var(--muted);
  font-size:18px;
  line-height:1.62;
}
.cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
  margin-top:28px;
}
.card{
  position:relative;
  overflow:hidden;
  border-radius:30px;
  border:1px solid rgba(17,18,20,.08);
  background:linear-gradient(180deg, rgba(255,255,255,.85), rgba(255,255,255,.55));
  box-shadow:var(--shadow-soft);
  padding:24px;
}
.card:before{
  content:"";
  position:absolute;
  inset:auto -40px -70px auto;
  width:160px;
  height:160px;
  border-radius:999px;
  background:radial-gradient(circle, rgba(200,169,107,.16), transparent 70%);
}
.icon{
  width:46px;
  height:46px;
  display:grid;
  place-items:center;
  background:#111214;
  color:var(--gold);
  border-radius:16px;
  font-size:22px;
  margin-bottom:14px;
}
.card h3{margin:0 0 10px; font-size:20px}
.card p{margin:0; color:var(--muted); line-height:1.58}
.split{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:24px;
  align-items:center;
}
.showcase{
  position:relative;
  min-height:420px;
  border-radius:34px;
  overflow:hidden;
  border:1px solid var(--line-gold);
  background:
    radial-gradient(circle at 15% 20%, rgba(200,169,107,.20), transparent 16rem),
    linear-gradient(180deg,#fffaf3 0%, #f0e7d9 100%);
  box-shadow:var(--shadow);
}
.showcase .logo-stack{inset:18px 18px auto 18px}
.showcase-card{
  position:absolute;
  z-index:3;
  background:rgba(255,250,243,.94);
  border:1px solid var(--line-gold);
  border-radius:18px;
  padding:12px 14px;
  box-shadow:var(--shadow-soft);
  max-width:180px;
}
.showcase-card strong{display:block; font-size:13px; margin-bottom:4px}
.showcase-card span{display:block; font-size:12px; line-height:1.4; color:var(--muted)}
.sc-a{left:24px; bottom:24px}
.sc-b{right:24px; bottom:38px}
.contact-panel{
  display:grid;
  grid-template-columns:1fr auto;
  gap:20px;
  align-items:center;
  padding:32px;
  border-radius:36px;
  color:#fff;
  background:
    radial-gradient(circle at 0% 0%, rgba(200,169,107,.35), transparent 20rem),
    radial-gradient(circle at 100% 100%, rgba(255,255,255,.06), transparent 14rem),
    linear-gradient(135deg,#17181b 0%, #111214 100%);
  box-shadow:0 24px 80px rgba(17,18,20,.18);
}
.contact-panel h2{
  color:#fff;
  margin-top:12px;
}
.contact-panel p{
  color:rgba(255,255,255,.72);
  line-height:1.58;
  max-width:740px;
}
.email{
  white-space:nowrap;
  text-decoration:none;
  font-weight:900;
  color:var(--ink);
  background:#fffdf8;
  padding:15px 18px;
  border-radius:999px;
  box-shadow:var(--shadow-soft);
}
.links-list{
  display:grid;
  gap:12px;
  margin-top:24px;
}
.link{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  text-decoration:none;
  padding:18px 20px;
  border-radius:22px;
  border:1px solid var(--line);
  background:linear-gradient(180deg, rgba(255,255,255,.82), rgba(255,255,255,.56));
  box-shadow:var(--shadow-soft);
}
.link strong{display:block}
.link span{display:block; color:var(--muted); font-size:13px; margin-top:3px}
.link-arrow{
  font-size:24px;
  color:var(--gold-dark);
}
.notice{
  margin-top:18px;
  padding:14px 16px;
  border-radius:18px;
  background:rgba(200,169,107,.10);
  border:1px solid var(--line-gold);
  color:#5e4318;
  font-size:14px;
  line-height:1.5;
}
.footer{
  border-top:1px solid rgba(17,18,20,.08);
  padding:30px 0 34px;
  color:var(--muted);
  font-size:13px;
  line-height:1.65;
}
.footer-grid{
  display:flex;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
}
.version{
  margin-top:18px;
  color:var(--muted-2);
  text-transform:uppercase;
  letter-spacing:.08em;
  font-size:11px;
}
.page-hero{
  padding:54px 0 34px;
}
.page-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:26px;
  align-items:center;
}
.page-logo{
  border-radius:34px;
  background:linear-gradient(180deg, rgba(255,255,255,.75), rgba(255,255,255,.45));
  border:1px solid var(--line-gold);
  box-shadow:var(--shadow);
  padding:20px;
}
.page-logo img{mix-blend-mode:multiply}
@media (max-width:960px){
  .hero-shell,.split,.page-grid,.cards,.contact-panel{
    grid-template-columns:1fr;
  }
  .hero-art{min-height:500px}
}
@media (max-width:700px){
  .container{width:min(var(--max), calc(100% - 24px))}
  .nav{align-items:flex-start; padding:12px 0}
  .navlinks{
    font-size:12px;
    gap:3px;
    flex-wrap:wrap;
    justify-content:flex-end;
  }
  .navlinks a{padding:8px 9px}
  .brand-title{font-size:18px}
  .brand-sub{display:none}
  .hero{padding-top:28px}
  .hero-art{
    min-height:460px;
    border-radius:28px;
  }
  .ribbon{display:none}
  .float{
    min-width:0;
    max-width:150px;
    padding:12px;
  }
  .float-a{left:18px; bottom:20px}
  .float-b{right:18px; top:130px}
  h1{max-width:none}
  .strip{grid-template-columns:1fr 1fr}
  .mini{min-height:96px}
  .section{padding:42px 0}
  .contact-panel{padding:22px; border-radius:28px}
  .email{white-space:normal; text-align:center}
}
