:root {
  font-family:"Segoe UI",Meiryo,sans-serif;
  color:#302929;
  background:white;
  --brand:#8b0000;
  --accent:#008c46
}

* {
  box-sizing:border-box
}

body {
  margin:0;
  min-height:100svh;
  display:flex;
  flex-direction:column;
  border-top:4px solid var(--brand)
}

a {
  color:inherit;
  text-decoration:none
}

header {
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:28px 46px;
  font-size:14px;
  letter-spacing:.04em
}

header a {
  font-weight:600
}

header a span {
  color:var(--accent);
  font-size:22px
}

header small {
  font-size:11px;
  letter-spacing:.2em;
  color:#8d8282
}

main {
  flex:1;
  display:grid;
  place-items:center;
  padding:30px 24px 42px
}

section {
  width:100%;
  max-width:450px;
  text-align:center
}

.logo {
  display:block;
  width:224px;
  height:auto;
  margin:0 auto 29px
}

.eyebrow {
  font-size:12px;
  letter-spacing:.24em;
  color:#897979;
  margin:0 0 7px
}

h1 {
  font-family:Georgia,"Times New Roman",serif;
  font-size:37px;
  font-weight:400;
  letter-spacing:-.025em;
  margin:0;
  line-height:1.25
}

h1 span {
  color:var(--accent)
}

.bio {
  font-size:16px;
  line-height:2;
  color:#766969;
  margin:19px 0 31px
}

.studio {
  display:flex;
  align-items:center;
  text-align:left;
  gap:19px;
  background:var(--brand);
  color:white;
  border-radius:8px;
  padding:20px 23px;
  box-shadow:0 6px 18px #8b000013;
  transition:background .18s,transform .18s
}

.studio:hover {
  background:#710000;
  transform:translateY(-2px)
}

.symbol {
  font-size:31px;
  line-height:1
}

.studio strong {
  display:block;
  font-size:21px;
  font-weight:550;
  letter-spacing:.02em
}

.studio small {
  display:block;
  margin-top:5px;
  font-size:14px;
  color:#f3dada
}

.arrow {
  margin-left:auto;
  font-size:25px
}

.socials {
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:12px;
  margin-top:14px
}

.socials a {
  font:inherit;
  border:1px solid #e8e1e1;
  background:white;
  color:#403434;
  border-radius:7px;
  min-height:112px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:9px;
  cursor:pointer;
  transition:border-color .18s,background .18s
}

.socials a:hover {
  background:#f7faf8;
  border-color:var(--accent)
}

.socials span {
  font-size:14px
}

.socials b,.socials svg {
  height:24px;
  width:24px;
  display:block;
  font-size:24px;
  line-height:24px;
  font-weight:400
}

.socials b.code {
  width:auto;
  font:20px/24px monospace
}

.socials small {
  font-size:12px;
  color:#928686
}

footer {
  padding:22px 46px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  font-size:12px;
  color:#938686
}

.signature {
  font-size:10px;
  letter-spacing:.16em;
  display:flex;
  align-items:center;
  gap:12px
}

.signature i {
  width:3px;
  height:3px;
  background:var(--accent);
  border-radius:50%
}

a:focus-visible,button:focus-visible {
  outline:3px solid var(--accent);
  outline-offset:5px
}

@media(max-width:600px) {
  header {
    padding:21px 23px
  }
  header small {
    font-size:10px
  }
  main {
    padding:26px 24px 28px
  }
  .logo {
    width:200px;
    margin-bottom:26px
  }
  h1 {
    font-size:34px
  }
  .bio {
    font-size:14px
  }
  .socials {
    gap:9px
  }
  .studio {
    padding:20px
  }
  .studio small {
    font-size:13px
  }
  footer {
    padding:20px 24px
  }
  .signature {
    font-size:9px;
    gap:7px
  }
}

@media(prefers-reduced-motion:reduce) {
  .studio,.socials a {
    transition:none
  }
}
