:root{
  --ink:#111;
  --paper:#faf9f5;
  --paper-2:#fffdf8;
  --muted:#5f5a53;
  --line:#161616;
}

*,
*::before,
*::after{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:Georgia,'Times New Roman',serif;
  color:var(--ink);
  background:var(--paper);
  line-height:1.55;
  overflow-x:hidden;
}

body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(circle at 30% 10%, rgba(0,0,0,.035), transparent 25%),
    radial-gradient(circle at 80% 70%, rgba(0,0,0,.025), transparent 25%);
}

img{
  max-width:100%;
  height:auto;
}

a{
  color:inherit;
}

.site-header{
  width:min(1120px,92vw);
  margin:0 auto;
  padding:22px 0;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.brand img{
  width:150px;
  display:block;
}

nav{
  display:flex;
  gap:26px;
  align-items:center;
  font-size:14px;
  letter-spacing:.08em;
  text-transform:uppercase;
}

nav a{
  text-decoration:none;
  border-bottom:1px solid transparent;
}

nav a:hover{
  border-color:var(--line);
}

.nav-contact{
  border:1px solid var(--line);
  padding:10px 14px;
  border-radius:999px;
}

.hero{
  min-height:72vh;
  display:grid;
  place-items:center;
  text-align:center;
  padding:52px 20px 76px;
  position:relative;
}

.hero-logo{
  width:min(620px,88vw);
  height:auto;
  margin-bottom:14px;
}

h1{
  font-size:clamp(42px,7vw,86px);
  line-height:.95;
  max-width:980px;
  margin:0 auto 20px;
  font-weight:500;
  letter-spacing:-.04em;
}

.lede{
  font-size:clamp(19px,2.2vw,27px);
  color:var(--muted);
  max-width:760px;
  margin:0 auto 30px;
}

.button,
a[href^="mailto:beninsoncapital@gmail.com"]{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:13px 24px;
  border-radius:999px;
  border:1.7px solid var(--line);
  background:var(--ink);
  color:var(--paper-2);
  text-decoration:none;
  letter-spacing:.07em;
  text-transform:uppercase;
  font-size:13px;
  font-weight:700;
  line-height:1;
}

.button:hover,
a[href^="mailto:beninsoncapital@gmail.com"]:hover{
  transform:translateY(-1px);
}

.secondary{
  background:transparent;
  color:var(--ink);
}

.section{
  width:min(1060px,92vw);
  margin:0 auto;
  padding:86px 0;
}

.framed{
  border:1.6px solid var(--line);
  border-radius:28px;
  padding:54px;
  background:var(--paper-2);
  box-shadow:8px 8px 0 var(--ink);
}

.eyebrow{
  font-size:13px;
  letter-spacing:.15em;
  text-transform:uppercase;
  margin:0 0 12px;
  color:var(--muted);
}

h2{
  font-size:clamp(34px,5vw,62px);
  line-height:1;
  letter-spacing:-.035em;
  margin:0 0 24px;
  font-weight:500;
}

.section p{
  font-size:20px;
  max-width:820px;
}

.cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

article{
  border-top:1.6px solid var(--line);
  padding-top:22px;
}

article span{
  font-size:14px;
  color:var(--muted);
}

h3{
  font-size:28px;
  line-height:1.05;
  margin:10px 0 12px;
  font-weight:500;
}

article p{
  font-size:17px;
  color:var(--muted);
}

.closing{
  text-align:center;
  padding-bottom:100px;
}

.closing p{
  margin:0 auto 28px;
}

footer{
  border-top:1px solid rgba(0,0,0,.16);
  text-align:center;
  padding:26px 20px;
  color:var(--muted);
  font-size:14px;
}

.hero-art .sun{
  position:absolute;
  right:11vw;
  top:120px;
  width:54px;
  height:54px;
  border:2px solid var(--line);
  border-radius:50%;
  opacity:.12;
}

.hero-art .hill{
  position:absolute;
  left:7vw;
  bottom:110px;
  width:180px;
  height:42px;
  border-bottom:2px solid var(--line);
  border-radius:50%;
  opacity:.13;
}

/* Clean phone layout */
@media (max-width:760px){
  .site-header{
    width:100%;
    padding:14px 18px;
    display:flex;
    justify-content:center;
  }

  .brand{
    display:none;
  }

  nav{
    gap:18px;
    justify-content:center;
    font-size:12px;
  }

  nav a:not(.nav-contact){
    display:none;
  }

  .nav-contact{
    min-height:44px;
    padding:0 22px;
    font-size:12px;
    background:var(--ink);
    color:var(--paper-2);
  }

  .hero{
    min-height:auto;
    padding:30px 20px 42px;
  }

  .hero-logo{
    width:min(340px,84vw);
    margin-bottom:20px;
  }

  h1{
    font-size:42px;
    line-height:1;
    max-width:340px;
    margin-bottom:18px;
  }

  .lede{
    font-size:22px;
    line-height:1.35;
    max-width:340px;
    margin-bottom:24px;
  }

  .hero .button{
    display:none;
  }

  .section{
    width:100%;
    padding:58px 22px;
  }

  .framed{
    width:calc(100% - 28px);
    margin:0 auto;
    padding:30px 22px;
    border-radius:24px;
    box-shadow:5px 6px 0 var(--ink);
    overflow:hidden;
  }

  .eyebrow{
    font-size:14px;
    letter-spacing:.17em;
    margin-bottom:16px;
  }

  h2{
    font-size:36px;
    line-height:1.08;
    letter-spacing:-.035em;
    margin-bottom:22px;
  }

  .section p{
    font-size:18px;
    line-height:1.52;
    max-width:100%;
    margin-top:0;
  }

  #focus{
    padding-top:54px;
  }

  #focus > .eyebrow{
    font-size:30px;
    line-height:1.08;
    letter-spacing:-.025em;
    text-transform:none;
    color:var(--ink);
    font-weight:500;
    margin-bottom:30px;
  }

  #focus > .eyebrow::after{
    content:"";
    display:block;
    height:1.6px;
    background:var(--line);
    width:100%;
    margin-top:24px;
  }

  .cards{
    grid-template-columns:1fr;
    gap:34px;
  }

  article{
    padding-top:22px;
  }

  article span{
    font-size:13px;
  }

  h3{
    font-size:26px;
    line-height:1.08;
  }

  article p{
    font-size:18px;
    line-height:1.48;
  }

  .closing{
    padding-top:56px;
    padding-bottom:70px;
  }

  .closing h2{
    font-size:38px;
  }

  footer{
    font-size:13px;
  }

  .hero-art .sun,
  .hero-art .hill{
    display:none;
  }
}

@media (max-width:390px){
  .hero-logo{
    width:min(310px,86vw);
  }

  h1{
    font-size:38px;
  }

  .lede{
    font-size:20px;
  }

  .framed{
    width:calc(100% - 20px);
    padding:26px 18px;
  }

  h2{
    font-size:32px;
  }

  .section p,
  article p{
    font-size:17px;
  }

  #focus > .eyebrow{
    font-size:28px;
  }
}


/* v6 tweaks */
@media (max-width:760px){
  .nav-contact,
  a[href^="mailto:beninsoncapital@gmail.com"]{
    display:none !important;
  }

  /* remove extra divider under What We Support */
  #focus > .eyebrow::after{
    display:none !important;
  }
}
