@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");

:root{
  --obsidian:#090b10;
  --navy:#0e1521;
  --ink:#14171d;
  --ivory:#f4f1e8;
  --paper:#fbfaf6;
  --muted:#a8a79f;
  --muted-dark:#5f625f;
  --line:rgba(255,255,255,.16);
  --line-dark:#ddd8cb;
  --brass:#b89a5e;
  --brass-soft:#d6c397;
  --derutive-blue:#4f70ff;
  --derutive-blue-deep:#3655d8;
  --derutive-blue-soft:#dfe5ff;
  --white:#fff;
  --max:1240px;
  --nav:78px;
}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:Inter,"Helvetica Neue",Arial,system-ui,sans-serif;
  color:var(--ivory);
  background:var(--obsidian);
  line-height:1.55;
  -webkit-font-smoothing:antialiased;
}
a{color:inherit}
.wrap{max-width:var(--max);margin:0 auto;padding:0 34px}

.topbar{
  height:var(--nav);
  display:flex;
  align-items:center;
  background:rgba(9,11,16,.92);
  backdrop-filter:blur(18px);
  border-bottom:1px solid var(--line);
  position:fixed;
  inset:0 0 auto 0;
  z-index:50;
}
.topbar .wrap{height:100%}
.nav{display:flex;align-items:center;justify-content:space-between;width:100%;gap:28px}
.brand{display:flex;align-items:center;text-decoration:none;flex:0 0 auto}
.brand-logo{display:block;height:44px;width:auto}
.navlinks{display:flex;align-items:center;gap:26px;min-width:0}
.navlinks a{
  color:rgba(244,241,232,.72);
  text-decoration:none;
  font-size:13px;
  font-weight:600;
}
.navlinks a:hover,.navlinks a.active{color:var(--white)}
.nav-cta{
  border:1px solid rgba(79,112,255,.72);
  color:var(--derutive-blue-soft)!important;
  padding:10px 14px;
}
.nav-cta:hover{
  background:rgba(79,112,255,.12);
  border-color:var(--derutive-blue);
}

.page{padding-top:var(--nav)}
section{border-bottom:1px solid var(--line)}
h1,h2,h3,h4{font-weight:700;letter-spacing:0}
h1{
  font-size:52px;
  line-height:1.06;
  max-width:900px;
}
h2{
  font-size:34px;
  line-height:1.12;
  max-width:700px;
}
h3{
  font-size:22px;
  line-height:1.18;
}
h3 a{text-decoration:none}
h3 a:hover{color:var(--derutive-blue-soft)}
p{font-size:15px}

.eyebrow,.kicker{
  display:block;
  color:var(--brass-soft);
  font-size:12px;
  font-weight:700;
  margin-bottom:18px;
}
.hero{
  min-height:calc(100vh - var(--nav));
  display:flex;
  align-items:center;
  background:var(--obsidian);
}
.hero-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:56px;
  width:100%;
}
.hero-text{
  color:rgba(244,241,232,.72);
  max-width:720px;
  font-size:18px;
  margin-top:26px;
}
.actions{display:flex;gap:14px;flex-wrap:wrap;margin-top:42px}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:46px;
  padding:0 18px;
  border:1px solid rgba(244,241,232,.36);
  color:var(--ivory);
  text-decoration:none;
  font-size:12px;
  font-weight:700;
}
.btn.primary{
  background:var(--derutive-blue);
  border-color:var(--derutive-blue);
  color:var(--white);
  box-shadow:0 14px 34px rgba(79,112,255,.18);
}
.btn.primary:hover{
  background:var(--derutive-blue-deep);
  border-color:var(--derutive-blue-deep);
}
.btn.secondary:hover{
  border-color:var(--derutive-blue);
  color:var(--derutive-blue-soft);
}

.identity-strip{
  background:var(--navy);
  padding:24px 0;
}
.identity-line{
  display:flex;
  flex-wrap:wrap;
  gap:12px 18px;
  color:rgba(244,241,232,.84);
  font-size:15px;
  font-weight:700;
}
.identity-line span:not(:last-child):after{
  content:"";
  display:inline-block;
  width:4px;
  height:4px;
  margin-left:18px;
  border-radius:50%;
  background:var(--brass);
  vertical-align:middle;
}

.section-pad{padding:110px 0}
.light{background:var(--paper);color:var(--ink);border-color:var(--line-dark)}
.light .eyebrow,.light .kicker{color:#7f6435}
.light .lead,.light p,.light .muted{color:var(--muted-dark)}
.lead{
  color:rgba(244,241,232,.68);
  font-size:16px;
  max-width:720px;
}
.section-head{
  display:grid;
  grid-template-columns:.7fr 1.3fr;
  gap:88px;
  align-items:end;
  margin-bottom:58px;
}

.business-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  border-top:1px solid var(--line);
  border-left:1px solid var(--line);
}
.business-card{
  min-height:340px;
  padding:30px 26px;
  border-right:1px solid var(--line);
  border-bottom:1px solid var(--line);
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  text-decoration:none;
  background:rgba(255,255,255,.018);
}
.light .business-grid{border-color:var(--line-dark)}
.light .business-card{border-color:var(--line-dark);background:transparent}
.business-card:hover{background:rgba(184,154,94,.08)}
.business-card small{
  color:var(--brass-soft);
  font-size:12px;
  font-weight:800;
}
.light .business-card small{color:#7f6435}
.business-card p{color:rgba(244,241,232,.66);margin-top:18px}
.light .business-card p{color:var(--muted-dark)}
.business-meta{
  color:rgba(244,241,232,.46);
  font-size:12px;
  font-weight:700;
}
.light .business-meta{color:#777066}

.editorial-grid{
  display:grid;
  grid-template-columns:.75fr 1.25fr;
  gap:90px;
  align-items:start;
}
.editorial-copy{
  border-top:1px solid currentColor;
  padding-top:30px;
  max-width:860px;
}
.editorial-copy p{margin-top:18px;color:rgba(244,241,232,.68)}
.editorial-copy p:first-child{margin-top:0}
.light .editorial-copy p{color:var(--muted-dark)}

.line-list{border-top:1px solid var(--line)}
.light .line-list{border-color:var(--line-dark)}
.line-item{
  display:grid;
  grid-template-columns:210px 1fr;
  gap:44px;
  padding:32px 0;
  border-bottom:1px solid var(--line);
}
.light .line-item{border-color:var(--line-dark)}
.line-item small{
  color:var(--brass-soft);
  font-size:12px;
  font-weight:800;
}
.light .line-item small{color:#7f6435}
.line-item p{color:rgba(244,241,232,.68);margin-top:8px;max-width:760px}
.light .line-item p{color:var(--muted-dark)}

.pillar-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:1px;
  background:var(--line);
}
.pillar{
  background:var(--obsidian);
  padding:34px 28px;
  min-height:250px;
}
.pillar p{margin-top:16px;color:rgba(244,241,232,.66)}

.contact-grid{
  display:grid;
  grid-template-columns:.78fr 1.22fr;
  gap:78px;
  align-items:start;
}
.request-form{border-top:1px solid currentColor;padding-top:28px}
.field{margin-bottom:16px}
.field label{display:block;color:var(--muted-dark);font-size:12px;font-weight:800;margin-bottom:7px}
.field input,.field select,.field textarea{
  width:100%;
  border:1px solid var(--line-dark);
  background:transparent;
  color:var(--ink);
  padding:14px;
  font:inherit;
  outline:none;
}
.field textarea{min-height:112px;resize:vertical}
.field input:focus,.field select:focus,.field textarea:focus{border-color:var(--ink)}
.submit{
  width:100%;
  border:0;
  background:var(--derutive-blue);
  color:var(--white);
  min-height:48px;
  font-size:12px;
  font-weight:800;
  cursor:pointer;
}
.submit:hover{background:var(--derutive-blue-deep)}
.note{font-size:12px;color:var(--muted-dark);text-align:center;margin-top:14px}

footer{
  padding:72px 0 30px;
  background:var(--obsidian);
  color:rgba(244,241,232,.62);
  border-top:1px solid var(--line);
}
.footer-inner{
  display:grid;
  grid-template-columns:1.45fr .72fr .9fr .95fr;
  gap:56px;
  align-items:start;
}
.footer-brand{display:grid;gap:18px;max-width:430px}
.footer-logo{display:block;width:260px;height:auto}
.footer-copy{font-size:13px;line-height:1.75;color:rgba(244,241,232,.66)}
.footer-col{display:grid;gap:10px}
.footer-col h4{color:var(--ivory);font-size:12px;font-weight:800;margin-bottom:8px}
.footer-col a,.footer-col span{color:rgba(244,241,232,.62);text-decoration:none;font-size:13px;line-height:1.5}
.footer-col a:hover{color:var(--ivory)}
.footer-bottom{
  grid-column:1 / -1;
  border-top:1px solid var(--line);
  padding-top:24px;
  margin-top:22px;
  display:flex;
  justify-content:space-between;
  gap:28px;
}
.fine{font-size:11px;line-height:1.65;color:rgba(244,241,232,.5)}
.footer-bottom span{font-size:11px;color:rgba(244,241,232,.42);white-space:nowrap}

@media(max-width:1100px){
  h1{font-size:44px}
  h2{font-size:30px}
  .navlinks{gap:18px;overflow-x:auto;white-space:nowrap;scrollbar-width:none}
  .navlinks::-webkit-scrollbar{display:none}
  .business-grid,.pillar-grid{grid-template-columns:repeat(2,1fr)}
  .section-head,.editorial-grid,.contact-grid{grid-template-columns:1fr;gap:36px}
  .footer-inner{grid-template-columns:1fr 1fr;gap:38px}
  .footer-brand,.footer-bottom{grid-column:1 / -1}
}
@media(max-width:760px){
  .topbar{
    height:auto;
    padding:12px 0 10px;
  }
  .topbar .wrap{height:auto}
  .nav{
    align-items:flex-start;
    flex-direction:column;
    gap:12px;
  }
  .navlinks{
    width:100%;
    gap:14px;
    padding-bottom:2px;
  }
  .navlinks a{font-size:12px}
  .nav-cta{padding:8px 12px}
  .page{padding-top:128px}
}
@media(max-width:640px){
  .wrap{padding:0 22px}
  .brand-logo{height:36px}
  .hero{min-height:auto}
  .hero-grid{padding:72px 0}
  h1{font-size:30px}
  h2{font-size:24px}
  h3{font-size:19px}
  .hero-text,.lead{font-size:14px}
  .section-pad{padding:76px 0}
  .business-grid,.pillar-grid{grid-template-columns:1fr}
  .business-card{min-height:250px}
  .line-item{grid-template-columns:1fr;gap:10px}
  .footer-inner{grid-template-columns:1fr}
  .footer-bottom{display:grid}
  .footer-bottom span{white-space:normal}
  .footer-logo{width:220px}
}
